Skip to content

Commit 5e3a500

Browse files
authored
Merge pull request #1583 from php-api-clients/GitHubEnterprise-3.15/from-1.1.4-55f74f3e5247a80d845e796bbe3a0f26-from-1.1.4-55f74f3e5247a80d845e796bbe3a0f26
2 parents 69c9ebc + 6870fff commit 5e3a500

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"specHash": "eebe824d504b8ef98e409bfc84091e66",
2+
"specHash": "55f74f3e5247a80d845e796bbe3a0f26",
33
"generatedFiles": {
44
"files": [
55
{
@@ -26248,7 +26248,7 @@
2624826248
},
2624926249
{
2625026250
"name": ".\/clients\/GitHubEnterprise-3.15\/etc\/..\/\/src\/\/Schema\/Issues\/Create\/Request\/ApplicationJson.php",
26251-
"hash": "335cc418a5e348ab8d9aef4140dbd513"
26251+
"hash": "3de07eb2a6b048784a27635795fa683f"
2625226252
},
2625326253
{
2625426254
"name": ".\/clients\/GitHubEnterprise-3.15\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC87B405D\/Tiet9B9DED8B\/Tiet852071AE\/Tiet1AF85D12.php",
@@ -26280,7 +26280,7 @@
2628026280
},
2628126281
{
2628226282
"name": ".\/clients\/GitHubEnterprise-3.15\/etc\/..\/\/src\/\/Schema\/Issues\/Update\/Request\/ApplicationJson.php",
26283-
"hash": "1244e5dcd3e4cb57a5e95343282e8b0f"
26283+
"hash": "58462d123a3e94dec71dec93af21fee2"
2628426284
},
2628526285
{
2628626286
"name": ".\/clients\/GitHubEnterprise-3.15\/etc\/..\/\/src\/\/Schema\/Issues\/AddAssignees\/Request\/ApplicationJson.php",
@@ -27484,7 +27484,7 @@
2748427484
},
2748527485
{
2748627486
"name": ".\/clients\/GitHubEnterprise-3.15\/etc\/..\/\/src\/\/Operation\/Issues.php",
27487-
"hash": "2b1c01814ea22ab3511d57bfefb43f7f"
27487+
"hash": "943f6c18c2b153af47e046f85548c3d3"
2748827488
},
2748927489
{
2749027490
"name": ".\/clients\/GitHubEnterprise-3.15\/etc\/..\/\/src\/\/Operation\/Licenses.php",

clients/GitHubEnterprise-3.15/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.15/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.15/current.spec.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -33258,7 +33258,9 @@ paths:
3325833258
type:
3325933259
- string
3326033260
- 'null'
33261-
description: The name of the issue type to associate with this issue.
33261+
description: 'The name of the issue type to associate with this
33262+
issue. _NOTE: Only users with push access can set the type for
33263+
new issues. The type is silently dropped otherwise._'
3326233264
examples:
3326333265
- Epic
3326433266
required:
@@ -33875,7 +33877,9 @@ paths:
3387533877
- string
3387633878
- 'null'
3387733879
description: The name of the issue type to associate with this issue
33878-
or use `null` to remove the current issue type.
33880+
or use `null` to remove the current issue type. Only users with
33881+
push access can set the type for issues. Without push access to
33882+
the repository, type changes are silently dropped.
3387933883
examples:
3388033884
- Epic
3388133885
examples:

0 commit comments

Comments
 (0)