Skip to content

Commit a0c1a4c

Browse files
Commit via running ake Sources/apps
1 parent 00993e9 commit a0c1a4c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
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

0 commit comments

Comments
 (0)