You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/repos/Types.swift
+29-10Lines changed: 29 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -21600,10 +21600,6 @@ public enum Components {
21600
21600
///
21601
21601
/// - Remark: Generated from `#/components/parameters/page`.
21602
21602
public typealias page = Swift.Int
21603
-
/// Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.
21604
-
///
21605
-
/// - Remark: Generated from `#/components/parameters/since`.
21606
-
public typealias since = Foundation.Date
21607
21603
/// The unique identifier of the comment.
21608
21604
///
21609
21605
/// - Remark: Generated from `#/components/parameters/comment-id`.
@@ -36294,11 +36290,11 @@ public enum Operations {
36294
36290
///
36295
36291
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/commits/GET/query/committer`.
36296
36292
public var committer: Swift.String?
36297
-
/// Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.
36293
+
/// Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. Due to limitations of Git, timestamps must be between 1970-01-01 and 2099-12-31 (inclusive) or unexpected results may be returned.
36298
36294
///
36299
36295
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/commits/GET/query/since`.
36300
-
public var since: Components.Parameters.since?
36301
-
/// Only commits before this date will be returned. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.
36296
+
public var since: Foundation.Date?
36297
+
/// Only commits before this date will be returned. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. Due to limitations of Git, timestamps must be between 1970-01-01 and 2099-12-31 (inclusive) or unexpected results may be returned.
36302
36298
///
36303
36299
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/commits/GET/query/until`.
36304
36300
public var until: Foundation.Date?
@@ -36317,16 +36313,16 @@ public enum Operations {
36317
36313
/// - path: Only commits containing this file path will be returned.
36318
36314
/// - author: GitHub username or email address to use to filter by commit author.
36319
36315
/// - committer: GitHub username or email address to use to filter by commit committer.
36320
-
/// - since: Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.
36321
-
/// - until: Only commits before this date will be returned. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.
36316
+
/// - since: Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. Due to limitations of Git, timestamps must be between 1970-01-01 and 2099-12-31 (inclusive) or unexpected results may be returned.
36317
+
/// - until: Only commits before this date will be returned. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. Due to limitations of Git, timestamps must be between 1970-01-01 and 2099-12-31 (inclusive) or unexpected results may be returned.
36322
36318
/// - per_page: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
36323
36319
/// - page: The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
0 commit comments