Skip to content

Commit 3ee5b91

Browse files
Commit via running ake Sources/orgs
1 parent a0c1a4c commit 3ee5b91

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

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

0 commit comments

Comments
 (0)