@spacefast/common 0.0.5 → 0.0.7
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/brand-assets/spacefast-favicon.svg +16 -0
- package/brand-assets/spacefast-sf-full-bleed.svg +13 -0
- package/brand-assets/spacefast-wordmark.svg +5 -0
- package/dist/agents/connect-targets.d.ts +138 -0
- package/dist/agents/connect-targets.js +243 -0
- package/dist/brand-assets-build.d.ts +26 -0
- package/dist/brand-assets-build.js +81 -0
- package/dist/brand-assets.d.ts +42 -0
- package/dist/brand-assets.js +30 -0
- package/dist/brand.d.ts +1 -0
- package/dist/brand.js +5 -0
- package/dist/config/domains.d.ts +12 -6
- package/dist/config/domains.js +30 -38
- package/dist/contracts/access.d.ts +967 -124
- package/dist/contracts/access.js +804 -148
- package/dist/contracts/activity.d.ts +1 -1
- package/dist/contracts/activity.js +28 -2
- package/dist/contracts/annotations.d.ts +2 -4
- package/dist/contracts/api-keys.d.ts +126 -4
- package/dist/contracts/api-keys.js +74 -6
- package/dist/contracts/archives.d.ts +8 -2
- package/dist/contracts/archives.js +11 -4
- package/dist/contracts/billing.d.ts +0 -9
- package/dist/contracts/builds.d.ts +65 -21
- package/dist/contracts/builds.js +29 -0
- package/dist/contracts/common.d.ts +2 -0
- package/dist/contracts/common.js +4 -0
- package/dist/contracts/continuation.d.ts +0 -3
- package/dist/contracts/countries.d.ts +2 -0
- package/dist/contracts/countries.js +261 -0
- package/dist/contracts/deployments.d.ts +34 -34
- package/dist/contracts/device-auth.d.ts +4 -11
- package/dist/contracts/device-auth.js +4 -0
- package/dist/contracts/docs.d.ts +119 -0
- package/dist/contracts/docs.js +51 -0
- package/dist/contracts/domains.d.ts +96 -54
- package/dist/contracts/domains.js +26 -4
- package/dist/contracts/enums.d.ts +15 -16
- package/dist/contracts/enums.js +26 -14
- package/dist/contracts/error-code-meta.d.ts +184 -0
- package/dist/contracts/error-code-meta.js +124 -10
- package/dist/contracts/error-codes.d.ts +1 -1
- package/dist/contracts/error-codes.js +42 -0
- package/dist/contracts/events.d.ts +1 -1
- package/dist/contracts/feature-lifecycle-core.d.ts +36 -0
- package/dist/contracts/feature-lifecycle-core.js +220 -0
- package/dist/contracts/feature-lifecycle.d.ts +7 -0
- package/dist/contracts/feature-lifecycle.js +31 -0
- package/dist/contracts/features.d.ts +76 -6
- package/dist/contracts/features.js +178 -13
- package/dist/contracts/generated-feature-launch-entries.d.ts +2 -0
- package/dist/contracts/generated-feature-launch-entries.js +518 -0
- package/dist/contracts/git.d.ts +2 -8
- package/dist/contracts/ids.d.ts +9 -0
- package/dist/contracts/ids.js +13 -0
- package/dist/contracts/mcp.d.ts +8 -10
- package/dist/contracts/me.js +1 -1
- package/dist/contracts/oauth-resources.d.ts +19 -8
- package/dist/contracts/oauth-resources.js +44 -13
- package/dist/contracts/operations.d.ts +161 -1
- package/dist/contracts/operations.js +49 -1
- package/dist/contracts/platform.d.ts +6 -102
- package/dist/contracts/platform.js +6 -50
- package/dist/contracts/publishes.d.ts +130 -0
- package/dist/contracts/publishes.js +145 -0
- package/dist/contracts/push-new.d.ts +4 -4
- package/dist/contracts/quotas.d.ts +2 -0
- package/dist/contracts/quotas.js +8 -0
- package/dist/contracts/repository-connections.d.ts +9 -8
- package/dist/contracts/repository-connections.js +13 -0
- package/dist/contracts/resources.d.ts +99 -13
- package/dist/contracts/resources.js +36 -4
- package/dist/contracts/routes.d.ts +0 -2
- package/dist/contracts/runtime-api.d.ts +363 -39
- package/dist/contracts/runtime-api.js +276 -6
- package/dist/contracts/sf-config-v1.d.ts +75 -0
- package/dist/contracts/sf-config-v1.js +6 -0
- package/dist/contracts/sites.d.ts +19 -2
- package/dist/contracts/sites.js +21 -0
- package/dist/contracts/space-config.d.ts +201 -2
- package/dist/contracts/space-config.js +135 -5
- package/dist/contracts/spaces.d.ts +376 -196
- package/dist/contracts/spaces.js +62 -10
- package/dist/contracts/superadmin-emails.d.ts +4 -2
- package/dist/contracts/superadmin-emails.js +8 -0
- package/dist/contracts/superadmin-queues.d.ts +26 -26
- package/dist/contracts/superadmin-spaces.d.ts +172 -42
- package/dist/contracts/superadmin-tenants.d.ts +6 -6
- package/dist/contracts/superadmin-tenants.js +6 -11
- package/dist/contracts/superadmin.d.ts +6 -93
- package/dist/contracts/superadmin.js +6 -14
- package/dist/contracts/tags.d.ts +10 -9
- package/dist/contracts/tags.js +2 -1
- package/dist/contracts/teams.d.ts +26 -30
- package/dist/contracts/teams.js +11 -17
- package/dist/contracts/theme-json.d.ts +30 -0
- package/dist/contracts/theme-json.js +48 -0
- package/dist/contracts/variables.d.ts +0 -2
- package/dist/contracts/variables.js +0 -5
- package/dist/contracts/webhooks.d.ts +2 -0
- package/dist/contracts/webhooks.js +1 -1
- package/dist/contracts/zero.d.ts +5 -10
- package/dist/docs/agent-prose.d.ts +43 -3
- package/dist/docs/agent-prose.js +146 -7
- package/dist/docs/agent-setup.d.ts +51 -0
- package/dist/docs/agent-setup.js +211 -14
- package/dist/docs/agent-solutions.d.ts +5 -5
- package/dist/docs/agent-solutions.js +2 -2
- package/dist/docs/catalog.d.ts +650 -0
- package/dist/docs/catalog.js +758 -0
- package/dist/docs/error-docs.d.ts +0 -2
- package/dist/docs/error-docs.js +189 -35
- package/dist/docs/index-build.d.ts +17 -0
- package/dist/docs/index-build.js +24 -0
- package/dist/docs/search.d.ts +54 -0
- package/dist/docs/search.js +96 -0
- package/dist/docs/skill-distribution.d.ts +5 -3
- package/dist/docs/skill-distribution.js +8 -8
- package/dist/slug-policy/blocklist.d.ts +4 -0
- package/dist/slug-policy/blocklist.js +122 -0
- package/dist/slug-policy/index.d.ts +17 -0
- package/dist/slug-policy/index.js +86 -0
- package/dist/utils/access-match.d.ts +39 -0
- package/dist/utils/access-match.js +296 -0
- package/dist/utils/auth-redirect.d.ts +3 -1
- package/dist/utils/auth-redirect.js +21 -1
- package/dist/utils/build-settings.d.ts +6 -0
- package/dist/utils/build-settings.js +429 -46
- package/dist/utils/claim-token.d.ts +8 -0
- package/dist/utils/claim-token.js +23 -2
- package/dist/utils/concurrency.d.ts +1 -0
- package/dist/utils/concurrency.js +22 -0
- package/dist/utils/content-type.d.ts +1 -0
- package/dist/utils/content-type.js +1 -1
- package/dist/utils/credential-policy.d.ts +54 -0
- package/dist/utils/{access-policy.js → credential-policy.js} +28 -2
- package/dist/utils/email.d.ts +1 -0
- package/dist/utils/email.js +3 -0
- package/dist/utils/gate-theme.d.ts +61 -0
- package/dist/utils/gate-theme.js +217 -0
- package/dist/utils/git-repository.d.ts +0 -1
- package/dist/utils/git-repository.js +0 -3
- package/dist/utils/id-hints.d.ts +8 -0
- package/dist/utils/id-hints.js +61 -0
- package/dist/utils/local-space-state.d.ts +91 -0
- package/dist/utils/local-space-state.js +251 -0
- package/dist/utils/oauth-signed-query.d.ts +8 -0
- package/dist/utils/oauth-signed-query.js +26 -0
- package/dist/utils/publish-detection.d.ts +0 -8
- package/dist/utils/publish-detection.js +0 -93
- package/dist/utils/publish-policy.d.ts +6 -5
- package/dist/utils/publish-policy.js +71 -7
- package/dist/utils/query-keys.d.ts +16 -4
- package/dist/utils/query-keys.js +31 -4
- package/dist/utils/runtime-paths.d.ts +0 -1
- package/dist/utils/runtime-paths.js +0 -1
- package/dist/utils/runtime-upload-batch.d.ts +18 -0
- package/dist/utils/runtime-upload-batch.js +90 -0
- package/dist/utils/runtime-upload.d.ts +2 -0
- package/dist/utils/runtime-upload.js +5 -0
- package/dist/utils/sf-config-v1.d.ts +2 -0
- package/dist/utils/sf-config-v1.js +542 -0
- package/dist/utils/space-config.d.ts +4 -0
- package/dist/utils/space-config.js +10 -1
- package/dist/utils/space-theme.d.ts +2 -0
- package/dist/utils/space-theme.js +9 -0
- package/dist/utils/static-runtime-policy.d.ts +0 -21
- package/dist/utils/static-runtime-policy.js +19 -103
- package/dist/utils/upload-session.d.ts +1 -1
- package/dist/utils/wpcom-auth-redirects.d.ts +32 -2
- package/dist/utils/wpcom-auth-redirects.js +26 -10
- package/dist/vocabulary.d.ts +130 -30
- package/dist/vocabulary.js +77 -36
- package/package.json +35 -1
- package/dist/contracts/account.d.ts +0 -28
- package/dist/contracts/account.js +0 -54
- package/dist/contracts/intercom.d.ts +0 -6
- package/dist/contracts/intercom.js +0 -5
- package/dist/contracts/telemetry.d.ts +0 -2
- package/dist/contracts/telemetry.js +0 -1
- package/dist/utils/access-policy.d.ts +0 -39
- package/dist/utils/error-display.d.ts +0 -7
- package/dist/utils/error-display.js +0 -42
|
@@ -24,8 +24,8 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
24
24
|
slug: z.ZodString;
|
|
25
25
|
title: z.ZodString;
|
|
26
26
|
status: z.ZodEnum<{
|
|
27
|
-
provisioning: "provisioning";
|
|
28
27
|
active: "active";
|
|
28
|
+
provisioning: "provisioning";
|
|
29
29
|
updating: "updating";
|
|
30
30
|
moving: "moving";
|
|
31
31
|
deleting: "deleting";
|
|
@@ -38,6 +38,7 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
38
38
|
abuse_takedown: "abuse_takedown";
|
|
39
39
|
tenant_suspended: "tenant_suspended";
|
|
40
40
|
site_suspended: "site_suspended";
|
|
41
|
+
visit_cap_exceeded: "visit_cap_exceeded";
|
|
41
42
|
}>;
|
|
42
43
|
}, z.core.$strip>>;
|
|
43
44
|
claimState: z.ZodNullable<z.ZodObject<{
|
|
@@ -51,7 +52,31 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
51
52
|
defaultHostname: z.ZodString;
|
|
52
53
|
publicName: z.ZodString;
|
|
53
54
|
liveUrl: z.ZodString;
|
|
55
|
+
thumbnail: z.ZodNullable<z.ZodObject<{
|
|
56
|
+
kind: z.ZodEnum<{
|
|
57
|
+
image: "image";
|
|
58
|
+
screenshot: "screenshot";
|
|
59
|
+
}>;
|
|
60
|
+
provider: z.ZodEnum<{
|
|
61
|
+
"wpcom-mshots": "wpcom-mshots";
|
|
62
|
+
"wpcom-site-accelerator": "wpcom-site-accelerator";
|
|
63
|
+
}>;
|
|
64
|
+
url: z.ZodString;
|
|
65
|
+
sourceUrl: z.ZodString;
|
|
66
|
+
}, z.core.$strip>>;
|
|
54
67
|
dataLocation: z.ZodString;
|
|
68
|
+
region: z.ZodString;
|
|
69
|
+
placementMode: z.ZodEnum<{
|
|
70
|
+
shared: "shared";
|
|
71
|
+
dedicated: "dedicated";
|
|
72
|
+
}>;
|
|
73
|
+
burstable: z.ZodNullable<z.ZodBoolean>;
|
|
74
|
+
archivedBytes: z.ZodNumber;
|
|
75
|
+
tierPolicy: z.ZodEnum<{
|
|
76
|
+
auto: "auto";
|
|
77
|
+
always_hot: "always_hot";
|
|
78
|
+
}>;
|
|
79
|
+
moving: z.ZodBoolean;
|
|
55
80
|
channels: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
56
81
|
versionId: z.ZodOptional<z.ZodString>;
|
|
57
82
|
weighted: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -66,6 +91,7 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
66
91
|
path: z.ZodString;
|
|
67
92
|
status: z.ZodNumber;
|
|
68
93
|
}, z.core.$strip>]>>;
|
|
94
|
+
cleanUrls: z.ZodOptional<z.ZodBoolean>;
|
|
69
95
|
listing: z.ZodOptional<z.ZodBoolean>;
|
|
70
96
|
meta: z.ZodOptional<z.ZodObject<{
|
|
71
97
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -98,6 +124,7 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
98
124
|
reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
99
125
|
}, z.core.$strip>>>;
|
|
100
126
|
}, z.core.$strip>>;
|
|
127
|
+
requireReview: z.ZodOptional<z.ZodBoolean>;
|
|
101
128
|
}, z.core.$strip>>;
|
|
102
129
|
}, z.core.$strip>>;
|
|
103
130
|
templates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -124,6 +151,15 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
124
151
|
}, z.core.$strip>>>;
|
|
125
152
|
}, z.core.$strip>>;
|
|
126
153
|
}, z.core.$strip>>;
|
|
154
|
+
pages: z.ZodOptional<z.ZodObject<{
|
|
155
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
156
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
157
|
+
background: z.ZodOptional<z.ZodString>;
|
|
158
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
159
|
+
name: z.ZodOptional<z.ZodString>;
|
|
160
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
161
|
+
}, z.core.$strip>>;
|
|
162
|
+
}, z.core.$strip>>;
|
|
127
163
|
build: z.ZodOptional<z.ZodObject<{
|
|
128
164
|
rootDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
129
165
|
installDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -136,6 +172,15 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
136
172
|
allowUnsupportedPlatformFeatures: z.ZodOptional<z.ZodBoolean>;
|
|
137
173
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
138
174
|
}, z.core.$strict>>;
|
|
175
|
+
placement: z.ZodOptional<z.ZodObject<{
|
|
176
|
+
region: z.ZodOptional<z.ZodString>;
|
|
177
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
178
|
+
shared: "shared";
|
|
179
|
+
dedicated: "dedicated";
|
|
180
|
+
}>>;
|
|
181
|
+
burstable: z.ZodOptional<z.ZodBoolean>;
|
|
182
|
+
}, z.core.$strict>>;
|
|
183
|
+
markdownNegotiation: z.ZodOptional<z.ZodBoolean>;
|
|
139
184
|
experimental_gutenberg: z.ZodOptional<z.ZodBoolean>;
|
|
140
185
|
inject: z.ZodOptional<z.ZodObject<{
|
|
141
186
|
head: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -144,11 +189,15 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
144
189
|
noscript: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
145
190
|
}, z.core.$strip>>;
|
|
146
191
|
}, z.core.$strip>>;
|
|
192
|
+
settingsDigest: z.ZodString;
|
|
147
193
|
noindex: z.ZodBoolean;
|
|
148
194
|
policy: z.ZodNullable<z.ZodObject<{
|
|
149
195
|
rules: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
196
|
+
id: z.ZodOptional<z.ZodString>;
|
|
150
197
|
match: z.ZodDefault<z.ZodObject<{
|
|
151
198
|
host: z.ZodOptional<z.ZodString>;
|
|
199
|
+
hostPattern: z.ZodOptional<z.ZodString>;
|
|
200
|
+
hostTemplate: z.ZodOptional<z.ZodString>;
|
|
152
201
|
pathPattern: z.ZodOptional<z.ZodString>;
|
|
153
202
|
channel: z.ZodOptional<z.ZodString>;
|
|
154
203
|
ipCidrs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -165,39 +214,55 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
165
214
|
challenge: "challenge";
|
|
166
215
|
}>;
|
|
167
216
|
auth: z.ZodOptional<z.ZodObject<{
|
|
168
|
-
|
|
217
|
+
requiredGrants: z.ZodArray<z.ZodString>;
|
|
218
|
+
issuers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
219
|
+
kid: z.ZodString;
|
|
220
|
+
alg: z.ZodLiteral<"EdDSA">;
|
|
221
|
+
publicKey: z.ZodString;
|
|
222
|
+
grantNamespaces: z.ZodArray<z.ZodString>;
|
|
223
|
+
}, z.core.$strip>>>;
|
|
224
|
+
acquire: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
225
|
+
type: z.ZodLiteral<"password">;
|
|
169
226
|
ref: z.ZodString;
|
|
170
227
|
transport: z.ZodEnum<{
|
|
171
228
|
basic: "basic";
|
|
172
229
|
form: "form";
|
|
173
230
|
}>;
|
|
174
231
|
username: z.ZodOptional<z.ZodString>;
|
|
175
|
-
}, z.core.$strip
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
alg: z.ZodLiteral<"EdDSA">;
|
|
181
|
-
publicKey: z.ZodString;
|
|
182
|
-
grantNamespaces: z.ZodArray<z.ZodString>;
|
|
183
|
-
}, z.core.$strip>>>;
|
|
184
|
-
loginUrl: z.ZodOptional<z.ZodString>;
|
|
185
|
-
cookieName: z.ZodOptional<z.ZodString>;
|
|
186
|
-
}, z.core.$strip>>;
|
|
232
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
233
|
+
type: z.ZodLiteral<"login">;
|
|
234
|
+
url: z.ZodString;
|
|
235
|
+
label: z.ZodOptional<z.ZodString>;
|
|
236
|
+
}, z.core.$strip>], "type">>>;
|
|
187
237
|
}, z.core.$strip>>;
|
|
238
|
+
managedBy: z.ZodOptional<z.ZodEnum<{
|
|
239
|
+
sharing: "sharing";
|
|
240
|
+
firewall: "firewall";
|
|
241
|
+
file_share: "file_share";
|
|
242
|
+
cast_reviewer: "cast_reviewer";
|
|
243
|
+
team_default: "team_default";
|
|
244
|
+
}>>;
|
|
245
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
188
246
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
189
247
|
message: z.ZodOptional<z.ZodString>;
|
|
190
248
|
}, z.core.$strip>>>;
|
|
249
|
+
issuers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
250
|
+
kid: z.ZodString;
|
|
251
|
+
alg: z.ZodLiteral<"EdDSA">;
|
|
252
|
+
publicKey: z.ZodString;
|
|
253
|
+
grantNamespaces: z.ZodArray<z.ZodString>;
|
|
254
|
+
}, z.core.$strip>>>;
|
|
255
|
+
sessionVersion: z.ZodOptional<z.ZodNumber>;
|
|
191
256
|
}, z.core.$strip>>;
|
|
192
257
|
operation: z.ZodNullable<z.ZodObject<{
|
|
193
258
|
id: z.ZodString;
|
|
194
259
|
kind: z.ZodString;
|
|
195
260
|
status: z.ZodEnum<{
|
|
196
261
|
failed: "failed";
|
|
262
|
+
canceled: "canceled";
|
|
197
263
|
queued: "queued";
|
|
198
264
|
running: "running";
|
|
199
265
|
succeeded: "succeeded";
|
|
200
|
-
canceled: "canceled";
|
|
201
266
|
}>;
|
|
202
267
|
resources: z.ZodArray<z.ZodObject<{
|
|
203
268
|
type: z.ZodString;
|
|
@@ -211,16 +276,16 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
211
276
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
212
277
|
code: z.ZodString;
|
|
213
278
|
severity: z.ZodEnum<{
|
|
279
|
+
info: "info";
|
|
214
280
|
warning: "warning";
|
|
215
281
|
error: "error";
|
|
216
|
-
info: "info";
|
|
217
282
|
}>;
|
|
218
283
|
message: z.ZodString;
|
|
219
284
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
220
285
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
286
|
+
registrar: "registrar";
|
|
221
287
|
wpcloud: "wpcloud";
|
|
222
288
|
dns: "dns";
|
|
223
|
-
registrar: "registrar";
|
|
224
289
|
runtime: "runtime";
|
|
225
290
|
}>>>;
|
|
226
291
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -243,16 +308,16 @@ export declare const SpaceCreateResponseSchema: z.ZodObject<{
|
|
|
243
308
|
export declare const spaceDiagnosticSchema: z.ZodObject<{
|
|
244
309
|
code: z.ZodString;
|
|
245
310
|
severity: z.ZodEnum<{
|
|
311
|
+
info: "info";
|
|
246
312
|
warning: "warning";
|
|
247
313
|
error: "error";
|
|
248
|
-
info: "info";
|
|
249
314
|
}>;
|
|
250
315
|
message: z.ZodString;
|
|
251
316
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
252
317
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
318
|
+
registrar: "registrar";
|
|
253
319
|
wpcloud: "wpcloud";
|
|
254
320
|
dns: "dns";
|
|
255
|
-
registrar: "registrar";
|
|
256
321
|
runtime: "runtime";
|
|
257
322
|
}>>>;
|
|
258
323
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -267,16 +332,16 @@ export declare const spaceDiagnosticListResponseSchema: z.ZodObject<{
|
|
|
267
332
|
data: z.ZodArray<z.ZodObject<{
|
|
268
333
|
code: z.ZodString;
|
|
269
334
|
severity: z.ZodEnum<{
|
|
335
|
+
info: "info";
|
|
270
336
|
warning: "warning";
|
|
271
337
|
error: "error";
|
|
272
|
-
info: "info";
|
|
273
338
|
}>;
|
|
274
339
|
message: z.ZodString;
|
|
275
340
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
276
341
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
342
|
+
registrar: "registrar";
|
|
277
343
|
wpcloud: "wpcloud";
|
|
278
344
|
dns: "dns";
|
|
279
|
-
registrar: "registrar";
|
|
280
345
|
runtime: "runtime";
|
|
281
346
|
}>>>;
|
|
282
347
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -316,6 +381,7 @@ export declare const spaceCreateSchema: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
316
381
|
path: z.ZodString;
|
|
317
382
|
status: z.ZodNumber;
|
|
318
383
|
}, z.core.$strip>]>>;
|
|
384
|
+
cleanUrls: z.ZodOptional<z.ZodBoolean>;
|
|
319
385
|
listing: z.ZodOptional<z.ZodBoolean>;
|
|
320
386
|
meta: z.ZodOptional<z.ZodObject<{
|
|
321
387
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -348,6 +414,7 @@ export declare const spaceCreateSchema: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
348
414
|
reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
349
415
|
}, z.core.$strip>>>;
|
|
350
416
|
}, z.core.$strip>>;
|
|
417
|
+
requireReview: z.ZodOptional<z.ZodBoolean>;
|
|
351
418
|
}, z.core.$strip>>;
|
|
352
419
|
}, z.core.$strip>>;
|
|
353
420
|
templates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -374,6 +441,15 @@ export declare const spaceCreateSchema: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
374
441
|
}, z.core.$strip>>>;
|
|
375
442
|
}, z.core.$strip>>;
|
|
376
443
|
}, z.core.$strip>>;
|
|
444
|
+
pages: z.ZodOptional<z.ZodObject<{
|
|
445
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
446
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
447
|
+
background: z.ZodOptional<z.ZodString>;
|
|
448
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
449
|
+
name: z.ZodOptional<z.ZodString>;
|
|
450
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
451
|
+
}, z.core.$strip>>;
|
|
452
|
+
}, z.core.$strip>>;
|
|
377
453
|
build: z.ZodOptional<z.ZodObject<{
|
|
378
454
|
rootDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
379
455
|
installDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -386,6 +462,15 @@ export declare const spaceCreateSchema: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
386
462
|
allowUnsupportedPlatformFeatures: z.ZodOptional<z.ZodBoolean>;
|
|
387
463
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
388
464
|
}, z.core.$strict>>;
|
|
465
|
+
placement: z.ZodOptional<z.ZodObject<{
|
|
466
|
+
region: z.ZodOptional<z.ZodString>;
|
|
467
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
468
|
+
shared: "shared";
|
|
469
|
+
dedicated: "dedicated";
|
|
470
|
+
}>>;
|
|
471
|
+
burstable: z.ZodOptional<z.ZodBoolean>;
|
|
472
|
+
}, z.core.$strict>>;
|
|
473
|
+
markdownNegotiation: z.ZodOptional<z.ZodBoolean>;
|
|
389
474
|
experimental_gutenberg: z.ZodOptional<z.ZodBoolean>;
|
|
390
475
|
inject: z.ZodOptional<z.ZodObject<{
|
|
391
476
|
head: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -404,6 +489,7 @@ export declare const spacePatchSchema: z.ZodObject<{
|
|
|
404
489
|
path: z.ZodString;
|
|
405
490
|
status: z.ZodNumber;
|
|
406
491
|
}, z.core.$strip>]>>;
|
|
492
|
+
cleanUrls: z.ZodOptional<z.ZodBoolean>;
|
|
407
493
|
listing: z.ZodOptional<z.ZodBoolean>;
|
|
408
494
|
meta: z.ZodOptional<z.ZodObject<{
|
|
409
495
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -436,6 +522,7 @@ export declare const spacePatchSchema: z.ZodObject<{
|
|
|
436
522
|
reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
437
523
|
}, z.core.$strip>>>;
|
|
438
524
|
}, z.core.$strip>>;
|
|
525
|
+
requireReview: z.ZodOptional<z.ZodBoolean>;
|
|
439
526
|
}, z.core.$strip>>;
|
|
440
527
|
}, z.core.$strip>>;
|
|
441
528
|
templates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -462,6 +549,15 @@ export declare const spacePatchSchema: z.ZodObject<{
|
|
|
462
549
|
}, z.core.$strip>>>;
|
|
463
550
|
}, z.core.$strip>>;
|
|
464
551
|
}, z.core.$strip>>;
|
|
552
|
+
pages: z.ZodOptional<z.ZodObject<{
|
|
553
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
554
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
555
|
+
background: z.ZodOptional<z.ZodString>;
|
|
556
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
557
|
+
name: z.ZodOptional<z.ZodString>;
|
|
558
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
559
|
+
}, z.core.$strip>>;
|
|
560
|
+
}, z.core.$strip>>;
|
|
465
561
|
build: z.ZodOptional<z.ZodObject<{
|
|
466
562
|
rootDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
467
563
|
installDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -474,6 +570,15 @@ export declare const spacePatchSchema: z.ZodObject<{
|
|
|
474
570
|
allowUnsupportedPlatformFeatures: z.ZodOptional<z.ZodBoolean>;
|
|
475
571
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
476
572
|
}, z.core.$strict>>;
|
|
573
|
+
placement: z.ZodOptional<z.ZodObject<{
|
|
574
|
+
region: z.ZodOptional<z.ZodString>;
|
|
575
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
576
|
+
shared: "shared";
|
|
577
|
+
dedicated: "dedicated";
|
|
578
|
+
}>>;
|
|
579
|
+
burstable: z.ZodOptional<z.ZodBoolean>;
|
|
580
|
+
}, z.core.$strict>>;
|
|
581
|
+
markdownNegotiation: z.ZodOptional<z.ZodBoolean>;
|
|
477
582
|
experimental_gutenberg: z.ZodOptional<z.ZodBoolean>;
|
|
478
583
|
inject: z.ZodOptional<z.ZodObject<{
|
|
479
584
|
head: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -482,7 +587,17 @@ export declare const spacePatchSchema: z.ZodObject<{
|
|
|
482
587
|
noscript: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
483
588
|
}, z.core.$strip>>;
|
|
484
589
|
}, z.core.$strip>>>;
|
|
590
|
+
baseSettingsDigest: z.ZodOptional<z.ZodString>;
|
|
591
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
485
592
|
dataLocation: z.ZodOptional<z.ZodString>;
|
|
593
|
+
placement: z.ZodOptional<z.ZodObject<{
|
|
594
|
+
region: z.ZodOptional<z.ZodString>;
|
|
595
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
596
|
+
shared: "shared";
|
|
597
|
+
dedicated: "dedicated";
|
|
598
|
+
}>>;
|
|
599
|
+
burstable: z.ZodOptional<z.ZodBoolean>;
|
|
600
|
+
}, z.core.$strict>>;
|
|
486
601
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
487
602
|
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
488
603
|
}, z.core.$strip>;
|
|
@@ -490,9 +605,16 @@ export declare const spaceClaimSchema: z.ZodObject<{
|
|
|
490
605
|
claimToken: z.ZodString;
|
|
491
606
|
teamId: z.ZodOptional<z.ZodString>;
|
|
492
607
|
targetTeamId: z.ZodOptional<z.ZodString>;
|
|
608
|
+
agentContinuation: z.ZodOptional<z.ZodBoolean>;
|
|
493
609
|
}, z.core.$strip>;
|
|
494
610
|
export declare const anonymousClaimAssignSchema: z.ZodObject<{
|
|
495
611
|
teamId: z.ZodOptional<z.ZodString>;
|
|
612
|
+
nonce: z.ZodOptional<z.ZodString>;
|
|
613
|
+
agentContinuation: z.ZodOptional<z.ZodBoolean>;
|
|
614
|
+
}, z.core.$strip>;
|
|
615
|
+
export declare const anonymousClaimResolveSchema: z.ZodObject<{
|
|
616
|
+
nonce: z.ZodOptional<z.ZodString>;
|
|
617
|
+
agentContinuation: z.ZodOptional<z.ZodBoolean>;
|
|
496
618
|
}, z.core.$strip>;
|
|
497
619
|
export declare const anonymousClaimTeamSchema: z.ZodObject<{
|
|
498
620
|
id: z.ZodString;
|
|
@@ -536,10 +658,10 @@ export declare const anonymousClaimStatusResponseSchema: z.ZodObject<{
|
|
|
536
658
|
publish: z.ZodObject<{
|
|
537
659
|
status: z.ZodEnum<{
|
|
538
660
|
failed: "failed";
|
|
539
|
-
claimed: "claimed";
|
|
540
|
-
pending: "pending";
|
|
541
|
-
ready: "ready";
|
|
542
661
|
expired: "expired";
|
|
662
|
+
ready: "ready";
|
|
663
|
+
pending: "pending";
|
|
664
|
+
claimed: "claimed";
|
|
543
665
|
}>;
|
|
544
666
|
operationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
545
667
|
}, z.core.$strip>;
|
|
@@ -554,7 +676,6 @@ export declare const anonymousClaimStatusResponseSchema: z.ZodObject<{
|
|
|
554
676
|
status: z.ZodEnum<{
|
|
555
677
|
failed: "failed";
|
|
556
678
|
canceled: "canceled";
|
|
557
|
-
ready: "ready";
|
|
558
679
|
expired: "expired";
|
|
559
680
|
building: "building";
|
|
560
681
|
prepared: "prepared";
|
|
@@ -562,8 +683,9 @@ export declare const anonymousClaimStatusResponseSchema: z.ZodObject<{
|
|
|
562
683
|
uploading: "uploading";
|
|
563
684
|
uploaded: "uploaded";
|
|
564
685
|
finalizing: "finalizing";
|
|
686
|
+
ready: "ready";
|
|
565
687
|
}>;
|
|
566
|
-
immutableUrl: z.ZodString
|
|
688
|
+
immutableUrl: z.ZodNullable<z.ZodString>;
|
|
567
689
|
manifestHash: z.ZodNullable<z.ZodString>;
|
|
568
690
|
}, z.core.$strip>;
|
|
569
691
|
claim: z.ZodObject<{
|
|
@@ -573,6 +695,24 @@ export declare const anonymousClaimStatusResponseSchema: z.ZodObject<{
|
|
|
573
695
|
}>;
|
|
574
696
|
url: z.ZodNullable<z.ZodString>;
|
|
575
697
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
698
|
+
continuation: z.ZodOptional<z.ZodEnum<{
|
|
699
|
+
available: "available";
|
|
700
|
+
used: "used";
|
|
701
|
+
unavailable: "unavailable";
|
|
702
|
+
}>>;
|
|
703
|
+
}, z.core.$strip>;
|
|
704
|
+
}, z.core.$strip>;
|
|
705
|
+
export declare const anonymousClaimExchangeResponseSchema: z.ZodObject<{
|
|
706
|
+
space: z.ZodObject<{
|
|
707
|
+
id: z.ZodString;
|
|
708
|
+
slug: z.ZodString;
|
|
709
|
+
liveUrl: z.ZodNullable<z.ZodString>;
|
|
710
|
+
}, z.core.$strip>;
|
|
711
|
+
credential: z.ZodObject<{
|
|
712
|
+
accessToken: z.ZodString;
|
|
713
|
+
accessTokenId: z.ZodString;
|
|
714
|
+
label: z.ZodNullable<z.ZodString>;
|
|
715
|
+
teamId: z.ZodString;
|
|
576
716
|
}, z.core.$strip>;
|
|
577
717
|
}, z.core.$strip>;
|
|
578
718
|
export declare const spaceClaimReminderSchema: z.ZodObject<{
|
|
@@ -584,12 +724,12 @@ export declare const spaceClaimReminderResponseSchema: z.ZodObject<{
|
|
|
584
724
|
export declare const spaceVersionCreateSchema: z.ZodObject<{
|
|
585
725
|
source: z.ZodOptional<z.ZodObject<{
|
|
586
726
|
kind: z.ZodEnum<{
|
|
727
|
+
api: "api";
|
|
728
|
+
dashboard: "dashboard";
|
|
587
729
|
build: "build";
|
|
588
730
|
agent: "agent";
|
|
589
731
|
direct_upload: "direct_upload";
|
|
590
732
|
cli: "cli";
|
|
591
|
-
dashboard: "dashboard";
|
|
592
|
-
api: "api";
|
|
593
733
|
git: "git";
|
|
594
734
|
import: "import";
|
|
595
735
|
variable_update: "variable_update";
|
|
@@ -619,6 +759,11 @@ export declare const spaceVersionCreateSchema: z.ZodObject<{
|
|
|
619
759
|
}>>;
|
|
620
760
|
sourceMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
621
761
|
buildLog: z.ZodOptional<z.ZodString>;
|
|
762
|
+
conventionFiles: z.ZodOptional<z.ZodObject<{
|
|
763
|
+
redirects: z.ZodOptional<z.ZodString>;
|
|
764
|
+
headers: z.ZodOptional<z.ZodString>;
|
|
765
|
+
routes: z.ZodOptional<z.ZodString>;
|
|
766
|
+
}, z.core.$strip>>;
|
|
622
767
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
623
768
|
path: z.ZodString;
|
|
624
769
|
size: z.ZodNumber;
|
|
@@ -636,12 +781,12 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
636
781
|
spaceId: z.ZodString;
|
|
637
782
|
source: z.ZodNullable<z.ZodObject<{
|
|
638
783
|
kind: z.ZodEnum<{
|
|
784
|
+
api: "api";
|
|
785
|
+
dashboard: "dashboard";
|
|
639
786
|
build: "build";
|
|
640
787
|
agent: "agent";
|
|
641
788
|
direct_upload: "direct_upload";
|
|
642
789
|
cli: "cli";
|
|
643
|
-
dashboard: "dashboard";
|
|
644
|
-
api: "api";
|
|
645
790
|
git: "git";
|
|
646
791
|
import: "import";
|
|
647
792
|
variable_update: "variable_update";
|
|
@@ -668,7 +813,6 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
668
813
|
status: z.ZodEnum<{
|
|
669
814
|
failed: "failed";
|
|
670
815
|
canceled: "canceled";
|
|
671
|
-
ready: "ready";
|
|
672
816
|
expired: "expired";
|
|
673
817
|
building: "building";
|
|
674
818
|
prepared: "prepared";
|
|
@@ -676,6 +820,7 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
676
820
|
uploading: "uploading";
|
|
677
821
|
uploaded: "uploaded";
|
|
678
822
|
finalizing: "finalizing";
|
|
823
|
+
ready: "ready";
|
|
679
824
|
}>;
|
|
680
825
|
failureCode: z.ZodNullable<z.ZodString>;
|
|
681
826
|
failureMessage: z.ZodNullable<z.ZodString>;
|
|
@@ -705,6 +850,7 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
705
850
|
path: z.ZodString;
|
|
706
851
|
status: z.ZodNumber;
|
|
707
852
|
}, z.core.$strip>]>>;
|
|
853
|
+
cleanUrls: z.ZodOptional<z.ZodBoolean>;
|
|
708
854
|
listing: z.ZodOptional<z.ZodBoolean>;
|
|
709
855
|
meta: z.ZodOptional<z.ZodObject<{
|
|
710
856
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -737,6 +883,7 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
737
883
|
reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
738
884
|
}, z.core.$strip>>>;
|
|
739
885
|
}, z.core.$strip>>;
|
|
886
|
+
requireReview: z.ZodOptional<z.ZodBoolean>;
|
|
740
887
|
}, z.core.$strip>>;
|
|
741
888
|
}, z.core.$strip>>;
|
|
742
889
|
templates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -763,6 +910,15 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
763
910
|
}, z.core.$strip>>>;
|
|
764
911
|
}, z.core.$strip>>;
|
|
765
912
|
}, z.core.$strip>>;
|
|
913
|
+
pages: z.ZodOptional<z.ZodObject<{
|
|
914
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
915
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
916
|
+
background: z.ZodOptional<z.ZodString>;
|
|
917
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
918
|
+
name: z.ZodOptional<z.ZodString>;
|
|
919
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
920
|
+
}, z.core.$strip>>;
|
|
921
|
+
}, z.core.$strip>>;
|
|
766
922
|
build: z.ZodOptional<z.ZodObject<{
|
|
767
923
|
rootDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
768
924
|
installDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -775,6 +931,15 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
775
931
|
allowUnsupportedPlatformFeatures: z.ZodOptional<z.ZodBoolean>;
|
|
776
932
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
777
933
|
}, z.core.$strict>>;
|
|
934
|
+
placement: z.ZodOptional<z.ZodObject<{
|
|
935
|
+
region: z.ZodOptional<z.ZodString>;
|
|
936
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
937
|
+
shared: "shared";
|
|
938
|
+
dedicated: "dedicated";
|
|
939
|
+
}>>;
|
|
940
|
+
burstable: z.ZodOptional<z.ZodBoolean>;
|
|
941
|
+
}, z.core.$strict>>;
|
|
942
|
+
markdownNegotiation: z.ZodOptional<z.ZodBoolean>;
|
|
778
943
|
experimental_gutenberg: z.ZodOptional<z.ZodBoolean>;
|
|
779
944
|
inject: z.ZodOptional<z.ZodObject<{
|
|
780
945
|
head: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -788,10 +953,10 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
788
953
|
kind: z.ZodString;
|
|
789
954
|
status: z.ZodEnum<{
|
|
790
955
|
failed: "failed";
|
|
956
|
+
canceled: "canceled";
|
|
791
957
|
queued: "queued";
|
|
792
958
|
running: "running";
|
|
793
959
|
succeeded: "succeeded";
|
|
794
|
-
canceled: "canceled";
|
|
795
960
|
}>;
|
|
796
961
|
resources: z.ZodArray<z.ZodObject<{
|
|
797
962
|
type: z.ZodString;
|
|
@@ -805,16 +970,16 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
805
970
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
806
971
|
code: z.ZodString;
|
|
807
972
|
severity: z.ZodEnum<{
|
|
973
|
+
info: "info";
|
|
808
974
|
warning: "warning";
|
|
809
975
|
error: "error";
|
|
810
|
-
info: "info";
|
|
811
976
|
}>;
|
|
812
977
|
message: z.ZodString;
|
|
813
978
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
814
979
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
980
|
+
registrar: "registrar";
|
|
815
981
|
wpcloud: "wpcloud";
|
|
816
982
|
dns: "dns";
|
|
817
|
-
registrar: "registrar";
|
|
818
983
|
runtime: "runtime";
|
|
819
984
|
}>>>;
|
|
820
985
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -832,16 +997,16 @@ export declare const spaceVersionListSchema: z.ZodObject<{
|
|
|
832
997
|
diagnostics: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
833
998
|
code: z.ZodString;
|
|
834
999
|
severity: z.ZodEnum<{
|
|
1000
|
+
info: "info";
|
|
835
1001
|
warning: "warning";
|
|
836
1002
|
error: "error";
|
|
837
|
-
info: "info";
|
|
838
1003
|
}>;
|
|
839
1004
|
message: z.ZodString;
|
|
840
1005
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
841
1006
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1007
|
+
registrar: "registrar";
|
|
842
1008
|
wpcloud: "wpcloud";
|
|
843
1009
|
dns: "dns";
|
|
844
|
-
registrar: "registrar";
|
|
845
1010
|
runtime: "runtime";
|
|
846
1011
|
}>>>;
|
|
847
1012
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -881,8 +1046,8 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
881
1046
|
slug: z.ZodString;
|
|
882
1047
|
title: z.ZodString;
|
|
883
1048
|
status: z.ZodEnum<{
|
|
884
|
-
provisioning: "provisioning";
|
|
885
1049
|
active: "active";
|
|
1050
|
+
provisioning: "provisioning";
|
|
886
1051
|
updating: "updating";
|
|
887
1052
|
moving: "moving";
|
|
888
1053
|
deleting: "deleting";
|
|
@@ -895,6 +1060,7 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
895
1060
|
abuse_takedown: "abuse_takedown";
|
|
896
1061
|
tenant_suspended: "tenant_suspended";
|
|
897
1062
|
site_suspended: "site_suspended";
|
|
1063
|
+
visit_cap_exceeded: "visit_cap_exceeded";
|
|
898
1064
|
}>;
|
|
899
1065
|
}, z.core.$strip>>;
|
|
900
1066
|
claimState: z.ZodNullable<z.ZodObject<{
|
|
@@ -908,7 +1074,31 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
908
1074
|
defaultHostname: z.ZodString;
|
|
909
1075
|
publicName: z.ZodString;
|
|
910
1076
|
liveUrl: z.ZodString;
|
|
1077
|
+
thumbnail: z.ZodNullable<z.ZodObject<{
|
|
1078
|
+
kind: z.ZodEnum<{
|
|
1079
|
+
image: "image";
|
|
1080
|
+
screenshot: "screenshot";
|
|
1081
|
+
}>;
|
|
1082
|
+
provider: z.ZodEnum<{
|
|
1083
|
+
"wpcom-mshots": "wpcom-mshots";
|
|
1084
|
+
"wpcom-site-accelerator": "wpcom-site-accelerator";
|
|
1085
|
+
}>;
|
|
1086
|
+
url: z.ZodString;
|
|
1087
|
+
sourceUrl: z.ZodString;
|
|
1088
|
+
}, z.core.$strip>>;
|
|
911
1089
|
dataLocation: z.ZodString;
|
|
1090
|
+
region: z.ZodString;
|
|
1091
|
+
placementMode: z.ZodEnum<{
|
|
1092
|
+
shared: "shared";
|
|
1093
|
+
dedicated: "dedicated";
|
|
1094
|
+
}>;
|
|
1095
|
+
burstable: z.ZodNullable<z.ZodBoolean>;
|
|
1096
|
+
archivedBytes: z.ZodNumber;
|
|
1097
|
+
tierPolicy: z.ZodEnum<{
|
|
1098
|
+
auto: "auto";
|
|
1099
|
+
always_hot: "always_hot";
|
|
1100
|
+
}>;
|
|
1101
|
+
moving: z.ZodBoolean;
|
|
912
1102
|
channels: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
913
1103
|
versionId: z.ZodOptional<z.ZodString>;
|
|
914
1104
|
weighted: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -923,6 +1113,7 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
923
1113
|
path: z.ZodString;
|
|
924
1114
|
status: z.ZodNumber;
|
|
925
1115
|
}, z.core.$strip>]>>;
|
|
1116
|
+
cleanUrls: z.ZodOptional<z.ZodBoolean>;
|
|
926
1117
|
listing: z.ZodOptional<z.ZodBoolean>;
|
|
927
1118
|
meta: z.ZodOptional<z.ZodObject<{
|
|
928
1119
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -955,6 +1146,7 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
955
1146
|
reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
956
1147
|
}, z.core.$strip>>>;
|
|
957
1148
|
}, z.core.$strip>>;
|
|
1149
|
+
requireReview: z.ZodOptional<z.ZodBoolean>;
|
|
958
1150
|
}, z.core.$strip>>;
|
|
959
1151
|
}, z.core.$strip>>;
|
|
960
1152
|
templates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -981,6 +1173,15 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
981
1173
|
}, z.core.$strip>>>;
|
|
982
1174
|
}, z.core.$strip>>;
|
|
983
1175
|
}, z.core.$strip>>;
|
|
1176
|
+
pages: z.ZodOptional<z.ZodObject<{
|
|
1177
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
1178
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
1179
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
1181
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1182
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
1183
|
+
}, z.core.$strip>>;
|
|
1184
|
+
}, z.core.$strip>>;
|
|
984
1185
|
build: z.ZodOptional<z.ZodObject<{
|
|
985
1186
|
rootDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
986
1187
|
installDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -993,6 +1194,15 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
993
1194
|
allowUnsupportedPlatformFeatures: z.ZodOptional<z.ZodBoolean>;
|
|
994
1195
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
995
1196
|
}, z.core.$strict>>;
|
|
1197
|
+
placement: z.ZodOptional<z.ZodObject<{
|
|
1198
|
+
region: z.ZodOptional<z.ZodString>;
|
|
1199
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
1200
|
+
shared: "shared";
|
|
1201
|
+
dedicated: "dedicated";
|
|
1202
|
+
}>>;
|
|
1203
|
+
burstable: z.ZodOptional<z.ZodBoolean>;
|
|
1204
|
+
}, z.core.$strict>>;
|
|
1205
|
+
markdownNegotiation: z.ZodOptional<z.ZodBoolean>;
|
|
996
1206
|
experimental_gutenberg: z.ZodOptional<z.ZodBoolean>;
|
|
997
1207
|
inject: z.ZodOptional<z.ZodObject<{
|
|
998
1208
|
head: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1001,11 +1211,15 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
1001
1211
|
noscript: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1002
1212
|
}, z.core.$strip>>;
|
|
1003
1213
|
}, z.core.$strip>>;
|
|
1214
|
+
settingsDigest: z.ZodString;
|
|
1004
1215
|
noindex: z.ZodBoolean;
|
|
1005
1216
|
policy: z.ZodNullable<z.ZodObject<{
|
|
1006
1217
|
rules: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1218
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1007
1219
|
match: z.ZodDefault<z.ZodObject<{
|
|
1008
1220
|
host: z.ZodOptional<z.ZodString>;
|
|
1221
|
+
hostPattern: z.ZodOptional<z.ZodString>;
|
|
1222
|
+
hostTemplate: z.ZodOptional<z.ZodString>;
|
|
1009
1223
|
pathPattern: z.ZodOptional<z.ZodString>;
|
|
1010
1224
|
channel: z.ZodOptional<z.ZodString>;
|
|
1011
1225
|
ipCidrs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1022,39 +1236,55 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
1022
1236
|
challenge: "challenge";
|
|
1023
1237
|
}>;
|
|
1024
1238
|
auth: z.ZodOptional<z.ZodObject<{
|
|
1025
|
-
|
|
1239
|
+
requiredGrants: z.ZodArray<z.ZodString>;
|
|
1240
|
+
issuers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1241
|
+
kid: z.ZodString;
|
|
1242
|
+
alg: z.ZodLiteral<"EdDSA">;
|
|
1243
|
+
publicKey: z.ZodString;
|
|
1244
|
+
grantNamespaces: z.ZodArray<z.ZodString>;
|
|
1245
|
+
}, z.core.$strip>>>;
|
|
1246
|
+
acquire: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1247
|
+
type: z.ZodLiteral<"password">;
|
|
1026
1248
|
ref: z.ZodString;
|
|
1027
1249
|
transport: z.ZodEnum<{
|
|
1028
1250
|
basic: "basic";
|
|
1029
1251
|
form: "form";
|
|
1030
1252
|
}>;
|
|
1031
1253
|
username: z.ZodOptional<z.ZodString>;
|
|
1032
|
-
}, z.core.$strip
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
alg: z.ZodLiteral<"EdDSA">;
|
|
1038
|
-
publicKey: z.ZodString;
|
|
1039
|
-
grantNamespaces: z.ZodArray<z.ZodString>;
|
|
1040
|
-
}, z.core.$strip>>>;
|
|
1041
|
-
loginUrl: z.ZodOptional<z.ZodString>;
|
|
1042
|
-
cookieName: z.ZodOptional<z.ZodString>;
|
|
1043
|
-
}, z.core.$strip>>;
|
|
1254
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1255
|
+
type: z.ZodLiteral<"login">;
|
|
1256
|
+
url: z.ZodString;
|
|
1257
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1258
|
+
}, z.core.$strip>], "type">>>;
|
|
1044
1259
|
}, z.core.$strip>>;
|
|
1260
|
+
managedBy: z.ZodOptional<z.ZodEnum<{
|
|
1261
|
+
sharing: "sharing";
|
|
1262
|
+
firewall: "firewall";
|
|
1263
|
+
file_share: "file_share";
|
|
1264
|
+
cast_reviewer: "cast_reviewer";
|
|
1265
|
+
team_default: "team_default";
|
|
1266
|
+
}>>;
|
|
1267
|
+
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
1045
1268
|
reasonCode: z.ZodOptional<z.ZodString>;
|
|
1046
1269
|
message: z.ZodOptional<z.ZodString>;
|
|
1047
1270
|
}, z.core.$strip>>>;
|
|
1271
|
+
issuers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1272
|
+
kid: z.ZodString;
|
|
1273
|
+
alg: z.ZodLiteral<"EdDSA">;
|
|
1274
|
+
publicKey: z.ZodString;
|
|
1275
|
+
grantNamespaces: z.ZodArray<z.ZodString>;
|
|
1276
|
+
}, z.core.$strip>>>;
|
|
1277
|
+
sessionVersion: z.ZodOptional<z.ZodNumber>;
|
|
1048
1278
|
}, z.core.$strip>>;
|
|
1049
1279
|
operation: z.ZodNullable<z.ZodObject<{
|
|
1050
1280
|
id: z.ZodString;
|
|
1051
1281
|
kind: z.ZodString;
|
|
1052
1282
|
status: z.ZodEnum<{
|
|
1053
1283
|
failed: "failed";
|
|
1284
|
+
canceled: "canceled";
|
|
1054
1285
|
queued: "queued";
|
|
1055
1286
|
running: "running";
|
|
1056
1287
|
succeeded: "succeeded";
|
|
1057
|
-
canceled: "canceled";
|
|
1058
1288
|
}>;
|
|
1059
1289
|
resources: z.ZodArray<z.ZodObject<{
|
|
1060
1290
|
type: z.ZodString;
|
|
@@ -1068,16 +1298,16 @@ export declare const spaceListSchema: z.ZodObject<{
|
|
|
1068
1298
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1069
1299
|
code: z.ZodString;
|
|
1070
1300
|
severity: z.ZodEnum<{
|
|
1301
|
+
info: "info";
|
|
1071
1302
|
warning: "warning";
|
|
1072
1303
|
error: "error";
|
|
1073
|
-
info: "info";
|
|
1074
1304
|
}>;
|
|
1075
1305
|
message: z.ZodString;
|
|
1076
1306
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1077
1307
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1308
|
+
registrar: "registrar";
|
|
1078
1309
|
wpcloud: "wpcloud";
|
|
1079
1310
|
dns: "dns";
|
|
1080
|
-
registrar: "registrar";
|
|
1081
1311
|
runtime: "runtime";
|
|
1082
1312
|
}>>>;
|
|
1083
1313
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1127,8 +1357,8 @@ export declare const versionLogListResponseSchema: z.ZodObject<{
|
|
|
1127
1357
|
export declare const spaceVersionGeneratedPreviewSchema: z.ZodObject<{
|
|
1128
1358
|
kind: z.ZodLiteral<"image">;
|
|
1129
1359
|
status: z.ZodEnum<{
|
|
1130
|
-
pending: "pending";
|
|
1131
1360
|
ready: "ready";
|
|
1361
|
+
pending: "pending";
|
|
1132
1362
|
}>;
|
|
1133
1363
|
key: z.ZodString;
|
|
1134
1364
|
cacheScope: z.ZodEnum<{
|
|
@@ -1149,8 +1379,8 @@ export declare const spaceVersionFileSchema: z.ZodObject<{
|
|
|
1149
1379
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1150
1380
|
kind: z.ZodLiteral<"image">;
|
|
1151
1381
|
status: z.ZodEnum<{
|
|
1152
|
-
pending: "pending";
|
|
1153
1382
|
ready: "ready";
|
|
1383
|
+
pending: "pending";
|
|
1154
1384
|
}>;
|
|
1155
1385
|
key: z.ZodString;
|
|
1156
1386
|
cacheScope: z.ZodEnum<{
|
|
@@ -1181,8 +1411,8 @@ export declare const spaceVersionFileIndexEntrySchema: z.ZodObject<{
|
|
|
1181
1411
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1182
1412
|
kind: z.ZodLiteral<"image">;
|
|
1183
1413
|
status: z.ZodEnum<{
|
|
1184
|
-
pending: "pending";
|
|
1185
1414
|
ready: "ready";
|
|
1415
|
+
pending: "pending";
|
|
1186
1416
|
}>;
|
|
1187
1417
|
key: z.ZodString;
|
|
1188
1418
|
cacheScope: z.ZodEnum<{
|
|
@@ -1215,8 +1445,8 @@ export declare const spaceVersionFileIndexSchema: z.ZodObject<{
|
|
|
1215
1445
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1216
1446
|
kind: z.ZodLiteral<"image">;
|
|
1217
1447
|
status: z.ZodEnum<{
|
|
1218
|
-
pending: "pending";
|
|
1219
1448
|
ready: "ready";
|
|
1449
|
+
pending: "pending";
|
|
1220
1450
|
}>;
|
|
1221
1451
|
key: z.ZodString;
|
|
1222
1452
|
cacheScope: z.ZodEnum<{
|
|
@@ -1248,8 +1478,8 @@ export declare const spaceVersionFileIndexSchema: z.ZodObject<{
|
|
|
1248
1478
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1249
1479
|
kind: z.ZodLiteral<"image">;
|
|
1250
1480
|
status: z.ZodEnum<{
|
|
1251
|
-
pending: "pending";
|
|
1252
1481
|
ready: "ready";
|
|
1482
|
+
pending: "pending";
|
|
1253
1483
|
}>;
|
|
1254
1484
|
key: z.ZodString;
|
|
1255
1485
|
cacheScope: z.ZodEnum<{
|
|
@@ -1281,8 +1511,8 @@ export declare const spaceVersionFileIndexSchema: z.ZodObject<{
|
|
|
1281
1511
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1282
1512
|
kind: z.ZodLiteral<"image">;
|
|
1283
1513
|
status: z.ZodEnum<{
|
|
1284
|
-
pending: "pending";
|
|
1285
1514
|
ready: "ready";
|
|
1515
|
+
pending: "pending";
|
|
1286
1516
|
}>;
|
|
1287
1517
|
key: z.ZodString;
|
|
1288
1518
|
cacheScope: z.ZodEnum<{
|
|
@@ -1296,9 +1526,6 @@ export declare const spaceVersionFileIndexSchema: z.ZodObject<{
|
|
|
1296
1526
|
searchText: z.ZodString;
|
|
1297
1527
|
}, z.core.$strip>>;
|
|
1298
1528
|
}, z.core.$strip>;
|
|
1299
|
-
export declare const spaceVersionFilesQuerySchema: z.ZodObject<{
|
|
1300
|
-
q: z.ZodOptional<z.ZodString>;
|
|
1301
|
-
}, z.core.$strip>;
|
|
1302
1529
|
export declare const spaceVersionFilesSearchSchema: z.ZodObject<{
|
|
1303
1530
|
query: z.ZodNullable<z.ZodString>;
|
|
1304
1531
|
total: z.ZodNumber;
|
|
@@ -1316,8 +1543,8 @@ export declare const spaceVersionFilesResponseSchema: z.ZodObject<{
|
|
|
1316
1543
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1317
1544
|
kind: z.ZodLiteral<"image">;
|
|
1318
1545
|
status: z.ZodEnum<{
|
|
1319
|
-
pending: "pending";
|
|
1320
1546
|
ready: "ready";
|
|
1547
|
+
pending: "pending";
|
|
1321
1548
|
}>;
|
|
1322
1549
|
key: z.ZodString;
|
|
1323
1550
|
cacheScope: z.ZodEnum<{
|
|
@@ -1349,8 +1576,8 @@ export declare const spaceVersionFilesResponseSchema: z.ZodObject<{
|
|
|
1349
1576
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1350
1577
|
kind: z.ZodLiteral<"image">;
|
|
1351
1578
|
status: z.ZodEnum<{
|
|
1352
|
-
pending: "pending";
|
|
1353
1579
|
ready: "ready";
|
|
1580
|
+
pending: "pending";
|
|
1354
1581
|
}>;
|
|
1355
1582
|
key: z.ZodString;
|
|
1356
1583
|
cacheScope: z.ZodEnum<{
|
|
@@ -1382,8 +1609,8 @@ export declare const spaceVersionFilesResponseSchema: z.ZodObject<{
|
|
|
1382
1609
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1383
1610
|
kind: z.ZodLiteral<"image">;
|
|
1384
1611
|
status: z.ZodEnum<{
|
|
1385
|
-
pending: "pending";
|
|
1386
1612
|
ready: "ready";
|
|
1613
|
+
pending: "pending";
|
|
1387
1614
|
}>;
|
|
1388
1615
|
key: z.ZodString;
|
|
1389
1616
|
cacheScope: z.ZodEnum<{
|
|
@@ -1415,8 +1642,8 @@ export declare const spaceVersionFilesResponseSchema: z.ZodObject<{
|
|
|
1415
1642
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1416
1643
|
kind: z.ZodLiteral<"image">;
|
|
1417
1644
|
status: z.ZodEnum<{
|
|
1418
|
-
pending: "pending";
|
|
1419
1645
|
ready: "ready";
|
|
1646
|
+
pending: "pending";
|
|
1420
1647
|
}>;
|
|
1421
1648
|
key: z.ZodString;
|
|
1422
1649
|
cacheScope: z.ZodEnum<{
|
|
@@ -1449,8 +1676,8 @@ export declare const spaceFilesResponseSchema: z.ZodObject<{
|
|
|
1449
1676
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1450
1677
|
kind: z.ZodLiteral<"image">;
|
|
1451
1678
|
status: z.ZodEnum<{
|
|
1452
|
-
pending: "pending";
|
|
1453
1679
|
ready: "ready";
|
|
1680
|
+
pending: "pending";
|
|
1454
1681
|
}>;
|
|
1455
1682
|
key: z.ZodString;
|
|
1456
1683
|
cacheScope: z.ZodEnum<{
|
|
@@ -1482,8 +1709,8 @@ export declare const spaceFilesResponseSchema: z.ZodObject<{
|
|
|
1482
1709
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1483
1710
|
kind: z.ZodLiteral<"image">;
|
|
1484
1711
|
status: z.ZodEnum<{
|
|
1485
|
-
pending: "pending";
|
|
1486
1712
|
ready: "ready";
|
|
1713
|
+
pending: "pending";
|
|
1487
1714
|
}>;
|
|
1488
1715
|
key: z.ZodString;
|
|
1489
1716
|
cacheScope: z.ZodEnum<{
|
|
@@ -1515,8 +1742,8 @@ export declare const spaceFilesResponseSchema: z.ZodObject<{
|
|
|
1515
1742
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1516
1743
|
kind: z.ZodLiteral<"image">;
|
|
1517
1744
|
status: z.ZodEnum<{
|
|
1518
|
-
pending: "pending";
|
|
1519
1745
|
ready: "ready";
|
|
1746
|
+
pending: "pending";
|
|
1520
1747
|
}>;
|
|
1521
1748
|
key: z.ZodString;
|
|
1522
1749
|
cacheScope: z.ZodEnum<{
|
|
@@ -1548,8 +1775,8 @@ export declare const spaceFilesResponseSchema: z.ZodObject<{
|
|
|
1548
1775
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1549
1776
|
kind: z.ZodLiteral<"image">;
|
|
1550
1777
|
status: z.ZodEnum<{
|
|
1551
|
-
pending: "pending";
|
|
1552
1778
|
ready: "ready";
|
|
1779
|
+
pending: "pending";
|
|
1553
1780
|
}>;
|
|
1554
1781
|
key: z.ZodString;
|
|
1555
1782
|
cacheScope: z.ZodEnum<{
|
|
@@ -1580,8 +1807,8 @@ export declare const spaceVersionFileResponseSchema: z.ZodObject<{
|
|
|
1580
1807
|
contentType: z.ZodNullable<z.ZodString>;
|
|
1581
1808
|
sha256: z.ZodNullable<z.ZodString>;
|
|
1582
1809
|
encoding: z.ZodEnum<{
|
|
1583
|
-
utf8: "utf8";
|
|
1584
1810
|
base64: "base64";
|
|
1811
|
+
utf8: "utf8";
|
|
1585
1812
|
}>;
|
|
1586
1813
|
content: z.ZodString;
|
|
1587
1814
|
truncated: z.ZodBoolean;
|
|
@@ -1627,9 +1854,9 @@ export declare const spaceVersionConventionArtifactPathSchema: z.ZodEnum<{
|
|
|
1627
1854
|
_headers: "_headers";
|
|
1628
1855
|
}>;
|
|
1629
1856
|
export declare const spaceVersionConventionArtifactSourceSchema: z.ZodEnum<{
|
|
1630
|
-
inherited: "inherited";
|
|
1631
1857
|
uploaded: "uploaded";
|
|
1632
1858
|
override: "override";
|
|
1859
|
+
inherited: "inherited";
|
|
1633
1860
|
generated: "generated";
|
|
1634
1861
|
missing: "missing";
|
|
1635
1862
|
}>;
|
|
@@ -1643,9 +1870,9 @@ export declare const spaceVersionConventionArtifactMetadataSchema: z.ZodObject<{
|
|
|
1643
1870
|
_headers: "_headers";
|
|
1644
1871
|
}>;
|
|
1645
1872
|
source: z.ZodEnum<{
|
|
1646
|
-
inherited: "inherited";
|
|
1647
1873
|
uploaded: "uploaded";
|
|
1648
1874
|
override: "override";
|
|
1875
|
+
inherited: "inherited";
|
|
1649
1876
|
generated: "generated";
|
|
1650
1877
|
missing: "missing";
|
|
1651
1878
|
}>;
|
|
@@ -1669,9 +1896,9 @@ export declare const spaceVersionConventionArtifactsResponseSchema: z.ZodObject<
|
|
|
1669
1896
|
_headers: "_headers";
|
|
1670
1897
|
}>;
|
|
1671
1898
|
source: z.ZodEnum<{
|
|
1672
|
-
inherited: "inherited";
|
|
1673
1899
|
uploaded: "uploaded";
|
|
1674
1900
|
override: "override";
|
|
1901
|
+
inherited: "inherited";
|
|
1675
1902
|
generated: "generated";
|
|
1676
1903
|
missing: "missing";
|
|
1677
1904
|
}>;
|
|
@@ -1704,9 +1931,9 @@ export declare const spaceVersionConventionArtifactContentResponseSchema: z.ZodO
|
|
|
1704
1931
|
_headers: "_headers";
|
|
1705
1932
|
}>;
|
|
1706
1933
|
source: z.ZodEnum<{
|
|
1707
|
-
inherited: "inherited";
|
|
1708
1934
|
uploaded: "uploaded";
|
|
1709
1935
|
override: "override";
|
|
1936
|
+
inherited: "inherited";
|
|
1710
1937
|
generated: "generated";
|
|
1711
1938
|
missing: "missing";
|
|
1712
1939
|
}>;
|
|
@@ -1718,8 +1945,8 @@ export declare const spaceVersionConventionArtifactContentResponseSchema: z.ZodO
|
|
|
1718
1945
|
warningCount: z.ZodNumber;
|
|
1719
1946
|
errorCount: z.ZodNumber;
|
|
1720
1947
|
encoding: z.ZodEnum<{
|
|
1721
|
-
utf8: "utf8";
|
|
1722
1948
|
base64: "base64";
|
|
1949
|
+
utf8: "utf8";
|
|
1723
1950
|
}>;
|
|
1724
1951
|
content: z.ZodString;
|
|
1725
1952
|
truncated: z.ZodBoolean;
|
|
@@ -1751,9 +1978,9 @@ export declare const spaceVersionComputedRoutingSummarySchema: z.ZodObject<{
|
|
|
1751
1978
|
_headers: "_headers";
|
|
1752
1979
|
}>;
|
|
1753
1980
|
source: z.ZodEnum<{
|
|
1754
|
-
inherited: "inherited";
|
|
1755
1981
|
uploaded: "uploaded";
|
|
1756
1982
|
override: "override";
|
|
1983
|
+
inherited: "inherited";
|
|
1757
1984
|
generated: "generated";
|
|
1758
1985
|
missing: "missing";
|
|
1759
1986
|
}>;
|
|
@@ -1790,24 +2017,24 @@ export declare const spaceVersionComputedRoutingSummarySchema: z.ZodObject<{
|
|
|
1790
2017
|
}, z.core.$strip>>;
|
|
1791
2018
|
}, z.core.$strip>;
|
|
1792
2019
|
export declare const spaceVersionFileDiffStatusSchema: z.ZodEnum<{
|
|
1793
|
-
added: "added";
|
|
1794
|
-
modified: "modified";
|
|
1795
2020
|
deleted: "deleted";
|
|
1796
|
-
renamed: "renamed";
|
|
1797
2021
|
unchanged: "unchanged";
|
|
1798
2022
|
binary: "binary";
|
|
2023
|
+
added: "added";
|
|
2024
|
+
modified: "modified";
|
|
2025
|
+
renamed: "renamed";
|
|
1799
2026
|
too_large: "too_large";
|
|
1800
2027
|
}>;
|
|
1801
2028
|
export declare const spaceVersionFileDiffEntrySchema: z.ZodObject<{
|
|
1802
2029
|
path: z.ZodString;
|
|
1803
2030
|
oldPath: z.ZodNullable<z.ZodString>;
|
|
1804
2031
|
status: z.ZodEnum<{
|
|
1805
|
-
added: "added";
|
|
1806
|
-
modified: "modified";
|
|
1807
2032
|
deleted: "deleted";
|
|
1808
|
-
renamed: "renamed";
|
|
1809
2033
|
unchanged: "unchanged";
|
|
1810
2034
|
binary: "binary";
|
|
2035
|
+
added: "added";
|
|
2036
|
+
modified: "modified";
|
|
2037
|
+
renamed: "renamed";
|
|
1811
2038
|
too_large: "too_large";
|
|
1812
2039
|
}>;
|
|
1813
2040
|
before: z.ZodNullable<z.ZodObject<{
|
|
@@ -1820,8 +2047,8 @@ export declare const spaceVersionFileDiffEntrySchema: z.ZodObject<{
|
|
|
1820
2047
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1821
2048
|
kind: z.ZodLiteral<"image">;
|
|
1822
2049
|
status: z.ZodEnum<{
|
|
1823
|
-
pending: "pending";
|
|
1824
2050
|
ready: "ready";
|
|
2051
|
+
pending: "pending";
|
|
1825
2052
|
}>;
|
|
1826
2053
|
key: z.ZodString;
|
|
1827
2054
|
cacheScope: z.ZodEnum<{
|
|
@@ -1843,8 +2070,8 @@ export declare const spaceVersionFileDiffEntrySchema: z.ZodObject<{
|
|
|
1843
2070
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1844
2071
|
kind: z.ZodLiteral<"image">;
|
|
1845
2072
|
status: z.ZodEnum<{
|
|
1846
|
-
pending: "pending";
|
|
1847
2073
|
ready: "ready";
|
|
2074
|
+
pending: "pending";
|
|
1848
2075
|
}>;
|
|
1849
2076
|
key: z.ZodString;
|
|
1850
2077
|
cacheScope: z.ZodEnum<{
|
|
@@ -1872,12 +2099,12 @@ export declare const spaceVersionFileDiffResponseSchema: z.ZodObject<{
|
|
|
1872
2099
|
path: z.ZodString;
|
|
1873
2100
|
oldPath: z.ZodNullable<z.ZodString>;
|
|
1874
2101
|
status: z.ZodEnum<{
|
|
1875
|
-
added: "added";
|
|
1876
|
-
modified: "modified";
|
|
1877
2102
|
deleted: "deleted";
|
|
1878
|
-
renamed: "renamed";
|
|
1879
2103
|
unchanged: "unchanged";
|
|
1880
2104
|
binary: "binary";
|
|
2105
|
+
added: "added";
|
|
2106
|
+
modified: "modified";
|
|
2107
|
+
renamed: "renamed";
|
|
1881
2108
|
too_large: "too_large";
|
|
1882
2109
|
}>;
|
|
1883
2110
|
before: z.ZodNullable<z.ZodObject<{
|
|
@@ -1890,8 +2117,8 @@ export declare const spaceVersionFileDiffResponseSchema: z.ZodObject<{
|
|
|
1890
2117
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1891
2118
|
kind: z.ZodLiteral<"image">;
|
|
1892
2119
|
status: z.ZodEnum<{
|
|
1893
|
-
pending: "pending";
|
|
1894
2120
|
ready: "ready";
|
|
2121
|
+
pending: "pending";
|
|
1895
2122
|
}>;
|
|
1896
2123
|
key: z.ZodString;
|
|
1897
2124
|
cacheScope: z.ZodEnum<{
|
|
@@ -1913,8 +2140,8 @@ export declare const spaceVersionFileDiffResponseSchema: z.ZodObject<{
|
|
|
1913
2140
|
generatedPreview: z.ZodNullable<z.ZodObject<{
|
|
1914
2141
|
kind: z.ZodLiteral<"image">;
|
|
1915
2142
|
status: z.ZodEnum<{
|
|
1916
|
-
pending: "pending";
|
|
1917
2143
|
ready: "ready";
|
|
2144
|
+
pending: "pending";
|
|
1918
2145
|
}>;
|
|
1919
2146
|
key: z.ZodString;
|
|
1920
2147
|
cacheScope: z.ZodEnum<{
|
|
@@ -1980,16 +2207,16 @@ export declare const spaceVersionIntentResponseSchema: z.ZodObject<{
|
|
|
1980
2207
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1981
2208
|
code: z.ZodString;
|
|
1982
2209
|
severity: z.ZodEnum<{
|
|
2210
|
+
info: "info";
|
|
1983
2211
|
warning: "warning";
|
|
1984
2212
|
error: "error";
|
|
1985
|
-
info: "info";
|
|
1986
2213
|
}>;
|
|
1987
2214
|
message: z.ZodString;
|
|
1988
2215
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1989
2216
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2217
|
+
registrar: "registrar";
|
|
1990
2218
|
wpcloud: "wpcloud";
|
|
1991
2219
|
dns: "dns";
|
|
1992
|
-
registrar: "registrar";
|
|
1993
2220
|
runtime: "runtime";
|
|
1994
2221
|
}>>>;
|
|
1995
2222
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2021,12 +2248,12 @@ export declare const publishRequestSchema: z.ZodObject<{
|
|
|
2021
2248
|
deletePaths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2022
2249
|
source: z.ZodOptional<z.ZodObject<{
|
|
2023
2250
|
kind: z.ZodEnum<{
|
|
2251
|
+
api: "api";
|
|
2252
|
+
dashboard: "dashboard";
|
|
2024
2253
|
build: "build";
|
|
2025
2254
|
agent: "agent";
|
|
2026
2255
|
direct_upload: "direct_upload";
|
|
2027
2256
|
cli: "cli";
|
|
2028
|
-
dashboard: "dashboard";
|
|
2029
|
-
api: "api";
|
|
2030
2257
|
git: "git";
|
|
2031
2258
|
import: "import";
|
|
2032
2259
|
variable_update: "variable_update";
|
|
@@ -2069,6 +2296,7 @@ export declare const publishRequestSchema: z.ZodObject<{
|
|
|
2069
2296
|
path: z.ZodString;
|
|
2070
2297
|
status: z.ZodNumber;
|
|
2071
2298
|
}, z.core.$strip>]>>;
|
|
2299
|
+
cleanUrls: z.ZodOptional<z.ZodBoolean>;
|
|
2072
2300
|
listing: z.ZodOptional<z.ZodBoolean>;
|
|
2073
2301
|
meta: z.ZodOptional<z.ZodObject<{
|
|
2074
2302
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -2101,6 +2329,7 @@ export declare const publishRequestSchema: z.ZodObject<{
|
|
|
2101
2329
|
reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2102
2330
|
}, z.core.$strip>>>;
|
|
2103
2331
|
}, z.core.$strip>>;
|
|
2332
|
+
requireReview: z.ZodOptional<z.ZodBoolean>;
|
|
2104
2333
|
}, z.core.$strip>>;
|
|
2105
2334
|
}, z.core.$strip>>;
|
|
2106
2335
|
templates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2127,6 +2356,15 @@ export declare const publishRequestSchema: z.ZodObject<{
|
|
|
2127
2356
|
}, z.core.$strip>>>;
|
|
2128
2357
|
}, z.core.$strip>>;
|
|
2129
2358
|
}, z.core.$strip>>;
|
|
2359
|
+
pages: z.ZodOptional<z.ZodObject<{
|
|
2360
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
2361
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
2362
|
+
background: z.ZodOptional<z.ZodString>;
|
|
2363
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
2364
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2365
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
2366
|
+
}, z.core.$strip>>;
|
|
2367
|
+
}, z.core.$strip>>;
|
|
2130
2368
|
build: z.ZodOptional<z.ZodObject<{
|
|
2131
2369
|
rootDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2132
2370
|
installDirectory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2139,6 +2377,15 @@ export declare const publishRequestSchema: z.ZodObject<{
|
|
|
2139
2377
|
allowUnsupportedPlatformFeatures: z.ZodOptional<z.ZodBoolean>;
|
|
2140
2378
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
2141
2379
|
}, z.core.$strict>>;
|
|
2380
|
+
placement: z.ZodOptional<z.ZodObject<{
|
|
2381
|
+
region: z.ZodOptional<z.ZodString>;
|
|
2382
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
2383
|
+
shared: "shared";
|
|
2384
|
+
dedicated: "dedicated";
|
|
2385
|
+
}>>;
|
|
2386
|
+
burstable: z.ZodOptional<z.ZodBoolean>;
|
|
2387
|
+
}, z.core.$strict>>;
|
|
2388
|
+
markdownNegotiation: z.ZodOptional<z.ZodBoolean>;
|
|
2142
2389
|
experimental_gutenberg: z.ZodOptional<z.ZodBoolean>;
|
|
2143
2390
|
inject: z.ZodOptional<z.ZodObject<{
|
|
2144
2391
|
head: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2193,16 +2440,16 @@ export declare const publishUploadReceiptSchema: z.ZodObject<{
|
|
|
2193
2440
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2194
2441
|
code: z.ZodString;
|
|
2195
2442
|
severity: z.ZodEnum<{
|
|
2443
|
+
info: "info";
|
|
2196
2444
|
warning: "warning";
|
|
2197
2445
|
error: "error";
|
|
2198
|
-
info: "info";
|
|
2199
2446
|
}>;
|
|
2200
2447
|
message: z.ZodString;
|
|
2201
2448
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2202
2449
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2450
|
+
registrar: "registrar";
|
|
2203
2451
|
wpcloud: "wpcloud";
|
|
2204
2452
|
dns: "dns";
|
|
2205
|
-
registrar: "registrar";
|
|
2206
2453
|
runtime: "runtime";
|
|
2207
2454
|
}>>>;
|
|
2208
2455
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2223,7 +2470,6 @@ export declare const publishReceiptVersionSchema: z.ZodObject<{
|
|
|
2223
2470
|
status: z.ZodEnum<{
|
|
2224
2471
|
failed: "failed";
|
|
2225
2472
|
canceled: "canceled";
|
|
2226
|
-
ready: "ready";
|
|
2227
2473
|
expired: "expired";
|
|
2228
2474
|
building: "building";
|
|
2229
2475
|
prepared: "prepared";
|
|
@@ -2231,6 +2477,7 @@ export declare const publishReceiptVersionSchema: z.ZodObject<{
|
|
|
2231
2477
|
uploading: "uploading";
|
|
2232
2478
|
uploaded: "uploaded";
|
|
2233
2479
|
finalizing: "finalizing";
|
|
2480
|
+
ready: "ready";
|
|
2234
2481
|
}>;
|
|
2235
2482
|
immutableUrl: z.ZodString;
|
|
2236
2483
|
ref: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2250,7 +2497,6 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2250
2497
|
status: z.ZodEnum<{
|
|
2251
2498
|
failed: "failed";
|
|
2252
2499
|
canceled: "canceled";
|
|
2253
|
-
ready: "ready";
|
|
2254
2500
|
expired: "expired";
|
|
2255
2501
|
building: "building";
|
|
2256
2502
|
prepared: "prepared";
|
|
@@ -2258,6 +2504,7 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2258
2504
|
uploading: "uploading";
|
|
2259
2505
|
uploaded: "uploaded";
|
|
2260
2506
|
finalizing: "finalizing";
|
|
2507
|
+
ready: "ready";
|
|
2261
2508
|
}>;
|
|
2262
2509
|
immutableUrl: z.ZodString;
|
|
2263
2510
|
ref: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2269,10 +2516,10 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2269
2516
|
kind: z.ZodString;
|
|
2270
2517
|
status: z.ZodEnum<{
|
|
2271
2518
|
failed: "failed";
|
|
2519
|
+
canceled: "canceled";
|
|
2272
2520
|
queued: "queued";
|
|
2273
2521
|
running: "running";
|
|
2274
2522
|
succeeded: "succeeded";
|
|
2275
|
-
canceled: "canceled";
|
|
2276
2523
|
}>;
|
|
2277
2524
|
resources: z.ZodArray<z.ZodObject<{
|
|
2278
2525
|
type: z.ZodString;
|
|
@@ -2286,16 +2533,16 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2286
2533
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2287
2534
|
code: z.ZodString;
|
|
2288
2535
|
severity: z.ZodEnum<{
|
|
2536
|
+
info: "info";
|
|
2289
2537
|
warning: "warning";
|
|
2290
2538
|
error: "error";
|
|
2291
|
-
info: "info";
|
|
2292
2539
|
}>;
|
|
2293
2540
|
message: z.ZodString;
|
|
2294
2541
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2295
2542
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2543
|
+
registrar: "registrar";
|
|
2296
2544
|
wpcloud: "wpcloud";
|
|
2297
2545
|
dns: "dns";
|
|
2298
|
-
registrar: "registrar";
|
|
2299
2546
|
runtime: "runtime";
|
|
2300
2547
|
}>>>;
|
|
2301
2548
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2351,16 +2598,16 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2351
2598
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2352
2599
|
code: z.ZodString;
|
|
2353
2600
|
severity: z.ZodEnum<{
|
|
2601
|
+
info: "info";
|
|
2354
2602
|
warning: "warning";
|
|
2355
2603
|
error: "error";
|
|
2356
|
-
info: "info";
|
|
2357
2604
|
}>;
|
|
2358
2605
|
message: z.ZodString;
|
|
2359
2606
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2360
2607
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2608
|
+
registrar: "registrar";
|
|
2361
2609
|
wpcloud: "wpcloud";
|
|
2362
2610
|
dns: "dns";
|
|
2363
|
-
registrar: "registrar";
|
|
2364
2611
|
runtime: "runtime";
|
|
2365
2612
|
}>>>;
|
|
2366
2613
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2377,16 +2624,16 @@ export declare const publishReceiptSchema: z.ZodObject<{
|
|
|
2377
2624
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2378
2625
|
code: z.ZodString;
|
|
2379
2626
|
severity: z.ZodEnum<{
|
|
2627
|
+
info: "info";
|
|
2380
2628
|
warning: "warning";
|
|
2381
2629
|
error: "error";
|
|
2382
|
-
info: "info";
|
|
2383
2630
|
}>;
|
|
2384
2631
|
message: z.ZodString;
|
|
2385
2632
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2386
2633
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2634
|
+
registrar: "registrar";
|
|
2387
2635
|
wpcloud: "wpcloud";
|
|
2388
2636
|
dns: "dns";
|
|
2389
|
-
registrar: "registrar";
|
|
2390
2637
|
runtime: "runtime";
|
|
2391
2638
|
}>>>;
|
|
2392
2639
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2450,83 +2697,16 @@ export declare const spaceVersionResumeResponseSchema: z.ZodObject<{
|
|
|
2450
2697
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2451
2698
|
code: z.ZodString;
|
|
2452
2699
|
severity: z.ZodEnum<{
|
|
2453
|
-
warning: "warning";
|
|
2454
|
-
error: "error";
|
|
2455
2700
|
info: "info";
|
|
2456
|
-
}>;
|
|
2457
|
-
message: z.ZodString;
|
|
2458
|
-
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2459
|
-
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2460
|
-
wpcloud: "wpcloud";
|
|
2461
|
-
dns: "dns";
|
|
2462
|
-
registrar: "registrar";
|
|
2463
|
-
runtime: "runtime";
|
|
2464
|
-
}>>>;
|
|
2465
|
-
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2466
|
-
fix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2467
|
-
retryable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2468
|
-
}, z.core.$strip>>>;
|
|
2469
|
-
}, z.core.$strip>>;
|
|
2470
|
-
}, z.core.$strip>>;
|
|
2471
|
-
ignoredPaths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2472
|
-
}, z.core.$strip>;
|
|
2473
|
-
export declare const spaceVersionRefreshResponseSchema: z.ZodObject<{
|
|
2474
|
-
versionId: z.ZodString;
|
|
2475
|
-
upload: z.ZodNullable<z.ZodObject<{
|
|
2476
|
-
id: z.ZodString;
|
|
2477
|
-
mode: z.ZodEnum<{
|
|
2478
|
-
source: "source";
|
|
2479
|
-
dist: "dist";
|
|
2480
|
-
}>;
|
|
2481
|
-
expiresAt: z.ZodString;
|
|
2482
|
-
summary: z.ZodObject<{
|
|
2483
|
-
upload: z.ZodNumber;
|
|
2484
|
-
reused: z.ZodNumber;
|
|
2485
|
-
ignored: z.ZodNumber;
|
|
2486
|
-
}, z.core.$strip>;
|
|
2487
|
-
targets: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2488
|
-
path: z.ZodString;
|
|
2489
|
-
method: z.ZodEnum<{
|
|
2490
|
-
PUT: "PUT";
|
|
2491
|
-
POST: "POST";
|
|
2492
|
-
}>;
|
|
2493
|
-
url: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
|
2494
|
-
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2495
|
-
body: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2496
|
-
kind: z.ZodLiteral<"url">;
|
|
2497
|
-
url: z.ZodString;
|
|
2498
|
-
}, z.core.$strip>], "kind">>;
|
|
2499
|
-
size: z.ZodOptional<z.ZodNumber>;
|
|
2500
|
-
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
2501
|
-
sha256: z.ZodOptional<z.ZodString>;
|
|
2502
|
-
contentType: z.ZodOptional<z.ZodString>;
|
|
2503
|
-
}, z.core.$strip>>>;
|
|
2504
|
-
links: z.ZodObject<{
|
|
2505
|
-
resume: z.ZodString;
|
|
2506
|
-
finalize: z.ZodString;
|
|
2507
|
-
}, z.core.$strip>;
|
|
2508
|
-
details: z.ZodOptional<z.ZodObject<{
|
|
2509
|
-
reused: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2510
|
-
path: z.ZodString;
|
|
2511
|
-
reason: z.ZodString;
|
|
2512
|
-
}, z.core.$strip>>>;
|
|
2513
|
-
ignored: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2514
|
-
path: z.ZodString;
|
|
2515
|
-
reason: z.ZodString;
|
|
2516
|
-
}, z.core.$strip>>>;
|
|
2517
|
-
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2518
|
-
code: z.ZodString;
|
|
2519
|
-
severity: z.ZodEnum<{
|
|
2520
2701
|
warning: "warning";
|
|
2521
2702
|
error: "error";
|
|
2522
|
-
info: "info";
|
|
2523
2703
|
}>;
|
|
2524
2704
|
message: z.ZodString;
|
|
2525
2705
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2526
2706
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2707
|
+
registrar: "registrar";
|
|
2527
2708
|
wpcloud: "wpcloud";
|
|
2528
2709
|
dns: "dns";
|
|
2529
|
-
registrar: "registrar";
|
|
2530
2710
|
runtime: "runtime";
|
|
2531
2711
|
}>>>;
|
|
2532
2712
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2555,8 +2735,8 @@ export declare const spaceRuntimeStatusSchema: z.ZodObject<{
|
|
|
2555
2735
|
pendingVersionId: z.ZodNullable<z.ZodString>;
|
|
2556
2736
|
liveUrl: z.ZodNullable<z.ZodString>;
|
|
2557
2737
|
runtimeState: z.ZodEnum<{
|
|
2558
|
-
provisioning: "provisioning";
|
|
2559
2738
|
active: "active";
|
|
2739
|
+
provisioning: "provisioning";
|
|
2560
2740
|
updating: "updating";
|
|
2561
2741
|
moving: "moving";
|
|
2562
2742
|
deleting: "deleting";
|
|
@@ -2565,7 +2745,6 @@ export declare const spaceRuntimeStatusSchema: z.ZodObject<{
|
|
|
2565
2745
|
liveVersionStatus: z.ZodNullable<z.ZodEnum<{
|
|
2566
2746
|
failed: "failed";
|
|
2567
2747
|
canceled: "canceled";
|
|
2568
|
-
ready: "ready";
|
|
2569
2748
|
expired: "expired";
|
|
2570
2749
|
building: "building";
|
|
2571
2750
|
prepared: "prepared";
|
|
@@ -2573,10 +2752,11 @@ export declare const spaceRuntimeStatusSchema: z.ZodObject<{
|
|
|
2573
2752
|
uploading: "uploading";
|
|
2574
2753
|
uploaded: "uploaded";
|
|
2575
2754
|
finalizing: "finalizing";
|
|
2755
|
+
ready: "ready";
|
|
2576
2756
|
}>>;
|
|
2577
2757
|
liveRuntimeKind: z.ZodNullable<z.ZodEnum<{
|
|
2578
|
-
static: "static";
|
|
2579
2758
|
zero: "zero";
|
|
2759
|
+
static: "static";
|
|
2580
2760
|
php: "php";
|
|
2581
2761
|
node: "node";
|
|
2582
2762
|
workers: "workers";
|
|
@@ -2584,7 +2764,6 @@ export declare const spaceRuntimeStatusSchema: z.ZodObject<{
|
|
|
2584
2764
|
pendingVersionStatus: z.ZodNullable<z.ZodEnum<{
|
|
2585
2765
|
failed: "failed";
|
|
2586
2766
|
canceled: "canceled";
|
|
2587
|
-
ready: "ready";
|
|
2588
2767
|
expired: "expired";
|
|
2589
2768
|
building: "building";
|
|
2590
2769
|
prepared: "prepared";
|
|
@@ -2592,16 +2771,17 @@ export declare const spaceRuntimeStatusSchema: z.ZodObject<{
|
|
|
2592
2771
|
uploading: "uploading";
|
|
2593
2772
|
uploaded: "uploaded";
|
|
2594
2773
|
finalizing: "finalizing";
|
|
2774
|
+
ready: "ready";
|
|
2595
2775
|
}>>;
|
|
2596
2776
|
operation: z.ZodNullable<z.ZodObject<{
|
|
2597
2777
|
id: z.ZodString;
|
|
2598
2778
|
kind: z.ZodString;
|
|
2599
2779
|
status: z.ZodEnum<{
|
|
2600
2780
|
failed: "failed";
|
|
2781
|
+
canceled: "canceled";
|
|
2601
2782
|
queued: "queued";
|
|
2602
2783
|
running: "running";
|
|
2603
2784
|
succeeded: "succeeded";
|
|
2604
|
-
canceled: "canceled";
|
|
2605
2785
|
}>;
|
|
2606
2786
|
resources: z.ZodArray<z.ZodObject<{
|
|
2607
2787
|
type: z.ZodString;
|
|
@@ -2615,16 +2795,16 @@ export declare const spaceRuntimeStatusSchema: z.ZodObject<{
|
|
|
2615
2795
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2616
2796
|
code: z.ZodString;
|
|
2617
2797
|
severity: z.ZodEnum<{
|
|
2798
|
+
info: "info";
|
|
2618
2799
|
warning: "warning";
|
|
2619
2800
|
error: "error";
|
|
2620
|
-
info: "info";
|
|
2621
2801
|
}>;
|
|
2622
2802
|
message: z.ZodString;
|
|
2623
2803
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2624
2804
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2805
|
+
registrar: "registrar";
|
|
2625
2806
|
wpcloud: "wpcloud";
|
|
2626
2807
|
dns: "dns";
|
|
2627
|
-
registrar: "registrar";
|
|
2628
2808
|
runtime: "runtime";
|
|
2629
2809
|
}>>>;
|
|
2630
2810
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2665,10 +2845,10 @@ export declare const spaceChannelListResponseSchema: z.ZodObject<{
|
|
|
2665
2845
|
}, z.core.$strip>;
|
|
2666
2846
|
export declare const spaceApplyChangeBaseSchema: z.ZodObject<{
|
|
2667
2847
|
kind: z.ZodEnum<{
|
|
2668
|
-
password: "password";
|
|
2669
|
-
variable: "variable";
|
|
2670
2848
|
routing: "routing";
|
|
2849
|
+
password: "password";
|
|
2671
2850
|
settings: "settings";
|
|
2851
|
+
variable: "variable";
|
|
2672
2852
|
}>;
|
|
2673
2853
|
name: z.ZodString;
|
|
2674
2854
|
label: z.ZodString;
|
|
@@ -2679,10 +2859,10 @@ export declare const spaceApplyModeSchema: z.ZodEnum<{
|
|
|
2679
2859
|
}>;
|
|
2680
2860
|
export declare const spaceApplyChangeSchema: z.ZodObject<{
|
|
2681
2861
|
kind: z.ZodEnum<{
|
|
2682
|
-
password: "password";
|
|
2683
|
-
variable: "variable";
|
|
2684
2862
|
routing: "routing";
|
|
2863
|
+
password: "password";
|
|
2685
2864
|
settings: "settings";
|
|
2865
|
+
variable: "variable";
|
|
2686
2866
|
}>;
|
|
2687
2867
|
name: z.ZodString;
|
|
2688
2868
|
label: z.ZodString;
|
|
@@ -2699,9 +2879,9 @@ export declare const spaceApplyChangeSchema: z.ZodObject<{
|
|
|
2699
2879
|
}, z.core.$strip>;
|
|
2700
2880
|
export declare const spaceApplyStateSchema: z.ZodObject<{
|
|
2701
2881
|
status: z.ZodEnum<{
|
|
2882
|
+
live: "live";
|
|
2702
2883
|
failed: "failed";
|
|
2703
2884
|
pending: "pending";
|
|
2704
|
-
live: "live";
|
|
2705
2885
|
applying: "applying";
|
|
2706
2886
|
}>;
|
|
2707
2887
|
desiredRevision: z.ZodNullable<z.ZodString>;
|
|
@@ -2709,10 +2889,10 @@ export declare const spaceApplyStateSchema: z.ZodObject<{
|
|
|
2709
2889
|
pendingChangeCount: z.ZodNumber;
|
|
2710
2890
|
changes: z.ZodArray<z.ZodObject<{
|
|
2711
2891
|
kind: z.ZodEnum<{
|
|
2712
|
-
password: "password";
|
|
2713
|
-
variable: "variable";
|
|
2714
2892
|
routing: "routing";
|
|
2893
|
+
password: "password";
|
|
2715
2894
|
settings: "settings";
|
|
2895
|
+
variable: "variable";
|
|
2716
2896
|
}>;
|
|
2717
2897
|
name: z.ZodString;
|
|
2718
2898
|
label: z.ZodString;
|
|
@@ -2732,10 +2912,10 @@ export declare const spaceApplyStateSchema: z.ZodObject<{
|
|
|
2732
2912
|
kind: z.ZodString;
|
|
2733
2913
|
status: z.ZodEnum<{
|
|
2734
2914
|
failed: "failed";
|
|
2915
|
+
canceled: "canceled";
|
|
2735
2916
|
queued: "queued";
|
|
2736
2917
|
running: "running";
|
|
2737
2918
|
succeeded: "succeeded";
|
|
2738
|
-
canceled: "canceled";
|
|
2739
2919
|
}>;
|
|
2740
2920
|
resources: z.ZodArray<z.ZodObject<{
|
|
2741
2921
|
type: z.ZodString;
|
|
@@ -2749,16 +2929,16 @@ export declare const spaceApplyStateSchema: z.ZodObject<{
|
|
|
2749
2929
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2750
2930
|
code: z.ZodString;
|
|
2751
2931
|
severity: z.ZodEnum<{
|
|
2932
|
+
info: "info";
|
|
2752
2933
|
warning: "warning";
|
|
2753
2934
|
error: "error";
|
|
2754
|
-
info: "info";
|
|
2755
2935
|
}>;
|
|
2756
2936
|
message: z.ZodString;
|
|
2757
2937
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2758
2938
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2939
|
+
registrar: "registrar";
|
|
2759
2940
|
wpcloud: "wpcloud";
|
|
2760
2941
|
dns: "dns";
|
|
2761
|
-
registrar: "registrar";
|
|
2762
2942
|
runtime: "runtime";
|
|
2763
2943
|
}>>>;
|
|
2764
2944
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2775,9 +2955,9 @@ export declare const spaceApplyResponseSchema: z.ZodObject<{
|
|
|
2775
2955
|
applied: z.ZodBoolean;
|
|
2776
2956
|
applyState: z.ZodObject<{
|
|
2777
2957
|
status: z.ZodEnum<{
|
|
2958
|
+
live: "live";
|
|
2778
2959
|
failed: "failed";
|
|
2779
2960
|
pending: "pending";
|
|
2780
|
-
live: "live";
|
|
2781
2961
|
applying: "applying";
|
|
2782
2962
|
}>;
|
|
2783
2963
|
desiredRevision: z.ZodNullable<z.ZodString>;
|
|
@@ -2785,10 +2965,10 @@ export declare const spaceApplyResponseSchema: z.ZodObject<{
|
|
|
2785
2965
|
pendingChangeCount: z.ZodNumber;
|
|
2786
2966
|
changes: z.ZodArray<z.ZodObject<{
|
|
2787
2967
|
kind: z.ZodEnum<{
|
|
2788
|
-
password: "password";
|
|
2789
|
-
variable: "variable";
|
|
2790
2968
|
routing: "routing";
|
|
2969
|
+
password: "password";
|
|
2791
2970
|
settings: "settings";
|
|
2971
|
+
variable: "variable";
|
|
2792
2972
|
}>;
|
|
2793
2973
|
name: z.ZodString;
|
|
2794
2974
|
label: z.ZodString;
|
|
@@ -2808,10 +2988,10 @@ export declare const spaceApplyResponseSchema: z.ZodObject<{
|
|
|
2808
2988
|
kind: z.ZodString;
|
|
2809
2989
|
status: z.ZodEnum<{
|
|
2810
2990
|
failed: "failed";
|
|
2991
|
+
canceled: "canceled";
|
|
2811
2992
|
queued: "queued";
|
|
2812
2993
|
running: "running";
|
|
2813
2994
|
succeeded: "succeeded";
|
|
2814
|
-
canceled: "canceled";
|
|
2815
2995
|
}>;
|
|
2816
2996
|
resources: z.ZodArray<z.ZodObject<{
|
|
2817
2997
|
type: z.ZodString;
|
|
@@ -2825,16 +3005,16 @@ export declare const spaceApplyResponseSchema: z.ZodObject<{
|
|
|
2825
3005
|
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2826
3006
|
code: z.ZodString;
|
|
2827
3007
|
severity: z.ZodEnum<{
|
|
3008
|
+
info: "info";
|
|
2828
3009
|
warning: "warning";
|
|
2829
3010
|
error: "error";
|
|
2830
|
-
info: "info";
|
|
2831
3011
|
}>;
|
|
2832
3012
|
message: z.ZodString;
|
|
2833
3013
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2834
3014
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3015
|
+
registrar: "registrar";
|
|
2835
3016
|
wpcloud: "wpcloud";
|
|
2836
3017
|
dns: "dns";
|
|
2837
|
-
registrar: "registrar";
|
|
2838
3018
|
runtime: "runtime";
|
|
2839
3019
|
}>>>;
|
|
2840
3020
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|