@spacefast/common 0.0.3 → 0.0.5
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/contracts/access.d.ts +4 -4
- package/dist/contracts/activity.d.ts +4 -4
- package/dist/contracts/annotations.d.ts +1 -1
- package/dist/contracts/api-keys.d.ts +6 -6
- package/dist/contracts/archives.d.ts +14 -14
- package/dist/contracts/billing.d.ts +21 -21
- package/dist/contracts/builds.d.ts +8 -8
- package/dist/contracts/channels.d.ts +2 -2
- package/dist/contracts/common.d.ts +5 -5
- package/dist/contracts/continuation.d.ts +66 -0
- package/dist/contracts/continuation.js +91 -0
- package/dist/contracts/deployments.d.ts +18 -18
- package/dist/contracts/device-auth.d.ts +6 -6
- package/dist/contracts/domains.d.ts +247 -247
- package/dist/contracts/enums.d.ts +2 -2
- package/dist/contracts/error-code-meta.d.ts +12 -0
- package/dist/contracts/error-code-meta.js +3 -0
- package/dist/contracts/error-codes.d.ts +1 -1
- package/dist/contracts/error-codes.js +3 -0
- package/dist/contracts/events.d.ts +12 -12
- package/dist/contracts/features.d.ts +17 -17
- package/dist/contracts/git.d.ts +3 -3
- package/dist/contracts/internal.d.ts +3 -3
- package/dist/contracts/mcp.d.ts +34 -34
- package/dist/contracts/me.d.ts +8 -8
- package/dist/contracts/operations.d.ts +2 -2
- package/dist/contracts/plan-policy.d.ts +4 -4
- package/dist/contracts/platform.d.ts +3 -3
- package/dist/contracts/repository-connections.d.ts +5 -5
- package/dist/contracts/resources.d.ts +15 -15
- package/dist/contracts/runtime-api.d.ts +4 -4
- package/dist/contracts/sites.d.ts +26 -26
- package/dist/contracts/spaces.d.ts +179 -89
- package/dist/contracts/spaces.js +57 -3
- package/dist/contracts/superadmin-emails.d.ts +3 -3
- package/dist/contracts/superadmin-queues.d.ts +58 -58
- package/dist/contracts/superadmin-spaces.d.ts +275 -9
- package/dist/contracts/superadmin-spaces.js +24 -0
- package/dist/contracts/superadmin-tenants.d.ts +8 -8
- package/dist/contracts/superadmin.d.ts +12 -12
- package/dist/contracts/tags.d.ts +38 -38
- package/dist/contracts/teams.d.ts +26 -8
- package/dist/contracts/teams.js +20 -0
- package/dist/contracts/transfers.d.ts +9 -9
- package/dist/contracts/variables.d.ts +14 -14
- package/dist/contracts/webhooks.d.ts +4 -4
- package/dist/contracts/zero.d.ts +8 -8
- package/dist/docs/agent-prose.js +8 -4
- package/dist/docs/agent-setup.js +3 -2
- package/dist/docs/error-docs.js +12 -0
- package/dist/utils/query-keys.d.ts +2 -2
- package/dist/utils/static-runtime-policy.d.ts +21 -0
- package/dist/utils/static-runtime-policy.js +119 -3
- package/package.json +1 -1
|
@@ -6,8 +6,8 @@ export declare const domainRegistrarFacetSchema: z.ZodObject<{
|
|
|
6
6
|
}>;
|
|
7
7
|
provider: z.ZodOptional<z.ZodString>;
|
|
8
8
|
status: z.ZodOptional<z.ZodEnum<{
|
|
9
|
-
expired: "expired";
|
|
10
9
|
active: "active";
|
|
10
|
+
expired: "expired";
|
|
11
11
|
pending_purchase: "pending_purchase";
|
|
12
12
|
pending_transfer_in: "pending_transfer_in";
|
|
13
13
|
expiring: "expiring";
|
|
@@ -24,10 +24,10 @@ export declare const domainDnsFacetSchema: z.ZodObject<{
|
|
|
24
24
|
stattic: "stattic";
|
|
25
25
|
}>;
|
|
26
26
|
managementKind: z.ZodOptional<z.ZodEnum<{
|
|
27
|
+
stattic_nameservers: "stattic_nameservers";
|
|
28
|
+
registrar_dns: "registrar_dns";
|
|
27
29
|
unmanaged_external: "unmanaged_external";
|
|
28
30
|
connected_provider: "connected_provider";
|
|
29
|
-
registrar_dns: "registrar_dns";
|
|
30
|
-
stattic_nameservers: "stattic_nameservers";
|
|
31
31
|
}>>;
|
|
32
32
|
dnsMode: z.ZodOptional<z.ZodEnum<{
|
|
33
33
|
authoritative: "authoritative";
|
|
@@ -52,10 +52,10 @@ export declare const domainDnsFacetSchema: z.ZodObject<{
|
|
|
52
52
|
kind: z.ZodString;
|
|
53
53
|
status: z.ZodEnum<{
|
|
54
54
|
failed: "failed";
|
|
55
|
+
canceled: "canceled";
|
|
55
56
|
queued: "queued";
|
|
56
57
|
running: "running";
|
|
57
58
|
succeeded: "succeeded";
|
|
58
|
-
canceled: "canceled";
|
|
59
59
|
observing: "observing";
|
|
60
60
|
}>;
|
|
61
61
|
updatedAt: z.ZodString;
|
|
@@ -97,9 +97,9 @@ export declare const domainVerificationSchema: z.ZodObject<{
|
|
|
97
97
|
message: z.ZodString;
|
|
98
98
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
99
99
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
100
|
+
registrar: "registrar";
|
|
100
101
|
wpcloud: "wpcloud";
|
|
101
102
|
dns: "dns";
|
|
102
|
-
registrar: "registrar";
|
|
103
103
|
runtime: "runtime";
|
|
104
104
|
}>>>;
|
|
105
105
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -123,8 +123,8 @@ export declare const domainHintSchema: z.ZodObject<{
|
|
|
123
123
|
dangerous: "dangerous";
|
|
124
124
|
}>;
|
|
125
125
|
subjectFacet: z.ZodEnum<{
|
|
126
|
-
registrar: "registrar";
|
|
127
126
|
email: "email";
|
|
127
|
+
registrar: "registrar";
|
|
128
128
|
dns_zone: "dns_zone";
|
|
129
129
|
hosting_binding: "hosting_binding";
|
|
130
130
|
forwarding: "forwarding";
|
|
@@ -137,18 +137,18 @@ export declare const domainHintSchema: z.ZodObject<{
|
|
|
137
137
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
138
138
|
}, z.core.$strip>;
|
|
139
139
|
owner: z.ZodEnum<{
|
|
140
|
+
support: "support";
|
|
140
141
|
registrar: "registrar";
|
|
141
|
-
provider: "provider";
|
|
142
|
-
user: "user";
|
|
143
142
|
stattic: "stattic";
|
|
144
|
-
support: "support";
|
|
145
143
|
waiting: "waiting";
|
|
144
|
+
provider: "provider";
|
|
145
|
+
user: "user";
|
|
146
146
|
}>;
|
|
147
147
|
status: z.ZodEnum<{
|
|
148
|
-
running: "running";
|
|
149
|
-
resolved: "resolved";
|
|
150
148
|
active: "active";
|
|
149
|
+
running: "running";
|
|
151
150
|
waiting: "waiting";
|
|
151
|
+
resolved: "resolved";
|
|
152
152
|
dismissed: "dismissed";
|
|
153
153
|
}>;
|
|
154
154
|
summary: z.ZodString;
|
|
@@ -224,8 +224,8 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
224
224
|
principal: z.ZodObject<{
|
|
225
225
|
tenantId: z.ZodString;
|
|
226
226
|
principalType: z.ZodEnum<{
|
|
227
|
-
external: "external";
|
|
228
227
|
team: "team";
|
|
228
|
+
external: "external";
|
|
229
229
|
}>;
|
|
230
230
|
principalId: z.ZodString;
|
|
231
231
|
}, z.core.$strip>;
|
|
@@ -244,8 +244,8 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
244
244
|
}>;
|
|
245
245
|
provider: z.ZodOptional<z.ZodString>;
|
|
246
246
|
status: z.ZodOptional<z.ZodEnum<{
|
|
247
|
-
expired: "expired";
|
|
248
247
|
active: "active";
|
|
248
|
+
expired: "expired";
|
|
249
249
|
pending_purchase: "pending_purchase";
|
|
250
250
|
pending_transfer_in: "pending_transfer_in";
|
|
251
251
|
expiring: "expiring";
|
|
@@ -262,10 +262,10 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
262
262
|
stattic: "stattic";
|
|
263
263
|
}>;
|
|
264
264
|
managementKind: z.ZodOptional<z.ZodEnum<{
|
|
265
|
+
stattic_nameservers: "stattic_nameservers";
|
|
266
|
+
registrar_dns: "registrar_dns";
|
|
265
267
|
unmanaged_external: "unmanaged_external";
|
|
266
268
|
connected_provider: "connected_provider";
|
|
267
|
-
registrar_dns: "registrar_dns";
|
|
268
|
-
stattic_nameservers: "stattic_nameservers";
|
|
269
269
|
}>>;
|
|
270
270
|
dnsMode: z.ZodOptional<z.ZodEnum<{
|
|
271
271
|
authoritative: "authoritative";
|
|
@@ -290,10 +290,10 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
290
290
|
kind: z.ZodString;
|
|
291
291
|
status: z.ZodEnum<{
|
|
292
292
|
failed: "failed";
|
|
293
|
+
canceled: "canceled";
|
|
293
294
|
queued: "queued";
|
|
294
295
|
running: "running";
|
|
295
296
|
succeeded: "succeeded";
|
|
296
|
-
canceled: "canceled";
|
|
297
297
|
observing: "observing";
|
|
298
298
|
}>;
|
|
299
299
|
updatedAt: z.ZodString;
|
|
@@ -335,9 +335,9 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
335
335
|
message: z.ZodString;
|
|
336
336
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
337
337
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
338
|
+
registrar: "registrar";
|
|
338
339
|
wpcloud: "wpcloud";
|
|
339
340
|
dns: "dns";
|
|
340
|
-
registrar: "registrar";
|
|
341
341
|
runtime: "runtime";
|
|
342
342
|
}>>>;
|
|
343
343
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -361,8 +361,8 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
361
361
|
dangerous: "dangerous";
|
|
362
362
|
}>;
|
|
363
363
|
subjectFacet: z.ZodEnum<{
|
|
364
|
-
registrar: "registrar";
|
|
365
364
|
email: "email";
|
|
365
|
+
registrar: "registrar";
|
|
366
366
|
dns_zone: "dns_zone";
|
|
367
367
|
hosting_binding: "hosting_binding";
|
|
368
368
|
forwarding: "forwarding";
|
|
@@ -375,18 +375,18 @@ export declare const DomainSchema: z.ZodObject<{
|
|
|
375
375
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
376
376
|
}, z.core.$strip>;
|
|
377
377
|
owner: z.ZodEnum<{
|
|
378
|
+
support: "support";
|
|
378
379
|
registrar: "registrar";
|
|
379
|
-
provider: "provider";
|
|
380
|
-
user: "user";
|
|
381
380
|
stattic: "stattic";
|
|
382
|
-
support: "support";
|
|
383
381
|
waiting: "waiting";
|
|
382
|
+
provider: "provider";
|
|
383
|
+
user: "user";
|
|
384
384
|
}>;
|
|
385
385
|
status: z.ZodEnum<{
|
|
386
|
-
running: "running";
|
|
387
|
-
resolved: "resolved";
|
|
388
386
|
active: "active";
|
|
387
|
+
running: "running";
|
|
389
388
|
waiting: "waiting";
|
|
389
|
+
resolved: "resolved";
|
|
390
390
|
dismissed: "dismissed";
|
|
391
391
|
}>;
|
|
392
392
|
summary: z.ZodString;
|
|
@@ -471,8 +471,8 @@ export declare const domainListResponseSchema: z.ZodObject<{
|
|
|
471
471
|
principal: z.ZodObject<{
|
|
472
472
|
tenantId: z.ZodString;
|
|
473
473
|
principalType: z.ZodEnum<{
|
|
474
|
-
external: "external";
|
|
475
474
|
team: "team";
|
|
475
|
+
external: "external";
|
|
476
476
|
}>;
|
|
477
477
|
principalId: z.ZodString;
|
|
478
478
|
}, z.core.$strip>;
|
|
@@ -491,8 +491,8 @@ export declare const domainListResponseSchema: z.ZodObject<{
|
|
|
491
491
|
}>;
|
|
492
492
|
provider: z.ZodOptional<z.ZodString>;
|
|
493
493
|
status: z.ZodOptional<z.ZodEnum<{
|
|
494
|
-
expired: "expired";
|
|
495
494
|
active: "active";
|
|
495
|
+
expired: "expired";
|
|
496
496
|
pending_purchase: "pending_purchase";
|
|
497
497
|
pending_transfer_in: "pending_transfer_in";
|
|
498
498
|
expiring: "expiring";
|
|
@@ -509,10 +509,10 @@ export declare const domainListResponseSchema: z.ZodObject<{
|
|
|
509
509
|
stattic: "stattic";
|
|
510
510
|
}>;
|
|
511
511
|
managementKind: z.ZodOptional<z.ZodEnum<{
|
|
512
|
+
stattic_nameservers: "stattic_nameservers";
|
|
513
|
+
registrar_dns: "registrar_dns";
|
|
512
514
|
unmanaged_external: "unmanaged_external";
|
|
513
515
|
connected_provider: "connected_provider";
|
|
514
|
-
registrar_dns: "registrar_dns";
|
|
515
|
-
stattic_nameservers: "stattic_nameservers";
|
|
516
516
|
}>>;
|
|
517
517
|
dnsMode: z.ZodOptional<z.ZodEnum<{
|
|
518
518
|
authoritative: "authoritative";
|
|
@@ -537,10 +537,10 @@ export declare const domainListResponseSchema: z.ZodObject<{
|
|
|
537
537
|
kind: z.ZodString;
|
|
538
538
|
status: z.ZodEnum<{
|
|
539
539
|
failed: "failed";
|
|
540
|
+
canceled: "canceled";
|
|
540
541
|
queued: "queued";
|
|
541
542
|
running: "running";
|
|
542
543
|
succeeded: "succeeded";
|
|
543
|
-
canceled: "canceled";
|
|
544
544
|
observing: "observing";
|
|
545
545
|
}>;
|
|
546
546
|
updatedAt: z.ZodString;
|
|
@@ -582,9 +582,9 @@ export declare const domainListResponseSchema: z.ZodObject<{
|
|
|
582
582
|
message: z.ZodString;
|
|
583
583
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
584
584
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
585
|
+
registrar: "registrar";
|
|
585
586
|
wpcloud: "wpcloud";
|
|
586
587
|
dns: "dns";
|
|
587
|
-
registrar: "registrar";
|
|
588
588
|
runtime: "runtime";
|
|
589
589
|
}>>>;
|
|
590
590
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -608,8 +608,8 @@ export declare const domainListResponseSchema: z.ZodObject<{
|
|
|
608
608
|
dangerous: "dangerous";
|
|
609
609
|
}>;
|
|
610
610
|
subjectFacet: z.ZodEnum<{
|
|
611
|
-
registrar: "registrar";
|
|
612
611
|
email: "email";
|
|
612
|
+
registrar: "registrar";
|
|
613
613
|
dns_zone: "dns_zone";
|
|
614
614
|
hosting_binding: "hosting_binding";
|
|
615
615
|
forwarding: "forwarding";
|
|
@@ -622,18 +622,18 @@ export declare const domainListResponseSchema: z.ZodObject<{
|
|
|
622
622
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
623
623
|
}, z.core.$strip>;
|
|
624
624
|
owner: z.ZodEnum<{
|
|
625
|
+
support: "support";
|
|
625
626
|
registrar: "registrar";
|
|
626
|
-
provider: "provider";
|
|
627
|
-
user: "user";
|
|
628
627
|
stattic: "stattic";
|
|
629
|
-
support: "support";
|
|
630
628
|
waiting: "waiting";
|
|
629
|
+
provider: "provider";
|
|
630
|
+
user: "user";
|
|
631
631
|
}>;
|
|
632
632
|
status: z.ZodEnum<{
|
|
633
|
-
running: "running";
|
|
634
|
-
resolved: "resolved";
|
|
635
633
|
active: "active";
|
|
634
|
+
running: "running";
|
|
636
635
|
waiting: "waiting";
|
|
636
|
+
resolved: "resolved";
|
|
637
637
|
dismissed: "dismissed";
|
|
638
638
|
}>;
|
|
639
639
|
summary: z.ZodString;
|
|
@@ -716,8 +716,8 @@ export declare const spaceCustomDomainSchema: z.ZodObject<{
|
|
|
716
716
|
principal: z.ZodObject<{
|
|
717
717
|
tenantId: z.ZodString;
|
|
718
718
|
principalType: z.ZodEnum<{
|
|
719
|
-
external: "external";
|
|
720
719
|
team: "team";
|
|
720
|
+
external: "external";
|
|
721
721
|
}>;
|
|
722
722
|
principalId: z.ZodString;
|
|
723
723
|
}, z.core.$strip>;
|
|
@@ -736,8 +736,8 @@ export declare const spaceCustomDomainSchema: z.ZodObject<{
|
|
|
736
736
|
}>;
|
|
737
737
|
provider: z.ZodOptional<z.ZodString>;
|
|
738
738
|
status: z.ZodOptional<z.ZodEnum<{
|
|
739
|
-
expired: "expired";
|
|
740
739
|
active: "active";
|
|
740
|
+
expired: "expired";
|
|
741
741
|
pending_purchase: "pending_purchase";
|
|
742
742
|
pending_transfer_in: "pending_transfer_in";
|
|
743
743
|
expiring: "expiring";
|
|
@@ -754,10 +754,10 @@ export declare const spaceCustomDomainSchema: z.ZodObject<{
|
|
|
754
754
|
stattic: "stattic";
|
|
755
755
|
}>;
|
|
756
756
|
managementKind: z.ZodOptional<z.ZodEnum<{
|
|
757
|
+
stattic_nameservers: "stattic_nameservers";
|
|
758
|
+
registrar_dns: "registrar_dns";
|
|
757
759
|
unmanaged_external: "unmanaged_external";
|
|
758
760
|
connected_provider: "connected_provider";
|
|
759
|
-
registrar_dns: "registrar_dns";
|
|
760
|
-
stattic_nameservers: "stattic_nameservers";
|
|
761
761
|
}>>;
|
|
762
762
|
dnsMode: z.ZodOptional<z.ZodEnum<{
|
|
763
763
|
authoritative: "authoritative";
|
|
@@ -782,10 +782,10 @@ export declare const spaceCustomDomainSchema: z.ZodObject<{
|
|
|
782
782
|
kind: z.ZodString;
|
|
783
783
|
status: z.ZodEnum<{
|
|
784
784
|
failed: "failed";
|
|
785
|
+
canceled: "canceled";
|
|
785
786
|
queued: "queued";
|
|
786
787
|
running: "running";
|
|
787
788
|
succeeded: "succeeded";
|
|
788
|
-
canceled: "canceled";
|
|
789
789
|
observing: "observing";
|
|
790
790
|
}>;
|
|
791
791
|
updatedAt: z.ZodString;
|
|
@@ -827,9 +827,9 @@ export declare const spaceCustomDomainSchema: z.ZodObject<{
|
|
|
827
827
|
message: z.ZodString;
|
|
828
828
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
829
829
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
830
|
+
registrar: "registrar";
|
|
830
831
|
wpcloud: "wpcloud";
|
|
831
832
|
dns: "dns";
|
|
832
|
-
registrar: "registrar";
|
|
833
833
|
runtime: "runtime";
|
|
834
834
|
}>>>;
|
|
835
835
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -853,8 +853,8 @@ export declare const spaceCustomDomainSchema: z.ZodObject<{
|
|
|
853
853
|
dangerous: "dangerous";
|
|
854
854
|
}>;
|
|
855
855
|
subjectFacet: z.ZodEnum<{
|
|
856
|
-
registrar: "registrar";
|
|
857
856
|
email: "email";
|
|
857
|
+
registrar: "registrar";
|
|
858
858
|
dns_zone: "dns_zone";
|
|
859
859
|
hosting_binding: "hosting_binding";
|
|
860
860
|
forwarding: "forwarding";
|
|
@@ -867,18 +867,18 @@ export declare const spaceCustomDomainSchema: z.ZodObject<{
|
|
|
867
867
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
868
868
|
}, z.core.$strip>;
|
|
869
869
|
owner: z.ZodEnum<{
|
|
870
|
+
support: "support";
|
|
870
871
|
registrar: "registrar";
|
|
871
|
-
provider: "provider";
|
|
872
|
-
user: "user";
|
|
873
872
|
stattic: "stattic";
|
|
874
|
-
support: "support";
|
|
875
873
|
waiting: "waiting";
|
|
874
|
+
provider: "provider";
|
|
875
|
+
user: "user";
|
|
876
876
|
}>;
|
|
877
877
|
status: z.ZodEnum<{
|
|
878
|
-
running: "running";
|
|
879
|
-
resolved: "resolved";
|
|
880
878
|
active: "active";
|
|
879
|
+
running: "running";
|
|
881
880
|
waiting: "waiting";
|
|
881
|
+
resolved: "resolved";
|
|
882
882
|
dismissed: "dismissed";
|
|
883
883
|
}>;
|
|
884
884
|
summary: z.ZodString;
|
|
@@ -996,9 +996,9 @@ export declare const spaceManagedDomainSchema: z.ZodObject<{
|
|
|
996
996
|
message: z.ZodString;
|
|
997
997
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
998
998
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
999
|
+
registrar: "registrar";
|
|
999
1000
|
wpcloud: "wpcloud";
|
|
1000
1001
|
dns: "dns";
|
|
1001
|
-
registrar: "registrar";
|
|
1002
1002
|
runtime: "runtime";
|
|
1003
1003
|
}>>>;
|
|
1004
1004
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1051,9 +1051,9 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1051
1051
|
message: z.ZodString;
|
|
1052
1052
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1053
1053
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1054
|
+
registrar: "registrar";
|
|
1054
1055
|
wpcloud: "wpcloud";
|
|
1055
1056
|
dns: "dns";
|
|
1056
|
-
registrar: "registrar";
|
|
1057
1057
|
runtime: "runtime";
|
|
1058
1058
|
}>>>;
|
|
1059
1059
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1070,8 +1070,8 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1070
1070
|
principal: z.ZodObject<{
|
|
1071
1071
|
tenantId: z.ZodString;
|
|
1072
1072
|
principalType: z.ZodEnum<{
|
|
1073
|
-
external: "external";
|
|
1074
1073
|
team: "team";
|
|
1074
|
+
external: "external";
|
|
1075
1075
|
}>;
|
|
1076
1076
|
principalId: z.ZodString;
|
|
1077
1077
|
}, z.core.$strip>;
|
|
@@ -1090,8 +1090,8 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1090
1090
|
}>;
|
|
1091
1091
|
provider: z.ZodOptional<z.ZodString>;
|
|
1092
1092
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1093
|
-
expired: "expired";
|
|
1094
1093
|
active: "active";
|
|
1094
|
+
expired: "expired";
|
|
1095
1095
|
pending_purchase: "pending_purchase";
|
|
1096
1096
|
pending_transfer_in: "pending_transfer_in";
|
|
1097
1097
|
expiring: "expiring";
|
|
@@ -1108,10 +1108,10 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1108
1108
|
stattic: "stattic";
|
|
1109
1109
|
}>;
|
|
1110
1110
|
managementKind: z.ZodOptional<z.ZodEnum<{
|
|
1111
|
+
stattic_nameservers: "stattic_nameservers";
|
|
1112
|
+
registrar_dns: "registrar_dns";
|
|
1111
1113
|
unmanaged_external: "unmanaged_external";
|
|
1112
1114
|
connected_provider: "connected_provider";
|
|
1113
|
-
registrar_dns: "registrar_dns";
|
|
1114
|
-
stattic_nameservers: "stattic_nameservers";
|
|
1115
1115
|
}>>;
|
|
1116
1116
|
dnsMode: z.ZodOptional<z.ZodEnum<{
|
|
1117
1117
|
authoritative: "authoritative";
|
|
@@ -1136,10 +1136,10 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1136
1136
|
kind: z.ZodString;
|
|
1137
1137
|
status: z.ZodEnum<{
|
|
1138
1138
|
failed: "failed";
|
|
1139
|
+
canceled: "canceled";
|
|
1139
1140
|
queued: "queued";
|
|
1140
1141
|
running: "running";
|
|
1141
1142
|
succeeded: "succeeded";
|
|
1142
|
-
canceled: "canceled";
|
|
1143
1143
|
observing: "observing";
|
|
1144
1144
|
}>;
|
|
1145
1145
|
updatedAt: z.ZodString;
|
|
@@ -1181,9 +1181,9 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1181
1181
|
message: z.ZodString;
|
|
1182
1182
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1183
1183
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1184
|
+
registrar: "registrar";
|
|
1184
1185
|
wpcloud: "wpcloud";
|
|
1185
1186
|
dns: "dns";
|
|
1186
|
-
registrar: "registrar";
|
|
1187
1187
|
runtime: "runtime";
|
|
1188
1188
|
}>>>;
|
|
1189
1189
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1207,8 +1207,8 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1207
1207
|
dangerous: "dangerous";
|
|
1208
1208
|
}>;
|
|
1209
1209
|
subjectFacet: z.ZodEnum<{
|
|
1210
|
-
registrar: "registrar";
|
|
1211
1210
|
email: "email";
|
|
1211
|
+
registrar: "registrar";
|
|
1212
1212
|
dns_zone: "dns_zone";
|
|
1213
1213
|
hosting_binding: "hosting_binding";
|
|
1214
1214
|
forwarding: "forwarding";
|
|
@@ -1221,18 +1221,18 @@ export declare const spaceDomainSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1221
1221
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
1222
1222
|
}, z.core.$strip>;
|
|
1223
1223
|
owner: z.ZodEnum<{
|
|
1224
|
+
support: "support";
|
|
1224
1225
|
registrar: "registrar";
|
|
1225
|
-
provider: "provider";
|
|
1226
|
-
user: "user";
|
|
1227
1226
|
stattic: "stattic";
|
|
1228
|
-
support: "support";
|
|
1229
1227
|
waiting: "waiting";
|
|
1228
|
+
provider: "provider";
|
|
1229
|
+
user: "user";
|
|
1230
1230
|
}>;
|
|
1231
1231
|
status: z.ZodEnum<{
|
|
1232
|
-
running: "running";
|
|
1233
|
-
resolved: "resolved";
|
|
1234
1232
|
active: "active";
|
|
1233
|
+
running: "running";
|
|
1235
1234
|
waiting: "waiting";
|
|
1235
|
+
resolved: "resolved";
|
|
1236
1236
|
dismissed: "dismissed";
|
|
1237
1237
|
}>;
|
|
1238
1238
|
summary: z.ZodString;
|
|
@@ -1352,9 +1352,9 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1352
1352
|
message: z.ZodString;
|
|
1353
1353
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1354
1354
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1355
|
+
registrar: "registrar";
|
|
1355
1356
|
wpcloud: "wpcloud";
|
|
1356
1357
|
dns: "dns";
|
|
1357
|
-
registrar: "registrar";
|
|
1358
1358
|
runtime: "runtime";
|
|
1359
1359
|
}>>>;
|
|
1360
1360
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1371,8 +1371,8 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1371
1371
|
principal: z.ZodObject<{
|
|
1372
1372
|
tenantId: z.ZodString;
|
|
1373
1373
|
principalType: z.ZodEnum<{
|
|
1374
|
-
external: "external";
|
|
1375
1374
|
team: "team";
|
|
1375
|
+
external: "external";
|
|
1376
1376
|
}>;
|
|
1377
1377
|
principalId: z.ZodString;
|
|
1378
1378
|
}, z.core.$strip>;
|
|
@@ -1391,8 +1391,8 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1391
1391
|
}>;
|
|
1392
1392
|
provider: z.ZodOptional<z.ZodString>;
|
|
1393
1393
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1394
|
-
expired: "expired";
|
|
1395
1394
|
active: "active";
|
|
1395
|
+
expired: "expired";
|
|
1396
1396
|
pending_purchase: "pending_purchase";
|
|
1397
1397
|
pending_transfer_in: "pending_transfer_in";
|
|
1398
1398
|
expiring: "expiring";
|
|
@@ -1409,10 +1409,10 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1409
1409
|
stattic: "stattic";
|
|
1410
1410
|
}>;
|
|
1411
1411
|
managementKind: z.ZodOptional<z.ZodEnum<{
|
|
1412
|
+
stattic_nameservers: "stattic_nameservers";
|
|
1413
|
+
registrar_dns: "registrar_dns";
|
|
1412
1414
|
unmanaged_external: "unmanaged_external";
|
|
1413
1415
|
connected_provider: "connected_provider";
|
|
1414
|
-
registrar_dns: "registrar_dns";
|
|
1415
|
-
stattic_nameservers: "stattic_nameservers";
|
|
1416
1416
|
}>>;
|
|
1417
1417
|
dnsMode: z.ZodOptional<z.ZodEnum<{
|
|
1418
1418
|
authoritative: "authoritative";
|
|
@@ -1437,10 +1437,10 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1437
1437
|
kind: z.ZodString;
|
|
1438
1438
|
status: z.ZodEnum<{
|
|
1439
1439
|
failed: "failed";
|
|
1440
|
+
canceled: "canceled";
|
|
1440
1441
|
queued: "queued";
|
|
1441
1442
|
running: "running";
|
|
1442
1443
|
succeeded: "succeeded";
|
|
1443
|
-
canceled: "canceled";
|
|
1444
1444
|
observing: "observing";
|
|
1445
1445
|
}>;
|
|
1446
1446
|
updatedAt: z.ZodString;
|
|
@@ -1482,9 +1482,9 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1482
1482
|
message: z.ZodString;
|
|
1483
1483
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1484
1484
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1485
|
+
registrar: "registrar";
|
|
1485
1486
|
wpcloud: "wpcloud";
|
|
1486
1487
|
dns: "dns";
|
|
1487
|
-
registrar: "registrar";
|
|
1488
1488
|
runtime: "runtime";
|
|
1489
1489
|
}>>>;
|
|
1490
1490
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1508,8 +1508,8 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1508
1508
|
dangerous: "dangerous";
|
|
1509
1509
|
}>;
|
|
1510
1510
|
subjectFacet: z.ZodEnum<{
|
|
1511
|
-
registrar: "registrar";
|
|
1512
1511
|
email: "email";
|
|
1512
|
+
registrar: "registrar";
|
|
1513
1513
|
dns_zone: "dns_zone";
|
|
1514
1514
|
hosting_binding: "hosting_binding";
|
|
1515
1515
|
forwarding: "forwarding";
|
|
@@ -1522,18 +1522,18 @@ export declare const spaceDomainListResponseSchema: z.ZodObject<{
|
|
|
1522
1522
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
1523
1523
|
}, z.core.$strip>;
|
|
1524
1524
|
owner: z.ZodEnum<{
|
|
1525
|
+
support: "support";
|
|
1525
1526
|
registrar: "registrar";
|
|
1526
|
-
provider: "provider";
|
|
1527
|
-
user: "user";
|
|
1528
1527
|
stattic: "stattic";
|
|
1529
|
-
support: "support";
|
|
1530
1528
|
waiting: "waiting";
|
|
1529
|
+
provider: "provider";
|
|
1530
|
+
user: "user";
|
|
1531
1531
|
}>;
|
|
1532
1532
|
status: z.ZodEnum<{
|
|
1533
|
-
running: "running";
|
|
1534
|
-
resolved: "resolved";
|
|
1535
1533
|
active: "active";
|
|
1534
|
+
running: "running";
|
|
1536
1535
|
waiting: "waiting";
|
|
1536
|
+
resolved: "resolved";
|
|
1537
1537
|
dismissed: "dismissed";
|
|
1538
1538
|
}>;
|
|
1539
1539
|
summary: z.ZodString;
|
|
@@ -1656,9 +1656,9 @@ export declare const teamManagedDomainSchema: z.ZodObject<{
|
|
|
1656
1656
|
message: z.ZodString;
|
|
1657
1657
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1658
1658
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1659
|
+
registrar: "registrar";
|
|
1659
1660
|
wpcloud: "wpcloud";
|
|
1660
1661
|
dns: "dns";
|
|
1661
|
-
registrar: "registrar";
|
|
1662
1662
|
runtime: "runtime";
|
|
1663
1663
|
}>>>;
|
|
1664
1664
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1716,9 +1716,9 @@ export declare const teamManagedDomainListResponseSchema: z.ZodObject<{
|
|
|
1716
1716
|
message: z.ZodString;
|
|
1717
1717
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1718
1718
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1719
|
+
registrar: "registrar";
|
|
1719
1720
|
wpcloud: "wpcloud";
|
|
1720
1721
|
dns: "dns";
|
|
1721
|
-
registrar: "registrar";
|
|
1722
1722
|
runtime: "runtime";
|
|
1723
1723
|
}>>>;
|
|
1724
1724
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1755,9 +1755,9 @@ export declare const domainBindingDiagnosticSchema: z.ZodObject<{
|
|
|
1755
1755
|
message: z.ZodString;
|
|
1756
1756
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1757
1757
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1758
|
+
registrar: "registrar";
|
|
1758
1759
|
wpcloud: "wpcloud";
|
|
1759
1760
|
dns: "dns";
|
|
1760
|
-
registrar: "registrar";
|
|
1761
1761
|
runtime: "runtime";
|
|
1762
1762
|
}>>>;
|
|
1763
1763
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1766,10 +1766,10 @@ export declare const domainBindingDiagnosticSchema: z.ZodObject<{
|
|
|
1766
1766
|
action: z.ZodOptional<z.ZodEnum<{
|
|
1767
1767
|
confirm_move: "confirm_move";
|
|
1768
1768
|
wait: "wait";
|
|
1769
|
-
contact_support: "contact_support";
|
|
1770
1769
|
add_dns: "add_dns";
|
|
1771
1770
|
verify: "verify";
|
|
1772
1771
|
remove_conflict: "remove_conflict";
|
|
1772
|
+
contact_support: "contact_support";
|
|
1773
1773
|
}>>;
|
|
1774
1774
|
}, z.core.$strip>;
|
|
1775
1775
|
export declare const domainBindingConflictSchema: z.ZodObject<{
|
|
@@ -1791,10 +1791,10 @@ export declare const domainBindingConflictSchema: z.ZodObject<{
|
|
|
1791
1791
|
}>>;
|
|
1792
1792
|
}, z.core.$strip>;
|
|
1793
1793
|
export declare const domainBindingStatusSchema: z.ZodEnum<{
|
|
1794
|
-
failed: "failed";
|
|
1795
1794
|
active: "active";
|
|
1796
|
-
|
|
1795
|
+
failed: "failed";
|
|
1797
1796
|
deleted: "deleted";
|
|
1797
|
+
pending: "pending";
|
|
1798
1798
|
blocked: "blocked";
|
|
1799
1799
|
draft: "draft";
|
|
1800
1800
|
activating: "activating";
|
|
@@ -1819,10 +1819,10 @@ export declare const domainBindingSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1819
1819
|
pathPrefix: z.ZodNullable<z.ZodString>;
|
|
1820
1820
|
wildcard: z.ZodBoolean;
|
|
1821
1821
|
status: z.ZodEnum<{
|
|
1822
|
-
failed: "failed";
|
|
1823
1822
|
active: "active";
|
|
1824
|
-
|
|
1823
|
+
failed: "failed";
|
|
1825
1824
|
deleted: "deleted";
|
|
1825
|
+
pending: "pending";
|
|
1826
1826
|
blocked: "blocked";
|
|
1827
1827
|
draft: "draft";
|
|
1828
1828
|
activating: "activating";
|
|
@@ -1837,9 +1837,9 @@ export declare const domainBindingSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1837
1837
|
message: z.ZodString;
|
|
1838
1838
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1839
1839
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1840
|
+
registrar: "registrar";
|
|
1840
1841
|
wpcloud: "wpcloud";
|
|
1841
1842
|
dns: "dns";
|
|
1842
|
-
registrar: "registrar";
|
|
1843
1843
|
runtime: "runtime";
|
|
1844
1844
|
}>>>;
|
|
1845
1845
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1848,10 +1848,10 @@ export declare const domainBindingSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1848
1848
|
action: z.ZodOptional<z.ZodEnum<{
|
|
1849
1849
|
confirm_move: "confirm_move";
|
|
1850
1850
|
wait: "wait";
|
|
1851
|
-
contact_support: "contact_support";
|
|
1852
1851
|
add_dns: "add_dns";
|
|
1853
1852
|
verify: "verify";
|
|
1854
1853
|
remove_conflict: "remove_conflict";
|
|
1854
|
+
contact_support: "contact_support";
|
|
1855
1855
|
}>>;
|
|
1856
1856
|
}, z.core.$strip>>;
|
|
1857
1857
|
requiredActions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -1921,10 +1921,10 @@ export declare const domainBindingSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1921
1921
|
pathPrefix: z.ZodNullable<z.ZodString>;
|
|
1922
1922
|
wildcard: z.ZodBoolean;
|
|
1923
1923
|
status: z.ZodEnum<{
|
|
1924
|
-
failed: "failed";
|
|
1925
1924
|
active: "active";
|
|
1926
|
-
|
|
1925
|
+
failed: "failed";
|
|
1927
1926
|
deleted: "deleted";
|
|
1927
|
+
pending: "pending";
|
|
1928
1928
|
blocked: "blocked";
|
|
1929
1929
|
draft: "draft";
|
|
1930
1930
|
activating: "activating";
|
|
@@ -1939,9 +1939,9 @@ export declare const domainBindingSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1939
1939
|
message: z.ZodString;
|
|
1940
1940
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1941
1941
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1942
|
+
registrar: "registrar";
|
|
1942
1943
|
wpcloud: "wpcloud";
|
|
1943
1944
|
dns: "dns";
|
|
1944
|
-
registrar: "registrar";
|
|
1945
1945
|
runtime: "runtime";
|
|
1946
1946
|
}>>>;
|
|
1947
1947
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1950,10 +1950,10 @@ export declare const domainBindingSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1950
1950
|
action: z.ZodOptional<z.ZodEnum<{
|
|
1951
1951
|
confirm_move: "confirm_move";
|
|
1952
1952
|
wait: "wait";
|
|
1953
|
-
contact_support: "contact_support";
|
|
1954
1953
|
add_dns: "add_dns";
|
|
1955
1954
|
verify: "verify";
|
|
1956
1955
|
remove_conflict: "remove_conflict";
|
|
1956
|
+
contact_support: "contact_support";
|
|
1957
1957
|
}>>;
|
|
1958
1958
|
}, z.core.$strip>>;
|
|
1959
1959
|
requiredActions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -2019,10 +2019,10 @@ export declare const domainBindingSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2019
2019
|
pathPrefix: z.ZodNullable<z.ZodString>;
|
|
2020
2020
|
wildcard: z.ZodBoolean;
|
|
2021
2021
|
status: z.ZodEnum<{
|
|
2022
|
-
failed: "failed";
|
|
2023
2022
|
active: "active";
|
|
2024
|
-
|
|
2023
|
+
failed: "failed";
|
|
2025
2024
|
deleted: "deleted";
|
|
2025
|
+
pending: "pending";
|
|
2026
2026
|
blocked: "blocked";
|
|
2027
2027
|
draft: "draft";
|
|
2028
2028
|
activating: "activating";
|
|
@@ -2037,9 +2037,9 @@ export declare const domainBindingSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2037
2037
|
message: z.ZodString;
|
|
2038
2038
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2039
2039
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2040
|
+
registrar: "registrar";
|
|
2040
2041
|
wpcloud: "wpcloud";
|
|
2041
2042
|
dns: "dns";
|
|
2042
|
-
registrar: "registrar";
|
|
2043
2043
|
runtime: "runtime";
|
|
2044
2044
|
}>>>;
|
|
2045
2045
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2048,10 +2048,10 @@ export declare const domainBindingSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2048
2048
|
action: z.ZodOptional<z.ZodEnum<{
|
|
2049
2049
|
confirm_move: "confirm_move";
|
|
2050
2050
|
wait: "wait";
|
|
2051
|
-
contact_support: "contact_support";
|
|
2052
2051
|
add_dns: "add_dns";
|
|
2053
2052
|
verify: "verify";
|
|
2054
2053
|
remove_conflict: "remove_conflict";
|
|
2054
|
+
contact_support: "contact_support";
|
|
2055
2055
|
}>>;
|
|
2056
2056
|
}, z.core.$strip>>;
|
|
2057
2057
|
requiredActions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -2168,10 +2168,10 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2168
2168
|
pathPrefix: z.ZodNullable<z.ZodString>;
|
|
2169
2169
|
wildcard: z.ZodBoolean;
|
|
2170
2170
|
status: z.ZodEnum<{
|
|
2171
|
-
failed: "failed";
|
|
2172
2171
|
active: "active";
|
|
2173
|
-
|
|
2172
|
+
failed: "failed";
|
|
2174
2173
|
deleted: "deleted";
|
|
2174
|
+
pending: "pending";
|
|
2175
2175
|
blocked: "blocked";
|
|
2176
2176
|
draft: "draft";
|
|
2177
2177
|
activating: "activating";
|
|
@@ -2186,9 +2186,9 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2186
2186
|
message: z.ZodString;
|
|
2187
2187
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2188
2188
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2189
|
+
registrar: "registrar";
|
|
2189
2190
|
wpcloud: "wpcloud";
|
|
2190
2191
|
dns: "dns";
|
|
2191
|
-
registrar: "registrar";
|
|
2192
2192
|
runtime: "runtime";
|
|
2193
2193
|
}>>>;
|
|
2194
2194
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2197,10 +2197,10 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2197
2197
|
action: z.ZodOptional<z.ZodEnum<{
|
|
2198
2198
|
confirm_move: "confirm_move";
|
|
2199
2199
|
wait: "wait";
|
|
2200
|
-
contact_support: "contact_support";
|
|
2201
2200
|
add_dns: "add_dns";
|
|
2202
2201
|
verify: "verify";
|
|
2203
2202
|
remove_conflict: "remove_conflict";
|
|
2203
|
+
contact_support: "contact_support";
|
|
2204
2204
|
}>>;
|
|
2205
2205
|
}, z.core.$strip>>;
|
|
2206
2206
|
requiredActions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -2270,10 +2270,10 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2270
2270
|
pathPrefix: z.ZodNullable<z.ZodString>;
|
|
2271
2271
|
wildcard: z.ZodBoolean;
|
|
2272
2272
|
status: z.ZodEnum<{
|
|
2273
|
-
failed: "failed";
|
|
2274
2273
|
active: "active";
|
|
2275
|
-
|
|
2274
|
+
failed: "failed";
|
|
2276
2275
|
deleted: "deleted";
|
|
2276
|
+
pending: "pending";
|
|
2277
2277
|
blocked: "blocked";
|
|
2278
2278
|
draft: "draft";
|
|
2279
2279
|
activating: "activating";
|
|
@@ -2288,9 +2288,9 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2288
2288
|
message: z.ZodString;
|
|
2289
2289
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2290
2290
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2291
|
+
registrar: "registrar";
|
|
2291
2292
|
wpcloud: "wpcloud";
|
|
2292
2293
|
dns: "dns";
|
|
2293
|
-
registrar: "registrar";
|
|
2294
2294
|
runtime: "runtime";
|
|
2295
2295
|
}>>>;
|
|
2296
2296
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2299,10 +2299,10 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2299
2299
|
action: z.ZodOptional<z.ZodEnum<{
|
|
2300
2300
|
confirm_move: "confirm_move";
|
|
2301
2301
|
wait: "wait";
|
|
2302
|
-
contact_support: "contact_support";
|
|
2303
2302
|
add_dns: "add_dns";
|
|
2304
2303
|
verify: "verify";
|
|
2305
2304
|
remove_conflict: "remove_conflict";
|
|
2305
|
+
contact_support: "contact_support";
|
|
2306
2306
|
}>>;
|
|
2307
2307
|
}, z.core.$strip>>;
|
|
2308
2308
|
requiredActions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -2368,10 +2368,10 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2368
2368
|
pathPrefix: z.ZodNullable<z.ZodString>;
|
|
2369
2369
|
wildcard: z.ZodBoolean;
|
|
2370
2370
|
status: z.ZodEnum<{
|
|
2371
|
-
failed: "failed";
|
|
2372
2371
|
active: "active";
|
|
2373
|
-
|
|
2372
|
+
failed: "failed";
|
|
2374
2373
|
deleted: "deleted";
|
|
2374
|
+
pending: "pending";
|
|
2375
2375
|
blocked: "blocked";
|
|
2376
2376
|
draft: "draft";
|
|
2377
2377
|
activating: "activating";
|
|
@@ -2386,9 +2386,9 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2386
2386
|
message: z.ZodString;
|
|
2387
2387
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2388
2388
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2389
|
+
registrar: "registrar";
|
|
2389
2390
|
wpcloud: "wpcloud";
|
|
2390
2391
|
dns: "dns";
|
|
2391
|
-
registrar: "registrar";
|
|
2392
2392
|
runtime: "runtime";
|
|
2393
2393
|
}>>>;
|
|
2394
2394
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2397,10 +2397,10 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2397
2397
|
action: z.ZodOptional<z.ZodEnum<{
|
|
2398
2398
|
confirm_move: "confirm_move";
|
|
2399
2399
|
wait: "wait";
|
|
2400
|
-
contact_support: "contact_support";
|
|
2401
2400
|
add_dns: "add_dns";
|
|
2402
2401
|
verify: "verify";
|
|
2403
2402
|
remove_conflict: "remove_conflict";
|
|
2403
|
+
contact_support: "contact_support";
|
|
2404
2404
|
}>>;
|
|
2405
2405
|
}, z.core.$strip>>;
|
|
2406
2406
|
requiredActions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -2459,10 +2459,10 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2459
2459
|
kind: z.ZodString;
|
|
2460
2460
|
status: z.ZodEnum<{
|
|
2461
2461
|
failed: "failed";
|
|
2462
|
+
canceled: "canceled";
|
|
2462
2463
|
queued: "queued";
|
|
2463
2464
|
running: "running";
|
|
2464
2465
|
succeeded: "succeeded";
|
|
2465
|
-
canceled: "canceled";
|
|
2466
2466
|
}>;
|
|
2467
2467
|
resources: z.ZodArray<z.ZodObject<{
|
|
2468
2468
|
type: z.ZodString;
|
|
@@ -2483,9 +2483,9 @@ export declare const domainBindingActivateResponseSchema: z.ZodObject<{
|
|
|
2483
2483
|
message: z.ZodString;
|
|
2484
2484
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2485
2485
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2486
|
+
registrar: "registrar";
|
|
2486
2487
|
wpcloud: "wpcloud";
|
|
2487
2488
|
dns: "dns";
|
|
2488
|
-
registrar: "registrar";
|
|
2489
2489
|
runtime: "runtime";
|
|
2490
2490
|
}>>>;
|
|
2491
2491
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2510,10 +2510,10 @@ export declare const domainBindingListResponseSchema: z.ZodObject<{
|
|
|
2510
2510
|
pathPrefix: z.ZodNullable<z.ZodString>;
|
|
2511
2511
|
wildcard: z.ZodBoolean;
|
|
2512
2512
|
status: z.ZodEnum<{
|
|
2513
|
-
failed: "failed";
|
|
2514
2513
|
active: "active";
|
|
2515
|
-
|
|
2514
|
+
failed: "failed";
|
|
2516
2515
|
deleted: "deleted";
|
|
2516
|
+
pending: "pending";
|
|
2517
2517
|
blocked: "blocked";
|
|
2518
2518
|
draft: "draft";
|
|
2519
2519
|
activating: "activating";
|
|
@@ -2528,9 +2528,9 @@ export declare const domainBindingListResponseSchema: z.ZodObject<{
|
|
|
2528
2528
|
message: z.ZodString;
|
|
2529
2529
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2530
2530
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2531
|
+
registrar: "registrar";
|
|
2531
2532
|
wpcloud: "wpcloud";
|
|
2532
2533
|
dns: "dns";
|
|
2533
|
-
registrar: "registrar";
|
|
2534
2534
|
runtime: "runtime";
|
|
2535
2535
|
}>>>;
|
|
2536
2536
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2539,10 +2539,10 @@ export declare const domainBindingListResponseSchema: z.ZodObject<{
|
|
|
2539
2539
|
action: z.ZodOptional<z.ZodEnum<{
|
|
2540
2540
|
confirm_move: "confirm_move";
|
|
2541
2541
|
wait: "wait";
|
|
2542
|
-
contact_support: "contact_support";
|
|
2543
2542
|
add_dns: "add_dns";
|
|
2544
2543
|
verify: "verify";
|
|
2545
2544
|
remove_conflict: "remove_conflict";
|
|
2545
|
+
contact_support: "contact_support";
|
|
2546
2546
|
}>>;
|
|
2547
2547
|
}, z.core.$strip>>;
|
|
2548
2548
|
requiredActions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -2612,10 +2612,10 @@ export declare const domainBindingListResponseSchema: z.ZodObject<{
|
|
|
2612
2612
|
pathPrefix: z.ZodNullable<z.ZodString>;
|
|
2613
2613
|
wildcard: z.ZodBoolean;
|
|
2614
2614
|
status: z.ZodEnum<{
|
|
2615
|
-
failed: "failed";
|
|
2616
2615
|
active: "active";
|
|
2617
|
-
|
|
2616
|
+
failed: "failed";
|
|
2618
2617
|
deleted: "deleted";
|
|
2618
|
+
pending: "pending";
|
|
2619
2619
|
blocked: "blocked";
|
|
2620
2620
|
draft: "draft";
|
|
2621
2621
|
activating: "activating";
|
|
@@ -2630,9 +2630,9 @@ export declare const domainBindingListResponseSchema: z.ZodObject<{
|
|
|
2630
2630
|
message: z.ZodString;
|
|
2631
2631
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2632
2632
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2633
|
+
registrar: "registrar";
|
|
2633
2634
|
wpcloud: "wpcloud";
|
|
2634
2635
|
dns: "dns";
|
|
2635
|
-
registrar: "registrar";
|
|
2636
2636
|
runtime: "runtime";
|
|
2637
2637
|
}>>>;
|
|
2638
2638
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2641,10 +2641,10 @@ export declare const domainBindingListResponseSchema: z.ZodObject<{
|
|
|
2641
2641
|
action: z.ZodOptional<z.ZodEnum<{
|
|
2642
2642
|
confirm_move: "confirm_move";
|
|
2643
2643
|
wait: "wait";
|
|
2644
|
-
contact_support: "contact_support";
|
|
2645
2644
|
add_dns: "add_dns";
|
|
2646
2645
|
verify: "verify";
|
|
2647
2646
|
remove_conflict: "remove_conflict";
|
|
2647
|
+
contact_support: "contact_support";
|
|
2648
2648
|
}>>;
|
|
2649
2649
|
}, z.core.$strip>>;
|
|
2650
2650
|
requiredActions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -2710,10 +2710,10 @@ export declare const domainBindingListResponseSchema: z.ZodObject<{
|
|
|
2710
2710
|
pathPrefix: z.ZodNullable<z.ZodString>;
|
|
2711
2711
|
wildcard: z.ZodBoolean;
|
|
2712
2712
|
status: z.ZodEnum<{
|
|
2713
|
-
failed: "failed";
|
|
2714
2713
|
active: "active";
|
|
2715
|
-
|
|
2714
|
+
failed: "failed";
|
|
2716
2715
|
deleted: "deleted";
|
|
2716
|
+
pending: "pending";
|
|
2717
2717
|
blocked: "blocked";
|
|
2718
2718
|
draft: "draft";
|
|
2719
2719
|
activating: "activating";
|
|
@@ -2728,9 +2728,9 @@ export declare const domainBindingListResponseSchema: z.ZodObject<{
|
|
|
2728
2728
|
message: z.ZodString;
|
|
2729
2729
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2730
2730
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2731
|
+
registrar: "registrar";
|
|
2731
2732
|
wpcloud: "wpcloud";
|
|
2732
2733
|
dns: "dns";
|
|
2733
|
-
registrar: "registrar";
|
|
2734
2734
|
runtime: "runtime";
|
|
2735
2735
|
}>>>;
|
|
2736
2736
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2739,10 +2739,10 @@ export declare const domainBindingListResponseSchema: z.ZodObject<{
|
|
|
2739
2739
|
action: z.ZodOptional<z.ZodEnum<{
|
|
2740
2740
|
confirm_move: "confirm_move";
|
|
2741
2741
|
wait: "wait";
|
|
2742
|
-
contact_support: "contact_support";
|
|
2743
2742
|
add_dns: "add_dns";
|
|
2744
2743
|
verify: "verify";
|
|
2745
2744
|
remove_conflict: "remove_conflict";
|
|
2745
|
+
contact_support: "contact_support";
|
|
2746
2746
|
}>>;
|
|
2747
2747
|
}, z.core.$strip>>;
|
|
2748
2748
|
requiredActions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -2812,8 +2812,8 @@ export declare const siteDomainAssignmentSchema: z.ZodObject<{
|
|
|
2812
2812
|
siteId: z.ZodNullable<z.ZodString>;
|
|
2813
2813
|
hostname: z.ZodString;
|
|
2814
2814
|
status: z.ZodEnum<{
|
|
2815
|
-
failed: "failed";
|
|
2816
2815
|
active: "active";
|
|
2816
|
+
failed: "failed";
|
|
2817
2817
|
blocked: "blocked";
|
|
2818
2818
|
unassigned: "unassigned";
|
|
2819
2819
|
pending_provider: "pending_provider";
|
|
@@ -2848,9 +2848,9 @@ export declare const siteDomainAssignmentSchema: z.ZodObject<{
|
|
|
2848
2848
|
message: z.ZodString;
|
|
2849
2849
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2850
2850
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2851
|
+
registrar: "registrar";
|
|
2851
2852
|
wpcloud: "wpcloud";
|
|
2852
2853
|
dns: "dns";
|
|
2853
|
-
registrar: "registrar";
|
|
2854
2854
|
runtime: "runtime";
|
|
2855
2855
|
}>>>;
|
|
2856
2856
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2872,8 +2872,8 @@ export declare const siteDomainAssignmentListResponseSchema: z.ZodObject<{
|
|
|
2872
2872
|
siteId: z.ZodNullable<z.ZodString>;
|
|
2873
2873
|
hostname: z.ZodString;
|
|
2874
2874
|
status: z.ZodEnum<{
|
|
2875
|
-
failed: "failed";
|
|
2876
2875
|
active: "active";
|
|
2876
|
+
failed: "failed";
|
|
2877
2877
|
blocked: "blocked";
|
|
2878
2878
|
unassigned: "unassigned";
|
|
2879
2879
|
pending_provider: "pending_provider";
|
|
@@ -2908,9 +2908,9 @@ export declare const siteDomainAssignmentListResponseSchema: z.ZodObject<{
|
|
|
2908
2908
|
message: z.ZodString;
|
|
2909
2909
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2910
2910
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2911
|
+
registrar: "registrar";
|
|
2911
2912
|
wpcloud: "wpcloud";
|
|
2912
2913
|
dns: "dns";
|
|
2913
|
-
registrar: "registrar";
|
|
2914
2914
|
runtime: "runtime";
|
|
2915
2915
|
}>>>;
|
|
2916
2916
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2993,10 +2993,10 @@ export declare const domainRegistrationActionResponseSchema: z.ZodObject<{
|
|
|
2993
2993
|
kind: z.ZodString;
|
|
2994
2994
|
status: z.ZodEnum<{
|
|
2995
2995
|
failed: "failed";
|
|
2996
|
+
canceled: "canceled";
|
|
2996
2997
|
queued: "queued";
|
|
2997
2998
|
running: "running";
|
|
2998
2999
|
succeeded: "succeeded";
|
|
2999
|
-
canceled: "canceled";
|
|
3000
3000
|
}>;
|
|
3001
3001
|
resources: z.ZodArray<z.ZodObject<{
|
|
3002
3002
|
type: z.ZodString;
|
|
@@ -3017,9 +3017,9 @@ export declare const domainRegistrationActionResponseSchema: z.ZodObject<{
|
|
|
3017
3017
|
message: z.ZodString;
|
|
3018
3018
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3019
3019
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3020
|
+
registrar: "registrar";
|
|
3020
3021
|
wpcloud: "wpcloud";
|
|
3021
3022
|
dns: "dns";
|
|
3022
|
-
registrar: "registrar";
|
|
3023
3023
|
runtime: "runtime";
|
|
3024
3024
|
}>>>;
|
|
3025
3025
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -3060,9 +3060,9 @@ export declare const domainNameserverResponseSchema: z.ZodObject<{
|
|
|
3060
3060
|
message: z.ZodString;
|
|
3061
3061
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3062
3062
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3063
|
+
registrar: "registrar";
|
|
3063
3064
|
wpcloud: "wpcloud";
|
|
3064
3065
|
dns: "dns";
|
|
3065
|
-
registrar: "registrar";
|
|
3066
3066
|
runtime: "runtime";
|
|
3067
3067
|
}>>>;
|
|
3068
3068
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -3087,8 +3087,8 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
3087
3087
|
principal: z.ZodObject<{
|
|
3088
3088
|
tenantId: z.ZodString;
|
|
3089
3089
|
principalType: z.ZodEnum<{
|
|
3090
|
-
external: "external";
|
|
3091
3090
|
team: "team";
|
|
3091
|
+
external: "external";
|
|
3092
3092
|
}>;
|
|
3093
3093
|
principalId: z.ZodString;
|
|
3094
3094
|
}, z.core.$strip>;
|
|
@@ -3107,8 +3107,8 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
3107
3107
|
}>;
|
|
3108
3108
|
provider: z.ZodOptional<z.ZodString>;
|
|
3109
3109
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3110
|
-
expired: "expired";
|
|
3111
3110
|
active: "active";
|
|
3111
|
+
expired: "expired";
|
|
3112
3112
|
pending_purchase: "pending_purchase";
|
|
3113
3113
|
pending_transfer_in: "pending_transfer_in";
|
|
3114
3114
|
expiring: "expiring";
|
|
@@ -3125,10 +3125,10 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
3125
3125
|
stattic: "stattic";
|
|
3126
3126
|
}>;
|
|
3127
3127
|
managementKind: z.ZodOptional<z.ZodEnum<{
|
|
3128
|
+
stattic_nameservers: "stattic_nameservers";
|
|
3129
|
+
registrar_dns: "registrar_dns";
|
|
3128
3130
|
unmanaged_external: "unmanaged_external";
|
|
3129
3131
|
connected_provider: "connected_provider";
|
|
3130
|
-
registrar_dns: "registrar_dns";
|
|
3131
|
-
stattic_nameservers: "stattic_nameservers";
|
|
3132
3132
|
}>>;
|
|
3133
3133
|
dnsMode: z.ZodOptional<z.ZodEnum<{
|
|
3134
3134
|
authoritative: "authoritative";
|
|
@@ -3153,10 +3153,10 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
3153
3153
|
kind: z.ZodString;
|
|
3154
3154
|
status: z.ZodEnum<{
|
|
3155
3155
|
failed: "failed";
|
|
3156
|
+
canceled: "canceled";
|
|
3156
3157
|
queued: "queued";
|
|
3157
3158
|
running: "running";
|
|
3158
3159
|
succeeded: "succeeded";
|
|
3159
|
-
canceled: "canceled";
|
|
3160
3160
|
observing: "observing";
|
|
3161
3161
|
}>;
|
|
3162
3162
|
updatedAt: z.ZodString;
|
|
@@ -3198,9 +3198,9 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
3198
3198
|
message: z.ZodString;
|
|
3199
3199
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3200
3200
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3201
|
+
registrar: "registrar";
|
|
3201
3202
|
wpcloud: "wpcloud";
|
|
3202
3203
|
dns: "dns";
|
|
3203
|
-
registrar: "registrar";
|
|
3204
3204
|
runtime: "runtime";
|
|
3205
3205
|
}>>>;
|
|
3206
3206
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -3224,8 +3224,8 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
3224
3224
|
dangerous: "dangerous";
|
|
3225
3225
|
}>;
|
|
3226
3226
|
subjectFacet: z.ZodEnum<{
|
|
3227
|
-
registrar: "registrar";
|
|
3228
3227
|
email: "email";
|
|
3228
|
+
registrar: "registrar";
|
|
3229
3229
|
dns_zone: "dns_zone";
|
|
3230
3230
|
hosting_binding: "hosting_binding";
|
|
3231
3231
|
forwarding: "forwarding";
|
|
@@ -3238,18 +3238,18 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
3238
3238
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3239
3239
|
}, z.core.$strip>;
|
|
3240
3240
|
owner: z.ZodEnum<{
|
|
3241
|
+
support: "support";
|
|
3241
3242
|
registrar: "registrar";
|
|
3242
|
-
provider: "provider";
|
|
3243
|
-
user: "user";
|
|
3244
3243
|
stattic: "stattic";
|
|
3245
|
-
support: "support";
|
|
3246
3244
|
waiting: "waiting";
|
|
3245
|
+
provider: "provider";
|
|
3246
|
+
user: "user";
|
|
3247
3247
|
}>;
|
|
3248
3248
|
status: z.ZodEnum<{
|
|
3249
|
-
running: "running";
|
|
3250
|
-
resolved: "resolved";
|
|
3251
3249
|
active: "active";
|
|
3250
|
+
running: "running";
|
|
3252
3251
|
waiting: "waiting";
|
|
3252
|
+
resolved: "resolved";
|
|
3253
3253
|
dismissed: "dismissed";
|
|
3254
3254
|
}>;
|
|
3255
3255
|
summary: z.ZodString;
|
|
@@ -3331,9 +3331,9 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
3331
3331
|
message: z.ZodString;
|
|
3332
3332
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3333
3333
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3334
|
+
registrar: "registrar";
|
|
3334
3335
|
wpcloud: "wpcloud";
|
|
3335
3336
|
dns: "dns";
|
|
3336
|
-
registrar: "registrar";
|
|
3337
3337
|
runtime: "runtime";
|
|
3338
3338
|
}>>>;
|
|
3339
3339
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -3375,10 +3375,10 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
3375
3375
|
kind: z.ZodString;
|
|
3376
3376
|
status: z.ZodEnum<{
|
|
3377
3377
|
failed: "failed";
|
|
3378
|
+
canceled: "canceled";
|
|
3378
3379
|
queued: "queued";
|
|
3379
3380
|
running: "running";
|
|
3380
3381
|
succeeded: "succeeded";
|
|
3381
|
-
canceled: "canceled";
|
|
3382
3382
|
}>;
|
|
3383
3383
|
resources: z.ZodArray<z.ZodObject<{
|
|
3384
3384
|
type: z.ZodString;
|
|
@@ -3399,9 +3399,9 @@ export declare const domainDnsModeResponseSchema: z.ZodObject<{
|
|
|
3399
3399
|
message: z.ZodString;
|
|
3400
3400
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3401
3401
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3402
|
+
registrar: "registrar";
|
|
3402
3403
|
wpcloud: "wpcloud";
|
|
3403
3404
|
dns: "dns";
|
|
3404
|
-
registrar: "registrar";
|
|
3405
3405
|
runtime: "runtime";
|
|
3406
3406
|
}>>>;
|
|
3407
3407
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -3486,10 +3486,10 @@ export declare const domainDnsExclusiveFieldGroupSchema: z.ZodObject<{
|
|
|
3486
3486
|
SRV: "SRV";
|
|
3487
3487
|
}>>>;
|
|
3488
3488
|
managementKinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3489
|
+
stattic_nameservers: "stattic_nameservers";
|
|
3490
|
+
registrar_dns: "registrar_dns";
|
|
3489
3491
|
unmanaged_external: "unmanaged_external";
|
|
3490
3492
|
connected_provider: "connected_provider";
|
|
3491
|
-
registrar_dns: "registrar_dns";
|
|
3492
|
-
stattic_nameservers: "stattic_nameservers";
|
|
3493
3493
|
}>>>;
|
|
3494
3494
|
providerKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3495
3495
|
expression: z.ZodOptional<z.ZodString>;
|
|
@@ -3665,10 +3665,10 @@ export declare function deriveDnsHybridMode(managementKind: DomainDnsManagementK
|
|
|
3665
3665
|
export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
3666
3666
|
domainId: z.ZodString;
|
|
3667
3667
|
managementKind: z.ZodEnum<{
|
|
3668
|
+
stattic_nameservers: "stattic_nameservers";
|
|
3669
|
+
registrar_dns: "registrar_dns";
|
|
3668
3670
|
unmanaged_external: "unmanaged_external";
|
|
3669
3671
|
connected_provider: "connected_provider";
|
|
3670
|
-
registrar_dns: "registrar_dns";
|
|
3671
|
-
stattic_nameservers: "stattic_nameservers";
|
|
3672
3672
|
}>;
|
|
3673
3673
|
dnsMode: z.ZodOptional<z.ZodEnum<{
|
|
3674
3674
|
authoritative: "authoritative";
|
|
@@ -3733,10 +3733,10 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3733
3733
|
SRV: "SRV";
|
|
3734
3734
|
}>>>;
|
|
3735
3735
|
managementKinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3736
|
+
stattic_nameservers: "stattic_nameservers";
|
|
3737
|
+
registrar_dns: "registrar_dns";
|
|
3736
3738
|
unmanaged_external: "unmanaged_external";
|
|
3737
3739
|
connected_provider: "connected_provider";
|
|
3738
|
-
registrar_dns: "registrar_dns";
|
|
3739
|
-
stattic_nameservers: "stattic_nameservers";
|
|
3740
3740
|
}>>>;
|
|
3741
3741
|
providerKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3742
3742
|
expression: z.ZodOptional<z.ZodString>;
|
|
@@ -3898,9 +3898,9 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3898
3898
|
message: z.ZodString;
|
|
3899
3899
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3900
3900
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3901
|
+
registrar: "registrar";
|
|
3901
3902
|
wpcloud: "wpcloud";
|
|
3902
3903
|
dns: "dns";
|
|
3903
|
-
registrar: "registrar";
|
|
3904
3904
|
runtime: "runtime";
|
|
3905
3905
|
}>>>;
|
|
3906
3906
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -3910,7 +3910,7 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3910
3910
|
}, z.core.$strip>, z.ZodTransform<{
|
|
3911
3911
|
dnsMode: "authoritative" | "adapter";
|
|
3912
3912
|
domainId: string;
|
|
3913
|
-
managementKind: "
|
|
3913
|
+
managementKind: "stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider";
|
|
3914
3914
|
writeAuthority: "none" | "provider_credentials" | "registrar_authority" | "delegated_nameservers" | "internal_service_key";
|
|
3915
3915
|
provider: string | null;
|
|
3916
3916
|
recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
|
|
@@ -3934,7 +3934,7 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3934
3934
|
fixSuggestion: string;
|
|
3935
3935
|
appliesWhen?: {
|
|
3936
3936
|
recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[] | undefined;
|
|
3937
|
-
managementKinds?: ("
|
|
3937
|
+
managementKinds?: ("stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider")[] | undefined;
|
|
3938
3938
|
providerKeys?: string[] | undefined;
|
|
3939
3939
|
expression?: string | undefined;
|
|
3940
3940
|
} | undefined;
|
|
@@ -4044,14 +4044,14 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4044
4044
|
severity: "info" | "warning" | "error";
|
|
4045
4045
|
message: string;
|
|
4046
4046
|
path?: string | null | undefined;
|
|
4047
|
-
provider?: "
|
|
4047
|
+
provider?: "registrar" | "wpcloud" | "dns" | "runtime" | null | undefined;
|
|
4048
4048
|
details?: Record<string, unknown> | null | undefined;
|
|
4049
4049
|
fix?: string | null | undefined;
|
|
4050
4050
|
retryable?: boolean | null | undefined;
|
|
4051
4051
|
}[];
|
|
4052
4052
|
}, {
|
|
4053
4053
|
domainId: string;
|
|
4054
|
-
managementKind: "
|
|
4054
|
+
managementKind: "stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider";
|
|
4055
4055
|
writeAuthority: "none" | "provider_credentials" | "registrar_authority" | "delegated_nameservers" | "internal_service_key";
|
|
4056
4056
|
provider: string | null;
|
|
4057
4057
|
recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
|
|
@@ -4075,7 +4075,7 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4075
4075
|
fixSuggestion: string;
|
|
4076
4076
|
appliesWhen?: {
|
|
4077
4077
|
recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[] | undefined;
|
|
4078
|
-
managementKinds?: ("
|
|
4078
|
+
managementKinds?: ("stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider")[] | undefined;
|
|
4079
4079
|
providerKeys?: string[] | undefined;
|
|
4080
4080
|
expression?: string | undefined;
|
|
4081
4081
|
} | undefined;
|
|
@@ -4185,7 +4185,7 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4185
4185
|
severity: "info" | "warning" | "error";
|
|
4186
4186
|
message: string;
|
|
4187
4187
|
path?: string | null | undefined;
|
|
4188
|
-
provider?: "
|
|
4188
|
+
provider?: "registrar" | "wpcloud" | "dns" | "runtime" | null | undefined;
|
|
4189
4189
|
details?: Record<string, unknown> | null | undefined;
|
|
4190
4190
|
fix?: string | null | undefined;
|
|
4191
4191
|
retryable?: boolean | null | undefined;
|
|
@@ -4197,34 +4197,34 @@ export declare const domainProviderConnectionStatusSchema: z.ZodEnum<{
|
|
|
4197
4197
|
active: "active";
|
|
4198
4198
|
disabled: "disabled";
|
|
4199
4199
|
degraded: "degraded";
|
|
4200
|
-
auth_expired: "auth_expired";
|
|
4201
4200
|
revoked: "revoked";
|
|
4201
|
+
auth_expired: "auth_expired";
|
|
4202
4202
|
owner_access_lost: "owner_access_lost";
|
|
4203
4203
|
disconnected: "disconnected";
|
|
4204
4204
|
pending_relink: "pending_relink";
|
|
4205
4205
|
reconnect_required: "reconnect_required";
|
|
4206
4206
|
}>;
|
|
4207
4207
|
export declare const domainDnsProviderSchema: z.ZodEnum<{
|
|
4208
|
-
wpcom: "wpcom";
|
|
4209
|
-
stattic: "stattic";
|
|
4210
4208
|
manual: "manual";
|
|
4209
|
+
stattic: "stattic";
|
|
4210
|
+
route53: "route53";
|
|
4211
4211
|
cloudflare: "cloudflare";
|
|
4212
4212
|
vercel: "vercel";
|
|
4213
|
+
wpcom: "wpcom";
|
|
4213
4214
|
pressable: "pressable";
|
|
4214
|
-
route53: "route53";
|
|
4215
4215
|
}>;
|
|
4216
4216
|
export declare const domainProviderConnectionSchema: z.ZodObject<{
|
|
4217
4217
|
id: z.ZodString;
|
|
4218
4218
|
tenantId: z.ZodString;
|
|
4219
4219
|
teamId: z.ZodString;
|
|
4220
4220
|
provider: z.ZodEnum<{
|
|
4221
|
-
wpcom: "wpcom";
|
|
4222
|
-
stattic: "stattic";
|
|
4223
4221
|
manual: "manual";
|
|
4222
|
+
stattic: "stattic";
|
|
4223
|
+
route53: "route53";
|
|
4224
4224
|
cloudflare: "cloudflare";
|
|
4225
4225
|
vercel: "vercel";
|
|
4226
|
+
wpcom: "wpcom";
|
|
4226
4227
|
pressable: "pressable";
|
|
4227
|
-
route53: "route53";
|
|
4228
4228
|
}>;
|
|
4229
4229
|
label: z.ZodString;
|
|
4230
4230
|
authType: z.ZodEnum<{
|
|
@@ -4238,8 +4238,8 @@ export declare const domainProviderConnectionSchema: z.ZodObject<{
|
|
|
4238
4238
|
active: "active";
|
|
4239
4239
|
disabled: "disabled";
|
|
4240
4240
|
degraded: "degraded";
|
|
4241
|
-
auth_expired: "auth_expired";
|
|
4242
4241
|
revoked: "revoked";
|
|
4242
|
+
auth_expired: "auth_expired";
|
|
4243
4243
|
owner_access_lost: "owner_access_lost";
|
|
4244
4244
|
disconnected: "disconnected";
|
|
4245
4245
|
pending_relink: "pending_relink";
|
|
@@ -4256,13 +4256,13 @@ export declare const domainProviderConnectionListQuerySchema: z.ZodObject<{
|
|
|
4256
4256
|
cursor: z.ZodOptional<z.ZodString>;
|
|
4257
4257
|
teamId: z.ZodOptional<z.ZodString>;
|
|
4258
4258
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
4259
|
-
wpcom: "wpcom";
|
|
4260
|
-
stattic: "stattic";
|
|
4261
4259
|
manual: "manual";
|
|
4260
|
+
stattic: "stattic";
|
|
4261
|
+
route53: "route53";
|
|
4262
4262
|
cloudflare: "cloudflare";
|
|
4263
4263
|
vercel: "vercel";
|
|
4264
|
+
wpcom: "wpcom";
|
|
4264
4265
|
pressable: "pressable";
|
|
4265
|
-
route53: "route53";
|
|
4266
4266
|
}>>;
|
|
4267
4267
|
}, z.core.$strip>;
|
|
4268
4268
|
export declare const domainProviderConnectionListResponseSchema: z.ZodObject<{
|
|
@@ -4271,13 +4271,13 @@ export declare const domainProviderConnectionListResponseSchema: z.ZodObject<{
|
|
|
4271
4271
|
tenantId: z.ZodString;
|
|
4272
4272
|
teamId: z.ZodString;
|
|
4273
4273
|
provider: z.ZodEnum<{
|
|
4274
|
-
wpcom: "wpcom";
|
|
4275
|
-
stattic: "stattic";
|
|
4276
4274
|
manual: "manual";
|
|
4275
|
+
stattic: "stattic";
|
|
4276
|
+
route53: "route53";
|
|
4277
4277
|
cloudflare: "cloudflare";
|
|
4278
4278
|
vercel: "vercel";
|
|
4279
|
+
wpcom: "wpcom";
|
|
4279
4280
|
pressable: "pressable";
|
|
4280
|
-
route53: "route53";
|
|
4281
4281
|
}>;
|
|
4282
4282
|
label: z.ZodString;
|
|
4283
4283
|
authType: z.ZodEnum<{
|
|
@@ -4291,8 +4291,8 @@ export declare const domainProviderConnectionListResponseSchema: z.ZodObject<{
|
|
|
4291
4291
|
active: "active";
|
|
4292
4292
|
disabled: "disabled";
|
|
4293
4293
|
degraded: "degraded";
|
|
4294
|
-
auth_expired: "auth_expired";
|
|
4295
4294
|
revoked: "revoked";
|
|
4295
|
+
auth_expired: "auth_expired";
|
|
4296
4296
|
owner_access_lost: "owner_access_lost";
|
|
4297
4297
|
disconnected: "disconnected";
|
|
4298
4298
|
pending_relink: "pending_relink";
|
|
@@ -4311,13 +4311,13 @@ export declare const domainProviderConnectionListResponseSchema: z.ZodObject<{
|
|
|
4311
4311
|
export declare const domainProviderConnectionCreateSchema: z.ZodObject<{
|
|
4312
4312
|
teamId: z.ZodOptional<z.ZodString>;
|
|
4313
4313
|
provider: z.ZodEnum<{
|
|
4314
|
-
wpcom: "wpcom";
|
|
4315
|
-
stattic: "stattic";
|
|
4316
4314
|
manual: "manual";
|
|
4315
|
+
stattic: "stattic";
|
|
4316
|
+
route53: "route53";
|
|
4317
4317
|
cloudflare: "cloudflare";
|
|
4318
4318
|
vercel: "vercel";
|
|
4319
|
+
wpcom: "wpcom";
|
|
4319
4320
|
pressable: "pressable";
|
|
4320
|
-
route53: "route53";
|
|
4321
4321
|
}>;
|
|
4322
4322
|
label: z.ZodString;
|
|
4323
4323
|
authType: z.ZodDefault<z.ZodEnum<{
|
|
@@ -4335,18 +4335,18 @@ export declare const domainProviderZoneSchema: z.ZodObject<{
|
|
|
4335
4335
|
id: z.ZodString;
|
|
4336
4336
|
name: z.ZodString;
|
|
4337
4337
|
provider: z.ZodEnum<{
|
|
4338
|
-
wpcom: "wpcom";
|
|
4339
|
-
stattic: "stattic";
|
|
4340
4338
|
manual: "manual";
|
|
4339
|
+
stattic: "stattic";
|
|
4340
|
+
route53: "route53";
|
|
4341
4341
|
cloudflare: "cloudflare";
|
|
4342
4342
|
vercel: "vercel";
|
|
4343
|
+
wpcom: "wpcom";
|
|
4343
4344
|
pressable: "pressable";
|
|
4344
|
-
route53: "route53";
|
|
4345
4345
|
}>;
|
|
4346
4346
|
connectionId: z.ZodString;
|
|
4347
4347
|
status: z.ZodDefault<z.ZodEnum<{
|
|
4348
|
-
unknown: "unknown";
|
|
4349
4348
|
active: "active";
|
|
4349
|
+
unknown: "unknown";
|
|
4350
4350
|
pending: "pending";
|
|
4351
4351
|
moved: "moved";
|
|
4352
4352
|
}>>;
|
|
@@ -4357,18 +4357,18 @@ export declare const domainProviderZoneListResponseSchema: z.ZodObject<{
|
|
|
4357
4357
|
id: z.ZodString;
|
|
4358
4358
|
name: z.ZodString;
|
|
4359
4359
|
provider: z.ZodEnum<{
|
|
4360
|
-
wpcom: "wpcom";
|
|
4361
|
-
stattic: "stattic";
|
|
4362
4360
|
manual: "manual";
|
|
4361
|
+
stattic: "stattic";
|
|
4362
|
+
route53: "route53";
|
|
4363
4363
|
cloudflare: "cloudflare";
|
|
4364
4364
|
vercel: "vercel";
|
|
4365
|
+
wpcom: "wpcom";
|
|
4365
4366
|
pressable: "pressable";
|
|
4366
|
-
route53: "route53";
|
|
4367
4367
|
}>;
|
|
4368
4368
|
connectionId: z.ZodString;
|
|
4369
4369
|
status: z.ZodDefault<z.ZodEnum<{
|
|
4370
|
-
unknown: "unknown";
|
|
4371
4370
|
active: "active";
|
|
4371
|
+
unknown: "unknown";
|
|
4372
4372
|
pending: "pending";
|
|
4373
4373
|
moved: "moved";
|
|
4374
4374
|
}>>;
|
|
@@ -4402,10 +4402,10 @@ export declare const domainProviderSnapshotRefreshResponseSchema: z.ZodObject<{
|
|
|
4402
4402
|
kind: z.ZodString;
|
|
4403
4403
|
status: z.ZodEnum<{
|
|
4404
4404
|
failed: "failed";
|
|
4405
|
+
canceled: "canceled";
|
|
4405
4406
|
queued: "queued";
|
|
4406
4407
|
running: "running";
|
|
4407
4408
|
succeeded: "succeeded";
|
|
4408
|
-
canceled: "canceled";
|
|
4409
4409
|
}>;
|
|
4410
4410
|
resources: z.ZodArray<z.ZodObject<{
|
|
4411
4411
|
type: z.ZodString;
|
|
@@ -4426,9 +4426,9 @@ export declare const domainProviderSnapshotRefreshResponseSchema: z.ZodObject<{
|
|
|
4426
4426
|
message: z.ZodString;
|
|
4427
4427
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4428
4428
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4429
|
+
registrar: "registrar";
|
|
4429
4430
|
wpcloud: "wpcloud";
|
|
4430
4431
|
dns: "dns";
|
|
4431
|
-
registrar: "registrar";
|
|
4432
4432
|
runtime: "runtime";
|
|
4433
4433
|
}>>>;
|
|
4434
4434
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -4477,10 +4477,10 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
|
|
|
4477
4477
|
}>;
|
|
4478
4478
|
status: z.ZodEnum<{
|
|
4479
4479
|
failed: "failed";
|
|
4480
|
+
canceled: "canceled";
|
|
4480
4481
|
queued: "queued";
|
|
4481
4482
|
running: "running";
|
|
4482
4483
|
succeeded: "succeeded";
|
|
4483
|
-
canceled: "canceled";
|
|
4484
4484
|
observing: "observing";
|
|
4485
4485
|
}>;
|
|
4486
4486
|
provider: z.ZodString;
|
|
@@ -4498,9 +4498,9 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
|
|
|
4498
4498
|
message: z.ZodString;
|
|
4499
4499
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4500
4500
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4501
|
+
registrar: "registrar";
|
|
4501
4502
|
wpcloud: "wpcloud";
|
|
4502
4503
|
dns: "dns";
|
|
4503
|
-
registrar: "registrar";
|
|
4504
4504
|
runtime: "runtime";
|
|
4505
4505
|
}>>>;
|
|
4506
4506
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -4557,8 +4557,8 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
|
|
|
4557
4557
|
dangerous: "dangerous";
|
|
4558
4558
|
}>;
|
|
4559
4559
|
subjectFacet: z.ZodEnum<{
|
|
4560
|
-
registrar: "registrar";
|
|
4561
4560
|
email: "email";
|
|
4561
|
+
registrar: "registrar";
|
|
4562
4562
|
dns_zone: "dns_zone";
|
|
4563
4563
|
hosting_binding: "hosting_binding";
|
|
4564
4564
|
forwarding: "forwarding";
|
|
@@ -4571,18 +4571,18 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
|
|
|
4571
4571
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
4572
4572
|
}, z.core.$strip>;
|
|
4573
4573
|
owner: z.ZodEnum<{
|
|
4574
|
+
support: "support";
|
|
4574
4575
|
registrar: "registrar";
|
|
4575
|
-
provider: "provider";
|
|
4576
|
-
user: "user";
|
|
4577
4576
|
stattic: "stattic";
|
|
4578
|
-
support: "support";
|
|
4579
4577
|
waiting: "waiting";
|
|
4578
|
+
provider: "provider";
|
|
4579
|
+
user: "user";
|
|
4580
4580
|
}>;
|
|
4581
4581
|
status: z.ZodEnum<{
|
|
4582
|
-
running: "running";
|
|
4583
|
-
resolved: "resolved";
|
|
4584
4582
|
active: "active";
|
|
4583
|
+
running: "running";
|
|
4585
4584
|
waiting: "waiting";
|
|
4585
|
+
resolved: "resolved";
|
|
4586
4586
|
dismissed: "dismissed";
|
|
4587
4587
|
}>;
|
|
4588
4588
|
summary: z.ZodString;
|
|
@@ -4678,10 +4678,10 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
|
|
|
4678
4678
|
}>;
|
|
4679
4679
|
status: z.ZodEnum<{
|
|
4680
4680
|
failed: "failed";
|
|
4681
|
+
canceled: "canceled";
|
|
4681
4682
|
queued: "queued";
|
|
4682
4683
|
running: "running";
|
|
4683
4684
|
succeeded: "succeeded";
|
|
4684
|
-
canceled: "canceled";
|
|
4685
4685
|
observing: "observing";
|
|
4686
4686
|
}>;
|
|
4687
4687
|
provider: z.ZodString;
|
|
@@ -4699,9 +4699,9 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
|
|
|
4699
4699
|
message: z.ZodString;
|
|
4700
4700
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4701
4701
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4702
|
+
registrar: "registrar";
|
|
4702
4703
|
wpcloud: "wpcloud";
|
|
4703
4704
|
dns: "dns";
|
|
4704
|
-
registrar: "registrar";
|
|
4705
4705
|
runtime: "runtime";
|
|
4706
4706
|
}>>>;
|
|
4707
4707
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -4758,8 +4758,8 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
|
|
|
4758
4758
|
dangerous: "dangerous";
|
|
4759
4759
|
}>;
|
|
4760
4760
|
subjectFacet: z.ZodEnum<{
|
|
4761
|
-
registrar: "registrar";
|
|
4762
4761
|
email: "email";
|
|
4762
|
+
registrar: "registrar";
|
|
4763
4763
|
dns_zone: "dns_zone";
|
|
4764
4764
|
hosting_binding: "hosting_binding";
|
|
4765
4765
|
forwarding: "forwarding";
|
|
@@ -4772,18 +4772,18 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
|
|
|
4772
4772
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
4773
4773
|
}, z.core.$strip>;
|
|
4774
4774
|
owner: z.ZodEnum<{
|
|
4775
|
+
support: "support";
|
|
4775
4776
|
registrar: "registrar";
|
|
4776
|
-
provider: "provider";
|
|
4777
|
-
user: "user";
|
|
4778
4777
|
stattic: "stattic";
|
|
4779
|
-
support: "support";
|
|
4780
4778
|
waiting: "waiting";
|
|
4779
|
+
provider: "provider";
|
|
4780
|
+
user: "user";
|
|
4781
4781
|
}>;
|
|
4782
4782
|
status: z.ZodEnum<{
|
|
4783
|
-
running: "running";
|
|
4784
|
-
resolved: "resolved";
|
|
4785
4783
|
active: "active";
|
|
4784
|
+
running: "running";
|
|
4786
4785
|
waiting: "waiting";
|
|
4786
|
+
resolved: "resolved";
|
|
4787
4787
|
dismissed: "dismissed";
|
|
4788
4788
|
}>;
|
|
4789
4789
|
summary: z.ZodString;
|
|
@@ -4874,19 +4874,19 @@ export declare const domainActionKindSchema: z.ZodEnum<{
|
|
|
4874
4874
|
connect_provider: "connect_provider";
|
|
4875
4875
|
}>;
|
|
4876
4876
|
export declare const domainActionSubjectFacetSchema: z.ZodEnum<{
|
|
4877
|
-
registrar: "registrar";
|
|
4878
4877
|
email: "email";
|
|
4878
|
+
registrar: "registrar";
|
|
4879
4879
|
dns_zone: "dns_zone";
|
|
4880
4880
|
hosting_binding: "hosting_binding";
|
|
4881
4881
|
forwarding: "forwarding";
|
|
4882
4882
|
provider_connection: "provider_connection";
|
|
4883
4883
|
}>;
|
|
4884
4884
|
export declare const domainActionStatusSchema: z.ZodEnum<{
|
|
4885
|
+
open: "open";
|
|
4885
4886
|
failed: "failed";
|
|
4886
|
-
running: "running";
|
|
4887
4887
|
canceled: "canceled";
|
|
4888
|
-
open: "open";
|
|
4889
4888
|
expired: "expired";
|
|
4889
|
+
running: "running";
|
|
4890
4890
|
observing: "observing";
|
|
4891
4891
|
blocked: "blocked";
|
|
4892
4892
|
dismissed: "dismissed";
|
|
@@ -4900,13 +4900,13 @@ export declare const domainActionStatusSchema: z.ZodEnum<{
|
|
|
4900
4900
|
rollback_available: "rollback_available";
|
|
4901
4901
|
}>;
|
|
4902
4902
|
export declare const domainActionOwnerSchema: z.ZodEnum<{
|
|
4903
|
+
support: "support";
|
|
4903
4904
|
registrar: "registrar";
|
|
4905
|
+
stattic: "stattic";
|
|
4906
|
+
waiting: "waiting";
|
|
4904
4907
|
provider: "provider";
|
|
4905
4908
|
user: "user";
|
|
4906
4909
|
team_admin: "team_admin";
|
|
4907
|
-
stattic: "stattic";
|
|
4908
|
-
support: "support";
|
|
4909
|
-
waiting: "waiting";
|
|
4910
4910
|
}>;
|
|
4911
4911
|
export declare const domainActionSchema: z.ZodObject<{
|
|
4912
4912
|
id: z.ZodString;
|
|
@@ -4926,8 +4926,8 @@ export declare const domainActionSchema: z.ZodObject<{
|
|
|
4926
4926
|
connect_provider: "connect_provider";
|
|
4927
4927
|
}>;
|
|
4928
4928
|
subjectFacet: z.ZodEnum<{
|
|
4929
|
-
registrar: "registrar";
|
|
4930
4929
|
email: "email";
|
|
4930
|
+
registrar: "registrar";
|
|
4931
4931
|
dns_zone: "dns_zone";
|
|
4932
4932
|
hosting_binding: "hosting_binding";
|
|
4933
4933
|
forwarding: "forwarding";
|
|
@@ -4935,11 +4935,11 @@ export declare const domainActionSchema: z.ZodObject<{
|
|
|
4935
4935
|
}>;
|
|
4936
4936
|
subject: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4937
4937
|
status: z.ZodEnum<{
|
|
4938
|
+
open: "open";
|
|
4938
4939
|
failed: "failed";
|
|
4939
|
-
running: "running";
|
|
4940
4940
|
canceled: "canceled";
|
|
4941
|
-
open: "open";
|
|
4942
4941
|
expired: "expired";
|
|
4942
|
+
running: "running";
|
|
4943
4943
|
observing: "observing";
|
|
4944
4944
|
blocked: "blocked";
|
|
4945
4945
|
dismissed: "dismissed";
|
|
@@ -4953,13 +4953,13 @@ export declare const domainActionSchema: z.ZodObject<{
|
|
|
4953
4953
|
rollback_available: "rollback_available";
|
|
4954
4954
|
}>;
|
|
4955
4955
|
owner: z.ZodEnum<{
|
|
4956
|
+
support: "support";
|
|
4956
4957
|
registrar: "registrar";
|
|
4958
|
+
stattic: "stattic";
|
|
4959
|
+
waiting: "waiting";
|
|
4957
4960
|
provider: "provider";
|
|
4958
4961
|
user: "user";
|
|
4959
4962
|
team_admin: "team_admin";
|
|
4960
|
-
stattic: "stattic";
|
|
4961
|
-
support: "support";
|
|
4962
|
-
waiting: "waiting";
|
|
4963
4963
|
}>;
|
|
4964
4964
|
desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4965
4965
|
plan: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -4990,8 +4990,8 @@ export declare const domainActionListResponseSchema: z.ZodObject<{
|
|
|
4990
4990
|
connect_provider: "connect_provider";
|
|
4991
4991
|
}>;
|
|
4992
4992
|
subjectFacet: z.ZodEnum<{
|
|
4993
|
-
registrar: "registrar";
|
|
4994
4993
|
email: "email";
|
|
4994
|
+
registrar: "registrar";
|
|
4995
4995
|
dns_zone: "dns_zone";
|
|
4996
4996
|
hosting_binding: "hosting_binding";
|
|
4997
4997
|
forwarding: "forwarding";
|
|
@@ -4999,11 +4999,11 @@ export declare const domainActionListResponseSchema: z.ZodObject<{
|
|
|
4999
4999
|
}>;
|
|
5000
5000
|
subject: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5001
5001
|
status: z.ZodEnum<{
|
|
5002
|
+
open: "open";
|
|
5002
5003
|
failed: "failed";
|
|
5003
|
-
running: "running";
|
|
5004
5004
|
canceled: "canceled";
|
|
5005
|
-
open: "open";
|
|
5006
5005
|
expired: "expired";
|
|
5006
|
+
running: "running";
|
|
5007
5007
|
observing: "observing";
|
|
5008
5008
|
blocked: "blocked";
|
|
5009
5009
|
dismissed: "dismissed";
|
|
@@ -5017,13 +5017,13 @@ export declare const domainActionListResponseSchema: z.ZodObject<{
|
|
|
5017
5017
|
rollback_available: "rollback_available";
|
|
5018
5018
|
}>;
|
|
5019
5019
|
owner: z.ZodEnum<{
|
|
5020
|
+
support: "support";
|
|
5020
5021
|
registrar: "registrar";
|
|
5022
|
+
stattic: "stattic";
|
|
5023
|
+
waiting: "waiting";
|
|
5021
5024
|
provider: "provider";
|
|
5022
5025
|
user: "user";
|
|
5023
5026
|
team_admin: "team_admin";
|
|
5024
|
-
stattic: "stattic";
|
|
5025
|
-
support: "support";
|
|
5026
|
-
waiting: "waiting";
|
|
5027
5027
|
}>;
|
|
5028
5028
|
desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5029
5029
|
plan: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -5044,11 +5044,11 @@ export declare const domainActionListQuerySchema: z.ZodObject<{
|
|
|
5044
5044
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
5045
5045
|
cursor: z.ZodOptional<z.ZodString>;
|
|
5046
5046
|
status: z.ZodOptional<z.ZodEnum<{
|
|
5047
|
+
open: "open";
|
|
5047
5048
|
failed: "failed";
|
|
5048
|
-
running: "running";
|
|
5049
5049
|
canceled: "canceled";
|
|
5050
|
-
open: "open";
|
|
5051
5050
|
expired: "expired";
|
|
5051
|
+
running: "running";
|
|
5052
5052
|
observing: "observing";
|
|
5053
5053
|
blocked: "blocked";
|
|
5054
5054
|
dismissed: "dismissed";
|
|
@@ -5076,8 +5076,8 @@ export declare const domainActionPreviewRequestSchema: z.ZodObject<{
|
|
|
5076
5076
|
connect_provider: "connect_provider";
|
|
5077
5077
|
}>;
|
|
5078
5078
|
subjectFacet: z.ZodEnum<{
|
|
5079
|
-
registrar: "registrar";
|
|
5080
5079
|
email: "email";
|
|
5080
|
+
registrar: "registrar";
|
|
5081
5081
|
dns_zone: "dns_zone";
|
|
5082
5082
|
hosting_binding: "hosting_binding";
|
|
5083
5083
|
forwarding: "forwarding";
|
|
@@ -5085,13 +5085,13 @@ export declare const domainActionPreviewRequestSchema: z.ZodObject<{
|
|
|
5085
5085
|
}>;
|
|
5086
5086
|
subject: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5087
5087
|
owner: z.ZodEnum<{
|
|
5088
|
+
support: "support";
|
|
5088
5089
|
registrar: "registrar";
|
|
5090
|
+
stattic: "stattic";
|
|
5091
|
+
waiting: "waiting";
|
|
5089
5092
|
provider: "provider";
|
|
5090
5093
|
user: "user";
|
|
5091
5094
|
team_admin: "team_admin";
|
|
5092
|
-
stattic: "stattic";
|
|
5093
|
-
support: "support";
|
|
5094
|
-
waiting: "waiting";
|
|
5095
5095
|
}>;
|
|
5096
5096
|
desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5097
5097
|
plan: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -5114,8 +5114,8 @@ export declare const domainActionCreateRequestSchema: z.ZodObject<{
|
|
|
5114
5114
|
connect_provider: "connect_provider";
|
|
5115
5115
|
}>;
|
|
5116
5116
|
subjectFacet: z.ZodEnum<{
|
|
5117
|
-
registrar: "registrar";
|
|
5118
5117
|
email: "email";
|
|
5118
|
+
registrar: "registrar";
|
|
5119
5119
|
dns_zone: "dns_zone";
|
|
5120
5120
|
hosting_binding: "hosting_binding";
|
|
5121
5121
|
forwarding: "forwarding";
|
|
@@ -5123,13 +5123,13 @@ export declare const domainActionCreateRequestSchema: z.ZodObject<{
|
|
|
5123
5123
|
}>;
|
|
5124
5124
|
subject: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5125
5125
|
owner: z.ZodEnum<{
|
|
5126
|
+
support: "support";
|
|
5126
5127
|
registrar: "registrar";
|
|
5128
|
+
stattic: "stattic";
|
|
5129
|
+
waiting: "waiting";
|
|
5127
5130
|
provider: "provider";
|
|
5128
5131
|
user: "user";
|
|
5129
5132
|
team_admin: "team_admin";
|
|
5130
|
-
stattic: "stattic";
|
|
5131
|
-
support: "support";
|
|
5132
|
-
waiting: "waiting";
|
|
5133
5133
|
}>;
|
|
5134
5134
|
desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5135
5135
|
plan: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -5158,8 +5158,8 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
|
|
|
5158
5158
|
connect_provider: "connect_provider";
|
|
5159
5159
|
}>;
|
|
5160
5160
|
subjectFacet: z.ZodEnum<{
|
|
5161
|
-
registrar: "registrar";
|
|
5162
5161
|
email: "email";
|
|
5162
|
+
registrar: "registrar";
|
|
5163
5163
|
dns_zone: "dns_zone";
|
|
5164
5164
|
hosting_binding: "hosting_binding";
|
|
5165
5165
|
forwarding: "forwarding";
|
|
@@ -5167,11 +5167,11 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
|
|
|
5167
5167
|
}>;
|
|
5168
5168
|
subject: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5169
5169
|
status: z.ZodEnum<{
|
|
5170
|
+
open: "open";
|
|
5170
5171
|
failed: "failed";
|
|
5171
|
-
running: "running";
|
|
5172
5172
|
canceled: "canceled";
|
|
5173
|
-
open: "open";
|
|
5174
5173
|
expired: "expired";
|
|
5174
|
+
running: "running";
|
|
5175
5175
|
observing: "observing";
|
|
5176
5176
|
blocked: "blocked";
|
|
5177
5177
|
dismissed: "dismissed";
|
|
@@ -5185,13 +5185,13 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
|
|
|
5185
5185
|
rollback_available: "rollback_available";
|
|
5186
5186
|
}>;
|
|
5187
5187
|
owner: z.ZodEnum<{
|
|
5188
|
+
support: "support";
|
|
5188
5189
|
registrar: "registrar";
|
|
5190
|
+
stattic: "stattic";
|
|
5191
|
+
waiting: "waiting";
|
|
5189
5192
|
provider: "provider";
|
|
5190
5193
|
user: "user";
|
|
5191
5194
|
team_admin: "team_admin";
|
|
5192
|
-
stattic: "stattic";
|
|
5193
|
-
support: "support";
|
|
5194
|
-
waiting: "waiting";
|
|
5195
5195
|
}>;
|
|
5196
5196
|
desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5197
5197
|
plan: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -5208,10 +5208,10 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
|
|
|
5208
5208
|
kind: z.ZodString;
|
|
5209
5209
|
status: z.ZodEnum<{
|
|
5210
5210
|
failed: "failed";
|
|
5211
|
+
canceled: "canceled";
|
|
5211
5212
|
queued: "queued";
|
|
5212
5213
|
running: "running";
|
|
5213
5214
|
succeeded: "succeeded";
|
|
5214
|
-
canceled: "canceled";
|
|
5215
5215
|
}>;
|
|
5216
5216
|
resources: z.ZodArray<z.ZodObject<{
|
|
5217
5217
|
type: z.ZodString;
|
|
@@ -5232,9 +5232,9 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
|
|
|
5232
5232
|
message: z.ZodString;
|
|
5233
5233
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5234
5234
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5235
|
+
registrar: "registrar";
|
|
5235
5236
|
wpcloud: "wpcloud";
|
|
5236
5237
|
dns: "dns";
|
|
5237
|
-
registrar: "registrar";
|
|
5238
5238
|
runtime: "runtime";
|
|
5239
5239
|
}>>>;
|
|
5240
5240
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -5299,10 +5299,10 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
5299
5299
|
hasMore: z.ZodBoolean;
|
|
5300
5300
|
}, z.core.$strip>;
|
|
5301
5301
|
managementKind: z.ZodOptional<z.ZodEnum<{
|
|
5302
|
+
stattic_nameservers: "stattic_nameservers";
|
|
5303
|
+
registrar_dns: "registrar_dns";
|
|
5302
5304
|
unmanaged_external: "unmanaged_external";
|
|
5303
5305
|
connected_provider: "connected_provider";
|
|
5304
|
-
registrar_dns: "registrar_dns";
|
|
5305
|
-
stattic_nameservers: "stattic_nameservers";
|
|
5306
5306
|
}>>;
|
|
5307
5307
|
provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5308
5308
|
writeStrategy: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5329,10 +5329,10 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
5329
5329
|
capabilities: z.ZodOptional<z.ZodPipe<z.ZodObject<{
|
|
5330
5330
|
domainId: z.ZodString;
|
|
5331
5331
|
managementKind: z.ZodEnum<{
|
|
5332
|
+
stattic_nameservers: "stattic_nameservers";
|
|
5333
|
+
registrar_dns: "registrar_dns";
|
|
5332
5334
|
unmanaged_external: "unmanaged_external";
|
|
5333
5335
|
connected_provider: "connected_provider";
|
|
5334
|
-
registrar_dns: "registrar_dns";
|
|
5335
|
-
stattic_nameservers: "stattic_nameservers";
|
|
5336
5336
|
}>;
|
|
5337
5337
|
dnsMode: z.ZodOptional<z.ZodEnum<{
|
|
5338
5338
|
authoritative: "authoritative";
|
|
@@ -5397,10 +5397,10 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
5397
5397
|
SRV: "SRV";
|
|
5398
5398
|
}>>>;
|
|
5399
5399
|
managementKinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5400
|
+
stattic_nameservers: "stattic_nameservers";
|
|
5401
|
+
registrar_dns: "registrar_dns";
|
|
5400
5402
|
unmanaged_external: "unmanaged_external";
|
|
5401
5403
|
connected_provider: "connected_provider";
|
|
5402
|
-
registrar_dns: "registrar_dns";
|
|
5403
|
-
stattic_nameservers: "stattic_nameservers";
|
|
5404
5404
|
}>>>;
|
|
5405
5405
|
providerKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5406
5406
|
expression: z.ZodOptional<z.ZodString>;
|
|
@@ -5562,9 +5562,9 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
5562
5562
|
message: z.ZodString;
|
|
5563
5563
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5564
5564
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5565
|
+
registrar: "registrar";
|
|
5565
5566
|
wpcloud: "wpcloud";
|
|
5566
5567
|
dns: "dns";
|
|
5567
|
-
registrar: "registrar";
|
|
5568
5568
|
runtime: "runtime";
|
|
5569
5569
|
}>>>;
|
|
5570
5570
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -5574,7 +5574,7 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
5574
5574
|
}, z.core.$strip>, z.ZodTransform<{
|
|
5575
5575
|
dnsMode: "authoritative" | "adapter";
|
|
5576
5576
|
domainId: string;
|
|
5577
|
-
managementKind: "
|
|
5577
|
+
managementKind: "stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider";
|
|
5578
5578
|
writeAuthority: "none" | "provider_credentials" | "registrar_authority" | "delegated_nameservers" | "internal_service_key";
|
|
5579
5579
|
provider: string | null;
|
|
5580
5580
|
recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
|
|
@@ -5598,7 +5598,7 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
5598
5598
|
fixSuggestion: string;
|
|
5599
5599
|
appliesWhen?: {
|
|
5600
5600
|
recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[] | undefined;
|
|
5601
|
-
managementKinds?: ("
|
|
5601
|
+
managementKinds?: ("stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider")[] | undefined;
|
|
5602
5602
|
providerKeys?: string[] | undefined;
|
|
5603
5603
|
expression?: string | undefined;
|
|
5604
5604
|
} | undefined;
|
|
@@ -5708,14 +5708,14 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
5708
5708
|
severity: "info" | "warning" | "error";
|
|
5709
5709
|
message: string;
|
|
5710
5710
|
path?: string | null | undefined;
|
|
5711
|
-
provider?: "
|
|
5711
|
+
provider?: "registrar" | "wpcloud" | "dns" | "runtime" | null | undefined;
|
|
5712
5712
|
details?: Record<string, unknown> | null | undefined;
|
|
5713
5713
|
fix?: string | null | undefined;
|
|
5714
5714
|
retryable?: boolean | null | undefined;
|
|
5715
5715
|
}[];
|
|
5716
5716
|
}, {
|
|
5717
5717
|
domainId: string;
|
|
5718
|
-
managementKind: "
|
|
5718
|
+
managementKind: "stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider";
|
|
5719
5719
|
writeAuthority: "none" | "provider_credentials" | "registrar_authority" | "delegated_nameservers" | "internal_service_key";
|
|
5720
5720
|
provider: string | null;
|
|
5721
5721
|
recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
|
|
@@ -5739,7 +5739,7 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
5739
5739
|
fixSuggestion: string;
|
|
5740
5740
|
appliesWhen?: {
|
|
5741
5741
|
recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[] | undefined;
|
|
5742
|
-
managementKinds?: ("
|
|
5742
|
+
managementKinds?: ("stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider")[] | undefined;
|
|
5743
5743
|
providerKeys?: string[] | undefined;
|
|
5744
5744
|
expression?: string | undefined;
|
|
5745
5745
|
} | undefined;
|
|
@@ -5849,7 +5849,7 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
|
|
|
5849
5849
|
severity: "info" | "warning" | "error";
|
|
5850
5850
|
message: string;
|
|
5851
5851
|
path?: string | null | undefined;
|
|
5852
|
-
provider?: "
|
|
5852
|
+
provider?: "registrar" | "wpcloud" | "dns" | "runtime" | null | undefined;
|
|
5853
5853
|
details?: Record<string, unknown> | null | undefined;
|
|
5854
5854
|
fix?: string | null | undefined;
|
|
5855
5855
|
retryable?: boolean | null | undefined;
|
|
@@ -6052,9 +6052,9 @@ export declare const domainDiagnosticsResponseSchema: z.ZodObject<{
|
|
|
6052
6052
|
message: z.ZodString;
|
|
6053
6053
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6054
6054
|
provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
6055
|
+
registrar: "registrar";
|
|
6055
6056
|
wpcloud: "wpcloud";
|
|
6056
6057
|
dns: "dns";
|
|
6057
|
-
registrar: "registrar";
|
|
6058
6058
|
runtime: "runtime";
|
|
6059
6059
|
}>>>;
|
|
6060
6060
|
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|