@@ -9392,6 +9392,90 @@ $client->operations()->orgs()->listInvitationTeamsListing( org: 'generate
9392
9392
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).
9393
9393
9394
9394
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
+
9395
9479
### issues/list-for-org
9396
9480
9397
9481
List organization issues assigned to the authenticated user
@@ -9401,6 +9485,7 @@ Using the `call` method:
9401
9485
$client->call('GET /orgs/{org}/issues', [
9402
9486
'org' => 'generated',
9403
9487
'labels' => 'generated',
9488
+ 'type' => 'generated',
9404
9489
'since' => '1970-01-01T00:00:00+00:00',
9405
9490
'filter' => 'generated',
9406
9491
'state' => 'generated',
@@ -9415,6 +9500,7 @@ Operations method:
9415
9500
```php
9416
9501
$client->operations()->issues()->listForOrg( org: 'generated',
9417
9502
labels: 'generated',
9503
+ type: 'generated',
9418
9504
since: '1970-01-01T00:00:00+00:00',
9419
9505
filter: 'generated',
9420
9506
state: 'generated',
@@ -9437,6 +9523,7 @@ Using the `call` method:
9437
9523
$client->call('LIST /orgs/{org}/issues', [
9438
9524
'org' => 'generated',
9439
9525
'labels' => 'generated',
9526
+ 'type' => 'generated',
9440
9527
'since' => '1970-01-01T00:00:00+00:00',
9441
9528
'filter' => 'generated',
9442
9529
'state' => 'generated',
@@ -9451,6 +9538,7 @@ Operations method:
9451
9538
```php
9452
9539
$client->operations()->issues()->listForOrgListing( org: 'generated',
9453
9540
labels: 'generated',
9541
+ type: 'generated',
9454
9542
since: '1970-01-01T00:00:00+00:00',
9455
9543
filter: 'generated',
9456
9544
state: 'generated',
@@ -22276,6 +22364,7 @@ $client->call('GET /repos/{owner}/{repo}/issues', [
22276
22364
'repo' => 'generated',
22277
22365
'milestone' => 'generated',
22278
22366
'assignee' => 'generated',
22367
+ 'type' => 'generated',
22279
22368
'creator' => 'generated',
22280
22369
'mentioned' => 'generated',
22281
22370
'labels' => 'generated',
@@ -22294,6 +22383,7 @@ $client->operations()->issues()->listForRepo( owner: 'generated',
22294
22383
repo: 'generated',
22295
22384
milestone: 'generated',
22296
22385
assignee: 'generated',
22386
+ type: 'generated',
22297
22387
creator: 'generated',
22298
22388
mentioned: 'generated',
22299
22389
labels: 'generated',
@@ -22320,6 +22410,7 @@ $client->call('LIST /repos/{owner}/{repo}/issues', [
22320
22410
'repo' => 'generated',
22321
22411
'milestone' => 'generated',
22322
22412
'assignee' => 'generated',
22413
+ 'type' => 'generated',
22323
22414
'creator' => 'generated',
22324
22415
'mentioned' => 'generated',
22325
22416
'labels' => 'generated',
@@ -22338,6 +22429,7 @@ $client->operations()->issues()->listForRepoListing( owner: 'generated',
22338
22429
repo: 'generated',
22339
22430
milestone: 'generated',
22340
22431
assignee: 'generated',
22432
+ type: 'generated',
22341
22433
creator: 'generated',
22342
22434
mentioned: 'generated',
22343
22435
labels: 'generated',
0 commit comments