Skip to content

Commit d7ac965

Browse files
authored
Merge pull request #1573 from php-api-clients/GitHubEnterpriseCloud/from-1.1.4-18d1649ae731235428cf7dff63fe488a-from-1.1.4-18d1649ae731235428cf7dff63fe488a
2 parents 18c8c91 + 1277b73 commit d7ac965

File tree

135 files changed

+9740
-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

+9740
-257
lines changed

clients/GitHubEnterpriseCloud/README.md

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

93949394

9395+
### orgs/list-issue-types
9396+
9397+
List issue types for an organization
9398+
9399+
Using the `call` method:
9400+
```php
9401+
$client->call('GET /orgs/{org}/issue-types', [
9402+
'org' => 'generated',
9403+
]);
9404+
```
9405+
9406+
Operations method:
9407+
```php
9408+
$client->operations()->orgs()->listIssueTypes( org: 'generated',
9409+
);
9410+
```
9411+
9412+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization).
9413+
9414+
9415+
### orgs/create-issue-type
9416+
9417+
Create issue type for an organization
9418+
9419+
Using the `call` method:
9420+
```php
9421+
$client->call('POST /orgs/{org}/issue-types', [
9422+
'org' => 'generated',
9423+
]);
9424+
```
9425+
9426+
Operations method:
9427+
```php
9428+
$client->operations()->orgs()->createIssueType( org: 'generated',
9429+
);
9430+
```
9431+
9432+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization).
9433+
9434+
9435+
### orgs/update-issue-type
9436+
9437+
Update issue type for an organization
9438+
9439+
Using the `call` method:
9440+
```php
9441+
$client->call('PUT /orgs/{org}/issue-types/{issue_type_id}', [
9442+
'org' => 'generated',
9443+
'issue_type_id' => 13,
9444+
]);
9445+
```
9446+
9447+
Operations method:
9448+
```php
9449+
$client->operations()->orgs()->updateIssueType( org: 'generated',
9450+
issue_type_id: 13,
9451+
);
9452+
```
9453+
9454+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization).
9455+
9456+
9457+
### orgs/delete-issue-type
9458+
9459+
Delete issue type for an organization
9460+
9461+
Using the `call` method:
9462+
```php
9463+
$client->call('DELETE /orgs/{org}/issue-types/{issue_type_id}', [
9464+
'org' => 'generated',
9465+
'issue_type_id' => 13,
9466+
]);
9467+
```
9468+
9469+
Operations method:
9470+
```php
9471+
$client->operations()->orgs()->deleteIssueType( org: 'generated',
9472+
issue_type_id: 13,
9473+
);
9474+
```
9475+
9476+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization).
9477+
9478+
93959479
### issues/list-for-org
93969480

93979481
List organization issues assigned to the authenticated user
@@ -9401,6 +9485,7 @@ Using the `call` method:
94019485
$client->call('GET /orgs/{org}/issues', [
94029486
'org' => 'generated',
94039487
'labels' => 'generated',
9488+
'type' => 'generated',
94049489
'since' => '1970-01-01T00:00:00+00:00',
94059490
'filter' => 'generated',
94069491
'state' => 'generated',
@@ -9415,6 +9500,7 @@ Operations method:
94159500
```php
94169501
$client->operations()->issues()->listForOrg( org: 'generated',
94179502
labels: 'generated',
9503+
type: 'generated',
94189504
since: '1970-01-01T00:00:00+00:00',
94199505
filter: 'generated',
94209506
state: 'generated',
@@ -9437,6 +9523,7 @@ Using the `call` method:
94379523
$client->call('LIST /orgs/{org}/issues', [
94389524
'org' => 'generated',
94399525
'labels' => 'generated',
9526+
'type' => 'generated',
94409527
'since' => '1970-01-01T00:00:00+00:00',
94419528
'filter' => 'generated',
94429529
'state' => 'generated',
@@ -9451,6 +9538,7 @@ Operations method:
94519538
```php
94529539
$client->operations()->issues()->listForOrgListing( org: 'generated',
94539540
labels: 'generated',
9541+
type: 'generated',
94549542
since: '1970-01-01T00:00:00+00:00',
94559543
filter: 'generated',
94569544
state: 'generated',
@@ -22276,6 +22364,7 @@ $client->call('GET /repos/{owner}/{repo}/issues', [
2227622364
'repo' => 'generated',
2227722365
'milestone' => 'generated',
2227822366
'assignee' => 'generated',
22367+
'type' => 'generated',
2227922368
'creator' => 'generated',
2228022369
'mentioned' => 'generated',
2228122370
'labels' => 'generated',
@@ -22294,6 +22383,7 @@ $client->operations()->issues()->listForRepo( owner: 'generated',
2229422383
repo: 'generated',
2229522384
milestone: 'generated',
2229622385
assignee: 'generated',
22386+
type: 'generated',
2229722387
creator: 'generated',
2229822388
mentioned: 'generated',
2229922389
labels: 'generated',
@@ -22320,6 +22410,7 @@ $client->call('LIST /repos/{owner}/{repo}/issues', [
2232022410
'repo' => 'generated',
2232122411
'milestone' => 'generated',
2232222412
'assignee' => 'generated',
22413+
'type' => 'generated',
2232322414
'creator' => 'generated',
2232422415
'mentioned' => 'generated',
2232522416
'labels' => 'generated',
@@ -22338,6 +22429,7 @@ $client->operations()->issues()->listForRepoListing( owner: 'generated',
2233822429
repo: 'generated',
2233922430
milestone: 'generated',
2234022431
assignee: 'generated',
22432+
type: 'generated',
2234122433
creator: 'generated',
2234222434
mentioned: 'generated',
2234322435
labels: 'generated',

0 commit comments

Comments
 (0)