@@ -4085,6 +4085,91 @@ public enum Components {
40854085 case html_url
40864086 }
40874087 }
4088+ /// A GitHub organization.
4089+ ///
4090+ /// - Remark: Generated from `#/components/schemas/organization-simple`.
4091+ public struct organization_hyphen_simple: Codable, Hashable, Sendable {
4092+ /// - Remark: Generated from `#/components/schemas/organization-simple/login`.
4093+ public var login: Swift.String
4094+ /// - Remark: Generated from `#/components/schemas/organization-simple/id`.
4095+ public var id: Swift.Int
4096+ /// - Remark: Generated from `#/components/schemas/organization-simple/node_id`.
4097+ public var node_id: Swift.String
4098+ /// - Remark: Generated from `#/components/schemas/organization-simple/url`.
4099+ public var url: Swift.String
4100+ /// - Remark: Generated from `#/components/schemas/organization-simple/repos_url`.
4101+ public var repos_url: Swift.String
4102+ /// - Remark: Generated from `#/components/schemas/organization-simple/events_url`.
4103+ public var events_url: Swift.String
4104+ /// - Remark: Generated from `#/components/schemas/organization-simple/hooks_url`.
4105+ public var hooks_url: Swift.String
4106+ /// - Remark: Generated from `#/components/schemas/organization-simple/issues_url`.
4107+ public var issues_url: Swift.String
4108+ /// - Remark: Generated from `#/components/schemas/organization-simple/members_url`.
4109+ public var members_url: Swift.String
4110+ /// - Remark: Generated from `#/components/schemas/organization-simple/public_members_url`.
4111+ public var public_members_url: Swift.String
4112+ /// - Remark: Generated from `#/components/schemas/organization-simple/avatar_url`.
4113+ public var avatar_url: Swift.String
4114+ /// - Remark: Generated from `#/components/schemas/organization-simple/description`.
4115+ public var description: Swift.String?
4116+ /// Creates a new `organization_hyphen_simple`.
4117+ ///
4118+ /// - Parameters:
4119+ /// - login:
4120+ /// - id:
4121+ /// - node_id:
4122+ /// - url:
4123+ /// - repos_url:
4124+ /// - events_url:
4125+ /// - hooks_url:
4126+ /// - issues_url:
4127+ /// - members_url:
4128+ /// - public_members_url:
4129+ /// - avatar_url:
4130+ /// - description:
4131+ public init(
4132+ login: Swift.String,
4133+ id: Swift.Int,
4134+ node_id: Swift.String,
4135+ url: Swift.String,
4136+ repos_url: Swift.String,
4137+ events_url: Swift.String,
4138+ hooks_url: Swift.String,
4139+ issues_url: Swift.String,
4140+ members_url: Swift.String,
4141+ public_members_url: Swift.String,
4142+ avatar_url: Swift.String,
4143+ description: Swift.String? = nil
4144+ ) {
4145+ self.login = login
4146+ self.id = id
4147+ self.node_id = node_id
4148+ self.url = url
4149+ self.repos_url = repos_url
4150+ self.events_url = events_url
4151+ self.hooks_url = hooks_url
4152+ self.issues_url = issues_url
4153+ self.members_url = members_url
4154+ self.public_members_url = public_members_url
4155+ self.avatar_url = avatar_url
4156+ self.description = description
4157+ }
4158+ public enum CodingKeys: String, CodingKey {
4159+ case login
4160+ case id
4161+ case node_id
4162+ case url
4163+ case repos_url
4164+ case events_url
4165+ case hooks_url
4166+ case issues_url
4167+ case members_url
4168+ case public_members_url
4169+ case avatar_url
4170+ case description
4171+ }
4172+ }
40884173 /// Groups of organization members that gives permissions on specified repositories.
40894174 ///
40904175 /// - Remark: Generated from `#/components/schemas/nullable-team-simple`.
@@ -4330,91 +4415,6 @@ public enum Components {
43304415 case parent
43314416 }
43324417 }
4333- /// A GitHub organization.
4334- ///
4335- /// - Remark: Generated from `#/components/schemas/organization-simple`.
4336- public struct organization_hyphen_simple: Codable, Hashable, Sendable {
4337- /// - Remark: Generated from `#/components/schemas/organization-simple/login`.
4338- public var login: Swift.String
4339- /// - Remark: Generated from `#/components/schemas/organization-simple/id`.
4340- public var id: Swift.Int
4341- /// - Remark: Generated from `#/components/schemas/organization-simple/node_id`.
4342- public var node_id: Swift.String
4343- /// - Remark: Generated from `#/components/schemas/organization-simple/url`.
4344- public var url: Swift.String
4345- /// - Remark: Generated from `#/components/schemas/organization-simple/repos_url`.
4346- public var repos_url: Swift.String
4347- /// - Remark: Generated from `#/components/schemas/organization-simple/events_url`.
4348- public var events_url: Swift.String
4349- /// - Remark: Generated from `#/components/schemas/organization-simple/hooks_url`.
4350- public var hooks_url: Swift.String
4351- /// - Remark: Generated from `#/components/schemas/organization-simple/issues_url`.
4352- public var issues_url: Swift.String
4353- /// - Remark: Generated from `#/components/schemas/organization-simple/members_url`.
4354- public var members_url: Swift.String
4355- /// - Remark: Generated from `#/components/schemas/organization-simple/public_members_url`.
4356- public var public_members_url: Swift.String
4357- /// - Remark: Generated from `#/components/schemas/organization-simple/avatar_url`.
4358- public var avatar_url: Swift.String
4359- /// - Remark: Generated from `#/components/schemas/organization-simple/description`.
4360- public var description: Swift.String?
4361- /// Creates a new `organization_hyphen_simple`.
4362- ///
4363- /// - Parameters:
4364- /// - login:
4365- /// - id:
4366- /// - node_id:
4367- /// - url:
4368- /// - repos_url:
4369- /// - events_url:
4370- /// - hooks_url:
4371- /// - issues_url:
4372- /// - members_url:
4373- /// - public_members_url:
4374- /// - avatar_url:
4375- /// - description:
4376- public init(
4377- login: Swift.String,
4378- id: Swift.Int,
4379- node_id: Swift.String,
4380- url: Swift.String,
4381- repos_url: Swift.String,
4382- events_url: Swift.String,
4383- hooks_url: Swift.String,
4384- issues_url: Swift.String,
4385- members_url: Swift.String,
4386- public_members_url: Swift.String,
4387- avatar_url: Swift.String,
4388- description: Swift.String? = nil
4389- ) {
4390- self.login = login
4391- self.id = id
4392- self.node_id = node_id
4393- self.url = url
4394- self.repos_url = repos_url
4395- self.events_url = events_url
4396- self.hooks_url = hooks_url
4397- self.issues_url = issues_url
4398- self.members_url = members_url
4399- self.public_members_url = public_members_url
4400- self.avatar_url = avatar_url
4401- self.description = description
4402- }
4403- public enum CodingKeys: String, CodingKey {
4404- case login
4405- case id
4406- case node_id
4407- case url
4408- case repos_url
4409- case events_url
4410- case hooks_url
4411- case issues_url
4412- case members_url
4413- case public_members_url
4414- case avatar_url
4415- case description
4416- }
4417- }
44184418 /// - Remark: Generated from `#/components/schemas/security-and-analysis`.
44194419 public struct security_hyphen_and_hyphen_analysis: Codable, Hashable, Sendable {
44204420 /// - Remark: Generated from `#/components/schemas/security-and-analysis/advanced_security`.
@@ -6984,6 +6984,10 @@ public enum Components {
69846984 ///
69856985 /// - Remark: Generated from `#/components/parameters/page`.
69866986 public typealias page = Swift.Int
6987+ /// The slug of the team name.
6988+ ///
6989+ /// - Remark: Generated from `#/components/parameters/team-slug`.
6990+ public typealias team_hyphen_slug = Swift.String
69876991 /// An organization ID. Only return organizations with an ID greater than this ID.
69886992 ///
69896993 /// - Remark: Generated from `#/components/parameters/since-org`.
@@ -7004,10 +7008,6 @@ public enum Components {
70047008 ///
70057009 /// - Remark: Generated from `#/components/parameters/invitation-id`.
70067010 public typealias invitation_hyphen_id = Swift.Int
7007- /// The slug of the team name.
7008- ///
7009- /// - Remark: Generated from `#/components/parameters/team-slug`.
7010- public typealias team_hyphen_slug = Swift.String
70117011 /// The unique identifier of the role.
70127012 ///
70137013 /// - Remark: Generated from `#/components/parameters/role-id`.
0 commit comments