Skip to content

Commit 239a778

Browse files
Commit via running ake Sources/checks
1 parent 345a3be commit 239a778

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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)