Skip to content

Commit f50f1c2

Browse files
Commit via running ake Sources/actions
1 parent c3e6cf1 commit f50f1c2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Sources/actions/Types.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5215,6 +5215,8 @@ public enum Components {
52155215
public var slug: Swift.String?
52165216
/// - Remark: Generated from `#/components/schemas/nullable-integration/node_id`.
52175217
public var node_id: Swift.String
5218+
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_id`.
5219+
public var client_id: Swift.String?
52185220
/// - Remark: Generated from `#/components/schemas/nullable-integration/owner`.
52195221
public var owner: Components.Schemas.nullable_hyphen_simple_hyphen_user?
52205222
/// The name of the GitHub app
@@ -5345,8 +5347,6 @@ public enum Components {
53455347
///
53465348
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
53475349
public var installations_count: Swift.Int?
5348-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_id`.
5349-
public var client_id: Swift.String?
53505350
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
53515351
public var client_secret: Swift.String?
53525352
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
@@ -5359,6 +5359,7 @@ public enum Components {
53595359
/// - id: Unique identifier of the GitHub app
53605360
/// - slug: The slug name of the GitHub app
53615361
/// - node_id:
5362+
/// - client_id:
53625363
/// - owner:
53635364
/// - name: The name of the GitHub app
53645365
/// - description:
@@ -5369,14 +5370,14 @@ public enum Components {
53695370
/// - permissions: The set of permissions for the GitHub app
53705371
/// - events: The list of events for the GitHub app
53715372
/// - installations_count: The number of installations associated with the GitHub app
5372-
/// - client_id:
53735373
/// - client_secret:
53745374
/// - webhook_secret:
53755375
/// - pem:
53765376
public init(
53775377
id: Swift.Int,
53785378
slug: Swift.String? = nil,
53795379
node_id: Swift.String,
5380+
client_id: Swift.String? = nil,
53805381
owner: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
53815382
name: Swift.String,
53825383
description: Swift.String? = nil,
@@ -5387,14 +5388,14 @@ public enum Components {
53875388
permissions: Components.Schemas.nullable_hyphen_integration.permissionsPayload,
53885389
events: [Swift.String],
53895390
installations_count: Swift.Int? = nil,
5390-
client_id: Swift.String? = nil,
53915391
client_secret: Swift.String? = nil,
53925392
webhook_secret: Swift.String? = nil,
53935393
pem: Swift.String? = nil
53945394
) {
53955395
self.id = id
53965396
self.slug = slug
53975397
self.node_id = node_id
5398+
self.client_id = client_id
53985399
self.owner = owner
53995400
self.name = name
54005401
self.description = description
@@ -5405,7 +5406,6 @@ public enum Components {
54055406
self.permissions = permissions
54065407
self.events = events
54075408
self.installations_count = installations_count
5408-
self.client_id = client_id
54095409
self.client_secret = client_secret
54105410
self.webhook_secret = webhook_secret
54115411
self.pem = pem
@@ -5414,6 +5414,7 @@ public enum Components {
54145414
case id
54155415
case slug
54165416
case node_id
5417+
case client_id
54175418
case owner
54185419
case name
54195420
case description
@@ -5424,7 +5425,6 @@ public enum Components {
54245425
case permissions
54255426
case events
54265427
case installations_count
5427-
case client_id
54285428
case client_secret
54295429
case webhook_secret
54305430
case pem

0 commit comments

Comments
 (0)