Skip to content

Commit d45ba08

Browse files
feat: new custom_property events, description updates (#69)
1 parent 2175ed4 commit d45ba08

File tree

21 files changed

+9034
-6525
lines changed

21 files changed

+9034
-6525
lines changed

cache/api.github.com.json

Lines changed: 3183 additions & 2591 deletions
Large diffs are not rendered by default.

cache/ghec.json

Lines changed: 3009 additions & 2401 deletions
Large diffs are not rendered by default.

cache/ghes-3.10.json

Lines changed: 67 additions & 280 deletions
Large diffs are not rendered by default.

cache/ghes-3.7.json

Lines changed: 63 additions & 266 deletions
Large diffs are not rendered by default.

cache/ghes-3.8.json

Lines changed: 65 additions & 275 deletions
Large diffs are not rendered by default.

cache/ghes-3.9.json

Lines changed: 66 additions & 276 deletions
Large diffs are not rendered by default.

cache/github.ae.json

Lines changed: 113 additions & 263 deletions
Large diffs are not rendered by default.

packages/openapi-webhooks-types-ghec/types.d.ts

Lines changed: 374 additions & 21 deletions
Large diffs are not rendered by default.

packages/openapi-webhooks-types-ghes-3.10/types.d.ts

Lines changed: 50 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1604,7 +1604,7 @@ export interface webhooks {
16041604
* For activity related to pull request reviews, pull request review comments, pull request comments, or pull request review threads, use the `pull_request_review`, `pull_request_review_comment`, `issue_comment`, or `pull_request_review_thread` events instead.
16051605
*
16061606
* To subscribe to this event, a GitHub App must have at least read-level access for the "Pull requests" repository permission.
1607-
* @description The title or body of a pull request was edited.
1607+
* @description The title or body of a pull request was edited, or the base branch of a pull request was changed.
16081608
*/
16091609
post: operations["pull-request/edited"];
16101610
};
@@ -2663,6 +2663,10 @@ export interface components {
26632663
*/
26642664
is_template?: boolean;
26652665
topics?: string[];
2666+
/** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
2667+
custom_properties?: {
2668+
[key: string]: unknown;
2669+
};
26662670
/**
26672671
* @description Whether issues are enabled.
26682672
* @default true
@@ -3789,7 +3793,7 @@ export interface components {
37893793
/** Format: uri */
37903794
check_runs_url: string;
37913795
/**
3792-
* @description The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has `completed`.
3796+
* @description The summary conclusion for all check runs that are part of the check suite. This value will be `null` until the check run has `completed`.
37933797
* @enum {string|null}
37943798
*/
37953799
conclusion:
@@ -4100,7 +4104,7 @@ export interface components {
41004104
/** Format: uri */
41014105
check_runs_url: string;
41024106
/**
4103-
* @description The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`,` neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.
4107+
* @description The summary conclusion for all check runs that are part of the check suite. This value will be `null` until the check run has completed.
41044108
* @enum {string|null}
41054109
*/
41064110
conclusion:
@@ -4399,7 +4403,7 @@ export interface components {
43994403
/** Format: uri */
44004404
check_runs_url: string;
44014405
/**
4402-
* @description The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`,` neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.
4406+
* @description The summary conclusion for all check runs that are part of the check suite. This value will be `null` until the check run has completed.
44034407
* @enum {string|null}
44044408
*/
44054409
conclusion:
@@ -4557,7 +4561,7 @@ export interface components {
45574561
url?: string;
45584562
} | null;
45594563
/**
4560-
* @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.
4564+
* @description The reason for dismissing or closing the alert.
45614565
* @enum {string|null}
45624566
*/
45634567
dismissed_reason:
@@ -4689,7 +4693,7 @@ export interface components {
46894693
url?: string;
46904694
} | null;
46914695
/**
4692-
* @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.
4696+
* @description The reason for dismissing or closing the alert.
46934697
* @enum {string|null}
46944698
*/
46954699
dismissed_reason:
@@ -4927,7 +4931,7 @@ export interface components {
49274931
url?: string;
49284932
} | null;
49294933
/**
4930-
* @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.
4934+
* @description The reason for dismissing or closing the alert.
49314935
* @enum {string|null}
49324936
*/
49334937
dismissed_reason:
@@ -7965,7 +7969,7 @@ export interface components {
79657969
/** Format: date-time */
79667970
completed_at: string | null;
79677971
/**
7968-
* @description The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.
7972+
* @description The result of the completed check run. This value will be `null` until the check run has completed.
79697973
* @enum {string|null}
79707974
*/
79717975
conclusion:
@@ -9884,6 +9888,10 @@ export interface components {
98849888
/** Format: uri */
98859889
contributors_url: string;
98869890
created_at: number | string;
9891+
/** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
9892+
custom_properties?: {
9893+
[key: string]: unknown;
9894+
};
98879895
/** @description The default branch of the repository. */
98889896
default_branch: string;
98899897
/**
@@ -17832,6 +17840,10 @@ export interface components {
1783217840
/** Format: uri */
1783317841
contributors_url: string;
1783417842
created_at: number | string;
17843+
/** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
17844+
custom_properties?: {
17845+
[key: string]: unknown;
17846+
};
1783517847
/** @description The default branch of the repository. */
1783617848
default_branch: string;
1783717849
/**
@@ -20039,6 +20051,10 @@ export interface components {
2003920051
/** Format: uri */
2004020052
contributors_url: string;
2004120053
created_at: number | string;
20054+
/** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
20055+
custom_properties?: {
20056+
[key: string]: unknown;
20057+
};
2004220058
/** @description The default branch of the repository. */
2004320059
default_branch: string;
2004420060
/**
@@ -54990,6 +55006,10 @@ export interface components {
5499055006
/** Format: uri */
5499155007
contributors_url: string;
5499255008
created_at: number | string;
55009+
/** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
55010+
custom_properties?: {
55011+
[key: string]: unknown;
55012+
};
5499355013
/** @description The default branch of the repository. */
5499455014
default_branch: string;
5499555015
/**
@@ -57717,7 +57737,7 @@ export interface components {
5771757737
has_projects: boolean;
5771857738
has_wiki: boolean;
5771957739
has_pages: boolean;
57720-
has_downloads: boolean;
57740+
has_downloads?: boolean;
5772157741
has_discussions: boolean;
5772257742
archived: boolean;
5772357743
/** @description Returns whether or not this repository disabled. */
@@ -59337,6 +59357,10 @@ export interface components {
5933759357
/** Format: uri */
5933859358
contributors_url: string;
5933959359
created_at: number | string;
59360+
/** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
59361+
custom_properties?: {
59362+
[key: string]: unknown;
59363+
};
5934059364
/** @description The default branch of the repository. */
5934159365
default_branch: string;
5934259366
/**
@@ -59650,6 +59674,10 @@ export interface components {
5965059674
/** Format: uri */
5965159675
contributors_url: string;
5965259676
created_at: number | string;
59677+
/** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
59678+
custom_properties?: {
59679+
[key: string]: unknown;
59680+
};
5965359681
/** @description The default branch of the repository. */
5965459682
default_branch: string;
5965559683
/**
@@ -59963,6 +59991,10 @@ export interface components {
5996359991
/** Format: uri */
5996459992
contributors_url: string;
5996559993
created_at: number | string;
59994+
/** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
59995+
custom_properties?: {
59996+
[key: string]: unknown;
59997+
};
5996659998
/** @description The default branch of the repository. */
5996759999
default_branch: string;
5996860000
/**
@@ -60307,6 +60339,10 @@ export interface components {
6030760339
/** Format: uri */
6030860340
contributors_url: string;
6030960341
created_at: number | string;
60342+
/** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
60343+
custom_properties?: {
60344+
[key: string]: unknown;
60345+
};
6031060346
/** @description The default branch of the repository. */
6031160347
default_branch: string;
6031260348
/**
@@ -60620,6 +60656,10 @@ export interface components {
6062060656
/** Format: uri */
6062160657
contributors_url: string;
6062260658
created_at: number | string;
60659+
/** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
60660+
custom_properties?: {
60661+
[key: string]: unknown;
60662+
};
6062360663
/** @description The default branch of the repository. */
6062460664
default_branch: string;
6062560665
/**
@@ -69372,7 +69412,7 @@ export interface operations {
6937269412
* For activity related to pull request reviews, pull request review comments, pull request comments, or pull request review threads, use the `pull_request_review`, `pull_request_review_comment`, `issue_comment`, or `pull_request_review_thread` events instead.
6937369413
*
6937469414
* To subscribe to this event, a GitHub App must have at least read-level access for the "Pull requests" repository permission.
69375-
* @description The title or body of a pull request was edited.
69415+
* @description The title or body of a pull request was edited, or the base branch of a pull request was changed.
6937669416
*/
6937769417
"pull-request/edited": {
6937869418
parameters: {

0 commit comments

Comments
 (0)