@automate.ax/integration-contracts 0.89.0 → 0.89.2
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/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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/integration-contracts",
|
|
3
|
-
"version": "0.89.
|
|
3
|
+
"version": "0.89.2",
|
|
4
4
|
"description": "Shared integration payload contracts and provider primitives for Automate.ax.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@automate.ax/codec": "0.89.
|
|
50
|
+
"@automate.ax/codec": "0.89.2",
|
|
51
51
|
"@cfworker/json-schema": "^4.1.1",
|
|
52
52
|
"@googleapis/calendar": "^15.0.0",
|
|
53
53
|
"@googleapis/forms": "^6.0.1",
|
|
@@ -350,12 +350,15 @@ export type GitHubWorkflowDispatchEvent =
|
|
|
350
350
|
export type GitHubDeploymentEvent = GitHubWebhookPayload<"deployment-created">
|
|
351
351
|
|
|
352
352
|
/** GitHub deployment-status webhook payload. */
|
|
353
|
+
type GitHubDeploymentStatusProviderEvent =
|
|
354
|
+
GitHubWebhookPayload<"deployment-status-created">
|
|
353
355
|
export type GitHubDeploymentStatusEvent =
|
|
354
|
-
|
|
355
|
-
deployment_status:
|
|
356
|
+
GitHubDeploymentStatusProviderEvent & {
|
|
357
|
+
deployment_status: GitHubDeploymentStatusProviderEvent["deployment_status"] & {
|
|
356
358
|
state:
|
|
357
359
|
| "error"
|
|
358
360
|
| "failure"
|
|
361
|
+
| "inactive"
|
|
359
362
|
| "in_progress"
|
|
360
363
|
| "pending"
|
|
361
364
|
| "queued"
|
|
@@ -972,7 +975,24 @@ export const GITHUB_WORKFLOW_DISPATCH_EVENT_SCHEMA: GitHubWebhookSchema<GitHubWo
|
|
|
972
975
|
export const GITHUB_DEPLOYMENT_EVENT_SCHEMA: GitHubWebhookSchema<GitHubDeploymentEvent> =
|
|
973
976
|
githubWebhookEventSchema<GitHubDeploymentEvent>("deployment")
|
|
974
977
|
export const GITHUB_DEPLOYMENT_STATUS_EVENT_SCHEMA: GitHubWebhookSchema<GitHubDeploymentStatusEvent> =
|
|
975
|
-
|
|
978
|
+
githubSemanticEventSchema<
|
|
979
|
+
GitHubDeploymentStatusProviderEvent,
|
|
980
|
+
GitHubDeploymentStatusEvent
|
|
981
|
+
>(
|
|
982
|
+
githubWebhookEventSchema<GitHubDeploymentStatusProviderEvent>(
|
|
983
|
+
"deployment_status",
|
|
984
|
+
),
|
|
985
|
+
(event) =>
|
|
986
|
+
[
|
|
987
|
+
"error",
|
|
988
|
+
"failure",
|
|
989
|
+
"inactive",
|
|
990
|
+
"in_progress",
|
|
991
|
+
"pending",
|
|
992
|
+
"queued",
|
|
993
|
+
"success",
|
|
994
|
+
].includes(event.deployment_status.state),
|
|
995
|
+
)
|
|
976
996
|
export const GITHUB_DEPLOYMENT_QUEUED_EVENT_SCHEMA: GitHubWebhookSchema<GitHubDeploymentQueuedEvent> =
|
|
977
997
|
githubSemanticEventSchema<
|
|
978
998
|
GitHubDeploymentStatusEvent,
|
|
@@ -4947,7 +4947,7 @@ export type components = {
|
|
|
4947
4947
|
created_at: string | null;
|
|
4948
4948
|
description: string | null;
|
|
4949
4949
|
/** @description The list of events for the GitHub app */
|
|
4950
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
4950
|
+
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")[];
|
|
4951
4951
|
/** Format: uri */
|
|
4952
4952
|
external_url: string | null;
|
|
4953
4953
|
/** Format: uri */
|
|
@@ -5189,7 +5189,7 @@ export type components = {
|
|
|
5189
5189
|
created_at: string | null;
|
|
5190
5190
|
description: string | null;
|
|
5191
5191
|
/** @description The list of events for the GitHub app */
|
|
5192
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
5192
|
+
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")[];
|
|
5193
5193
|
/** Format: uri */
|
|
5194
5194
|
external_url: string | null;
|
|
5195
5195
|
/** Format: uri */
|
|
@@ -5445,7 +5445,7 @@ export type components = {
|
|
|
5445
5445
|
created_at: string | null;
|
|
5446
5446
|
description: string | null;
|
|
5447
5447
|
/** @description The list of events for the GitHub app */
|
|
5448
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
5448
|
+
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")[];
|
|
5449
5449
|
/** Format: uri */
|
|
5450
5450
|
external_url: string | null;
|
|
5451
5451
|
/** Format: uri */
|
|
@@ -5875,7 +5875,7 @@ export type components = {
|
|
|
5875
5875
|
created_at: string | null;
|
|
5876
5876
|
description: string | null;
|
|
5877
5877
|
/** @description The list of events for the GitHub app */
|
|
5878
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
5878
|
+
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")[];
|
|
5879
5879
|
/** Format: uri */
|
|
5880
5880
|
external_url: string | null;
|
|
5881
5881
|
/** Format: uri */
|
|
@@ -7382,7 +7382,7 @@ export type components = {
|
|
|
7382
7382
|
created_at: string | null;
|
|
7383
7383
|
description: string | null;
|
|
7384
7384
|
/** @description The list of events for the GitHub app */
|
|
7385
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
7385
|
+
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")[];
|
|
7386
7386
|
/** Format: uri */
|
|
7387
7387
|
external_url: string | null;
|
|
7388
7388
|
/** Format: uri */
|
|
@@ -7565,11 +7565,9 @@ export type components = {
|
|
|
7565
7565
|
/** @description The optional human-readable description added to the status. */
|
|
7566
7566
|
description: string;
|
|
7567
7567
|
environment: string;
|
|
7568
|
-
|
|
7569
|
-
environment_url?: string;
|
|
7568
|
+
environment_url?: string | "";
|
|
7570
7569
|
id: number;
|
|
7571
|
-
|
|
7572
|
-
log_url?: string;
|
|
7570
|
+
log_url?: string | "";
|
|
7573
7571
|
node_id: string;
|
|
7574
7572
|
/**
|
|
7575
7573
|
* App
|
|
@@ -7580,7 +7578,7 @@ export type components = {
|
|
|
7580
7578
|
created_at: string | null;
|
|
7581
7579
|
description: string | null;
|
|
7582
7580
|
/** @description The list of events for the GitHub app */
|
|
7583
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
7581
|
+
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")[];
|
|
7584
7582
|
/** Format: uri */
|
|
7585
7583
|
external_url: string | null;
|
|
7586
7584
|
/** Format: uri */
|
|
@@ -8582,7 +8580,7 @@ export type components = {
|
|
|
8582
8580
|
created_at: string | null;
|
|
8583
8581
|
description: string | null;
|
|
8584
8582
|
/** @description The list of events for the GitHub app */
|
|
8585
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
8583
|
+
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")[];
|
|
8586
8584
|
/** Format: uri */
|
|
8587
8585
|
external_url: string | null;
|
|
8588
8586
|
/** Format: uri */
|
|
@@ -9121,7 +9119,7 @@ export type components = {
|
|
|
9121
9119
|
created_at: string | null;
|
|
9122
9120
|
description: string | null;
|
|
9123
9121
|
/** @description The list of events for the GitHub app */
|
|
9124
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
9122
|
+
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")[];
|
|
9125
9123
|
/** Format: uri */
|
|
9126
9124
|
external_url: string | null;
|
|
9127
9125
|
/** Format: uri */
|
|
@@ -9662,7 +9660,7 @@ export type components = {
|
|
|
9662
9660
|
created_at: string | null;
|
|
9663
9661
|
description: string | null;
|
|
9664
9662
|
/** @description The list of events for the GitHub app */
|
|
9665
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
9663
|
+
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")[];
|
|
9666
9664
|
/** Format: uri */
|
|
9667
9665
|
external_url: string | null;
|
|
9668
9666
|
/** Format: uri */
|
|
@@ -10201,7 +10199,7 @@ export type components = {
|
|
|
10201
10199
|
created_at: string | null;
|
|
10202
10200
|
description: string | null;
|
|
10203
10201
|
/** @description The list of events for the GitHub app */
|
|
10204
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
10202
|
+
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")[];
|
|
10205
10203
|
/** Format: uri */
|
|
10206
10204
|
external_url: string | null;
|
|
10207
10205
|
/** Format: uri */
|
|
@@ -10743,7 +10741,7 @@ export type components = {
|
|
|
10743
10741
|
created_at: string | null;
|
|
10744
10742
|
description: string | null;
|
|
10745
10743
|
/** @description The list of events for the GitHub app */
|
|
10746
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
10744
|
+
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")[];
|
|
10747
10745
|
/** Format: uri */
|
|
10748
10746
|
external_url: string | null;
|
|
10749
10747
|
/** Format: uri */
|
|
@@ -11367,7 +11365,7 @@ export type components = {
|
|
|
11367
11365
|
created_at: string | null;
|
|
11368
11366
|
description: string | null;
|
|
11369
11367
|
/** @description The list of events for the GitHub app */
|
|
11370
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
11368
|
+
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")[];
|
|
11371
11369
|
/** Format: uri */
|
|
11372
11370
|
external_url: string | null;
|
|
11373
11371
|
/** Format: uri */
|
|
@@ -11857,7 +11855,7 @@ export type components = {
|
|
|
11857
11855
|
created_at: string | null;
|
|
11858
11856
|
description: string | null;
|
|
11859
11857
|
/** @description The list of events for the GitHub app */
|
|
11860
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
11858
|
+
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")[];
|
|
11861
11859
|
/** Format: uri */
|
|
11862
11860
|
external_url: string | null;
|
|
11863
11861
|
/** Format: uri */
|
|
@@ -12284,7 +12282,7 @@ export type components = {
|
|
|
12284
12282
|
created_at: string | null;
|
|
12285
12283
|
description: string | null;
|
|
12286
12284
|
/** @description The list of events for the GitHub app */
|
|
12287
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
12285
|
+
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")[];
|
|
12288
12286
|
/** Format: uri */
|
|
12289
12287
|
external_url: string | null;
|
|
12290
12288
|
/** Format: uri */
|
|
@@ -12724,7 +12722,7 @@ export type components = {
|
|
|
12724
12722
|
created_at: string | null;
|
|
12725
12723
|
description: string | null;
|
|
12726
12724
|
/** @description The list of events for the GitHub app */
|
|
12727
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
12725
|
+
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")[];
|
|
12728
12726
|
/** Format: uri */
|
|
12729
12727
|
external_url: string | null;
|
|
12730
12728
|
/** Format: uri */
|
|
@@ -13280,7 +13278,7 @@ export type components = {
|
|
|
13280
13278
|
created_at: string | null;
|
|
13281
13279
|
description: string | null;
|
|
13282
13280
|
/** @description The list of events for the GitHub app */
|
|
13283
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
13281
|
+
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")[];
|
|
13284
13282
|
/** Format: uri */
|
|
13285
13283
|
external_url: string | null;
|
|
13286
13284
|
/** Format: uri */
|
|
@@ -13711,7 +13709,7 @@ export type components = {
|
|
|
13711
13709
|
created_at: string | null;
|
|
13712
13710
|
description: string | null;
|
|
13713
13711
|
/** @description The list of events for the GitHub app */
|
|
13714
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
13712
|
+
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")[];
|
|
13715
13713
|
/** Format: uri */
|
|
13716
13714
|
external_url: string | null;
|
|
13717
13715
|
/** Format: uri */
|
|
@@ -14138,7 +14136,7 @@ export type components = {
|
|
|
14138
14136
|
created_at: string | null;
|
|
14139
14137
|
description: string | null;
|
|
14140
14138
|
/** @description The list of events for the GitHub app */
|
|
14141
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
14139
|
+
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")[];
|
|
14142
14140
|
/** Format: uri */
|
|
14143
14141
|
external_url: string | null;
|
|
14144
14142
|
/** Format: uri */
|
|
@@ -14567,7 +14565,7 @@ export type components = {
|
|
|
14567
14565
|
created_at: string | null;
|
|
14568
14566
|
description: string | null;
|
|
14569
14567
|
/** @description The list of events for the GitHub app */
|
|
14570
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
14568
|
+
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")[];
|
|
14571
14569
|
/** Format: uri */
|
|
14572
14570
|
external_url: string | null;
|
|
14573
14571
|
/** Format: uri */
|
|
@@ -15246,7 +15244,7 @@ export type components = {
|
|
|
15246
15244
|
created_at: string | null;
|
|
15247
15245
|
description: string | null;
|
|
15248
15246
|
/** @description The list of events for the GitHub app */
|
|
15249
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
15247
|
+
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")[];
|
|
15250
15248
|
/** Format: uri */
|
|
15251
15249
|
external_url: string | null;
|
|
15252
15250
|
/** Format: uri */
|
|
@@ -15684,7 +15682,7 @@ export type components = {
|
|
|
15684
15682
|
created_at: string | null;
|
|
15685
15683
|
description: string | null;
|
|
15686
15684
|
/** @description The list of events for the GitHub app */
|
|
15687
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
15685
|
+
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")[];
|
|
15688
15686
|
/** Format: uri */
|
|
15689
15687
|
external_url: string | null;
|
|
15690
15688
|
/** Format: uri */
|
|
@@ -16112,7 +16110,7 @@ export type components = {
|
|
|
16112
16110
|
created_at: string | null;
|
|
16113
16111
|
description: string | null;
|
|
16114
16112
|
/** @description The list of events for the GitHub app */
|
|
16115
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
16113
|
+
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")[];
|
|
16116
16114
|
/** Format: uri */
|
|
16117
16115
|
external_url: string | null;
|
|
16118
16116
|
/** Format: uri */
|
|
@@ -16845,7 +16843,7 @@ export type components = {
|
|
|
16845
16843
|
created_at: string | null;
|
|
16846
16844
|
description: string | null;
|
|
16847
16845
|
/** @description The list of events for the GitHub app */
|
|
16848
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
16846
|
+
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")[];
|
|
16849
16847
|
/** Format: uri */
|
|
16850
16848
|
external_url: string | null;
|
|
16851
16849
|
/** Format: uri */
|
|
@@ -49414,7 +49412,7 @@ export type components = {
|
|
|
49414
49412
|
created_at: string | null;
|
|
49415
49413
|
description: string | null;
|
|
49416
49414
|
/** @description The list of events for the GitHub app */
|
|
49417
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
49415
|
+
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")[];
|
|
49418
49416
|
/** Format: uri */
|
|
49419
49417
|
external_url: string | null;
|
|
49420
49418
|
/** Format: uri */
|
|
@@ -49833,7 +49831,7 @@ export type components = {
|
|
|
49833
49831
|
created_at: string | null;
|
|
49834
49832
|
description: string | null;
|
|
49835
49833
|
/** @description The list of events for the GitHub app */
|
|
49836
|
-
events?: ("branch_protection_rule" | "check_run" | "check_suite" | "code_scanning_alert" | "commit_comment" | "content_reference" | "create" | "delete" | "deployment" | "
|
|
49834
|
+
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")[];
|
|
49837
49835
|
/** Format: uri */
|
|
49838
49836
|
external_url: string | null;
|
|
49839
49837
|
/** Format: uri */
|