Skip to content

Commit 426ebc7

Browse files
Commit via running ake Sources/search
1 parent 8040453 commit 426ebc7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Sources/search/Types.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1737,6 +1737,8 @@ public enum Components {
17371737
public var slug: Swift.String?
17381738
/// - Remark: Generated from `#/components/schemas/nullable-integration/node_id`.
17391739
public var node_id: Swift.String
1740+
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_id`.
1741+
public var client_id: Swift.String?
17401742
/// - Remark: Generated from `#/components/schemas/nullable-integration/owner`.
17411743
public var owner: Components.Schemas.nullable_hyphen_simple_hyphen_user?
17421744
/// The name of the GitHub app
@@ -1867,8 +1869,6 @@ public enum Components {
18671869
///
18681870
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
18691871
public var installations_count: Swift.Int?
1870-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_id`.
1871-
public var client_id: Swift.String?
18721872
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
18731873
public var client_secret: Swift.String?
18741874
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
@@ -1881,6 +1881,7 @@ public enum Components {
18811881
/// - id: Unique identifier of the GitHub app
18821882
/// - slug: The slug name of the GitHub app
18831883
/// - node_id:
1884+
/// - client_id:
18841885
/// - owner:
18851886
/// - name: The name of the GitHub app
18861887
/// - description:
@@ -1891,14 +1892,14 @@ public enum Components {
18911892
/// - permissions: The set of permissions for the GitHub app
18921893
/// - events: The list of events for the GitHub app
18931894
/// - installations_count: The number of installations associated with the GitHub app
1894-
/// - client_id:
18951895
/// - client_secret:
18961896
/// - webhook_secret:
18971897
/// - pem:
18981898
public init(
18991899
id: Swift.Int,
19001900
slug: Swift.String? = nil,
19011901
node_id: Swift.String,
1902+
client_id: Swift.String? = nil,
19021903
owner: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
19031904
name: Swift.String,
19041905
description: Swift.String? = nil,
@@ -1909,14 +1910,14 @@ public enum Components {
19091910
permissions: Components.Schemas.nullable_hyphen_integration.permissionsPayload,
19101911
events: [Swift.String],
19111912
installations_count: Swift.Int? = nil,
1912-
client_id: Swift.String? = nil,
19131913
client_secret: Swift.String? = nil,
19141914
webhook_secret: Swift.String? = nil,
19151915
pem: Swift.String? = nil
19161916
) {
19171917
self.id = id
19181918
self.slug = slug
19191919
self.node_id = node_id
1920+
self.client_id = client_id
19201921
self.owner = owner
19211922
self.name = name
19221923
self.description = description
@@ -1927,7 +1928,6 @@ public enum Components {
19271928
self.permissions = permissions
19281929
self.events = events
19291930
self.installations_count = installations_count
1930-
self.client_id = client_id
19311931
self.client_secret = client_secret
19321932
self.webhook_secret = webhook_secret
19331933
self.pem = pem
@@ -1936,6 +1936,7 @@ public enum Components {
19361936
case id
19371937
case slug
19381938
case node_id
1939+
case client_id
19391940
case owner
19401941
case name
19411942
case description
@@ -1946,7 +1947,6 @@ public enum Components {
19461947
case permissions
19471948
case events
19481949
case installations_count
1949-
case client_id
19501950
case client_secret
19511951
case webhook_secret
19521952
case pem

0 commit comments

Comments
 (0)