@automate.ax/integration-contracts 0.87.7 → 0.88.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/close/api.d.ts +54 -0
- package/dist/close/api.js +191 -0
- package/dist/close/events.d.ts +3216 -0
- package/dist/close/events.js +575 -0
- package/dist/close/index.d.ts +3 -0
- package/dist/close/index.js +3 -0
- package/dist/close/schemas.d.ts +1900 -0
- package/dist/close/schemas.js +950 -0
- package/dist/github/resources.d.ts +242 -242
- package/dist/google-calendar/schemas.d.ts +3 -3
- package/dist/google-forms/event-schemas.d.ts +4 -4
- package/dist/google-forms/google-forms.d.ts +4 -4
- package/dist/google-forms/index.d.ts +4 -4
- package/dist/google-forms/schemas.d.ts +14 -14
- package/dist/linear/schemas.d.ts +24 -24
- package/dist/triggers.d.ts +2 -1
- package/dist/whatsapp/index.d.ts +6 -6
- package/dist/whatsapp/schemas.d.ts +11 -11
- package/package.json +8 -2
- package/src/close/api.ts +240 -0
- package/src/close/events.ts +755 -0
- package/src/close/index.ts +3 -0
- package/src/close/schemas.ts +995 -0
- package/src/triggers.ts +2 -0
|
@@ -308,22 +308,6 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
308
308
|
html: string | null;
|
|
309
309
|
self: string;
|
|
310
310
|
};
|
|
311
|
-
}[] & File) | ({
|
|
312
|
-
type: "dir" | "file" | "submodule" | "symlink";
|
|
313
|
-
size: number;
|
|
314
|
-
name: string;
|
|
315
|
-
path: string;
|
|
316
|
-
content?: string;
|
|
317
|
-
sha: string;
|
|
318
|
-
url: string;
|
|
319
|
-
git_url: string | null;
|
|
320
|
-
html_url: string | null;
|
|
321
|
-
download_url: string | null;
|
|
322
|
-
_links: {
|
|
323
|
-
git: string | null;
|
|
324
|
-
html: string | null;
|
|
325
|
-
self: string;
|
|
326
|
-
};
|
|
327
311
|
}[] & Uint8Array<ArrayBufferLike>) | ({
|
|
328
312
|
type: "dir" | "file" | "submodule" | "symlink";
|
|
329
313
|
size: number;
|
|
@@ -583,6 +567,22 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
583
567
|
self: string;
|
|
584
568
|
};
|
|
585
569
|
}[] & DataView<ArrayBufferLike>) | ({
|
|
570
|
+
type: "dir" | "file" | "submodule" | "symlink";
|
|
571
|
+
size: number;
|
|
572
|
+
name: string;
|
|
573
|
+
path: string;
|
|
574
|
+
content?: string;
|
|
575
|
+
sha: string;
|
|
576
|
+
url: string;
|
|
577
|
+
git_url: string | null;
|
|
578
|
+
html_url: string | null;
|
|
579
|
+
download_url: string | null;
|
|
580
|
+
_links: {
|
|
581
|
+
git: string | null;
|
|
582
|
+
html: string | null;
|
|
583
|
+
self: string;
|
|
584
|
+
};
|
|
585
|
+
}[] & File) | ({
|
|
586
586
|
type: "file";
|
|
587
587
|
encoding: string;
|
|
588
588
|
size: number;
|
|
@@ -867,25 +867,6 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
867
867
|
};
|
|
868
868
|
target?: string;
|
|
869
869
|
submodule_git_url?: string;
|
|
870
|
-
} & File) | ({
|
|
871
|
-
type: "file";
|
|
872
|
-
encoding: string;
|
|
873
|
-
size: number;
|
|
874
|
-
name: string;
|
|
875
|
-
path: string;
|
|
876
|
-
content: string;
|
|
877
|
-
sha: string;
|
|
878
|
-
url: string;
|
|
879
|
-
git_url: string | null;
|
|
880
|
-
html_url: string | null;
|
|
881
|
-
download_url: string | null;
|
|
882
|
-
_links: {
|
|
883
|
-
git: string | null;
|
|
884
|
-
html: string | null;
|
|
885
|
-
self: string;
|
|
886
|
-
};
|
|
887
|
-
target?: string;
|
|
888
|
-
submodule_git_url?: string;
|
|
889
870
|
} & Uint8Array<ArrayBufferLike>) | ({
|
|
890
871
|
type: "file";
|
|
891
872
|
encoding: string;
|
|
@@ -1193,6 +1174,25 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
1193
1174
|
target?: string;
|
|
1194
1175
|
submodule_git_url?: string;
|
|
1195
1176
|
} & DataView<ArrayBufferLike>) | ({
|
|
1177
|
+
type: "file";
|
|
1178
|
+
encoding: string;
|
|
1179
|
+
size: number;
|
|
1180
|
+
name: string;
|
|
1181
|
+
path: string;
|
|
1182
|
+
content: string;
|
|
1183
|
+
sha: string;
|
|
1184
|
+
url: string;
|
|
1185
|
+
git_url: string | null;
|
|
1186
|
+
html_url: string | null;
|
|
1187
|
+
download_url: string | null;
|
|
1188
|
+
_links: {
|
|
1189
|
+
git: string | null;
|
|
1190
|
+
html: string | null;
|
|
1191
|
+
self: string;
|
|
1192
|
+
};
|
|
1193
|
+
target?: string;
|
|
1194
|
+
submodule_git_url?: string;
|
|
1195
|
+
} & File) | ({
|
|
1196
1196
|
type: "symlink";
|
|
1197
1197
|
target: string;
|
|
1198
1198
|
size: number;
|
|
@@ -1432,22 +1432,6 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
1432
1432
|
html: string | null;
|
|
1433
1433
|
self: string;
|
|
1434
1434
|
};
|
|
1435
|
-
} & File) | ({
|
|
1436
|
-
type: "symlink";
|
|
1437
|
-
target: string;
|
|
1438
|
-
size: number;
|
|
1439
|
-
name: string;
|
|
1440
|
-
path: string;
|
|
1441
|
-
sha: string;
|
|
1442
|
-
url: string;
|
|
1443
|
-
git_url: string | null;
|
|
1444
|
-
html_url: string | null;
|
|
1445
|
-
download_url: string | null;
|
|
1446
|
-
_links: {
|
|
1447
|
-
git: string | null;
|
|
1448
|
-
html: string | null;
|
|
1449
|
-
self: string;
|
|
1450
|
-
};
|
|
1451
1435
|
} & Uint8Array<ArrayBufferLike>) | ({
|
|
1452
1436
|
type: "symlink";
|
|
1453
1437
|
target: string;
|
|
@@ -1707,6 +1691,22 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
1707
1691
|
self: string;
|
|
1708
1692
|
};
|
|
1709
1693
|
} & DataView<ArrayBufferLike>) | ({
|
|
1694
|
+
type: "symlink";
|
|
1695
|
+
target: string;
|
|
1696
|
+
size: number;
|
|
1697
|
+
name: string;
|
|
1698
|
+
path: string;
|
|
1699
|
+
sha: string;
|
|
1700
|
+
url: string;
|
|
1701
|
+
git_url: string | null;
|
|
1702
|
+
html_url: string | null;
|
|
1703
|
+
download_url: string | null;
|
|
1704
|
+
_links: {
|
|
1705
|
+
git: string | null;
|
|
1706
|
+
html: string | null;
|
|
1707
|
+
self: string;
|
|
1708
|
+
};
|
|
1709
|
+
} & File) | ({
|
|
1710
1710
|
type: "submodule";
|
|
1711
1711
|
submodule_git_url: string;
|
|
1712
1712
|
size: number;
|
|
@@ -1946,22 +1946,6 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
1946
1946
|
html: string | null;
|
|
1947
1947
|
self: string;
|
|
1948
1948
|
};
|
|
1949
|
-
} & File) | ({
|
|
1950
|
-
type: "submodule";
|
|
1951
|
-
submodule_git_url: string;
|
|
1952
|
-
size: number;
|
|
1953
|
-
name: string;
|
|
1954
|
-
path: string;
|
|
1955
|
-
sha: string;
|
|
1956
|
-
url: string;
|
|
1957
|
-
git_url: string | null;
|
|
1958
|
-
html_url: string | null;
|
|
1959
|
-
download_url: string | null;
|
|
1960
|
-
_links: {
|
|
1961
|
-
git: string | null;
|
|
1962
|
-
html: string | null;
|
|
1963
|
-
self: string;
|
|
1964
|
-
};
|
|
1965
1949
|
} & Uint8Array<ArrayBufferLike>) | ({
|
|
1966
1950
|
type: "submodule";
|
|
1967
1951
|
submodule_git_url: string;
|
|
@@ -2220,7 +2204,23 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
2220
2204
|
html: string | null;
|
|
2221
2205
|
self: string;
|
|
2222
2206
|
};
|
|
2223
|
-
} & DataView<ArrayBufferLike>)
|
|
2207
|
+
} & DataView<ArrayBufferLike>) | ({
|
|
2208
|
+
type: "submodule";
|
|
2209
|
+
submodule_git_url: string;
|
|
2210
|
+
size: number;
|
|
2211
|
+
name: string;
|
|
2212
|
+
path: string;
|
|
2213
|
+
sha: string;
|
|
2214
|
+
url: string;
|
|
2215
|
+
git_url: string | null;
|
|
2216
|
+
html_url: string | null;
|
|
2217
|
+
download_url: string | null;
|
|
2218
|
+
_links: {
|
|
2219
|
+
git: string | null;
|
|
2220
|
+
html: string | null;
|
|
2221
|
+
self: string;
|
|
2222
|
+
};
|
|
2223
|
+
} & File), unknown, z.core.$ZodTypeInternals<({
|
|
2224
2224
|
type: "dir" | "file" | "submodule" | "symlink";
|
|
2225
2225
|
size: number;
|
|
2226
2226
|
name: string;
|
|
@@ -2476,22 +2476,6 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
2476
2476
|
html: string | null;
|
|
2477
2477
|
self: string;
|
|
2478
2478
|
};
|
|
2479
|
-
}[] & File) | ({
|
|
2480
|
-
type: "dir" | "file" | "submodule" | "symlink";
|
|
2481
|
-
size: number;
|
|
2482
|
-
name: string;
|
|
2483
|
-
path: string;
|
|
2484
|
-
content?: string;
|
|
2485
|
-
sha: string;
|
|
2486
|
-
url: string;
|
|
2487
|
-
git_url: string | null;
|
|
2488
|
-
html_url: string | null;
|
|
2489
|
-
download_url: string | null;
|
|
2490
|
-
_links: {
|
|
2491
|
-
git: string | null;
|
|
2492
|
-
html: string | null;
|
|
2493
|
-
self: string;
|
|
2494
|
-
};
|
|
2495
2479
|
}[] & Uint8Array<ArrayBufferLike>) | ({
|
|
2496
2480
|
type: "dir" | "file" | "submodule" | "symlink";
|
|
2497
2481
|
size: number;
|
|
@@ -2751,6 +2735,22 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
2751
2735
|
self: string;
|
|
2752
2736
|
};
|
|
2753
2737
|
}[] & DataView<ArrayBufferLike>) | ({
|
|
2738
|
+
type: "dir" | "file" | "submodule" | "symlink";
|
|
2739
|
+
size: number;
|
|
2740
|
+
name: string;
|
|
2741
|
+
path: string;
|
|
2742
|
+
content?: string;
|
|
2743
|
+
sha: string;
|
|
2744
|
+
url: string;
|
|
2745
|
+
git_url: string | null;
|
|
2746
|
+
html_url: string | null;
|
|
2747
|
+
download_url: string | null;
|
|
2748
|
+
_links: {
|
|
2749
|
+
git: string | null;
|
|
2750
|
+
html: string | null;
|
|
2751
|
+
self: string;
|
|
2752
|
+
};
|
|
2753
|
+
}[] & File) | ({
|
|
2754
2754
|
type: "file";
|
|
2755
2755
|
encoding: string;
|
|
2756
2756
|
size: number;
|
|
@@ -3035,25 +3035,6 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
3035
3035
|
};
|
|
3036
3036
|
target?: string;
|
|
3037
3037
|
submodule_git_url?: string;
|
|
3038
|
-
} & File) | ({
|
|
3039
|
-
type: "file";
|
|
3040
|
-
encoding: string;
|
|
3041
|
-
size: number;
|
|
3042
|
-
name: string;
|
|
3043
|
-
path: string;
|
|
3044
|
-
content: string;
|
|
3045
|
-
sha: string;
|
|
3046
|
-
url: string;
|
|
3047
|
-
git_url: string | null;
|
|
3048
|
-
html_url: string | null;
|
|
3049
|
-
download_url: string | null;
|
|
3050
|
-
_links: {
|
|
3051
|
-
git: string | null;
|
|
3052
|
-
html: string | null;
|
|
3053
|
-
self: string;
|
|
3054
|
-
};
|
|
3055
|
-
target?: string;
|
|
3056
|
-
submodule_git_url?: string;
|
|
3057
3038
|
} & Uint8Array<ArrayBufferLike>) | ({
|
|
3058
3039
|
type: "file";
|
|
3059
3040
|
encoding: string;
|
|
@@ -3361,6 +3342,25 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
3361
3342
|
target?: string;
|
|
3362
3343
|
submodule_git_url?: string;
|
|
3363
3344
|
} & DataView<ArrayBufferLike>) | ({
|
|
3345
|
+
type: "file";
|
|
3346
|
+
encoding: string;
|
|
3347
|
+
size: number;
|
|
3348
|
+
name: string;
|
|
3349
|
+
path: string;
|
|
3350
|
+
content: string;
|
|
3351
|
+
sha: string;
|
|
3352
|
+
url: string;
|
|
3353
|
+
git_url: string | null;
|
|
3354
|
+
html_url: string | null;
|
|
3355
|
+
download_url: string | null;
|
|
3356
|
+
_links: {
|
|
3357
|
+
git: string | null;
|
|
3358
|
+
html: string | null;
|
|
3359
|
+
self: string;
|
|
3360
|
+
};
|
|
3361
|
+
target?: string;
|
|
3362
|
+
submodule_git_url?: string;
|
|
3363
|
+
} & File) | ({
|
|
3364
3364
|
type: "symlink";
|
|
3365
3365
|
target: string;
|
|
3366
3366
|
size: number;
|
|
@@ -3600,22 +3600,6 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
3600
3600
|
html: string | null;
|
|
3601
3601
|
self: string;
|
|
3602
3602
|
};
|
|
3603
|
-
} & File) | ({
|
|
3604
|
-
type: "symlink";
|
|
3605
|
-
target: string;
|
|
3606
|
-
size: number;
|
|
3607
|
-
name: string;
|
|
3608
|
-
path: string;
|
|
3609
|
-
sha: string;
|
|
3610
|
-
url: string;
|
|
3611
|
-
git_url: string | null;
|
|
3612
|
-
html_url: string | null;
|
|
3613
|
-
download_url: string | null;
|
|
3614
|
-
_links: {
|
|
3615
|
-
git: string | null;
|
|
3616
|
-
html: string | null;
|
|
3617
|
-
self: string;
|
|
3618
|
-
};
|
|
3619
3603
|
} & Uint8Array<ArrayBufferLike>) | ({
|
|
3620
3604
|
type: "symlink";
|
|
3621
3605
|
target: string;
|
|
@@ -3875,6 +3859,22 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
3875
3859
|
self: string;
|
|
3876
3860
|
};
|
|
3877
3861
|
} & DataView<ArrayBufferLike>) | ({
|
|
3862
|
+
type: "symlink";
|
|
3863
|
+
target: string;
|
|
3864
|
+
size: number;
|
|
3865
|
+
name: string;
|
|
3866
|
+
path: string;
|
|
3867
|
+
sha: string;
|
|
3868
|
+
url: string;
|
|
3869
|
+
git_url: string | null;
|
|
3870
|
+
html_url: string | null;
|
|
3871
|
+
download_url: string | null;
|
|
3872
|
+
_links: {
|
|
3873
|
+
git: string | null;
|
|
3874
|
+
html: string | null;
|
|
3875
|
+
self: string;
|
|
3876
|
+
};
|
|
3877
|
+
} & File) | ({
|
|
3878
3878
|
type: "submodule";
|
|
3879
3879
|
submodule_git_url: string;
|
|
3880
3880
|
size: number;
|
|
@@ -4114,22 +4114,6 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
4114
4114
|
html: string | null;
|
|
4115
4115
|
self: string;
|
|
4116
4116
|
};
|
|
4117
|
-
} & File) | ({
|
|
4118
|
-
type: "submodule";
|
|
4119
|
-
submodule_git_url: string;
|
|
4120
|
-
size: number;
|
|
4121
|
-
name: string;
|
|
4122
|
-
path: string;
|
|
4123
|
-
sha: string;
|
|
4124
|
-
url: string;
|
|
4125
|
-
git_url: string | null;
|
|
4126
|
-
html_url: string | null;
|
|
4127
|
-
download_url: string | null;
|
|
4128
|
-
_links: {
|
|
4129
|
-
git: string | null;
|
|
4130
|
-
html: string | null;
|
|
4131
|
-
self: string;
|
|
4132
|
-
};
|
|
4133
4117
|
} & Uint8Array<ArrayBufferLike>) | ({
|
|
4134
4118
|
type: "submodule";
|
|
4135
4119
|
submodule_git_url: string;
|
|
@@ -4388,7 +4372,23 @@ export declare const GITHUB_REPOSITORY_CONTENT_SCHEMA: z.ZodType<({
|
|
|
4388
4372
|
html: string | null;
|
|
4389
4373
|
self: string;
|
|
4390
4374
|
};
|
|
4391
|
-
} & DataView<ArrayBufferLike>)
|
|
4375
|
+
} & DataView<ArrayBufferLike>) | ({
|
|
4376
|
+
type: "submodule";
|
|
4377
|
+
submodule_git_url: string;
|
|
4378
|
+
size: number;
|
|
4379
|
+
name: string;
|
|
4380
|
+
path: string;
|
|
4381
|
+
sha: string;
|
|
4382
|
+
url: string;
|
|
4383
|
+
git_url: string | null;
|
|
4384
|
+
html_url: string | null;
|
|
4385
|
+
download_url: string | null;
|
|
4386
|
+
_links: {
|
|
4387
|
+
git: string | null;
|
|
4388
|
+
html: string | null;
|
|
4389
|
+
self: string;
|
|
4390
|
+
};
|
|
4391
|
+
} & File), unknown>>;
|
|
4392
4392
|
export declare const GITHUB_REPOSITORY_FILE_COMMIT_SCHEMA: z.ZodType<GitHubRepositoryFileCommit, unknown, z.core.$ZodTypeInternals<GitHubRepositoryFileCommit, unknown>>;
|
|
4393
4393
|
export declare const GITHUB_REPOSITORY_FILE_DELETION_SCHEMA: z.ZodType<GitHubRepositoryFileDeletion, unknown, z.core.$ZodTypeInternals<GitHubRepositoryFileDeletion, unknown>>;
|
|
4394
4394
|
export declare const GITHUB_BRANCH_SCHEMA: z.ZodType<GitHubBranch, unknown, z.core.$ZodTypeInternals<GitHubBranch, unknown>>;
|
|
@@ -4861,7 +4861,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
4861
4861
|
runner_group_name: string | null;
|
|
4862
4862
|
workflow_name: string | null;
|
|
4863
4863
|
head_branch: string | null;
|
|
4864
|
-
} &
|
|
4864
|
+
} & Uint8Array<ArrayBufferLike>) | ({
|
|
4865
4865
|
id: number;
|
|
4866
4866
|
run_id: number;
|
|
4867
4867
|
run_url: string;
|
|
@@ -4892,7 +4892,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
4892
4892
|
runner_group_name: string | null;
|
|
4893
4893
|
workflow_name: string | null;
|
|
4894
4894
|
head_branch: string | null;
|
|
4895
|
-
} &
|
|
4895
|
+
} & Uint8ClampedArray<ArrayBufferLike>) | ({
|
|
4896
4896
|
id: number;
|
|
4897
4897
|
run_id: number;
|
|
4898
4898
|
run_url: string;
|
|
@@ -4923,7 +4923,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
4923
4923
|
runner_group_name: string | null;
|
|
4924
4924
|
workflow_name: string | null;
|
|
4925
4925
|
head_branch: string | null;
|
|
4926
|
-
} &
|
|
4926
|
+
} & Int8Array<ArrayBufferLike>) | ({
|
|
4927
4927
|
id: number;
|
|
4928
4928
|
run_id: number;
|
|
4929
4929
|
run_url: string;
|
|
@@ -4954,7 +4954,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
4954
4954
|
runner_group_name: string | null;
|
|
4955
4955
|
workflow_name: string | null;
|
|
4956
4956
|
head_branch: string | null;
|
|
4957
|
-
} &
|
|
4957
|
+
} & Uint16Array<ArrayBufferLike>) | ({
|
|
4958
4958
|
id: number;
|
|
4959
4959
|
run_id: number;
|
|
4960
4960
|
run_url: string;
|
|
@@ -4985,7 +4985,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
4985
4985
|
runner_group_name: string | null;
|
|
4986
4986
|
workflow_name: string | null;
|
|
4987
4987
|
head_branch: string | null;
|
|
4988
|
-
} &
|
|
4988
|
+
} & Int16Array<ArrayBufferLike>) | ({
|
|
4989
4989
|
id: number;
|
|
4990
4990
|
run_id: number;
|
|
4991
4991
|
run_url: string;
|
|
@@ -5016,7 +5016,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5016
5016
|
runner_group_name: string | null;
|
|
5017
5017
|
workflow_name: string | null;
|
|
5018
5018
|
head_branch: string | null;
|
|
5019
|
-
} &
|
|
5019
|
+
} & Uint32Array<ArrayBufferLike>) | ({
|
|
5020
5020
|
id: number;
|
|
5021
5021
|
run_id: number;
|
|
5022
5022
|
run_url: string;
|
|
@@ -5047,7 +5047,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5047
5047
|
runner_group_name: string | null;
|
|
5048
5048
|
workflow_name: string | null;
|
|
5049
5049
|
head_branch: string | null;
|
|
5050
|
-
} &
|
|
5050
|
+
} & Int32Array<ArrayBufferLike>) | ({
|
|
5051
5051
|
id: number;
|
|
5052
5052
|
run_id: number;
|
|
5053
5053
|
run_url: string;
|
|
@@ -5078,7 +5078,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5078
5078
|
runner_group_name: string | null;
|
|
5079
5079
|
workflow_name: string | null;
|
|
5080
5080
|
head_branch: string | null;
|
|
5081
|
-
} &
|
|
5081
|
+
} & Float32Array<ArrayBufferLike>) | ({
|
|
5082
5082
|
id: number;
|
|
5083
5083
|
run_id: number;
|
|
5084
5084
|
run_url: string;
|
|
@@ -5109,7 +5109,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5109
5109
|
runner_group_name: string | null;
|
|
5110
5110
|
workflow_name: string | null;
|
|
5111
5111
|
head_branch: string | null;
|
|
5112
|
-
} &
|
|
5112
|
+
} & Float64Array<ArrayBufferLike>) | ({
|
|
5113
5113
|
id: number;
|
|
5114
5114
|
run_id: number;
|
|
5115
5115
|
run_url: string;
|
|
@@ -5140,7 +5140,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5140
5140
|
runner_group_name: string | null;
|
|
5141
5141
|
workflow_name: string | null;
|
|
5142
5142
|
head_branch: string | null;
|
|
5143
|
-
} &
|
|
5143
|
+
} & BigUint64Array<ArrayBufferLike>) | ({
|
|
5144
5144
|
id: number;
|
|
5145
5145
|
run_id: number;
|
|
5146
5146
|
run_url: string;
|
|
@@ -5171,7 +5171,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5171
5171
|
runner_group_name: string | null;
|
|
5172
5172
|
workflow_name: string | null;
|
|
5173
5173
|
head_branch: string | null;
|
|
5174
|
-
} &
|
|
5174
|
+
} & BigInt64Array<ArrayBufferLike>) | ({
|
|
5175
5175
|
id: number;
|
|
5176
5176
|
run_id: number;
|
|
5177
5177
|
run_url: string;
|
|
@@ -5202,7 +5202,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5202
5202
|
runner_group_name: string | null;
|
|
5203
5203
|
workflow_name: string | null;
|
|
5204
5204
|
head_branch: string | null;
|
|
5205
|
-
} &
|
|
5205
|
+
} & Encodable[]) | ({
|
|
5206
5206
|
id: number;
|
|
5207
5207
|
run_id: number;
|
|
5208
5208
|
run_url: string;
|
|
@@ -5233,7 +5233,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5233
5233
|
runner_group_name: string | null;
|
|
5234
5234
|
workflow_name: string | null;
|
|
5235
5235
|
head_branch: string | null;
|
|
5236
|
-
} & Encodable[]) | ({
|
|
5236
|
+
} & readonly Encodable[]) | ({
|
|
5237
5237
|
id: number;
|
|
5238
5238
|
run_id: number;
|
|
5239
5239
|
run_url: string;
|
|
@@ -5264,7 +5264,9 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5264
5264
|
runner_group_name: string | null;
|
|
5265
5265
|
workflow_name: string | null;
|
|
5266
5266
|
head_branch: string | null;
|
|
5267
|
-
} &
|
|
5267
|
+
} & {
|
|
5268
|
+
readonly [key: string]: Encodable;
|
|
5269
|
+
}) | ({
|
|
5268
5270
|
id: number;
|
|
5269
5271
|
run_id: number;
|
|
5270
5272
|
run_url: string;
|
|
@@ -5295,9 +5297,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5295
5297
|
runner_group_name: string | null;
|
|
5296
5298
|
workflow_name: string | null;
|
|
5297
5299
|
head_branch: string | null;
|
|
5298
|
-
} & {
|
|
5299
|
-
readonly [key: string]: Encodable;
|
|
5300
|
-
}) | ({
|
|
5300
|
+
} & Map<Encodable, Encodable>) | ({
|
|
5301
5301
|
id: number;
|
|
5302
5302
|
run_id: number;
|
|
5303
5303
|
run_url: string;
|
|
@@ -5328,7 +5328,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5328
5328
|
runner_group_name: string | null;
|
|
5329
5329
|
workflow_name: string | null;
|
|
5330
5330
|
head_branch: string | null;
|
|
5331
|
-
} &
|
|
5331
|
+
} & Set<Encodable>) | ({
|
|
5332
5332
|
id: number;
|
|
5333
5333
|
run_id: number;
|
|
5334
5334
|
run_url: string;
|
|
@@ -5359,7 +5359,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5359
5359
|
runner_group_name: string | null;
|
|
5360
5360
|
workflow_name: string | null;
|
|
5361
5361
|
head_branch: string | null;
|
|
5362
|
-
} &
|
|
5362
|
+
} & DataView<ArrayBufferLike>) | ({
|
|
5363
5363
|
id: number;
|
|
5364
5364
|
run_id: number;
|
|
5365
5365
|
run_url: string;
|
|
@@ -5390,7 +5390,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5390
5390
|
runner_group_name: string | null;
|
|
5391
5391
|
workflow_name: string | null;
|
|
5392
5392
|
head_branch: string | null;
|
|
5393
|
-
} &
|
|
5393
|
+
} & File), unknown, z.core.$ZodTypeInternals<({
|
|
5394
5394
|
id: number;
|
|
5395
5395
|
run_id: number;
|
|
5396
5396
|
run_url: string;
|
|
@@ -5855,7 +5855,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5855
5855
|
runner_group_name: string | null;
|
|
5856
5856
|
workflow_name: string | null;
|
|
5857
5857
|
head_branch: string | null;
|
|
5858
|
-
} &
|
|
5858
|
+
} & Uint8Array<ArrayBufferLike>) | ({
|
|
5859
5859
|
id: number;
|
|
5860
5860
|
run_id: number;
|
|
5861
5861
|
run_url: string;
|
|
@@ -5886,7 +5886,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5886
5886
|
runner_group_name: string | null;
|
|
5887
5887
|
workflow_name: string | null;
|
|
5888
5888
|
head_branch: string | null;
|
|
5889
|
-
} &
|
|
5889
|
+
} & Uint8ClampedArray<ArrayBufferLike>) | ({
|
|
5890
5890
|
id: number;
|
|
5891
5891
|
run_id: number;
|
|
5892
5892
|
run_url: string;
|
|
@@ -5917,7 +5917,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5917
5917
|
runner_group_name: string | null;
|
|
5918
5918
|
workflow_name: string | null;
|
|
5919
5919
|
head_branch: string | null;
|
|
5920
|
-
} &
|
|
5920
|
+
} & Int8Array<ArrayBufferLike>) | ({
|
|
5921
5921
|
id: number;
|
|
5922
5922
|
run_id: number;
|
|
5923
5923
|
run_url: string;
|
|
@@ -5948,7 +5948,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5948
5948
|
runner_group_name: string | null;
|
|
5949
5949
|
workflow_name: string | null;
|
|
5950
5950
|
head_branch: string | null;
|
|
5951
|
-
} &
|
|
5951
|
+
} & Uint16Array<ArrayBufferLike>) | ({
|
|
5952
5952
|
id: number;
|
|
5953
5953
|
run_id: number;
|
|
5954
5954
|
run_url: string;
|
|
@@ -5979,7 +5979,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
5979
5979
|
runner_group_name: string | null;
|
|
5980
5980
|
workflow_name: string | null;
|
|
5981
5981
|
head_branch: string | null;
|
|
5982
|
-
} &
|
|
5982
|
+
} & Int16Array<ArrayBufferLike>) | ({
|
|
5983
5983
|
id: number;
|
|
5984
5984
|
run_id: number;
|
|
5985
5985
|
run_url: string;
|
|
@@ -6010,7 +6010,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6010
6010
|
runner_group_name: string | null;
|
|
6011
6011
|
workflow_name: string | null;
|
|
6012
6012
|
head_branch: string | null;
|
|
6013
|
-
} &
|
|
6013
|
+
} & Uint32Array<ArrayBufferLike>) | ({
|
|
6014
6014
|
id: number;
|
|
6015
6015
|
run_id: number;
|
|
6016
6016
|
run_url: string;
|
|
@@ -6041,7 +6041,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6041
6041
|
runner_group_name: string | null;
|
|
6042
6042
|
workflow_name: string | null;
|
|
6043
6043
|
head_branch: string | null;
|
|
6044
|
-
} &
|
|
6044
|
+
} & Int32Array<ArrayBufferLike>) | ({
|
|
6045
6045
|
id: number;
|
|
6046
6046
|
run_id: number;
|
|
6047
6047
|
run_url: string;
|
|
@@ -6072,7 +6072,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6072
6072
|
runner_group_name: string | null;
|
|
6073
6073
|
workflow_name: string | null;
|
|
6074
6074
|
head_branch: string | null;
|
|
6075
|
-
} &
|
|
6075
|
+
} & Float32Array<ArrayBufferLike>) | ({
|
|
6076
6076
|
id: number;
|
|
6077
6077
|
run_id: number;
|
|
6078
6078
|
run_url: string;
|
|
@@ -6103,7 +6103,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6103
6103
|
runner_group_name: string | null;
|
|
6104
6104
|
workflow_name: string | null;
|
|
6105
6105
|
head_branch: string | null;
|
|
6106
|
-
} &
|
|
6106
|
+
} & Float64Array<ArrayBufferLike>) | ({
|
|
6107
6107
|
id: number;
|
|
6108
6108
|
run_id: number;
|
|
6109
6109
|
run_url: string;
|
|
@@ -6134,7 +6134,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6134
6134
|
runner_group_name: string | null;
|
|
6135
6135
|
workflow_name: string | null;
|
|
6136
6136
|
head_branch: string | null;
|
|
6137
|
-
} &
|
|
6137
|
+
} & BigUint64Array<ArrayBufferLike>) | ({
|
|
6138
6138
|
id: number;
|
|
6139
6139
|
run_id: number;
|
|
6140
6140
|
run_url: string;
|
|
@@ -6165,7 +6165,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6165
6165
|
runner_group_name: string | null;
|
|
6166
6166
|
workflow_name: string | null;
|
|
6167
6167
|
head_branch: string | null;
|
|
6168
|
-
} &
|
|
6168
|
+
} & BigInt64Array<ArrayBufferLike>) | ({
|
|
6169
6169
|
id: number;
|
|
6170
6170
|
run_id: number;
|
|
6171
6171
|
run_url: string;
|
|
@@ -6196,7 +6196,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6196
6196
|
runner_group_name: string | null;
|
|
6197
6197
|
workflow_name: string | null;
|
|
6198
6198
|
head_branch: string | null;
|
|
6199
|
-
} &
|
|
6199
|
+
} & Encodable[]) | ({
|
|
6200
6200
|
id: number;
|
|
6201
6201
|
run_id: number;
|
|
6202
6202
|
run_url: string;
|
|
@@ -6227,7 +6227,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6227
6227
|
runner_group_name: string | null;
|
|
6228
6228
|
workflow_name: string | null;
|
|
6229
6229
|
head_branch: string | null;
|
|
6230
|
-
} & Encodable[]) | ({
|
|
6230
|
+
} & readonly Encodable[]) | ({
|
|
6231
6231
|
id: number;
|
|
6232
6232
|
run_id: number;
|
|
6233
6233
|
run_url: string;
|
|
@@ -6258,7 +6258,9 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6258
6258
|
runner_group_name: string | null;
|
|
6259
6259
|
workflow_name: string | null;
|
|
6260
6260
|
head_branch: string | null;
|
|
6261
|
-
} &
|
|
6261
|
+
} & {
|
|
6262
|
+
readonly [key: string]: Encodable;
|
|
6263
|
+
}) | ({
|
|
6262
6264
|
id: number;
|
|
6263
6265
|
run_id: number;
|
|
6264
6266
|
run_url: string;
|
|
@@ -6289,9 +6291,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6289
6291
|
runner_group_name: string | null;
|
|
6290
6292
|
workflow_name: string | null;
|
|
6291
6293
|
head_branch: string | null;
|
|
6292
|
-
} & {
|
|
6293
|
-
readonly [key: string]: Encodable;
|
|
6294
|
-
}) | ({
|
|
6294
|
+
} & Map<Encodable, Encodable>) | ({
|
|
6295
6295
|
id: number;
|
|
6296
6296
|
run_id: number;
|
|
6297
6297
|
run_url: string;
|
|
@@ -6322,7 +6322,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6322
6322
|
runner_group_name: string | null;
|
|
6323
6323
|
workflow_name: string | null;
|
|
6324
6324
|
head_branch: string | null;
|
|
6325
|
-
} &
|
|
6325
|
+
} & Set<Encodable>) | ({
|
|
6326
6326
|
id: number;
|
|
6327
6327
|
run_id: number;
|
|
6328
6328
|
run_url: string;
|
|
@@ -6353,7 +6353,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6353
6353
|
runner_group_name: string | null;
|
|
6354
6354
|
workflow_name: string | null;
|
|
6355
6355
|
head_branch: string | null;
|
|
6356
|
-
} &
|
|
6356
|
+
} & DataView<ArrayBufferLike>) | ({
|
|
6357
6357
|
id: number;
|
|
6358
6358
|
run_id: number;
|
|
6359
6359
|
run_url: string;
|
|
@@ -6384,7 +6384,7 @@ export declare const GITHUB_WORKFLOW_JOB_SCHEMA: z.ZodType<({
|
|
|
6384
6384
|
runner_group_name: string | null;
|
|
6385
6385
|
workflow_name: string | null;
|
|
6386
6386
|
head_branch: string | null;
|
|
6387
|
-
} &
|
|
6387
|
+
} & File), unknown>>;
|
|
6388
6388
|
export declare const GITHUB_PULL_REQUEST_FILE_SCHEMA: z.ZodType<({
|
|
6389
6389
|
sha: string | null;
|
|
6390
6390
|
filename: string;
|
|
@@ -6565,18 +6565,6 @@ export declare const GITHUB_PULL_REQUEST_FILE_SCHEMA: z.ZodType<({
|
|
|
6565
6565
|
contents_url: string;
|
|
6566
6566
|
patch?: string;
|
|
6567
6567
|
previous_filename?: string;
|
|
6568
|
-
} & File) | ({
|
|
6569
|
-
sha: string | null;
|
|
6570
|
-
filename: string;
|
|
6571
|
-
status: "added" | "removed" | "modified" | "renamed" | "copied" | "changed" | "unchanged";
|
|
6572
|
-
additions: number;
|
|
6573
|
-
deletions: number;
|
|
6574
|
-
changes: number;
|
|
6575
|
-
blob_url: string;
|
|
6576
|
-
raw_url: string;
|
|
6577
|
-
contents_url: string;
|
|
6578
|
-
patch?: string;
|
|
6579
|
-
previous_filename?: string;
|
|
6580
6568
|
} & Uint8Array<ArrayBufferLike>) | ({
|
|
6581
6569
|
sha: string | null;
|
|
6582
6570
|
filename: string;
|
|
@@ -6771,7 +6759,19 @@ export declare const GITHUB_PULL_REQUEST_FILE_SCHEMA: z.ZodType<({
|
|
|
6771
6759
|
contents_url: string;
|
|
6772
6760
|
patch?: string;
|
|
6773
6761
|
previous_filename?: string;
|
|
6774
|
-
} & DataView<ArrayBufferLike>)
|
|
6762
|
+
} & DataView<ArrayBufferLike>) | ({
|
|
6763
|
+
sha: string | null;
|
|
6764
|
+
filename: string;
|
|
6765
|
+
status: "added" | "removed" | "modified" | "renamed" | "copied" | "changed" | "unchanged";
|
|
6766
|
+
additions: number;
|
|
6767
|
+
deletions: number;
|
|
6768
|
+
changes: number;
|
|
6769
|
+
blob_url: string;
|
|
6770
|
+
raw_url: string;
|
|
6771
|
+
contents_url: string;
|
|
6772
|
+
patch?: string;
|
|
6773
|
+
previous_filename?: string;
|
|
6774
|
+
} & File), unknown, z.core.$ZodTypeInternals<({
|
|
6775
6775
|
sha: string | null;
|
|
6776
6776
|
filename: string;
|
|
6777
6777
|
status: "added" | "removed" | "modified" | "renamed" | "copied" | "changed" | "unchanged";
|
|
@@ -6951,18 +6951,6 @@ export declare const GITHUB_PULL_REQUEST_FILE_SCHEMA: z.ZodType<({
|
|
|
6951
6951
|
contents_url: string;
|
|
6952
6952
|
patch?: string;
|
|
6953
6953
|
previous_filename?: string;
|
|
6954
|
-
} & File) | ({
|
|
6955
|
-
sha: string | null;
|
|
6956
|
-
filename: string;
|
|
6957
|
-
status: "added" | "removed" | "modified" | "renamed" | "copied" | "changed" | "unchanged";
|
|
6958
|
-
additions: number;
|
|
6959
|
-
deletions: number;
|
|
6960
|
-
changes: number;
|
|
6961
|
-
blob_url: string;
|
|
6962
|
-
raw_url: string;
|
|
6963
|
-
contents_url: string;
|
|
6964
|
-
patch?: string;
|
|
6965
|
-
previous_filename?: string;
|
|
6966
6954
|
} & Uint8Array<ArrayBufferLike>) | ({
|
|
6967
6955
|
sha: string | null;
|
|
6968
6956
|
filename: string;
|
|
@@ -7157,7 +7145,19 @@ export declare const GITHUB_PULL_REQUEST_FILE_SCHEMA: z.ZodType<({
|
|
|
7157
7145
|
contents_url: string;
|
|
7158
7146
|
patch?: string;
|
|
7159
7147
|
previous_filename?: string;
|
|
7160
|
-
} & DataView<ArrayBufferLike>)
|
|
7148
|
+
} & DataView<ArrayBufferLike>) | ({
|
|
7149
|
+
sha: string | null;
|
|
7150
|
+
filename: string;
|
|
7151
|
+
status: "added" | "removed" | "modified" | "renamed" | "copied" | "changed" | "unchanged";
|
|
7152
|
+
additions: number;
|
|
7153
|
+
deletions: number;
|
|
7154
|
+
changes: number;
|
|
7155
|
+
blob_url: string;
|
|
7156
|
+
raw_url: string;
|
|
7157
|
+
contents_url: string;
|
|
7158
|
+
patch?: string;
|
|
7159
|
+
previous_filename?: string;
|
|
7160
|
+
} & File), unknown>>;
|
|
7161
7161
|
export declare const GITHUB_PULL_REQUEST_REVIEW_RESOURCE_SCHEMA: z.ZodType<GitHubPullRequestReview, unknown, z.core.$ZodTypeInternals<GitHubPullRequestReview, unknown>>;
|
|
7162
7162
|
export declare const GITHUB_PULL_REQUEST_REVIEW_REQUEST_SCHEMA: z.ZodType<GitHubPullRequestReviewRequest, unknown, z.core.$ZodTypeInternals<GitHubPullRequestReviewRequest, unknown>>;
|
|
7163
7163
|
export declare const GITHUB_PULL_REQUEST_REVIEW_COMMENT_SCHEMA: z.ZodType<GitHubPullRequestReviewComment, unknown, z.core.$ZodTypeInternals<GitHubPullRequestReviewComment, unknown>>;
|
|
@@ -9793,7 +9793,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
9793
9793
|
installations_count?: number;
|
|
9794
9794
|
} | null;
|
|
9795
9795
|
};
|
|
9796
|
-
} &
|
|
9796
|
+
} & Uint8Array<ArrayBufferLike>) | ({
|
|
9797
9797
|
id: number;
|
|
9798
9798
|
head_sha: string;
|
|
9799
9799
|
node_id: string;
|
|
@@ -9968,7 +9968,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
9968
9968
|
installations_count?: number;
|
|
9969
9969
|
} | null;
|
|
9970
9970
|
};
|
|
9971
|
-
} &
|
|
9971
|
+
} & Uint8ClampedArray<ArrayBufferLike>) | ({
|
|
9972
9972
|
id: number;
|
|
9973
9973
|
head_sha: string;
|
|
9974
9974
|
node_id: string;
|
|
@@ -10143,7 +10143,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
10143
10143
|
installations_count?: number;
|
|
10144
10144
|
} | null;
|
|
10145
10145
|
};
|
|
10146
|
-
} &
|
|
10146
|
+
} & Int8Array<ArrayBufferLike>) | ({
|
|
10147
10147
|
id: number;
|
|
10148
10148
|
head_sha: string;
|
|
10149
10149
|
node_id: string;
|
|
@@ -10318,7 +10318,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
10318
10318
|
installations_count?: number;
|
|
10319
10319
|
} | null;
|
|
10320
10320
|
};
|
|
10321
|
-
} &
|
|
10321
|
+
} & Uint16Array<ArrayBufferLike>) | ({
|
|
10322
10322
|
id: number;
|
|
10323
10323
|
head_sha: string;
|
|
10324
10324
|
node_id: string;
|
|
@@ -10493,7 +10493,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
10493
10493
|
installations_count?: number;
|
|
10494
10494
|
} | null;
|
|
10495
10495
|
};
|
|
10496
|
-
} &
|
|
10496
|
+
} & Int16Array<ArrayBufferLike>) | ({
|
|
10497
10497
|
id: number;
|
|
10498
10498
|
head_sha: string;
|
|
10499
10499
|
node_id: string;
|
|
@@ -10668,7 +10668,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
10668
10668
|
installations_count?: number;
|
|
10669
10669
|
} | null;
|
|
10670
10670
|
};
|
|
10671
|
-
} &
|
|
10671
|
+
} & Uint32Array<ArrayBufferLike>) | ({
|
|
10672
10672
|
id: number;
|
|
10673
10673
|
head_sha: string;
|
|
10674
10674
|
node_id: string;
|
|
@@ -10843,7 +10843,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
10843
10843
|
installations_count?: number;
|
|
10844
10844
|
} | null;
|
|
10845
10845
|
};
|
|
10846
|
-
} &
|
|
10846
|
+
} & Int32Array<ArrayBufferLike>) | ({
|
|
10847
10847
|
id: number;
|
|
10848
10848
|
head_sha: string;
|
|
10849
10849
|
node_id: string;
|
|
@@ -11018,7 +11018,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
11018
11018
|
installations_count?: number;
|
|
11019
11019
|
} | null;
|
|
11020
11020
|
};
|
|
11021
|
-
} &
|
|
11021
|
+
} & Float32Array<ArrayBufferLike>) | ({
|
|
11022
11022
|
id: number;
|
|
11023
11023
|
head_sha: string;
|
|
11024
11024
|
node_id: string;
|
|
@@ -11193,7 +11193,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
11193
11193
|
installations_count?: number;
|
|
11194
11194
|
} | null;
|
|
11195
11195
|
};
|
|
11196
|
-
} &
|
|
11196
|
+
} & Float64Array<ArrayBufferLike>) | ({
|
|
11197
11197
|
id: number;
|
|
11198
11198
|
head_sha: string;
|
|
11199
11199
|
node_id: string;
|
|
@@ -11368,7 +11368,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
11368
11368
|
installations_count?: number;
|
|
11369
11369
|
} | null;
|
|
11370
11370
|
};
|
|
11371
|
-
} &
|
|
11371
|
+
} & BigUint64Array<ArrayBufferLike>) | ({
|
|
11372
11372
|
id: number;
|
|
11373
11373
|
head_sha: string;
|
|
11374
11374
|
node_id: string;
|
|
@@ -11543,7 +11543,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
11543
11543
|
installations_count?: number;
|
|
11544
11544
|
} | null;
|
|
11545
11545
|
};
|
|
11546
|
-
} &
|
|
11546
|
+
} & BigInt64Array<ArrayBufferLike>) | ({
|
|
11547
11547
|
id: number;
|
|
11548
11548
|
head_sha: string;
|
|
11549
11549
|
node_id: string;
|
|
@@ -11718,7 +11718,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
11718
11718
|
installations_count?: number;
|
|
11719
11719
|
} | null;
|
|
11720
11720
|
};
|
|
11721
|
-
} &
|
|
11721
|
+
} & Encodable[]) | ({
|
|
11722
11722
|
id: number;
|
|
11723
11723
|
head_sha: string;
|
|
11724
11724
|
node_id: string;
|
|
@@ -11893,7 +11893,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
11893
11893
|
installations_count?: number;
|
|
11894
11894
|
} | null;
|
|
11895
11895
|
};
|
|
11896
|
-
} & Encodable[]) | ({
|
|
11896
|
+
} & readonly Encodable[]) | ({
|
|
11897
11897
|
id: number;
|
|
11898
11898
|
head_sha: string;
|
|
11899
11899
|
node_id: string;
|
|
@@ -12068,7 +12068,9 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
12068
12068
|
installations_count?: number;
|
|
12069
12069
|
} | null;
|
|
12070
12070
|
};
|
|
12071
|
-
} &
|
|
12071
|
+
} & {
|
|
12072
|
+
readonly [key: string]: Encodable;
|
|
12073
|
+
}) | ({
|
|
12072
12074
|
id: number;
|
|
12073
12075
|
head_sha: string;
|
|
12074
12076
|
node_id: string;
|
|
@@ -12243,9 +12245,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
12243
12245
|
installations_count?: number;
|
|
12244
12246
|
} | null;
|
|
12245
12247
|
};
|
|
12246
|
-
} & {
|
|
12247
|
-
readonly [key: string]: Encodable;
|
|
12248
|
-
}) | ({
|
|
12248
|
+
} & Map<Encodable, Encodable>) | ({
|
|
12249
12249
|
id: number;
|
|
12250
12250
|
head_sha: string;
|
|
12251
12251
|
node_id: string;
|
|
@@ -12420,7 +12420,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
12420
12420
|
installations_count?: number;
|
|
12421
12421
|
} | null;
|
|
12422
12422
|
};
|
|
12423
|
-
} &
|
|
12423
|
+
} & Set<Encodable>) | ({
|
|
12424
12424
|
id: number;
|
|
12425
12425
|
head_sha: string;
|
|
12426
12426
|
node_id: string;
|
|
@@ -12595,7 +12595,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
12595
12595
|
installations_count?: number;
|
|
12596
12596
|
} | null;
|
|
12597
12597
|
};
|
|
12598
|
-
} &
|
|
12598
|
+
} & DataView<ArrayBufferLike>) | ({
|
|
12599
12599
|
id: number;
|
|
12600
12600
|
head_sha: string;
|
|
12601
12601
|
node_id: string;
|
|
@@ -12770,7 +12770,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
12770
12770
|
installations_count?: number;
|
|
12771
12771
|
} | null;
|
|
12772
12772
|
};
|
|
12773
|
-
} &
|
|
12773
|
+
} & File), unknown, z.core.$ZodTypeInternals<({
|
|
12774
12774
|
id: number;
|
|
12775
12775
|
head_sha: string;
|
|
12776
12776
|
node_id: string;
|
|
@@ -15395,7 +15395,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
15395
15395
|
installations_count?: number;
|
|
15396
15396
|
} | null;
|
|
15397
15397
|
};
|
|
15398
|
-
} &
|
|
15398
|
+
} & Uint8Array<ArrayBufferLike>) | ({
|
|
15399
15399
|
id: number;
|
|
15400
15400
|
head_sha: string;
|
|
15401
15401
|
node_id: string;
|
|
@@ -15570,7 +15570,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
15570
15570
|
installations_count?: number;
|
|
15571
15571
|
} | null;
|
|
15572
15572
|
};
|
|
15573
|
-
} &
|
|
15573
|
+
} & Uint8ClampedArray<ArrayBufferLike>) | ({
|
|
15574
15574
|
id: number;
|
|
15575
15575
|
head_sha: string;
|
|
15576
15576
|
node_id: string;
|
|
@@ -15745,7 +15745,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
15745
15745
|
installations_count?: number;
|
|
15746
15746
|
} | null;
|
|
15747
15747
|
};
|
|
15748
|
-
} &
|
|
15748
|
+
} & Int8Array<ArrayBufferLike>) | ({
|
|
15749
15749
|
id: number;
|
|
15750
15750
|
head_sha: string;
|
|
15751
15751
|
node_id: string;
|
|
@@ -15920,7 +15920,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
15920
15920
|
installations_count?: number;
|
|
15921
15921
|
} | null;
|
|
15922
15922
|
};
|
|
15923
|
-
} &
|
|
15923
|
+
} & Uint16Array<ArrayBufferLike>) | ({
|
|
15924
15924
|
id: number;
|
|
15925
15925
|
head_sha: string;
|
|
15926
15926
|
node_id: string;
|
|
@@ -16095,7 +16095,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
16095
16095
|
installations_count?: number;
|
|
16096
16096
|
} | null;
|
|
16097
16097
|
};
|
|
16098
|
-
} &
|
|
16098
|
+
} & Int16Array<ArrayBufferLike>) | ({
|
|
16099
16099
|
id: number;
|
|
16100
16100
|
head_sha: string;
|
|
16101
16101
|
node_id: string;
|
|
@@ -16270,7 +16270,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
16270
16270
|
installations_count?: number;
|
|
16271
16271
|
} | null;
|
|
16272
16272
|
};
|
|
16273
|
-
} &
|
|
16273
|
+
} & Uint32Array<ArrayBufferLike>) | ({
|
|
16274
16274
|
id: number;
|
|
16275
16275
|
head_sha: string;
|
|
16276
16276
|
node_id: string;
|
|
@@ -16445,7 +16445,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
16445
16445
|
installations_count?: number;
|
|
16446
16446
|
} | null;
|
|
16447
16447
|
};
|
|
16448
|
-
} &
|
|
16448
|
+
} & Int32Array<ArrayBufferLike>) | ({
|
|
16449
16449
|
id: number;
|
|
16450
16450
|
head_sha: string;
|
|
16451
16451
|
node_id: string;
|
|
@@ -16620,7 +16620,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
16620
16620
|
installations_count?: number;
|
|
16621
16621
|
} | null;
|
|
16622
16622
|
};
|
|
16623
|
-
} &
|
|
16623
|
+
} & Float32Array<ArrayBufferLike>) | ({
|
|
16624
16624
|
id: number;
|
|
16625
16625
|
head_sha: string;
|
|
16626
16626
|
node_id: string;
|
|
@@ -16795,7 +16795,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
16795
16795
|
installations_count?: number;
|
|
16796
16796
|
} | null;
|
|
16797
16797
|
};
|
|
16798
|
-
} &
|
|
16798
|
+
} & Float64Array<ArrayBufferLike>) | ({
|
|
16799
16799
|
id: number;
|
|
16800
16800
|
head_sha: string;
|
|
16801
16801
|
node_id: string;
|
|
@@ -16970,7 +16970,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
16970
16970
|
installations_count?: number;
|
|
16971
16971
|
} | null;
|
|
16972
16972
|
};
|
|
16973
|
-
} &
|
|
16973
|
+
} & BigUint64Array<ArrayBufferLike>) | ({
|
|
16974
16974
|
id: number;
|
|
16975
16975
|
head_sha: string;
|
|
16976
16976
|
node_id: string;
|
|
@@ -17145,7 +17145,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
17145
17145
|
installations_count?: number;
|
|
17146
17146
|
} | null;
|
|
17147
17147
|
};
|
|
17148
|
-
} &
|
|
17148
|
+
} & BigInt64Array<ArrayBufferLike>) | ({
|
|
17149
17149
|
id: number;
|
|
17150
17150
|
head_sha: string;
|
|
17151
17151
|
node_id: string;
|
|
@@ -17320,7 +17320,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
17320
17320
|
installations_count?: number;
|
|
17321
17321
|
} | null;
|
|
17322
17322
|
};
|
|
17323
|
-
} &
|
|
17323
|
+
} & Encodable[]) | ({
|
|
17324
17324
|
id: number;
|
|
17325
17325
|
head_sha: string;
|
|
17326
17326
|
node_id: string;
|
|
@@ -17495,7 +17495,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
17495
17495
|
installations_count?: number;
|
|
17496
17496
|
} | null;
|
|
17497
17497
|
};
|
|
17498
|
-
} & Encodable[]) | ({
|
|
17498
|
+
} & readonly Encodable[]) | ({
|
|
17499
17499
|
id: number;
|
|
17500
17500
|
head_sha: string;
|
|
17501
17501
|
node_id: string;
|
|
@@ -17670,7 +17670,9 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
17670
17670
|
installations_count?: number;
|
|
17671
17671
|
} | null;
|
|
17672
17672
|
};
|
|
17673
|
-
} &
|
|
17673
|
+
} & {
|
|
17674
|
+
readonly [key: string]: Encodable;
|
|
17675
|
+
}) | ({
|
|
17674
17676
|
id: number;
|
|
17675
17677
|
head_sha: string;
|
|
17676
17678
|
node_id: string;
|
|
@@ -17845,9 +17847,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
17845
17847
|
installations_count?: number;
|
|
17846
17848
|
} | null;
|
|
17847
17849
|
};
|
|
17848
|
-
} & {
|
|
17849
|
-
readonly [key: string]: Encodable;
|
|
17850
|
-
}) | ({
|
|
17850
|
+
} & Map<Encodable, Encodable>) | ({
|
|
17851
17851
|
id: number;
|
|
17852
17852
|
head_sha: string;
|
|
17853
17853
|
node_id: string;
|
|
@@ -18022,7 +18022,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
18022
18022
|
installations_count?: number;
|
|
18023
18023
|
} | null;
|
|
18024
18024
|
};
|
|
18025
|
-
} &
|
|
18025
|
+
} & Set<Encodable>) | ({
|
|
18026
18026
|
id: number;
|
|
18027
18027
|
head_sha: string;
|
|
18028
18028
|
node_id: string;
|
|
@@ -18197,7 +18197,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
18197
18197
|
installations_count?: number;
|
|
18198
18198
|
} | null;
|
|
18199
18199
|
};
|
|
18200
|
-
} &
|
|
18200
|
+
} & DataView<ArrayBufferLike>) | ({
|
|
18201
18201
|
id: number;
|
|
18202
18202
|
head_sha: string;
|
|
18203
18203
|
node_id: string;
|
|
@@ -18372,7 +18372,7 @@ export declare const GITHUB_CHECK_RUN_SCHEMA: z.ZodType<({
|
|
|
18372
18372
|
installations_count?: number;
|
|
18373
18373
|
} | null;
|
|
18374
18374
|
};
|
|
18375
|
-
} &
|
|
18375
|
+
} & File), unknown>>;
|
|
18376
18376
|
export declare const GITHUB_COMBINED_COMMIT_STATUS_SCHEMA: z.ZodType<GitHubCombinedCommitStatus, unknown, z.core.$ZodTypeInternals<GitHubCombinedCommitStatus, unknown>>;
|
|
18377
18377
|
export declare const GITHUB_WORKFLOW_DISPATCH_RESULT_SCHEMA: z.ZodType<GitHubWorkflowDispatchResult>;
|
|
18378
18378
|
export declare const GITHUB_EMPTY_RESPONSE_SCHEMA: z.ZodObject<{}, z.core.$strip>;
|