@cat-factory/contracts 0.336.0 → 0.338.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/environment-reachability.d.ts +246 -0
- package/dist/environment-reachability.d.ts.map +1 -0
- package/dist/environment-reachability.js +248 -0
- package/dist/environment-reachability.js.map +1 -0
- package/dist/environments.d.ts +276 -1
- package/dist/environments.d.ts.map +1 -1
- package/dist/environments.js +35 -0
- package/dist/environments.js.map +1 -1
- package/dist/execution.d.ts +4 -0
- package/dist/execution.d.ts.map +1 -1
- package/dist/frontend.d.ts +52 -1
- package/dist/frontend.d.ts.map +1 -1
- package/dist/frontend.js +69 -9
- package/dist/frontend.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +4 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +4 -0
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/environmentUserHandlers.d.ts +6 -0
- package/dist/routes/environmentUserHandlers.d.ts.map +1 -1
- package/dist/routes/environments.d.ts +105 -0
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +20 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +2 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +10 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +6 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +4 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +2 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/testing.d.ts +9 -0
- package/dist/testing.d.ts.map +1 -1
- package/dist/testing.js +9 -0
- package/dist/testing.js.map +1 -1
- package/package.json +1 -1
|
@@ -607,6 +607,7 @@ declare const adoptBugHuntResultSchema: v.ObjectSchema<{
|
|
|
607
607
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
608
608
|
readonly started: v.BooleanSchema<undefined>;
|
|
609
609
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
610
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
610
611
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
611
612
|
readonly at: v.NumberSchema<undefined>;
|
|
612
613
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1553,6 +1554,7 @@ declare const adoptBugHuntResultSchema: v.ObjectSchema<{
|
|
|
1553
1554
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1554
1555
|
readonly envVar: v.StringSchema<undefined>;
|
|
1555
1556
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1557
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1556
1558
|
}, undefined>, undefined>, undefined>;
|
|
1557
1559
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1558
1560
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -2356,6 +2358,7 @@ export declare const adoptBugHuntCandidateContract: {
|
|
|
2356
2358
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2357
2359
|
readonly started: v.BooleanSchema<undefined>;
|
|
2358
2360
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2361
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
2359
2362
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2360
2363
|
readonly at: v.NumberSchema<undefined>;
|
|
2361
2364
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -3302,6 +3305,7 @@ export declare const adoptBugHuntCandidateContract: {
|
|
|
3302
3305
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3303
3306
|
readonly envVar: v.StringSchema<undefined>;
|
|
3304
3307
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3308
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3305
3309
|
}, undefined>, undefined>, undefined>;
|
|
3306
3310
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3307
3311
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bug-hunt.d.ts","sourceRoot":"","sources":["../../src/routes/bug-hunt.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAe5B,QAAA,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"bug-hunt.d.ts","sourceRoot":"","sources":["../../src/routes/bug-hunt.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA"}
|
|
@@ -135,6 +135,7 @@ export declare const listEnvironmentUserHandlersContract: {
|
|
|
135
135
|
}, undefined>, undefined>;
|
|
136
136
|
readonly response: v.ObjectSchema<{
|
|
137
137
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
138
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
138
139
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
139
140
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
140
141
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -369,6 +370,7 @@ export declare const listEnvironmentUserHandlersContract: {
|
|
|
369
370
|
}, undefined>, undefined>;
|
|
370
371
|
readonly response: v.ObjectSchema<{
|
|
371
372
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
373
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
372
374
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
373
375
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
374
376
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -498,6 +500,7 @@ export declare const upsertEnvironmentUserHandlerContract: {
|
|
|
498
500
|
}, undefined>, undefined>;
|
|
499
501
|
readonly response: v.ObjectSchema<{
|
|
500
502
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
503
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
501
504
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
502
505
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
503
506
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -732,6 +735,7 @@ export declare const upsertEnvironmentUserHandlerContract: {
|
|
|
732
735
|
}, undefined>, undefined>;
|
|
733
736
|
readonly response: v.ObjectSchema<{
|
|
734
737
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
738
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
735
739
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
736
740
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
737
741
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -882,6 +886,7 @@ export declare const upsertEnvironmentUserHandlerContract: {
|
|
|
882
886
|
}, undefined>, undefined>;
|
|
883
887
|
readonly response: v.ObjectSchema<{
|
|
884
888
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
889
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
885
890
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
886
891
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
887
892
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -1116,6 +1121,7 @@ export declare const upsertEnvironmentUserHandlerContract: {
|
|
|
1116
1121
|
}, undefined>, undefined>;
|
|
1117
1122
|
readonly response: v.ObjectSchema<{
|
|
1118
1123
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1124
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1119
1125
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1120
1126
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1121
1127
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environmentUserHandlers.d.ts","sourceRoot":"","sources":["../../src/routes/environmentUserHandlers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAE3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAwB5B,eAAO,MAAM,mCAAmC
|
|
1
|
+
{"version":3,"file":"environmentUserHandlers.d.ts","sourceRoot":"","sources":["../../src/routes/environmentUserHandlers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAE3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAwB5B,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9C,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAS/C,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ/C,CAAA"}
|
|
@@ -126,6 +126,7 @@ export declare const getEnvironmentConnectionContract: {
|
|
|
126
126
|
}, undefined>, undefined>;
|
|
127
127
|
readonly response: v.ObjectSchema<{
|
|
128
128
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
129
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
129
130
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
130
131
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
131
132
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -485,6 +486,7 @@ export declare const getEnvironmentConnectionContract: {
|
|
|
485
486
|
}, undefined>, undefined>;
|
|
486
487
|
readonly response: v.ObjectSchema<{
|
|
487
488
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
489
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
488
490
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
489
491
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
490
492
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -605,6 +607,7 @@ export declare const registerEnvironmentProviderContract: {
|
|
|
605
607
|
}, undefined>, undefined>;
|
|
606
608
|
readonly response: v.ObjectSchema<{
|
|
607
609
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
610
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
608
611
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
609
612
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
610
613
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -964,6 +967,7 @@ export declare const registerEnvironmentProviderContract: {
|
|
|
964
967
|
}, undefined>, undefined>;
|
|
965
968
|
readonly response: v.ObjectSchema<{
|
|
966
969
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
970
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
967
971
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
968
972
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
969
973
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -1108,6 +1112,7 @@ export declare const registerEnvironmentProviderContract: {
|
|
|
1108
1112
|
}, undefined>, undefined>;
|
|
1109
1113
|
readonly response: v.ObjectSchema<{
|
|
1110
1114
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1115
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1111
1116
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1112
1117
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1113
1118
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -1467,6 +1472,7 @@ export declare const registerEnvironmentProviderContract: {
|
|
|
1467
1472
|
}, undefined>, undefined>;
|
|
1468
1473
|
readonly response: v.ObjectSchema<{
|
|
1469
1474
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1475
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1470
1476
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1471
1477
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1472
1478
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -1618,6 +1624,7 @@ export declare const updateEnvironmentSecretsContract: {
|
|
|
1618
1624
|
}, undefined>, undefined>;
|
|
1619
1625
|
readonly response: v.ObjectSchema<{
|
|
1620
1626
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1627
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1621
1628
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1622
1629
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1623
1630
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -1977,6 +1984,7 @@ export declare const updateEnvironmentSecretsContract: {
|
|
|
1977
1984
|
}, undefined>, undefined>;
|
|
1978
1985
|
readonly response: v.ObjectSchema<{
|
|
1979
1986
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1987
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1980
1988
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1981
1989
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1982
1990
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -2197,6 +2205,7 @@ export declare const testEnvironmentConnectionContract: {
|
|
|
2197
2205
|
}, undefined>, undefined>;
|
|
2198
2206
|
readonly response: v.ObjectSchema<{
|
|
2199
2207
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2208
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2200
2209
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2201
2210
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2202
2211
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -2556,6 +2565,7 @@ export declare const testEnvironmentConnectionContract: {
|
|
|
2556
2565
|
}, undefined>, undefined>;
|
|
2557
2566
|
readonly response: v.ObjectSchema<{
|
|
2558
2567
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2568
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2559
2569
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2560
2570
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2561
2571
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -3307,6 +3317,7 @@ export declare const listEnvironmentHandlersContract: {
|
|
|
3307
3317
|
}, undefined>, undefined>;
|
|
3308
3318
|
readonly response: v.ObjectSchema<{
|
|
3309
3319
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3320
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3310
3321
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3311
3322
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3312
3323
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -3541,6 +3552,7 @@ export declare const listEnvironmentHandlersContract: {
|
|
|
3541
3552
|
}, undefined>, undefined>;
|
|
3542
3553
|
readonly response: v.ObjectSchema<{
|
|
3543
3554
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3555
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3544
3556
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3545
3557
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3546
3558
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -3673,6 +3685,7 @@ export declare const registerEnvironmentHandlerContract: {
|
|
|
3673
3685
|
}, undefined>, undefined>;
|
|
3674
3686
|
readonly response: v.ObjectSchema<{
|
|
3675
3687
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3688
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3676
3689
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3677
3690
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3678
3691
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -3907,6 +3920,7 @@ export declare const registerEnvironmentHandlerContract: {
|
|
|
3907
3920
|
}, undefined>, undefined>;
|
|
3908
3921
|
readonly response: v.ObjectSchema<{
|
|
3909
3922
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3923
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3910
3924
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3911
3925
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3912
3926
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -4057,6 +4071,7 @@ export declare const registerEnvironmentHandlerContract: {
|
|
|
4057
4071
|
}, undefined>, undefined>;
|
|
4058
4072
|
readonly response: v.ObjectSchema<{
|
|
4059
4073
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4074
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4060
4075
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4061
4076
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4062
4077
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -4291,6 +4306,7 @@ export declare const registerEnvironmentHandlerContract: {
|
|
|
4291
4306
|
}, undefined>, undefined>;
|
|
4292
4307
|
readonly response: v.ObjectSchema<{
|
|
4293
4308
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4309
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4294
4310
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4295
4311
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4296
4312
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -4411,6 +4427,7 @@ export declare const testEnvironmentHandlerContract: {
|
|
|
4411
4427
|
}, undefined>, undefined>;
|
|
4412
4428
|
readonly response: v.ObjectSchema<{
|
|
4413
4429
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4430
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4414
4431
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4415
4432
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4416
4433
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -4645,6 +4662,7 @@ export declare const testEnvironmentHandlerContract: {
|
|
|
4645
4662
|
}, undefined>, undefined>;
|
|
4646
4663
|
readonly response: v.ObjectSchema<{
|
|
4647
4664
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4665
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4648
4666
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4649
4667
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4650
4668
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -4843,6 +4861,7 @@ export declare const updateEnvironmentHandlerSecretsContract: {
|
|
|
4843
4861
|
}, undefined>, undefined>;
|
|
4844
4862
|
readonly response: v.ObjectSchema<{
|
|
4845
4863
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4864
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4846
4865
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4847
4866
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4848
4867
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -5077,6 +5096,7 @@ export declare const updateEnvironmentHandlerSecretsContract: {
|
|
|
5077
5096
|
}, undefined>, undefined>;
|
|
5078
5097
|
readonly response: v.ObjectSchema<{
|
|
5079
5098
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5099
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5080
5100
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5081
5101
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5082
5102
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -5256,6 +5276,23 @@ export declare const listEnvironmentsContract: {
|
|
|
5256
5276
|
readonly providerId: v.StringSchema<undefined>;
|
|
5257
5277
|
readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5258
5278
|
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5279
|
+
readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5280
|
+
readonly candidates: v.ArraySchema<v.ObjectSchema<{
|
|
5281
|
+
readonly address: v.StringSchema<undefined>;
|
|
5282
|
+
readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5283
|
+
}, undefined>, undefined>;
|
|
5284
|
+
readonly proof: v.NullableSchema<v.ObjectSchema<{
|
|
5285
|
+
readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
|
|
5286
|
+
readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5287
|
+
readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5288
|
+
readonly attempts: v.ArraySchema<v.ObjectSchema<{
|
|
5289
|
+
readonly target: v.StringSchema<undefined>;
|
|
5290
|
+
readonly outcome: v.StringSchema<undefined>;
|
|
5291
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5292
|
+
}, undefined>, undefined>;
|
|
5293
|
+
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5294
|
+
}, undefined>, undefined>;
|
|
5295
|
+
}, undefined>, undefined>, undefined>;
|
|
5259
5296
|
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
5260
5297
|
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
5261
5298
|
readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
|
|
@@ -5314,6 +5351,23 @@ export declare const getEnvironmentContract: {
|
|
|
5314
5351
|
readonly providerId: v.StringSchema<undefined>;
|
|
5315
5352
|
readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5316
5353
|
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5354
|
+
readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5355
|
+
readonly candidates: v.ArraySchema<v.ObjectSchema<{
|
|
5356
|
+
readonly address: v.StringSchema<undefined>;
|
|
5357
|
+
readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5358
|
+
}, undefined>, undefined>;
|
|
5359
|
+
readonly proof: v.NullableSchema<v.ObjectSchema<{
|
|
5360
|
+
readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
|
|
5361
|
+
readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5362
|
+
readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5363
|
+
readonly attempts: v.ArraySchema<v.ObjectSchema<{
|
|
5364
|
+
readonly target: v.StringSchema<undefined>;
|
|
5365
|
+
readonly outcome: v.StringSchema<undefined>;
|
|
5366
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5367
|
+
}, undefined>, undefined>;
|
|
5368
|
+
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5369
|
+
}, undefined>, undefined>;
|
|
5370
|
+
}, undefined>, undefined>, undefined>;
|
|
5317
5371
|
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
5318
5372
|
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
5319
5373
|
readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
|
|
@@ -5372,6 +5426,23 @@ export declare const getEnvironmentAccessContract: {
|
|
|
5372
5426
|
readonly providerId: v.StringSchema<undefined>;
|
|
5373
5427
|
readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5374
5428
|
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5429
|
+
readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5430
|
+
readonly candidates: v.ArraySchema<v.ObjectSchema<{
|
|
5431
|
+
readonly address: v.StringSchema<undefined>;
|
|
5432
|
+
readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5433
|
+
}, undefined>, undefined>;
|
|
5434
|
+
readonly proof: v.NullableSchema<v.ObjectSchema<{
|
|
5435
|
+
readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
|
|
5436
|
+
readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5437
|
+
readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5438
|
+
readonly attempts: v.ArraySchema<v.ObjectSchema<{
|
|
5439
|
+
readonly target: v.StringSchema<undefined>;
|
|
5440
|
+
readonly outcome: v.StringSchema<undefined>;
|
|
5441
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5442
|
+
}, undefined>, undefined>;
|
|
5443
|
+
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5444
|
+
}, undefined>, undefined>;
|
|
5445
|
+
}, undefined>, undefined>, undefined>;
|
|
5375
5446
|
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
5376
5447
|
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
5377
5448
|
readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
|
|
@@ -5429,6 +5500,23 @@ export declare const provisionEnvironmentContract: {
|
|
|
5429
5500
|
readonly providerId: v.StringSchema<undefined>;
|
|
5430
5501
|
readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5431
5502
|
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5503
|
+
readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5504
|
+
readonly candidates: v.ArraySchema<v.ObjectSchema<{
|
|
5505
|
+
readonly address: v.StringSchema<undefined>;
|
|
5506
|
+
readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5507
|
+
}, undefined>, undefined>;
|
|
5508
|
+
readonly proof: v.NullableSchema<v.ObjectSchema<{
|
|
5509
|
+
readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
|
|
5510
|
+
readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5511
|
+
readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5512
|
+
readonly attempts: v.ArraySchema<v.ObjectSchema<{
|
|
5513
|
+
readonly target: v.StringSchema<undefined>;
|
|
5514
|
+
readonly outcome: v.StringSchema<undefined>;
|
|
5515
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5516
|
+
}, undefined>, undefined>;
|
|
5517
|
+
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5518
|
+
}, undefined>, undefined>;
|
|
5519
|
+
}, undefined>, undefined>, undefined>;
|
|
5432
5520
|
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
5433
5521
|
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
5434
5522
|
readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
|
|
@@ -5488,6 +5576,23 @@ export declare const teardownEnvironmentContract: {
|
|
|
5488
5576
|
readonly providerId: v.StringSchema<undefined>;
|
|
5489
5577
|
readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5490
5578
|
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5579
|
+
readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5580
|
+
readonly candidates: v.ArraySchema<v.ObjectSchema<{
|
|
5581
|
+
readonly address: v.StringSchema<undefined>;
|
|
5582
|
+
readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5583
|
+
}, undefined>, undefined>;
|
|
5584
|
+
readonly proof: v.NullableSchema<v.ObjectSchema<{
|
|
5585
|
+
readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
|
|
5586
|
+
readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5587
|
+
readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5588
|
+
readonly attempts: v.ArraySchema<v.ObjectSchema<{
|
|
5589
|
+
readonly target: v.StringSchema<undefined>;
|
|
5590
|
+
readonly outcome: v.StringSchema<undefined>;
|
|
5591
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5592
|
+
}, undefined>, undefined>;
|
|
5593
|
+
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5594
|
+
}, undefined>, undefined>;
|
|
5595
|
+
}, undefined>, undefined>, undefined>;
|
|
5491
5596
|
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
5492
5597
|
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
5493
5598
|
readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../../src/routes/environments.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AA8C5B,eAAO,MAAM,gCAAgC
|
|
1
|
+
{"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../../src/routes/environments.ts"],"names":[],"mappings":"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KvC,CAAA;AAWF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI1C,CAAA;AAEF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK7C,CAAA;AAKF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAEF,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlD,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/C,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM3C,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAInC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKjC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAOF,mFAAmF;AACnF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,+DAA+D;AAC/D,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKrC,CAAA;AAEF,4FAA4F;AAC5F,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}
|
|
@@ -299,6 +299,7 @@ export declare const startExecutionContract: {
|
|
|
299
299
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
300
300
|
readonly started: v.BooleanSchema<undefined>;
|
|
301
301
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
302
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
302
303
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
303
304
|
readonly at: v.NumberSchema<undefined>;
|
|
304
305
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1245,6 +1246,7 @@ export declare const startExecutionContract: {
|
|
|
1245
1246
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1246
1247
|
readonly envVar: v.StringSchema<undefined>;
|
|
1247
1248
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1249
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1248
1250
|
}, undefined>, undefined>, undefined>;
|
|
1249
1251
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1250
1252
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -1539,6 +1541,7 @@ export declare const startAgentKindExecutionContract: {
|
|
|
1539
1541
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1540
1542
|
readonly started: v.BooleanSchema<undefined>;
|
|
1541
1543
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
1544
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
1542
1545
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1543
1546
|
readonly at: v.NumberSchema<undefined>;
|
|
1544
1547
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -2485,6 +2488,7 @@ export declare const startAgentKindExecutionContract: {
|
|
|
2485
2488
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2486
2489
|
readonly envVar: v.StringSchema<undefined>;
|
|
2487
2490
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2491
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2488
2492
|
}, undefined>, undefined>, undefined>;
|
|
2489
2493
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2490
2494
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -2780,6 +2784,7 @@ export declare const getExecutionContract: {
|
|
|
2780
2784
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2781
2785
|
readonly started: v.BooleanSchema<undefined>;
|
|
2782
2786
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2787
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
2783
2788
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2784
2789
|
readonly at: v.NumberSchema<undefined>;
|
|
2785
2790
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -3726,6 +3731,7 @@ export declare const getExecutionContract: {
|
|
|
3726
3731
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3727
3732
|
readonly envVar: v.StringSchema<undefined>;
|
|
3728
3733
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3734
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3729
3735
|
}, undefined>, undefined>, undefined>;
|
|
3730
3736
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3731
3737
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -4876,6 +4882,7 @@ export declare const resumeSpendContract: {
|
|
|
4876
4882
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4877
4883
|
readonly started: v.BooleanSchema<undefined>;
|
|
4878
4884
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
4885
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
4879
4886
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4880
4887
|
readonly at: v.NumberSchema<undefined>;
|
|
4881
4888
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -5822,6 +5829,7 @@ export declare const resumeSpendContract: {
|
|
|
5822
5829
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5823
5830
|
readonly envVar: v.StringSchema<undefined>;
|
|
5824
5831
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5832
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5825
5833
|
}, undefined>, undefined>, undefined>;
|
|
5826
5834
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5827
5835
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -6557,6 +6565,7 @@ export declare const resolveDecisionContract: {
|
|
|
6557
6565
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6558
6566
|
readonly started: v.BooleanSchema<undefined>;
|
|
6559
6567
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
6568
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
6560
6569
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6561
6570
|
readonly at: v.NumberSchema<undefined>;
|
|
6562
6571
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -7503,6 +7512,7 @@ export declare const resolveDecisionContract: {
|
|
|
7503
7512
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
7504
7513
|
readonly envVar: v.StringSchema<undefined>;
|
|
7505
7514
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7515
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7506
7516
|
}, undefined>, undefined>, undefined>;
|
|
7507
7517
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7508
7518
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -7794,6 +7804,7 @@ export declare const approveStepContract: {
|
|
|
7794
7804
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7795
7805
|
readonly started: v.BooleanSchema<undefined>;
|
|
7796
7806
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
7807
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
7797
7808
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7798
7809
|
readonly at: v.NumberSchema<undefined>;
|
|
7799
7810
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -8740,6 +8751,7 @@ export declare const approveStepContract: {
|
|
|
8740
8751
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
8741
8752
|
readonly envVar: v.StringSchema<undefined>;
|
|
8742
8753
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8754
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8743
8755
|
}, undefined>, undefined>, undefined>;
|
|
8744
8756
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
8745
8757
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -9045,6 +9057,7 @@ export declare const requestStepChangesContract: {
|
|
|
9045
9057
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
9046
9058
|
readonly started: v.BooleanSchema<undefined>;
|
|
9047
9059
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
9060
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
9048
9061
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
9049
9062
|
readonly at: v.NumberSchema<undefined>;
|
|
9050
9063
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -9991,6 +10004,7 @@ export declare const requestStepChangesContract: {
|
|
|
9991
10004
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
9992
10005
|
readonly envVar: v.StringSchema<undefined>;
|
|
9993
10006
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
10007
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
9994
10008
|
}, undefined>, undefined>, undefined>;
|
|
9995
10009
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
9996
10010
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -10282,6 +10296,7 @@ export declare const resolveStepExceededContract: {
|
|
|
10282
10296
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
10283
10297
|
readonly started: v.BooleanSchema<undefined>;
|
|
10284
10298
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
10299
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
10285
10300
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
10286
10301
|
readonly at: v.NumberSchema<undefined>;
|
|
10287
10302
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -11228,6 +11243,7 @@ export declare const resolveStepExceededContract: {
|
|
|
11228
11243
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
11229
11244
|
readonly envVar: v.StringSchema<undefined>;
|
|
11230
11245
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
11246
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
11231
11247
|
}, undefined>, undefined>, undefined>;
|
|
11232
11248
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
11233
11249
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -11517,6 +11533,7 @@ export declare const restartExecutionContract: {
|
|
|
11517
11533
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
11518
11534
|
readonly started: v.BooleanSchema<undefined>;
|
|
11519
11535
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
11536
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
11520
11537
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
11521
11538
|
readonly at: v.NumberSchema<undefined>;
|
|
11522
11539
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -12463,6 +12480,7 @@ export declare const restartExecutionContract: {
|
|
|
12463
12480
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
12464
12481
|
readonly envVar: v.StringSchema<undefined>;
|
|
12465
12482
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
12483
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
12466
12484
|
}, undefined>, undefined>, undefined>;
|
|
12467
12485
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
12468
12486
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -12754,6 +12772,7 @@ export declare const rejectStepContract: {
|
|
|
12754
12772
|
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
12755
12773
|
readonly started: v.BooleanSchema<undefined>;
|
|
12756
12774
|
readonly dockerAvailable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
12775
|
+
readonly dockerWorkload: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["usable", "unusable", "undetermined"], undefined>, undefined>, undefined>;
|
|
12757
12776
|
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
12758
12777
|
readonly at: v.NumberSchema<undefined>;
|
|
12759
12778
|
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -13700,6 +13719,7 @@ export declare const rejectStepContract: {
|
|
|
13700
13719
|
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
13701
13720
|
readonly envVar: v.StringSchema<undefined>;
|
|
13702
13721
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
13722
|
+
readonly serviceAddress: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
13703
13723
|
}, undefined>, undefined>, undefined>;
|
|
13704
13724
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
13705
13725
|
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|