Skip to content

Commit 81243e7

Browse files
Merge pull request #70 from Wei18/dependabot/submodules/Submodule/github/rest-api-description-9eeb21a
Bump Submodule/github/rest-api-description from `0e84946` to `9eeb21a`
2 parents 9807db8 + b8336f8 commit 81243e7

File tree

17 files changed

+1726
-99
lines changed

17 files changed

+1726
-99
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

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

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

Sources/checks/Types.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -789,6 +789,8 @@ public enum Components {
789789
public var slug: Swift.String?
790790
/// - Remark: Generated from `#/components/schemas/nullable-integration/node_id`.
791791
public var node_id: Swift.String
792+
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_id`.
793+
public var client_id: Swift.String?
792794
/// - Remark: Generated from `#/components/schemas/nullable-integration/owner`.
793795
public var owner: Components.Schemas.nullable_hyphen_simple_hyphen_user?
794796
/// The name of the GitHub app
@@ -919,8 +921,6 @@ public enum Components {
919921
///
920922
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
921923
public var installations_count: Swift.Int?
922-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_id`.
923-
public var client_id: Swift.String?
924924
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
925925
public var client_secret: Swift.String?
926926
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
@@ -933,6 +933,7 @@ public enum Components {
933933
/// - id: Unique identifier of the GitHub app
934934
/// - slug: The slug name of the GitHub app
935935
/// - node_id:
936+
/// - client_id:
936937
/// - owner:
937938
/// - name: The name of the GitHub app
938939
/// - description:
@@ -943,14 +944,14 @@ public enum Components {
943944
/// - permissions: The set of permissions for the GitHub app
944945
/// - events: The list of events for the GitHub app
945946
/// - installations_count: The number of installations associated with the GitHub app
946-
/// - client_id:
947947
/// - client_secret:
948948
/// - webhook_secret:
949949
/// - pem:
950950
public init(
951951
id: Swift.Int,
952952
slug: Swift.String? = nil,
953953
node_id: Swift.String,
954+
client_id: Swift.String? = nil,
954955
owner: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
955956
name: Swift.String,
956957
description: Swift.String? = nil,
@@ -961,14 +962,14 @@ public enum Components {
961962
permissions: Components.Schemas.nullable_hyphen_integration.permissionsPayload,
962963
events: [Swift.String],
963964
installations_count: Swift.Int? = nil,
964-
client_id: Swift.String? = nil,
965965
client_secret: Swift.String? = nil,
966966
webhook_secret: Swift.String? = nil,
967967
pem: Swift.String? = nil
968968
) {
969969
self.id = id
970970
self.slug = slug
971971
self.node_id = node_id
972+
self.client_id = client_id
972973
self.owner = owner
973974
self.name = name
974975
self.description = description
@@ -979,7 +980,6 @@ public enum Components {
979980
self.permissions = permissions
980981
self.events = events
981982
self.installations_count = installations_count
982-
self.client_id = client_id
983983
self.client_secret = client_secret
984984
self.webhook_secret = webhook_secret
985985
self.pem = pem
@@ -988,6 +988,7 @@ public enum Components {
988988
case id
989989
case slug
990990
case node_id
991+
case client_id
991992
case owner
992993
case name
993994
case description
@@ -998,7 +999,6 @@ public enum Components {
998999
case permissions
9991000
case events
10001001
case installations_count
1001-
case client_id
10021002
case client_secret
10031003
case webhook_secret
10041004
case pem

0 commit comments

Comments
 (0)