Skip to content

Commit 446eef9

Browse files
Commit via running: make Sources/actions
1 parent c19769c commit 446eef9

File tree

1 file changed

+5
-23
lines changed

1 file changed

+5
-23
lines changed

Sources/actions/Types.swift

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5878,20 +5878,14 @@ public enum Components {
58785878
///
58795879
/// - Remark: Generated from `#/components/schemas/nullable-integration/permissions`.
58805880
public var permissions: Components.Schemas.NullableIntegration.PermissionsPayload
5881-
/// The list of events for the GitHub app
5881+
/// 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.
58825882
///
58835883
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
58845884
public var events: [Swift.String]
5885-
/// The number of installations associated with the GitHub app
5885+
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
58865886
///
58875887
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
58885888
public var installationsCount: Swift.Int?
5889-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
5890-
public var clientSecret: Swift.String?
5891-
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
5892-
public var webhookSecret: Swift.String?
5893-
/// - Remark: Generated from `#/components/schemas/nullable-integration/pem`.
5894-
public var pem: Swift.String?
58955889
/// Creates a new `NullableIntegration`.
58965890
///
58975891
/// - Parameters:
@@ -5907,11 +5901,8 @@ public enum Components {
59075901
/// - createdAt:
59085902
/// - updatedAt:
59095903
/// - permissions: The set of permissions for the GitHub app
5910-
/// - events: The list of events for the GitHub app
5911-
/// - installationsCount: The number of installations associated with the GitHub app
5912-
/// - clientSecret:
5913-
/// - webhookSecret:
5914-
/// - pem:
5904+
/// - 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.
5905+
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
59155906
public init(
59165907
id: Swift.Int,
59175908
slug: Swift.String? = nil,
@@ -5926,10 +5917,7 @@ public enum Components {
59265917
updatedAt: Foundation.Date,
59275918
permissions: Components.Schemas.NullableIntegration.PermissionsPayload,
59285919
events: [Swift.String],
5929-
installationsCount: Swift.Int? = nil,
5930-
clientSecret: Swift.String? = nil,
5931-
webhookSecret: Swift.String? = nil,
5932-
pem: Swift.String? = nil
5920+
installationsCount: Swift.Int? = nil
59335921
) {
59345922
self.id = id
59355923
self.slug = slug
@@ -5945,9 +5933,6 @@ public enum Components {
59455933
self.permissions = permissions
59465934
self.events = events
59475935
self.installationsCount = installationsCount
5948-
self.clientSecret = clientSecret
5949-
self.webhookSecret = webhookSecret
5950-
self.pem = pem
59515936
}
59525937
public enum CodingKeys: String, CodingKey {
59535938
case id
@@ -5964,9 +5949,6 @@ public enum Components {
59645949
case permissions
59655950
case events
59665951
case installationsCount = "installations_count"
5967-
case clientSecret = "client_secret"
5968-
case webhookSecret = "webhook_secret"
5969-
case pem
59705952
}
59715953
}
59725954
/// - Remark: Generated from `#/components/schemas/security-and-analysis`.

0 commit comments

Comments
 (0)