Skip to content

Commit 75558dc

Browse files
Commit via running ake Sources/issues
1 parent fc6b1fd commit 75558dc

File tree

1 file changed

+24
-12
lines changed

1 file changed

+24
-12
lines changed

Sources/issues/Types.swift

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1251,6 +1251,8 @@ public enum Components {
12511251
public var site_admin: Swift.Bool
12521252
/// - Remark: Generated from `#/components/schemas/simple-user/starred_at`.
12531253
public var starred_at: Swift.String?
1254+
/// - Remark: Generated from `#/components/schemas/simple-user/user_view_type`.
1255+
public var user_view_type: Swift.String?
12541256
/// Creates a new `simple_hyphen_user`.
12551257
///
12561258
/// - Parameters:
@@ -1275,6 +1277,7 @@ public enum Components {
12751277
/// - _type:
12761278
/// - site_admin:
12771279
/// - starred_at:
1280+
/// - user_view_type:
12781281
public init(
12791282
name: Swift.String? = nil,
12801283
email: Swift.String? = nil,
@@ -1296,7 +1299,8 @@ public enum Components {
12961299
received_events_url: Swift.String,
12971300
_type: Swift.String,
12981301
site_admin: Swift.Bool,
1299-
starred_at: Swift.String? = nil
1302+
starred_at: Swift.String? = nil,
1303+
user_view_type: Swift.String? = nil
13001304
) {
13011305
self.name = name
13021306
self.email = email
@@ -1319,6 +1323,7 @@ public enum Components {
13191323
self._type = _type
13201324
self.site_admin = site_admin
13211325
self.starred_at = starred_at
1326+
self.user_view_type = user_view_type
13221327
}
13231328
public enum CodingKeys: String, CodingKey {
13241329
case name
@@ -1342,6 +1347,7 @@ public enum Components {
13421347
case _type = "type"
13431348
case site_admin
13441349
case starred_at
1350+
case user_view_type
13451351
}
13461352
}
13471353
/// Basic Error
@@ -1427,6 +1433,8 @@ public enum Components {
14271433
public var site_admin: Swift.Bool
14281434
/// - Remark: Generated from `#/components/schemas/nullable-simple-user/starred_at`.
14291435
public var starred_at: Swift.String?
1436+
/// - Remark: Generated from `#/components/schemas/nullable-simple-user/user_view_type`.
1437+
public var user_view_type: Swift.String?
14301438
/// Creates a new `nullable_hyphen_simple_hyphen_user`.
14311439
///
14321440
/// - Parameters:
@@ -1451,6 +1459,7 @@ public enum Components {
14511459
/// - _type:
14521460
/// - site_admin:
14531461
/// - starred_at:
1462+
/// - user_view_type:
14541463
public init(
14551464
name: Swift.String? = nil,
14561465
email: Swift.String? = nil,
@@ -1472,7 +1481,8 @@ public enum Components {
14721481
received_events_url: Swift.String,
14731482
_type: Swift.String,
14741483
site_admin: Swift.Bool,
1475-
starred_at: Swift.String? = nil
1484+
starred_at: Swift.String? = nil,
1485+
user_view_type: Swift.String? = nil
14761486
) {
14771487
self.name = name
14781488
self.email = email
@@ -1495,6 +1505,7 @@ public enum Components {
14951505
self._type = _type
14961506
self.site_admin = site_admin
14971507
self.starred_at = starred_at
1508+
self.user_view_type = user_view_type
14981509
}
14991510
public enum CodingKeys: String, CodingKey {
15001511
case name
@@ -1518,6 +1529,7 @@ public enum Components {
15181529
case _type = "type"
15191530
case site_admin
15201531
case starred_at
1532+
case user_view_type
15211533
}
15221534
}
15231535
/// GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
@@ -2220,7 +2232,7 @@ public enum Components {
22202232
///
22212233
/// - Remark: Generated from `#/components/schemas/repository/allow_update_branch`.
22222234
public var allow_update_branch: Swift.Bool?
2223-
/// Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
2235+
/// Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.
22242236
///
22252237
/// - Remark: Generated from `#/components/schemas/repository/use_squash_pr_title_as_default`.
22262238
@available(*, deprecated)
@@ -2408,7 +2420,7 @@ public enum Components {
24082420
/// - allow_auto_merge: Whether to allow Auto-merge to be used on pull requests.
24092421
/// - delete_branch_on_merge: Whether to delete head branches when pull requests are merged
24102422
/// - allow_update_branch: Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.
2411-
/// - use_squash_pr_title_as_default: Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
2423+
/// - use_squash_pr_title_as_default: Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.
24122424
/// - squash_merge_commit_title: The default value for a squash merge commit title:
24132425
/// - squash_merge_commit_message: The default value for a squash merge commit message:
24142426
/// - merge_commit_title: The default value for a merge commit title.
@@ -6974,11 +6986,11 @@ public enum Components {
69746986
///
69756987
/// - Remark: Generated from `#/components/schemas/pull-request-review-comment/path`.
69766988
public var path: Swift.String
6977-
/// The line index in the diff to which the comment applies. This field is deprecated; use `line` instead.
6989+
/// The line index in the diff to which the comment applies. This field is closing down; use `line` instead.
69786990
///
69796991
/// - Remark: Generated from `#/components/schemas/pull-request-review-comment/position`.
69806992
public var position: Swift.Int?
6981-
/// The index of the original line in the diff to which the comment applies. This field is deprecated; use `original_line` instead.
6993+
/// The index of the original line in the diff to which the comment applies. This field is closing down; use `original_line` instead.
69826994
///
69836995
/// - Remark: Generated from `#/components/schemas/pull-request-review-comment/original_position`.
69846996
public var original_position: Swift.Int?
@@ -7154,8 +7166,8 @@ public enum Components {
71547166
/// - node_id: The node ID of the pull request review comment.
71557167
/// - diff_hunk: The diff of the line that the comment refers to.
71567168
/// - path: The relative path of the file to which the comment applies.
7157-
/// - position: The line index in the diff to which the comment applies. This field is deprecated; use `line` instead.
7158-
/// - original_position: The index of the original line in the diff to which the comment applies. This field is deprecated; use `original_line` instead.
7169+
/// - position: The line index in the diff to which the comment applies. This field is closing down; use `line` instead.
7170+
/// - original_position: The index of the original line in the diff to which the comment applies. This field is closing down; use `original_line` instead.
71597171
/// - commit_id: The SHA of the commit to which the comment applies.
71607172
/// - original_commit_id: The SHA of the original commit to which the comment applies.
71617173
/// - in_reply_to_id: The comment ID to reply to.
@@ -9736,7 +9748,7 @@ public enum Operations {
97369748
///
97379749
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/issues/POST/requestBody/json/body`.
97389750
public var body: Swift.String?
9739-
/// Login for the user that this issue should be assigned to. _NOTE: Only users with push access can set the assignee for new issues. The assignee is silently dropped otherwise. **This field is deprecated.**_
9751+
/// Login for the user that this issue should be assigned to. _NOTE: Only users with push access can set the assignee for new issues. The assignee is silently dropped otherwise. **This field is closing down.**_
97409752
///
97419753
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/issues/POST/requestBody/json/assignee`.
97429754
public var assignee: Swift.String?
@@ -9866,7 +9878,7 @@ public enum Operations {
98669878
/// - Parameters:
98679879
/// - title: The title of the issue.
98689880
/// - body: The contents of the issue.
9869-
/// - assignee: Login for the user that this issue should be assigned to. _NOTE: Only users with push access can set the assignee for new issues. The assignee is silently dropped otherwise. **This field is deprecated.**_
9881+
/// - assignee: Login for the user that this issue should be assigned to. _NOTE: Only users with push access can set the assignee for new issues. The assignee is silently dropped otherwise. **This field is closing down.**_
98709882
/// - milestone:
98719883
/// - labels: Labels to associate with this issue. _NOTE: Only users with push access can set labels for new issues. Labels are silently dropped otherwise._
98729884
/// - assignees: Logins for Users to assign to this issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._
@@ -11685,7 +11697,7 @@ public enum Operations {
1168511697
///
1168611698
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/issues/{issue_number}/PATCH/requestBody/json/body`.
1168711699
public var body: Swift.String?
11688-
/// Username to assign to this issue. **This field is deprecated.**
11700+
/// Username to assign to this issue. **This field is closing down.**
1168911701
///
1169011702
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/issues/{issue_number}/PATCH/requestBody/json/assignee`.
1169111703
public var assignee: Swift.String?
@@ -11838,7 +11850,7 @@ public enum Operations {
1183811850
/// - Parameters:
1183911851
/// - title: The title of the issue.
1184011852
/// - body: The contents of the issue.
11841-
/// - assignee: Username to assign to this issue. **This field is deprecated.**
11853+
/// - assignee: Username to assign to this issue. **This field is closing down.**
1184211854
/// - state: The open or closed state of the issue.
1184311855
/// - state_reason: The reason for the state change. Ignored unless `state` is changed.
1184411856
/// - milestone:

0 commit comments

Comments
 (0)