Skip to content

Commit 5ff9096

Browse files
WyriHaximusgithub-actions[bot]
authored andcommitted
[GitHub] Update to 1.1.4-808b83641f5a6cdecf73cd52f50366e7 from 1.1.4-6b88df041143c890905098eb26e5a9a4
Detected Schema changes: ``` ├─┬Paths │ ├──[➖] path (11629:3)❌ │ ├──[➖] path (11707:3)❌ │ ├─┬/orgs/{org}/issues │ │ └─┬GET │ │ └──[➖] parameters (11836:15)❌ │ ├─┬/repos/{owner}/{repo}/issues │ │ ├─┬GET │ │ │ └──[➖] parameters (34157:15)❌ │ │ └─┬POST │ │ └─┬Requestbody │ │ └─┬application/json │ │ └─┬Schema │ │ └──[➖] properties (34305:17)❌ │ ├─┬/orgs/{org}/properties/schema │ │ └─┬PATCH │ │ └──[🔀] description (14275:20) │ └─┬/repos/{owner}/{repo}/issues/{issue_number} │ └─┬PATCH │ └─┬Requestbody │ └─┬application/json │ └─┬Schema │ └──[➖] properties (34921:17)❌ └─┬Components ├──[➖] parameters (230724:7)❌ ├──[➖] examples (210107:7)❌ ├──[➖] examples (210121:7)❌ ├──[➖] schemas (77517:7)❌ ├──[➖] schemas (72410:7)❌ ├──[➖] schemas (77554:7)❌ ├─┬webhook-issues-unlocked │ └─┬issue │ └──[➖] properties (133061:13)❌ ├─┬custom-property-set-payload │ └──[➖] properties (78576:9)❌ ├─┬webhook-issues-locked │ └─┬issue │ └──[➖] properties (126247:13)❌ ├─┬webhook-issues-closed │ └─┬issue │ └─┬ALLOF │ └──[➖] properties (121232:15)❌ ├─┬issue-search-result-item │ └──[➖] properties (93834:9)❌ ├─┬webhook-issue-comment-deleted │ └─┬issue │ └─┬ALLOF │ └──[➖] properties (118767:15)❌ ├─┬webhook-issues-reopened │ └─┬issue │ └──[➖] properties (130671:13)❌ ├─┬webhook-issue-comment-edited │ └─┬issue │ └─┬ALLOF │ └──[➖] properties (119987:15)❌ ├─┬webhooks_issue_2 │ └──[➖] properties (99910:9)❌ ├─┬webhook-issues-transferred │ └─┬changes │ └─┬new_issue │ └──[➖] properties (131531:17)❌ ├─┬webhook-issues-milestoned │ └─┬issue │ └──[➖] properties (127212:13)❌ ├─┬webhook-issues-demilestoned │ └─┬issue │ └──[➖] properties (123321:13)❌ ├─┬issue │ └──[➖] properties (72710:9)❌ ├─┬webhook-issues-labeled │ └─┬issue │ └──[➖] properties (125254:13)❌ ├─┬app-permissions │ └─┬dependabot_secrets │ └──[🔀] description (69237:24) ├─┬webhook-issue-comment-created │ └─┬issue │ └─┬ALLOF │ └──[➖] properties (117554:15)❌ ├─┬webhooks_issue │ └──[➖] properties (98828:9)❌ ├─┬webhook-issues-deleted │ └─┬issue │ └──[➖] properties (122336:13)❌ ├─┬webhook-issues-opened │ └─┬issue │ └──[➖] properties (129578:13)❌ └─┬webhook-issues-edited └─┬issue └──[➖] properties (124285:13)❌ ``` | Document Element | Total Changes | Breaking Changes | |------------------|---------------|------------------| | paths | 7 | 6 | | components | 26 | 29 | Date: 03/18/25 | Commit: Original: etc/specs/GitHub/current.spec.yaml, Modified: etc/specs/GitHub/previous.spec.yaml, - ❌ **BREAKING Changes**: _35_ out of _33_ - **Modifications**: _2_ - **Removals**: _31_ - **Breaking Removals**: _31_ ERROR: breaking changes discovered
1 parent d26d4bd commit 5ff9096

File tree

135 files changed

+9736
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+9736
-257
lines changed

clients/GitHub/README.md

+92
Original file line numberDiff line numberDiff line change
@@ -6394,6 +6394,90 @@ $client->operations()->orgs()->listInvitationTeamsListing( org: 'generate
63946394
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/orgs/members#list-organization-invitation-teams).
63956395

63966396

6397+
### orgs/list-issue-types
6398+
6399+
List issue types for an organization
6400+
6401+
Using the `call` method:
6402+
```php
6403+
$client->call('GET /orgs/{org}/issue-types', [
6404+
'org' => 'generated',
6405+
]);
6406+
```
6407+
6408+
Operations method:
6409+
```php
6410+
$client->operations()->orgs()->listIssueTypes( org: 'generated',
6411+
);
6412+
```
6413+
6414+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization).
6415+
6416+
6417+
### orgs/create-issue-type
6418+
6419+
Create issue type for an organization
6420+
6421+
Using the `call` method:
6422+
```php
6423+
$client->call('POST /orgs/{org}/issue-types', [
6424+
'org' => 'generated',
6425+
]);
6426+
```
6427+
6428+
Operations method:
6429+
```php
6430+
$client->operations()->orgs()->createIssueType( org: 'generated',
6431+
);
6432+
```
6433+
6434+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization).
6435+
6436+
6437+
### orgs/update-issue-type
6438+
6439+
Update issue type for an organization
6440+
6441+
Using the `call` method:
6442+
```php
6443+
$client->call('PUT /orgs/{org}/issue-types/{issue_type_id}', [
6444+
'org' => 'generated',
6445+
'issue_type_id' => 13,
6446+
]);
6447+
```
6448+
6449+
Operations method:
6450+
```php
6451+
$client->operations()->orgs()->updateIssueType( org: 'generated',
6452+
issue_type_id: 13,
6453+
);
6454+
```
6455+
6456+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization).
6457+
6458+
6459+
### orgs/delete-issue-type
6460+
6461+
Delete issue type for an organization
6462+
6463+
Using the `call` method:
6464+
```php
6465+
$client->call('DELETE /orgs/{org}/issue-types/{issue_type_id}', [
6466+
'org' => 'generated',
6467+
'issue_type_id' => 13,
6468+
]);
6469+
```
6470+
6471+
Operations method:
6472+
```php
6473+
$client->operations()->orgs()->deleteIssueType( org: 'generated',
6474+
issue_type_id: 13,
6475+
);
6476+
```
6477+
6478+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization).
6479+
6480+
63976481
### issues/list-for-org
63986482

63996483
List organization issues assigned to the authenticated user
@@ -6403,6 +6487,7 @@ Using the `call` method:
64036487
$client->call('GET /orgs/{org}/issues', [
64046488
'org' => 'generated',
64056489
'labels' => 'generated',
6490+
'type' => 'generated',
64066491
'since' => '1970-01-01T00:00:00+00:00',
64076492
'filter' => 'generated',
64086493
'state' => 'generated',
@@ -6417,6 +6502,7 @@ Operations method:
64176502
```php
64186503
$client->operations()->issues()->listForOrg( org: 'generated',
64196504
labels: 'generated',
6505+
type: 'generated',
64206506
since: '1970-01-01T00:00:00+00:00',
64216507
filter: 'generated',
64226508
state: 'generated',
@@ -6439,6 +6525,7 @@ Using the `call` method:
64396525
$client->call('LIST /orgs/{org}/issues', [
64406526
'org' => 'generated',
64416527
'labels' => 'generated',
6528+
'type' => 'generated',
64426529
'since' => '1970-01-01T00:00:00+00:00',
64436530
'filter' => 'generated',
64446531
'state' => 'generated',
@@ -6453,6 +6540,7 @@ Operations method:
64536540
```php
64546541
$client->operations()->issues()->listForOrgListing( org: 'generated',
64556542
labels: 'generated',
6543+
type: 'generated',
64566544
since: '1970-01-01T00:00:00+00:00',
64576545
filter: 'generated',
64586546
state: 'generated',
@@ -18782,6 +18870,7 @@ $client->call('GET /repos/{owner}/{repo}/issues', [
1878218870
'repo' => 'generated',
1878318871
'milestone' => 'generated',
1878418872
'assignee' => 'generated',
18873+
'type' => 'generated',
1878518874
'creator' => 'generated',
1878618875
'mentioned' => 'generated',
1878718876
'labels' => 'generated',
@@ -18800,6 +18889,7 @@ $client->operations()->issues()->listForRepo( owner: 'generated',
1880018889
repo: 'generated',
1880118890
milestone: 'generated',
1880218891
assignee: 'generated',
18892+
type: 'generated',
1880318893
creator: 'generated',
1880418894
mentioned: 'generated',
1880518895
labels: 'generated',
@@ -18826,6 +18916,7 @@ $client->call('LIST /repos/{owner}/{repo}/issues', [
1882618916
'repo' => 'generated',
1882718917
'milestone' => 'generated',
1882818918
'assignee' => 'generated',
18919+
'type' => 'generated',
1882918920
'creator' => 'generated',
1883018921
'mentioned' => 'generated',
1883118922
'labels' => 'generated',
@@ -18844,6 +18935,7 @@ $client->operations()->issues()->listForRepoListing( owner: 'generated',
1884418935
repo: 'generated',
1884518936
milestone: 'generated',
1884618937
assignee: 'generated',
18938+
type: 'generated',
1884718939
creator: 'generated',
1884818940
mentioned: 'generated',
1884918941
labels: 'generated',

0 commit comments

Comments
 (0)