@spacefast/common 0.0.11 → 0.0.12
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/agents/connect-targets.d.ts +4 -4
- package/dist/agents/connect-targets.js +3 -3
- package/dist/agents/private-key-oauth.d.ts +37 -0
- package/dist/agents/private-key-oauth.js +158 -0
- package/dist/config/domains.js +1 -1
- package/dist/config/index.d.ts +1 -0
- package/dist/config/index.js +1 -0
- package/dist/config/postgres-budget.d.ts +126 -0
- package/dist/config/postgres-budget.js +135 -0
- package/dist/config/postgres-budget.json +50 -0
- package/dist/contracts/access.d.ts +42 -24
- package/dist/contracts/access.js +73 -34
- package/dist/contracts/activity.d.ts +1 -1
- package/dist/contracts/activity.js +5 -5
- package/dist/contracts/api-keys.d.ts +53 -45
- package/dist/contracts/api-keys.js +1 -0
- package/dist/contracts/archives.d.ts +8 -8
- package/dist/contracts/builds.d.ts +8 -8
- package/dist/contracts/builds.js +28 -48
- package/dist/contracts/channels.js +1 -2
- package/dist/contracts/comments.d.ts +55 -19
- package/dist/contracts/comments.js +56 -17
- package/dist/contracts/common.d.ts +4 -3
- package/dist/contracts/common.js +2 -0
- package/dist/contracts/deployments.d.ts +3 -3
- package/dist/contracts/device-auth.d.ts +14 -12
- package/dist/contracts/docs.d.ts +5 -5
- package/dist/contracts/domains.d.ts +261 -1330
- package/dist/contracts/domains.js +39 -301
- package/dist/contracts/email-preferences.d.ts +50 -0
- package/dist/contracts/email-preferences.js +44 -0
- package/dist/contracts/enums.d.ts +1 -1
- package/dist/contracts/error-code-meta.d.ts +84 -15
- package/dist/contracts/error-code-meta.js +28 -4
- package/dist/contracts/error-codes.d.ts +1 -1
- package/dist/contracts/error-codes.js +24 -6
- package/dist/contracts/events.d.ts +13 -13
- package/dist/contracts/feature-lifecycle.d.ts +644 -2
- package/dist/contracts/feature-lifecycle.js +685 -2
- package/dist/contracts/features.d.ts +236 -24
- package/dist/contracts/features.js +3 -272
- package/dist/contracts/ids.d.ts +1 -2
- package/dist/contracts/ids.js +1 -2
- package/dist/contracts/internal.d.ts +3 -3
- package/dist/contracts/mcp.d.ts +6 -6
- package/dist/contracts/me.js +1 -1
- package/dist/contracts/mounts.d.ts +142 -0
- package/dist/contracts/mounts.js +56 -0
- package/dist/contracts/oauth-resources.d.ts +5 -5
- package/dist/contracts/oauth-resources.js +1 -0
- package/dist/contracts/operations.d.ts +2 -2
- package/dist/contracts/pages.d.ts +2 -2
- package/dist/contracts/pages.js +8 -3
- package/dist/contracts/plan-policy.d.ts +1 -1
- package/dist/contracts/platform.d.ts +3 -3
- package/dist/contracts/resources.d.ts +12 -20
- package/dist/contracts/resources.js +13 -37
- package/dist/contracts/runtime-api.d.ts +330 -16
- package/dist/contracts/runtime-api.js +58 -14
- package/dist/contracts/sf-config-v1.js +1 -1
- package/dist/contracts/sites.d.ts +12 -12
- package/dist/contracts/sites.js +18 -11
- package/dist/contracts/space-config.d.ts +2 -3
- package/dist/contracts/space-config.js +3 -1
- package/dist/contracts/spaces.d.ts +143 -102
- package/dist/contracts/spaces.js +109 -43
- package/dist/contracts/superadmin-emails.d.ts +25 -1
- package/dist/contracts/superadmin-emails.js +10 -15
- package/dist/contracts/superadmin-runtime.d.ts +2 -2
- package/dist/contracts/superadmin-spaces.d.ts +6 -14
- package/dist/contracts/tags.d.ts +43 -13
- package/dist/contracts/tags.js +195 -11
- package/dist/contracts/transfers.d.ts +1 -1
- package/dist/contracts/variables.d.ts +4 -4
- package/dist/contracts/variables.js +4 -3
- package/dist/contracts/webhooks.d.ts +2 -2
- package/dist/contracts/zero.d.ts +329 -7
- package/dist/contracts/zero.js +121 -2
- package/dist/dashboard-paths/index.d.ts +1 -1
- package/dist/docs/agent-setup.d.ts +4 -2
- package/dist/docs/agent-setup.js +15 -7
- package/dist/docs/agent-solutions.js +1 -1
- package/dist/docs/catalog.d.ts +8 -10
- package/dist/docs/catalog.js +8 -10
- package/dist/docs/error-docs.js +86 -18
- package/dist/utils/access-grant.d.ts +14 -0
- package/dist/utils/access-grant.js +88 -0
- package/dist/utils/access-match.d.ts +7 -0
- package/dist/utils/access-match.fixtures.json +513 -0
- package/dist/utils/access-match.js +32 -16
- package/dist/utils/access-verdict.fixtures.json +421 -0
- package/dist/utils/credential-policy.d.ts +1 -1
- package/dist/utils/dns-instructions.d.ts +29 -0
- package/dist/utils/dns-instructions.js +78 -0
- package/dist/utils/domain-diagnostics.d.ts +29 -0
- package/dist/utils/domain-diagnostics.js +63 -0
- package/dist/utils/egress-policy.fixtures.json +51 -0
- package/dist/utils/id-hints.d.ts +1 -0
- package/dist/utils/id-hints.js +55 -13
- package/dist/utils/page-colors.d.ts +50 -0
- package/dist/utils/page-colors.js +167 -0
- package/dist/utils/page-fonts.d.ts +2 -0
- package/dist/utils/page-fonts.js +4 -0
- package/dist/utils/pages.d.ts +8 -1
- package/dist/utils/pages.js +123 -37
- package/dist/utils/production-runtime.d.ts +18 -0
- package/dist/utils/production-runtime.js +28 -0
- package/dist/utils/query-keys.d.ts +6 -7
- package/dist/utils/query-keys.js +11 -12
- package/dist/utils/sf-config-v1.fixtures.json +9 -0
- package/dist/utils/sf-config-v1.js +28 -19
- package/dist/utils/source-archive-policy.d.ts +2 -0
- package/dist/utils/source-archive-policy.js +2 -0
- package/dist/utils/static-runtime-policy.fixtures.json +57 -0
- package/dist/utils/static-runtime-policy.js +1 -1
- package/package.json +5 -4
- package/dist/contracts/annotations.d.ts +0 -327
- package/dist/contracts/annotations.js +0 -235
- package/dist/contracts/generated-feature-launch-entries.d.ts +0 -2
- package/dist/contracts/generated-feature-launch-entries.js +0 -518
- package/dist/contracts/publishes.d.ts +0 -135
- package/dist/contracts/publishes.js +0 -162
|
@@ -78,11 +78,7 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
78
78
|
}>;
|
|
79
79
|
moving: z.ZodBoolean;
|
|
80
80
|
channels: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
81
|
-
versionId: z.
|
|
82
|
-
weighted: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
83
|
-
versionId: z.ZodString;
|
|
84
|
-
percentage: z.ZodNumber;
|
|
85
|
-
}, z.core.$strip>>>;
|
|
81
|
+
versionId: z.ZodString;
|
|
86
82
|
updatedAt: z.ZodString;
|
|
87
83
|
}, z.core.$strip>>;
|
|
88
84
|
config: z.ZodNullable<z.ZodObject<{
|
|
@@ -149,7 +145,6 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
149
145
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
150
146
|
}, z.core.$strict>>;
|
|
151
147
|
placement: z.ZodOptional<z.ZodObject<{
|
|
152
|
-
region: z.ZodOptional<z.ZodString>;
|
|
153
148
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
154
149
|
shared: "shared";
|
|
155
150
|
dedicated: "dedicated";
|
|
@@ -179,6 +174,7 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
179
174
|
ipCidrs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
180
175
|
agent: z.ZodOptional<z.ZodString>;
|
|
181
176
|
country: z.ZodOptional<z.ZodString>;
|
|
177
|
+
countryNotIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
182
178
|
header: z.ZodOptional<z.ZodObject<{
|
|
183
179
|
name: z.ZodString;
|
|
184
180
|
value: z.ZodString;
|
|
@@ -253,8 +249,8 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
253
249
|
code: z.ZodString;
|
|
254
250
|
severity: z.ZodEnum<{
|
|
255
251
|
info: "info";
|
|
256
|
-
warning: "warning";
|
|
257
252
|
error: "error";
|
|
253
|
+
warning: "warning";
|
|
258
254
|
}>;
|
|
259
255
|
message: z.ZodString;
|
|
260
256
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -285,8 +281,8 @@ export declare const spaceDiagnosticSchema: z.ZodObject<{
|
|
|
285
281
|
code: z.ZodString;
|
|
286
282
|
severity: z.ZodEnum<{
|
|
287
283
|
info: "info";
|
|
288
|
-
warning: "warning";
|
|
289
284
|
error: "error";
|
|
285
|
+
warning: "warning";
|
|
290
286
|
}>;
|
|
291
287
|
message: z.ZodString;
|
|
292
288
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -309,8 +305,8 @@ export declare const spaceDiagnosticListResponseSchema: z.ZodObject<{
|
|
|
309
305
|
code: z.ZodString;
|
|
310
306
|
severity: z.ZodEnum<{
|
|
311
307
|
info: "info";
|
|
312
|
-
warning: "warning";
|
|
313
308
|
error: "error";
|
|
309
|
+
warning: "warning";
|
|
314
310
|
}>;
|
|
315
311
|
message: z.ZodString;
|
|
316
312
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -415,7 +411,6 @@ export declare const spaceCreateSchema: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
415
411
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
416
412
|
}, z.core.$strict>>;
|
|
417
413
|
placement: z.ZodOptional<z.ZodObject<{
|
|
418
|
-
region: z.ZodOptional<z.ZodString>;
|
|
419
414
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
420
415
|
shared: "shared";
|
|
421
416
|
dedicated: "dedicated";
|
|
@@ -499,7 +494,6 @@ export declare const spacePatchSchema: z.ZodObject<{
|
|
|
499
494
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
500
495
|
}, z.core.$strict>>;
|
|
501
496
|
placement: z.ZodOptional<z.ZodObject<{
|
|
502
|
-
region: z.ZodOptional<z.ZodString>;
|
|
503
497
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
504
498
|
shared: "shared";
|
|
505
499
|
dedicated: "dedicated";
|
|
@@ -519,7 +513,6 @@ export declare const spacePatchSchema: z.ZodObject<{
|
|
|
519
513
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
520
514
|
dataLocation: z.ZodOptional<z.ZodString>;
|
|
521
515
|
placement: z.ZodOptional<z.ZodObject<{
|
|
522
|
-
region: z.ZodOptional<z.ZodString>;
|
|
523
516
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
524
517
|
shared: "shared";
|
|
525
518
|
dedicated: "dedicated";
|
|
@@ -527,7 +520,6 @@ export declare const spacePatchSchema: z.ZodObject<{
|
|
|
527
520
|
burstable: z.ZodOptional<z.ZodBoolean>;
|
|
528
521
|
}, z.core.$strict>>;
|
|
529
522
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
530
|
-
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
531
523
|
}, z.core.$strict>;
|
|
532
524
|
export declare const spaceClaimSchema: z.ZodObject<{
|
|
533
525
|
claimToken: z.ZodString;
|
|
@@ -654,6 +646,8 @@ export declare const spaceClaimReminderResponseSchema: z.ZodObject<{
|
|
|
654
646
|
accepted: z.ZodLiteral<true>;
|
|
655
647
|
}, z.core.$strip>;
|
|
656
648
|
export declare const spaceVersionCreateSchema: z.ZodObject<{
|
|
649
|
+
deletePaths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
650
|
+
immutableAssetPrefixes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
657
651
|
source: z.ZodOptional<z.ZodObject<{
|
|
658
652
|
kind: z.ZodEnum<{
|
|
659
653
|
api: "api";
|
|
@@ -696,6 +690,9 @@ export declare const spaceVersionCreateSchema: z.ZodObject<{
|
|
|
696
690
|
headers: z.ZodOptional<z.ZodString>;
|
|
697
691
|
routes: z.ZodOptional<z.ZodString>;
|
|
698
692
|
}, z.core.$strip>>;
|
|
693
|
+
finalize: z.ZodOptional<z.ZodObject<{
|
|
694
|
+
channel: z.ZodOptional<z.ZodNullable<z.ZodLiteral<"live">>>;
|
|
695
|
+
}, z.core.$strip>>;
|
|
699
696
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
700
697
|
path: z.ZodString;
|
|
701
698
|
size: z.ZodNumber;
|
|
@@ -703,7 +700,6 @@ export declare const spaceVersionCreateSchema: z.ZodObject<{
|
|
|
703
700
|
contentType: z.ZodOptional<z.ZodString>;
|
|
704
701
|
sourceUrl: z.ZodOptional<z.ZodString>;
|
|
705
702
|
}, z.core.$strip>>>;
|
|
706
|
-
deletePaths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
707
703
|
}, z.core.$strip>;
|
|
708
704
|
export declare const spaceVersionListSchema: z.ZodObject<{
|
|
709
705
|
data: z.ZodArray<z.ZodObject<{
|
|
@@ -760,10 +756,7 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
760
756
|
manifestHash: z.ZodNullable<z.ZodString>;
|
|
761
757
|
buildId: z.ZodNullable<z.ZodString>;
|
|
762
758
|
importedFromVersionId: z.ZodNullable<z.ZodString>;
|
|
763
|
-
variables: z.
|
|
764
|
-
name: z.ZodString;
|
|
765
|
-
valueHash: z.ZodString;
|
|
766
|
-
}, z.core.$strip>>>;
|
|
759
|
+
variables: z.ZodNull;
|
|
767
760
|
fileCount: z.ZodNullable<z.ZodNumber>;
|
|
768
761
|
totalBytes: z.ZodNullable<z.ZodNumber>;
|
|
769
762
|
pendingUploads: z.ZodArray<z.ZodObject<{
|
|
@@ -774,6 +767,10 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
774
767
|
}, z.core.$strip>>;
|
|
775
768
|
skippedPaths: z.ZodArray<z.ZodString>;
|
|
776
769
|
immutableUrl: z.ZodNullable<z.ZodString>;
|
|
770
|
+
immutableUrlStatus: z.ZodNullable<z.ZodEnum<{
|
|
771
|
+
ready: "ready";
|
|
772
|
+
converging: "converging";
|
|
773
|
+
}>>;
|
|
777
774
|
isCurrentProduction: z.ZodBoolean;
|
|
778
775
|
siteTitle: z.ZodString;
|
|
779
776
|
config: z.ZodNullable<z.ZodObject<{
|
|
@@ -840,7 +837,6 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
840
837
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
841
838
|
}, z.core.$strict>>;
|
|
842
839
|
placement: z.ZodOptional<z.ZodObject<{
|
|
843
|
-
region: z.ZodOptional<z.ZodString>;
|
|
844
840
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
845
841
|
shared: "shared";
|
|
846
842
|
dedicated: "dedicated";
|
|
@@ -879,8 +875,8 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
879
875
|
code: z.ZodString;
|
|
880
876
|
severity: z.ZodEnum<{
|
|
881
877
|
info: "info";
|
|
882
|
-
warning: "warning";
|
|
883
878
|
error: "error";
|
|
879
|
+
warning: "warning";
|
|
884
880
|
}>;
|
|
885
881
|
message: z.ZodString;
|
|
886
882
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -906,8 +902,8 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
906
902
|
code: z.ZodString;
|
|
907
903
|
severity: z.ZodEnum<{
|
|
908
904
|
info: "info";
|
|
909
|
-
warning: "warning";
|
|
910
905
|
error: "error";
|
|
906
|
+
warning: "warning";
|
|
911
907
|
}>;
|
|
912
908
|
message: z.ZodString;
|
|
913
909
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1008,11 +1004,7 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
1008
1004
|
}>;
|
|
1009
1005
|
moving: z.ZodBoolean;
|
|
1010
1006
|
channels: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1011
|
-
versionId: z.
|
|
1012
|
-
weighted: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1013
|
-
versionId: z.ZodString;
|
|
1014
|
-
percentage: z.ZodNumber;
|
|
1015
|
-
}, z.core.$strip>>>;
|
|
1007
|
+
versionId: z.ZodString;
|
|
1016
1008
|
updatedAt: z.ZodString;
|
|
1017
1009
|
}, z.core.$strip>>;
|
|
1018
1010
|
config: z.ZodNullable<z.ZodObject<{
|
|
@@ -1079,7 +1071,6 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
1079
1071
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1080
1072
|
}, z.core.$strict>>;
|
|
1081
1073
|
placement: z.ZodOptional<z.ZodObject<{
|
|
1082
|
-
region: z.ZodOptional<z.ZodString>;
|
|
1083
1074
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1084
1075
|
shared: "shared";
|
|
1085
1076
|
dedicated: "dedicated";
|
|
@@ -1109,6 +1100,7 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
1109
1100
|
ipCidrs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1110
1101
|
agent: z.ZodOptional<z.ZodString>;
|
|
1111
1102
|
country: z.ZodOptional<z.ZodString>;
|
|
1103
|
+
countryNotIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1112
1104
|
header: z.ZodOptional<z.ZodObject<{
|
|
1113
1105
|
name: z.ZodString;
|
|
1114
1106
|
value: z.ZodString;
|
|
@@ -1183,8 +1175,8 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
1183
1175
|
code: z.ZodString;
|
|
1184
1176
|
severity: z.ZodEnum<{
|
|
1185
1177
|
info: "info";
|
|
1186
|
-
warning: "warning";
|
|
1187
1178
|
error: "error";
|
|
1179
|
+
warning: "warning";
|
|
1188
1180
|
}>;
|
|
1189
1181
|
message: z.ZodString;
|
|
1190
1182
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1691,8 +1683,8 @@ export declare const spaceVersionFileResponseSchema: z.ZodObject<{
|
|
|
1691
1683
|
contentType: z.ZodNullable<z.ZodString>;
|
|
1692
1684
|
sha256: z.ZodNullable<z.ZodString>;
|
|
1693
1685
|
encoding: z.ZodEnum<{
|
|
1694
|
-
base64: "base64";
|
|
1695
1686
|
utf8: "utf8";
|
|
1687
|
+
base64: "base64";
|
|
1696
1688
|
}>;
|
|
1697
1689
|
content: z.ZodString;
|
|
1698
1690
|
truncated: z.ZodBoolean;
|
|
@@ -1829,8 +1821,8 @@ export declare const spaceVersionConventionArtifactContentResponseSchema: z.ZodO
|
|
|
1829
1821
|
warningCount: z.ZodNumber;
|
|
1830
1822
|
errorCount: z.ZodNumber;
|
|
1831
1823
|
encoding: z.ZodEnum<{
|
|
1832
|
-
base64: "base64";
|
|
1833
1824
|
utf8: "utf8";
|
|
1825
|
+
base64: "base64";
|
|
1834
1826
|
}>;
|
|
1835
1827
|
content: z.ZodString;
|
|
1836
1828
|
truncated: z.ZodBoolean;
|
|
@@ -1842,8 +1834,8 @@ export declare const spaceVersionRoutingDiagnosticSchema: z.ZodObject<{
|
|
|
1842
1834
|
}>;
|
|
1843
1835
|
line: z.ZodNumber;
|
|
1844
1836
|
severity: z.ZodEnum<{
|
|
1845
|
-
warning: "warning";
|
|
1846
1837
|
error: "error";
|
|
1838
|
+
warning: "warning";
|
|
1847
1839
|
}>;
|
|
1848
1840
|
code: z.ZodString;
|
|
1849
1841
|
message: z.ZodString;
|
|
@@ -1892,8 +1884,8 @@ export declare const spaceVersionComputedRoutingSummarySchema: z.ZodObject<{
|
|
|
1892
1884
|
}>;
|
|
1893
1885
|
line: z.ZodNumber;
|
|
1894
1886
|
severity: z.ZodEnum<{
|
|
1895
|
-
warning: "warning";
|
|
1896
1887
|
error: "error";
|
|
1888
|
+
warning: "warning";
|
|
1897
1889
|
}>;
|
|
1898
1890
|
code: z.ZodString;
|
|
1899
1891
|
message: z.ZodString;
|
|
@@ -1901,9 +1893,9 @@ export declare const spaceVersionComputedRoutingSummarySchema: z.ZodObject<{
|
|
|
1901
1893
|
}, z.core.$strip>>;
|
|
1902
1894
|
}, z.core.$strip>;
|
|
1903
1895
|
export declare const spaceVersionFileDiffStatusSchema: z.ZodEnum<{
|
|
1896
|
+
binary: "binary";
|
|
1904
1897
|
deleted: "deleted";
|
|
1905
1898
|
unchanged: "unchanged";
|
|
1906
|
-
binary: "binary";
|
|
1907
1899
|
added: "added";
|
|
1908
1900
|
modified: "modified";
|
|
1909
1901
|
renamed: "renamed";
|
|
@@ -1913,9 +1905,9 @@ export declare const spaceVersionFileDiffEntrySchema: z.ZodObject<{
|
|
|
1913
1905
|
path: z.ZodString;
|
|
1914
1906
|
oldPath: z.ZodNullable<z.ZodString>;
|
|
1915
1907
|
status: z.ZodEnum<{
|
|
1908
|
+
binary: "binary";
|
|
1916
1909
|
deleted: "deleted";
|
|
1917
1910
|
unchanged: "unchanged";
|
|
1918
|
-
binary: "binary";
|
|
1919
1911
|
added: "added";
|
|
1920
1912
|
modified: "modified";
|
|
1921
1913
|
renamed: "renamed";
|
|
@@ -1971,9 +1963,18 @@ export declare const spaceVersionFileDiffEntrySchema: z.ZodObject<{
|
|
|
1971
1963
|
format: z.ZodLiteral<"unified">;
|
|
1972
1964
|
content: z.ZodString;
|
|
1973
1965
|
truncated: z.ZodBoolean;
|
|
1966
|
+
truncationReason: z.ZodNullable<z.ZodLiteral<"patch_byte_limit">>;
|
|
1974
1967
|
}, z.core.$strip>>;
|
|
1968
|
+
patchOmission: z.ZodNullable<z.ZodEnum<{
|
|
1969
|
+
input_too_large: "input_too_large";
|
|
1970
|
+
not_previewable: "not_previewable";
|
|
1971
|
+
content_unavailable: "content_unavailable";
|
|
1972
|
+
patch_budget_exhausted: "patch_budget_exhausted";
|
|
1973
|
+
}>>;
|
|
1975
1974
|
}, z.core.$strip>;
|
|
1976
1975
|
export declare const spaceVersionFileDiffQuerySchema: z.ZodObject<{
|
|
1976
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
1977
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1977
1978
|
baseVersionId: z.ZodOptional<z.ZodString>;
|
|
1978
1979
|
}, z.core.$strip>;
|
|
1979
1980
|
export declare const spaceVersionFileDiffResponseSchema: z.ZodObject<{
|
|
@@ -1983,9 +1984,9 @@ export declare const spaceVersionFileDiffResponseSchema: z.ZodObject<{
|
|
|
1983
1984
|
path: z.ZodString;
|
|
1984
1985
|
oldPath: z.ZodNullable<z.ZodString>;
|
|
1985
1986
|
status: z.ZodEnum<{
|
|
1987
|
+
binary: "binary";
|
|
1986
1988
|
deleted: "deleted";
|
|
1987
1989
|
unchanged: "unchanged";
|
|
1988
|
-
binary: "binary";
|
|
1989
1990
|
added: "added";
|
|
1990
1991
|
modified: "modified";
|
|
1991
1992
|
renamed: "renamed";
|
|
@@ -2041,8 +2042,29 @@ export declare const spaceVersionFileDiffResponseSchema: z.ZodObject<{
|
|
|
2041
2042
|
format: z.ZodLiteral<"unified">;
|
|
2042
2043
|
content: z.ZodString;
|
|
2043
2044
|
truncated: z.ZodBoolean;
|
|
2045
|
+
truncationReason: z.ZodNullable<z.ZodLiteral<"patch_byte_limit">>;
|
|
2044
2046
|
}, z.core.$strip>>;
|
|
2047
|
+
patchOmission: z.ZodNullable<z.ZodEnum<{
|
|
2048
|
+
input_too_large: "input_too_large";
|
|
2049
|
+
not_previewable: "not_previewable";
|
|
2050
|
+
content_unavailable: "content_unavailable";
|
|
2051
|
+
patch_budget_exhausted: "patch_budget_exhausted";
|
|
2052
|
+
}>>;
|
|
2045
2053
|
}, z.core.$strip>>;
|
|
2054
|
+
pagination: z.ZodObject<{
|
|
2055
|
+
nextCursor: z.ZodNullable<z.ZodString>;
|
|
2056
|
+
hasMore: z.ZodBoolean;
|
|
2057
|
+
}, z.core.$strip>;
|
|
2058
|
+
limits: z.ZodObject<{
|
|
2059
|
+
maxFiles: z.ZodNumber;
|
|
2060
|
+
maxInputBytes: z.ZodNumber;
|
|
2061
|
+
maxPatchBytes: z.ZodNumber;
|
|
2062
|
+
readConcurrency: z.ZodNumber;
|
|
2063
|
+
}, z.core.$strip>;
|
|
2064
|
+
usage: z.ZodObject<{
|
|
2065
|
+
inputBytes: z.ZodNumber;
|
|
2066
|
+
patchBytes: z.ZodNumber;
|
|
2067
|
+
}, z.core.$strip>;
|
|
2046
2068
|
}, z.core.$strip>;
|
|
2047
2069
|
export declare const spaceVersionIntentResponseSchema: z.ZodObject<{
|
|
2048
2070
|
versionId: z.ZodNullable<z.ZodString>;
|
|
@@ -2061,8 +2083,8 @@ export declare const spaceVersionIntentResponseSchema: z.ZodObject<{
|
|
|
2061
2083
|
targets: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2062
2084
|
path: z.ZodString;
|
|
2063
2085
|
method: z.ZodEnum<{
|
|
2064
|
-
PUT: "PUT";
|
|
2065
2086
|
POST: "POST";
|
|
2087
|
+
PUT: "PUT";
|
|
2066
2088
|
}>;
|
|
2067
2089
|
url: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
|
2068
2090
|
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -2092,8 +2114,8 @@ export declare const spaceVersionIntentResponseSchema: z.ZodObject<{
|
|
|
2092
2114
|
code: z.ZodString;
|
|
2093
2115
|
severity: z.ZodEnum<{
|
|
2094
2116
|
info: "info";
|
|
2095
|
-
warning: "warning";
|
|
2096
2117
|
error: "error";
|
|
2118
|
+
warning: "warning";
|
|
2097
2119
|
}>;
|
|
2098
2120
|
message: z.ZodString;
|
|
2099
2121
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2112,24 +2134,6 @@ export declare const spaceVersionIntentResponseSchema: z.ZodObject<{
|
|
|
2112
2134
|
ignoredPaths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2113
2135
|
}, z.core.$strip>;
|
|
2114
2136
|
export declare const publishRequestSchema: z.ZodObject<{
|
|
2115
|
-
spaceId: z.ZodOptional<z.ZodString>;
|
|
2116
|
-
siteId: z.ZodOptional<z.ZodString>;
|
|
2117
|
-
teamId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2118
|
-
principal: z.ZodOptional<z.ZodObject<{
|
|
2119
|
-
type: z.ZodEnum<{
|
|
2120
|
-
team: "team";
|
|
2121
|
-
external: "external";
|
|
2122
|
-
}>;
|
|
2123
|
-
id: z.ZodString;
|
|
2124
|
-
}, z.core.$strip>>;
|
|
2125
|
-
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2126
|
-
path: z.ZodString;
|
|
2127
|
-
size: z.ZodNumber;
|
|
2128
|
-
sha256: z.ZodOptional<z.ZodString>;
|
|
2129
|
-
contentType: z.ZodOptional<z.ZodString>;
|
|
2130
|
-
sourceUrl: z.ZodOptional<z.ZodString>;
|
|
2131
|
-
}, z.core.$strip>>>;
|
|
2132
|
-
deletePaths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2133
2137
|
source: z.ZodOptional<z.ZodObject<{
|
|
2134
2138
|
kind: z.ZodEnum<{
|
|
2135
2139
|
api: "api";
|
|
@@ -2161,6 +2165,8 @@ export declare const publishRequestSchema: z.ZodObject<{
|
|
|
2161
2165
|
pullRequestNumber: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2162
2166
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2163
2167
|
}, z.core.$strip>>;
|
|
2168
|
+
sourceMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2169
|
+
buildLog: z.ZodOptional<z.ZodString>;
|
|
2164
2170
|
publishMode: z.ZodDefault<z.ZodEnum<{
|
|
2165
2171
|
additive: "additive";
|
|
2166
2172
|
snapshot: "snapshot";
|
|
@@ -2238,7 +2244,6 @@ export declare const publishRequestSchema: z.ZodObject<{
|
|
|
2238
2244
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
2239
2245
|
}, z.core.$strict>>;
|
|
2240
2246
|
placement: z.ZodOptional<z.ZodObject<{
|
|
2241
|
-
region: z.ZodOptional<z.ZodString>;
|
|
2242
2247
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
2243
2248
|
shared: "shared";
|
|
2244
2249
|
dedicated: "dedicated";
|
|
@@ -2254,6 +2259,25 @@ export declare const publishRequestSchema: z.ZodObject<{
|
|
|
2254
2259
|
noscript: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2255
2260
|
}, z.core.$strip>>;
|
|
2256
2261
|
}, z.core.$strip>>;
|
|
2262
|
+
deletePaths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2263
|
+
immutableAssetPrefixes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2264
|
+
spaceId: z.ZodOptional<z.ZodString>;
|
|
2265
|
+
siteId: z.ZodOptional<z.ZodString>;
|
|
2266
|
+
teamId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2267
|
+
principal: z.ZodOptional<z.ZodObject<{
|
|
2268
|
+
type: z.ZodEnum<{
|
|
2269
|
+
team: "team";
|
|
2270
|
+
external: "external";
|
|
2271
|
+
}>;
|
|
2272
|
+
id: z.ZodString;
|
|
2273
|
+
}, z.core.$strip>>;
|
|
2274
|
+
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2275
|
+
path: z.ZodString;
|
|
2276
|
+
size: z.ZodNumber;
|
|
2277
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
2278
|
+
contentType: z.ZodOptional<z.ZodString>;
|
|
2279
|
+
sourceUrl: z.ZodOptional<z.ZodString>;
|
|
2280
|
+
}, z.core.$strip>>>;
|
|
2257
2281
|
}, z.core.$strip>;
|
|
2258
2282
|
export declare const publishUploadReceiptSchema: z.ZodObject<{
|
|
2259
2283
|
id: z.ZodString;
|
|
@@ -2270,8 +2294,8 @@ export declare const publishUploadReceiptSchema: z.ZodObject<{
|
|
|
2270
2294
|
targets: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2271
2295
|
path: z.ZodString;
|
|
2272
2296
|
method: z.ZodEnum<{
|
|
2273
|
-
PUT: "PUT";
|
|
2274
2297
|
POST: "POST";
|
|
2298
|
+
PUT: "PUT";
|
|
2275
2299
|
}>;
|
|
2276
2300
|
url: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
|
2277
2301
|
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -2301,8 +2325,8 @@ export declare const publishUploadReceiptSchema: z.ZodObject<{
|
|
|
2301
2325
|
code: z.ZodString;
|
|
2302
2326
|
severity: z.ZodEnum<{
|
|
2303
2327
|
info: "info";
|
|
2304
|
-
warning: "warning";
|
|
2305
2328
|
error: "error";
|
|
2329
|
+
warning: "warning";
|
|
2306
2330
|
}>;
|
|
2307
2331
|
message: z.ZodString;
|
|
2308
2332
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2344,6 +2368,31 @@ export declare const publishReceiptVersionSchema: z.ZodObject<{
|
|
|
2344
2368
|
number: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2345
2369
|
manifestHash: z.ZodNullable<z.ZodString>;
|
|
2346
2370
|
}, z.core.$strip>;
|
|
2371
|
+
export declare const publishActivationSchema: z.ZodObject<{
|
|
2372
|
+
channel: z.ZodNullable<z.ZodEnum<{
|
|
2373
|
+
live: "live";
|
|
2374
|
+
}>>;
|
|
2375
|
+
outcome: z.ZodEnum<{
|
|
2376
|
+
pending: "pending";
|
|
2377
|
+
activated: "activated";
|
|
2378
|
+
unpromoted: "unpromoted";
|
|
2379
|
+
superseded: "superseded";
|
|
2380
|
+
}>;
|
|
2381
|
+
currentLiveVersionId: z.ZodNullable<z.ZodString>;
|
|
2382
|
+
}, z.core.$strip>;
|
|
2383
|
+
export declare const publishNextSchema: z.ZodObject<{
|
|
2384
|
+
action: z.ZodEnum<{
|
|
2385
|
+
upload: "upload";
|
|
2386
|
+
finalize: "finalize";
|
|
2387
|
+
done: "done";
|
|
2388
|
+
poll: "poll";
|
|
2389
|
+
}>;
|
|
2390
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2391
|
+
retryAfter: z.ZodOptional<z.ZodNumber>;
|
|
2392
|
+
hint: z.ZodString;
|
|
2393
|
+
}, z.core.$strip>;
|
|
2394
|
+
export type PublishActivation = z.infer<typeof publishActivationSchema>;
|
|
2395
|
+
export type PublishNext = z.infer<typeof publishNextSchema>;
|
|
2347
2396
|
export declare const publishReceiptSchema: z.ZodObject<{
|
|
2348
2397
|
space: z.ZodObject<{
|
|
2349
2398
|
id: z.ZodString;
|
|
@@ -2371,6 +2420,29 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2371
2420
|
number: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2372
2421
|
manifestHash: z.ZodNullable<z.ZodString>;
|
|
2373
2422
|
}, z.core.$strip>;
|
|
2423
|
+
activation: z.ZodObject<{
|
|
2424
|
+
channel: z.ZodNullable<z.ZodEnum<{
|
|
2425
|
+
live: "live";
|
|
2426
|
+
}>>;
|
|
2427
|
+
outcome: z.ZodEnum<{
|
|
2428
|
+
pending: "pending";
|
|
2429
|
+
activated: "activated";
|
|
2430
|
+
unpromoted: "unpromoted";
|
|
2431
|
+
superseded: "superseded";
|
|
2432
|
+
}>;
|
|
2433
|
+
currentLiveVersionId: z.ZodNullable<z.ZodString>;
|
|
2434
|
+
}, z.core.$strip>;
|
|
2435
|
+
next: z.ZodObject<{
|
|
2436
|
+
action: z.ZodEnum<{
|
|
2437
|
+
upload: "upload";
|
|
2438
|
+
finalize: "finalize";
|
|
2439
|
+
done: "done";
|
|
2440
|
+
poll: "poll";
|
|
2441
|
+
}>;
|
|
2442
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2443
|
+
retryAfter: z.ZodOptional<z.ZodNumber>;
|
|
2444
|
+
hint: z.ZodString;
|
|
2445
|
+
}, z.core.$strip>;
|
|
2374
2446
|
operation: z.ZodOptional<z.ZodObject<{
|
|
2375
2447
|
id: z.ZodString;
|
|
2376
2448
|
kind: z.ZodString;
|
|
@@ -2394,8 +2466,8 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2394
2466
|
code: z.ZodString;
|
|
2395
2467
|
severity: z.ZodEnum<{
|
|
2396
2468
|
info: "info";
|
|
2397
|
-
warning: "warning";
|
|
2398
2469
|
error: "error";
|
|
2470
|
+
warning: "warning";
|
|
2399
2471
|
}>;
|
|
2400
2472
|
message: z.ZodString;
|
|
2401
2473
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2428,8 +2500,8 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2428
2500
|
targets: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2429
2501
|
path: z.ZodString;
|
|
2430
2502
|
method: z.ZodEnum<{
|
|
2431
|
-
PUT: "PUT";
|
|
2432
2503
|
POST: "POST";
|
|
2504
|
+
PUT: "PUT";
|
|
2433
2505
|
}>;
|
|
2434
2506
|
url: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
|
2435
2507
|
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -2459,8 +2531,8 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2459
2531
|
code: z.ZodString;
|
|
2460
2532
|
severity: z.ZodEnum<{
|
|
2461
2533
|
info: "info";
|
|
2462
|
-
warning: "warning";
|
|
2463
2534
|
error: "error";
|
|
2535
|
+
warning: "warning";
|
|
2464
2536
|
}>;
|
|
2465
2537
|
message: z.ZodString;
|
|
2466
2538
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2485,8 +2557,8 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2485
2557
|
code: z.ZodString;
|
|
2486
2558
|
severity: z.ZodEnum<{
|
|
2487
2559
|
info: "info";
|
|
2488
|
-
warning: "warning";
|
|
2489
2560
|
error: "error";
|
|
2561
|
+
warning: "warning";
|
|
2490
2562
|
}>;
|
|
2491
2563
|
message: z.ZodString;
|
|
2492
2564
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2527,8 +2599,8 @@ export declare const spaceVersionResumeResponseSchema: z.ZodObject<{
|
|
|
2527
2599
|
targets: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2528
2600
|
path: z.ZodString;
|
|
2529
2601
|
method: z.ZodEnum<{
|
|
2530
|
-
PUT: "PUT";
|
|
2531
2602
|
POST: "POST";
|
|
2603
|
+
PUT: "PUT";
|
|
2532
2604
|
}>;
|
|
2533
2605
|
url: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
|
2534
2606
|
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -2558,8 +2630,8 @@ export declare const spaceVersionResumeResponseSchema: z.ZodObject<{
|
|
|
2558
2630
|
code: z.ZodString;
|
|
2559
2631
|
severity: z.ZodEnum<{
|
|
2560
2632
|
info: "info";
|
|
2561
|
-
warning: "warning";
|
|
2562
2633
|
error: "error";
|
|
2634
|
+
warning: "warning";
|
|
2563
2635
|
}>;
|
|
2564
2636
|
message: z.ZodString;
|
|
2565
2637
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2656,8 +2728,8 @@ export declare const spaceRuntimeStatusSchema: z.ZodObject<{
|
|
|
2656
2728
|
code: z.ZodString;
|
|
2657
2729
|
severity: z.ZodEnum<{
|
|
2658
2730
|
info: "info";
|
|
2659
|
-
warning: "warning";
|
|
2660
2731
|
error: "error";
|
|
2732
|
+
warning: "warning";
|
|
2661
2733
|
}>;
|
|
2662
2734
|
message: z.ZodString;
|
|
2663
2735
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2675,40 +2747,12 @@ export declare const spaceRuntimeStatusSchema: z.ZodObject<{
|
|
|
2675
2747
|
finishedAt: z.ZodOptional<z.ZodString>;
|
|
2676
2748
|
}, z.core.$strip>>;
|
|
2677
2749
|
}, z.core.$strip>;
|
|
2678
|
-
export declare const spaceChannelSchema: z.ZodObject<{
|
|
2679
|
-
name: z.ZodString;
|
|
2680
|
-
pointer: z.ZodObject<{
|
|
2681
|
-
versionId: z.ZodOptional<z.ZodString>;
|
|
2682
|
-
weighted: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2683
|
-
versionId: z.ZodString;
|
|
2684
|
-
percentage: z.ZodNumber;
|
|
2685
|
-
}, z.core.$strip>>>;
|
|
2686
|
-
updatedAt: z.ZodString;
|
|
2687
|
-
}, z.core.$strip>;
|
|
2688
|
-
}, z.core.$strip>;
|
|
2689
|
-
export declare const spaceChannelListResponseSchema: z.ZodObject<{
|
|
2690
|
-
data: z.ZodArray<z.ZodObject<{
|
|
2691
|
-
name: z.ZodString;
|
|
2692
|
-
pointer: z.ZodObject<{
|
|
2693
|
-
versionId: z.ZodOptional<z.ZodString>;
|
|
2694
|
-
weighted: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2695
|
-
versionId: z.ZodString;
|
|
2696
|
-
percentage: z.ZodNumber;
|
|
2697
|
-
}, z.core.$strip>>>;
|
|
2698
|
-
updatedAt: z.ZodString;
|
|
2699
|
-
}, z.core.$strip>;
|
|
2700
|
-
}, z.core.$strip>>;
|
|
2701
|
-
pagination: z.ZodObject<{
|
|
2702
|
-
nextCursor: z.ZodNullable<z.ZodString>;
|
|
2703
|
-
hasMore: z.ZodBoolean;
|
|
2704
|
-
}, z.core.$strip>;
|
|
2705
|
-
}, z.core.$strip>;
|
|
2706
2750
|
export declare const spaceApplyChangeBaseSchema: z.ZodObject<{
|
|
2707
2751
|
kind: z.ZodEnum<{
|
|
2708
2752
|
routing: "routing";
|
|
2709
2753
|
password: "password";
|
|
2710
|
-
settings: "settings";
|
|
2711
2754
|
variable: "variable";
|
|
2755
|
+
settings: "settings";
|
|
2712
2756
|
}>;
|
|
2713
2757
|
name: z.ZodString;
|
|
2714
2758
|
label: z.ZodString;
|
|
@@ -2721,8 +2765,8 @@ export declare const spaceApplyChangeSchema: z.ZodObject<{
|
|
|
2721
2765
|
kind: z.ZodEnum<{
|
|
2722
2766
|
routing: "routing";
|
|
2723
2767
|
password: "password";
|
|
2724
|
-
settings: "settings";
|
|
2725
2768
|
variable: "variable";
|
|
2769
|
+
settings: "settings";
|
|
2726
2770
|
}>;
|
|
2727
2771
|
name: z.ZodString;
|
|
2728
2772
|
label: z.ZodString;
|
|
@@ -2732,7 +2776,6 @@ export declare const spaceApplyChangeSchema: z.ZodObject<{
|
|
|
2732
2776
|
stage: "stage";
|
|
2733
2777
|
apply: "apply";
|
|
2734
2778
|
}>;
|
|
2735
|
-
changesetId: z.ZodOptional<z.ZodString>;
|
|
2736
2779
|
before: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2737
2780
|
after: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2738
2781
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -2751,8 +2794,8 @@ export declare const spaceApplyStateSchema: z.ZodObject<{
|
|
|
2751
2794
|
kind: z.ZodEnum<{
|
|
2752
2795
|
routing: "routing";
|
|
2753
2796
|
password: "password";
|
|
2754
|
-
settings: "settings";
|
|
2755
2797
|
variable: "variable";
|
|
2798
|
+
settings: "settings";
|
|
2756
2799
|
}>;
|
|
2757
2800
|
name: z.ZodString;
|
|
2758
2801
|
label: z.ZodString;
|
|
@@ -2762,7 +2805,6 @@ export declare const spaceApplyStateSchema: z.ZodObject<{
|
|
|
2762
2805
|
stage: "stage";
|
|
2763
2806
|
apply: "apply";
|
|
2764
2807
|
}>;
|
|
2765
|
-
changesetId: z.ZodOptional<z.ZodString>;
|
|
2766
2808
|
before: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2767
2809
|
after: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2768
2810
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -2790,8 +2832,8 @@ export declare const spaceApplyStateSchema: z.ZodObject<{
|
|
|
2790
2832
|
code: z.ZodString;
|
|
2791
2833
|
severity: z.ZodEnum<{
|
|
2792
2834
|
info: "info";
|
|
2793
|
-
warning: "warning";
|
|
2794
2835
|
error: "error";
|
|
2836
|
+
warning: "warning";
|
|
2795
2837
|
}>;
|
|
2796
2838
|
message: z.ZodString;
|
|
2797
2839
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2827,8 +2869,8 @@ export declare const spaceApplyResponseSchema: z.ZodObject<{
|
|
|
2827
2869
|
kind: z.ZodEnum<{
|
|
2828
2870
|
routing: "routing";
|
|
2829
2871
|
password: "password";
|
|
2830
|
-
settings: "settings";
|
|
2831
2872
|
variable: "variable";
|
|
2873
|
+
settings: "settings";
|
|
2832
2874
|
}>;
|
|
2833
2875
|
name: z.ZodString;
|
|
2834
2876
|
label: z.ZodString;
|
|
@@ -2838,7 +2880,6 @@ export declare const spaceApplyResponseSchema: z.ZodObject<{
|
|
|
2838
2880
|
stage: "stage";
|
|
2839
2881
|
apply: "apply";
|
|
2840
2882
|
}>;
|
|
2841
|
-
changesetId: z.ZodOptional<z.ZodString>;
|
|
2842
2883
|
before: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2843
2884
|
after: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2844
2885
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -2866,8 +2907,8 @@ export declare const spaceApplyResponseSchema: z.ZodObject<{
|
|
|
2866
2907
|
code: z.ZodString;
|
|
2867
2908
|
severity: z.ZodEnum<{
|
|
2868
2909
|
info: "info";
|
|
2869
|
-
warning: "warning";
|
|
2870
2910
|
error: "error";
|
|
2911
|
+
warning: "warning";
|
|
2871
2912
|
}>;
|
|
2872
2913
|
message: z.ZodString;
|
|
2873
2914
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|