Skip to content

Commit fea7f4e

Browse files
committed
[Make] Sync *.swift
1 parent 04ad473 commit fea7f4e

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

Sources/gists/Types.swift

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2229,11 +2229,11 @@ public enum Components {
22292229
}
22302230
/// Types generated from the `#/components/parameters` section of the OpenAPI document.
22312231
public enum Parameters {
2232-
/// The number of results per page (max 100).
2232+
/// 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)."
22332233
///
22342234
/// - Remark: Generated from `#/components/parameters/per-page`.
22352235
public typealias per_hyphen_page = Swift.Int
2236-
/// Page number of the results to fetch.
2236+
/// 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)."
22372237
///
22382238
/// - Remark: Generated from `#/components/parameters/page`.
22392239
public typealias page = Swift.Int
@@ -2485,20 +2485,20 @@ public enum Operations {
24852485
///
24862486
/// - Remark: Generated from `#/paths/gists/GET/query/since`.
24872487
public var since: Components.Parameters.since?
2488-
/// The number of results per page (max 100).
2488+
/// 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)."
24892489
///
24902490
/// - Remark: Generated from `#/paths/gists/GET/query/per_page`.
24912491
public var per_page: Components.Parameters.per_hyphen_page?
2492-
/// Page number of the results to fetch.
2492+
/// 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)."
24932493
///
24942494
/// - Remark: Generated from `#/paths/gists/GET/query/page`.
24952495
public var page: Components.Parameters.page?
24962496
/// Creates a new `Query`.
24972497
///
24982498
/// - Parameters:
24992499
/// - 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`.
2500-
/// - per_page: The number of results per page (max 100).
2501-
/// - page: Page number of the results to fetch.
2500+
/// - 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)."
2501+
/// - 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)."
25022502
public init(
25032503
since: Components.Parameters.since? = nil,
25042504
per_page: Components.Parameters.per_hyphen_page? = nil,
@@ -3048,20 +3048,20 @@ public enum Operations {
30483048
///
30493049
/// - Remark: Generated from `#/paths/gists/public/GET/query/since`.
30503050
public var since: Components.Parameters.since?
3051-
/// The number of results per page (max 100).
3051+
/// 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)."
30523052
///
30533053
/// - Remark: Generated from `#/paths/gists/public/GET/query/per_page`.
30543054
public var per_page: Components.Parameters.per_hyphen_page?
3055-
/// Page number of the results to fetch.
3055+
/// 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)."
30563056
///
30573057
/// - Remark: Generated from `#/paths/gists/public/GET/query/page`.
30583058
public var page: Components.Parameters.page?
30593059
/// Creates a new `Query`.
30603060
///
30613061
/// - Parameters:
30623062
/// - 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`.
3063-
/// - per_page: The number of results per page (max 100).
3064-
/// - page: Page number of the results to fetch.
3063+
/// - 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)."
3064+
/// - 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)."
30653065
public init(
30663066
since: Components.Parameters.since? = nil,
30673067
per_page: Components.Parameters.per_hyphen_page? = nil,
@@ -3284,20 +3284,20 @@ public enum Operations {
32843284
///
32853285
/// - Remark: Generated from `#/paths/gists/starred/GET/query/since`.
32863286
public var since: Components.Parameters.since?
3287-
/// The number of results per page (max 100).
3287+
/// 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)."
32883288
///
32893289
/// - Remark: Generated from `#/paths/gists/starred/GET/query/per_page`.
32903290
public var per_page: Components.Parameters.per_hyphen_page?
3291-
/// Page number of the results to fetch.
3291+
/// 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)."
32923292
///
32933293
/// - Remark: Generated from `#/paths/gists/starred/GET/query/page`.
32943294
public var page: Components.Parameters.page?
32953295
/// Creates a new `Query`.
32963296
///
32973297
/// - Parameters:
32983298
/// - 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`.
3299-
/// - per_page: The number of results per page (max 100).
3300-
/// - page: Page number of the results to fetch.
3299+
/// - 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)."
3300+
/// - 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)."
33013301
public init(
33023302
since: Components.Parameters.since? = nil,
33033303
per_page: Components.Parameters.per_hyphen_page? = nil,
@@ -4173,19 +4173,19 @@ public enum Operations {
41734173
public var path: Operations.gists_sol_list_hyphen_comments.Input.Path
41744174
/// - Remark: Generated from `#/paths/gists/{gist_id}/comments/GET/query`.
41754175
public struct Query: Sendable, Hashable {
4176-
/// The number of results per page (max 100).
4176+
/// 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)."
41774177
///
41784178
/// - Remark: Generated from `#/paths/gists/{gist_id}/comments/GET/query/per_page`.
41794179
public var per_page: Components.Parameters.per_hyphen_page?
4180-
/// Page number of the results to fetch.
4180+
/// 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)."
41814181
///
41824182
/// - Remark: Generated from `#/paths/gists/{gist_id}/comments/GET/query/page`.
41834183
public var page: Components.Parameters.page?
41844184
/// Creates a new `Query`.
41854185
///
41864186
/// - Parameters:
4187-
/// - per_page: The number of results per page (max 100).
4188-
/// - page: Page number of the results to fetch.
4187+
/// - 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)."
4188+
/// - 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)."
41894189
public init(
41904190
per_page: Components.Parameters.per_hyphen_page? = nil,
41914191
page: Components.Parameters.page? = nil
@@ -5242,19 +5242,19 @@ public enum Operations {
52425242
public var path: Operations.gists_sol_list_hyphen_commits.Input.Path
52435243
/// - Remark: Generated from `#/paths/gists/{gist_id}/commits/GET/query`.
52445244
public struct Query: Sendable, Hashable {
5245-
/// The number of results per page (max 100).
5245+
/// 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)."
52465246
///
52475247
/// - Remark: Generated from `#/paths/gists/{gist_id}/commits/GET/query/per_page`.
52485248
public var per_page: Components.Parameters.per_hyphen_page?
5249-
/// Page number of the results to fetch.
5249+
/// 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)."
52505250
///
52515251
/// - Remark: Generated from `#/paths/gists/{gist_id}/commits/GET/query/page`.
52525252
public var page: Components.Parameters.page?
52535253
/// Creates a new `Query`.
52545254
///
52555255
/// - Parameters:
5256-
/// - per_page: The number of results per page (max 100).
5257-
/// - page: Page number of the results to fetch.
5256+
/// - 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)."
5257+
/// - 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)."
52585258
public init(
52595259
per_page: Components.Parameters.per_hyphen_page? = nil,
52605260
page: Components.Parameters.page? = nil
@@ -5487,19 +5487,19 @@ public enum Operations {
54875487
public var path: Operations.gists_sol_list_hyphen_forks.Input.Path
54885488
/// - Remark: Generated from `#/paths/gists/{gist_id}/forks/GET/query`.
54895489
public struct Query: Sendable, Hashable {
5490-
/// The number of results per page (max 100).
5490+
/// 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)."
54915491
///
54925492
/// - Remark: Generated from `#/paths/gists/{gist_id}/forks/GET/query/per_page`.
54935493
public var per_page: Components.Parameters.per_hyphen_page?
5494-
/// Page number of the results to fetch.
5494+
/// 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)."
54955495
///
54965496
/// - Remark: Generated from `#/paths/gists/{gist_id}/forks/GET/query/page`.
54975497
public var page: Components.Parameters.page?
54985498
/// Creates a new `Query`.
54995499
///
55005500
/// - Parameters:
5501-
/// - per_page: The number of results per page (max 100).
5502-
/// - page: Page number of the results to fetch.
5501+
/// - 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)."
5502+
/// - 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)."
55035503
public init(
55045504
per_page: Components.Parameters.per_hyphen_page? = nil,
55055505
page: Components.Parameters.page? = nil
@@ -6748,20 +6748,20 @@ public enum Operations {
67486748
///
67496749
/// - Remark: Generated from `#/paths/users/{username}/gists/GET/query/since`.
67506750
public var since: Components.Parameters.since?
6751-
/// The number of results per page (max 100).
6751+
/// 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)."
67526752
///
67536753
/// - Remark: Generated from `#/paths/users/{username}/gists/GET/query/per_page`.
67546754
public var per_page: Components.Parameters.per_hyphen_page?
6755-
/// Page number of the results to fetch.
6755+
/// 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)."
67566756
///
67576757
/// - Remark: Generated from `#/paths/users/{username}/gists/GET/query/page`.
67586758
public var page: Components.Parameters.page?
67596759
/// Creates a new `Query`.
67606760
///
67616761
/// - Parameters:
67626762
/// - 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`.
6763-
/// - per_page: The number of results per page (max 100).
6764-
/// - page: Page number of the results to fetch.
6763+
/// - 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)."
6764+
/// - 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)."
67656765
public init(
67666766
since: Components.Parameters.since? = nil,
67676767
per_page: Components.Parameters.per_hyphen_page? = nil,

0 commit comments

Comments
 (0)