Skip to content

Commit 68827d2

Browse files
Commit via running ake Sources/users
1 parent 8bcf552 commit 68827d2

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Sources/users/Types.swift

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,7 @@ public enum Components {
13991399
/// - Remark: Generated from `#/components/schemas/public-user/login`.
14001400
public var login: Swift.String
14011401
/// - Remark: Generated from `#/components/schemas/public-user/id`.
1402-
public var id: Swift.Int
1402+
public var id: Swift.Int64
14031403
/// - Remark: Generated from `#/components/schemas/public-user/node_id`.
14041404
public var node_id: Swift.String
14051405
/// - Remark: Generated from `#/components/schemas/public-user/avatar_url`.
@@ -1556,7 +1556,7 @@ public enum Components {
15561556
/// - collaborators:
15571557
public init(
15581558
login: Swift.String,
1559-
id: Swift.Int,
1559+
id: Swift.Int64,
15601560
node_id: Swift.String,
15611561
avatar_url: Swift.String,
15621562
gravatar_id: Swift.String? = nil,
@@ -1686,7 +1686,7 @@ public enum Components {
16861686
forKey: .login
16871687
)
16881688
id = try container.decode(
1689-
Swift.Int.self,
1689+
Swift.Int64.self,
16901690
forKey: .id
16911691
)
16921692
node_id = try container.decode(
@@ -1902,7 +1902,7 @@ public enum Components {
19021902
/// - Remark: Generated from `#/components/schemas/private-user/login`.
19031903
public var login: Swift.String
19041904
/// - Remark: Generated from `#/components/schemas/private-user/id`.
1905-
public var id: Swift.Int
1905+
public var id: Swift.Int64
19061906
/// - Remark: Generated from `#/components/schemas/private-user/node_id`.
19071907
public var node_id: Swift.String
19081908
/// - Remark: Generated from `#/components/schemas/private-user/avatar_url`.
@@ -2068,7 +2068,7 @@ public enum Components {
20682068
/// - ldap_dn:
20692069
public init(
20702070
login: Swift.String,
2071-
id: Swift.Int,
2071+
id: Swift.Int64,
20722072
node_id: Swift.String,
20732073
avatar_url: Swift.String,
20742074
gravatar_id: Swift.String? = nil,
@@ -2243,7 +2243,7 @@ public enum Components {
22432243
/// - Remark: Generated from `#/components/schemas/gpg-key`.
22442244
public struct gpg_hyphen_key: Codable, Hashable, Sendable {
22452245
/// - Remark: Generated from `#/components/schemas/gpg-key/id`.
2246-
public var id: Swift.Int
2246+
public var id: Swift.Int64
22472247
/// - Remark: Generated from `#/components/schemas/gpg-key/name`.
22482248
public var name: Swift.String?
22492249
/// - Remark: Generated from `#/components/schemas/gpg-key/primary_key_id`.
@@ -2282,7 +2282,7 @@ public enum Components {
22822282
/// - Remark: Generated from `#/components/schemas/gpg-key/subkeysPayload`.
22832283
public struct subkeysPayloadPayload: Codable, Hashable, Sendable {
22842284
/// - Remark: Generated from `#/components/schemas/gpg-key/subkeysPayload/id`.
2285-
public var id: Swift.Int?
2285+
public var id: Swift.Int64?
22862286
/// - Remark: Generated from `#/components/schemas/gpg-key/subkeysPayload/primary_key_id`.
22872287
public var primary_key_id: Swift.Int?
22882288
/// - Remark: Generated from `#/components/schemas/gpg-key/subkeysPayload/key_id`.
@@ -2352,7 +2352,7 @@ public enum Components {
23522352
/// - raw_key:
23532353
/// - revoked:
23542354
public init(
2355-
id: Swift.Int? = nil,
2355+
id: Swift.Int64? = nil,
23562356
primary_key_id: Swift.Int? = nil,
23572357
key_id: Swift.String? = nil,
23582358
public_key: Swift.String? = nil,
@@ -2438,7 +2438,7 @@ public enum Components {
24382438
/// - revoked:
24392439
/// - raw_key:
24402440
public init(
2441-
id: Swift.Int,
2441+
id: Swift.Int64,
24422442
name: Swift.String? = nil,
24432443
primary_key_id: Swift.Int? = nil,
24442444
key_id: Swift.String,
@@ -2495,7 +2495,7 @@ public enum Components {
24952495
/// - Remark: Generated from `#/components/schemas/key/key`.
24962496
public var key: Swift.String
24972497
/// - Remark: Generated from `#/components/schemas/key/id`.
2498-
public var id: Swift.Int
2498+
public var id: Swift.Int64
24992499
/// - Remark: Generated from `#/components/schemas/key/url`.
25002500
public var url: Swift.String
25012501
/// - Remark: Generated from `#/components/schemas/key/title`.
@@ -2518,7 +2518,7 @@ public enum Components {
25182518
/// - read_only:
25192519
public init(
25202520
key: Swift.String,
2521-
id: Swift.Int,
2521+
id: Swift.Int64,
25222522
url: Swift.String,
25232523
title: Swift.String,
25242524
created_at: Foundation.Date,

0 commit comments

Comments
 (0)