Skip to content

Commit b9cc65e

Browse files
authored
Merge pull request #1581 from php-api-clients/GitHubEnterprise-3.13/from-1.1.4-068189c2ddb887d39c830e1d08c2e36b-from-1.1.4-068189c2ddb887d39c830e1d08c2e36b
2 parents 5cd0b6c + bda13de commit b9cc65e

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

clients/GitHubEnterprise-3.13/etc/openapi-client-generator.state

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"specHash": "846745eeb2646f15a6b0f4da036bfed8",
2+
"specHash": "068189c2ddb887d39c830e1d08c2e36b",
33
"generatedFiles": {
44
"files": [
55
{
@@ -25968,7 +25968,7 @@
2596825968
},
2596925969
{
2597025970
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/Issues\/Create\/Request\/ApplicationJson.php",
25971-
"hash": "335cc418a5e348ab8d9aef4140dbd513"
25971+
"hash": "3de07eb2a6b048784a27635795fa683f"
2597225972
},
2597325973
{
2597425974
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC87B405D\/Tiet9B9DED8B\/Tiet852071AE\/Tiet1AF85D12.php",
@@ -26000,7 +26000,7 @@
2600026000
},
2600126001
{
2600226002
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/Issues\/Update\/Request\/ApplicationJson.php",
26003-
"hash": "1244e5dcd3e4cb57a5e95343282e8b0f"
26003+
"hash": "58462d123a3e94dec71dec93af21fee2"
2600426004
},
2600526005
{
2600626006
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/Issues\/AddAssignees\/Request\/ApplicationJson.php",
@@ -27208,7 +27208,7 @@
2720827208
},
2720927209
{
2721027210
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Operation\/Issues.php",
27211-
"hash": "2b1c01814ea22ab3511d57bfefb43f7f"
27211+
"hash": "943f6c18c2b153af47e046f85548c3d3"
2721227212
},
2721327213
{
2721427214
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Operation\/Licenses.php",

clients/GitHubEnterprise-3.13/src/Schema/Issues/Create/Request/ApplicationJson.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"string",
9797
"null"
9898
],
99-
"description": "The name of the issue type to associate with this issue.",
99+
"description": "The name of the issue type to associate with this issue. _NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise._",
100100
"examples": [
101101
"Epic"
102102
]
@@ -127,7 +127,7 @@
127127
* 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.**_
128128
* labels: Labels to associate with this issue. _NOTE: Only users with push access can set labels for new issues. Labels are silently dropped otherwise._
129129
* 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._
130-
* type: The name of the issue type to associate with this issue.
130+
* type: The name of the issue type to associate with this issue. _NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise._
131131
*/
132132
public function __construct(public string|int $title, public string|null $body, public string|null $assignee, public string|int|null $milestone, public array|null $labels, public array|null $assignees, public string|null $type)
133133
{

clients/GitHubEnterprise-3.13/src/Schema/Issues/Update/Request/ApplicationJson.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
"string",
128128
"null"
129129
],
130-
"description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.",
130+
"description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.",
131131
"examples": [
132132
"Epic"
133133
]
@@ -162,7 +162,7 @@
162162
* stateReason: The reason for the state change. Ignored unless `state` is changed.
163163
* labels: Labels to associate with this issue. Pass one or more labels to _replace_ the set of labels on this issue. Send an empty array (`[]`) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped.
164164
* assignees: Usernames to assign to this issue. Pass one or more user logins to _replace_ the set of assignees on this issue. Send an empty array (`[]`) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped.
165-
* type: The name of the issue type to associate with this issue or use `null` to remove the current issue type.
165+
* type: The name of the issue type to associate with this issue or use `null` to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.
166166
*/
167167
public function __construct(public string|int|null $title, public string|null $body, public string|null $assignee, public string|null $state, #[MapFrom('state_reason')]
168168
public string|null $stateReason, public string|int|null $milestone, public array|null $labels, public array|null $assignees, public string|null $type,)

etc/specs/GitHubEnterprise-3.13/current.spec.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -31661,7 +31661,9 @@ paths:
3166131661
type:
3166231662
- string
3166331663
- 'null'
31664-
description: The name of the issue type to associate with this issue.
31664+
description: 'The name of the issue type to associate with this
31665+
issue. _NOTE: Only users with push access can set the type for
31666+
new issues. The type is silently dropped otherwise._'
3166531667
examples:
3166631668
- Epic
3166731669
required:
@@ -32278,7 +32280,9 @@ paths:
3227832280
- string
3227932281
- 'null'
3228032282
description: The name of the issue type to associate with this issue
32281-
or use `null` to remove the current issue type.
32283+
or use `null` to remove the current issue type. Only users with
32284+
push access can set the type for issues. Without push access to
32285+
the repository, type changes are silently dropped.
3228232286
examples:
3228332287
- Epic
3228432288
examples:

0 commit comments

Comments
 (0)