Skip to content

Commit cd70ccc

Browse files
Commit via running: make Sources/search
1 parent 198fb52 commit cd70ccc

File tree

1 file changed

+5
-23
lines changed

1 file changed

+5
-23
lines changed

Sources/search/Types.swift

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2105,20 +2105,14 @@ public enum Components {
21052105
///
21062106
/// - Remark: Generated from `#/components/schemas/nullable-integration/permissions`.
21072107
public var permissions: Components.Schemas.NullableIntegration.PermissionsPayload
2108-
/// The list of events for the GitHub app
2108+
/// 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.
21092109
///
21102110
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
21112111
public var events: [Swift.String]
2112-
/// The number of installations associated with the GitHub app
2112+
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
21132113
///
21142114
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
21152115
public var installationsCount: Swift.Int?
2116-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
2117-
public var clientSecret: Swift.String?
2118-
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
2119-
public var webhookSecret: Swift.String?
2120-
/// - Remark: Generated from `#/components/schemas/nullable-integration/pem`.
2121-
public var pem: Swift.String?
21222116
/// Creates a new `NullableIntegration`.
21232117
///
21242118
/// - Parameters:
@@ -2134,11 +2128,8 @@ public enum Components {
21342128
/// - createdAt:
21352129
/// - updatedAt:
21362130
/// - permissions: The set of permissions for the GitHub app
2137-
/// - events: The list of events for the GitHub app
2138-
/// - installationsCount: The number of installations associated with the GitHub app
2139-
/// - clientSecret:
2140-
/// - webhookSecret:
2141-
/// - pem:
2131+
/// - 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.
2132+
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
21422133
public init(
21432134
id: Swift.Int,
21442135
slug: Swift.String? = nil,
@@ -2153,10 +2144,7 @@ public enum Components {
21532144
updatedAt: Foundation.Date,
21542145
permissions: Components.Schemas.NullableIntegration.PermissionsPayload,
21552146
events: [Swift.String],
2156-
installationsCount: Swift.Int? = nil,
2157-
clientSecret: Swift.String? = nil,
2158-
webhookSecret: Swift.String? = nil,
2159-
pem: Swift.String? = nil
2147+
installationsCount: Swift.Int? = nil
21602148
) {
21612149
self.id = id
21622150
self.slug = slug
@@ -2172,9 +2160,6 @@ public enum Components {
21722160
self.permissions = permissions
21732161
self.events = events
21742162
self.installationsCount = installationsCount
2175-
self.clientSecret = clientSecret
2176-
self.webhookSecret = webhookSecret
2177-
self.pem = pem
21782163
}
21792164
public enum CodingKeys: String, CodingKey {
21802165
case id
@@ -2191,9 +2176,6 @@ public enum Components {
21912176
case permissions
21922177
case events
21932178
case installationsCount = "installations_count"
2194-
case clientSecret = "client_secret"
2195-
case webhookSecret = "webhook_secret"
2196-
case pem
21972179
}
21982180
}
21992181
/// How the author is associated with the repository.

0 commit comments

Comments
 (0)