@terrantula/sdk 0.8.1 → 0.9.1
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/{chunk-NVHWMOWP.mjs → chunk-OXOF623W.mjs} +128 -114
- package/dist/index.d.mts +430 -246
- package/dist/index.d.ts +430 -246
- package/dist/index.js +128 -114
- package/dist/index.mjs +1 -1
- package/dist/local.d.mts +301 -209
- package/dist/local.d.ts +301 -209
- package/dist/local.js +128 -114
- package/dist/local.mjs +1 -1
- package/dist/{projects-BxDuMQLR.d.mts → projects-CT3fGCOp.d.mts} +2 -2
- package/dist/{projects-BxDuMQLR.d.ts → projects-CT3fGCOp.d.ts} +2 -2
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SnapshotOp, T as TokenSource, a as SchemaFn, P as ProjectNukeResponse, A as AuditExportConfigResponse, b as TestConnectionResponse, c as AuditExportRunResponse, E as ExportCatalogResult, d as AdminAuditListResponse, e as AdminOrgListResponse, f as AdminOrgDetail, g as AdminSuspendResponse, h as AdminProjectNukeResponse, i as AdminMetricsOverview, j as AdminGitHubInstallationListResponse } from './projects-
|
|
2
|
-
export { k as AdminAuditEvent, l as AdminGitHubInstallation, m as AdminOrgMember, n as AdminOrgProject, o as AdminOrgSummary, p as TerrantulaError, w as withSchema } from './projects-
|
|
1
|
+
import { S as SnapshotOp, T as TokenSource, a as SchemaFn, P as ProjectNukeResponse, A as AuditExportConfigResponse, b as TestConnectionResponse, c as AuditExportRunResponse, E as ExportCatalogResult, d as AdminAuditListResponse, e as AdminOrgListResponse, f as AdminOrgDetail, g as AdminSuspendResponse, h as AdminProjectNukeResponse, i as AdminMetricsOverview, j as AdminGitHubInstallationListResponse } from './projects-CT3fGCOp.mjs';
|
|
2
|
+
export { k as AdminAuditEvent, l as AdminGitHubInstallation, m as AdminOrgMember, n as AdminOrgProject, o as AdminOrgSummary, p as TerrantulaError, w as withSchema } from './projects-CT3fGCOp.mjs';
|
|
3
3
|
import * as _terrantula_types from '@terrantula/types';
|
|
4
4
|
import * as zod from 'zod';
|
|
5
5
|
import * as hono_hono_base from 'hono/hono-base';
|
|
@@ -378,6 +378,20 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
378
378
|
status: 201;
|
|
379
379
|
};
|
|
380
380
|
};
|
|
381
|
+
} & {
|
|
382
|
+
"/metrics": {
|
|
383
|
+
$get: {
|
|
384
|
+
input: {
|
|
385
|
+
json?: any;
|
|
386
|
+
query?: {
|
|
387
|
+
[x: string]: string | string[];
|
|
388
|
+
} | undefined;
|
|
389
|
+
};
|
|
390
|
+
output: {};
|
|
391
|
+
outputFormat: "json";
|
|
392
|
+
status: hono_utils_http_status.ContentfulStatusCode;
|
|
393
|
+
};
|
|
394
|
+
};
|
|
381
395
|
} & {
|
|
382
396
|
"/:name/drift": {
|
|
383
397
|
$get: {
|
|
@@ -497,6 +511,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
497
511
|
};
|
|
498
512
|
};
|
|
499
513
|
output: {
|
|
514
|
+
fromEntityName: string;
|
|
515
|
+
toEntityName: string;
|
|
500
516
|
id: string;
|
|
501
517
|
relationshipTypeName: string;
|
|
502
518
|
fromEntityId: string;
|
|
@@ -708,8 +724,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
708
724
|
};
|
|
709
725
|
trigger: {
|
|
710
726
|
type: "webhook";
|
|
711
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
712
727
|
url: string;
|
|
728
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
713
729
|
headers?: {
|
|
714
730
|
[x: string]: string;
|
|
715
731
|
} | undefined;
|
|
@@ -767,8 +783,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
767
783
|
value?: hono_utils_types.JSONValue | undefined;
|
|
768
784
|
} | undefined;
|
|
769
785
|
}[];
|
|
770
|
-
body?: string | undefined;
|
|
771
786
|
webhookSecret?: string | undefined;
|
|
787
|
+
body?: string | undefined;
|
|
772
788
|
labels?: string[] | undefined;
|
|
773
789
|
reviewers?: string[] | undefined;
|
|
774
790
|
teamReviewers?: string[] | undefined;
|
|
@@ -846,8 +862,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
846
862
|
value?: hono_utils_types.JSONValue | undefined;
|
|
847
863
|
} | undefined;
|
|
848
864
|
}[];
|
|
849
|
-
body?: string | undefined;
|
|
850
865
|
webhookSecret?: string | undefined;
|
|
866
|
+
body?: string | undefined;
|
|
851
867
|
labels?: string[] | undefined;
|
|
852
868
|
reviewers?: string[] | undefined;
|
|
853
869
|
teamReviewers?: string[] | undefined;
|
|
@@ -878,11 +894,11 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
878
894
|
envOverrides: {
|
|
879
895
|
[x: string]: {
|
|
880
896
|
type: "webhook";
|
|
881
|
-
|
|
897
|
+
url?: string | undefined;
|
|
882
898
|
headers?: {
|
|
883
899
|
[x: string]: string;
|
|
884
900
|
} | undefined;
|
|
885
|
-
|
|
901
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
886
902
|
auth?: {
|
|
887
903
|
type: "bearer";
|
|
888
904
|
token: string;
|
|
@@ -911,9 +927,9 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
911
927
|
} | undefined;
|
|
912
928
|
} | {
|
|
913
929
|
type: "pull-request";
|
|
914
|
-
body?: string | undefined;
|
|
915
930
|
repo?: string | undefined;
|
|
916
931
|
webhookSecret?: string | undefined;
|
|
932
|
+
body?: string | undefined;
|
|
917
933
|
title?: string | undefined;
|
|
918
934
|
auth?: {
|
|
919
935
|
type: "token";
|
|
@@ -1014,8 +1030,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
1014
1030
|
value?: hono_utils_types.JSONValue | undefined;
|
|
1015
1031
|
} | undefined;
|
|
1016
1032
|
}[];
|
|
1017
|
-
body?: string | undefined;
|
|
1018
1033
|
webhookSecret?: string | undefined;
|
|
1034
|
+
body?: string | undefined;
|
|
1019
1035
|
labels?: string[] | undefined;
|
|
1020
1036
|
reviewers?: string[] | undefined;
|
|
1021
1037
|
teamReviewers?: string[] | undefined;
|
|
@@ -1110,6 +1126,7 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
1110
1126
|
};
|
|
1111
1127
|
};
|
|
1112
1128
|
output: {
|
|
1129
|
+
id: string;
|
|
1113
1130
|
name: string;
|
|
1114
1131
|
lastSyncedAt: string | null;
|
|
1115
1132
|
syncSource: string | null;
|
|
@@ -1128,6 +1145,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
1128
1145
|
} | undefined;
|
|
1129
1146
|
};
|
|
1130
1147
|
output: {
|
|
1148
|
+
fromEntityName: string;
|
|
1149
|
+
toEntityName: string;
|
|
1131
1150
|
id: string;
|
|
1132
1151
|
relationshipTypeName: string;
|
|
1133
1152
|
fromEntityId: string;
|
|
@@ -1357,6 +1376,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
1357
1376
|
} | undefined;
|
|
1358
1377
|
};
|
|
1359
1378
|
output: {
|
|
1379
|
+
entityName: string | null;
|
|
1380
|
+
operationEntityName: string | null;
|
|
1360
1381
|
id: string;
|
|
1361
1382
|
actionName: string;
|
|
1362
1383
|
entityId: string | null;
|
|
@@ -1648,6 +1669,11 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
1648
1669
|
"/:id/snooze": {
|
|
1649
1670
|
$post: {
|
|
1650
1671
|
input: {
|
|
1672
|
+
json?: any;
|
|
1673
|
+
query?: {
|
|
1674
|
+
[x: string]: string | string[];
|
|
1675
|
+
} | undefined;
|
|
1676
|
+
} & {
|
|
1651
1677
|
param: {
|
|
1652
1678
|
id: string;
|
|
1653
1679
|
};
|
|
@@ -2334,6 +2360,11 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
2334
2360
|
"/:name/members": {
|
|
2335
2361
|
$get: {
|
|
2336
2362
|
input: {
|
|
2363
|
+
json?: any;
|
|
2364
|
+
query?: {
|
|
2365
|
+
[x: string]: string | string[];
|
|
2366
|
+
} | undefined;
|
|
2367
|
+
} & {
|
|
2337
2368
|
param: {
|
|
2338
2369
|
name: string;
|
|
2339
2370
|
};
|
|
@@ -2384,6 +2415,11 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
2384
2415
|
"/:name/members/:entityName": {
|
|
2385
2416
|
$delete: {
|
|
2386
2417
|
input: {
|
|
2418
|
+
json?: any;
|
|
2419
|
+
query?: {
|
|
2420
|
+
[x: string]: string | string[];
|
|
2421
|
+
} | undefined;
|
|
2422
|
+
} & {
|
|
2387
2423
|
param: {
|
|
2388
2424
|
name: string;
|
|
2389
2425
|
} & {
|
|
@@ -2752,8 +2788,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
2752
2788
|
};
|
|
2753
2789
|
trigger: {
|
|
2754
2790
|
type: "webhook";
|
|
2755
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
2756
2791
|
url: string;
|
|
2792
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
2757
2793
|
headers?: {
|
|
2758
2794
|
[x: string]: string;
|
|
2759
2795
|
} | undefined;
|
|
@@ -2811,8 +2847,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
2811
2847
|
value?: hono_utils_types.JSONValue | undefined;
|
|
2812
2848
|
} | undefined;
|
|
2813
2849
|
}[];
|
|
2814
|
-
body?: string | undefined;
|
|
2815
2850
|
webhookSecret?: string | undefined;
|
|
2851
|
+
body?: string | undefined;
|
|
2816
2852
|
labels?: string[] | undefined;
|
|
2817
2853
|
reviewers?: string[] | undefined;
|
|
2818
2854
|
teamReviewers?: string[] | undefined;
|
|
@@ -2890,8 +2926,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
2890
2926
|
value?: hono_utils_types.JSONValue | undefined;
|
|
2891
2927
|
} | undefined;
|
|
2892
2928
|
}[];
|
|
2893
|
-
body?: string | undefined;
|
|
2894
2929
|
webhookSecret?: string | undefined;
|
|
2930
|
+
body?: string | undefined;
|
|
2895
2931
|
labels?: string[] | undefined;
|
|
2896
2932
|
reviewers?: string[] | undefined;
|
|
2897
2933
|
teamReviewers?: string[] | undefined;
|
|
@@ -2922,11 +2958,11 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
2922
2958
|
envOverrides: {
|
|
2923
2959
|
[x: string]: {
|
|
2924
2960
|
type: "webhook";
|
|
2925
|
-
|
|
2961
|
+
url?: string | undefined;
|
|
2926
2962
|
headers?: {
|
|
2927
2963
|
[x: string]: string;
|
|
2928
2964
|
} | undefined;
|
|
2929
|
-
|
|
2965
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
2930
2966
|
auth?: {
|
|
2931
2967
|
type: "bearer";
|
|
2932
2968
|
token: string;
|
|
@@ -2955,9 +2991,9 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
2955
2991
|
} | undefined;
|
|
2956
2992
|
} | {
|
|
2957
2993
|
type: "pull-request";
|
|
2958
|
-
body?: string | undefined;
|
|
2959
2994
|
repo?: string | undefined;
|
|
2960
2995
|
webhookSecret?: string | undefined;
|
|
2996
|
+
body?: string | undefined;
|
|
2961
2997
|
title?: string | undefined;
|
|
2962
2998
|
auth?: {
|
|
2963
2999
|
type: "token";
|
|
@@ -3058,8 +3094,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3058
3094
|
value?: hono_utils_types.JSONValue | undefined;
|
|
3059
3095
|
} | undefined;
|
|
3060
3096
|
}[];
|
|
3061
|
-
body?: string | undefined;
|
|
3062
3097
|
webhookSecret?: string | undefined;
|
|
3098
|
+
body?: string | undefined;
|
|
3063
3099
|
labels?: string[] | undefined;
|
|
3064
3100
|
reviewers?: string[] | undefined;
|
|
3065
3101
|
teamReviewers?: string[] | undefined;
|
|
@@ -3256,8 +3292,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3256
3292
|
};
|
|
3257
3293
|
trigger: {
|
|
3258
3294
|
type: "webhook";
|
|
3259
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
3260
3295
|
url: string;
|
|
3296
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
3261
3297
|
headers?: {
|
|
3262
3298
|
[x: string]: string;
|
|
3263
3299
|
} | undefined;
|
|
@@ -3315,8 +3351,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3315
3351
|
value?: hono_utils_types.JSONValue | undefined;
|
|
3316
3352
|
} | undefined;
|
|
3317
3353
|
}[];
|
|
3318
|
-
body?: string | undefined;
|
|
3319
3354
|
webhookSecret?: string | undefined;
|
|
3355
|
+
body?: string | undefined;
|
|
3320
3356
|
labels?: string[] | undefined;
|
|
3321
3357
|
reviewers?: string[] | undefined;
|
|
3322
3358
|
teamReviewers?: string[] | undefined;
|
|
@@ -3394,8 +3430,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3394
3430
|
value?: hono_utils_types.JSONValue | undefined;
|
|
3395
3431
|
} | undefined;
|
|
3396
3432
|
}[];
|
|
3397
|
-
body?: string | undefined;
|
|
3398
3433
|
webhookSecret?: string | undefined;
|
|
3434
|
+
body?: string | undefined;
|
|
3399
3435
|
labels?: string[] | undefined;
|
|
3400
3436
|
reviewers?: string[] | undefined;
|
|
3401
3437
|
teamReviewers?: string[] | undefined;
|
|
@@ -3426,11 +3462,11 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3426
3462
|
envOverrides: {
|
|
3427
3463
|
[x: string]: {
|
|
3428
3464
|
type: "webhook";
|
|
3429
|
-
|
|
3465
|
+
url?: string | undefined;
|
|
3430
3466
|
headers?: {
|
|
3431
3467
|
[x: string]: string;
|
|
3432
3468
|
} | undefined;
|
|
3433
|
-
|
|
3469
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
3434
3470
|
auth?: {
|
|
3435
3471
|
type: "bearer";
|
|
3436
3472
|
token: string;
|
|
@@ -3459,9 +3495,9 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3459
3495
|
} | undefined;
|
|
3460
3496
|
} | {
|
|
3461
3497
|
type: "pull-request";
|
|
3462
|
-
body?: string | undefined;
|
|
3463
3498
|
repo?: string | undefined;
|
|
3464
3499
|
webhookSecret?: string | undefined;
|
|
3500
|
+
body?: string | undefined;
|
|
3465
3501
|
title?: string | undefined;
|
|
3466
3502
|
auth?: {
|
|
3467
3503
|
type: "token";
|
|
@@ -3562,8 +3598,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3562
3598
|
value?: hono_utils_types.JSONValue | undefined;
|
|
3563
3599
|
} | undefined;
|
|
3564
3600
|
}[];
|
|
3565
|
-
body?: string | undefined;
|
|
3566
3601
|
webhookSecret?: string | undefined;
|
|
3602
|
+
body?: string | undefined;
|
|
3567
3603
|
labels?: string[] | undefined;
|
|
3568
3604
|
reviewers?: string[] | undefined;
|
|
3569
3605
|
teamReviewers?: string[] | undefined;
|
|
@@ -3759,8 +3795,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3759
3795
|
};
|
|
3760
3796
|
trigger: {
|
|
3761
3797
|
type: "webhook";
|
|
3762
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
3763
3798
|
url: string;
|
|
3799
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
3764
3800
|
headers?: {
|
|
3765
3801
|
[x: string]: string;
|
|
3766
3802
|
} | undefined;
|
|
@@ -3818,8 +3854,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3818
3854
|
value?: hono_utils_types.JSONValue | undefined;
|
|
3819
3855
|
} | undefined;
|
|
3820
3856
|
}[];
|
|
3821
|
-
body?: string | undefined;
|
|
3822
3857
|
webhookSecret?: string | undefined;
|
|
3858
|
+
body?: string | undefined;
|
|
3823
3859
|
labels?: string[] | undefined;
|
|
3824
3860
|
reviewers?: string[] | undefined;
|
|
3825
3861
|
teamReviewers?: string[] | undefined;
|
|
@@ -3897,8 +3933,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3897
3933
|
value?: hono_utils_types.JSONValue | undefined;
|
|
3898
3934
|
} | undefined;
|
|
3899
3935
|
}[];
|
|
3900
|
-
body?: string | undefined;
|
|
3901
3936
|
webhookSecret?: string | undefined;
|
|
3937
|
+
body?: string | undefined;
|
|
3902
3938
|
labels?: string[] | undefined;
|
|
3903
3939
|
reviewers?: string[] | undefined;
|
|
3904
3940
|
teamReviewers?: string[] | undefined;
|
|
@@ -3929,11 +3965,11 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3929
3965
|
envOverrides: {
|
|
3930
3966
|
[x: string]: {
|
|
3931
3967
|
type: "webhook";
|
|
3932
|
-
|
|
3968
|
+
url?: string | undefined;
|
|
3933
3969
|
headers?: {
|
|
3934
3970
|
[x: string]: string;
|
|
3935
3971
|
} | undefined;
|
|
3936
|
-
|
|
3972
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
3937
3973
|
auth?: {
|
|
3938
3974
|
type: "bearer";
|
|
3939
3975
|
token: string;
|
|
@@ -3962,9 +3998,9 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
3962
3998
|
} | undefined;
|
|
3963
3999
|
} | {
|
|
3964
4000
|
type: "pull-request";
|
|
3965
|
-
body?: string | undefined;
|
|
3966
4001
|
repo?: string | undefined;
|
|
3967
4002
|
webhookSecret?: string | undefined;
|
|
4003
|
+
body?: string | undefined;
|
|
3968
4004
|
title?: string | undefined;
|
|
3969
4005
|
auth?: {
|
|
3970
4006
|
type: "token";
|
|
@@ -4065,8 +4101,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
4065
4101
|
value?: hono_utils_types.JSONValue | undefined;
|
|
4066
4102
|
} | undefined;
|
|
4067
4103
|
}[];
|
|
4068
|
-
body?: string | undefined;
|
|
4069
4104
|
webhookSecret?: string | undefined;
|
|
4105
|
+
body?: string | undefined;
|
|
4070
4106
|
labels?: string[] | undefined;
|
|
4071
4107
|
reviewers?: string[] | undefined;
|
|
4072
4108
|
teamReviewers?: string[] | undefined;
|
|
@@ -4267,8 +4303,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
4267
4303
|
};
|
|
4268
4304
|
trigger: {
|
|
4269
4305
|
type: "webhook";
|
|
4270
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
4271
4306
|
url: string;
|
|
4307
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
4272
4308
|
headers?: {
|
|
4273
4309
|
[x: string]: string;
|
|
4274
4310
|
} | undefined;
|
|
@@ -4326,8 +4362,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
4326
4362
|
value?: hono_utils_types.JSONValue | undefined;
|
|
4327
4363
|
} | undefined;
|
|
4328
4364
|
}[];
|
|
4329
|
-
body?: string | undefined;
|
|
4330
4365
|
webhookSecret?: string | undefined;
|
|
4366
|
+
body?: string | undefined;
|
|
4331
4367
|
labels?: string[] | undefined;
|
|
4332
4368
|
reviewers?: string[] | undefined;
|
|
4333
4369
|
teamReviewers?: string[] | undefined;
|
|
@@ -4405,8 +4441,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
4405
4441
|
value?: hono_utils_types.JSONValue | undefined;
|
|
4406
4442
|
} | undefined;
|
|
4407
4443
|
}[];
|
|
4408
|
-
body?: string | undefined;
|
|
4409
4444
|
webhookSecret?: string | undefined;
|
|
4445
|
+
body?: string | undefined;
|
|
4410
4446
|
labels?: string[] | undefined;
|
|
4411
4447
|
reviewers?: string[] | undefined;
|
|
4412
4448
|
teamReviewers?: string[] | undefined;
|
|
@@ -4437,11 +4473,11 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
4437
4473
|
envOverrides: {
|
|
4438
4474
|
[x: string]: {
|
|
4439
4475
|
type: "webhook";
|
|
4440
|
-
|
|
4476
|
+
url?: string | undefined;
|
|
4441
4477
|
headers?: {
|
|
4442
4478
|
[x: string]: string;
|
|
4443
4479
|
} | undefined;
|
|
4444
|
-
|
|
4480
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
4445
4481
|
auth?: {
|
|
4446
4482
|
type: "bearer";
|
|
4447
4483
|
token: string;
|
|
@@ -4470,9 +4506,9 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
4470
4506
|
} | undefined;
|
|
4471
4507
|
} | {
|
|
4472
4508
|
type: "pull-request";
|
|
4473
|
-
body?: string | undefined;
|
|
4474
4509
|
repo?: string | undefined;
|
|
4475
4510
|
webhookSecret?: string | undefined;
|
|
4511
|
+
body?: string | undefined;
|
|
4476
4512
|
title?: string | undefined;
|
|
4477
4513
|
auth?: {
|
|
4478
4514
|
type: "token";
|
|
@@ -4573,8 +4609,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
4573
4609
|
value?: hono_utils_types.JSONValue | undefined;
|
|
4574
4610
|
} | undefined;
|
|
4575
4611
|
}[];
|
|
4576
|
-
body?: string | undefined;
|
|
4577
4612
|
webhookSecret?: string | undefined;
|
|
4613
|
+
body?: string | undefined;
|
|
4578
4614
|
labels?: string[] | undefined;
|
|
4579
4615
|
reviewers?: string[] | undefined;
|
|
4580
4616
|
teamReviewers?: string[] | undefined;
|
|
@@ -4932,8 +4968,8 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
4932
4968
|
updatedAt: string;
|
|
4933
4969
|
orgId: string;
|
|
4934
4970
|
projectId: string;
|
|
4935
|
-
scope: "user" | "project";
|
|
4936
4971
|
isDefault: boolean;
|
|
4972
|
+
scope: "user" | "project";
|
|
4937
4973
|
config: {
|
|
4938
4974
|
sort: {
|
|
4939
4975
|
cells: "name" | "memberCount" | "capacityUsed";
|
|
@@ -5214,6 +5250,7 @@ declare const projectApp: hono_hono_base.HonoBase<{
|
|
|
5214
5250
|
driftStatus: _terrantula_types.DriftStatus | null;
|
|
5215
5251
|
}[];
|
|
5216
5252
|
pendingProposals: {
|
|
5253
|
+
entityName: string | null;
|
|
5217
5254
|
id: string;
|
|
5218
5255
|
importSourceId: string;
|
|
5219
5256
|
projectId: string | null;
|
|
@@ -6439,6 +6476,61 @@ declare function _cloudAppShape(): hono_hono_base.HonoBase<hono_types.BlankEnv,
|
|
|
6439
6476
|
};
|
|
6440
6477
|
};
|
|
6441
6478
|
}, "/orgs/:orgId/projects"> | hono_types.MergeSchemaPath<{
|
|
6479
|
+
"/": {
|
|
6480
|
+
$get: {
|
|
6481
|
+
input: {};
|
|
6482
|
+
output: {
|
|
6483
|
+
id: string;
|
|
6484
|
+
installationId: string;
|
|
6485
|
+
repoFullName: string;
|
|
6486
|
+
repoNodeId: string;
|
|
6487
|
+
linkedAt: string;
|
|
6488
|
+
linkedBy: string | null;
|
|
6489
|
+
}[];
|
|
6490
|
+
outputFormat: "json";
|
|
6491
|
+
status: hono_utils_http_status.ContentfulStatusCode;
|
|
6492
|
+
};
|
|
6493
|
+
};
|
|
6494
|
+
} & {
|
|
6495
|
+
"/": {
|
|
6496
|
+
$post: {
|
|
6497
|
+
input: {
|
|
6498
|
+
json?: any;
|
|
6499
|
+
query?: {
|
|
6500
|
+
[x: string]: string | string[];
|
|
6501
|
+
} | undefined;
|
|
6502
|
+
};
|
|
6503
|
+
output: {
|
|
6504
|
+
id: string;
|
|
6505
|
+
orgId: string;
|
|
6506
|
+
projectId: string;
|
|
6507
|
+
installationId: string;
|
|
6508
|
+
repoFullName: string;
|
|
6509
|
+
repoNodeId: string;
|
|
6510
|
+
linkedAt: string;
|
|
6511
|
+
linkedBy: string | null;
|
|
6512
|
+
};
|
|
6513
|
+
outputFormat: "json";
|
|
6514
|
+
status: 201;
|
|
6515
|
+
};
|
|
6516
|
+
};
|
|
6517
|
+
} & {
|
|
6518
|
+
"/:id": {
|
|
6519
|
+
$delete: {
|
|
6520
|
+
input: {
|
|
6521
|
+
param: {
|
|
6522
|
+
id: string;
|
|
6523
|
+
};
|
|
6524
|
+
};
|
|
6525
|
+
output: {
|
|
6526
|
+
deleted: true;
|
|
6527
|
+
id: string;
|
|
6528
|
+
};
|
|
6529
|
+
outputFormat: "json";
|
|
6530
|
+
status: hono_utils_http_status.ContentfulStatusCode;
|
|
6531
|
+
};
|
|
6532
|
+
};
|
|
6533
|
+
}, "/orgs/:orgId/projects/:projectId/github-repos"> | hono_types.MergeSchemaPath<{
|
|
6442
6534
|
"/": {
|
|
6443
6535
|
$post: {
|
|
6444
6536
|
input: {
|
|
@@ -7163,16 +7255,16 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
7163
7255
|
projectId: string;
|
|
7164
7256
|
role?: "member" | "owner" | "admin" | "viewer" | undefined;
|
|
7165
7257
|
cellScopes?: string[] | null | undefined;
|
|
7166
|
-
expiresAt?: string | undefined;
|
|
7167
7258
|
envName?: string | undefined;
|
|
7259
|
+
expiresAt?: string | undefined;
|
|
7168
7260
|
}, {
|
|
7169
7261
|
name: string;
|
|
7170
7262
|
orgId: string;
|
|
7171
7263
|
projectId: string;
|
|
7172
7264
|
role?: "member" | "owner" | "admin" | "viewer" | undefined;
|
|
7173
7265
|
cellScopes?: string[] | null | undefined;
|
|
7174
|
-
expiresAt?: string | undefined;
|
|
7175
7266
|
envName?: string | undefined;
|
|
7267
|
+
expiresAt?: string | undefined;
|
|
7176
7268
|
}>, {
|
|
7177
7269
|
error: string;
|
|
7178
7270
|
} | {
|
|
@@ -7226,7 +7318,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
7226
7318
|
projectId: string;
|
|
7227
7319
|
}, {
|
|
7228
7320
|
projectId: string;
|
|
7229
|
-
}>,
|
|
7321
|
+
}>, {
|
|
7322
|
+
url: string;
|
|
7323
|
+
}>;
|
|
7230
7324
|
installations: {
|
|
7231
7325
|
list: SchemaFn<zod.ZodObject<{
|
|
7232
7326
|
orgId: zod.ZodString;
|
|
@@ -7258,7 +7352,11 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
7258
7352
|
}, {
|
|
7259
7353
|
orgId: string;
|
|
7260
7354
|
installationId: number;
|
|
7261
|
-
}>,
|
|
7355
|
+
}>, {
|
|
7356
|
+
id: string;
|
|
7357
|
+
githubInstallationId: number;
|
|
7358
|
+
githubOrgLogin: string;
|
|
7359
|
+
}>;
|
|
7262
7360
|
};
|
|
7263
7361
|
projects: {
|
|
7264
7362
|
list: SchemaFn<zod.ZodObject<{
|
|
@@ -7270,7 +7368,14 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
7270
7368
|
}, {
|
|
7271
7369
|
orgId: string;
|
|
7272
7370
|
projectId: string;
|
|
7273
|
-
}>,
|
|
7371
|
+
}>, {
|
|
7372
|
+
id: string;
|
|
7373
|
+
installationId: string;
|
|
7374
|
+
repoFullName: string;
|
|
7375
|
+
repoNodeId: string;
|
|
7376
|
+
linkedAt: string;
|
|
7377
|
+
linkedBy: string | null;
|
|
7378
|
+
}[]>;
|
|
7274
7379
|
linkRepo: SchemaFn<zod.ZodObject<{
|
|
7275
7380
|
orgId: zod.ZodString;
|
|
7276
7381
|
projectId: zod.ZodString;
|
|
@@ -7286,7 +7391,16 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
7286
7391
|
projectId: string;
|
|
7287
7392
|
installationId: string;
|
|
7288
7393
|
repoFullName: string;
|
|
7289
|
-
}>,
|
|
7394
|
+
}>, {
|
|
7395
|
+
id: string;
|
|
7396
|
+
orgId: string;
|
|
7397
|
+
projectId: string;
|
|
7398
|
+
installationId: string;
|
|
7399
|
+
repoFullName: string;
|
|
7400
|
+
repoNodeId: string;
|
|
7401
|
+
linkedAt: string;
|
|
7402
|
+
linkedBy: string | null;
|
|
7403
|
+
}>;
|
|
7290
7404
|
unlinkRepo: SchemaFn<zod.ZodObject<{
|
|
7291
7405
|
orgId: zod.ZodString;
|
|
7292
7406
|
projectId: zod.ZodString;
|
|
@@ -7299,7 +7413,10 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
7299
7413
|
id: string;
|
|
7300
7414
|
orgId: string;
|
|
7301
7415
|
projectId: string;
|
|
7302
|
-
}>,
|
|
7416
|
+
}>, {
|
|
7417
|
+
deleted: true;
|
|
7418
|
+
id: string;
|
|
7419
|
+
}>;
|
|
7303
7420
|
};
|
|
7304
7421
|
};
|
|
7305
7422
|
blueprints: {
|
|
@@ -8341,7 +8458,6 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
8341
8458
|
envName: zod.ZodString;
|
|
8342
8459
|
entityType: zod.ZodOptional<zod.ZodString>;
|
|
8343
8460
|
state: zod.ZodOptional<zod.ZodString>;
|
|
8344
|
-
pool: zod.ZodOptional<zod.ZodString>;
|
|
8345
8461
|
limit: zod.ZodOptional<zod.ZodNumber>;
|
|
8346
8462
|
cursor: zod.ZodOptional<zod.ZodString>;
|
|
8347
8463
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -8352,7 +8468,6 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
8352
8468
|
state?: string | undefined;
|
|
8353
8469
|
entityType?: string | undefined;
|
|
8354
8470
|
cursor?: string | undefined;
|
|
8355
|
-
pool?: string | undefined;
|
|
8356
8471
|
}, {
|
|
8357
8472
|
orgId: string;
|
|
8358
8473
|
projectId: string;
|
|
@@ -8361,7 +8476,6 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
8361
8476
|
state?: string | undefined;
|
|
8362
8477
|
entityType?: string | undefined;
|
|
8363
8478
|
cursor?: string | undefined;
|
|
8364
|
-
pool?: string | undefined;
|
|
8365
8479
|
}>, {
|
|
8366
8480
|
id: string;
|
|
8367
8481
|
entityTypeName: string;
|
|
@@ -8381,18 +8495,32 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
8381
8495
|
orgId: zod.ZodString;
|
|
8382
8496
|
projectId: zod.ZodString;
|
|
8383
8497
|
envName: zod.ZodString;
|
|
8384
|
-
|
|
8498
|
+
name: zod.ZodString;
|
|
8385
8499
|
}, "strip", zod.ZodTypeAny, {
|
|
8386
|
-
|
|
8500
|
+
name: string;
|
|
8387
8501
|
orgId: string;
|
|
8388
8502
|
projectId: string;
|
|
8389
8503
|
envName: string;
|
|
8390
8504
|
}, {
|
|
8391
|
-
|
|
8505
|
+
name: string;
|
|
8392
8506
|
orgId: string;
|
|
8393
8507
|
projectId: string;
|
|
8394
8508
|
envName: string;
|
|
8395
|
-
}>,
|
|
8509
|
+
}>, {
|
|
8510
|
+
id: string;
|
|
8511
|
+
entityTypeName: string;
|
|
8512
|
+
name: string;
|
|
8513
|
+
state: string;
|
|
8514
|
+
properties: hono_utils_types.JSONValue;
|
|
8515
|
+
labels: hono_utils_types.JSONValue;
|
|
8516
|
+
lastSyncedAt: string | null;
|
|
8517
|
+
syncSource: string | null;
|
|
8518
|
+
createdAt: string;
|
|
8519
|
+
updatedAt: string;
|
|
8520
|
+
orgId: string;
|
|
8521
|
+
projectId: string;
|
|
8522
|
+
envId: string;
|
|
8523
|
+
}>;
|
|
8396
8524
|
create: SchemaFn<zod.ZodObject<{
|
|
8397
8525
|
kind: zod.ZodLiteral<"Entity">;
|
|
8398
8526
|
entityType: zod.ZodString;
|
|
@@ -8445,50 +8573,57 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
8445
8573
|
orgId: zod.ZodString;
|
|
8446
8574
|
projectId: zod.ZodString;
|
|
8447
8575
|
envName: zod.ZodString;
|
|
8448
|
-
|
|
8576
|
+
name: zod.ZodString;
|
|
8449
8577
|
}, "strip", zod.ZodTypeAny, {
|
|
8450
|
-
|
|
8578
|
+
name: string;
|
|
8451
8579
|
orgId: string;
|
|
8452
8580
|
projectId: string;
|
|
8453
8581
|
envName: string;
|
|
8454
8582
|
}, {
|
|
8455
|
-
|
|
8583
|
+
name: string;
|
|
8456
8584
|
orgId: string;
|
|
8457
8585
|
projectId: string;
|
|
8458
8586
|
envName: string;
|
|
8459
|
-
}>,
|
|
8587
|
+
}>, {
|
|
8588
|
+
deleted: true;
|
|
8589
|
+
name: string;
|
|
8590
|
+
}>;
|
|
8460
8591
|
setMetric: SchemaFn<zod.ZodObject<{
|
|
8461
8592
|
orgId: zod.ZodString;
|
|
8462
8593
|
projectId: zod.ZodString;
|
|
8463
8594
|
envName: zod.ZodString;
|
|
8464
|
-
|
|
8595
|
+
name: zod.ZodString;
|
|
8465
8596
|
metricName: zod.ZodString;
|
|
8466
8597
|
value: zod.ZodNumber;
|
|
8467
8598
|
}, "strip", zod.ZodTypeAny, {
|
|
8599
|
+
name: string;
|
|
8468
8600
|
value: number;
|
|
8469
|
-
id: string;
|
|
8470
8601
|
orgId: string;
|
|
8471
8602
|
projectId: string;
|
|
8472
8603
|
envName: string;
|
|
8473
8604
|
metricName: string;
|
|
8474
8605
|
}, {
|
|
8606
|
+
name: string;
|
|
8475
8607
|
value: number;
|
|
8476
|
-
id: string;
|
|
8477
8608
|
orgId: string;
|
|
8478
8609
|
projectId: string;
|
|
8479
8610
|
envName: string;
|
|
8480
8611
|
metricName: string;
|
|
8481
|
-
}>,
|
|
8612
|
+
}>, {
|
|
8613
|
+
entityName: string;
|
|
8614
|
+
metricName: string;
|
|
8615
|
+
value: any;
|
|
8616
|
+
}>;
|
|
8482
8617
|
trigger: SchemaFn<zod.ZodObject<{
|
|
8483
8618
|
orgId: zod.ZodString;
|
|
8484
8619
|
projectId: zod.ZodString;
|
|
8485
8620
|
envName: zod.ZodString;
|
|
8486
|
-
|
|
8621
|
+
name: zod.ZodString;
|
|
8487
8622
|
actionName: zod.ZodString;
|
|
8488
8623
|
parameters: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodUnknown>>;
|
|
8489
8624
|
recommendations: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
|
|
8490
8625
|
}, "strip", zod.ZodTypeAny, {
|
|
8491
|
-
|
|
8626
|
+
name: string;
|
|
8492
8627
|
orgId: string;
|
|
8493
8628
|
projectId: string;
|
|
8494
8629
|
envName: string;
|
|
@@ -8496,84 +8631,128 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
8496
8631
|
parameters?: Record<string, unknown> | undefined;
|
|
8497
8632
|
recommendations?: Record<string, string> | undefined;
|
|
8498
8633
|
}, {
|
|
8499
|
-
|
|
8634
|
+
name: string;
|
|
8500
8635
|
orgId: string;
|
|
8501
8636
|
projectId: string;
|
|
8502
8637
|
envName: string;
|
|
8503
8638
|
actionName: string;
|
|
8504
8639
|
parameters?: Record<string, unknown> | undefined;
|
|
8505
8640
|
recommendations?: Record<string, string> | undefined;
|
|
8506
|
-
}>,
|
|
8641
|
+
}>, {
|
|
8642
|
+
parameters: hono_utils_types.JSONValue;
|
|
8643
|
+
status: "failed" | "pending" | "running" | "succeeded" | "cancelled" | "dispatching" | "blocked";
|
|
8644
|
+
id: string;
|
|
8645
|
+
createdAt: string;
|
|
8646
|
+
error: string | null;
|
|
8647
|
+
metadata: hono_utils_types.JSONValue;
|
|
8648
|
+
output: hono_utils_types.JSONValue;
|
|
8649
|
+
orgId: string;
|
|
8650
|
+
projectId: string;
|
|
8651
|
+
envId: string;
|
|
8652
|
+
recommendations: hono_utils_types.JSONValue;
|
|
8653
|
+
entityId: string | null;
|
|
8654
|
+
actionName: string;
|
|
8655
|
+
triggeredBy: string;
|
|
8656
|
+
callbackToken: string;
|
|
8657
|
+
callbackTokenExpiresAt: string;
|
|
8658
|
+
operationEntityId: string | null;
|
|
8659
|
+
startedAt: string | null;
|
|
8660
|
+
completedAt: string | null;
|
|
8661
|
+
}>;
|
|
8507
8662
|
getMetrics: SchemaFn<zod.ZodObject<{
|
|
8508
8663
|
orgId: zod.ZodString;
|
|
8509
8664
|
projectId: zod.ZodString;
|
|
8510
8665
|
envName: zod.ZodString;
|
|
8511
|
-
|
|
8666
|
+
name: zod.ZodString;
|
|
8512
8667
|
}, "strip", zod.ZodTypeAny, {
|
|
8668
|
+
name: string;
|
|
8513
8669
|
orgId: string;
|
|
8514
8670
|
projectId: string;
|
|
8515
8671
|
envName: string;
|
|
8516
|
-
entityId: string;
|
|
8517
8672
|
}, {
|
|
8673
|
+
name: string;
|
|
8518
8674
|
orgId: string;
|
|
8519
8675
|
projectId: string;
|
|
8520
8676
|
envName: string;
|
|
8521
|
-
|
|
8522
|
-
|
|
8677
|
+
}>, {
|
|
8678
|
+
[x: string]: number | null;
|
|
8679
|
+
}>;
|
|
8523
8680
|
getMetricsBatch: SchemaFn<zod.ZodObject<{
|
|
8524
8681
|
orgId: zod.ZodString;
|
|
8525
8682
|
projectId: zod.ZodString;
|
|
8526
8683
|
envName: zod.ZodString;
|
|
8527
|
-
|
|
8684
|
+
names: zod.ZodArray<zod.ZodString, "many">;
|
|
8528
8685
|
}, "strip", zod.ZodTypeAny, {
|
|
8529
8686
|
orgId: string;
|
|
8530
8687
|
projectId: string;
|
|
8531
8688
|
envName: string;
|
|
8532
|
-
|
|
8689
|
+
names: string[];
|
|
8533
8690
|
}, {
|
|
8534
8691
|
orgId: string;
|
|
8535
8692
|
projectId: string;
|
|
8536
8693
|
envName: string;
|
|
8537
|
-
|
|
8538
|
-
}>,
|
|
8694
|
+
names: string[];
|
|
8695
|
+
}>, {}>;
|
|
8539
8696
|
getRelationships: SchemaFn<zod.ZodObject<{
|
|
8540
8697
|
orgId: zod.ZodString;
|
|
8541
8698
|
projectId: zod.ZodString;
|
|
8542
8699
|
envName: zod.ZodString;
|
|
8543
|
-
|
|
8700
|
+
name: zod.ZodString;
|
|
8544
8701
|
}, "strip", zod.ZodTypeAny, {
|
|
8702
|
+
name: string;
|
|
8545
8703
|
orgId: string;
|
|
8546
8704
|
projectId: string;
|
|
8547
8705
|
envName: string;
|
|
8548
|
-
entityId: string;
|
|
8549
8706
|
}, {
|
|
8707
|
+
name: string;
|
|
8550
8708
|
orgId: string;
|
|
8551
8709
|
projectId: string;
|
|
8552
8710
|
envName: string;
|
|
8553
|
-
|
|
8554
|
-
|
|
8711
|
+
}>, {
|
|
8712
|
+
fromEntityName: string;
|
|
8713
|
+
toEntityName: string;
|
|
8714
|
+
id: string;
|
|
8715
|
+
relationshipTypeName: string;
|
|
8716
|
+
fromEntityId: string;
|
|
8717
|
+
toEntityId: string;
|
|
8718
|
+
state: string;
|
|
8719
|
+
properties: hono_utils_types.JSONValue;
|
|
8720
|
+
labels: hono_utils_types.JSONValue;
|
|
8721
|
+
createdAt: string;
|
|
8722
|
+
updatedAt: string;
|
|
8723
|
+
projectId: string;
|
|
8724
|
+
orgId: string;
|
|
8725
|
+
envId: string;
|
|
8726
|
+
deletionScheduledAt: string | null;
|
|
8727
|
+
deletionGracePeriodSeconds: number | null;
|
|
8728
|
+
}[]>;
|
|
8555
8729
|
syncStamp: SchemaFn<zod.ZodObject<{
|
|
8556
8730
|
orgId: zod.ZodString;
|
|
8557
8731
|
projectId: zod.ZodString;
|
|
8558
8732
|
envName: zod.ZodString;
|
|
8559
|
-
|
|
8733
|
+
name: zod.ZodString;
|
|
8560
8734
|
source: zod.ZodString;
|
|
8561
8735
|
observedAt: zod.ZodOptional<zod.ZodString>;
|
|
8562
8736
|
}, "strip", zod.ZodTypeAny, {
|
|
8563
|
-
|
|
8737
|
+
name: string;
|
|
8564
8738
|
orgId: string;
|
|
8565
8739
|
projectId: string;
|
|
8566
8740
|
envName: string;
|
|
8567
8741
|
source: string;
|
|
8568
8742
|
observedAt?: string | undefined;
|
|
8569
8743
|
}, {
|
|
8570
|
-
|
|
8744
|
+
name: string;
|
|
8571
8745
|
orgId: string;
|
|
8572
8746
|
projectId: string;
|
|
8573
8747
|
envName: string;
|
|
8574
8748
|
source: string;
|
|
8575
8749
|
observedAt?: string | undefined;
|
|
8576
|
-
}>,
|
|
8750
|
+
}>, {
|
|
8751
|
+
id: string;
|
|
8752
|
+
name: string;
|
|
8753
|
+
lastSyncedAt: string | null;
|
|
8754
|
+
syncSource: string | null;
|
|
8755
|
+
}>;
|
|
8577
8756
|
};
|
|
8578
8757
|
cells: {
|
|
8579
8758
|
list: SchemaFn<zod.ZodObject<{
|
|
@@ -9304,8 +9483,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
9304
9483
|
state: zod.ZodOptional<zod.ZodString>;
|
|
9305
9484
|
fromEntity: zod.ZodOptional<zod.ZodString>;
|
|
9306
9485
|
toEntity: zod.ZodOptional<zod.ZodString>;
|
|
9307
|
-
|
|
9308
|
-
|
|
9486
|
+
fromEntityCell: zod.ZodOptional<zod.ZodString>;
|
|
9487
|
+
toEntityCell: zod.ZodOptional<zod.ZodString>;
|
|
9309
9488
|
limit: zod.ZodOptional<zod.ZodNumber>;
|
|
9310
9489
|
}, "strip", zod.ZodTypeAny, {
|
|
9311
9490
|
orgId: string;
|
|
@@ -9316,8 +9495,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
9316
9495
|
relationshipType?: string | undefined;
|
|
9317
9496
|
fromEntity?: string | undefined;
|
|
9318
9497
|
toEntity?: string | undefined;
|
|
9319
|
-
|
|
9320
|
-
|
|
9498
|
+
fromEntityCell?: string | undefined;
|
|
9499
|
+
toEntityCell?: string | undefined;
|
|
9321
9500
|
}, {
|
|
9322
9501
|
orgId: string;
|
|
9323
9502
|
projectId: string;
|
|
@@ -9327,9 +9506,11 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
9327
9506
|
relationshipType?: string | undefined;
|
|
9328
9507
|
fromEntity?: string | undefined;
|
|
9329
9508
|
toEntity?: string | undefined;
|
|
9330
|
-
|
|
9331
|
-
|
|
9509
|
+
fromEntityCell?: string | undefined;
|
|
9510
|
+
toEntityCell?: string | undefined;
|
|
9332
9511
|
}>, {
|
|
9512
|
+
fromEntityName: string;
|
|
9513
|
+
toEntityName: string;
|
|
9333
9514
|
id: string;
|
|
9334
9515
|
relationshipTypeName: string;
|
|
9335
9516
|
fromEntityId: string;
|
|
@@ -9607,8 +9788,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
9607
9788
|
};
|
|
9608
9789
|
trigger: {
|
|
9609
9790
|
type: "webhook";
|
|
9610
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
9611
9791
|
url: string;
|
|
9792
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
9612
9793
|
headers?: {
|
|
9613
9794
|
[x: string]: string;
|
|
9614
9795
|
} | undefined;
|
|
@@ -9666,8 +9847,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
9666
9847
|
value?: hono_utils_types.JSONValue | undefined;
|
|
9667
9848
|
} | undefined;
|
|
9668
9849
|
}[];
|
|
9669
|
-
body?: string | undefined;
|
|
9670
9850
|
webhookSecret?: string | undefined;
|
|
9851
|
+
body?: string | undefined;
|
|
9671
9852
|
labels?: string[] | undefined;
|
|
9672
9853
|
reviewers?: string[] | undefined;
|
|
9673
9854
|
teamReviewers?: string[] | undefined;
|
|
@@ -9745,8 +9926,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
9745
9926
|
value?: hono_utils_types.JSONValue | undefined;
|
|
9746
9927
|
} | undefined;
|
|
9747
9928
|
}[];
|
|
9748
|
-
body?: string | undefined;
|
|
9749
9929
|
webhookSecret?: string | undefined;
|
|
9930
|
+
body?: string | undefined;
|
|
9750
9931
|
labels?: string[] | undefined;
|
|
9751
9932
|
reviewers?: string[] | undefined;
|
|
9752
9933
|
teamReviewers?: string[] | undefined;
|
|
@@ -9777,11 +9958,11 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
9777
9958
|
envOverrides: {
|
|
9778
9959
|
[x: string]: {
|
|
9779
9960
|
type: "webhook";
|
|
9780
|
-
|
|
9961
|
+
url?: string | undefined;
|
|
9781
9962
|
headers?: {
|
|
9782
9963
|
[x: string]: string;
|
|
9783
9964
|
} | undefined;
|
|
9784
|
-
|
|
9965
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
9785
9966
|
auth?: {
|
|
9786
9967
|
type: "bearer";
|
|
9787
9968
|
token: string;
|
|
@@ -9810,9 +9991,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
9810
9991
|
} | undefined;
|
|
9811
9992
|
} | {
|
|
9812
9993
|
type: "pull-request";
|
|
9813
|
-
body?: string | undefined;
|
|
9814
9994
|
repo?: string | undefined;
|
|
9815
9995
|
webhookSecret?: string | undefined;
|
|
9996
|
+
body?: string | undefined;
|
|
9816
9997
|
title?: string | undefined;
|
|
9817
9998
|
auth?: {
|
|
9818
9999
|
type: "token";
|
|
@@ -9913,8 +10094,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
9913
10094
|
value?: hono_utils_types.JSONValue | undefined;
|
|
9914
10095
|
} | undefined;
|
|
9915
10096
|
}[];
|
|
9916
|
-
body?: string | undefined;
|
|
9917
10097
|
webhookSecret?: string | undefined;
|
|
10098
|
+
body?: string | undefined;
|
|
9918
10099
|
labels?: string[] | undefined;
|
|
9919
10100
|
reviewers?: string[] | undefined;
|
|
9920
10101
|
teamReviewers?: string[] | undefined;
|
|
@@ -10110,8 +10291,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
10110
10291
|
};
|
|
10111
10292
|
trigger: {
|
|
10112
10293
|
type: "webhook";
|
|
10113
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
10114
10294
|
url: string;
|
|
10295
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
10115
10296
|
headers?: {
|
|
10116
10297
|
[x: string]: string;
|
|
10117
10298
|
} | undefined;
|
|
@@ -10169,8 +10350,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
10169
10350
|
value?: hono_utils_types.JSONValue | undefined;
|
|
10170
10351
|
} | undefined;
|
|
10171
10352
|
}[];
|
|
10172
|
-
body?: string | undefined;
|
|
10173
10353
|
webhookSecret?: string | undefined;
|
|
10354
|
+
body?: string | undefined;
|
|
10174
10355
|
labels?: string[] | undefined;
|
|
10175
10356
|
reviewers?: string[] | undefined;
|
|
10176
10357
|
teamReviewers?: string[] | undefined;
|
|
@@ -10248,8 +10429,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
10248
10429
|
value?: hono_utils_types.JSONValue | undefined;
|
|
10249
10430
|
} | undefined;
|
|
10250
10431
|
}[];
|
|
10251
|
-
body?: string | undefined;
|
|
10252
10432
|
webhookSecret?: string | undefined;
|
|
10433
|
+
body?: string | undefined;
|
|
10253
10434
|
labels?: string[] | undefined;
|
|
10254
10435
|
reviewers?: string[] | undefined;
|
|
10255
10436
|
teamReviewers?: string[] | undefined;
|
|
@@ -10280,11 +10461,11 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
10280
10461
|
envOverrides: {
|
|
10281
10462
|
[x: string]: {
|
|
10282
10463
|
type: "webhook";
|
|
10283
|
-
|
|
10464
|
+
url?: string | undefined;
|
|
10284
10465
|
headers?: {
|
|
10285
10466
|
[x: string]: string;
|
|
10286
10467
|
} | undefined;
|
|
10287
|
-
|
|
10468
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
10288
10469
|
auth?: {
|
|
10289
10470
|
type: "bearer";
|
|
10290
10471
|
token: string;
|
|
@@ -10313,9 +10494,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
10313
10494
|
} | undefined;
|
|
10314
10495
|
} | {
|
|
10315
10496
|
type: "pull-request";
|
|
10316
|
-
body?: string | undefined;
|
|
10317
10497
|
repo?: string | undefined;
|
|
10318
10498
|
webhookSecret?: string | undefined;
|
|
10499
|
+
body?: string | undefined;
|
|
10319
10500
|
title?: string | undefined;
|
|
10320
10501
|
auth?: {
|
|
10321
10502
|
type: "token";
|
|
@@ -10416,8 +10597,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
10416
10597
|
value?: hono_utils_types.JSONValue | undefined;
|
|
10417
10598
|
} | undefined;
|
|
10418
10599
|
}[];
|
|
10419
|
-
body?: string | undefined;
|
|
10420
10600
|
webhookSecret?: string | undefined;
|
|
10601
|
+
body?: string | undefined;
|
|
10421
10602
|
labels?: string[] | undefined;
|
|
10422
10603
|
reviewers?: string[] | undefined;
|
|
10423
10604
|
teamReviewers?: string[] | undefined;
|
|
@@ -11013,8 +11194,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11013
11194
|
}>>;
|
|
11014
11195
|
}, "strip", zod.ZodTypeAny, {
|
|
11015
11196
|
type: "webhook";
|
|
11016
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
11017
11197
|
url: string;
|
|
11198
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
11018
11199
|
headers?: Record<string, string> | undefined;
|
|
11019
11200
|
auth?: {
|
|
11020
11201
|
type: "bearer";
|
|
@@ -11041,8 +11222,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11041
11222
|
}, {
|
|
11042
11223
|
type: "webhook";
|
|
11043
11224
|
url: string;
|
|
11044
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
11045
11225
|
headers?: Record<string, string> | undefined;
|
|
11226
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
11046
11227
|
auth?: {
|
|
11047
11228
|
type: "bearer";
|
|
11048
11229
|
token: string;
|
|
@@ -11240,8 +11421,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11240
11421
|
value?: unknown;
|
|
11241
11422
|
} | undefined;
|
|
11242
11423
|
}[];
|
|
11243
|
-
body?: string | undefined;
|
|
11244
11424
|
webhookSecret?: string | undefined;
|
|
11425
|
+
body?: string | undefined;
|
|
11245
11426
|
labels?: string[] | undefined;
|
|
11246
11427
|
reviewers?: string[] | undefined;
|
|
11247
11428
|
teamReviewers?: string[] | undefined;
|
|
@@ -11278,8 +11459,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11278
11459
|
} | undefined;
|
|
11279
11460
|
operation?: "replace" | "patch" | undefined;
|
|
11280
11461
|
}[];
|
|
11281
|
-
body?: string | undefined;
|
|
11282
11462
|
webhookSecret?: string | undefined;
|
|
11463
|
+
body?: string | undefined;
|
|
11283
11464
|
base?: string | undefined;
|
|
11284
11465
|
labels?: string[] | undefined;
|
|
11285
11466
|
reviewers?: string[] | undefined;
|
|
@@ -11533,8 +11714,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11533
11714
|
value?: unknown;
|
|
11534
11715
|
} | undefined;
|
|
11535
11716
|
}[];
|
|
11536
|
-
body?: string | undefined;
|
|
11537
11717
|
webhookSecret?: string | undefined;
|
|
11718
|
+
body?: string | undefined;
|
|
11538
11719
|
labels?: string[] | undefined;
|
|
11539
11720
|
reviewers?: string[] | undefined;
|
|
11540
11721
|
teamReviewers?: string[] | undefined;
|
|
@@ -11564,8 +11745,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11564
11745
|
} | undefined;
|
|
11565
11746
|
operation?: "replace" | "patch" | undefined;
|
|
11566
11747
|
}[];
|
|
11567
|
-
body?: string | undefined;
|
|
11568
11748
|
webhookSecret?: string | undefined;
|
|
11749
|
+
body?: string | undefined;
|
|
11569
11750
|
base?: string | undefined;
|
|
11570
11751
|
labels?: string[] | undefined;
|
|
11571
11752
|
reviewers?: string[] | undefined;
|
|
@@ -11620,8 +11801,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11620
11801
|
value?: unknown;
|
|
11621
11802
|
} | undefined;
|
|
11622
11803
|
}[];
|
|
11623
|
-
body?: string | undefined;
|
|
11624
11804
|
webhookSecret?: string | undefined;
|
|
11805
|
+
body?: string | undefined;
|
|
11625
11806
|
labels?: string[] | undefined;
|
|
11626
11807
|
reviewers?: string[] | undefined;
|
|
11627
11808
|
teamReviewers?: string[] | undefined;
|
|
@@ -11668,8 +11849,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11668
11849
|
} | undefined;
|
|
11669
11850
|
operation?: "replace" | "patch" | undefined;
|
|
11670
11851
|
}[];
|
|
11671
|
-
body?: string | undefined;
|
|
11672
11852
|
webhookSecret?: string | undefined;
|
|
11853
|
+
body?: string | undefined;
|
|
11673
11854
|
base?: string | undefined;
|
|
11674
11855
|
labels?: string[] | undefined;
|
|
11675
11856
|
reviewers?: string[] | undefined;
|
|
@@ -11770,8 +11951,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11770
11951
|
type: "noop";
|
|
11771
11952
|
}>]>, {
|
|
11772
11953
|
type: "webhook";
|
|
11773
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
11774
11954
|
url: string;
|
|
11955
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
11775
11956
|
headers?: Record<string, string> | undefined;
|
|
11776
11957
|
auth?: {
|
|
11777
11958
|
type: "bearer";
|
|
@@ -11823,8 +12004,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11823
12004
|
value?: unknown;
|
|
11824
12005
|
} | undefined;
|
|
11825
12006
|
}[];
|
|
11826
|
-
body?: string | undefined;
|
|
11827
12007
|
webhookSecret?: string | undefined;
|
|
12008
|
+
body?: string | undefined;
|
|
11828
12009
|
labels?: string[] | undefined;
|
|
11829
12010
|
reviewers?: string[] | undefined;
|
|
11830
12011
|
teamReviewers?: string[] | undefined;
|
|
@@ -11896,8 +12077,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11896
12077
|
value?: unknown;
|
|
11897
12078
|
} | undefined;
|
|
11898
12079
|
}[];
|
|
11899
|
-
body?: string | undefined;
|
|
11900
12080
|
webhookSecret?: string | undefined;
|
|
12081
|
+
body?: string | undefined;
|
|
11901
12082
|
labels?: string[] | undefined;
|
|
11902
12083
|
reviewers?: string[] | undefined;
|
|
11903
12084
|
teamReviewers?: string[] | undefined;
|
|
@@ -11925,8 +12106,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11925
12106
|
}, {
|
|
11926
12107
|
type: "webhook";
|
|
11927
12108
|
url: string;
|
|
11928
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
11929
12109
|
headers?: Record<string, string> | undefined;
|
|
12110
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
11930
12111
|
auth?: {
|
|
11931
12112
|
type: "bearer";
|
|
11932
12113
|
token: string;
|
|
@@ -11976,8 +12157,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
11976
12157
|
} | undefined;
|
|
11977
12158
|
operation?: "replace" | "patch" | undefined;
|
|
11978
12159
|
}[];
|
|
11979
|
-
body?: string | undefined;
|
|
11980
12160
|
webhookSecret?: string | undefined;
|
|
12161
|
+
body?: string | undefined;
|
|
11981
12162
|
base?: string | undefined;
|
|
11982
12163
|
labels?: string[] | undefined;
|
|
11983
12164
|
reviewers?: string[] | undefined;
|
|
@@ -12048,8 +12229,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
12048
12229
|
} | undefined;
|
|
12049
12230
|
operation?: "replace" | "patch" | undefined;
|
|
12050
12231
|
}[];
|
|
12051
|
-
body?: string | undefined;
|
|
12052
12232
|
webhookSecret?: string | undefined;
|
|
12233
|
+
body?: string | undefined;
|
|
12053
12234
|
base?: string | undefined;
|
|
12054
12235
|
labels?: string[] | undefined;
|
|
12055
12236
|
reviewers?: string[] | undefined;
|
|
@@ -12144,9 +12325,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
12144
12325
|
}>>;
|
|
12145
12326
|
}, "strip", zod.ZodTypeAny, {
|
|
12146
12327
|
type: "webhook";
|
|
12147
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
12148
|
-
headers?: Record<string, string> | undefined;
|
|
12149
12328
|
url?: string | undefined;
|
|
12329
|
+
headers?: Record<string, string> | undefined;
|
|
12330
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
12150
12331
|
auth?: {
|
|
12151
12332
|
type: "bearer";
|
|
12152
12333
|
token: string;
|
|
@@ -12171,9 +12352,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
12171
12352
|
} | undefined;
|
|
12172
12353
|
}, {
|
|
12173
12354
|
type: "webhook";
|
|
12174
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
12175
|
-
headers?: Record<string, string> | undefined;
|
|
12176
12355
|
url?: string | undefined;
|
|
12356
|
+
headers?: Record<string, string> | undefined;
|
|
12357
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
12177
12358
|
auth?: {
|
|
12178
12359
|
type: "bearer";
|
|
12179
12360
|
token: string;
|
|
@@ -12342,9 +12523,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
12342
12523
|
}>>;
|
|
12343
12524
|
}, "strip", zod.ZodTypeAny, {
|
|
12344
12525
|
type: "pull-request";
|
|
12345
|
-
body?: string | undefined;
|
|
12346
12526
|
repo?: string | undefined;
|
|
12347
12527
|
webhookSecret?: string | undefined;
|
|
12528
|
+
body?: string | undefined;
|
|
12348
12529
|
title?: string | undefined;
|
|
12349
12530
|
auth?: {
|
|
12350
12531
|
type: "token";
|
|
@@ -12380,9 +12561,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
12380
12561
|
} | undefined;
|
|
12381
12562
|
}, {
|
|
12382
12563
|
type: "pull-request";
|
|
12383
|
-
body?: string | undefined;
|
|
12384
12564
|
repo?: string | undefined;
|
|
12385
12565
|
webhookSecret?: string | undefined;
|
|
12566
|
+
body?: string | undefined;
|
|
12386
12567
|
title?: string | undefined;
|
|
12387
12568
|
auth?: {
|
|
12388
12569
|
type: "token";
|
|
@@ -12659,8 +12840,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
12659
12840
|
value?: unknown;
|
|
12660
12841
|
} | undefined;
|
|
12661
12842
|
}[];
|
|
12662
|
-
body?: string | undefined;
|
|
12663
12843
|
webhookSecret?: string | undefined;
|
|
12844
|
+
body?: string | undefined;
|
|
12664
12845
|
labels?: string[] | undefined;
|
|
12665
12846
|
reviewers?: string[] | undefined;
|
|
12666
12847
|
teamReviewers?: string[] | undefined;
|
|
@@ -12690,8 +12871,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
12690
12871
|
} | undefined;
|
|
12691
12872
|
operation?: "replace" | "patch" | undefined;
|
|
12692
12873
|
}[];
|
|
12693
|
-
body?: string | undefined;
|
|
12694
12874
|
webhookSecret?: string | undefined;
|
|
12875
|
+
body?: string | undefined;
|
|
12695
12876
|
base?: string | undefined;
|
|
12696
12877
|
labels?: string[] | undefined;
|
|
12697
12878
|
reviewers?: string[] | undefined;
|
|
@@ -12745,8 +12926,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
12745
12926
|
value?: unknown;
|
|
12746
12927
|
} | undefined;
|
|
12747
12928
|
}[];
|
|
12748
|
-
body?: string | undefined;
|
|
12749
12929
|
webhookSecret?: string | undefined;
|
|
12930
|
+
body?: string | undefined;
|
|
12750
12931
|
labels?: string[] | undefined;
|
|
12751
12932
|
reviewers?: string[] | undefined;
|
|
12752
12933
|
teamReviewers?: string[] | undefined;
|
|
@@ -12794,8 +12975,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
12794
12975
|
} | undefined;
|
|
12795
12976
|
operation?: "replace" | "patch" | undefined;
|
|
12796
12977
|
}[];
|
|
12797
|
-
body?: string | undefined;
|
|
12798
12978
|
webhookSecret?: string | undefined;
|
|
12979
|
+
body?: string | undefined;
|
|
12799
12980
|
base?: string | undefined;
|
|
12800
12981
|
labels?: string[] | undefined;
|
|
12801
12982
|
reviewers?: string[] | undefined;
|
|
@@ -13036,8 +13217,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13036
13217
|
};
|
|
13037
13218
|
trigger: {
|
|
13038
13219
|
type: "webhook";
|
|
13039
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
13040
13220
|
url: string;
|
|
13221
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
13041
13222
|
headers?: Record<string, string> | undefined;
|
|
13042
13223
|
auth?: {
|
|
13043
13224
|
type: "bearer";
|
|
@@ -13089,8 +13270,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13089
13270
|
value?: unknown;
|
|
13090
13271
|
} | undefined;
|
|
13091
13272
|
}[];
|
|
13092
|
-
body?: string | undefined;
|
|
13093
13273
|
webhookSecret?: string | undefined;
|
|
13274
|
+
body?: string | undefined;
|
|
13094
13275
|
labels?: string[] | undefined;
|
|
13095
13276
|
reviewers?: string[] | undefined;
|
|
13096
13277
|
teamReviewers?: string[] | undefined;
|
|
@@ -13162,8 +13343,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13162
13343
|
value?: unknown;
|
|
13163
13344
|
} | undefined;
|
|
13164
13345
|
}[];
|
|
13165
|
-
body?: string | undefined;
|
|
13166
13346
|
webhookSecret?: string | undefined;
|
|
13347
|
+
body?: string | undefined;
|
|
13167
13348
|
labels?: string[] | undefined;
|
|
13168
13349
|
reviewers?: string[] | undefined;
|
|
13169
13350
|
teamReviewers?: string[] | undefined;
|
|
@@ -13193,9 +13374,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13193
13374
|
displayName?: string | undefined;
|
|
13194
13375
|
envOverrides?: Record<string, {
|
|
13195
13376
|
type: "webhook";
|
|
13196
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
13197
|
-
headers?: Record<string, string> | undefined;
|
|
13198
13377
|
url?: string | undefined;
|
|
13378
|
+
headers?: Record<string, string> | undefined;
|
|
13379
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
13199
13380
|
auth?: {
|
|
13200
13381
|
type: "bearer";
|
|
13201
13382
|
token: string;
|
|
@@ -13220,9 +13401,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13220
13401
|
} | undefined;
|
|
13221
13402
|
} | {
|
|
13222
13403
|
type: "pull-request";
|
|
13223
|
-
body?: string | undefined;
|
|
13224
13404
|
repo?: string | undefined;
|
|
13225
13405
|
webhookSecret?: string | undefined;
|
|
13406
|
+
body?: string | undefined;
|
|
13226
13407
|
title?: string | undefined;
|
|
13227
13408
|
auth?: {
|
|
13228
13409
|
type: "token";
|
|
@@ -13317,8 +13498,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13317
13498
|
value?: unknown;
|
|
13318
13499
|
} | undefined;
|
|
13319
13500
|
}[];
|
|
13320
|
-
body?: string | undefined;
|
|
13321
13501
|
webhookSecret?: string | undefined;
|
|
13502
|
+
body?: string | undefined;
|
|
13322
13503
|
labels?: string[] | undefined;
|
|
13323
13504
|
reviewers?: string[] | undefined;
|
|
13324
13505
|
teamReviewers?: string[] | undefined;
|
|
@@ -13460,8 +13641,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13460
13641
|
trigger: {
|
|
13461
13642
|
type: "webhook";
|
|
13462
13643
|
url: string;
|
|
13463
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
13464
13644
|
headers?: Record<string, string> | undefined;
|
|
13645
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
13465
13646
|
auth?: {
|
|
13466
13647
|
type: "bearer";
|
|
13467
13648
|
token: string;
|
|
@@ -13511,8 +13692,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13511
13692
|
} | undefined;
|
|
13512
13693
|
operation?: "replace" | "patch" | undefined;
|
|
13513
13694
|
}[];
|
|
13514
|
-
body?: string | undefined;
|
|
13515
13695
|
webhookSecret?: string | undefined;
|
|
13696
|
+
body?: string | undefined;
|
|
13516
13697
|
base?: string | undefined;
|
|
13517
13698
|
labels?: string[] | undefined;
|
|
13518
13699
|
reviewers?: string[] | undefined;
|
|
@@ -13583,8 +13764,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13583
13764
|
} | undefined;
|
|
13584
13765
|
operation?: "replace" | "patch" | undefined;
|
|
13585
13766
|
}[];
|
|
13586
|
-
body?: string | undefined;
|
|
13587
13767
|
webhookSecret?: string | undefined;
|
|
13768
|
+
body?: string | undefined;
|
|
13588
13769
|
base?: string | undefined;
|
|
13589
13770
|
labels?: string[] | undefined;
|
|
13590
13771
|
reviewers?: string[] | undefined;
|
|
@@ -13638,9 +13819,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13638
13819
|
}[] | undefined;
|
|
13639
13820
|
envOverrides?: Record<string, {
|
|
13640
13821
|
type: "webhook";
|
|
13641
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
13642
|
-
headers?: Record<string, string> | undefined;
|
|
13643
13822
|
url?: string | undefined;
|
|
13823
|
+
headers?: Record<string, string> | undefined;
|
|
13824
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
13644
13825
|
auth?: {
|
|
13645
13826
|
type: "bearer";
|
|
13646
13827
|
token: string;
|
|
@@ -13665,9 +13846,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13665
13846
|
} | undefined;
|
|
13666
13847
|
} | {
|
|
13667
13848
|
type: "pull-request";
|
|
13668
|
-
body?: string | undefined;
|
|
13669
13849
|
repo?: string | undefined;
|
|
13670
13850
|
webhookSecret?: string | undefined;
|
|
13851
|
+
body?: string | undefined;
|
|
13671
13852
|
title?: string | undefined;
|
|
13672
13853
|
auth?: {
|
|
13673
13854
|
type: "token";
|
|
@@ -13761,8 +13942,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13761
13942
|
} | undefined;
|
|
13762
13943
|
operation?: "replace" | "patch" | undefined;
|
|
13763
13944
|
}[];
|
|
13764
|
-
body?: string | undefined;
|
|
13765
13945
|
webhookSecret?: string | undefined;
|
|
13946
|
+
body?: string | undefined;
|
|
13766
13947
|
base?: string | undefined;
|
|
13767
13948
|
labels?: string[] | undefined;
|
|
13768
13949
|
reviewers?: string[] | undefined;
|
|
@@ -13943,8 +14124,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
13943
14124
|
};
|
|
13944
14125
|
trigger: {
|
|
13945
14126
|
type: "webhook";
|
|
13946
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
13947
14127
|
url: string;
|
|
14128
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
13948
14129
|
headers?: {
|
|
13949
14130
|
[x: string]: string;
|
|
13950
14131
|
} | undefined;
|
|
@@ -14002,8 +14183,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
14002
14183
|
value?: hono_utils_types.JSONValue | undefined;
|
|
14003
14184
|
} | undefined;
|
|
14004
14185
|
}[];
|
|
14005
|
-
body?: string | undefined;
|
|
14006
14186
|
webhookSecret?: string | undefined;
|
|
14187
|
+
body?: string | undefined;
|
|
14007
14188
|
labels?: string[] | undefined;
|
|
14008
14189
|
reviewers?: string[] | undefined;
|
|
14009
14190
|
teamReviewers?: string[] | undefined;
|
|
@@ -14081,8 +14262,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
14081
14262
|
value?: hono_utils_types.JSONValue | undefined;
|
|
14082
14263
|
} | undefined;
|
|
14083
14264
|
}[];
|
|
14084
|
-
body?: string | undefined;
|
|
14085
14265
|
webhookSecret?: string | undefined;
|
|
14266
|
+
body?: string | undefined;
|
|
14086
14267
|
labels?: string[] | undefined;
|
|
14087
14268
|
reviewers?: string[] | undefined;
|
|
14088
14269
|
teamReviewers?: string[] | undefined;
|
|
@@ -14113,11 +14294,11 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
14113
14294
|
envOverrides: {
|
|
14114
14295
|
[x: string]: {
|
|
14115
14296
|
type: "webhook";
|
|
14116
|
-
|
|
14297
|
+
url?: string | undefined;
|
|
14117
14298
|
headers?: {
|
|
14118
14299
|
[x: string]: string;
|
|
14119
14300
|
} | undefined;
|
|
14120
|
-
|
|
14301
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
14121
14302
|
auth?: {
|
|
14122
14303
|
type: "bearer";
|
|
14123
14304
|
token: string;
|
|
@@ -14146,9 +14327,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
14146
14327
|
} | undefined;
|
|
14147
14328
|
} | {
|
|
14148
14329
|
type: "pull-request";
|
|
14149
|
-
body?: string | undefined;
|
|
14150
14330
|
repo?: string | undefined;
|
|
14151
14331
|
webhookSecret?: string | undefined;
|
|
14332
|
+
body?: string | undefined;
|
|
14152
14333
|
title?: string | undefined;
|
|
14153
14334
|
auth?: {
|
|
14154
14335
|
type: "token";
|
|
@@ -14249,8 +14430,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
14249
14430
|
value?: hono_utils_types.JSONValue | undefined;
|
|
14250
14431
|
} | undefined;
|
|
14251
14432
|
}[];
|
|
14252
|
-
body?: string | undefined;
|
|
14253
14433
|
webhookSecret?: string | undefined;
|
|
14434
|
+
body?: string | undefined;
|
|
14254
14435
|
labels?: string[] | undefined;
|
|
14255
14436
|
reviewers?: string[] | undefined;
|
|
14256
14437
|
teamReviewers?: string[] | undefined;
|
|
@@ -14846,8 +15027,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
14846
15027
|
}>>;
|
|
14847
15028
|
}, "strip", zod.ZodTypeAny, {
|
|
14848
15029
|
type: "webhook";
|
|
14849
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
14850
15030
|
url: string;
|
|
15031
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
14851
15032
|
headers?: Record<string, string> | undefined;
|
|
14852
15033
|
auth?: {
|
|
14853
15034
|
type: "bearer";
|
|
@@ -14874,8 +15055,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
14874
15055
|
}, {
|
|
14875
15056
|
type: "webhook";
|
|
14876
15057
|
url: string;
|
|
14877
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
14878
15058
|
headers?: Record<string, string> | undefined;
|
|
15059
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
14879
15060
|
auth?: {
|
|
14880
15061
|
type: "bearer";
|
|
14881
15062
|
token: string;
|
|
@@ -15073,8 +15254,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15073
15254
|
value?: unknown;
|
|
15074
15255
|
} | undefined;
|
|
15075
15256
|
}[];
|
|
15076
|
-
body?: string | undefined;
|
|
15077
15257
|
webhookSecret?: string | undefined;
|
|
15258
|
+
body?: string | undefined;
|
|
15078
15259
|
labels?: string[] | undefined;
|
|
15079
15260
|
reviewers?: string[] | undefined;
|
|
15080
15261
|
teamReviewers?: string[] | undefined;
|
|
@@ -15111,8 +15292,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15111
15292
|
} | undefined;
|
|
15112
15293
|
operation?: "replace" | "patch" | undefined;
|
|
15113
15294
|
}[];
|
|
15114
|
-
body?: string | undefined;
|
|
15115
15295
|
webhookSecret?: string | undefined;
|
|
15296
|
+
body?: string | undefined;
|
|
15116
15297
|
base?: string | undefined;
|
|
15117
15298
|
labels?: string[] | undefined;
|
|
15118
15299
|
reviewers?: string[] | undefined;
|
|
@@ -15366,8 +15547,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15366
15547
|
value?: unknown;
|
|
15367
15548
|
} | undefined;
|
|
15368
15549
|
}[];
|
|
15369
|
-
body?: string | undefined;
|
|
15370
15550
|
webhookSecret?: string | undefined;
|
|
15551
|
+
body?: string | undefined;
|
|
15371
15552
|
labels?: string[] | undefined;
|
|
15372
15553
|
reviewers?: string[] | undefined;
|
|
15373
15554
|
teamReviewers?: string[] | undefined;
|
|
@@ -15397,8 +15578,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15397
15578
|
} | undefined;
|
|
15398
15579
|
operation?: "replace" | "patch" | undefined;
|
|
15399
15580
|
}[];
|
|
15400
|
-
body?: string | undefined;
|
|
15401
15581
|
webhookSecret?: string | undefined;
|
|
15582
|
+
body?: string | undefined;
|
|
15402
15583
|
base?: string | undefined;
|
|
15403
15584
|
labels?: string[] | undefined;
|
|
15404
15585
|
reviewers?: string[] | undefined;
|
|
@@ -15453,8 +15634,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15453
15634
|
value?: unknown;
|
|
15454
15635
|
} | undefined;
|
|
15455
15636
|
}[];
|
|
15456
|
-
body?: string | undefined;
|
|
15457
15637
|
webhookSecret?: string | undefined;
|
|
15638
|
+
body?: string | undefined;
|
|
15458
15639
|
labels?: string[] | undefined;
|
|
15459
15640
|
reviewers?: string[] | undefined;
|
|
15460
15641
|
teamReviewers?: string[] | undefined;
|
|
@@ -15501,8 +15682,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15501
15682
|
} | undefined;
|
|
15502
15683
|
operation?: "replace" | "patch" | undefined;
|
|
15503
15684
|
}[];
|
|
15504
|
-
body?: string | undefined;
|
|
15505
15685
|
webhookSecret?: string | undefined;
|
|
15686
|
+
body?: string | undefined;
|
|
15506
15687
|
base?: string | undefined;
|
|
15507
15688
|
labels?: string[] | undefined;
|
|
15508
15689
|
reviewers?: string[] | undefined;
|
|
@@ -15603,8 +15784,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15603
15784
|
type: "noop";
|
|
15604
15785
|
}>]>, {
|
|
15605
15786
|
type: "webhook";
|
|
15606
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
15607
15787
|
url: string;
|
|
15788
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
15608
15789
|
headers?: Record<string, string> | undefined;
|
|
15609
15790
|
auth?: {
|
|
15610
15791
|
type: "bearer";
|
|
@@ -15656,8 +15837,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15656
15837
|
value?: unknown;
|
|
15657
15838
|
} | undefined;
|
|
15658
15839
|
}[];
|
|
15659
|
-
body?: string | undefined;
|
|
15660
15840
|
webhookSecret?: string | undefined;
|
|
15841
|
+
body?: string | undefined;
|
|
15661
15842
|
labels?: string[] | undefined;
|
|
15662
15843
|
reviewers?: string[] | undefined;
|
|
15663
15844
|
teamReviewers?: string[] | undefined;
|
|
@@ -15729,8 +15910,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15729
15910
|
value?: unknown;
|
|
15730
15911
|
} | undefined;
|
|
15731
15912
|
}[];
|
|
15732
|
-
body?: string | undefined;
|
|
15733
15913
|
webhookSecret?: string | undefined;
|
|
15914
|
+
body?: string | undefined;
|
|
15734
15915
|
labels?: string[] | undefined;
|
|
15735
15916
|
reviewers?: string[] | undefined;
|
|
15736
15917
|
teamReviewers?: string[] | undefined;
|
|
@@ -15758,8 +15939,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15758
15939
|
}, {
|
|
15759
15940
|
type: "webhook";
|
|
15760
15941
|
url: string;
|
|
15761
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
15762
15942
|
headers?: Record<string, string> | undefined;
|
|
15943
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
15763
15944
|
auth?: {
|
|
15764
15945
|
type: "bearer";
|
|
15765
15946
|
token: string;
|
|
@@ -15809,8 +15990,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15809
15990
|
} | undefined;
|
|
15810
15991
|
operation?: "replace" | "patch" | undefined;
|
|
15811
15992
|
}[];
|
|
15812
|
-
body?: string | undefined;
|
|
15813
15993
|
webhookSecret?: string | undefined;
|
|
15994
|
+
body?: string | undefined;
|
|
15814
15995
|
base?: string | undefined;
|
|
15815
15996
|
labels?: string[] | undefined;
|
|
15816
15997
|
reviewers?: string[] | undefined;
|
|
@@ -15881,8 +16062,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15881
16062
|
} | undefined;
|
|
15882
16063
|
operation?: "replace" | "patch" | undefined;
|
|
15883
16064
|
}[];
|
|
15884
|
-
body?: string | undefined;
|
|
15885
16065
|
webhookSecret?: string | undefined;
|
|
16066
|
+
body?: string | undefined;
|
|
15886
16067
|
base?: string | undefined;
|
|
15887
16068
|
labels?: string[] | undefined;
|
|
15888
16069
|
reviewers?: string[] | undefined;
|
|
@@ -15977,9 +16158,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
15977
16158
|
}>>;
|
|
15978
16159
|
}, "strip", zod.ZodTypeAny, {
|
|
15979
16160
|
type: "webhook";
|
|
15980
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
15981
|
-
headers?: Record<string, string> | undefined;
|
|
15982
16161
|
url?: string | undefined;
|
|
16162
|
+
headers?: Record<string, string> | undefined;
|
|
16163
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
15983
16164
|
auth?: {
|
|
15984
16165
|
type: "bearer";
|
|
15985
16166
|
token: string;
|
|
@@ -16004,9 +16185,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
16004
16185
|
} | undefined;
|
|
16005
16186
|
}, {
|
|
16006
16187
|
type: "webhook";
|
|
16007
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
16008
|
-
headers?: Record<string, string> | undefined;
|
|
16009
16188
|
url?: string | undefined;
|
|
16189
|
+
headers?: Record<string, string> | undefined;
|
|
16190
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
16010
16191
|
auth?: {
|
|
16011
16192
|
type: "bearer";
|
|
16012
16193
|
token: string;
|
|
@@ -16175,9 +16356,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
16175
16356
|
}>>;
|
|
16176
16357
|
}, "strip", zod.ZodTypeAny, {
|
|
16177
16358
|
type: "pull-request";
|
|
16178
|
-
body?: string | undefined;
|
|
16179
16359
|
repo?: string | undefined;
|
|
16180
16360
|
webhookSecret?: string | undefined;
|
|
16361
|
+
body?: string | undefined;
|
|
16181
16362
|
title?: string | undefined;
|
|
16182
16363
|
auth?: {
|
|
16183
16364
|
type: "token";
|
|
@@ -16213,9 +16394,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
16213
16394
|
} | undefined;
|
|
16214
16395
|
}, {
|
|
16215
16396
|
type: "pull-request";
|
|
16216
|
-
body?: string | undefined;
|
|
16217
16397
|
repo?: string | undefined;
|
|
16218
16398
|
webhookSecret?: string | undefined;
|
|
16399
|
+
body?: string | undefined;
|
|
16219
16400
|
title?: string | undefined;
|
|
16220
16401
|
auth?: {
|
|
16221
16402
|
type: "token";
|
|
@@ -16492,8 +16673,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
16492
16673
|
value?: unknown;
|
|
16493
16674
|
} | undefined;
|
|
16494
16675
|
}[];
|
|
16495
|
-
body?: string | undefined;
|
|
16496
16676
|
webhookSecret?: string | undefined;
|
|
16677
|
+
body?: string | undefined;
|
|
16497
16678
|
labels?: string[] | undefined;
|
|
16498
16679
|
reviewers?: string[] | undefined;
|
|
16499
16680
|
teamReviewers?: string[] | undefined;
|
|
@@ -16523,8 +16704,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
16523
16704
|
} | undefined;
|
|
16524
16705
|
operation?: "replace" | "patch" | undefined;
|
|
16525
16706
|
}[];
|
|
16526
|
-
body?: string | undefined;
|
|
16527
16707
|
webhookSecret?: string | undefined;
|
|
16708
|
+
body?: string | undefined;
|
|
16528
16709
|
base?: string | undefined;
|
|
16529
16710
|
labels?: string[] | undefined;
|
|
16530
16711
|
reviewers?: string[] | undefined;
|
|
@@ -16578,8 +16759,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
16578
16759
|
value?: unknown;
|
|
16579
16760
|
} | undefined;
|
|
16580
16761
|
}[];
|
|
16581
|
-
body?: string | undefined;
|
|
16582
16762
|
webhookSecret?: string | undefined;
|
|
16763
|
+
body?: string | undefined;
|
|
16583
16764
|
labels?: string[] | undefined;
|
|
16584
16765
|
reviewers?: string[] | undefined;
|
|
16585
16766
|
teamReviewers?: string[] | undefined;
|
|
@@ -16627,8 +16808,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
16627
16808
|
} | undefined;
|
|
16628
16809
|
operation?: "replace" | "patch" | undefined;
|
|
16629
16810
|
}[];
|
|
16630
|
-
body?: string | undefined;
|
|
16631
16811
|
webhookSecret?: string | undefined;
|
|
16812
|
+
body?: string | undefined;
|
|
16632
16813
|
base?: string | undefined;
|
|
16633
16814
|
labels?: string[] | undefined;
|
|
16634
16815
|
reviewers?: string[] | undefined;
|
|
@@ -16869,8 +17050,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
16869
17050
|
};
|
|
16870
17051
|
trigger: {
|
|
16871
17052
|
type: "webhook";
|
|
16872
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
16873
17053
|
url: string;
|
|
17054
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
16874
17055
|
headers?: Record<string, string> | undefined;
|
|
16875
17056
|
auth?: {
|
|
16876
17057
|
type: "bearer";
|
|
@@ -16922,8 +17103,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
16922
17103
|
value?: unknown;
|
|
16923
17104
|
} | undefined;
|
|
16924
17105
|
}[];
|
|
16925
|
-
body?: string | undefined;
|
|
16926
17106
|
webhookSecret?: string | undefined;
|
|
17107
|
+
body?: string | undefined;
|
|
16927
17108
|
labels?: string[] | undefined;
|
|
16928
17109
|
reviewers?: string[] | undefined;
|
|
16929
17110
|
teamReviewers?: string[] | undefined;
|
|
@@ -16995,8 +17176,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
16995
17176
|
value?: unknown;
|
|
16996
17177
|
} | undefined;
|
|
16997
17178
|
}[];
|
|
16998
|
-
body?: string | undefined;
|
|
16999
17179
|
webhookSecret?: string | undefined;
|
|
17180
|
+
body?: string | undefined;
|
|
17000
17181
|
labels?: string[] | undefined;
|
|
17001
17182
|
reviewers?: string[] | undefined;
|
|
17002
17183
|
teamReviewers?: string[] | undefined;
|
|
@@ -17026,9 +17207,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17026
17207
|
displayName?: string | undefined;
|
|
17027
17208
|
envOverrides?: Record<string, {
|
|
17028
17209
|
type: "webhook";
|
|
17029
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
17030
|
-
headers?: Record<string, string> | undefined;
|
|
17031
17210
|
url?: string | undefined;
|
|
17211
|
+
headers?: Record<string, string> | undefined;
|
|
17212
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
17032
17213
|
auth?: {
|
|
17033
17214
|
type: "bearer";
|
|
17034
17215
|
token: string;
|
|
@@ -17053,9 +17234,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17053
17234
|
} | undefined;
|
|
17054
17235
|
} | {
|
|
17055
17236
|
type: "pull-request";
|
|
17056
|
-
body?: string | undefined;
|
|
17057
17237
|
repo?: string | undefined;
|
|
17058
17238
|
webhookSecret?: string | undefined;
|
|
17239
|
+
body?: string | undefined;
|
|
17059
17240
|
title?: string | undefined;
|
|
17060
17241
|
auth?: {
|
|
17061
17242
|
type: "token";
|
|
@@ -17150,8 +17331,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17150
17331
|
value?: unknown;
|
|
17151
17332
|
} | undefined;
|
|
17152
17333
|
}[];
|
|
17153
|
-
body?: string | undefined;
|
|
17154
17334
|
webhookSecret?: string | undefined;
|
|
17335
|
+
body?: string | undefined;
|
|
17155
17336
|
labels?: string[] | undefined;
|
|
17156
17337
|
reviewers?: string[] | undefined;
|
|
17157
17338
|
teamReviewers?: string[] | undefined;
|
|
@@ -17293,8 +17474,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17293
17474
|
trigger: {
|
|
17294
17475
|
type: "webhook";
|
|
17295
17476
|
url: string;
|
|
17296
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
17297
17477
|
headers?: Record<string, string> | undefined;
|
|
17478
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
17298
17479
|
auth?: {
|
|
17299
17480
|
type: "bearer";
|
|
17300
17481
|
token: string;
|
|
@@ -17344,8 +17525,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17344
17525
|
} | undefined;
|
|
17345
17526
|
operation?: "replace" | "patch" | undefined;
|
|
17346
17527
|
}[];
|
|
17347
|
-
body?: string | undefined;
|
|
17348
17528
|
webhookSecret?: string | undefined;
|
|
17529
|
+
body?: string | undefined;
|
|
17349
17530
|
base?: string | undefined;
|
|
17350
17531
|
labels?: string[] | undefined;
|
|
17351
17532
|
reviewers?: string[] | undefined;
|
|
@@ -17416,8 +17597,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17416
17597
|
} | undefined;
|
|
17417
17598
|
operation?: "replace" | "patch" | undefined;
|
|
17418
17599
|
}[];
|
|
17419
|
-
body?: string | undefined;
|
|
17420
17600
|
webhookSecret?: string | undefined;
|
|
17601
|
+
body?: string | undefined;
|
|
17421
17602
|
base?: string | undefined;
|
|
17422
17603
|
labels?: string[] | undefined;
|
|
17423
17604
|
reviewers?: string[] | undefined;
|
|
@@ -17471,9 +17652,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17471
17652
|
}[] | undefined;
|
|
17472
17653
|
envOverrides?: Record<string, {
|
|
17473
17654
|
type: "webhook";
|
|
17474
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
17475
|
-
headers?: Record<string, string> | undefined;
|
|
17476
17655
|
url?: string | undefined;
|
|
17656
|
+
headers?: Record<string, string> | undefined;
|
|
17657
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
17477
17658
|
auth?: {
|
|
17478
17659
|
type: "bearer";
|
|
17479
17660
|
token: string;
|
|
@@ -17498,9 +17679,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17498
17679
|
} | undefined;
|
|
17499
17680
|
} | {
|
|
17500
17681
|
type: "pull-request";
|
|
17501
|
-
body?: string | undefined;
|
|
17502
17682
|
repo?: string | undefined;
|
|
17503
17683
|
webhookSecret?: string | undefined;
|
|
17684
|
+
body?: string | undefined;
|
|
17504
17685
|
title?: string | undefined;
|
|
17505
17686
|
auth?: {
|
|
17506
17687
|
type: "token";
|
|
@@ -17594,8 +17775,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17594
17775
|
} | undefined;
|
|
17595
17776
|
operation?: "replace" | "patch" | undefined;
|
|
17596
17777
|
}[];
|
|
17597
|
-
body?: string | undefined;
|
|
17598
17778
|
webhookSecret?: string | undefined;
|
|
17779
|
+
body?: string | undefined;
|
|
17599
17780
|
base?: string | undefined;
|
|
17600
17781
|
labels?: string[] | undefined;
|
|
17601
17782
|
reviewers?: string[] | undefined;
|
|
@@ -17776,8 +17957,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17776
17957
|
};
|
|
17777
17958
|
trigger: {
|
|
17778
17959
|
type: "webhook";
|
|
17779
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
17780
17960
|
url: string;
|
|
17961
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
17781
17962
|
headers?: {
|
|
17782
17963
|
[x: string]: string;
|
|
17783
17964
|
} | undefined;
|
|
@@ -17835,8 +18016,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17835
18016
|
value?: hono_utils_types.JSONValue | undefined;
|
|
17836
18017
|
} | undefined;
|
|
17837
18018
|
}[];
|
|
17838
|
-
body?: string | undefined;
|
|
17839
18019
|
webhookSecret?: string | undefined;
|
|
18020
|
+
body?: string | undefined;
|
|
17840
18021
|
labels?: string[] | undefined;
|
|
17841
18022
|
reviewers?: string[] | undefined;
|
|
17842
18023
|
teamReviewers?: string[] | undefined;
|
|
@@ -17914,8 +18095,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17914
18095
|
value?: hono_utils_types.JSONValue | undefined;
|
|
17915
18096
|
} | undefined;
|
|
17916
18097
|
}[];
|
|
17917
|
-
body?: string | undefined;
|
|
17918
18098
|
webhookSecret?: string | undefined;
|
|
18099
|
+
body?: string | undefined;
|
|
17919
18100
|
labels?: string[] | undefined;
|
|
17920
18101
|
reviewers?: string[] | undefined;
|
|
17921
18102
|
teamReviewers?: string[] | undefined;
|
|
@@ -17946,11 +18127,11 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17946
18127
|
envOverrides: {
|
|
17947
18128
|
[x: string]: {
|
|
17948
18129
|
type: "webhook";
|
|
17949
|
-
|
|
18130
|
+
url?: string | undefined;
|
|
17950
18131
|
headers?: {
|
|
17951
18132
|
[x: string]: string;
|
|
17952
18133
|
} | undefined;
|
|
17953
|
-
|
|
18134
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
17954
18135
|
auth?: {
|
|
17955
18136
|
type: "bearer";
|
|
17956
18137
|
token: string;
|
|
@@ -17979,9 +18160,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
17979
18160
|
} | undefined;
|
|
17980
18161
|
} | {
|
|
17981
18162
|
type: "pull-request";
|
|
17982
|
-
body?: string | undefined;
|
|
17983
18163
|
repo?: string | undefined;
|
|
17984
18164
|
webhookSecret?: string | undefined;
|
|
18165
|
+
body?: string | undefined;
|
|
17985
18166
|
title?: string | undefined;
|
|
17986
18167
|
auth?: {
|
|
17987
18168
|
type: "token";
|
|
@@ -18082,8 +18263,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
18082
18263
|
value?: hono_utils_types.JSONValue | undefined;
|
|
18083
18264
|
} | undefined;
|
|
18084
18265
|
}[];
|
|
18085
|
-
body?: string | undefined;
|
|
18086
18266
|
webhookSecret?: string | undefined;
|
|
18267
|
+
body?: string | undefined;
|
|
18087
18268
|
labels?: string[] | undefined;
|
|
18088
18269
|
reviewers?: string[] | undefined;
|
|
18089
18270
|
teamReviewers?: string[] | undefined;
|
|
@@ -18203,6 +18384,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
18203
18384
|
entityId?: string | undefined;
|
|
18204
18385
|
actionName?: string | undefined;
|
|
18205
18386
|
}>, {
|
|
18387
|
+
entityName: string | null;
|
|
18388
|
+
operationEntityName: string | null;
|
|
18206
18389
|
id: string;
|
|
18207
18390
|
actionName: string;
|
|
18208
18391
|
entityId: string | null;
|
|
@@ -19354,8 +19537,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
19354
19537
|
}>>;
|
|
19355
19538
|
}, "strip", zod.ZodTypeAny, {
|
|
19356
19539
|
type: "webhook";
|
|
19357
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
19358
19540
|
url: string;
|
|
19541
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
19359
19542
|
headers?: Record<string, string> | undefined;
|
|
19360
19543
|
auth?: {
|
|
19361
19544
|
type: "bearer";
|
|
@@ -19382,8 +19565,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
19382
19565
|
}, {
|
|
19383
19566
|
type: "webhook";
|
|
19384
19567
|
url: string;
|
|
19385
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
19386
19568
|
headers?: Record<string, string> | undefined;
|
|
19569
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
19387
19570
|
auth?: {
|
|
19388
19571
|
type: "bearer";
|
|
19389
19572
|
token: string;
|
|
@@ -19581,8 +19764,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
19581
19764
|
value?: unknown;
|
|
19582
19765
|
} | undefined;
|
|
19583
19766
|
}[];
|
|
19584
|
-
body?: string | undefined;
|
|
19585
19767
|
webhookSecret?: string | undefined;
|
|
19768
|
+
body?: string | undefined;
|
|
19586
19769
|
labels?: string[] | undefined;
|
|
19587
19770
|
reviewers?: string[] | undefined;
|
|
19588
19771
|
teamReviewers?: string[] | undefined;
|
|
@@ -19619,8 +19802,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
19619
19802
|
} | undefined;
|
|
19620
19803
|
operation?: "replace" | "patch" | undefined;
|
|
19621
19804
|
}[];
|
|
19622
|
-
body?: string | undefined;
|
|
19623
19805
|
webhookSecret?: string | undefined;
|
|
19806
|
+
body?: string | undefined;
|
|
19624
19807
|
base?: string | undefined;
|
|
19625
19808
|
labels?: string[] | undefined;
|
|
19626
19809
|
reviewers?: string[] | undefined;
|
|
@@ -19874,8 +20057,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
19874
20057
|
value?: unknown;
|
|
19875
20058
|
} | undefined;
|
|
19876
20059
|
}[];
|
|
19877
|
-
body?: string | undefined;
|
|
19878
20060
|
webhookSecret?: string | undefined;
|
|
20061
|
+
body?: string | undefined;
|
|
19879
20062
|
labels?: string[] | undefined;
|
|
19880
20063
|
reviewers?: string[] | undefined;
|
|
19881
20064
|
teamReviewers?: string[] | undefined;
|
|
@@ -19905,8 +20088,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
19905
20088
|
} | undefined;
|
|
19906
20089
|
operation?: "replace" | "patch" | undefined;
|
|
19907
20090
|
}[];
|
|
19908
|
-
body?: string | undefined;
|
|
19909
20091
|
webhookSecret?: string | undefined;
|
|
20092
|
+
body?: string | undefined;
|
|
19910
20093
|
base?: string | undefined;
|
|
19911
20094
|
labels?: string[] | undefined;
|
|
19912
20095
|
reviewers?: string[] | undefined;
|
|
@@ -19961,8 +20144,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
19961
20144
|
value?: unknown;
|
|
19962
20145
|
} | undefined;
|
|
19963
20146
|
}[];
|
|
19964
|
-
body?: string | undefined;
|
|
19965
20147
|
webhookSecret?: string | undefined;
|
|
20148
|
+
body?: string | undefined;
|
|
19966
20149
|
labels?: string[] | undefined;
|
|
19967
20150
|
reviewers?: string[] | undefined;
|
|
19968
20151
|
teamReviewers?: string[] | undefined;
|
|
@@ -20009,8 +20192,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20009
20192
|
} | undefined;
|
|
20010
20193
|
operation?: "replace" | "patch" | undefined;
|
|
20011
20194
|
}[];
|
|
20012
|
-
body?: string | undefined;
|
|
20013
20195
|
webhookSecret?: string | undefined;
|
|
20196
|
+
body?: string | undefined;
|
|
20014
20197
|
base?: string | undefined;
|
|
20015
20198
|
labels?: string[] | undefined;
|
|
20016
20199
|
reviewers?: string[] | undefined;
|
|
@@ -20111,8 +20294,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20111
20294
|
type: "noop";
|
|
20112
20295
|
}>]>, {
|
|
20113
20296
|
type: "webhook";
|
|
20114
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
20115
20297
|
url: string;
|
|
20298
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
20116
20299
|
headers?: Record<string, string> | undefined;
|
|
20117
20300
|
auth?: {
|
|
20118
20301
|
type: "bearer";
|
|
@@ -20164,8 +20347,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20164
20347
|
value?: unknown;
|
|
20165
20348
|
} | undefined;
|
|
20166
20349
|
}[];
|
|
20167
|
-
body?: string | undefined;
|
|
20168
20350
|
webhookSecret?: string | undefined;
|
|
20351
|
+
body?: string | undefined;
|
|
20169
20352
|
labels?: string[] | undefined;
|
|
20170
20353
|
reviewers?: string[] | undefined;
|
|
20171
20354
|
teamReviewers?: string[] | undefined;
|
|
@@ -20237,8 +20420,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20237
20420
|
value?: unknown;
|
|
20238
20421
|
} | undefined;
|
|
20239
20422
|
}[];
|
|
20240
|
-
body?: string | undefined;
|
|
20241
20423
|
webhookSecret?: string | undefined;
|
|
20424
|
+
body?: string | undefined;
|
|
20242
20425
|
labels?: string[] | undefined;
|
|
20243
20426
|
reviewers?: string[] | undefined;
|
|
20244
20427
|
teamReviewers?: string[] | undefined;
|
|
@@ -20266,8 +20449,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20266
20449
|
}, {
|
|
20267
20450
|
type: "webhook";
|
|
20268
20451
|
url: string;
|
|
20269
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
20270
20452
|
headers?: Record<string, string> | undefined;
|
|
20453
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
20271
20454
|
auth?: {
|
|
20272
20455
|
type: "bearer";
|
|
20273
20456
|
token: string;
|
|
@@ -20317,8 +20500,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20317
20500
|
} | undefined;
|
|
20318
20501
|
operation?: "replace" | "patch" | undefined;
|
|
20319
20502
|
}[];
|
|
20320
|
-
body?: string | undefined;
|
|
20321
20503
|
webhookSecret?: string | undefined;
|
|
20504
|
+
body?: string | undefined;
|
|
20322
20505
|
base?: string | undefined;
|
|
20323
20506
|
labels?: string[] | undefined;
|
|
20324
20507
|
reviewers?: string[] | undefined;
|
|
@@ -20389,8 +20572,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20389
20572
|
} | undefined;
|
|
20390
20573
|
operation?: "replace" | "patch" | undefined;
|
|
20391
20574
|
}[];
|
|
20392
|
-
body?: string | undefined;
|
|
20393
20575
|
webhookSecret?: string | undefined;
|
|
20576
|
+
body?: string | undefined;
|
|
20394
20577
|
base?: string | undefined;
|
|
20395
20578
|
labels?: string[] | undefined;
|
|
20396
20579
|
reviewers?: string[] | undefined;
|
|
@@ -20485,9 +20668,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20485
20668
|
}>>;
|
|
20486
20669
|
}, "strip", zod.ZodTypeAny, {
|
|
20487
20670
|
type: "webhook";
|
|
20488
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
20489
|
-
headers?: Record<string, string> | undefined;
|
|
20490
20671
|
url?: string | undefined;
|
|
20672
|
+
headers?: Record<string, string> | undefined;
|
|
20673
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
20491
20674
|
auth?: {
|
|
20492
20675
|
type: "bearer";
|
|
20493
20676
|
token: string;
|
|
@@ -20512,9 +20695,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20512
20695
|
} | undefined;
|
|
20513
20696
|
}, {
|
|
20514
20697
|
type: "webhook";
|
|
20515
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
20516
|
-
headers?: Record<string, string> | undefined;
|
|
20517
20698
|
url?: string | undefined;
|
|
20699
|
+
headers?: Record<string, string> | undefined;
|
|
20700
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
20518
20701
|
auth?: {
|
|
20519
20702
|
type: "bearer";
|
|
20520
20703
|
token: string;
|
|
@@ -20683,9 +20866,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20683
20866
|
}>>;
|
|
20684
20867
|
}, "strip", zod.ZodTypeAny, {
|
|
20685
20868
|
type: "pull-request";
|
|
20686
|
-
body?: string | undefined;
|
|
20687
20869
|
repo?: string | undefined;
|
|
20688
20870
|
webhookSecret?: string | undefined;
|
|
20871
|
+
body?: string | undefined;
|
|
20689
20872
|
title?: string | undefined;
|
|
20690
20873
|
auth?: {
|
|
20691
20874
|
type: "token";
|
|
@@ -20721,9 +20904,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
20721
20904
|
} | undefined;
|
|
20722
20905
|
}, {
|
|
20723
20906
|
type: "pull-request";
|
|
20724
|
-
body?: string | undefined;
|
|
20725
20907
|
repo?: string | undefined;
|
|
20726
20908
|
webhookSecret?: string | undefined;
|
|
20909
|
+
body?: string | undefined;
|
|
20727
20910
|
title?: string | undefined;
|
|
20728
20911
|
auth?: {
|
|
20729
20912
|
type: "token";
|
|
@@ -21000,8 +21183,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21000
21183
|
value?: unknown;
|
|
21001
21184
|
} | undefined;
|
|
21002
21185
|
}[];
|
|
21003
|
-
body?: string | undefined;
|
|
21004
21186
|
webhookSecret?: string | undefined;
|
|
21187
|
+
body?: string | undefined;
|
|
21005
21188
|
labels?: string[] | undefined;
|
|
21006
21189
|
reviewers?: string[] | undefined;
|
|
21007
21190
|
teamReviewers?: string[] | undefined;
|
|
@@ -21031,8 +21214,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21031
21214
|
} | undefined;
|
|
21032
21215
|
operation?: "replace" | "patch" | undefined;
|
|
21033
21216
|
}[];
|
|
21034
|
-
body?: string | undefined;
|
|
21035
21217
|
webhookSecret?: string | undefined;
|
|
21218
|
+
body?: string | undefined;
|
|
21036
21219
|
base?: string | undefined;
|
|
21037
21220
|
labels?: string[] | undefined;
|
|
21038
21221
|
reviewers?: string[] | undefined;
|
|
@@ -21086,8 +21269,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21086
21269
|
value?: unknown;
|
|
21087
21270
|
} | undefined;
|
|
21088
21271
|
}[];
|
|
21089
|
-
body?: string | undefined;
|
|
21090
21272
|
webhookSecret?: string | undefined;
|
|
21273
|
+
body?: string | undefined;
|
|
21091
21274
|
labels?: string[] | undefined;
|
|
21092
21275
|
reviewers?: string[] | undefined;
|
|
21093
21276
|
teamReviewers?: string[] | undefined;
|
|
@@ -21135,8 +21318,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21135
21318
|
} | undefined;
|
|
21136
21319
|
operation?: "replace" | "patch" | undefined;
|
|
21137
21320
|
}[];
|
|
21138
|
-
body?: string | undefined;
|
|
21139
21321
|
webhookSecret?: string | undefined;
|
|
21322
|
+
body?: string | undefined;
|
|
21140
21323
|
base?: string | undefined;
|
|
21141
21324
|
labels?: string[] | undefined;
|
|
21142
21325
|
reviewers?: string[] | undefined;
|
|
@@ -21372,8 +21555,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21372
21555
|
};
|
|
21373
21556
|
trigger: {
|
|
21374
21557
|
type: "webhook";
|
|
21375
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
21376
21558
|
url: string;
|
|
21559
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
21377
21560
|
headers?: Record<string, string> | undefined;
|
|
21378
21561
|
auth?: {
|
|
21379
21562
|
type: "bearer";
|
|
@@ -21425,8 +21608,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21425
21608
|
value?: unknown;
|
|
21426
21609
|
} | undefined;
|
|
21427
21610
|
}[];
|
|
21428
|
-
body?: string | undefined;
|
|
21429
21611
|
webhookSecret?: string | undefined;
|
|
21612
|
+
body?: string | undefined;
|
|
21430
21613
|
labels?: string[] | undefined;
|
|
21431
21614
|
reviewers?: string[] | undefined;
|
|
21432
21615
|
teamReviewers?: string[] | undefined;
|
|
@@ -21498,8 +21681,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21498
21681
|
value?: unknown;
|
|
21499
21682
|
} | undefined;
|
|
21500
21683
|
}[];
|
|
21501
|
-
body?: string | undefined;
|
|
21502
21684
|
webhookSecret?: string | undefined;
|
|
21685
|
+
body?: string | undefined;
|
|
21503
21686
|
labels?: string[] | undefined;
|
|
21504
21687
|
reviewers?: string[] | undefined;
|
|
21505
21688
|
teamReviewers?: string[] | undefined;
|
|
@@ -21529,9 +21712,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21529
21712
|
displayName?: string | undefined;
|
|
21530
21713
|
envOverrides?: Record<string, {
|
|
21531
21714
|
type: "webhook";
|
|
21532
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
21533
|
-
headers?: Record<string, string> | undefined;
|
|
21534
21715
|
url?: string | undefined;
|
|
21716
|
+
headers?: Record<string, string> | undefined;
|
|
21717
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
21535
21718
|
auth?: {
|
|
21536
21719
|
type: "bearer";
|
|
21537
21720
|
token: string;
|
|
@@ -21556,9 +21739,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21556
21739
|
} | undefined;
|
|
21557
21740
|
} | {
|
|
21558
21741
|
type: "pull-request";
|
|
21559
|
-
body?: string | undefined;
|
|
21560
21742
|
repo?: string | undefined;
|
|
21561
21743
|
webhookSecret?: string | undefined;
|
|
21744
|
+
body?: string | undefined;
|
|
21562
21745
|
title?: string | undefined;
|
|
21563
21746
|
auth?: {
|
|
21564
21747
|
type: "token";
|
|
@@ -21653,8 +21836,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21653
21836
|
value?: unknown;
|
|
21654
21837
|
} | undefined;
|
|
21655
21838
|
}[];
|
|
21656
|
-
body?: string | undefined;
|
|
21657
21839
|
webhookSecret?: string | undefined;
|
|
21840
|
+
body?: string | undefined;
|
|
21658
21841
|
labels?: string[] | undefined;
|
|
21659
21842
|
reviewers?: string[] | undefined;
|
|
21660
21843
|
teamReviewers?: string[] | undefined;
|
|
@@ -21794,8 +21977,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21794
21977
|
trigger: {
|
|
21795
21978
|
type: "webhook";
|
|
21796
21979
|
url: string;
|
|
21797
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
21798
21980
|
headers?: Record<string, string> | undefined;
|
|
21981
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
21799
21982
|
auth?: {
|
|
21800
21983
|
type: "bearer";
|
|
21801
21984
|
token: string;
|
|
@@ -21845,8 +22028,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21845
22028
|
} | undefined;
|
|
21846
22029
|
operation?: "replace" | "patch" | undefined;
|
|
21847
22030
|
}[];
|
|
21848
|
-
body?: string | undefined;
|
|
21849
22031
|
webhookSecret?: string | undefined;
|
|
22032
|
+
body?: string | undefined;
|
|
21850
22033
|
base?: string | undefined;
|
|
21851
22034
|
labels?: string[] | undefined;
|
|
21852
22035
|
reviewers?: string[] | undefined;
|
|
@@ -21917,8 +22100,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21917
22100
|
} | undefined;
|
|
21918
22101
|
operation?: "replace" | "patch" | undefined;
|
|
21919
22102
|
}[];
|
|
21920
|
-
body?: string | undefined;
|
|
21921
22103
|
webhookSecret?: string | undefined;
|
|
22104
|
+
body?: string | undefined;
|
|
21922
22105
|
base?: string | undefined;
|
|
21923
22106
|
labels?: string[] | undefined;
|
|
21924
22107
|
reviewers?: string[] | undefined;
|
|
@@ -21972,9 +22155,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21972
22155
|
}[] | undefined;
|
|
21973
22156
|
envOverrides?: Record<string, {
|
|
21974
22157
|
type: "webhook";
|
|
21975
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
21976
|
-
headers?: Record<string, string> | undefined;
|
|
21977
22158
|
url?: string | undefined;
|
|
22159
|
+
headers?: Record<string, string> | undefined;
|
|
22160
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
21978
22161
|
auth?: {
|
|
21979
22162
|
type: "bearer";
|
|
21980
22163
|
token: string;
|
|
@@ -21999,9 +22182,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
21999
22182
|
} | undefined;
|
|
22000
22183
|
} | {
|
|
22001
22184
|
type: "pull-request";
|
|
22002
|
-
body?: string | undefined;
|
|
22003
22185
|
repo?: string | undefined;
|
|
22004
22186
|
webhookSecret?: string | undefined;
|
|
22187
|
+
body?: string | undefined;
|
|
22005
22188
|
title?: string | undefined;
|
|
22006
22189
|
auth?: {
|
|
22007
22190
|
type: "token";
|
|
@@ -22095,8 +22278,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
22095
22278
|
} | undefined;
|
|
22096
22279
|
operation?: "replace" | "patch" | undefined;
|
|
22097
22280
|
}[];
|
|
22098
|
-
body?: string | undefined;
|
|
22099
22281
|
webhookSecret?: string | undefined;
|
|
22282
|
+
body?: string | undefined;
|
|
22100
22283
|
base?: string | undefined;
|
|
22101
22284
|
labels?: string[] | undefined;
|
|
22102
22285
|
reviewers?: string[] | undefined;
|
|
@@ -22357,8 +22540,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
22357
22540
|
};
|
|
22358
22541
|
trigger: {
|
|
22359
22542
|
type: "webhook";
|
|
22360
|
-
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
22361
22543
|
url: string;
|
|
22544
|
+
method: "POST" | "DELETE" | "PATCH" | "GET" | "PUT";
|
|
22362
22545
|
headers?: Record<string, string> | undefined;
|
|
22363
22546
|
auth?: {
|
|
22364
22547
|
type: "bearer";
|
|
@@ -22410,8 +22593,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
22410
22593
|
value?: unknown;
|
|
22411
22594
|
} | undefined;
|
|
22412
22595
|
}[];
|
|
22413
|
-
body?: string | undefined;
|
|
22414
22596
|
webhookSecret?: string | undefined;
|
|
22597
|
+
body?: string | undefined;
|
|
22415
22598
|
labels?: string[] | undefined;
|
|
22416
22599
|
reviewers?: string[] | undefined;
|
|
22417
22600
|
teamReviewers?: string[] | undefined;
|
|
@@ -22483,8 +22666,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
22483
22666
|
value?: unknown;
|
|
22484
22667
|
} | undefined;
|
|
22485
22668
|
}[];
|
|
22486
|
-
body?: string | undefined;
|
|
22487
22669
|
webhookSecret?: string | undefined;
|
|
22670
|
+
body?: string | undefined;
|
|
22488
22671
|
labels?: string[] | undefined;
|
|
22489
22672
|
reviewers?: string[] | undefined;
|
|
22490
22673
|
teamReviewers?: string[] | undefined;
|
|
@@ -22514,9 +22697,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
22514
22697
|
displayName?: string | undefined;
|
|
22515
22698
|
envOverrides?: Record<string, {
|
|
22516
22699
|
type: "webhook";
|
|
22517
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
22518
|
-
headers?: Record<string, string> | undefined;
|
|
22519
22700
|
url?: string | undefined;
|
|
22701
|
+
headers?: Record<string, string> | undefined;
|
|
22702
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
22520
22703
|
auth?: {
|
|
22521
22704
|
type: "bearer";
|
|
22522
22705
|
token: string;
|
|
@@ -22541,9 +22724,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
22541
22724
|
} | undefined;
|
|
22542
22725
|
} | {
|
|
22543
22726
|
type: "pull-request";
|
|
22544
|
-
body?: string | undefined;
|
|
22545
22727
|
repo?: string | undefined;
|
|
22546
22728
|
webhookSecret?: string | undefined;
|
|
22729
|
+
body?: string | undefined;
|
|
22547
22730
|
title?: string | undefined;
|
|
22548
22731
|
auth?: {
|
|
22549
22732
|
type: "token";
|
|
@@ -22638,8 +22821,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
22638
22821
|
value?: unknown;
|
|
22639
22822
|
} | undefined;
|
|
22640
22823
|
}[];
|
|
22641
|
-
body?: string | undefined;
|
|
22642
22824
|
webhookSecret?: string | undefined;
|
|
22825
|
+
body?: string | undefined;
|
|
22643
22826
|
labels?: string[] | undefined;
|
|
22644
22827
|
reviewers?: string[] | undefined;
|
|
22645
22828
|
teamReviewers?: string[] | undefined;
|
|
@@ -22899,8 +23082,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
22899
23082
|
trigger: {
|
|
22900
23083
|
type: "webhook";
|
|
22901
23084
|
url: string;
|
|
22902
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
22903
23085
|
headers?: Record<string, string> | undefined;
|
|
23086
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
22904
23087
|
auth?: {
|
|
22905
23088
|
type: "bearer";
|
|
22906
23089
|
token: string;
|
|
@@ -22950,8 +23133,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
22950
23133
|
} | undefined;
|
|
22951
23134
|
operation?: "replace" | "patch" | undefined;
|
|
22952
23135
|
}[];
|
|
22953
|
-
body?: string | undefined;
|
|
22954
23136
|
webhookSecret?: string | undefined;
|
|
23137
|
+
body?: string | undefined;
|
|
22955
23138
|
base?: string | undefined;
|
|
22956
23139
|
labels?: string[] | undefined;
|
|
22957
23140
|
reviewers?: string[] | undefined;
|
|
@@ -23022,8 +23205,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
23022
23205
|
} | undefined;
|
|
23023
23206
|
operation?: "replace" | "patch" | undefined;
|
|
23024
23207
|
}[];
|
|
23025
|
-
body?: string | undefined;
|
|
23026
23208
|
webhookSecret?: string | undefined;
|
|
23209
|
+
body?: string | undefined;
|
|
23027
23210
|
base?: string | undefined;
|
|
23028
23211
|
labels?: string[] | undefined;
|
|
23029
23212
|
reviewers?: string[] | undefined;
|
|
@@ -23077,9 +23260,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
23077
23260
|
}[] | undefined;
|
|
23078
23261
|
envOverrides?: Record<string, {
|
|
23079
23262
|
type: "webhook";
|
|
23080
|
-
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
23081
|
-
headers?: Record<string, string> | undefined;
|
|
23082
23263
|
url?: string | undefined;
|
|
23264
|
+
headers?: Record<string, string> | undefined;
|
|
23265
|
+
method?: "POST" | "DELETE" | "PATCH" | "GET" | "PUT" | undefined;
|
|
23083
23266
|
auth?: {
|
|
23084
23267
|
type: "bearer";
|
|
23085
23268
|
token: string;
|
|
@@ -23104,9 +23287,9 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
23104
23287
|
} | undefined;
|
|
23105
23288
|
} | {
|
|
23106
23289
|
type: "pull-request";
|
|
23107
|
-
body?: string | undefined;
|
|
23108
23290
|
repo?: string | undefined;
|
|
23109
23291
|
webhookSecret?: string | undefined;
|
|
23292
|
+
body?: string | undefined;
|
|
23110
23293
|
title?: string | undefined;
|
|
23111
23294
|
auth?: {
|
|
23112
23295
|
type: "token";
|
|
@@ -23200,8 +23383,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
23200
23383
|
} | undefined;
|
|
23201
23384
|
operation?: "replace" | "patch" | undefined;
|
|
23202
23385
|
}[];
|
|
23203
|
-
body?: string | undefined;
|
|
23204
23386
|
webhookSecret?: string | undefined;
|
|
23387
|
+
body?: string | undefined;
|
|
23205
23388
|
base?: string | undefined;
|
|
23206
23389
|
labels?: string[] | undefined;
|
|
23207
23390
|
reviewers?: string[] | undefined;
|
|
@@ -23555,7 +23738,7 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
23555
23738
|
envName: zod.ZodString;
|
|
23556
23739
|
status: zod.ZodOptional<zod.ZodEnum<["open", "accepted", "reapplied", "snoozed"]>>;
|
|
23557
23740
|
kind: zod.ZodOptional<zod.ZodString>;
|
|
23558
|
-
|
|
23741
|
+
entityName: zod.ZodOptional<zod.ZodString>;
|
|
23559
23742
|
since: zod.ZodOptional<zod.ZodString>;
|
|
23560
23743
|
limit: zod.ZodOptional<zod.ZodNumber>;
|
|
23561
23744
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -23565,7 +23748,7 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
23565
23748
|
status?: "open" | "accepted" | "reapplied" | "snoozed" | undefined;
|
|
23566
23749
|
limit?: number | undefined;
|
|
23567
23750
|
kind?: string | undefined;
|
|
23568
|
-
|
|
23751
|
+
entityName?: string | undefined;
|
|
23569
23752
|
since?: string | undefined;
|
|
23570
23753
|
}, {
|
|
23571
23754
|
orgId: string;
|
|
@@ -23574,7 +23757,7 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
23574
23757
|
status?: "open" | "accepted" | "reapplied" | "snoozed" | undefined;
|
|
23575
23758
|
limit?: number | undefined;
|
|
23576
23759
|
kind?: string | undefined;
|
|
23577
|
-
|
|
23760
|
+
entityName?: string | undefined;
|
|
23578
23761
|
since?: string | undefined;
|
|
23579
23762
|
}>, {
|
|
23580
23763
|
detectedAt: string;
|
|
@@ -23973,8 +24156,8 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
23973
24156
|
updatedAt: string;
|
|
23974
24157
|
orgId: string;
|
|
23975
24158
|
projectId: string;
|
|
23976
|
-
scope: "user" | "project";
|
|
23977
24159
|
isDefault: boolean;
|
|
24160
|
+
scope: "user" | "project";
|
|
23978
24161
|
config: {
|
|
23979
24162
|
sort: {
|
|
23980
24163
|
cells: "name" | "memberCount" | "capacityUsed";
|
|
@@ -24466,6 +24649,7 @@ declare const createClient: (baseUrl: string, options?: CreateClientOptions | To
|
|
|
24466
24649
|
driftStatus: _terrantula_types.DriftStatus | null;
|
|
24467
24650
|
}[];
|
|
24468
24651
|
pendingProposals: {
|
|
24652
|
+
entityName: string | null;
|
|
24469
24653
|
id: string;
|
|
24470
24654
|
importSourceId: string;
|
|
24471
24655
|
projectId: string | null;
|