Skip to content

Commit e772221

Browse files
Commit via running ake Sources/activity
1 parent f50f1c2 commit e772221

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Sources/activity/Types.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2300,6 +2300,8 @@ public enum Components {
23002300
public var slug: Swift.String?
23012301
/// - Remark: Generated from `#/components/schemas/nullable-integration/node_id`.
23022302
public var node_id: Swift.String
2303+
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_id`.
2304+
public var client_id: Swift.String?
23032305
/// - Remark: Generated from `#/components/schemas/nullable-integration/owner`.
23042306
public var owner: Components.Schemas.nullable_hyphen_simple_hyphen_user?
23052307
/// The name of the GitHub app
@@ -2430,8 +2432,6 @@ public enum Components {
24302432
///
24312433
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
24322434
public var installations_count: Swift.Int?
2433-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_id`.
2434-
public var client_id: Swift.String?
24352435
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
24362436
public var client_secret: Swift.String?
24372437
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
@@ -2444,6 +2444,7 @@ public enum Components {
24442444
/// - id: Unique identifier of the GitHub app
24452445
/// - slug: The slug name of the GitHub app
24462446
/// - node_id:
2447+
/// - client_id:
24472448
/// - owner:
24482449
/// - name: The name of the GitHub app
24492450
/// - description:
@@ -2454,14 +2455,14 @@ public enum Components {
24542455
/// - permissions: The set of permissions for the GitHub app
24552456
/// - events: The list of events for the GitHub app
24562457
/// - installations_count: The number of installations associated with the GitHub app
2457-
/// - client_id:
24582458
/// - client_secret:
24592459
/// - webhook_secret:
24602460
/// - pem:
24612461
public init(
24622462
id: Swift.Int,
24632463
slug: Swift.String? = nil,
24642464
node_id: Swift.String,
2465+
client_id: Swift.String? = nil,
24652466
owner: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
24662467
name: Swift.String,
24672468
description: Swift.String? = nil,
@@ -2472,14 +2473,14 @@ public enum Components {
24722473
permissions: Components.Schemas.nullable_hyphen_integration.permissionsPayload,
24732474
events: [Swift.String],
24742475
installations_count: Swift.Int? = nil,
2475-
client_id: Swift.String? = nil,
24762476
client_secret: Swift.String? = nil,
24772477
webhook_secret: Swift.String? = nil,
24782478
pem: Swift.String? = nil
24792479
) {
24802480
self.id = id
24812481
self.slug = slug
24822482
self.node_id = node_id
2483+
self.client_id = client_id
24832484
self.owner = owner
24842485
self.name = name
24852486
self.description = description
@@ -2490,7 +2491,6 @@ public enum Components {
24902491
self.permissions = permissions
24912492
self.events = events
24922493
self.installations_count = installations_count
2493-
self.client_id = client_id
24942494
self.client_secret = client_secret
24952495
self.webhook_secret = webhook_secret
24962496
self.pem = pem
@@ -2499,6 +2499,7 @@ public enum Components {
24992499
case id
25002500
case slug
25012501
case node_id
2502+
case client_id
25022503
case owner
25032504
case name
25042505
case description
@@ -2509,7 +2510,6 @@ public enum Components {
25092510
case permissions
25102511
case events
25112512
case installations_count
2512-
case client_id
25132513
case client_secret
25142514
case webhook_secret
25152515
case pem

0 commit comments

Comments
 (0)