Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: new custom_property events, description updates #69

Merged
merged 18 commits into from
Nov 9, 2023
5,774 changes: 3,183 additions & 2,591 deletions cache/api.github.com.json

Large diffs are not rendered by default.

5,410 changes: 3,009 additions & 2,401 deletions cache/ghec.json

Large diffs are not rendered by default.

347 changes: 67 additions & 280 deletions cache/ghes-3.10.json

Large diffs are not rendered by default.

329 changes: 63 additions & 266 deletions cache/ghes-3.7.json

Large diffs are not rendered by default.

340 changes: 65 additions & 275 deletions cache/ghes-3.8.json

Large diffs are not rendered by default.

342 changes: 66 additions & 276 deletions cache/ghes-3.9.json

Large diffs are not rendered by default.

376 changes: 113 additions & 263 deletions cache/github.ae.json

Large diffs are not rendered by default.

395 changes: 374 additions & 21 deletions packages/openapi-webhooks-types-ghec/types.d.ts

Large diffs are not rendered by default.

60 changes: 50 additions & 10 deletions packages/openapi-webhooks-types-ghes-3.10/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1604,7 +1604,7 @@ export interface webhooks {
* 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.
*
* To subscribe to this event, a GitHub App must have at least read-level access for the "Pull requests" repository permission.
* @description The title or body of a pull request was edited.
* @description The title or body of a pull request was edited, or the base branch of a pull request was changed.
*/
post: operations["pull-request/edited"];
};
Expand Down Expand Up @@ -2663,6 +2663,10 @@ export interface components {
*/
is_template?: boolean;
topics?: string[];
/** @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. */
custom_properties?: {
[key: string]: unknown;
};
/**
* @description Whether issues are enabled.
* @default true
Expand Down Expand Up @@ -3789,7 +3793,7 @@ export interface components {
/** Format: uri */
check_runs_url: string;
/**
* @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`.
* @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`.
* @enum {string|null}
*/
conclusion:
Expand Down Expand Up @@ -4100,7 +4104,7 @@ export interface components {
/** Format: uri */
check_runs_url: string;
/**
* @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.
* @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.
* @enum {string|null}
*/
conclusion:
Expand Down Expand Up @@ -4399,7 +4403,7 @@ export interface components {
/** Format: uri */
check_runs_url: string;
/**
* @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.
* @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.
* @enum {string|null}
*/
conclusion:
Expand Down Expand Up @@ -4557,7 +4561,7 @@ export interface components {
url?: string;
} | null;
/**
* @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.
* @description The reason for dismissing or closing the alert.
* @enum {string|null}
*/
dismissed_reason:
Expand Down Expand Up @@ -4689,7 +4693,7 @@ export interface components {
url?: string;
} | null;
/**
* @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.
* @description The reason for dismissing or closing the alert.
* @enum {string|null}
*/
dismissed_reason:
Expand Down Expand Up @@ -4927,7 +4931,7 @@ export interface components {
url?: string;
} | null;
/**
* @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.
* @description The reason for dismissing or closing the alert.
* @enum {string|null}
*/
dismissed_reason:
Expand Down Expand Up @@ -7965,7 +7969,7 @@ export interface components {
/** Format: date-time */
completed_at: string | null;
/**
* @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.
* @description The result of the completed check run. This value will be `null` until the check run has completed.
* @enum {string|null}
*/
conclusion:
Expand Down Expand Up @@ -9884,6 +9888,10 @@ export interface components {
/** Format: uri */
contributors_url: string;
created_at: number | string;
/** @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. */
custom_properties?: {
[key: string]: unknown;
};
/** @description The default branch of the repository. */
default_branch: string;
/**
Expand Down Expand Up @@ -17832,6 +17840,10 @@ export interface components {
/** Format: uri */
contributors_url: string;
created_at: number | string;
/** @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. */
custom_properties?: {
[key: string]: unknown;
};
/** @description The default branch of the repository. */
default_branch: string;
/**
Expand Down Expand Up @@ -20039,6 +20051,10 @@ export interface components {
/** Format: uri */
contributors_url: string;
created_at: number | string;
/** @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. */
custom_properties?: {
[key: string]: unknown;
};
/** @description The default branch of the repository. */
default_branch: string;
/**
Expand Down Expand Up @@ -54990,6 +55006,10 @@ export interface components {
/** Format: uri */
contributors_url: string;
created_at: number | string;
/** @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. */
custom_properties?: {
[key: string]: unknown;
};
/** @description The default branch of the repository. */
default_branch: string;
/**
Expand Down Expand Up @@ -57717,7 +57737,7 @@ export interface components {
has_projects: boolean;
has_wiki: boolean;
has_pages: boolean;
has_downloads: boolean;
has_downloads?: boolean;
has_discussions: boolean;
archived: boolean;
/** @description Returns whether or not this repository disabled. */
Expand Down Expand Up @@ -59337,6 +59357,10 @@ export interface components {
/** Format: uri */
contributors_url: string;
created_at: number | string;
/** @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. */
custom_properties?: {
[key: string]: unknown;
};
/** @description The default branch of the repository. */
default_branch: string;
/**
Expand Down Expand Up @@ -59650,6 +59674,10 @@ export interface components {
/** Format: uri */
contributors_url: string;
created_at: number | string;
/** @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. */
custom_properties?: {
[key: string]: unknown;
};
/** @description The default branch of the repository. */
default_branch: string;
/**
Expand Down Expand Up @@ -59963,6 +59991,10 @@ export interface components {
/** Format: uri */
contributors_url: string;
created_at: number | string;
/** @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. */
custom_properties?: {
[key: string]: unknown;
};
/** @description The default branch of the repository. */
default_branch: string;
/**
Expand Down Expand Up @@ -60307,6 +60339,10 @@ export interface components {
/** Format: uri */
contributors_url: string;
created_at: number | string;
/** @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. */
custom_properties?: {
[key: string]: unknown;
};
/** @description The default branch of the repository. */
default_branch: string;
/**
Expand Down Expand Up @@ -60620,6 +60656,10 @@ export interface components {
/** Format: uri */
contributors_url: string;
created_at: number | string;
/** @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. */
custom_properties?: {
[key: string]: unknown;
};
/** @description The default branch of the repository. */
default_branch: string;
/**
Expand Down Expand Up @@ -69372,7 +69412,7 @@ export interface operations {
* 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.
*
* To subscribe to this event, a GitHub App must have at least read-level access for the "Pull requests" repository permission.
* @description The title or body of a pull request was edited.
* @description The title or body of a pull request was edited, or the base branch of a pull request was changed.
*/
"pull-request/edited": {
parameters: {
Expand Down
Loading