@@ -1534,6 +1534,8 @@ public enum Components {
15341534 public var slug: Swift.String?
15351535 /// - Remark: Generated from `#/components/schemas/integration/node_id`.
15361536 public var node_id: Swift.String
1537+ /// - Remark: Generated from `#/components/schemas/integration/client_id`.
1538+ public var client_id: Swift.String?
15371539 /// - Remark: Generated from `#/components/schemas/integration/owner`.
15381540 public var owner: Components.Schemas.nullable_hyphen_simple_hyphen_user?
15391541 /// The name of the GitHub app
@@ -1664,8 +1666,6 @@ public enum Components {
16641666 ///
16651667 /// - Remark: Generated from `#/components/schemas/integration/installations_count`.
16661668 public var installations_count: Swift.Int?
1667- /// - Remark: Generated from `#/components/schemas/integration/client_id`.
1668- public var client_id: Swift.String?
16691669 /// - Remark: Generated from `#/components/schemas/integration/client_secret`.
16701670 public var client_secret: Swift.String?
16711671 /// - Remark: Generated from `#/components/schemas/integration/webhook_secret`.
@@ -1678,6 +1678,7 @@ public enum Components {
16781678 /// - id: Unique identifier of the GitHub app
16791679 /// - slug: The slug name of the GitHub app
16801680 /// - node_id:
1681+ /// - client_id:
16811682 /// - owner:
16821683 /// - name: The name of the GitHub app
16831684 /// - description:
@@ -1688,14 +1689,14 @@ public enum Components {
16881689 /// - permissions: The set of permissions for the GitHub app
16891690 /// - events: The list of events for the GitHub app
16901691 /// - installations_count: The number of installations associated with the GitHub app
1691- /// - client_id:
16921692 /// - client_secret:
16931693 /// - webhook_secret:
16941694 /// - pem:
16951695 public init(
16961696 id: Swift.Int,
16971697 slug: Swift.String? = nil,
16981698 node_id: Swift.String,
1699+ client_id: Swift.String? = nil,
16991700 owner: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
17001701 name: Swift.String,
17011702 description: Swift.String? = nil,
@@ -1706,14 +1707,14 @@ public enum Components {
17061707 permissions: Components.Schemas.integration.permissionsPayload,
17071708 events: [Swift.String],
17081709 installations_count: Swift.Int? = nil,
1709- client_id: Swift.String? = nil,
17101710 client_secret: Swift.String? = nil,
17111711 webhook_secret: Swift.String? = nil,
17121712 pem: Swift.String? = nil
17131713 ) {
17141714 self.id = id
17151715 self.slug = slug
17161716 self.node_id = node_id
1717+ self.client_id = client_id
17171718 self.owner = owner
17181719 self.name = name
17191720 self.description = description
@@ -1724,7 +1725,6 @@ public enum Components {
17241725 self.permissions = permissions
17251726 self.events = events
17261727 self.installations_count = installations_count
1727- self.client_id = client_id
17281728 self.client_secret = client_secret
17291729 self.webhook_secret = webhook_secret
17301730 self.pem = pem
@@ -1733,6 +1733,7 @@ public enum Components {
17331733 case id
17341734 case slug
17351735 case node_id
1736+ case client_id
17361737 case owner
17371738 case name
17381739 case description
@@ -1743,7 +1744,6 @@ public enum Components {
17431744 case permissions
17441745 case events
17451746 case installations_count
1746- case client_id
17471747 case client_secret
17481748 case webhook_secret
17491749 case pem
@@ -3093,6 +3093,8 @@ public enum Components {
30933093 public var slug: Swift.String?
30943094 /// - Remark: Generated from `#/components/schemas/nullable-integration/node_id`.
30953095 public var node_id: Swift.String
3096+ /// - Remark: Generated from `#/components/schemas/nullable-integration/client_id`.
3097+ public var client_id: Swift.String?
30963098 /// - Remark: Generated from `#/components/schemas/nullable-integration/owner`.
30973099 public var owner: Components.Schemas.nullable_hyphen_simple_hyphen_user?
30983100 /// The name of the GitHub app
@@ -3223,8 +3225,6 @@ public enum Components {
32233225 ///
32243226 /// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
32253227 public var installations_count: Swift.Int?
3226- /// - Remark: Generated from `#/components/schemas/nullable-integration/client_id`.
3227- public var client_id: Swift.String?
32283228 /// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
32293229 public var client_secret: Swift.String?
32303230 /// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
@@ -3237,6 +3237,7 @@ public enum Components {
32373237 /// - id: Unique identifier of the GitHub app
32383238 /// - slug: The slug name of the GitHub app
32393239 /// - node_id:
3240+ /// - client_id:
32403241 /// - owner:
32413242 /// - name: The name of the GitHub app
32423243 /// - description:
@@ -3247,14 +3248,14 @@ public enum Components {
32473248 /// - permissions: The set of permissions for the GitHub app
32483249 /// - events: The list of events for the GitHub app
32493250 /// - installations_count: The number of installations associated with the GitHub app
3250- /// - client_id:
32513251 /// - client_secret:
32523252 /// - webhook_secret:
32533253 /// - pem:
32543254 public init(
32553255 id: Swift.Int,
32563256 slug: Swift.String? = nil,
32573257 node_id: Swift.String,
3258+ client_id: Swift.String? = nil,
32583259 owner: Components.Schemas.nullable_hyphen_simple_hyphen_user? = nil,
32593260 name: Swift.String,
32603261 description: Swift.String? = nil,
@@ -3265,14 +3266,14 @@ public enum Components {
32653266 permissions: Components.Schemas.nullable_hyphen_integration.permissionsPayload,
32663267 events: [Swift.String],
32673268 installations_count: Swift.Int? = nil,
3268- client_id: Swift.String? = nil,
32693269 client_secret: Swift.String? = nil,
32703270 webhook_secret: Swift.String? = nil,
32713271 pem: Swift.String? = nil
32723272 ) {
32733273 self.id = id
32743274 self.slug = slug
32753275 self.node_id = node_id
3276+ self.client_id = client_id
32763277 self.owner = owner
32773278 self.name = name
32783279 self.description = description
@@ -3283,7 +3284,6 @@ public enum Components {
32833284 self.permissions = permissions
32843285 self.events = events
32853286 self.installations_count = installations_count
3286- self.client_id = client_id
32873287 self.client_secret = client_secret
32883288 self.webhook_secret = webhook_secret
32893289 self.pem = pem
@@ -3292,6 +3292,7 @@ public enum Components {
32923292 case id
32933293 case slug
32943294 case node_id
3295+ case client_id
32953296 case owner
32963297 case name
32973298 case description
@@ -3302,7 +3303,6 @@ public enum Components {
33023303 case permissions
33033304 case events
33043305 case installations_count
3305- case client_id
33063306 case client_secret
33073307 case webhook_secret
33083308 case pem
0 commit comments