Skip to content

Commit 345a3be

Browse files
Commit via running ake Sources/apps
1 parent e772221 commit 345a3be

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Sources/apps/Types.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1341,6 +1341,8 @@ public enum Components {
13411341
public var slug: Swift.String?
13421342
/// - Remark: Generated from `#/components/schemas/integration/node_id`.
13431343
public var node_id: Swift.String
1344+
/// - Remark: Generated from `#/components/schemas/integration/client_id`.
1345+
public var client_id: Swift.String?
13441346
/// - Remark: Generated from `#/components/schemas/integration/owner`.
13451347
public var owner: Components.Schemas.nullable_hyphen_simple_hyphen_user?
13461348
/// The name of the GitHub app
@@ -1471,8 +1473,6 @@ public enum Components {
14711473
///
14721474
/// - Remark: Generated from `#/components/schemas/integration/installations_count`.
14731475
public var installations_count: Swift.Int?
1474-
/// - Remark: Generated from `#/components/schemas/integration/client_id`.
1475-
public var client_id: Swift.String?
14761476
/// - Remark: Generated from `#/components/schemas/integration/client_secret`.
14771477
public var client_secret: Swift.String?
14781478
/// - Remark: Generated from `#/components/schemas/integration/webhook_secret`.
@@ -1485,6 +1485,7 @@ public enum Components {
14851485
/// - id: Unique identifier of the GitHub app
14861486
/// - slug: The slug name of the GitHub app
14871487
/// - node_id:
1488+
/// - client_id:
14881489
/// - owner:
14891490
/// - name: The name of the GitHub app
14901491
/// - description:
@@ -1495,14 +1496,14 @@ public enum Components {
14951496
/// - permissions: The set of permissions for the GitHub app
14961497
/// - events: The list of events for the GitHub app
14971498
/// - installations_count: The number of installations associated with the GitHub app
1498-
/// - client_id:
14991499
/// - client_secret:
15001500
/// - webhook_secret:
15011501
/// - pem:
15021502
public init(
15031503
id: Swift.Int,
15041504
slug: Swift.String? = nil,
15051505
node_id: Swift.String,
1506+
client_id: Swift.String? = nil,
15061507
owner: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
15071508
name: Swift.String,
15081509
description: Swift.String? = nil,
@@ -1513,14 +1514,14 @@ public enum Components {
15131514
permissions: Components.Schemas.integration.permissionsPayload,
15141515
events: [Swift.String],
15151516
installations_count: Swift.Int? = nil,
1516-
client_id: Swift.String? = nil,
15171517
client_secret: Swift.String? = nil,
15181518
webhook_secret: Swift.String? = nil,
15191519
pem: Swift.String? = nil
15201520
) {
15211521
self.id = id
15221522
self.slug = slug
15231523
self.node_id = node_id
1524+
self.client_id = client_id
15241525
self.owner = owner
15251526
self.name = name
15261527
self.description = description
@@ -1531,7 +1532,6 @@ public enum Components {
15311532
self.permissions = permissions
15321533
self.events = events
15331534
self.installations_count = installations_count
1534-
self.client_id = client_id
15351535
self.client_secret = client_secret
15361536
self.webhook_secret = webhook_secret
15371537
self.pem = pem
@@ -1540,6 +1540,7 @@ public enum Components {
15401540
case id
15411541
case slug
15421542
case node_id
1543+
case client_id
15431544
case owner
15441545
case name
15451546
case description
@@ -1550,7 +1551,6 @@ public enum Components {
15501551
case permissions
15511552
case events
15521553
case installations_count
1553-
case client_id
15541554
case client_secret
15551555
case webhook_secret
15561556
case pem

0 commit comments

Comments
 (0)