Skip to content
Prev Previous commit
Next Next commit
Commit via running: make Sources/issues
  • Loading branch information
dependabot[bot] committed Jun 3, 2025
commit d69f255c7a9981cd9d0488b9f7fbe4dffed7add5
56 changes: 10 additions & 46 deletions Sources/issues/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1831,20 +1831,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 @@ -1860,11 +1854,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 @@ -1879,10 +1870,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 @@ -1898,9 +1886,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 @@ -1917,9 +1902,6 @@ public enum Components {
case permissions
case events
case installationsCount = "installations_count"
case clientSecret = "client_secret"
case webhookSecret = "webhook_secret"
case pem
}
}
/// Scim Error
Expand Down Expand Up @@ -3448,20 +3430,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 @@ -3477,11 +3453,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 @@ -3496,10 +3469,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 @@ -3515,9 +3485,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 @@ -3534,9 +3501,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