Skip to content

Commit 2a2a8a8

Browse files
authored
Merge pull request #1318 from php-api-clients/GitHub/from-1.1.4-8ce8ea6ebca9a21ed76d7617756ee9f1-from-1.1.4-8ce8ea6ebca9a21ed76d7617756ee9f1
2 parents ecea970 + e4d0878 commit 2a2a8a8

File tree

1,444 files changed

+35465
-5557
lines changed

Some content is hidden

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

1,444 files changed

+35465
-5557
lines changed

clients/GitHub/README.md

+26-6
Original file line numberDiff line numberDiff line change
@@ -973,6 +973,8 @@ $client->call('GET /enterprises/{enterprise}/secret-scanning/alerts', [
973973
'sort' => 'generated',
974974
'direction' => 'generated',
975975
'per_page' => 8,
976+
'is_publicly_leaked' => ,
977+
'is_multi_repo' => ,
976978
]);
977979
```
978980

@@ -988,6 +990,8 @@ $client->operations()->secretScanning()->listAlertsForEnterprise( enterpr
988990
sort: 'generated',
989991
direction: 'generated',
990992
per_page: 8,
993+
is_publicly_leaked: ,
994+
is_multi_repo: ,
991995
);
992996
```
993997

@@ -7876,6 +7880,8 @@ $client->call('GET /orgs/{org}/secret-scanning/alerts', [
78767880
'direction' => 'generated',
78777881
'page' => 1,
78787882
'per_page' => 8,
7883+
'is_publicly_leaked' => ,
7884+
'is_multi_repo' => ,
78797885
]);
78807886
```
78817887

@@ -7892,6 +7898,8 @@ $client->operations()->secretScanning()->listAlertsForOrg( org: 'generate
78927898
direction: 'generated',
78937899
page: 1,
78947900
per_page: 8,
7901+
is_publicly_leaked: ,
7902+
is_multi_repo: ,
78957903
);
78967904
```
78977905

@@ -7916,6 +7924,8 @@ $client->call('LIST /orgs/{org}/secret-scanning/alerts', [
79167924
'direction' => 'generated',
79177925
'page' => 1,
79187926
'per_page' => 8,
7927+
'is_publicly_leaked' => ,
7928+
'is_multi_repo' => ,
79197929
]);
79207930
```
79217931

@@ -7932,6 +7942,8 @@ $client->operations()->secretScanning()->listAlertsForOrgListing( org: 'g
79327942
direction: 'generated',
79337943
page: 1,
79347944
per_page: 8,
7945+
is_publicly_leaked: ,
7946+
is_multi_repo: ,
79357947
);
79367948
```
79377949

@@ -21608,6 +21620,8 @@ $client->call('GET /repos/{owner}/{repo}/secret-scanning/alerts', [
2160821620
'direction' => 'generated',
2160921621
'page' => 1,
2161021622
'per_page' => 8,
21623+
'is_publicly_leaked' => ,
21624+
'is_multi_repo' => ,
2161121625
]);
2161221626
```
2161321627

@@ -21625,6 +21639,8 @@ $client->operations()->secretScanning()->listAlertsForRepo( owner: 'gener
2162521639
direction: 'generated',
2162621640
page: 1,
2162721641
per_page: 8,
21642+
is_publicly_leaked: ,
21643+
is_multi_repo: ,
2162821644
);
2162921645
```
2163021646

@@ -21650,6 +21666,8 @@ $client->call('LIST /repos/{owner}/{repo}/secret-scanning/alerts', [
2165021666
'direction' => 'generated',
2165121667
'page' => 1,
2165221668
'per_page' => 8,
21669+
'is_publicly_leaked' => ,
21670+
'is_multi_repo' => ,
2165321671
]);
2165421672
```
2165521673

@@ -21667,6 +21685,8 @@ $client->operations()->secretScanning()->listAlertsForRepoListing( owner:
2166721685
direction: 'generated',
2166821686
page: 1,
2166921687
per_page: 8,
21688+
is_publicly_leaked: ,
21689+
is_multi_repo: ,
2167021690
);
2167121691
```
2167221692

@@ -22305,7 +22325,7 @@ You can find more about this operation over at the [API method documentation](ht
2230522325

2230622326
### repos/list-tag-protection
2230722327

22308-
Deprecated - List tag protection states for a repository
22328+
Closing down - List tag protection states for a repository
2230922329

2231022330
Using the `call` method:
2231122331
```php
@@ -22322,12 +22342,12 @@ $client->operations()->repos()->listTagProtection( owner: 'generated',
2232222342
);
2232322343
```
2232422344

22325-
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/tags#deprecated---list-tag-protection-states-for-a-repository).
22345+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository).
2232622346

2232722347

2232822348
### repos/create-tag-protection
2232922349

22330-
Deprecated - Create a tag protection state for a repository
22350+
Closing down - Create a tag protection state for a repository
2233122351

2233222352
Using the `call` method:
2233322353
```php
@@ -22344,12 +22364,12 @@ $client->operations()->repos()->createTagProtection( owner: 'generated',
2234422364
);
2234522365
```
2234622366

22347-
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/tags#deprecated---create-a-tag-protection-state-for-a-repository).
22367+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository).
2234822368

2234922369

2235022370
### repos/delete-tag-protection
2235122371

22352-
Deprecated - Delete a tag protection state for a repository
22372+
Closing down - Delete a tag protection state for a repository
2235322373

2235422374
Using the `call` method:
2235522375
```php
@@ -22368,7 +22388,7 @@ $client->operations()->repos()->deleteTagProtection( owner: 'generated',
2236822388
);
2236922389
```
2237022390

22371-
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/tags#deprecated---delete-a-tag-protection-state-for-a-repository).
22391+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository).
2237222392

2237322393

2237422394
### repos/download-tarball-archive

0 commit comments

Comments
 (0)