Skip to content

Commit 198fb52

Browse files
Commit via running: make Sources/repos
1 parent d69f255 commit 198fb52

File tree

1 file changed

+16
-46
lines changed

1 file changed

+16
-46
lines changed

Sources/repos/Types.swift

Lines changed: 16 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -6419,20 +6419,14 @@ public enum Components {
64196419
///
64206420
/// - Remark: Generated from `#/components/schemas/integration/permissions`.
64216421
public var permissions: Components.Schemas.Integration.PermissionsPayload
6422-
/// The list of events for the GitHub app
6422+
/// 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.
64236423
///
64246424
/// - Remark: Generated from `#/components/schemas/integration/events`.
64256425
public var events: [Swift.String]
6426-
/// The number of installations associated with the GitHub app
6426+
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
64276427
///
64286428
/// - Remark: Generated from `#/components/schemas/integration/installations_count`.
64296429
public var installationsCount: Swift.Int?
6430-
/// - Remark: Generated from `#/components/schemas/integration/client_secret`.
6431-
public var clientSecret: Swift.String?
6432-
/// - Remark: Generated from `#/components/schemas/integration/webhook_secret`.
6433-
public var webhookSecret: Swift.String?
6434-
/// - Remark: Generated from `#/components/schemas/integration/pem`.
6435-
public var pem: Swift.String?
64366430
/// Creates a new `Integration`.
64376431
///
64386432
/// - Parameters:
@@ -6448,11 +6442,8 @@ public enum Components {
64486442
/// - createdAt:
64496443
/// - updatedAt:
64506444
/// - permissions: The set of permissions for the GitHub app
6451-
/// - events: The list of events for the GitHub app
6452-
/// - installationsCount: The number of installations associated with the GitHub app
6453-
/// - clientSecret:
6454-
/// - webhookSecret:
6455-
/// - pem:
6445+
/// - 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.
6446+
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
64566447
public init(
64576448
id: Swift.Int,
64586449
slug: Swift.String? = nil,
@@ -6467,10 +6458,7 @@ public enum Components {
64676458
updatedAt: Foundation.Date,
64686459
permissions: Components.Schemas.Integration.PermissionsPayload,
64696460
events: [Swift.String],
6470-
installationsCount: Swift.Int? = nil,
6471-
clientSecret: Swift.String? = nil,
6472-
webhookSecret: Swift.String? = nil,
6473-
pem: Swift.String? = nil
6461+
installationsCount: Swift.Int? = nil
64746462
) {
64756463
self.id = id
64766464
self.slug = slug
@@ -6486,9 +6474,6 @@ public enum Components {
64866474
self.permissions = permissions
64876475
self.events = events
64886476
self.installationsCount = installationsCount
6489-
self.clientSecret = clientSecret
6490-
self.webhookSecret = webhookSecret
6491-
self.pem = pem
64926477
}
64936478
public enum CodingKeys: String, CodingKey {
64946479
case id
@@ -6505,9 +6490,6 @@ public enum Components {
65056490
case permissions
65066491
case events
65076492
case installationsCount = "installations_count"
6508-
case clientSecret = "client_secret"
6509-
case webhookSecret = "webhook_secret"
6510-
case pem
65116493
}
65126494
}
65136495
/// The URL to which the payloads will be delivered.
@@ -8427,20 +8409,14 @@ public enum Components {
84278409
///
84288410
/// - Remark: Generated from `#/components/schemas/nullable-integration/permissions`.
84298411
public var permissions: Components.Schemas.NullableIntegration.PermissionsPayload
8430-
/// The list of events for the GitHub app
8412+
/// 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.
84318413
///
84328414
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
84338415
public var events: [Swift.String]
8434-
/// The number of installations associated with the GitHub app
8416+
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
84358417
///
84368418
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
84378419
public var installationsCount: Swift.Int?
8438-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
8439-
public var clientSecret: Swift.String?
8440-
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
8441-
public var webhookSecret: Swift.String?
8442-
/// - Remark: Generated from `#/components/schemas/nullable-integration/pem`.
8443-
public var pem: Swift.String?
84448420
/// Creates a new `NullableIntegration`.
84458421
///
84468422
/// - Parameters:
@@ -8456,11 +8432,8 @@ public enum Components {
84568432
/// - createdAt:
84578433
/// - updatedAt:
84588434
/// - permissions: The set of permissions for the GitHub app
8459-
/// - events: The list of events for the GitHub app
8460-
/// - installationsCount: The number of installations associated with the GitHub app
8461-
/// - clientSecret:
8462-
/// - webhookSecret:
8463-
/// - pem:
8435+
/// - 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.
8436+
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
84648437
public init(
84658438
id: Swift.Int,
84668439
slug: Swift.String? = nil,
@@ -8475,10 +8448,7 @@ public enum Components {
84758448
updatedAt: Foundation.Date,
84768449
permissions: Components.Schemas.NullableIntegration.PermissionsPayload,
84778450
events: [Swift.String],
8478-
installationsCount: Swift.Int? = nil,
8479-
clientSecret: Swift.String? = nil,
8480-
webhookSecret: Swift.String? = nil,
8481-
pem: Swift.String? = nil
8451+
installationsCount: Swift.Int? = nil
84828452
) {
84838453
self.id = id
84848454
self.slug = slug
@@ -8494,9 +8464,6 @@ public enum Components {
84948464
self.permissions = permissions
84958465
self.events = events
84968466
self.installationsCount = installationsCount
8497-
self.clientSecret = clientSecret
8498-
self.webhookSecret = webhookSecret
8499-
self.pem = pem
85008467
}
85018468
public enum CodingKeys: String, CodingKey {
85028469
case id
@@ -8513,9 +8480,6 @@ public enum Components {
85138480
case permissions
85148481
case events
85158482
case installationsCount = "installations_count"
8516-
case clientSecret = "client_secret"
8517-
case webhookSecret = "webhook_secret"
8518-
case pem
85198483
}
85208484
}
85218485
/// How the author is associated with the repository.
@@ -21244,6 +21208,8 @@ public enum Components {
2124421208
public var contentType: Swift.String
2124521209
/// - Remark: Generated from `#/components/schemas/release-asset/size`.
2124621210
public var size: Swift.Int
21211+
/// - Remark: Generated from `#/components/schemas/release-asset/digest`.
21212+
public var digest: Swift.String?
2124721213
/// - Remark: Generated from `#/components/schemas/release-asset/download_count`.
2124821214
public var downloadCount: Swift.Int
2124921215
/// - Remark: Generated from `#/components/schemas/release-asset/created_at`.
@@ -21264,6 +21230,7 @@ public enum Components {
2126421230
/// - state: State of the release asset.
2126521231
/// - contentType:
2126621232
/// - size:
21233+
/// - digest:
2126721234
/// - downloadCount:
2126821235
/// - createdAt:
2126921236
/// - updatedAt:
@@ -21278,6 +21245,7 @@ public enum Components {
2127821245
state: Components.Schemas.ReleaseAsset.StatePayload,
2127921246
contentType: Swift.String,
2128021247
size: Swift.Int,
21248+
digest: Swift.String? = nil,
2128121249
downloadCount: Swift.Int,
2128221250
createdAt: Foundation.Date,
2128321251
updatedAt: Foundation.Date,
@@ -21292,6 +21260,7 @@ public enum Components {
2129221260
self.state = state
2129321261
self.contentType = contentType
2129421262
self.size = size
21263+
self.digest = digest
2129521264
self.downloadCount = downloadCount
2129621265
self.createdAt = createdAt
2129721266
self.updatedAt = updatedAt
@@ -21307,6 +21276,7 @@ public enum Components {
2130721276
case state
2130821277
case contentType = "content_type"
2130921278
case size
21279+
case digest
2131021280
case downloadCount = "download_count"
2131121281
case createdAt = "created_at"
2131221282
case updatedAt = "updated_at"

0 commit comments

Comments
 (0)