Skip to content

Commit

Permalink
Merge pull request #55 from Wei18/dependabot/submodules/Submodule/git…
Browse files Browse the repository at this point in the history
…hub/rest-api-description-e04c0a4

Bump Submodule/github/rest-api-description from `5b52d7f` to `e04c0a4`
  • Loading branch information
github-actions[bot] authored May 27, 2024
2 parents 21c0f85 + f6ecfe6 commit 8b29ee2
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 4 deletions.
18 changes: 17 additions & 1 deletion Sources/apps/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1688,6 +1688,10 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/repository_id`.
public var repository_id: Swift.Int?
/// Time when the webhook delivery was throttled.
///
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/throttled_at`.
public var throttled_at: Foundation.Date?
/// Creates a new `hook_hyphen_delivery_hyphen_item`.
///
/// - Parameters:
Expand All @@ -1702,6 +1706,7 @@ public enum Components {
/// - action: The type of activity for the event that triggered the delivery.
/// - installation_id: The id of the GitHub App installation associated with this event.
/// - repository_id: The id of the repository associated with this event.
/// - throttled_at: Time when the webhook delivery was throttled.
public init(
id: Swift.Int,
guid: Swift.String,
Expand All @@ -1713,7 +1718,8 @@ public enum Components {
event: Swift.String,
action: Swift.String? = nil,
installation_id: Swift.Int? = nil,
repository_id: Swift.Int? = nil
repository_id: Swift.Int? = nil,
throttled_at: Foundation.Date? = nil
) {
self.id = id
self.guid = guid
Expand All @@ -1726,6 +1732,7 @@ public enum Components {
self.action = action
self.installation_id = installation_id
self.repository_id = repository_id
self.throttled_at = throttled_at
}
public enum CodingKeys: String, CodingKey {
case id
Expand All @@ -1739,6 +1746,7 @@ public enum Components {
case action
case installation_id
case repository_id
case throttled_at
}
}
/// Scim Error
Expand Down Expand Up @@ -1963,6 +1971,10 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/hook-delivery/repository_id`.
public var repository_id: Swift.Int?
/// Time when the webhook delivery was throttled.
///
/// - Remark: Generated from `#/components/schemas/hook-delivery/throttled_at`.
public var throttled_at: Foundation.Date?
/// The URL target of the delivery.
///
/// - Remark: Generated from `#/components/schemas/hook-delivery/url`.
Expand Down Expand Up @@ -2099,6 +2111,7 @@ public enum Components {
/// - action: The type of activity for the event that triggered the delivery.
/// - installation_id: The id of the GitHub App installation associated with this event.
/// - repository_id: The id of the repository associated with this event.
/// - throttled_at: Time when the webhook delivery was throttled.
/// - url: The URL target of the delivery.
/// - request:
/// - response:
Expand All @@ -2114,6 +2127,7 @@ public enum Components {
action: Swift.String? = nil,
installation_id: Swift.Int? = nil,
repository_id: Swift.Int? = nil,
throttled_at: Foundation.Date? = nil,
url: Swift.String? = nil,
request: Components.Schemas.hook_hyphen_delivery.requestPayload,
response: Components.Schemas.hook_hyphen_delivery.responsePayload
Expand All @@ -2129,6 +2143,7 @@ public enum Components {
self.action = action
self.installation_id = installation_id
self.repository_id = repository_id
self.throttled_at = throttled_at
self.url = url
self.request = request
self.response = response
Expand All @@ -2145,6 +2160,7 @@ public enum Components {
case action
case installation_id
case repository_id
case throttled_at
case url
case request
case response
Expand Down
18 changes: 17 additions & 1 deletion Sources/orgs/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2695,6 +2695,10 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/repository_id`.
public var repository_id: Swift.Int?
/// Time when the webhook delivery was throttled.
///
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/throttled_at`.
public var throttled_at: Foundation.Date?
/// Creates a new `hook_hyphen_delivery_hyphen_item`.
///
/// - Parameters:
Expand All @@ -2709,6 +2713,7 @@ public enum Components {
/// - action: The type of activity for the event that triggered the delivery.
/// - installation_id: The id of the GitHub App installation associated with this event.
/// - repository_id: The id of the repository associated with this event.
/// - throttled_at: Time when the webhook delivery was throttled.
public init(
id: Swift.Int,
guid: Swift.String,
Expand All @@ -2720,7 +2725,8 @@ public enum Components {
event: Swift.String,
action: Swift.String? = nil,
installation_id: Swift.Int? = nil,
repository_id: Swift.Int? = nil
repository_id: Swift.Int? = nil,
throttled_at: Foundation.Date? = nil
) {
self.id = id
self.guid = guid
Expand All @@ -2733,6 +2739,7 @@ public enum Components {
self.action = action
self.installation_id = installation_id
self.repository_id = repository_id
self.throttled_at = throttled_at
}
public enum CodingKeys: String, CodingKey {
case id
Expand All @@ -2746,6 +2753,7 @@ public enum Components {
case action
case installation_id
case repository_id
case throttled_at
}
}
/// Scim Error
Expand Down Expand Up @@ -2970,6 +2978,10 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/hook-delivery/repository_id`.
public var repository_id: Swift.Int?
/// Time when the webhook delivery was throttled.
///
/// - Remark: Generated from `#/components/schemas/hook-delivery/throttled_at`.
public var throttled_at: Foundation.Date?
/// The URL target of the delivery.
///
/// - Remark: Generated from `#/components/schemas/hook-delivery/url`.
Expand Down Expand Up @@ -3106,6 +3118,7 @@ public enum Components {
/// - action: The type of activity for the event that triggered the delivery.
/// - installation_id: The id of the GitHub App installation associated with this event.
/// - repository_id: The id of the repository associated with this event.
/// - throttled_at: Time when the webhook delivery was throttled.
/// - url: The URL target of the delivery.
/// - request:
/// - response:
Expand All @@ -3121,6 +3134,7 @@ public enum Components {
action: Swift.String? = nil,
installation_id: Swift.Int? = nil,
repository_id: Swift.Int? = nil,
throttled_at: Foundation.Date? = nil,
url: Swift.String? = nil,
request: Components.Schemas.hook_hyphen_delivery.requestPayload,
response: Components.Schemas.hook_hyphen_delivery.responsePayload
Expand All @@ -3136,6 +3150,7 @@ public enum Components {
self.action = action
self.installation_id = installation_id
self.repository_id = repository_id
self.throttled_at = throttled_at
self.url = url
self.request = request
self.response = response
Expand All @@ -3152,6 +3167,7 @@ public enum Components {
case action
case installation_id
case repository_id
case throttled_at
case url
case request
case response
Expand Down
18 changes: 17 additions & 1 deletion Sources/repos/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6428,6 +6428,10 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/repository_id`.
public var repository_id: Swift.Int?
/// Time when the webhook delivery was throttled.
///
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/throttled_at`.
public var throttled_at: Foundation.Date?
/// Creates a new `hook_hyphen_delivery_hyphen_item`.
///
/// - Parameters:
Expand All @@ -6442,6 +6446,7 @@ public enum Components {
/// - action: The type of activity for the event that triggered the delivery.
/// - installation_id: The id of the GitHub App installation associated with this event.
/// - repository_id: The id of the repository associated with this event.
/// - throttled_at: Time when the webhook delivery was throttled.
public init(
id: Swift.Int,
guid: Swift.String,
Expand All @@ -6453,7 +6458,8 @@ public enum Components {
event: Swift.String,
action: Swift.String? = nil,
installation_id: Swift.Int? = nil,
repository_id: Swift.Int? = nil
repository_id: Swift.Int? = nil,
throttled_at: Foundation.Date? = nil
) {
self.id = id
self.guid = guid
Expand All @@ -6466,6 +6472,7 @@ public enum Components {
self.action = action
self.installation_id = installation_id
self.repository_id = repository_id
self.throttled_at = throttled_at
}
public enum CodingKeys: String, CodingKey {
case id
Expand All @@ -6479,6 +6486,7 @@ public enum Components {
case action
case installation_id
case repository_id
case throttled_at
}
}
/// Scim Error
Expand Down Expand Up @@ -6703,6 +6711,10 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/hook-delivery/repository_id`.
public var repository_id: Swift.Int?
/// Time when the webhook delivery was throttled.
///
/// - Remark: Generated from `#/components/schemas/hook-delivery/throttled_at`.
public var throttled_at: Foundation.Date?
/// The URL target of the delivery.
///
/// - Remark: Generated from `#/components/schemas/hook-delivery/url`.
Expand Down Expand Up @@ -6839,6 +6851,7 @@ public enum Components {
/// - action: The type of activity for the event that triggered the delivery.
/// - installation_id: The id of the GitHub App installation associated with this event.
/// - repository_id: The id of the repository associated with this event.
/// - throttled_at: Time when the webhook delivery was throttled.
/// - url: The URL target of the delivery.
/// - request:
/// - response:
Expand All @@ -6854,6 +6867,7 @@ public enum Components {
action: Swift.String? = nil,
installation_id: Swift.Int? = nil,
repository_id: Swift.Int? = nil,
throttled_at: Foundation.Date? = nil,
url: Swift.String? = nil,
request: Components.Schemas.hook_hyphen_delivery.requestPayload,
response: Components.Schemas.hook_hyphen_delivery.responsePayload
Expand All @@ -6869,6 +6883,7 @@ public enum Components {
self.action = action
self.installation_id = installation_id
self.repository_id = repository_id
self.throttled_at = throttled_at
self.url = url
self.request = request
self.response = response
Expand All @@ -6885,6 +6900,7 @@ public enum Components {
case action
case installation_id
case repository_id
case throttled_at
case url
case request
case response
Expand Down
2 changes: 1 addition & 1 deletion Submodule/github/rest-api-description

0 comments on commit 8b29ee2

Please sign in to comment.