@spacefast/common 0.0.26 → 0.2.2
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 +6 -146
- package/dist/agents/connect-targets.js +63 -295
- package/dist/agents/private-key-oauth.d.ts +31 -1
- package/dist/agents/private-key-oauth.js +124 -33
- package/dist/agents/registry/core.d.ts +292 -0
- package/dist/agents/registry/core.js +1388 -0
- package/dist/agents/registry/deeplink-probes.d.ts +23 -0
- package/dist/agents/registry/deeplink-probes.js +18 -0
- package/dist/agents/registry/node.d.ts +56 -0
- package/dist/agents/registry/node.js +339 -0
- package/dist/brand-assets-build.js +1 -2
- package/dist/brand-assets.js +4 -7
- package/dist/brand.d.ts +17 -0
- package/dist/brand.js +24 -4
- package/dist/config/domains.d.ts +55 -28
- package/dist/config/domains.js +85 -41
- package/dist/config/index.js +1 -2
- package/dist/contracts/abuse.js +9 -24
- package/dist/contracts/access-profiles.d.ts +86 -0
- package/dist/contracts/access-profiles.js +89 -0
- package/dist/contracts/access.d.ts +21 -27
- package/dist/contracts/access.js +33 -64
- package/dist/contracts/activity.d.ts +18 -1
- package/dist/contracts/activity.js +70 -26
- package/dist/contracts/analytics.js +8 -10
- package/dist/contracts/api-keys.d.ts +77 -52
- package/dist/contracts/api-keys.js +44 -24
- package/dist/contracts/application-journal.d.ts +216 -0
- package/dist/contracts/application-journal.js +167 -0
- package/dist/contracts/auth.d.ts +90 -17
- package/dist/contracts/auth.js +86 -17
- package/dist/contracts/beta.d.ts +9 -4
- package/dist/contracts/beta.js +20 -16
- package/dist/contracts/billing.js +7 -11
- package/dist/contracts/bootstrap.d.ts +791 -0
- package/dist/contracts/bootstrap.js +51 -0
- package/dist/contracts/builds.d.ts +192 -7
- package/dist/contracts/builds.js +84 -21
- package/dist/contracts/channels.d.ts +43 -0
- package/dist/contracts/channels.js +25 -9
- package/dist/contracts/cli.d.ts +7 -0
- package/dist/contracts/cli.js +6 -0
- package/dist/contracts/collab-public.d.ts +1 -1
- package/dist/contracts/collab-public.js +5 -8
- package/dist/contracts/comments.d.ts +45 -35
- package/dist/contracts/comments.js +107 -77
- package/dist/contracts/commerce.d.ts +165 -0
- package/dist/contracts/commerce.js +146 -0
- package/dist/contracts/common.d.ts +3 -3
- package/dist/contracts/common.js +18 -29
- package/dist/contracts/content-contract-verification.d.ts +521 -0
- package/dist/contracts/content-contract-verification.js +320 -0
- package/dist/contracts/content-platform-fixture.d.ts +1278 -0
- package/dist/contracts/content-platform-fixture.js +44 -0
- package/dist/contracts/content-program.d.ts +994 -0
- package/dist/contracts/content-program.js +658 -0
- package/dist/contracts/content-sync.d.ts +290 -0
- package/dist/contracts/content-sync.js +167 -0
- package/dist/contracts/content.d.ts +432 -0
- package/dist/contracts/content.js +303 -0
- package/dist/contracts/continuation.d.ts +17 -1
- package/dist/contracts/continuation.js +23 -23
- package/dist/contracts/countries.js +3 -4
- package/dist/contracts/crons.d.ts +17 -0
- package/dist/contracts/crons.js +33 -15
- package/dist/contracts/dashboard-prefs.d.ts +56 -0
- package/dist/contracts/dashboard-prefs.js +51 -0
- package/dist/contracts/device-auth.d.ts +234 -37
- package/dist/contracts/device-auth.js +267 -53
- package/dist/contracts/docs.d.ts +6 -10
- package/dist/contracts/docs.js +5 -13
- package/dist/contracts/domains.d.ts +499 -102
- package/dist/contracts/domains.js +169 -58
- package/dist/contracts/email-preferences.d.ts +3 -3
- package/dist/contracts/email-preferences.js +6 -7
- package/dist/contracts/enums.d.ts +26 -26
- package/dist/contracts/enums.js +61 -54
- package/dist/contracts/error-code-meta.d.ts +273 -7
- package/dist/contracts/error-code-meta.js +81 -5
- package/dist/contracts/error-codes.d.ts +5 -5
- package/dist/contracts/error-codes.js +79 -16
- package/dist/contracts/events.d.ts +100 -20
- package/dist/contracts/events.js +107 -20
- package/dist/contracts/execution.d.ts +47 -66
- package/dist/contracts/execution.js +51 -64
- package/dist/contracts/feature-lifecycle.d.ts +70 -14
- package/dist/contracts/feature-lifecycle.js +86 -15
- package/dist/contracts/features.d.ts +100 -37
- package/dist/contracts/features.js +21 -27
- package/dist/contracts/fixtures/content-platform-v1.json +1108 -0
- package/dist/contracts/frame-session.d.ts +192 -0
- package/dist/contracts/frame-session.js +164 -0
- package/dist/contracts/functions.d.ts +218 -211
- package/dist/contracts/functions.js +273 -260
- package/dist/contracts/grant-copy.d.ts +43 -0
- package/dist/contracts/grant-copy.js +44 -0
- package/dist/contracts/grants.d.ts +64 -56
- package/dist/contracts/grants.js +124 -23
- package/dist/contracts/ids.d.ts +4 -1
- package/dist/contracts/ids.js +4 -1
- package/dist/contracts/internal.d.ts +5 -4
- package/dist/contracts/internal.js +12 -3
- package/dist/contracts/mcp.d.ts +17 -0
- package/dist/contracts/mcp.js +23 -0
- package/dist/contracts/me.d.ts +6 -1
- package/dist/contracts/me.js +12 -6
- package/dist/contracts/notifications.d.ts +27 -29
- package/dist/contracts/notifications.js +9 -4
- package/dist/contracts/oauth-resources.d.ts +121 -10
- package/dist/contracts/oauth-resources.js +130 -11
- package/dist/contracts/oauth-scope-actions.d.ts +90 -0
- package/dist/contracts/oauth-scope-actions.js +126 -0
- package/dist/contracts/operations.d.ts +27 -4
- package/dist/contracts/operations.js +11 -5
- package/dist/contracts/pages.d.ts +29 -5
- package/dist/contracts/pages.js +22 -5
- package/dist/contracts/partner-notifications.d.ts +3 -0
- package/dist/contracts/partner-notifications.js +65 -0
- package/dist/contracts/{platform.d.ts → partner.d.ts} +29 -42
- package/dist/contracts/{platform.js → partner.js} +27 -40
- package/dist/contracts/plan-policy.d.ts +1 -1
- package/dist/contracts/principal-assertion.d.ts +43 -0
- package/dist/contracts/principal-assertion.js +67 -0
- package/dist/contracts/principals.d.ts +73 -0
- package/dist/contracts/principals.js +59 -0
- package/dist/contracts/privacy.d.ts +11 -0
- package/dist/contracts/privacy.js +17 -0
- package/dist/contracts/problem-document.js +3 -4
- package/dist/contracts/publish-archive.d.ts +116 -18
- package/dist/contracts/publish-archive.js +6 -3
- package/dist/contracts/push-new.d.ts +4 -4
- package/dist/contracts/quotas.js +3 -3
- package/dist/contracts/realtime.d.ts +52 -0
- package/dist/contracts/realtime.js +54 -0
- package/dist/contracts/repository-connections.d.ts +1 -1
- package/dist/contracts/repository-connections.js +6 -2
- package/dist/contracts/resources.d.ts +105 -14
- package/dist/contracts/resources.js +145 -21
- package/dist/contracts/route-inventory.d.ts +358 -0
- package/dist/contracts/route-inventory.js +141 -0
- package/dist/contracts/runtime-api.d.ts +112 -35
- package/dist/contracts/runtime-api.js +86 -66
- package/dist/contracts/runtime-app.d.ts +11 -21
- package/dist/contracts/runtime-app.js +39 -24
- package/dist/contracts/runtime-components.d.ts +143 -0
- package/dist/contracts/runtime-components.js +199 -0
- package/dist/contracts/runtime-db.d.ts +45 -19
- package/dist/contracts/runtime-db.js +85 -20
- package/dist/contracts/runtime-purge.js +3 -5
- package/dist/contracts/runtime-services.d.ts +43 -75
- package/dist/contracts/runtime-services.js +29 -49
- package/dist/contracts/runtime-storage.d.ts +14 -14
- package/dist/contracts/runtime-storage.js +28 -13
- package/dist/contracts/sf-config-v1.d.ts +14 -18
- package/dist/contracts/slugs.js +13 -4
- package/dist/contracts/space-config.d.ts +235 -28
- package/dist/contracts/space-config.js +246 -91
- package/dist/contracts/spaces.d.ts +360 -255
- package/dist/contracts/spaces.js +190 -122
- package/dist/contracts/superadmin-activity.d.ts +3 -43
- package/dist/contracts/superadmin-activity.js +6 -30
- package/dist/contracts/superadmin-emails.d.ts +1 -0
- package/dist/contracts/superadmin-emails.js +17 -1
- package/dist/contracts/superadmin-runtime.d.ts +199 -0
- package/dist/contracts/superadmin-runtime.js +141 -0
- package/dist/contracts/superadmin-search.d.ts +22 -2
- package/dist/contracts/superadmin-search.js +14 -6
- package/dist/contracts/superadmin-spaces.d.ts +435 -186
- package/dist/contracts/superadmin-spaces.js +131 -25
- package/dist/contracts/superadmin-teams.d.ts +3 -0
- package/dist/contracts/superadmin-teams.js +1 -2
- package/dist/contracts/superadmin-tenants.d.ts +627 -6
- package/dist/contracts/superadmin-tenants.js +32 -7
- package/dist/contracts/superadmin.d.ts +98 -16
- package/dist/contracts/superadmin.js +63 -10
- package/dist/contracts/tags.d.ts +85 -58
- package/dist/contracts/tags.js +44 -34
- package/dist/contracts/teams.d.ts +72 -9
- package/dist/contracts/teams.js +84 -25
- package/dist/contracts/tenants.d.ts +135 -0
- package/dist/contracts/tenants.js +120 -0
- package/dist/contracts/test-triggers.d.ts +70 -0
- package/dist/contracts/test-triggers.js +116 -0
- package/dist/contracts/theme-json.js +3 -8
- package/dist/contracts/transfers.d.ts +1 -0
- package/dist/contracts/transfers.js +1 -0
- package/dist/contracts/usage.d.ts +209 -0
- package/dist/contracts/usage.js +124 -12
- package/dist/contracts/variables.d.ts +2 -2
- package/dist/contracts/variables.js +9 -13
- package/dist/contracts/webhooks.d.ts +13 -5
- package/dist/contracts/webhooks.js +3 -1
- package/dist/contracts/zero.d.ts +57 -64
- package/dist/contracts/zero.js +68 -66
- package/dist/dashboard-paths/index.d.ts +24 -21
- package/dist/dashboard-paths/index.js +35 -47
- package/dist/dashboard-paths/route-reservations.generated.d.ts +2 -0
- package/dist/dashboard-paths/route-reservations.generated.js +36 -0
- package/dist/docs/agent-arrival.d.ts +92 -0
- package/dist/docs/agent-arrival.js +227 -0
- package/dist/docs/agent-output-policy.d.ts +6 -0
- package/dist/docs/agent-output-policy.js +22 -0
- package/dist/docs/agent-prose.d.ts +11 -17
- package/dist/docs/agent-prose.js +62 -37
- package/dist/docs/agent-setup.d.ts +72 -41
- package/dist/docs/agent-setup.js +336 -436
- package/dist/docs/catalog.d.ts +147 -89
- package/dist/docs/catalog.js +157 -42
- package/dist/docs/error-docs.d.ts +2102 -1
- package/dist/docs/error-docs.js +285 -16
- package/dist/docs/index-build.d.ts +0 -1
- package/dist/docs/index-build.js +2 -3
- package/dist/docs/page-context-prompt.d.ts +77 -0
- package/dist/docs/page-context-prompt.js +131 -0
- package/dist/docs/reference-urls.d.ts +46 -0
- package/dist/docs/reference-urls.js +79 -0
- package/dist/docs/search.d.ts +6 -8
- package/dist/docs/search.js +10 -13
- package/dist/docs/skill-distribution.d.ts +4 -1
- package/dist/docs/skill-distribution.js +10 -5
- package/dist/docs/skills.d.ts +117 -117
- package/dist/docs/skills.js +120 -72
- package/dist/docs/start-prompts.d.ts +45 -0
- package/dist/docs/start-prompts.js +62 -0
- package/dist/domain-exploration.js +9 -13
- package/dist/og-template.d.ts +56 -0
- package/dist/og-template.js +56 -0
- package/dist/slug-policy/index.js +5 -11
- package/dist/utils/browser-credential.d.ts +13 -6
- package/dist/utils/browser-credential.js +14 -7
- package/dist/utils/build-settings.d.ts +16 -0
- package/dist/utils/build-settings.js +63 -17
- package/dist/utils/canonical-json.d.ts +3 -5
- package/dist/utils/canonical-json.js +3 -5
- package/dist/utils/cast-transport.d.ts +5 -17
- package/dist/utils/cast-transport.js +6 -19
- package/dist/utils/claim-token.js +1 -2
- package/dist/utils/comment-avatars.js +4 -6
- package/dist/utils/concurrency.js +2 -3
- package/dist/utils/content-type.d.ts +7 -6
- package/dist/utils/content-type.js +73 -51
- package/dist/utils/credential-policy.d.ts +50 -6
- package/dist/utils/credential-policy.js +123 -57
- package/dist/utils/egress-policy.fixtures.json +1 -1
- package/dist/utils/generate-space-name.d.ts +3 -8
- package/dist/utils/generate-space-name.js +3 -8
- package/dist/utils/grants.d.ts +0 -1
- package/dist/utils/grants.js +4 -7
- package/dist/utils/gravatar.d.ts +2 -4
- package/dist/utils/gravatar.js +6 -12
- package/dist/utils/id-hints.js +14 -23
- package/dist/utils/idempotency.d.ts +3 -3
- package/dist/utils/idempotency.js +6 -7
- package/dist/utils/local-space-state.d.ts +15 -15
- package/dist/utils/local-space-state.js +34 -23
- package/dist/utils/oauth-signed-query.d.ts +3 -5
- package/dist/utils/oauth-signed-query.js +6 -9
- package/dist/utils/one-shot-replay.d.ts +3 -5
- package/dist/utils/one-shot-replay.js +3 -5
- package/dist/utils/page-colors.d.ts +4 -10
- package/dist/utils/page-colors.js +11 -35
- package/dist/utils/page-fonts.js +6 -11
- package/dist/utils/page-preview.d.ts +0 -1
- package/dist/utils/page-preview.js +0 -1
- package/dist/utils/pages.d.ts +22 -11
- package/dist/utils/pages.js +70 -30
- package/dist/utils/privacy-regions.d.ts +19 -0
- package/dist/utils/privacy-regions.js +91 -0
- package/dist/utils/publish-form-data.d.ts +4 -5
- package/dist/utils/publish-form-data.js +2 -3
- package/dist/utils/publish-policy.d.ts +10 -23
- package/dist/utils/publish-policy.js +63 -116
- package/dist/utils/query-client.d.ts +2 -0
- package/dist/utils/query-client.js +10 -1
- package/dist/utils/runtime-paths.d.ts +4 -4
- package/dist/utils/runtime-paths.js +6 -8
- package/dist/utils/runtime-upload.d.ts +4 -0
- package/dist/utils/runtime-upload.js +5 -0
- package/dist/utils/secure-local-file.d.ts +3 -3
- package/dist/utils/secure-local-file.js +18 -24
- package/dist/utils/space-config.d.ts +11 -14
- package/dist/utils/space-config.js +10 -16
- package/dist/utils/static-runtime-policy.d.ts +5 -8
- package/dist/utils/static-runtime-policy.generated.d.ts +16 -0
- package/dist/utils/static-runtime-policy.generated.js +70 -0
- package/dist/utils/static-runtime-policy.js +17 -84
- package/dist/utils/storage-policy.js +1 -2
- package/dist/utils/upload-session.js +8 -14
- package/dist/utils/version-path.js +11 -19
- package/dist/utils/wpcom-auth-redirects.d.ts +5 -14
- package/dist/utils/wpcom-auth-redirects.js +1 -4
- package/dist/vocabulary.d.ts +7 -7
- package/dist/vocabulary.js +30 -16
- package/package.json +14 -2
- package/dist/agents/client-registry.d.ts +0 -22
- package/dist/agents/client-registry.js +0 -41
- package/dist/docs/agent-handoff-document.d.ts +0 -15
- package/dist/docs/agent-handoff-document.js +0 -180
- package/dist/docs/agent-solutions.d.ts +0 -110
- package/dist/docs/agent-solutions.js +0 -183
- package/dist/utils/query-keys.d.ts +0 -84
- package/dist/utils/query-keys.js +0 -108
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
+
/**
|
|
3
|
+
* Whether a name is the registrable domain itself or a hostname beneath one.
|
|
4
|
+
* Only the server can answer it — the Public Suffix List is what separates
|
|
5
|
+
* `example.co.uk` (apex) from `www.example.com` (hostname), and shipping the
|
|
6
|
+
* list to a browser costs more than the answer is worth.
|
|
7
|
+
*/
|
|
8
|
+
export declare const domainKindSchema: z.ZodEnum<{
|
|
9
|
+
hostname: "hostname";
|
|
10
|
+
apex: "apex";
|
|
11
|
+
}>;
|
|
12
|
+
export type DomainKind = z.infer<typeof domainKindSchema>;
|
|
2
13
|
export declare const domainRegistrarFacetSchema: z.ZodObject<{
|
|
3
14
|
mode: z.ZodEnum<{
|
|
4
15
|
external: "external";
|
|
@@ -91,8 +102,8 @@ export declare const domainVerificationSchema: z.ZodObject<{
|
|
|
91
102
|
code: z.ZodString;
|
|
92
103
|
severity: z.ZodEnum<{
|
|
93
104
|
info: "info";
|
|
94
|
-
error: "error";
|
|
95
105
|
warning: "warning";
|
|
106
|
+
error: "error";
|
|
96
107
|
}>;
|
|
97
108
|
message: z.ZodString;
|
|
98
109
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -112,13 +123,13 @@ export declare const domainHintSchema: z.ZodObject<{
|
|
|
112
123
|
code: z.ZodString;
|
|
113
124
|
severity: z.ZodEnum<{
|
|
114
125
|
info: "info";
|
|
115
|
-
error: "error";
|
|
116
126
|
warning: "warning";
|
|
127
|
+
error: "error";
|
|
117
128
|
}>;
|
|
118
129
|
painLevel: z.ZodEnum<{
|
|
119
130
|
info: "info";
|
|
120
|
-
needs_attention: "needs_attention";
|
|
121
131
|
blocked: "blocked";
|
|
132
|
+
needs_attention: "needs_attention";
|
|
122
133
|
broken: "broken";
|
|
123
134
|
dangerous: "dangerous";
|
|
124
135
|
}>;
|
|
@@ -147,8 +158,8 @@ export declare const domainHintSchema: z.ZodObject<{
|
|
|
147
158
|
status: z.ZodEnum<{
|
|
148
159
|
active: "active";
|
|
149
160
|
running: "running";
|
|
150
|
-
waiting: "waiting";
|
|
151
161
|
resolved: "resolved";
|
|
162
|
+
waiting: "waiting";
|
|
152
163
|
dismissed: "dismissed";
|
|
153
164
|
}>;
|
|
154
165
|
summary: z.ZodString;
|
|
@@ -357,8 +368,8 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
357
368
|
code: z.ZodString;
|
|
358
369
|
severity: z.ZodEnum<{
|
|
359
370
|
info: "info";
|
|
360
|
-
error: "error";
|
|
361
371
|
warning: "warning";
|
|
372
|
+
error: "error";
|
|
362
373
|
}>;
|
|
363
374
|
message: z.ZodString;
|
|
364
375
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -378,13 +389,13 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
378
389
|
code: z.ZodString;
|
|
379
390
|
severity: z.ZodEnum<{
|
|
380
391
|
info: "info";
|
|
381
|
-
error: "error";
|
|
382
392
|
warning: "warning";
|
|
393
|
+
error: "error";
|
|
383
394
|
}>;
|
|
384
395
|
painLevel: z.ZodEnum<{
|
|
385
396
|
info: "info";
|
|
386
|
-
needs_attention: "needs_attention";
|
|
387
397
|
blocked: "blocked";
|
|
398
|
+
needs_attention: "needs_attention";
|
|
388
399
|
broken: "broken";
|
|
389
400
|
dangerous: "dangerous";
|
|
390
401
|
}>;
|
|
@@ -413,8 +424,8 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
413
424
|
status: z.ZodEnum<{
|
|
414
425
|
active: "active";
|
|
415
426
|
running: "running";
|
|
416
|
-
waiting: "waiting";
|
|
417
427
|
resolved: "resolved";
|
|
428
|
+
waiting: "waiting";
|
|
418
429
|
dismissed: "dismissed";
|
|
419
430
|
}>;
|
|
420
431
|
summary: z.ZodString;
|
|
@@ -615,8 +626,8 @@ export declare const domainListResponseSchema: z.ZodObject<{
|
|
|
615
626
|
code: z.ZodString;
|
|
616
627
|
severity: z.ZodEnum<{
|
|
617
628
|
info: "info";
|
|
618
|
-
error: "error";
|
|
619
629
|
warning: "warning";
|
|
630
|
+
error: "error";
|
|
620
631
|
}>;
|
|
621
632
|
message: z.ZodString;
|
|
622
633
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -636,13 +647,13 @@ export declare const domainListResponseSchema: z.ZodObject<{
|
|
|
636
647
|
code: z.ZodString;
|
|
637
648
|
severity: z.ZodEnum<{
|
|
638
649
|
info: "info";
|
|
639
|
-
error: "error";
|
|
640
650
|
warning: "warning";
|
|
651
|
+
error: "error";
|
|
641
652
|
}>;
|
|
642
653
|
painLevel: z.ZodEnum<{
|
|
643
654
|
info: "info";
|
|
644
|
-
needs_attention: "needs_attention";
|
|
645
655
|
blocked: "blocked";
|
|
656
|
+
needs_attention: "needs_attention";
|
|
646
657
|
broken: "broken";
|
|
647
658
|
dangerous: "dangerous";
|
|
648
659
|
}>;
|
|
@@ -671,8 +682,8 @@ export declare const domainListResponseSchema: z.ZodObject<{
|
|
|
671
682
|
status: z.ZodEnum<{
|
|
672
683
|
active: "active";
|
|
673
684
|
running: "running";
|
|
674
|
-
waiting: "waiting";
|
|
675
685
|
resolved: "resolved";
|
|
686
|
+
waiting: "waiting";
|
|
676
687
|
dismissed: "dismissed";
|
|
677
688
|
}>;
|
|
678
689
|
summary: z.ZodString;
|
|
@@ -870,8 +881,8 @@ export declare const spaceCustomDomainSchema: z.ZodObject<{
|
|
|
870
881
|
code: z.ZodString;
|
|
871
882
|
severity: z.ZodEnum<{
|
|
872
883
|
info: "info";
|
|
873
|
-
error: "error";
|
|
874
884
|
warning: "warning";
|
|
885
|
+
error: "error";
|
|
875
886
|
}>;
|
|
876
887
|
message: z.ZodString;
|
|
877
888
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -891,13 +902,13 @@ export declare const spaceCustomDomainSchema: z.ZodObject<{
|
|
|
891
902
|
code: z.ZodString;
|
|
892
903
|
severity: z.ZodEnum<{
|
|
893
904
|
info: "info";
|
|
894
|
-
error: "error";
|
|
895
905
|
warning: "warning";
|
|
906
|
+
error: "error";
|
|
896
907
|
}>;
|
|
897
908
|
painLevel: z.ZodEnum<{
|
|
898
909
|
info: "info";
|
|
899
|
-
needs_attention: "needs_attention";
|
|
900
910
|
blocked: "blocked";
|
|
911
|
+
needs_attention: "needs_attention";
|
|
901
912
|
broken: "broken";
|
|
902
913
|
dangerous: "dangerous";
|
|
903
914
|
}>;
|
|
@@ -926,8 +937,8 @@ export declare const spaceCustomDomainSchema: z.ZodObject<{
|
|
|
926
937
|
status: z.ZodEnum<{
|
|
927
938
|
active: "active";
|
|
928
939
|
running: "running";
|
|
929
|
-
waiting: "waiting";
|
|
930
940
|
resolved: "resolved";
|
|
941
|
+
waiting: "waiting";
|
|
931
942
|
dismissed: "dismissed";
|
|
932
943
|
}>;
|
|
933
944
|
summary: z.ZodString;
|
|
@@ -1039,8 +1050,8 @@ export declare const spaceManagedDomainSchema: z.ZodObject<{
|
|
|
1039
1050
|
code: z.ZodString;
|
|
1040
1051
|
severity: z.ZodEnum<{
|
|
1041
1052
|
info: "info";
|
|
1042
|
-
error: "error";
|
|
1043
1053
|
warning: "warning";
|
|
1054
|
+
error: "error";
|
|
1044
1055
|
}>;
|
|
1045
1056
|
message: z.ZodString;
|
|
1046
1057
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1094,8 +1105,8 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1094
1105
|
code: z.ZodString;
|
|
1095
1106
|
severity: z.ZodEnum<{
|
|
1096
1107
|
info: "info";
|
|
1097
|
-
error: "error";
|
|
1098
1108
|
warning: "warning";
|
|
1109
|
+
error: "error";
|
|
1099
1110
|
}>;
|
|
1100
1111
|
message: z.ZodString;
|
|
1101
1112
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1234,8 +1245,8 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1234
1245
|
code: z.ZodString;
|
|
1235
1246
|
severity: z.ZodEnum<{
|
|
1236
1247
|
info: "info";
|
|
1237
|
-
error: "error";
|
|
1238
1248
|
warning: "warning";
|
|
1249
|
+
error: "error";
|
|
1239
1250
|
}>;
|
|
1240
1251
|
message: z.ZodString;
|
|
1241
1252
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1255,13 +1266,13 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1255
1266
|
code: z.ZodString;
|
|
1256
1267
|
severity: z.ZodEnum<{
|
|
1257
1268
|
info: "info";
|
|
1258
|
-
error: "error";
|
|
1259
1269
|
warning: "warning";
|
|
1270
|
+
error: "error";
|
|
1260
1271
|
}>;
|
|
1261
1272
|
painLevel: z.ZodEnum<{
|
|
1262
1273
|
info: "info";
|
|
1263
|
-
needs_attention: "needs_attention";
|
|
1264
1274
|
blocked: "blocked";
|
|
1275
|
+
needs_attention: "needs_attention";
|
|
1265
1276
|
broken: "broken";
|
|
1266
1277
|
dangerous: "dangerous";
|
|
1267
1278
|
}>;
|
|
@@ -1290,8 +1301,8 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1290
1301
|
status: z.ZodEnum<{
|
|
1291
1302
|
active: "active";
|
|
1292
1303
|
running: "running";
|
|
1293
|
-
waiting: "waiting";
|
|
1294
1304
|
resolved: "resolved";
|
|
1305
|
+
waiting: "waiting";
|
|
1295
1306
|
dismissed: "dismissed";
|
|
1296
1307
|
}>;
|
|
1297
1308
|
summary: z.ZodString;
|
|
@@ -1405,8 +1416,8 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1405
1416
|
code: z.ZodString;
|
|
1406
1417
|
severity: z.ZodEnum<{
|
|
1407
1418
|
info: "info";
|
|
1408
|
-
error: "error";
|
|
1409
1419
|
warning: "warning";
|
|
1420
|
+
error: "error";
|
|
1410
1421
|
}>;
|
|
1411
1422
|
message: z.ZodString;
|
|
1412
1423
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1545,8 +1556,8 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1545
1556
|
code: z.ZodString;
|
|
1546
1557
|
severity: z.ZodEnum<{
|
|
1547
1558
|
info: "info";
|
|
1548
|
-
error: "error";
|
|
1549
1559
|
warning: "warning";
|
|
1560
|
+
error: "error";
|
|
1550
1561
|
}>;
|
|
1551
1562
|
message: z.ZodString;
|
|
1552
1563
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1566,13 +1577,13 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1566
1577
|
code: z.ZodString;
|
|
1567
1578
|
severity: z.ZodEnum<{
|
|
1568
1579
|
info: "info";
|
|
1569
|
-
error: "error";
|
|
1570
1580
|
warning: "warning";
|
|
1581
|
+
error: "error";
|
|
1571
1582
|
}>;
|
|
1572
1583
|
painLevel: z.ZodEnum<{
|
|
1573
1584
|
info: "info";
|
|
1574
|
-
needs_attention: "needs_attention";
|
|
1575
1585
|
blocked: "blocked";
|
|
1586
|
+
needs_attention: "needs_attention";
|
|
1576
1587
|
broken: "broken";
|
|
1577
1588
|
dangerous: "dangerous";
|
|
1578
1589
|
}>;
|
|
@@ -1601,8 +1612,8 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1601
1612
|
status: z.ZodEnum<{
|
|
1602
1613
|
active: "active";
|
|
1603
1614
|
running: "running";
|
|
1604
|
-
waiting: "waiting";
|
|
1605
1615
|
resolved: "resolved";
|
|
1616
|
+
waiting: "waiting";
|
|
1606
1617
|
dismissed: "dismissed";
|
|
1607
1618
|
}>;
|
|
1608
1619
|
summary: z.ZodString;
|
|
@@ -1679,12 +1690,12 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1679
1690
|
assignable: z.ZodLiteral<true>;
|
|
1680
1691
|
primary: z.ZodBoolean;
|
|
1681
1692
|
}, z.core.$strip>], "source">>;
|
|
1682
|
-
pagination: z.ZodObject<{
|
|
1683
|
-
nextCursor: z.ZodNullable<z.ZodString>;
|
|
1684
|
-
hasMore: z.ZodBoolean;
|
|
1685
|
-
}, z.core.$strip>;
|
|
1686
1693
|
}, z.core.$strip>;
|
|
1687
|
-
export declare const
|
|
1694
|
+
export declare const spaceDomainCreateRequestSchema: z.ZodObject<{
|
|
1695
|
+
name: z.ZodString;
|
|
1696
|
+
primary: z.ZodDefault<z.ZodBoolean>;
|
|
1697
|
+
}, z.core.$strict>;
|
|
1698
|
+
export declare const managedDomainListItemSchema: z.ZodObject<{
|
|
1688
1699
|
id: z.ZodString;
|
|
1689
1700
|
source: z.ZodLiteral<"managed_view_fast">;
|
|
1690
1701
|
managed: z.ZodLiteral<true>;
|
|
@@ -1719,8 +1730,8 @@ export declare const teamManagedDomainSchema: z.ZodObject<{
|
|
|
1719
1730
|
code: z.ZodString;
|
|
1720
1731
|
severity: z.ZodEnum<{
|
|
1721
1732
|
info: "info";
|
|
1722
|
-
error: "error";
|
|
1723
1733
|
warning: "warning";
|
|
1734
|
+
error: "error";
|
|
1724
1735
|
}>;
|
|
1725
1736
|
message: z.ZodString;
|
|
1726
1737
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1742,8 +1753,8 @@ export declare const teamManagedDomainSchema: z.ZodObject<{
|
|
|
1742
1753
|
spaceSlug: z.ZodString;
|
|
1743
1754
|
spaceTitle: z.ZodString;
|
|
1744
1755
|
}, z.core.$strip>;
|
|
1745
|
-
export type
|
|
1746
|
-
export declare const
|
|
1756
|
+
export type ManagedDomainListItem = z.infer<typeof managedDomainListItemSchema>;
|
|
1757
|
+
export declare const managedDomainListResponseSchema: z.ZodObject<{
|
|
1747
1758
|
data: z.ZodArray<z.ZodObject<{
|
|
1748
1759
|
id: z.ZodString;
|
|
1749
1760
|
source: z.ZodLiteral<"managed_view_fast">;
|
|
@@ -1779,8 +1790,8 @@ export declare const teamManagedDomainListResponseSchema: z.ZodObject<{
|
|
|
1779
1790
|
code: z.ZodString;
|
|
1780
1791
|
severity: z.ZodEnum<{
|
|
1781
1792
|
info: "info";
|
|
1782
|
-
error: "error";
|
|
1783
1793
|
warning: "warning";
|
|
1794
|
+
error: "error";
|
|
1784
1795
|
}>;
|
|
1785
1796
|
message: z.ZodString;
|
|
1786
1797
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1802,17 +1813,18 @@ export declare const teamManagedDomainListResponseSchema: z.ZodObject<{
|
|
|
1802
1813
|
spaceSlug: z.ZodString;
|
|
1803
1814
|
spaceTitle: z.ZodString;
|
|
1804
1815
|
}, z.core.$strip>>;
|
|
1805
|
-
pagination: z.ZodObject<{
|
|
1806
|
-
nextCursor: z.ZodNullable<z.ZodString>;
|
|
1807
|
-
hasMore: z.ZodBoolean;
|
|
1808
|
-
}, z.core.$strip>;
|
|
1809
1816
|
}, z.core.$strip>;
|
|
1810
1817
|
export declare const domainPreflightQuerySchema: z.ZodObject<{
|
|
1811
1818
|
name: z.ZodString;
|
|
1819
|
+
teamId: z.ZodOptional<z.ZodString>;
|
|
1812
1820
|
}, z.core.$strip>;
|
|
1813
1821
|
export declare const domainPreflightSchema: z.ZodObject<{
|
|
1814
1822
|
name: z.ZodString;
|
|
1815
1823
|
unicodeName: z.ZodOptional<z.ZodString>;
|
|
1824
|
+
kind: z.ZodEnum<{
|
|
1825
|
+
hostname: "hostname";
|
|
1826
|
+
apex: "apex";
|
|
1827
|
+
}>;
|
|
1816
1828
|
canHost: z.ZodNullable<z.ZodBoolean>;
|
|
1817
1829
|
providerMessage: z.ZodNullable<z.ZodString>;
|
|
1818
1830
|
}, z.core.$strip>;
|
|
@@ -1821,9 +1833,84 @@ export declare const domainCreateRequestSchema: z.ZodObject<{
|
|
|
1821
1833
|
name: z.ZodString;
|
|
1822
1834
|
teamId: z.ZodOptional<z.ZodString>;
|
|
1823
1835
|
}, z.core.$strip>;
|
|
1824
|
-
|
|
1825
|
-
wildcardEnabled: z.
|
|
1826
|
-
}, z.core.$
|
|
1836
|
+
declare const domainMetadataPatchSchema: z.ZodObject<{
|
|
1837
|
+
wildcardEnabled: z.ZodBoolean;
|
|
1838
|
+
}, z.core.$strict>;
|
|
1839
|
+
declare const domainAssignPatchSchema: z.ZodObject<{
|
|
1840
|
+
spaceId: z.ZodString;
|
|
1841
|
+
primary: z.ZodBoolean;
|
|
1842
|
+
redirect: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1843
|
+
to: z.ZodUnion<readonly [z.ZodObject<{
|
|
1844
|
+
url: z.ZodString;
|
|
1845
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1846
|
+
spaceId: z.ZodString;
|
|
1847
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1848
|
+
}, z.core.$strip>]>;
|
|
1849
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>;
|
|
1850
|
+
}, z.core.$strip>>>;
|
|
1851
|
+
}, z.core.$strict>;
|
|
1852
|
+
declare const domainRedirectPatchSchema: z.ZodObject<{
|
|
1853
|
+
redirect: z.ZodNullable<z.ZodObject<{
|
|
1854
|
+
to: z.ZodUnion<readonly [z.ZodObject<{
|
|
1855
|
+
url: z.ZodString;
|
|
1856
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1857
|
+
spaceId: z.ZodString;
|
|
1858
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1859
|
+
}, z.core.$strip>]>;
|
|
1860
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>;
|
|
1861
|
+
}, z.core.$strip>>;
|
|
1862
|
+
}, z.core.$strict>;
|
|
1863
|
+
export declare const domainPatchSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1864
|
+
wildcardEnabled: z.ZodBoolean;
|
|
1865
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1866
|
+
spaceId: z.ZodString;
|
|
1867
|
+
primary: z.ZodBoolean;
|
|
1868
|
+
redirect: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1869
|
+
to: z.ZodUnion<readonly [z.ZodObject<{
|
|
1870
|
+
url: z.ZodString;
|
|
1871
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1872
|
+
spaceId: z.ZodString;
|
|
1873
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1874
|
+
}, z.core.$strip>]>;
|
|
1875
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>;
|
|
1876
|
+
}, z.core.$strip>>>;
|
|
1877
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1878
|
+
spaceId: z.ZodNull;
|
|
1879
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1880
|
+
redirect: z.ZodNullable<z.ZodObject<{
|
|
1881
|
+
to: z.ZodUnion<readonly [z.ZodObject<{
|
|
1882
|
+
url: z.ZodString;
|
|
1883
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1884
|
+
spaceId: z.ZodString;
|
|
1885
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1886
|
+
}, z.core.$strip>]>;
|
|
1887
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>;
|
|
1888
|
+
}, z.core.$strip>>;
|
|
1889
|
+
}, z.core.$strict>]>;
|
|
1890
|
+
export type DomainPatch = z.infer<typeof domainPatchSchema>;
|
|
1891
|
+
/**
|
|
1892
|
+
* Which arm of `domainPatchSchema` a validated body took, with that arm's body
|
|
1893
|
+
* already narrowed.
|
|
1894
|
+
*
|
|
1895
|
+
* The union is the one place that decides what a PATCH means. Without this the
|
|
1896
|
+
* server re-derives the same classification by key-sniffing, in an order that
|
|
1897
|
+
* is itself load-bearing (`wildcardEnabled` must be tested before "no
|
|
1898
|
+
* `spaceId`", or a metadata body reads as a redirect intent) — two files
|
|
1899
|
+
* independently encoding the same rule, neither of them the source of truth.
|
|
1900
|
+
*/
|
|
1901
|
+
export type DomainPatchIntent = {
|
|
1902
|
+
kind: "metadata";
|
|
1903
|
+
body: z.infer<typeof domainMetadataPatchSchema>;
|
|
1904
|
+
} | {
|
|
1905
|
+
kind: "assign";
|
|
1906
|
+
body: z.infer<typeof domainAssignPatchSchema>;
|
|
1907
|
+
} | {
|
|
1908
|
+
kind: "unassign";
|
|
1909
|
+
} | {
|
|
1910
|
+
kind: "redirect";
|
|
1911
|
+
body: z.infer<typeof domainRedirectPatchSchema>;
|
|
1912
|
+
};
|
|
1913
|
+
export declare function domainPatchIntent(body: DomainPatch): DomainPatchIntent;
|
|
1827
1914
|
export declare const domainRegistrationSchema: z.ZodObject<{
|
|
1828
1915
|
id: z.ZodNullable<z.ZodString>;
|
|
1829
1916
|
domainId: z.ZodString;
|
|
@@ -1910,8 +1997,8 @@ export declare const domainRegistrationActionResponseSchema: z.ZodObject<{
|
|
|
1910
1997
|
code: z.ZodString;
|
|
1911
1998
|
severity: z.ZodEnum<{
|
|
1912
1999
|
info: "info";
|
|
1913
|
-
error: "error";
|
|
1914
2000
|
warning: "warning";
|
|
2001
|
+
error: "error";
|
|
1915
2002
|
}>;
|
|
1916
2003
|
message: z.ZodString;
|
|
1917
2004
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1953,8 +2040,8 @@ export declare const domainNameserverResponseSchema: z.ZodObject<{
|
|
|
1953
2040
|
code: z.ZodString;
|
|
1954
2041
|
severity: z.ZodEnum<{
|
|
1955
2042
|
info: "info";
|
|
1956
|
-
error: "error";
|
|
1957
2043
|
warning: "warning";
|
|
2044
|
+
error: "error";
|
|
1958
2045
|
}>;
|
|
1959
2046
|
message: z.ZodString;
|
|
1960
2047
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2102,8 +2189,8 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
2102
2189
|
code: z.ZodString;
|
|
2103
2190
|
severity: z.ZodEnum<{
|
|
2104
2191
|
info: "info";
|
|
2105
|
-
error: "error";
|
|
2106
2192
|
warning: "warning";
|
|
2193
|
+
error: "error";
|
|
2107
2194
|
}>;
|
|
2108
2195
|
message: z.ZodString;
|
|
2109
2196
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2123,13 +2210,13 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
2123
2210
|
code: z.ZodString;
|
|
2124
2211
|
severity: z.ZodEnum<{
|
|
2125
2212
|
info: "info";
|
|
2126
|
-
error: "error";
|
|
2127
2213
|
warning: "warning";
|
|
2214
|
+
error: "error";
|
|
2128
2215
|
}>;
|
|
2129
2216
|
painLevel: z.ZodEnum<{
|
|
2130
2217
|
info: "info";
|
|
2131
|
-
needs_attention: "needs_attention";
|
|
2132
2218
|
blocked: "blocked";
|
|
2219
|
+
needs_attention: "needs_attention";
|
|
2133
2220
|
broken: "broken";
|
|
2134
2221
|
dangerous: "dangerous";
|
|
2135
2222
|
}>;
|
|
@@ -2158,8 +2245,8 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
2158
2245
|
status: z.ZodEnum<{
|
|
2159
2246
|
active: "active";
|
|
2160
2247
|
running: "running";
|
|
2161
|
-
waiting: "waiting";
|
|
2162
2248
|
resolved: "resolved";
|
|
2249
|
+
waiting: "waiting";
|
|
2163
2250
|
dismissed: "dismissed";
|
|
2164
2251
|
}>;
|
|
2165
2252
|
summary: z.ZodString;
|
|
@@ -2235,8 +2322,8 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
2235
2322
|
code: z.ZodString;
|
|
2236
2323
|
severity: z.ZodEnum<{
|
|
2237
2324
|
info: "info";
|
|
2238
|
-
error: "error";
|
|
2239
2325
|
warning: "warning";
|
|
2326
|
+
error: "error";
|
|
2240
2327
|
}>;
|
|
2241
2328
|
message: z.ZodString;
|
|
2242
2329
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2303,8 +2390,8 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
2303
2390
|
code: z.ZodString;
|
|
2304
2391
|
severity: z.ZodEnum<{
|
|
2305
2392
|
info: "info";
|
|
2306
|
-
error: "error";
|
|
2307
2393
|
warning: "warning";
|
|
2394
|
+
error: "error";
|
|
2308
2395
|
}>;
|
|
2309
2396
|
message: z.ZodString;
|
|
2310
2397
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2802,8 +2889,8 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2802
2889
|
code: z.ZodString;
|
|
2803
2890
|
severity: z.ZodEnum<{
|
|
2804
2891
|
info: "info";
|
|
2805
|
-
error: "error";
|
|
2806
2892
|
warning: "warning";
|
|
2893
|
+
error: "error";
|
|
2807
2894
|
}>;
|
|
2808
2895
|
message: z.ZodString;
|
|
2809
2896
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2951,7 +3038,7 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2951
3038
|
};
|
|
2952
3039
|
diagnostics: {
|
|
2953
3040
|
code: string;
|
|
2954
|
-
severity: "info" | "
|
|
3041
|
+
severity: "info" | "warning" | "error";
|
|
2955
3042
|
message: string;
|
|
2956
3043
|
path?: string | null | undefined;
|
|
2957
3044
|
provider?: "registrar" | "infra" | "dns" | "runtime" | null | undefined;
|
|
@@ -3092,7 +3179,7 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3092
3179
|
};
|
|
3093
3180
|
diagnostics: {
|
|
3094
3181
|
code: string;
|
|
3095
|
-
severity: "info" | "
|
|
3182
|
+
severity: "info" | "warning" | "error";
|
|
3096
3183
|
message: string;
|
|
3097
3184
|
path?: string | null | undefined;
|
|
3098
3185
|
provider?: "registrar" | "infra" | "dns" | "runtime" | null | undefined;
|
|
@@ -3114,6 +3201,13 @@ export declare const domainProviderConnectionStatusSchema: z.ZodEnum<{
|
|
|
3114
3201
|
pending_relink: "pending_relink";
|
|
3115
3202
|
reconnect_required: "reconnect_required";
|
|
3116
3203
|
}>;
|
|
3204
|
+
/**
|
|
3205
|
+
* The DNS providers a Domain can name on the wire: the internal column
|
|
3206
|
+
* vocabulary (`domainDnsProviderValues`) minus the two values that never leave
|
|
3207
|
+
* the control plane — `none` (an unset column) and `dsapi` (our registrar's own
|
|
3208
|
+
* DNS, which surfaces as `stattic`).
|
|
3209
|
+
*/
|
|
3210
|
+
export declare const DOMAIN_DNS_PROVIDERS: readonly ["cloudflare", "vercel", "wpcom", "pressable", "route53", "stattic", "manual"];
|
|
3117
3211
|
export declare const domainDnsProviderSchema: z.ZodEnum<{
|
|
3118
3212
|
manual: "manual";
|
|
3119
3213
|
stattic: "stattic";
|
|
@@ -3297,29 +3391,125 @@ export declare const domainProviderZoneAttachSchema: z.ZodObject<{
|
|
|
3297
3391
|
providerZoneId: z.ZodString;
|
|
3298
3392
|
providerZoneName: z.ZodOptional<z.ZodString>;
|
|
3299
3393
|
}, z.core.$strip>;
|
|
3300
|
-
export declare const domainConnectDiscoverySchema: z.ZodObject<{
|
|
3301
|
-
|
|
3302
|
-
|
|
3394
|
+
export declare const domainConnectDiscoverySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3395
|
+
status: z.ZodLiteral<"available">;
|
|
3396
|
+
checkedAt: z.ZodString;
|
|
3397
|
+
provider: z.ZodObject<{
|
|
3398
|
+
id: z.ZodString;
|
|
3399
|
+
name: z.ZodString;
|
|
3400
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3401
|
+
controlPanelUrl: z.ZodOptional<z.ZodString>;
|
|
3402
|
+
}, z.core.$strip>;
|
|
3403
|
+
template: z.ZodObject<{
|
|
3404
|
+
providerId: z.ZodString;
|
|
3405
|
+
serviceId: z.ZodString;
|
|
3406
|
+
version: z.ZodNullable<z.ZodNumber>;
|
|
3407
|
+
}, z.core.$strip>;
|
|
3408
|
+
applyUrl: z.ZodString;
|
|
3409
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3410
|
+
status: z.ZodLiteral<"unsupported">;
|
|
3411
|
+
reason: z.ZodEnum<{
|
|
3412
|
+
domain_not_bound: "domain_not_bound";
|
|
3413
|
+
configuration_unsupported: "configuration_unsupported";
|
|
3414
|
+
discovery_not_advertised: "discovery_not_advertised";
|
|
3415
|
+
discovery_ambiguous: "discovery_ambiguous";
|
|
3416
|
+
settings_not_found: "settings_not_found";
|
|
3417
|
+
settings_invalid: "settings_invalid";
|
|
3418
|
+
sync_flow_unsupported: "sync_flow_unsupported";
|
|
3419
|
+
template_unsupported: "template_unsupported";
|
|
3420
|
+
provider_unavailable: "provider_unavailable";
|
|
3421
|
+
signing_unavailable: "signing_unavailable";
|
|
3422
|
+
}>;
|
|
3423
|
+
checkedAt: z.ZodString;
|
|
3303
3424
|
provider: z.ZodOptional<z.ZodObject<{
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3425
|
+
id: z.ZodString;
|
|
3426
|
+
name: z.ZodString;
|
|
3427
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3428
|
+
controlPanelUrl: z.ZodOptional<z.ZodString>;
|
|
3308
3429
|
}, z.core.$strip>>;
|
|
3430
|
+
gated: z.ZodOptional<z.ZodBoolean>;
|
|
3431
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3432
|
+
status: z.ZodLiteral<"unavailable">;
|
|
3433
|
+
reason: z.ZodEnum<{
|
|
3434
|
+
domain_not_bound: "domain_not_bound";
|
|
3435
|
+
configuration_unsupported: "configuration_unsupported";
|
|
3436
|
+
discovery_not_advertised: "discovery_not_advertised";
|
|
3437
|
+
discovery_ambiguous: "discovery_ambiguous";
|
|
3438
|
+
settings_not_found: "settings_not_found";
|
|
3439
|
+
settings_invalid: "settings_invalid";
|
|
3440
|
+
sync_flow_unsupported: "sync_flow_unsupported";
|
|
3441
|
+
template_unsupported: "template_unsupported";
|
|
3442
|
+
provider_unavailable: "provider_unavailable";
|
|
3443
|
+
signing_unavailable: "signing_unavailable";
|
|
3444
|
+
}>;
|
|
3309
3445
|
checkedAt: z.ZodString;
|
|
3310
|
-
|
|
3446
|
+
provider: z.ZodOptional<z.ZodObject<{
|
|
3447
|
+
id: z.ZodString;
|
|
3448
|
+
name: z.ZodString;
|
|
3449
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3450
|
+
controlPanelUrl: z.ZodOptional<z.ZodString>;
|
|
3451
|
+
}, z.core.$strip>>;
|
|
3452
|
+
}, z.core.$strip>], "status">;
|
|
3311
3453
|
export declare const domainConnectDiscoveryResponseSchema: z.ZodObject<{
|
|
3312
|
-
data: z.ZodObject<{
|
|
3313
|
-
|
|
3314
|
-
|
|
3454
|
+
data: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3455
|
+
status: z.ZodLiteral<"available">;
|
|
3456
|
+
checkedAt: z.ZodString;
|
|
3457
|
+
provider: z.ZodObject<{
|
|
3458
|
+
id: z.ZodString;
|
|
3459
|
+
name: z.ZodString;
|
|
3460
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3461
|
+
controlPanelUrl: z.ZodOptional<z.ZodString>;
|
|
3462
|
+
}, z.core.$strip>;
|
|
3463
|
+
template: z.ZodObject<{
|
|
3464
|
+
providerId: z.ZodString;
|
|
3465
|
+
serviceId: z.ZodString;
|
|
3466
|
+
version: z.ZodNullable<z.ZodNumber>;
|
|
3467
|
+
}, z.core.$strip>;
|
|
3468
|
+
applyUrl: z.ZodString;
|
|
3469
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3470
|
+
status: z.ZodLiteral<"unsupported">;
|
|
3471
|
+
reason: z.ZodEnum<{
|
|
3472
|
+
domain_not_bound: "domain_not_bound";
|
|
3473
|
+
configuration_unsupported: "configuration_unsupported";
|
|
3474
|
+
discovery_not_advertised: "discovery_not_advertised";
|
|
3475
|
+
discovery_ambiguous: "discovery_ambiguous";
|
|
3476
|
+
settings_not_found: "settings_not_found";
|
|
3477
|
+
settings_invalid: "settings_invalid";
|
|
3478
|
+
sync_flow_unsupported: "sync_flow_unsupported";
|
|
3479
|
+
template_unsupported: "template_unsupported";
|
|
3480
|
+
provider_unavailable: "provider_unavailable";
|
|
3481
|
+
signing_unavailable: "signing_unavailable";
|
|
3482
|
+
}>;
|
|
3483
|
+
checkedAt: z.ZodString;
|
|
3315
3484
|
provider: z.ZodOptional<z.ZodObject<{
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3485
|
+
id: z.ZodString;
|
|
3486
|
+
name: z.ZodString;
|
|
3487
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3488
|
+
controlPanelUrl: z.ZodOptional<z.ZodString>;
|
|
3320
3489
|
}, z.core.$strip>>;
|
|
3490
|
+
gated: z.ZodOptional<z.ZodBoolean>;
|
|
3491
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3492
|
+
status: z.ZodLiteral<"unavailable">;
|
|
3493
|
+
reason: z.ZodEnum<{
|
|
3494
|
+
domain_not_bound: "domain_not_bound";
|
|
3495
|
+
configuration_unsupported: "configuration_unsupported";
|
|
3496
|
+
discovery_not_advertised: "discovery_not_advertised";
|
|
3497
|
+
discovery_ambiguous: "discovery_ambiguous";
|
|
3498
|
+
settings_not_found: "settings_not_found";
|
|
3499
|
+
settings_invalid: "settings_invalid";
|
|
3500
|
+
sync_flow_unsupported: "sync_flow_unsupported";
|
|
3501
|
+
template_unsupported: "template_unsupported";
|
|
3502
|
+
provider_unavailable: "provider_unavailable";
|
|
3503
|
+
signing_unavailable: "signing_unavailable";
|
|
3504
|
+
}>;
|
|
3321
3505
|
checkedAt: z.ZodString;
|
|
3322
|
-
|
|
3506
|
+
provider: z.ZodOptional<z.ZodObject<{
|
|
3507
|
+
id: z.ZodString;
|
|
3508
|
+
name: z.ZodString;
|
|
3509
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3510
|
+
controlPanelUrl: z.ZodOptional<z.ZodString>;
|
|
3511
|
+
}, z.core.$strip>>;
|
|
3512
|
+
}, z.core.$strip>], "status">;
|
|
3323
3513
|
}, z.core.$strip>;
|
|
3324
3514
|
export type DomainConnectDiscovery = z.infer<typeof domainConnectDiscoverySchema>;
|
|
3325
3515
|
export declare const domainProviderSnapshotRefreshResponseSchema: z.ZodObject<{
|
|
@@ -3358,8 +3548,8 @@ export declare const domainProviderSnapshotRefreshResponseSchema: z.ZodObject<{
|
|
|
3358
3548
|
code: z.ZodString;
|
|
3359
3549
|
severity: z.ZodEnum<{
|
|
3360
3550
|
info: "info";
|
|
3361
|
-
error: "error";
|
|
3362
3551
|
warning: "warning";
|
|
3552
|
+
error: "error";
|
|
3363
3553
|
}>;
|
|
3364
3554
|
message: z.ZodString;
|
|
3365
3555
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3430,8 +3620,8 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
|
|
|
3430
3620
|
code: z.ZodString;
|
|
3431
3621
|
severity: z.ZodEnum<{
|
|
3432
3622
|
info: "info";
|
|
3433
|
-
error: "error";
|
|
3434
3623
|
warning: "warning";
|
|
3624
|
+
error: "error";
|
|
3435
3625
|
}>;
|
|
3436
3626
|
message: z.ZodString;
|
|
3437
3627
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3484,13 +3674,13 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
|
|
|
3484
3674
|
code: z.ZodString;
|
|
3485
3675
|
severity: z.ZodEnum<{
|
|
3486
3676
|
info: "info";
|
|
3487
|
-
error: "error";
|
|
3488
3677
|
warning: "warning";
|
|
3678
|
+
error: "error";
|
|
3489
3679
|
}>;
|
|
3490
3680
|
painLevel: z.ZodEnum<{
|
|
3491
3681
|
info: "info";
|
|
3492
|
-
needs_attention: "needs_attention";
|
|
3493
3682
|
blocked: "blocked";
|
|
3683
|
+
needs_attention: "needs_attention";
|
|
3494
3684
|
broken: "broken";
|
|
3495
3685
|
dangerous: "dangerous";
|
|
3496
3686
|
}>;
|
|
@@ -3519,8 +3709,8 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
|
|
|
3519
3709
|
status: z.ZodEnum<{
|
|
3520
3710
|
active: "active";
|
|
3521
3711
|
running: "running";
|
|
3522
|
-
waiting: "waiting";
|
|
3523
3712
|
resolved: "resolved";
|
|
3713
|
+
waiting: "waiting";
|
|
3524
3714
|
dismissed: "dismissed";
|
|
3525
3715
|
}>;
|
|
3526
3716
|
summary: z.ZodString;
|
|
@@ -3631,8 +3821,8 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
|
|
|
3631
3821
|
code: z.ZodString;
|
|
3632
3822
|
severity: z.ZodEnum<{
|
|
3633
3823
|
info: "info";
|
|
3634
|
-
error: "error";
|
|
3635
3824
|
warning: "warning";
|
|
3825
|
+
error: "error";
|
|
3636
3826
|
}>;
|
|
3637
3827
|
message: z.ZodString;
|
|
3638
3828
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3685,13 +3875,13 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
|
|
|
3685
3875
|
code: z.ZodString;
|
|
3686
3876
|
severity: z.ZodEnum<{
|
|
3687
3877
|
info: "info";
|
|
3688
|
-
error: "error";
|
|
3689
3878
|
warning: "warning";
|
|
3879
|
+
error: "error";
|
|
3690
3880
|
}>;
|
|
3691
3881
|
painLevel: z.ZodEnum<{
|
|
3692
3882
|
info: "info";
|
|
3693
|
-
needs_attention: "needs_attention";
|
|
3694
3883
|
blocked: "blocked";
|
|
3884
|
+
needs_attention: "needs_attention";
|
|
3695
3885
|
broken: "broken";
|
|
3696
3886
|
dangerous: "dangerous";
|
|
3697
3887
|
}>;
|
|
@@ -3720,8 +3910,8 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
|
|
|
3720
3910
|
status: z.ZodEnum<{
|
|
3721
3911
|
active: "active";
|
|
3722
3912
|
running: "running";
|
|
3723
|
-
waiting: "waiting";
|
|
3724
3913
|
resolved: "resolved";
|
|
3914
|
+
waiting: "waiting";
|
|
3725
3915
|
dismissed: "dismissed";
|
|
3726
3916
|
}>;
|
|
3727
3917
|
summary: z.ZodString;
|
|
@@ -3822,14 +4012,14 @@ export declare const domainActionSubjectFacetSchema: z.ZodEnum<{
|
|
|
3822
4012
|
export declare const domainActionStatusSchema: z.ZodEnum<{
|
|
3823
4013
|
open: "open";
|
|
3824
4014
|
failed: "failed";
|
|
4015
|
+
planned: "planned";
|
|
3825
4016
|
canceled: "canceled";
|
|
3826
4017
|
expired: "expired";
|
|
3827
4018
|
running: "running";
|
|
3828
|
-
observing: "observing";
|
|
3829
4019
|
blocked: "blocked";
|
|
4020
|
+
observing: "observing";
|
|
3830
4021
|
dismissed: "dismissed";
|
|
3831
4022
|
reconnect_required: "reconnect_required";
|
|
3832
|
-
planned: "planned";
|
|
3833
4023
|
waiting_for_user: "waiting_for_user";
|
|
3834
4024
|
ready_to_run: "ready_to_run";
|
|
3835
4025
|
complete: "complete";
|
|
@@ -3842,8 +4032,8 @@ export declare const domainActionOwnerSchema: z.ZodEnum<{
|
|
|
3842
4032
|
registrar: "registrar";
|
|
3843
4033
|
stattic: "stattic";
|
|
3844
4034
|
provider: "provider";
|
|
3845
|
-
user: "user";
|
|
3846
4035
|
team_admin: "team_admin";
|
|
4036
|
+
user: "user";
|
|
3847
4037
|
waiting: "waiting";
|
|
3848
4038
|
}>;
|
|
3849
4039
|
export declare const domainActionSchema: z.ZodObject<{
|
|
@@ -3875,14 +4065,14 @@ export declare const domainActionSchema: z.ZodObject<{
|
|
|
3875
4065
|
status: z.ZodEnum<{
|
|
3876
4066
|
open: "open";
|
|
3877
4067
|
failed: "failed";
|
|
4068
|
+
planned: "planned";
|
|
3878
4069
|
canceled: "canceled";
|
|
3879
4070
|
expired: "expired";
|
|
3880
4071
|
running: "running";
|
|
3881
|
-
observing: "observing";
|
|
3882
4072
|
blocked: "blocked";
|
|
4073
|
+
observing: "observing";
|
|
3883
4074
|
dismissed: "dismissed";
|
|
3884
4075
|
reconnect_required: "reconnect_required";
|
|
3885
|
-
planned: "planned";
|
|
3886
4076
|
waiting_for_user: "waiting_for_user";
|
|
3887
4077
|
ready_to_run: "ready_to_run";
|
|
3888
4078
|
complete: "complete";
|
|
@@ -3895,8 +4085,8 @@ export declare const domainActionSchema: z.ZodObject<{
|
|
|
3895
4085
|
registrar: "registrar";
|
|
3896
4086
|
stattic: "stattic";
|
|
3897
4087
|
provider: "provider";
|
|
3898
|
-
user: "user";
|
|
3899
4088
|
team_admin: "team_admin";
|
|
4089
|
+
user: "user";
|
|
3900
4090
|
waiting: "waiting";
|
|
3901
4091
|
}>;
|
|
3902
4092
|
desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -3939,14 +4129,14 @@ export declare const domainActionListResponseSchema: z.ZodObject<{
|
|
|
3939
4129
|
status: z.ZodEnum<{
|
|
3940
4130
|
open: "open";
|
|
3941
4131
|
failed: "failed";
|
|
4132
|
+
planned: "planned";
|
|
3942
4133
|
canceled: "canceled";
|
|
3943
4134
|
expired: "expired";
|
|
3944
4135
|
running: "running";
|
|
3945
|
-
observing: "observing";
|
|
3946
4136
|
blocked: "blocked";
|
|
4137
|
+
observing: "observing";
|
|
3947
4138
|
dismissed: "dismissed";
|
|
3948
4139
|
reconnect_required: "reconnect_required";
|
|
3949
|
-
planned: "planned";
|
|
3950
4140
|
waiting_for_user: "waiting_for_user";
|
|
3951
4141
|
ready_to_run: "ready_to_run";
|
|
3952
4142
|
complete: "complete";
|
|
@@ -3959,8 +4149,8 @@ export declare const domainActionListResponseSchema: z.ZodObject<{
|
|
|
3959
4149
|
registrar: "registrar";
|
|
3960
4150
|
stattic: "stattic";
|
|
3961
4151
|
provider: "provider";
|
|
3962
|
-
user: "user";
|
|
3963
4152
|
team_admin: "team_admin";
|
|
4153
|
+
user: "user";
|
|
3964
4154
|
waiting: "waiting";
|
|
3965
4155
|
}>;
|
|
3966
4156
|
desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -3984,14 +4174,14 @@ export declare const domainActionListQuerySchema: z.ZodObject<{
|
|
|
3984
4174
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3985
4175
|
open: "open";
|
|
3986
4176
|
failed: "failed";
|
|
4177
|
+
planned: "planned";
|
|
3987
4178
|
canceled: "canceled";
|
|
3988
4179
|
expired: "expired";
|
|
3989
4180
|
running: "running";
|
|
3990
|
-
observing: "observing";
|
|
3991
4181
|
blocked: "blocked";
|
|
4182
|
+
observing: "observing";
|
|
3992
4183
|
dismissed: "dismissed";
|
|
3993
4184
|
reconnect_required: "reconnect_required";
|
|
3994
|
-
planned: "planned";
|
|
3995
4185
|
waiting_for_user: "waiting_for_user";
|
|
3996
4186
|
ready_to_run: "ready_to_run";
|
|
3997
4187
|
complete: "complete";
|
|
@@ -4027,8 +4217,8 @@ export declare const domainActionPreviewRequestSchema: z.ZodObject<{
|
|
|
4027
4217
|
registrar: "registrar";
|
|
4028
4218
|
stattic: "stattic";
|
|
4029
4219
|
provider: "provider";
|
|
4030
|
-
user: "user";
|
|
4031
4220
|
team_admin: "team_admin";
|
|
4221
|
+
user: "user";
|
|
4032
4222
|
waiting: "waiting";
|
|
4033
4223
|
}>;
|
|
4034
4224
|
desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -4065,8 +4255,8 @@ export declare const domainActionCreateRequestSchema: z.ZodObject<{
|
|
|
4065
4255
|
registrar: "registrar";
|
|
4066
4256
|
stattic: "stattic";
|
|
4067
4257
|
provider: "provider";
|
|
4068
|
-
user: "user";
|
|
4069
4258
|
team_admin: "team_admin";
|
|
4259
|
+
user: "user";
|
|
4070
4260
|
waiting: "waiting";
|
|
4071
4261
|
}>;
|
|
4072
4262
|
desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -4107,14 +4297,14 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
|
|
|
4107
4297
|
status: z.ZodEnum<{
|
|
4108
4298
|
open: "open";
|
|
4109
4299
|
failed: "failed";
|
|
4300
|
+
planned: "planned";
|
|
4110
4301
|
canceled: "canceled";
|
|
4111
4302
|
expired: "expired";
|
|
4112
4303
|
running: "running";
|
|
4113
|
-
observing: "observing";
|
|
4114
4304
|
blocked: "blocked";
|
|
4305
|
+
observing: "observing";
|
|
4115
4306
|
dismissed: "dismissed";
|
|
4116
4307
|
reconnect_required: "reconnect_required";
|
|
4117
|
-
planned: "planned";
|
|
4118
4308
|
waiting_for_user: "waiting_for_user";
|
|
4119
4309
|
ready_to_run: "ready_to_run";
|
|
4120
4310
|
complete: "complete";
|
|
@@ -4127,8 +4317,8 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
|
|
|
4127
4317
|
registrar: "registrar";
|
|
4128
4318
|
stattic: "stattic";
|
|
4129
4319
|
provider: "provider";
|
|
4130
|
-
user: "user";
|
|
4131
4320
|
team_admin: "team_admin";
|
|
4321
|
+
user: "user";
|
|
4132
4322
|
waiting: "waiting";
|
|
4133
4323
|
}>;
|
|
4134
4324
|
desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -4164,8 +4354,8 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
|
|
|
4164
4354
|
code: z.ZodString;
|
|
4165
4355
|
severity: z.ZodEnum<{
|
|
4166
4356
|
info: "info";
|
|
4167
|
-
error: "error";
|
|
4168
4357
|
warning: "warning";
|
|
4358
|
+
error: "error";
|
|
4169
4359
|
}>;
|
|
4170
4360
|
message: z.ZodString;
|
|
4171
4361
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4189,8 +4379,8 @@ export declare const domainDnsRecordSnapshotMetadataSchema: z.ZodObject<{
|
|
|
4189
4379
|
fresh: "fresh";
|
|
4190
4380
|
stale: "stale";
|
|
4191
4381
|
refresh_failed: "refresh_failed";
|
|
4192
|
-
refreshing: "refreshing";
|
|
4193
4382
|
provider_unavailable: "provider_unavailable";
|
|
4383
|
+
refreshing: "refreshing";
|
|
4194
4384
|
}>;
|
|
4195
4385
|
fetchedAt: z.ZodNullable<z.ZodString>;
|
|
4196
4386
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
@@ -4255,8 +4445,8 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
4255
4445
|
fresh: "fresh";
|
|
4256
4446
|
stale: "stale";
|
|
4257
4447
|
refresh_failed: "refresh_failed";
|
|
4258
|
-
refreshing: "refreshing";
|
|
4259
4448
|
provider_unavailable: "provider_unavailable";
|
|
4449
|
+
refreshing: "refreshing";
|
|
4260
4450
|
}>;
|
|
4261
4451
|
fetchedAt: z.ZodNullable<z.ZodString>;
|
|
4262
4452
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
@@ -4494,8 +4684,8 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
4494
4684
|
code: z.ZodString;
|
|
4495
4685
|
severity: z.ZodEnum<{
|
|
4496
4686
|
info: "info";
|
|
4497
|
-
error: "error";
|
|
4498
4687
|
warning: "warning";
|
|
4688
|
+
error: "error";
|
|
4499
4689
|
}>;
|
|
4500
4690
|
message: z.ZodString;
|
|
4501
4691
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4643,7 +4833,7 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
4643
4833
|
};
|
|
4644
4834
|
diagnostics: {
|
|
4645
4835
|
code: string;
|
|
4646
|
-
severity: "info" | "
|
|
4836
|
+
severity: "info" | "warning" | "error";
|
|
4647
4837
|
message: string;
|
|
4648
4838
|
path?: string | null | undefined;
|
|
4649
4839
|
provider?: "registrar" | "infra" | "dns" | "runtime" | null | undefined;
|
|
@@ -4784,7 +4974,7 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
4784
4974
|
};
|
|
4785
4975
|
diagnostics: {
|
|
4786
4976
|
code: string;
|
|
4787
|
-
severity: "info" | "
|
|
4977
|
+
severity: "info" | "warning" | "error";
|
|
4788
4978
|
message: string;
|
|
4789
4979
|
path?: string | null | undefined;
|
|
4790
4980
|
provider?: "registrar" | "infra" | "dns" | "runtime" | null | undefined;
|
|
@@ -5008,8 +5198,8 @@ export declare const domainDiagnosticsResponseSchema: z.ZodObject<{
|
|
|
5008
5198
|
code: z.ZodString;
|
|
5009
5199
|
severity: z.ZodEnum<{
|
|
5010
5200
|
info: "info";
|
|
5011
|
-
error: "error";
|
|
5012
5201
|
warning: "warning";
|
|
5202
|
+
error: "error";
|
|
5013
5203
|
}>;
|
|
5014
5204
|
message: z.ZodString;
|
|
5015
5205
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5096,4 +5286,211 @@ export declare const domainDiagnosticsResponseSchema: z.ZodObject<{
|
|
|
5096
5286
|
}, z.core.$strip>;
|
|
5097
5287
|
}, z.core.$strip>>;
|
|
5098
5288
|
}, z.core.$strip>;
|
|
5289
|
+
export declare const domainSslRetrySchema: z.ZodObject<{
|
|
5290
|
+
requestedAt: z.ZodString;
|
|
5291
|
+
retries: z.ZodArray<z.ZodObject<{
|
|
5292
|
+
hostname: z.ZodString;
|
|
5293
|
+
queued: z.ZodBoolean;
|
|
5294
|
+
error: z.ZodNullable<z.ZodEnum<{
|
|
5295
|
+
not_hosted_here: "not_hosted_here";
|
|
5296
|
+
}>>;
|
|
5297
|
+
}, z.core.$strip>>;
|
|
5298
|
+
hostnameDiagnostics: z.ZodArray<z.ZodObject<{
|
|
5299
|
+
hostname: z.ZodString;
|
|
5300
|
+
purpose: z.ZodEnum<{
|
|
5301
|
+
www: "www";
|
|
5302
|
+
apex: "apex";
|
|
5303
|
+
configured: "configured";
|
|
5304
|
+
}>;
|
|
5305
|
+
isConfiguredHostname: z.ZodBoolean;
|
|
5306
|
+
providerIps: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5307
|
+
verificationCode: z.ZodNullable<z.ZodString>;
|
|
5308
|
+
dnsInstructions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5309
|
+
type: z.ZodEnum<{
|
|
5310
|
+
A: "A";
|
|
5311
|
+
AAAA: "AAAA";
|
|
5312
|
+
CNAME: "CNAME";
|
|
5313
|
+
TXT: "TXT";
|
|
5314
|
+
ALIAS: "ALIAS";
|
|
5315
|
+
}>;
|
|
5316
|
+
name: z.ZodString;
|
|
5317
|
+
value: z.ZodString;
|
|
5318
|
+
ttl: z.ZodOptional<z.ZodNumber>;
|
|
5319
|
+
purpose: z.ZodEnum<{
|
|
5320
|
+
verification: "verification";
|
|
5321
|
+
routing: "routing";
|
|
5322
|
+
ssl: "ssl";
|
|
5323
|
+
}>;
|
|
5324
|
+
}, z.core.$strip>>>;
|
|
5325
|
+
dns: z.ZodObject<{
|
|
5326
|
+
observedAt: z.ZodString;
|
|
5327
|
+
expectedTxtValue: z.ZodNullable<z.ZodString>;
|
|
5328
|
+
pointsToProvider: z.ZodBoolean;
|
|
5329
|
+
proxyDetected: z.ZodNullable<z.ZodBoolean>;
|
|
5330
|
+
txtVerified: z.ZodNullable<z.ZodBoolean>;
|
|
5331
|
+
hasAaaaRecords: z.ZodBoolean;
|
|
5332
|
+
hasCaaRecords: z.ZodBoolean;
|
|
5333
|
+
records: z.ZodObject<{
|
|
5334
|
+
a: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5335
|
+
aaaa: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5336
|
+
caa: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5337
|
+
cname: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5338
|
+
mx: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5339
|
+
txt: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5340
|
+
}, z.core.$strip>;
|
|
5341
|
+
byResolver: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5342
|
+
resolver: z.ZodString;
|
|
5343
|
+
a: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5344
|
+
aaaa: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5345
|
+
caa: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5346
|
+
cname: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5347
|
+
mx: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5348
|
+
txt: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5349
|
+
}, z.core.$strip>>>;
|
|
5350
|
+
}, z.core.$strip>;
|
|
5351
|
+
ssl: z.ZodObject<{
|
|
5352
|
+
status: z.ZodEnum<{
|
|
5353
|
+
active: "active";
|
|
5354
|
+
pending: "pending";
|
|
5355
|
+
missing: "missing";
|
|
5356
|
+
broken: "broken";
|
|
5357
|
+
}>;
|
|
5358
|
+
canRetry: z.ZodBoolean;
|
|
5359
|
+
certificateId: z.ZodNullable<z.ZodString>;
|
|
5360
|
+
validationExpiration: z.ZodNullable<z.ZodString>;
|
|
5361
|
+
authzUri: z.ZodNullable<z.ZodString>;
|
|
5362
|
+
brokenRecord: z.ZodNullable<z.ZodObject<{
|
|
5363
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
5364
|
+
lastError: z.ZodNullable<z.ZodString>;
|
|
5365
|
+
retryDate: z.ZodNullable<z.ZodString>;
|
|
5366
|
+
failCount: z.ZodNullable<z.ZodNumber>;
|
|
5367
|
+
}, z.core.$strip>>;
|
|
5368
|
+
}, z.core.$strip>;
|
|
5369
|
+
}, z.core.$strip>>;
|
|
5370
|
+
}, z.core.$strip>;
|
|
5371
|
+
export declare const domainSslRetryResponseSchema: z.ZodObject<{
|
|
5372
|
+
data: z.ZodObject<{
|
|
5373
|
+
requestedAt: z.ZodString;
|
|
5374
|
+
retries: z.ZodArray<z.ZodObject<{
|
|
5375
|
+
hostname: z.ZodString;
|
|
5376
|
+
queued: z.ZodBoolean;
|
|
5377
|
+
error: z.ZodNullable<z.ZodEnum<{
|
|
5378
|
+
not_hosted_here: "not_hosted_here";
|
|
5379
|
+
}>>;
|
|
5380
|
+
}, z.core.$strip>>;
|
|
5381
|
+
hostnameDiagnostics: z.ZodArray<z.ZodObject<{
|
|
5382
|
+
hostname: z.ZodString;
|
|
5383
|
+
purpose: z.ZodEnum<{
|
|
5384
|
+
www: "www";
|
|
5385
|
+
apex: "apex";
|
|
5386
|
+
configured: "configured";
|
|
5387
|
+
}>;
|
|
5388
|
+
isConfiguredHostname: z.ZodBoolean;
|
|
5389
|
+
providerIps: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5390
|
+
verificationCode: z.ZodNullable<z.ZodString>;
|
|
5391
|
+
dnsInstructions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5392
|
+
type: z.ZodEnum<{
|
|
5393
|
+
A: "A";
|
|
5394
|
+
AAAA: "AAAA";
|
|
5395
|
+
CNAME: "CNAME";
|
|
5396
|
+
TXT: "TXT";
|
|
5397
|
+
ALIAS: "ALIAS";
|
|
5398
|
+
}>;
|
|
5399
|
+
name: z.ZodString;
|
|
5400
|
+
value: z.ZodString;
|
|
5401
|
+
ttl: z.ZodOptional<z.ZodNumber>;
|
|
5402
|
+
purpose: z.ZodEnum<{
|
|
5403
|
+
verification: "verification";
|
|
5404
|
+
routing: "routing";
|
|
5405
|
+
ssl: "ssl";
|
|
5406
|
+
}>;
|
|
5407
|
+
}, z.core.$strip>>>;
|
|
5408
|
+
dns: z.ZodObject<{
|
|
5409
|
+
observedAt: z.ZodString;
|
|
5410
|
+
expectedTxtValue: z.ZodNullable<z.ZodString>;
|
|
5411
|
+
pointsToProvider: z.ZodBoolean;
|
|
5412
|
+
proxyDetected: z.ZodNullable<z.ZodBoolean>;
|
|
5413
|
+
txtVerified: z.ZodNullable<z.ZodBoolean>;
|
|
5414
|
+
hasAaaaRecords: z.ZodBoolean;
|
|
5415
|
+
hasCaaRecords: z.ZodBoolean;
|
|
5416
|
+
records: z.ZodObject<{
|
|
5417
|
+
a: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5418
|
+
aaaa: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5419
|
+
caa: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5420
|
+
cname: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5421
|
+
mx: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5422
|
+
txt: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5423
|
+
}, z.core.$strip>;
|
|
5424
|
+
byResolver: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5425
|
+
resolver: z.ZodString;
|
|
5426
|
+
a: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5427
|
+
aaaa: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5428
|
+
caa: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5429
|
+
cname: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5430
|
+
mx: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5431
|
+
txt: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5432
|
+
}, z.core.$strip>>>;
|
|
5433
|
+
}, z.core.$strip>;
|
|
5434
|
+
ssl: z.ZodObject<{
|
|
5435
|
+
status: z.ZodEnum<{
|
|
5436
|
+
active: "active";
|
|
5437
|
+
pending: "pending";
|
|
5438
|
+
missing: "missing";
|
|
5439
|
+
broken: "broken";
|
|
5440
|
+
}>;
|
|
5441
|
+
canRetry: z.ZodBoolean;
|
|
5442
|
+
certificateId: z.ZodNullable<z.ZodString>;
|
|
5443
|
+
validationExpiration: z.ZodNullable<z.ZodString>;
|
|
5444
|
+
authzUri: z.ZodNullable<z.ZodString>;
|
|
5445
|
+
brokenRecord: z.ZodNullable<z.ZodObject<{
|
|
5446
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
5447
|
+
lastError: z.ZodNullable<z.ZodString>;
|
|
5448
|
+
retryDate: z.ZodNullable<z.ZodString>;
|
|
5449
|
+
failCount: z.ZodNullable<z.ZodNumber>;
|
|
5450
|
+
}, z.core.$strip>>;
|
|
5451
|
+
}, z.core.$strip>;
|
|
5452
|
+
}, z.core.$strip>>;
|
|
5453
|
+
}, z.core.$strip>;
|
|
5454
|
+
operation: z.ZodNullable<z.ZodObject<{
|
|
5455
|
+
id: z.ZodString;
|
|
5456
|
+
kind: z.ZodString;
|
|
5457
|
+
status: z.ZodEnum<{
|
|
5458
|
+
failed: "failed";
|
|
5459
|
+
canceled: "canceled";
|
|
5460
|
+
queued: "queued";
|
|
5461
|
+
running: "running";
|
|
5462
|
+
succeeded: "succeeded";
|
|
5463
|
+
}>;
|
|
5464
|
+
resources: z.ZodArray<z.ZodObject<{
|
|
5465
|
+
type: z.ZodString;
|
|
5466
|
+
id: z.ZodString;
|
|
5467
|
+
}, z.core.$strip>>;
|
|
5468
|
+
progress: z.ZodOptional<z.ZodObject<{
|
|
5469
|
+
total: z.ZodNumber;
|
|
5470
|
+
completed: z.ZodNumber;
|
|
5471
|
+
failed: z.ZodNumber;
|
|
5472
|
+
}, z.core.$strip>>;
|
|
5473
|
+
diagnostics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5474
|
+
code: z.ZodString;
|
|
5475
|
+
severity: z.ZodEnum<{
|
|
5476
|
+
info: "info";
|
|
5477
|
+
warning: "warning";
|
|
5478
|
+
error: "error";
|
|
5479
|
+
}>;
|
|
5480
|
+
message: z.ZodString;
|
|
5481
|
+
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5482
|
+
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5483
|
+
registrar: "registrar";
|
|
5484
|
+
infra: "infra";
|
|
5485
|
+
dns: "dns";
|
|
5486
|
+
runtime: "runtime";
|
|
5487
|
+
}>>>;
|
|
5488
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5489
|
+
fix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5490
|
+
retryable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
5491
|
+
}, z.core.$strip>>>;
|
|
5492
|
+
createdAt: z.ZodString;
|
|
5493
|
+
finishedAt: z.ZodOptional<z.ZodString>;
|
|
5494
|
+
}, z.core.$strip>>;
|
|
5495
|
+
}, z.core.$strip>;
|
|
5099
5496
|
export {};
|