Skip to content

Commit 18c8c91

Browse files
authored
Merge pull request #1572 from php-api-clients/GitHub/from-1.1.4-808b83641f5a6cdecf73cd52f50366e7-from-1.1.4-808b83641f5a6cdecf73cd52f50366e7
2 parents d26d4bd + 5ff9096 commit 18c8c91

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

Diff for: 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)