Skip to content

Commit f6ecfe6

Browse files
Commit via running ake Sources/repos
1 parent 3ee5b91 commit f6ecfe6

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

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)