Skip to content

Commit 8b29ee2

Browse files
Merge pull request #55 from Wei18/dependabot/submodules/Submodule/github/rest-api-description-e04c0a4
Bump Submodule/github/rest-api-description from `5b52d7f` to `e04c0a4`
2 parents 21c0f85 + f6ecfe6 commit 8b29ee2

File tree

4 files changed

+52
-4
lines changed

4 files changed

+52
-4
lines changed

Sources/apps/Types.swift

+17-1
Original file line numberDiff line numberDiff line change
@@ -1688,6 +1688,10 @@ public enum Components {
16881688
///
16891689
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/repository_id`.
16901690
public var repository_id: Swift.Int?
1691+
/// Time when the webhook delivery was throttled.
1692+
///
1693+
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/throttled_at`.
1694+
public var throttled_at: Foundation.Date?
16911695
/// Creates a new `hook_hyphen_delivery_hyphen_item`.
16921696
///
16931697
/// - Parameters:
@@ -1702,6 +1706,7 @@ public enum Components {
17021706
/// - action: The type of activity for the event that triggered the delivery.
17031707
/// - installation_id: The id of the GitHub App installation associated with this event.
17041708
/// - repository_id: The id of the repository associated with this event.
1709+
/// - throttled_at: Time when the webhook delivery was throttled.
17051710
public init(
17061711
id: Swift.Int,
17071712
guid: Swift.String,
@@ -1713,7 +1718,8 @@ public enum Components {
17131718
event: Swift.String,
17141719
action: Swift.String? = nil,
17151720
installation_id: Swift.Int? = nil,
1716-
repository_id: Swift.Int? = nil
1721+
repository_id: Swift.Int? = nil,
1722+
throttled_at: Foundation.Date? = nil
17171723
) {
17181724
self.id = id
17191725
self.guid = guid
@@ -1726,6 +1732,7 @@ public enum Components {
17261732
self.action = action
17271733
self.installation_id = installation_id
17281734
self.repository_id = repository_id
1735+
self.throttled_at = throttled_at
17291736
}
17301737
public enum CodingKeys: String, CodingKey {
17311738
case id
@@ -1739,6 +1746,7 @@ public enum Components {
17391746
case action
17401747
case installation_id
17411748
case repository_id
1749+
case throttled_at
17421750
}
17431751
}
17441752
/// Scim Error
@@ -1963,6 +1971,10 @@ public enum Components {
19631971
///
19641972
/// - Remark: Generated from `#/components/schemas/hook-delivery/repository_id`.
19651973
public var repository_id: Swift.Int?
1974+
/// Time when the webhook delivery was throttled.
1975+
///
1976+
/// - Remark: Generated from `#/components/schemas/hook-delivery/throttled_at`.
1977+
public var throttled_at: Foundation.Date?
19661978
/// The URL target of the delivery.
19671979
///
19681980
/// - Remark: Generated from `#/components/schemas/hook-delivery/url`.
@@ -2099,6 +2111,7 @@ public enum Components {
20992111
/// - action: The type of activity for the event that triggered the delivery.
21002112
/// - installation_id: The id of the GitHub App installation associated with this event.
21012113
/// - repository_id: The id of the repository associated with this event.
2114+
/// - throttled_at: Time when the webhook delivery was throttled.
21022115
/// - url: The URL target of the delivery.
21032116
/// - request:
21042117
/// - response:
@@ -2114,6 +2127,7 @@ public enum Components {
21142127
action: Swift.String? = nil,
21152128
installation_id: Swift.Int? = nil,
21162129
repository_id: Swift.Int? = nil,
2130+
throttled_at: Foundation.Date? = nil,
21172131
url: Swift.String? = nil,
21182132
request: Components.Schemas.hook_hyphen_delivery.requestPayload,
21192133
response: Components.Schemas.hook_hyphen_delivery.responsePayload
@@ -2129,6 +2143,7 @@ public enum Components {
21292143
self.action = action
21302144
self.installation_id = installation_id
21312145
self.repository_id = repository_id
2146+
self.throttled_at = throttled_at
21322147
self.url = url
21332148
self.request = request
21342149
self.response = response
@@ -2145,6 +2160,7 @@ public enum Components {
21452160
case action
21462161
case installation_id
21472162
case repository_id
2163+
case throttled_at
21482164
case url
21492165
case request
21502166
case response

Sources/orgs/Types.swift

+17-1
Original file line numberDiff line numberDiff line change
@@ -2695,6 +2695,10 @@ public enum Components {
26952695
///
26962696
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/repository_id`.
26972697
public var repository_id: Swift.Int?
2698+
/// Time when the webhook delivery was throttled.
2699+
///
2700+
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/throttled_at`.
2701+
public var throttled_at: Foundation.Date?
26982702
/// Creates a new `hook_hyphen_delivery_hyphen_item`.
26992703
///
27002704
/// - Parameters:
@@ -2709,6 +2713,7 @@ public enum Components {
27092713
/// - action: The type of activity for the event that triggered the delivery.
27102714
/// - installation_id: The id of the GitHub App installation associated with this event.
27112715
/// - repository_id: The id of the repository associated with this event.
2716+
/// - throttled_at: Time when the webhook delivery was throttled.
27122717
public init(
27132718
id: Swift.Int,
27142719
guid: Swift.String,
@@ -2720,7 +2725,8 @@ public enum Components {
27202725
event: Swift.String,
27212726
action: Swift.String? = nil,
27222727
installation_id: Swift.Int? = nil,
2723-
repository_id: Swift.Int? = nil
2728+
repository_id: Swift.Int? = nil,
2729+
throttled_at: Foundation.Date? = nil
27242730
) {
27252731
self.id = id
27262732
self.guid = guid
@@ -2733,6 +2739,7 @@ public enum Components {
27332739
self.action = action
27342740
self.installation_id = installation_id
27352741
self.repository_id = repository_id
2742+
self.throttled_at = throttled_at
27362743
}
27372744
public enum CodingKeys: String, CodingKey {
27382745
case id
@@ -2746,6 +2753,7 @@ public enum Components {
27462753
case action
27472754
case installation_id
27482755
case repository_id
2756+
case throttled_at
27492757
}
27502758
}
27512759
/// Scim Error
@@ -2970,6 +2978,10 @@ public enum Components {
29702978
///
29712979
/// - Remark: Generated from `#/components/schemas/hook-delivery/repository_id`.
29722980
public var repository_id: Swift.Int?
2981+
/// Time when the webhook delivery was throttled.
2982+
///
2983+
/// - Remark: Generated from `#/components/schemas/hook-delivery/throttled_at`.
2984+
public var throttled_at: Foundation.Date?
29732985
/// The URL target of the delivery.
29742986
///
29752987
/// - Remark: Generated from `#/components/schemas/hook-delivery/url`.
@@ -3106,6 +3118,7 @@ public enum Components {
31063118
/// - action: The type of activity for the event that triggered the delivery.
31073119
/// - installation_id: The id of the GitHub App installation associated with this event.
31083120
/// - repository_id: The id of the repository associated with this event.
3121+
/// - throttled_at: Time when the webhook delivery was throttled.
31093122
/// - url: The URL target of the delivery.
31103123
/// - request:
31113124
/// - response:
@@ -3121,6 +3134,7 @@ public enum Components {
31213134
action: Swift.String? = nil,
31223135
installation_id: Swift.Int? = nil,
31233136
repository_id: Swift.Int? = nil,
3137+
throttled_at: Foundation.Date? = nil,
31243138
url: Swift.String? = nil,
31253139
request: Components.Schemas.hook_hyphen_delivery.requestPayload,
31263140
response: Components.Schemas.hook_hyphen_delivery.responsePayload
@@ -3136,6 +3150,7 @@ public enum Components {
31363150
self.action = action
31373151
self.installation_id = installation_id
31383152
self.repository_id = repository_id
3153+
self.throttled_at = throttled_at
31393154
self.url = url
31403155
self.request = request
31413156
self.response = response
@@ -3152,6 +3167,7 @@ public enum Components {
31523167
case action
31533168
case installation_id
31543169
case repository_id
3170+
case throttled_at
31553171
case url
31563172
case request
31573173
case response

Sources/repos/Types.swift

+17-1
Original file line numberDiff line numberDiff line change
@@ -6428,6 +6428,10 @@ public enum Components {
64286428
///
64296429
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/repository_id`.
64306430
public var repository_id: Swift.Int?
6431+
/// Time when the webhook delivery was throttled.
6432+
///
6433+
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/throttled_at`.
6434+
public var throttled_at: Foundation.Date?
64316435
/// Creates a new `hook_hyphen_delivery_hyphen_item`.
64326436
///
64336437
/// - Parameters:
@@ -6442,6 +6446,7 @@ public enum Components {
64426446
/// - action: The type of activity for the event that triggered the delivery.
64436447
/// - installation_id: The id of the GitHub App installation associated with this event.
64446448
/// - repository_id: The id of the repository associated with this event.
6449+
/// - throttled_at: Time when the webhook delivery was throttled.
64456450
public init(
64466451
id: Swift.Int,
64476452
guid: Swift.String,
@@ -6453,7 +6458,8 @@ public enum Components {
64536458
event: Swift.String,
64546459
action: Swift.String? = nil,
64556460
installation_id: Swift.Int? = nil,
6456-
repository_id: Swift.Int? = nil
6461+
repository_id: Swift.Int? = nil,
6462+
throttled_at: Foundation.Date? = nil
64576463
) {
64586464
self.id = id
64596465
self.guid = guid
@@ -6466,6 +6472,7 @@ public enum Components {
64666472
self.action = action
64676473
self.installation_id = installation_id
64686474
self.repository_id = repository_id
6475+
self.throttled_at = throttled_at
64696476
}
64706477
public enum CodingKeys: String, CodingKey {
64716478
case id
@@ -6479,6 +6486,7 @@ public enum Components {
64796486
case action
64806487
case installation_id
64816488
case repository_id
6489+
case throttled_at
64826490
}
64836491
}
64846492
/// Scim Error
@@ -6703,6 +6711,10 @@ public enum Components {
67036711
///
67046712
/// - Remark: Generated from `#/components/schemas/hook-delivery/repository_id`.
67056713
public var repository_id: Swift.Int?
6714+
/// Time when the webhook delivery was throttled.
6715+
///
6716+
/// - Remark: Generated from `#/components/schemas/hook-delivery/throttled_at`.
6717+
public var throttled_at: Foundation.Date?
67066718
/// The URL target of the delivery.
67076719
///
67086720
/// - Remark: Generated from `#/components/schemas/hook-delivery/url`.
@@ -6839,6 +6851,7 @@ public enum Components {
68396851
/// - action: The type of activity for the event that triggered the delivery.
68406852
/// - installation_id: The id of the GitHub App installation associated with this event.
68416853
/// - repository_id: The id of the repository associated with this event.
6854+
/// - throttled_at: Time when the webhook delivery was throttled.
68426855
/// - url: The URL target of the delivery.
68436856
/// - request:
68446857
/// - response:
@@ -6854,6 +6867,7 @@ public enum Components {
68546867
action: Swift.String? = nil,
68556868
installation_id: Swift.Int? = nil,
68566869
repository_id: Swift.Int? = nil,
6870+
throttled_at: Foundation.Date? = nil,
68576871
url: Swift.String? = nil,
68586872
request: Components.Schemas.hook_hyphen_delivery.requestPayload,
68596873
response: Components.Schemas.hook_hyphen_delivery.responsePayload
@@ -6869,6 +6883,7 @@ public enum Components {
68696883
self.action = action
68706884
self.installation_id = installation_id
68716885
self.repository_id = repository_id
6886+
self.throttled_at = throttled_at
68726887
self.url = url
68736888
self.request = request
68746889
self.response = response
@@ -6885,6 +6900,7 @@ public enum Components {
68856900
case action
68866901
case installation_id
68876902
case repository_id
6903+
case throttled_at
68886904
case url
68896905
case request
68906906
case response

0 commit comments

Comments
 (0)