Skip to content

Bump Submodule/github/rest-api-description from f024f30 to 31cc3f6 #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
28 changes: 5 additions & 23 deletions Sources/actions/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5878,20 +5878,14 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/nullable-integration/permissions`.
public var permissions: Components.Schemas.NullableIntegration.PermissionsPayload
/// The list of events for the GitHub app
/// The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.
///
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
public var events: [Swift.String]
/// The number of installations associated with the GitHub app
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
///
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
public var installationsCount: Swift.Int?
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
public var clientSecret: Swift.String?
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
public var webhookSecret: Swift.String?
/// - Remark: Generated from `#/components/schemas/nullable-integration/pem`.
public var pem: Swift.String?
/// Creates a new `NullableIntegration`.
///
/// - Parameters:
Expand All @@ -5907,11 +5901,8 @@ public enum Components {
/// - createdAt:
/// - updatedAt:
/// - permissions: The set of permissions for the GitHub app
/// - events: The list of events for the GitHub app
/// - installationsCount: The number of installations associated with the GitHub app
/// - clientSecret:
/// - webhookSecret:
/// - pem:
/// - events: The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
public init(
id: Swift.Int,
slug: Swift.String? = nil,
Expand All @@ -5926,10 +5917,7 @@ public enum Components {
updatedAt: Foundation.Date,
permissions: Components.Schemas.NullableIntegration.PermissionsPayload,
events: [Swift.String],
installationsCount: Swift.Int? = nil,
clientSecret: Swift.String? = nil,
webhookSecret: Swift.String? = nil,
pem: Swift.String? = nil
installationsCount: Swift.Int? = nil
) {
self.id = id
self.slug = slug
Expand All @@ -5945,9 +5933,6 @@ public enum Components {
self.permissions = permissions
self.events = events
self.installationsCount = installationsCount
self.clientSecret = clientSecret
self.webhookSecret = webhookSecret
self.pem = pem
}
public enum CodingKeys: String, CodingKey {
case id
Expand All @@ -5964,9 +5949,6 @@ public enum Components {
case permissions
case events
case installationsCount = "installations_count"
case clientSecret = "client_secret"
case webhookSecret = "webhook_secret"
case pem
}
}
/// - Remark: Generated from `#/components/schemas/security-and-analysis`.
Expand Down
28 changes: 5 additions & 23 deletions Sources/activity/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2686,20 +2686,14 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/nullable-integration/permissions`.
public var permissions: Components.Schemas.NullableIntegration.PermissionsPayload
/// The list of events for the GitHub app
/// The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.
///
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
public var events: [Swift.String]
/// The number of installations associated with the GitHub app
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
///
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
public var installationsCount: Swift.Int?
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
public var clientSecret: Swift.String?
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
public var webhookSecret: Swift.String?
/// - Remark: Generated from `#/components/schemas/nullable-integration/pem`.
public var pem: Swift.String?
/// Creates a new `NullableIntegration`.
///
/// - Parameters:
Expand All @@ -2715,11 +2709,8 @@ public enum Components {
/// - createdAt:
/// - updatedAt:
/// - permissions: The set of permissions for the GitHub app
/// - events: The list of events for the GitHub app
/// - installationsCount: The number of installations associated with the GitHub app
/// - clientSecret:
/// - webhookSecret:
/// - pem:
/// - events: The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
public init(
id: Swift.Int,
slug: Swift.String? = nil,
Expand All @@ -2734,10 +2725,7 @@ public enum Components {
updatedAt: Foundation.Date,
permissions: Components.Schemas.NullableIntegration.PermissionsPayload,
events: [Swift.String],
installationsCount: Swift.Int? = nil,
clientSecret: Swift.String? = nil,
webhookSecret: Swift.String? = nil,
pem: Swift.String? = nil
installationsCount: Swift.Int? = nil
) {
self.id = id
self.slug = slug
Expand All @@ -2753,9 +2741,6 @@ public enum Components {
self.permissions = permissions
self.events = events
self.installationsCount = installationsCount
self.clientSecret = clientSecret
self.webhookSecret = webhookSecret
self.pem = pem
}
public enum CodingKeys: String, CodingKey {
case id
Expand All @@ -2772,9 +2757,6 @@ public enum Components {
case permissions
case events
case installationsCount = "installations_count"
case clientSecret = "client_secret"
case webhookSecret = "webhook_secret"
case pem
}
}
/// How the author is associated with the repository.
Expand Down
28 changes: 5 additions & 23 deletions Sources/apps/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1455,20 +1455,14 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/integration/permissions`.
public var permissions: Components.Schemas.Integration.PermissionsPayload
/// The list of events for the GitHub app
/// The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.
///
/// - Remark: Generated from `#/components/schemas/integration/events`.
public var events: [Swift.String]
/// The number of installations associated with the GitHub app
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
///
/// - Remark: Generated from `#/components/schemas/integration/installations_count`.
public var installationsCount: Swift.Int?
/// - Remark: Generated from `#/components/schemas/integration/client_secret`.
public var clientSecret: Swift.String?
/// - Remark: Generated from `#/components/schemas/integration/webhook_secret`.
public var webhookSecret: Swift.String?
/// - Remark: Generated from `#/components/schemas/integration/pem`.
public var pem: Swift.String?
/// Creates a new `Integration`.
///
/// - Parameters:
Expand All @@ -1484,11 +1478,8 @@ public enum Components {
/// - createdAt:
/// - updatedAt:
/// - permissions: The set of permissions for the GitHub app
/// - events: The list of events for the GitHub app
/// - installationsCount: The number of installations associated with the GitHub app
/// - clientSecret:
/// - webhookSecret:
/// - pem:
/// - events: The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
public init(
id: Swift.Int,
slug: Swift.String? = nil,
Expand All @@ -1503,10 +1494,7 @@ public enum Components {
updatedAt: Foundation.Date,
permissions: Components.Schemas.Integration.PermissionsPayload,
events: [Swift.String],
installationsCount: Swift.Int? = nil,
clientSecret: Swift.String? = nil,
webhookSecret: Swift.String? = nil,
pem: Swift.String? = nil
installationsCount: Swift.Int? = nil
) {
self.id = id
self.slug = slug
Expand All @@ -1522,9 +1510,6 @@ public enum Components {
self.permissions = permissions
self.events = events
self.installationsCount = installationsCount
self.clientSecret = clientSecret
self.webhookSecret = webhookSecret
self.pem = pem
}
public enum CodingKeys: String, CodingKey {
case id
Expand All @@ -1541,9 +1526,6 @@ public enum Components {
case permissions
case events
case installationsCount = "installations_count"
case clientSecret = "client_secret"
case webhookSecret = "webhook_secret"
case pem
}
}
/// The URL to which the payloads will be delivered.
Expand Down
28 changes: 5 additions & 23 deletions Sources/checks/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -899,20 +899,14 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/nullable-integration/permissions`.
public var permissions: Components.Schemas.NullableIntegration.PermissionsPayload
/// The list of events for the GitHub app
/// The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.
///
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
public var events: [Swift.String]
/// The number of installations associated with the GitHub app
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
///
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
public var installationsCount: Swift.Int?
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
public var clientSecret: Swift.String?
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
public var webhookSecret: Swift.String?
/// - Remark: Generated from `#/components/schemas/nullable-integration/pem`.
public var pem: Swift.String?
/// Creates a new `NullableIntegration`.
///
/// - Parameters:
Expand All @@ -928,11 +922,8 @@ public enum Components {
/// - createdAt:
/// - updatedAt:
/// - permissions: The set of permissions for the GitHub app
/// - events: The list of events for the GitHub app
/// - installationsCount: The number of installations associated with the GitHub app
/// - clientSecret:
/// - webhookSecret:
/// - pem:
/// - events: The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
public init(
id: Swift.Int,
slug: Swift.String? = nil,
Expand All @@ -947,10 +938,7 @@ public enum Components {
updatedAt: Foundation.Date,
permissions: Components.Schemas.NullableIntegration.PermissionsPayload,
events: [Swift.String],
installationsCount: Swift.Int? = nil,
clientSecret: Swift.String? = nil,
webhookSecret: Swift.String? = nil,
pem: Swift.String? = nil
installationsCount: Swift.Int? = nil
) {
self.id = id
self.slug = slug
Expand All @@ -966,9 +954,6 @@ public enum Components {
self.permissions = permissions
self.events = events
self.installationsCount = installationsCount
self.clientSecret = clientSecret
self.webhookSecret = webhookSecret
self.pem = pem
}
public enum CodingKeys: String, CodingKey {
case id
Expand All @@ -985,9 +970,6 @@ public enum Components {
case permissions
case events
case installationsCount = "installations_count"
case clientSecret = "client_secret"
case webhookSecret = "webhook_secret"
case pem
}
}
/// - Remark: Generated from `#/components/schemas/security-and-analysis`.
Expand Down
Loading