@automate.ax/integration-contracts 0.89.0 → 0.90.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/github/additional-events.d.ts +5 -3
- package/dist/github/additional-events.js +9 -1
- package/dist/github/openapi-types.generated.d.ts +27 -29
- package/dist/github/webhook-schemas.generated.json +1 -1
- package/dist/notion/index.d.ts +5 -1
- package/dist/notion/index.js +6 -0
- package/dist/notion/schemas.d.ts +246 -0
- package/dist/notion/schemas.js +15 -0
- package/package.json +2 -2
- package/src/github/additional-events.ts +23 -3
- package/src/github/openapi-types.generated.ts +27 -29
- package/src/github/webhook-schemas.generated.json +1 -1
- package/src/notion/index.ts +10 -0
- package/src/notion/schemas.ts +27 -0
|
@@ -231,9 +231,10 @@ export type GitHubWorkflowDispatchEvent = GitHubWebhookPayload<"workflow-dispatc
|
|
|
231
231
|
/** GitHub deployment-created webhook payload. */
|
|
232
232
|
export type GitHubDeploymentEvent = GitHubWebhookPayload<"deployment-created">;
|
|
233
233
|
/** GitHub deployment-status webhook payload. */
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
234
|
+
type GitHubDeploymentStatusProviderEvent = GitHubWebhookPayload<"deployment-status-created">;
|
|
235
|
+
export type GitHubDeploymentStatusEvent = GitHubDeploymentStatusProviderEvent & {
|
|
236
|
+
deployment_status: GitHubDeploymentStatusProviderEvent["deployment_status"] & {
|
|
237
|
+
state: "error" | "failure" | "inactive" | "in_progress" | "pending" | "queued" | "success";
|
|
237
238
|
};
|
|
238
239
|
};
|
|
239
240
|
export type GitHubDeploymentQueuedEvent = GitHubDeploymentStatusEvent & {
|
|
@@ -386,3 +387,4 @@ export declare const GITHUB_STATUS_PENDING_EVENT_SCHEMA: GitHubWebhookSchema<Git
|
|
|
386
387
|
export declare const GITHUB_STATUS_SUCCEEDED_EVENT_SCHEMA: GitHubWebhookSchema<GitHubStatusSucceededEvent>;
|
|
387
388
|
export declare const GITHUB_STATUS_FAILED_EVENT_SCHEMA: GitHubWebhookSchema<GitHubStatusFailedEvent>;
|
|
388
389
|
export declare const GITHUB_STATUS_ERRORED_EVENT_SCHEMA: GitHubWebhookSchema<GitHubStatusErroredEvent>;
|
|
390
|
+
export {};
|
|
@@ -113,7 +113,15 @@ export const GITHUB_WORKFLOW_JOB_SKIPPED_EVENT_SCHEMA = githubSemanticEventSchem
|
|
|
113
113
|
export const GITHUB_REPOSITORY_DISPATCH_EVENT_SCHEMA = githubWebhookEventSchema("repository_dispatch");
|
|
114
114
|
export const GITHUB_WORKFLOW_DISPATCH_EVENT_SCHEMA = githubWebhookEventSchema("workflow_dispatch");
|
|
115
115
|
export const GITHUB_DEPLOYMENT_EVENT_SCHEMA = githubWebhookEventSchema("deployment");
|
|
116
|
-
export const GITHUB_DEPLOYMENT_STATUS_EVENT_SCHEMA = githubWebhookEventSchema("deployment_status")
|
|
116
|
+
export const GITHUB_DEPLOYMENT_STATUS_EVENT_SCHEMA = githubSemanticEventSchema(githubWebhookEventSchema("deployment_status"), (event) => [
|
|
117
|
+
"error",
|
|
118
|
+
"failure",
|
|
119
|
+
"inactive",
|
|
120
|
+
"in_progress",
|
|
121
|
+
"pending",
|
|
122
|
+
"queued",
|
|
123
|
+
"success",
|
|
124
|
+
].includes(event.deployment_status.state));
|
|
117
125
|
export const GITHUB_DEPLOYMENT_QUEUED_EVENT_SCHEMA = githubSemanticEventSchema(GITHUB_DEPLOYMENT_STATUS_EVENT_SCHEMA, (event) => event.deployment_status.state === "queued");
|
|
118
126
|
export const GITHUB_DEPLOYMENT_STARTED_EVENT_SCHEMA = githubSemanticEventSchema(GITHUB_DEPLOYMENT_STATUS_EVENT_SCHEMA, (event) => event.deployment_status.state === "in_progress");
|
|
119
127
|
export const GITHUB_DEPLOYMENT_PENDING_EVENT_SCHEMA = githubSemanticEventSchema(GITHUB_DEPLOYMENT_STATUS_EVENT_SCHEMA, (event) => event.deployment_status.state === "pending");
|
|
@@ -4945,7 +4945,7 @@ export type components = {
|
|
|
4945
4945
|
created_at: string | null;
|
|
4946
4946
|
description: string | null;
|
|
4947
4947
|
/** @description The list of events for the GitHub app */
|
|
4948
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
4948
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
4949
4949
|
/** Format: uri */
|
|
4950
4950
|
external_url: string | null;
|
|
4951
4951
|
/** Format: uri */
|
|
@@ -5187,7 +5187,7 @@ export type components = {
|
|
|
5187
5187
|
created_at: string | null;
|
|
5188
5188
|
description: string | null;
|
|
5189
5189
|
/** @description The list of events for the GitHub app */
|
|
5190
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
5190
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
5191
5191
|
/** Format: uri */
|
|
5192
5192
|
external_url: string | null;
|
|
5193
5193
|
/** Format: uri */
|
|
@@ -5443,7 +5443,7 @@ export type components = {
|
|
|
5443
5443
|
created_at: string | null;
|
|
5444
5444
|
description: string | null;
|
|
5445
5445
|
/** @description The list of events for the GitHub app */
|
|
5446
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
5446
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
5447
5447
|
/** Format: uri */
|
|
5448
5448
|
external_url: string | null;
|
|
5449
5449
|
/** Format: uri */
|
|
@@ -5873,7 +5873,7 @@ export type components = {
|
|
|
5873
5873
|
created_at: string | null;
|
|
5874
5874
|
description: string | null;
|
|
5875
5875
|
/** @description The list of events for the GitHub app */
|
|
5876
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
5876
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
5877
5877
|
/** Format: uri */
|
|
5878
5878
|
external_url: string | null;
|
|
5879
5879
|
/** Format: uri */
|
|
@@ -7380,7 +7380,7 @@ export type components = {
|
|
|
7380
7380
|
created_at: string | null;
|
|
7381
7381
|
description: string | null;
|
|
7382
7382
|
/** @description The list of events for the GitHub app */
|
|
7383
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
7383
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
7384
7384
|
/** Format: uri */
|
|
7385
7385
|
external_url: string | null;
|
|
7386
7386
|
/** Format: uri */
|
|
@@ -7563,11 +7563,9 @@ export type components = {
|
|
|
7563
7563
|
/** @description The optional human-readable description added to the status. */
|
|
7564
7564
|
description: string;
|
|
7565
7565
|
environment: string;
|
|
7566
|
-
|
|
7567
|
-
environment_url?: string;
|
|
7566
|
+
environment_url?: string | "";
|
|
7568
7567
|
id: number;
|
|
7569
|
-
|
|
7570
|
-
log_url?: string;
|
|
7568
|
+
log_url?: string | "";
|
|
7571
7569
|
node_id: string;
|
|
7572
7570
|
/**
|
|
7573
7571
|
* App
|
|
@@ -7578,7 +7576,7 @@ export type components = {
|
|
|
7578
7576
|
created_at: string | null;
|
|
7579
7577
|
description: string | null;
|
|
7580
7578
|
/** @description The list of events for the GitHub app */
|
|
7581
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
7579
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
7582
7580
|
/** Format: uri */
|
|
7583
7581
|
external_url: string | null;
|
|
7584
7582
|
/** Format: uri */
|
|
@@ -8580,7 +8578,7 @@ export type components = {
|
|
|
8580
8578
|
created_at: string | null;
|
|
8581
8579
|
description: string | null;
|
|
8582
8580
|
/** @description The list of events for the GitHub app */
|
|
8583
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
8581
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
8584
8582
|
/** Format: uri */
|
|
8585
8583
|
external_url: string | null;
|
|
8586
8584
|
/** Format: uri */
|
|
@@ -9119,7 +9117,7 @@ export type components = {
|
|
|
9119
9117
|
created_at: string | null;
|
|
9120
9118
|
description: string | null;
|
|
9121
9119
|
/** @description The list of events for the GitHub app */
|
|
9122
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
9120
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
9123
9121
|
/** Format: uri */
|
|
9124
9122
|
external_url: string | null;
|
|
9125
9123
|
/** Format: uri */
|
|
@@ -9660,7 +9658,7 @@ export type components = {
|
|
|
9660
9658
|
created_at: string | null;
|
|
9661
9659
|
description: string | null;
|
|
9662
9660
|
/** @description The list of events for the GitHub app */
|
|
9663
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
9661
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
9664
9662
|
/** Format: uri */
|
|
9665
9663
|
external_url: string | null;
|
|
9666
9664
|
/** Format: uri */
|
|
@@ -10199,7 +10197,7 @@ export type components = {
|
|
|
10199
10197
|
created_at: string | null;
|
|
10200
10198
|
description: string | null;
|
|
10201
10199
|
/** @description The list of events for the GitHub app */
|
|
10202
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
10200
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
10203
10201
|
/** Format: uri */
|
|
10204
10202
|
external_url: string | null;
|
|
10205
10203
|
/** Format: uri */
|
|
@@ -10741,7 +10739,7 @@ export type components = {
|
|
|
10741
10739
|
created_at: string | null;
|
|
10742
10740
|
description: string | null;
|
|
10743
10741
|
/** @description The list of events for the GitHub app */
|
|
10744
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
10742
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
10745
10743
|
/** Format: uri */
|
|
10746
10744
|
external_url: string | null;
|
|
10747
10745
|
/** Format: uri */
|
|
@@ -11365,7 +11363,7 @@ export type components = {
|
|
|
11365
11363
|
created_at: string | null;
|
|
11366
11364
|
description: string | null;
|
|
11367
11365
|
/** @description The list of events for the GitHub app */
|
|
11368
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
11366
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
11369
11367
|
/** Format: uri */
|
|
11370
11368
|
external_url: string | null;
|
|
11371
11369
|
/** Format: uri */
|
|
@@ -11855,7 +11853,7 @@ export type components = {
|
|
|
11855
11853
|
created_at: string | null;
|
|
11856
11854
|
description: string | null;
|
|
11857
11855
|
/** @description The list of events for the GitHub app */
|
|
11858
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
11856
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
11859
11857
|
/** Format: uri */
|
|
11860
11858
|
external_url: string | null;
|
|
11861
11859
|
/** Format: uri */
|
|
@@ -12282,7 +12280,7 @@ export type components = {
|
|
|
12282
12280
|
created_at: string | null;
|
|
12283
12281
|
description: string | null;
|
|
12284
12282
|
/** @description The list of events for the GitHub app */
|
|
12285
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
12283
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
12286
12284
|
/** Format: uri */
|
|
12287
12285
|
external_url: string | null;
|
|
12288
12286
|
/** Format: uri */
|
|
@@ -12722,7 +12720,7 @@ export type components = {
|
|
|
12722
12720
|
created_at: string | null;
|
|
12723
12721
|
description: string | null;
|
|
12724
12722
|
/** @description The list of events for the GitHub app */
|
|
12725
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
12723
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
12726
12724
|
/** Format: uri */
|
|
12727
12725
|
external_url: string | null;
|
|
12728
12726
|
/** Format: uri */
|
|
@@ -13278,7 +13276,7 @@ export type components = {
|
|
|
13278
13276
|
created_at: string | null;
|
|
13279
13277
|
description: string | null;
|
|
13280
13278
|
/** @description The list of events for the GitHub app */
|
|
13281
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
13279
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
13282
13280
|
/** Format: uri */
|
|
13283
13281
|
external_url: string | null;
|
|
13284
13282
|
/** Format: uri */
|
|
@@ -13709,7 +13707,7 @@ export type components = {
|
|
|
13709
13707
|
created_at: string | null;
|
|
13710
13708
|
description: string | null;
|
|
13711
13709
|
/** @description The list of events for the GitHub app */
|
|
13712
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
13710
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
13713
13711
|
/** Format: uri */
|
|
13714
13712
|
external_url: string | null;
|
|
13715
13713
|
/** Format: uri */
|
|
@@ -14136,7 +14134,7 @@ export type components = {
|
|
|
14136
14134
|
created_at: string | null;
|
|
14137
14135
|
description: string | null;
|
|
14138
14136
|
/** @description The list of events for the GitHub app */
|
|
14139
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
14137
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
14140
14138
|
/** Format: uri */
|
|
14141
14139
|
external_url: string | null;
|
|
14142
14140
|
/** Format: uri */
|
|
@@ -14565,7 +14563,7 @@ export type components = {
|
|
|
14565
14563
|
created_at: string | null;
|
|
14566
14564
|
description: string | null;
|
|
14567
14565
|
/** @description The list of events for the GitHub app */
|
|
14568
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
14566
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
14569
14567
|
/** Format: uri */
|
|
14570
14568
|
external_url: string | null;
|
|
14571
14569
|
/** Format: uri */
|
|
@@ -15244,7 +15242,7 @@ export type components = {
|
|
|
15244
15242
|
created_at: string | null;
|
|
15245
15243
|
description: string | null;
|
|
15246
15244
|
/** @description The list of events for the GitHub app */
|
|
15247
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
15245
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
15248
15246
|
/** Format: uri */
|
|
15249
15247
|
external_url: string | null;
|
|
15250
15248
|
/** Format: uri */
|
|
@@ -15682,7 +15680,7 @@ export type components = {
|
|
|
15682
15680
|
created_at: string | null;
|
|
15683
15681
|
description: string | null;
|
|
15684
15682
|
/** @description The list of events for the GitHub app */
|
|
15685
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
15683
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
15686
15684
|
/** Format: uri */
|
|
15687
15685
|
external_url: string | null;
|
|
15688
15686
|
/** Format: uri */
|
|
@@ -16110,7 +16108,7 @@ export type components = {
|
|
|
16110
16108
|
created_at: string | null;
|
|
16111
16109
|
description: string | null;
|
|
16112
16110
|
/** @description The list of events for the GitHub app */
|
|
16113
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
16111
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
16114
16112
|
/** Format: uri */
|
|
16115
16113
|
external_url: string | null;
|
|
16116
16114
|
/** Format: uri */
|
|
@@ -16843,7 +16841,7 @@ export type components = {
|
|
|
16843
16841
|
created_at: string | null;
|
|
16844
16842
|
description: string | null;
|
|
16845
16843
|
/** @description The list of events for the GitHub app */
|
|
16846
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
16844
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
16847
16845
|
/** Format: uri */
|
|
16848
16846
|
external_url: string | null;
|
|
16849
16847
|
/** Format: uri */
|
|
@@ -49412,7 +49410,7 @@ export type components = {
|
|
|
49412
49410
|
created_at: string | null;
|
|
49413
49411
|
description: string | null;
|
|
49414
49412
|
/** @description The list of events for the GitHub app */
|
|
49415
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
49413
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
49416
49414
|
/** Format: uri */
|
|
49417
49415
|
external_url: string | null;
|
|
49418
49416
|
/** Format: uri */
|
|
@@ -49831,7 +49829,7 @@ export type components = {
|
|
|
49831
49829
|
created_at: string | null;
|
|
49832
49830
|
description: string | null;
|
|
49833
49831
|
/** @description The list of events for the GitHub app */
|
|
49834
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
49832
|
+
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deploy_key" | "deployment" | "deployment_protection_rule" | "deployment_review" | "deployment_status" | "discussion" | "discussion_comment" | "fork" | "gollum" | "issue_comment" | "issue_dependencies" | "issues" | "label" | "member" | "membership" | "merge_group" | "merge_queue_entry" | "milestone" | "org_block" | "organization" | "page_build" | "project" | "project_card" | "project_column" | "projects_v2_item" | "public" | "pull_request" | "pull_request_review" | "pull_request_review_comment" | "pull_request_review_thread" | "push" | "registry_package" | "release" | "reminder" | "repository" | "repository_dispatch" | "repository_import" | "secret_scanning_alert" | "secret_scanning_alert_location" | "security_and_analysis" | "star" | "status" | "sub_issues" | "team" | "team_add" | "watch" | "workflow_dispatch" | "workflow_job" | "workflow_run")[];
|
|
49835
49833
|
/** Format: uri */
|
|
49836
49834
|
external_url: string | null;
|
|
49837
49835
|
/** Format: uri */
|