Skip to content

Commit d69f255

Browse files
Commit via running: make Sources/issues
1 parent 982292f commit d69f255

File tree

1 file changed

+10
-46
lines changed

1 file changed

+10
-46
lines changed

Sources/issues/Types.swift

Lines changed: 10 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1831,20 +1831,14 @@ public enum Components {
18311831
///
18321832
/// - Remark: Generated from `#/components/schemas/integration/permissions`.
18331833
public var permissions: Components.Schemas.Integration.PermissionsPayload
1834-
/// The list of events for the GitHub app
1834+
/// 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.
18351835
///
18361836
/// - Remark: Generated from `#/components/schemas/integration/events`.
18371837
public var events: [Swift.String]
1838-
/// The number of installations associated with the GitHub app
1838+
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
18391839
///
18401840
/// - Remark: Generated from `#/components/schemas/integration/installations_count`.
18411841
public var installationsCount: Swift.Int?
1842-
/// - Remark: Generated from `#/components/schemas/integration/client_secret`.
1843-
public var clientSecret: Swift.String?
1844-
/// - Remark: Generated from `#/components/schemas/integration/webhook_secret`.
1845-
public var webhookSecret: Swift.String?
1846-
/// - Remark: Generated from `#/components/schemas/integration/pem`.
1847-
public var pem: Swift.String?
18481842
/// Creates a new `Integration`.
18491843
///
18501844
/// - Parameters:
@@ -1860,11 +1854,8 @@ public enum Components {
18601854
/// - createdAt:
18611855
/// - updatedAt:
18621856
/// - permissions: The set of permissions for the GitHub app
1863-
/// - events: The list of events for the GitHub app
1864-
/// - installationsCount: The number of installations associated with the GitHub app
1865-
/// - clientSecret:
1866-
/// - webhookSecret:
1867-
/// - pem:
1857+
/// - 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.
1858+
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
18681859
public init(
18691860
id: Swift.Int,
18701861
slug: Swift.String? = nil,
@@ -1879,10 +1870,7 @@ public enum Components {
18791870
updatedAt: Foundation.Date,
18801871
permissions: Components.Schemas.Integration.PermissionsPayload,
18811872
events: [Swift.String],
1882-
installationsCount: Swift.Int? = nil,
1883-
clientSecret: Swift.String? = nil,
1884-
webhookSecret: Swift.String? = nil,
1885-
pem: Swift.String? = nil
1873+
installationsCount: Swift.Int? = nil
18861874
) {
18871875
self.id = id
18881876
self.slug = slug
@@ -1898,9 +1886,6 @@ public enum Components {
18981886
self.permissions = permissions
18991887
self.events = events
19001888
self.installationsCount = installationsCount
1901-
self.clientSecret = clientSecret
1902-
self.webhookSecret = webhookSecret
1903-
self.pem = pem
19041889
}
19051890
public enum CodingKeys: String, CodingKey {
19061891
case id
@@ -1917,9 +1902,6 @@ public enum Components {
19171902
case permissions
19181903
case events
19191904
case installationsCount = "installations_count"
1920-
case clientSecret = "client_secret"
1921-
case webhookSecret = "webhook_secret"
1922-
case pem
19231905
}
19241906
}
19251907
/// Scim Error
@@ -3448,20 +3430,14 @@ public enum Components {
34483430
///
34493431
/// - Remark: Generated from `#/components/schemas/nullable-integration/permissions`.
34503432
public var permissions: Components.Schemas.NullableIntegration.PermissionsPayload
3451-
/// The list of events for the GitHub app
3433+
/// 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.
34523434
///
34533435
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
34543436
public var events: [Swift.String]
3455-
/// The number of installations associated with the GitHub app
3437+
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
34563438
///
34573439
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
34583440
public var installationsCount: Swift.Int?
3459-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
3460-
public var clientSecret: Swift.String?
3461-
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
3462-
public var webhookSecret: Swift.String?
3463-
/// - Remark: Generated from `#/components/schemas/nullable-integration/pem`.
3464-
public var pem: Swift.String?
34653441
/// Creates a new `NullableIntegration`.
34663442
///
34673443
/// - Parameters:
@@ -3477,11 +3453,8 @@ public enum Components {
34773453
/// - createdAt:
34783454
/// - updatedAt:
34793455
/// - permissions: The set of permissions for the GitHub app
3480-
/// - events: The list of events for the GitHub app
3481-
/// - installationsCount: The number of installations associated with the GitHub app
3482-
/// - clientSecret:
3483-
/// - webhookSecret:
3484-
/// - pem:
3456+
/// - 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.
3457+
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
34853458
public init(
34863459
id: Swift.Int,
34873460
slug: Swift.String? = nil,
@@ -3496,10 +3469,7 @@ public enum Components {
34963469
updatedAt: Foundation.Date,
34973470
permissions: Components.Schemas.NullableIntegration.PermissionsPayload,
34983471
events: [Swift.String],
3499-
installationsCount: Swift.Int? = nil,
3500-
clientSecret: Swift.String? = nil,
3501-
webhookSecret: Swift.String? = nil,
3502-
pem: Swift.String? = nil
3472+
installationsCount: Swift.Int? = nil
35033473
) {
35043474
self.id = id
35053475
self.slug = slug
@@ -3515,9 +3485,6 @@ public enum Components {
35153485
self.permissions = permissions
35163486
self.events = events
35173487
self.installationsCount = installationsCount
3518-
self.clientSecret = clientSecret
3519-
self.webhookSecret = webhookSecret
3520-
self.pem = pem
35213488
}
35223489
public enum CodingKeys: String, CodingKey {
35233490
case id
@@ -3534,9 +3501,6 @@ public enum Components {
35343501
case permissions
35353502
case events
35363503
case installationsCount = "installations_count"
3537-
case clientSecret = "client_secret"
3538-
case webhookSecret = "webhook_secret"
3539-
case pem
35403504
}
35413505
}
35423506
/// How the author is associated with the repository.

0 commit comments

Comments
 (0)