@spacefast/common 0.0.3 → 0.0.6

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.
Files changed (159) hide show
  1. package/dist/agents/connect-targets.d.ts +133 -0
  2. package/dist/agents/connect-targets.js +224 -0
  3. package/dist/brand.d.ts +1 -0
  4. package/dist/brand.js +5 -0
  5. package/dist/config/domains.d.ts +12 -6
  6. package/dist/config/domains.js +30 -38
  7. package/dist/contracts/access.d.ts +829 -129
  8. package/dist/contracts/access.js +771 -148
  9. package/dist/contracts/activity.d.ts +5 -5
  10. package/dist/contracts/activity.js +28 -2
  11. package/dist/contracts/annotations.d.ts +3 -5
  12. package/dist/contracts/api-keys.d.ts +9 -10
  13. package/dist/contracts/api-keys.js +9 -6
  14. package/dist/contracts/archives.d.ts +22 -16
  15. package/dist/contracts/archives.js +11 -4
  16. package/dist/contracts/billing.d.ts +21 -30
  17. package/dist/contracts/builds.d.ts +21 -17
  18. package/dist/contracts/builds.js +12 -0
  19. package/dist/contracts/channels.d.ts +2 -2
  20. package/dist/contracts/common.d.ts +7 -5
  21. package/dist/contracts/common.js +4 -0
  22. package/dist/contracts/continuation.d.ts +63 -0
  23. package/dist/contracts/continuation.js +91 -0
  24. package/dist/contracts/countries.d.ts +2 -0
  25. package/dist/contracts/countries.js +261 -0
  26. package/dist/contracts/deployments.d.ts +34 -34
  27. package/dist/contracts/device-auth.d.ts +4 -11
  28. package/dist/contracts/device-auth.js +4 -0
  29. package/dist/contracts/docs.d.ts +119 -0
  30. package/dist/contracts/docs.js +51 -0
  31. package/dist/contracts/domains.d.ts +295 -253
  32. package/dist/contracts/domains.js +26 -4
  33. package/dist/contracts/enums.d.ts +17 -18
  34. package/dist/contracts/enums.js +25 -14
  35. package/dist/contracts/error-code-meta.d.ts +84 -0
  36. package/dist/contracts/error-code-meta.js +99 -10
  37. package/dist/contracts/error-codes.d.ts +1 -1
  38. package/dist/contracts/error-codes.js +17 -0
  39. package/dist/contracts/events.d.ts +13 -13
  40. package/dist/contracts/features.d.ts +93 -23
  41. package/dist/contracts/features.js +178 -13
  42. package/dist/contracts/git.d.ts +3 -9
  43. package/dist/contracts/ids.d.ts +5 -0
  44. package/dist/contracts/ids.js +5 -0
  45. package/dist/contracts/internal.d.ts +3 -3
  46. package/dist/contracts/mcp.d.ts +34 -36
  47. package/dist/contracts/me.d.ts +8 -8
  48. package/dist/contracts/me.js +1 -1
  49. package/dist/contracts/oauth-resources.d.ts +19 -8
  50. package/dist/contracts/oauth-resources.js +44 -13
  51. package/dist/contracts/operations.d.ts +2 -2
  52. package/dist/contracts/plan-policy.d.ts +4 -4
  53. package/dist/contracts/platform.d.ts +3 -105
  54. package/dist/contracts/platform.js +0 -50
  55. package/dist/contracts/push-new.d.ts +4 -4
  56. package/dist/contracts/quotas.d.ts +2 -0
  57. package/dist/contracts/quotas.js +8 -0
  58. package/dist/contracts/repository-connections.d.ts +1 -3
  59. package/dist/contracts/resources.d.ts +112 -28
  60. package/dist/contracts/resources.js +26 -2
  61. package/dist/contracts/routes.d.ts +0 -2
  62. package/dist/contracts/runtime-api.d.ts +365 -43
  63. package/dist/contracts/runtime-api.js +275 -6
  64. package/dist/contracts/sites.d.ts +45 -28
  65. package/dist/contracts/sites.js +21 -0
  66. package/dist/contracts/space-config.d.ts +201 -2
  67. package/dist/contracts/space-config.js +135 -5
  68. package/dist/contracts/spaces.d.ts +423 -162
  69. package/dist/contracts/spaces.js +94 -8
  70. package/dist/contracts/superadmin-emails.d.ts +7 -5
  71. package/dist/contracts/superadmin-emails.js +8 -0
  72. package/dist/contracts/superadmin-queues.d.ts +32 -32
  73. package/dist/contracts/superadmin-spaces.d.ts +418 -24
  74. package/dist/contracts/superadmin-spaces.js +24 -0
  75. package/dist/contracts/superadmin-tenants.d.ts +8 -8
  76. package/dist/contracts/superadmin.d.ts +17 -104
  77. package/dist/contracts/superadmin.js +6 -14
  78. package/dist/contracts/tags.d.ts +42 -41
  79. package/dist/contracts/tags.js +2 -1
  80. package/dist/contracts/teams.d.ts +40 -23
  81. package/dist/contracts/teams.js +20 -1
  82. package/dist/contracts/theme-json.d.ts +30 -0
  83. package/dist/contracts/theme-json.js +48 -0
  84. package/dist/contracts/transfers.d.ts +9 -9
  85. package/dist/contracts/variables.d.ts +14 -16
  86. package/dist/contracts/variables.js +0 -5
  87. package/dist/contracts/webhooks.d.ts +6 -4
  88. package/dist/contracts/webhooks.js +1 -1
  89. package/dist/contracts/zero.d.ts +13 -18
  90. package/dist/docs/agent-prose.d.ts +43 -3
  91. package/dist/docs/agent-prose.js +153 -10
  92. package/dist/docs/agent-setup.js +48 -15
  93. package/dist/docs/agent-solutions.d.ts +5 -5
  94. package/dist/docs/agent-solutions.js +2 -2
  95. package/dist/docs/catalog.d.ts +650 -0
  96. package/dist/docs/catalog.js +758 -0
  97. package/dist/docs/error-docs.d.ts +0 -2
  98. package/dist/docs/error-docs.js +89 -35
  99. package/dist/docs/index-build.d.ts +17 -0
  100. package/dist/docs/index-build.js +24 -0
  101. package/dist/docs/search.d.ts +54 -0
  102. package/dist/docs/search.js +96 -0
  103. package/dist/docs/skill-distribution.d.ts +5 -3
  104. package/dist/docs/skill-distribution.js +8 -8
  105. package/dist/utils/access-match.d.ts +39 -0
  106. package/dist/utils/access-match.js +296 -0
  107. package/dist/utils/auth-redirect.d.ts +3 -1
  108. package/dist/utils/auth-redirect.js +21 -1
  109. package/dist/utils/build-settings.d.ts +6 -0
  110. package/dist/utils/build-settings.js +429 -46
  111. package/dist/utils/claim-token.d.ts +8 -0
  112. package/dist/utils/claim-token.js +23 -2
  113. package/dist/utils/content-type.d.ts +1 -0
  114. package/dist/utils/content-type.js +1 -1
  115. package/dist/utils/credential-policy.d.ts +54 -0
  116. package/dist/utils/{access-policy.js → credential-policy.js} +28 -2
  117. package/dist/utils/gate-theme.d.ts +61 -0
  118. package/dist/utils/gate-theme.js +217 -0
  119. package/dist/utils/git-repository.d.ts +0 -1
  120. package/dist/utils/git-repository.js +0 -3
  121. package/dist/utils/id-hints.d.ts +8 -0
  122. package/dist/utils/id-hints.js +61 -0
  123. package/dist/utils/local-space-state.d.ts +91 -0
  124. package/dist/utils/local-space-state.js +251 -0
  125. package/dist/utils/oauth-signed-query.d.ts +8 -0
  126. package/dist/utils/oauth-signed-query.js +26 -0
  127. package/dist/utils/publish-detection.d.ts +0 -8
  128. package/dist/utils/publish-detection.js +0 -93
  129. package/dist/utils/publish-policy.d.ts +6 -5
  130. package/dist/utils/publish-policy.js +71 -7
  131. package/dist/utils/query-keys.d.ts +17 -6
  132. package/dist/utils/query-keys.js +27 -4
  133. package/dist/utils/runtime-paths.d.ts +0 -1
  134. package/dist/utils/runtime-paths.js +0 -1
  135. package/dist/utils/runtime-upload-batch.d.ts +18 -0
  136. package/dist/utils/runtime-upload-batch.js +90 -0
  137. package/dist/utils/runtime-upload.d.ts +2 -0
  138. package/dist/utils/runtime-upload.js +5 -0
  139. package/dist/utils/space-config.d.ts +4 -0
  140. package/dist/utils/space-config.js +10 -1
  141. package/dist/utils/space-theme.d.ts +2 -0
  142. package/dist/utils/space-theme.js +9 -0
  143. package/dist/utils/static-runtime-policy.d.ts +1 -1
  144. package/dist/utils/static-runtime-policy.js +47 -15
  145. package/dist/utils/upload-session.d.ts +1 -1
  146. package/dist/utils/wpcom-auth-redirects.d.ts +32 -2
  147. package/dist/utils/wpcom-auth-redirects.js +26 -10
  148. package/dist/vocabulary.d.ts +130 -30
  149. package/dist/vocabulary.js +77 -36
  150. package/package.json +16 -1
  151. package/dist/contracts/account.d.ts +0 -28
  152. package/dist/contracts/account.js +0 -54
  153. package/dist/contracts/intercom.d.ts +0 -6
  154. package/dist/contracts/intercom.js +0 -5
  155. package/dist/contracts/telemetry.d.ts +0 -2
  156. package/dist/contracts/telemetry.js +0 -1
  157. package/dist/utils/access-policy.d.ts +0 -39
  158. package/dist/utils/error-display.d.ts +0 -7
  159. package/dist/utils/error-display.js +0 -42
@@ -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,17 +137,17 @@ 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";
142
+ stattic: "stattic";
141
143
  provider: "provider";
142
144
  user: "user";
143
- stattic: "stattic";
144
- support: "support";
145
145
  waiting: "waiting";
146
146
  }>;
147
147
  status: z.ZodEnum<{
148
+ active: "active";
148
149
  running: "running";
149
150
  resolved: "resolved";
150
- active: "active";
151
151
  waiting: "waiting";
152
152
  dismissed: "dismissed";
153
153
  }>;
@@ -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,17 +375,17 @@ 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";
380
+ stattic: "stattic";
379
381
  provider: "provider";
380
382
  user: "user";
381
- stattic: "stattic";
382
- support: "support";
383
383
  waiting: "waiting";
384
384
  }>;
385
385
  status: z.ZodEnum<{
386
+ active: "active";
386
387
  running: "running";
387
388
  resolved: "resolved";
388
- active: "active";
389
389
  waiting: "waiting";
390
390
  dismissed: "dismissed";
391
391
  }>;
@@ -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,17 +622,17 @@ 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";
627
+ stattic: "stattic";
626
628
  provider: "provider";
627
629
  user: "user";
628
- stattic: "stattic";
629
- support: "support";
630
630
  waiting: "waiting";
631
631
  }>;
632
632
  status: z.ZodEnum<{
633
+ active: "active";
633
634
  running: "running";
634
635
  resolved: "resolved";
635
- active: "active";
636
636
  waiting: "waiting";
637
637
  dismissed: "dismissed";
638
638
  }>;
@@ -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,17 +867,17 @@ 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";
872
+ stattic: "stattic";
871
873
  provider: "provider";
872
874
  user: "user";
873
- stattic: "stattic";
874
- support: "support";
875
875
  waiting: "waiting";
876
876
  }>;
877
877
  status: z.ZodEnum<{
878
+ active: "active";
878
879
  running: "running";
879
880
  resolved: "resolved";
880
- active: "active";
881
881
  waiting: "waiting";
882
882
  dismissed: "dismissed";
883
883
  }>;
@@ -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,17 +1221,17 @@ 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";
1226
+ stattic: "stattic";
1225
1227
  provider: "provider";
1226
1228
  user: "user";
1227
- stattic: "stattic";
1228
- support: "support";
1229
1229
  waiting: "waiting";
1230
1230
  }>;
1231
1231
  status: z.ZodEnum<{
1232
+ active: "active";
1232
1233
  running: "running";
1233
1234
  resolved: "resolved";
1234
- active: "active";
1235
1235
  waiting: "waiting";
1236
1236
  dismissed: "dismissed";
1237
1237
  }>;
@@ -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,17 +1522,17 @@ 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";
1527
+ stattic: "stattic";
1526
1528
  provider: "provider";
1527
1529
  user: "user";
1528
- stattic: "stattic";
1529
- support: "support";
1530
1530
  waiting: "waiting";
1531
1531
  }>;
1532
1532
  status: z.ZodEnum<{
1533
+ active: "active";
1533
1534
  running: "running";
1534
1535
  resolved: "resolved";
1535
- active: "active";
1536
1536
  waiting: "waiting";
1537
1537
  dismissed: "dismissed";
1538
1538
  }>;
@@ -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
- pending: "pending";
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
- pending: "pending";
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
- pending: "pending";
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
- pending: "pending";
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<{
@@ -2111,9 +2111,9 @@ export declare const domainBindingCreateSchema: z.ZodObject<{
2111
2111
  hostname: z.ZodOptional<z.ZodString>;
2112
2112
  spaceId: z.ZodString;
2113
2113
  mode: z.ZodDefault<z.ZodEnum<{
2114
- serve: "serve";
2115
2114
  redirect: "redirect";
2116
2115
  proxy: "proxy";
2116
+ serve: "serve";
2117
2117
  }>>;
2118
2118
  pathPrefix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2119
2119
  wildcard: z.ZodOptional<z.ZodBoolean>;
@@ -2132,9 +2132,9 @@ export declare const domainBindingCreateSchema: z.ZodObject<{
2132
2132
  }, z.core.$strip>;
2133
2133
  export declare const domainBindingPatchSchema: z.ZodObject<{
2134
2134
  mode: z.ZodOptional<z.ZodEnum<{
2135
- serve: "serve";
2136
2135
  redirect: "redirect";
2137
2136
  proxy: "proxy";
2137
+ serve: "serve";
2138
2138
  }>>;
2139
2139
  pathPrefix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2140
2140
  wildcard: z.ZodOptional<z.ZodBoolean>;
@@ -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
- pending: "pending";
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
- pending: "pending";
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
- pending: "pending";
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
- pending: "pending";
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
- pending: "pending";
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
- pending: "pending";
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,17 +3238,17 @@ 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";
3243
+ stattic: "stattic";
3242
3244
  provider: "provider";
3243
3245
  user: "user";
3244
- stattic: "stattic";
3245
- support: "support";
3246
3246
  waiting: "waiting";
3247
3247
  }>;
3248
3248
  status: z.ZodEnum<{
3249
+ active: "active";
3249
3250
  running: "running";
3250
3251
  resolved: "resolved";
3251
- active: "active";
3252
3252
  waiting: "waiting";
3253
3253
  dismissed: "dismissed";
3254
3254
  }>;
@@ -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>>>;
@@ -3421,8 +3421,8 @@ export declare const domainDnsRecordSchema: z.ZodObject<{
3421
3421
  CNAME: "CNAME";
3422
3422
  TXT: "TXT";
3423
3423
  ALIAS: "ALIAS";
3424
- CAA: "CAA";
3425
3424
  MX: "MX";
3425
+ CAA: "CAA";
3426
3426
  NS: "NS";
3427
3427
  SRV: "SRV";
3428
3428
  }>;
@@ -3480,16 +3480,16 @@ export declare const domainDnsExclusiveFieldGroupSchema: z.ZodObject<{
3480
3480
  CNAME: "CNAME";
3481
3481
  TXT: "TXT";
3482
3482
  ALIAS: "ALIAS";
3483
- CAA: "CAA";
3484
3483
  MX: "MX";
3484
+ CAA: "CAA";
3485
3485
  NS: "NS";
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>;
@@ -3629,8 +3629,8 @@ export declare const domainDnsFeatureCapabilitiesSchema: z.ZodObject<{
3629
3629
  CNAME: "CNAME";
3630
3630
  TXT: "TXT";
3631
3631
  ALIAS: "ALIAS";
3632
- CAA: "CAA";
3633
3632
  MX: "MX";
3633
+ CAA: "CAA";
3634
3634
  NS: "NS";
3635
3635
  SRV: "SRV";
3636
3636
  }>>;
@@ -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";
@@ -3688,8 +3688,8 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
3688
3688
  CNAME: "CNAME";
3689
3689
  TXT: "TXT";
3690
3690
  ALIAS: "ALIAS";
3691
- CAA: "CAA";
3692
3691
  MX: "MX";
3692
+ CAA: "CAA";
3693
3693
  NS: "NS";
3694
3694
  SRV: "SRV";
3695
3695
  }>>;
@@ -3727,16 +3727,16 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
3727
3727
  CNAME: "CNAME";
3728
3728
  TXT: "TXT";
3729
3729
  ALIAS: "ALIAS";
3730
- CAA: "CAA";
3731
3730
  MX: "MX";
3731
+ CAA: "CAA";
3732
3732
  NS: "NS";
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>;
@@ -3843,8 +3843,8 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
3843
3843
  CNAME: "CNAME";
3844
3844
  TXT: "TXT";
3845
3845
  ALIAS: "ALIAS";
3846
- CAA: "CAA";
3847
3846
  MX: "MX";
3847
+ CAA: "CAA";
3848
3848
  NS: "NS";
3849
3849
  SRV: "SRV";
3850
3850
  }>>;
@@ -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,10 +3910,10 @@ 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: "unmanaged_external" | "connected_provider" | "registrar_dns" | "stattic_nameservers";
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
- recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
3916
+ recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[];
3917
3917
  fields: {
3918
3918
  path: string;
3919
3919
  type: "string" | "number" | "boolean" | "object" | "array" | "enum";
@@ -3933,8 +3933,8 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
3933
3933
  message: string;
3934
3934
  fixSuggestion: string;
3935
3935
  appliesWhen?: {
3936
- recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[] | undefined;
3937
- managementKinds?: ("unmanaged_external" | "connected_provider" | "registrar_dns" | "stattic_nameservers")[] | undefined;
3936
+ recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[] | undefined;
3937
+ managementKinds?: ("stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider")[] | undefined;
3938
3938
  providerKeys?: string[] | undefined;
3939
3939
  expression?: string | undefined;
3940
3940
  } | undefined;
@@ -4015,7 +4015,7 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
4015
4015
  };
4016
4016
  proxied: {
4017
4017
  supported: boolean;
4018
- editableTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
4018
+ editableTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[];
4019
4019
  ttlBehavior?: "automatic_when_enabled" | undefined;
4020
4020
  };
4021
4021
  comments: {
@@ -4044,17 +4044,17 @@ 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?: "wpcloud" | "dns" | "registrar" | "runtime" | null | undefined;
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: "unmanaged_external" | "connected_provider" | "registrar_dns" | "stattic_nameservers";
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
- recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
4057
+ recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[];
4058
4058
  fields: {
4059
4059
  path: string;
4060
4060
  type: "string" | "number" | "boolean" | "object" | "array" | "enum";
@@ -4074,8 +4074,8 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
4074
4074
  message: string;
4075
4075
  fixSuggestion: string;
4076
4076
  appliesWhen?: {
4077
- recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[] | undefined;
4078
- managementKinds?: ("unmanaged_external" | "connected_provider" | "registrar_dns" | "stattic_nameservers")[] | undefined;
4077
+ recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[] | undefined;
4078
+ managementKinds?: ("stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider")[] | undefined;
4079
4079
  providerKeys?: string[] | undefined;
4080
4080
  expression?: string | undefined;
4081
4081
  } | undefined;
@@ -4156,7 +4156,7 @@ export declare const domainDnsCapabilitiesSchema: z.ZodPipe<z.ZodObject<{
4156
4156
  };
4157
4157
  proxied: {
4158
4158
  supported: boolean;
4159
- editableTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
4159
+ editableTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[];
4160
4160
  ttlBehavior?: "automatic_when_enabled" | undefined;
4161
4161
  };
4162
4162
  comments: {
@@ -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?: "wpcloud" | "dns" | "registrar" | "runtime" | null | undefined;
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<{
@@ -4328,25 +4328,28 @@ export declare const domainProviderConnectionCreateSchema: z.ZodObject<{
4328
4328
  }, z.core.$strip>;
4329
4329
  export declare const domainProviderConnectionOAuthCompleteSchema: z.ZodObject<{
4330
4330
  teamId: z.ZodOptional<z.ZodString>;
4331
- provider: z.ZodLiteral<"cloudflare">;
4331
+ provider: z.ZodEnum<{
4332
+ cloudflare: "cloudflare";
4333
+ wpcom: "wpcom";
4334
+ }>;
4332
4335
  label: z.ZodOptional<z.ZodString>;
4333
4336
  }, z.core.$strip>;
4334
4337
  export declare const domainProviderZoneSchema: z.ZodObject<{
4335
4338
  id: z.ZodString;
4336
4339
  name: z.ZodString;
4337
4340
  provider: z.ZodEnum<{
4338
- wpcom: "wpcom";
4339
- stattic: "stattic";
4340
4341
  manual: "manual";
4342
+ stattic: "stattic";
4343
+ route53: "route53";
4341
4344
  cloudflare: "cloudflare";
4342
4345
  vercel: "vercel";
4346
+ wpcom: "wpcom";
4343
4347
  pressable: "pressable";
4344
- route53: "route53";
4345
4348
  }>;
4346
4349
  connectionId: z.ZodString;
4347
4350
  status: z.ZodDefault<z.ZodEnum<{
4348
- unknown: "unknown";
4349
4351
  active: "active";
4352
+ unknown: "unknown";
4350
4353
  pending: "pending";
4351
4354
  moved: "moved";
4352
4355
  }>>;
@@ -4357,18 +4360,18 @@ export declare const domainProviderZoneListResponseSchema: z.ZodObject<{
4357
4360
  id: z.ZodString;
4358
4361
  name: z.ZodString;
4359
4362
  provider: z.ZodEnum<{
4360
- wpcom: "wpcom";
4361
- stattic: "stattic";
4362
4363
  manual: "manual";
4364
+ stattic: "stattic";
4365
+ route53: "route53";
4363
4366
  cloudflare: "cloudflare";
4364
4367
  vercel: "vercel";
4368
+ wpcom: "wpcom";
4365
4369
  pressable: "pressable";
4366
- route53: "route53";
4367
4370
  }>;
4368
4371
  connectionId: z.ZodString;
4369
4372
  status: z.ZodDefault<z.ZodEnum<{
4370
- unknown: "unknown";
4371
4373
  active: "active";
4374
+ unknown: "unknown";
4372
4375
  pending: "pending";
4373
4376
  moved: "moved";
4374
4377
  }>>;
@@ -4384,6 +4387,31 @@ export declare const domainProviderZoneAttachSchema: z.ZodObject<{
4384
4387
  providerZoneId: z.ZodString;
4385
4388
  providerZoneName: z.ZodOptional<z.ZodString>;
4386
4389
  }, z.core.$strip>;
4390
+ export declare const domainConnectDiscoverySchema: z.ZodObject<{
4391
+ supported: z.ZodBoolean;
4392
+ gated: z.ZodOptional<z.ZodBoolean>;
4393
+ provider: z.ZodOptional<z.ZodObject<{
4394
+ urlSyncUX: z.ZodOptional<z.ZodString>;
4395
+ urlAPI: z.ZodOptional<z.ZodString>;
4396
+ urlControlPanel: z.ZodOptional<z.ZodString>;
4397
+ providerName: z.ZodOptional<z.ZodString>;
4398
+ }, z.core.$strip>>;
4399
+ checkedAt: z.ZodString;
4400
+ }, z.core.$strip>;
4401
+ export declare const domainConnectDiscoveryResponseSchema: z.ZodObject<{
4402
+ data: z.ZodObject<{
4403
+ supported: z.ZodBoolean;
4404
+ gated: z.ZodOptional<z.ZodBoolean>;
4405
+ provider: z.ZodOptional<z.ZodObject<{
4406
+ urlSyncUX: z.ZodOptional<z.ZodString>;
4407
+ urlAPI: z.ZodOptional<z.ZodString>;
4408
+ urlControlPanel: z.ZodOptional<z.ZodString>;
4409
+ providerName: z.ZodOptional<z.ZodString>;
4410
+ }, z.core.$strip>>;
4411
+ checkedAt: z.ZodString;
4412
+ }, z.core.$strip>;
4413
+ }, z.core.$strip>;
4414
+ export type DomainConnectDiscovery = z.infer<typeof domainConnectDiscoverySchema>;
4387
4415
  export declare const domainProviderSnapshotRefreshResponseSchema: z.ZodObject<{
4388
4416
  data: z.ZodObject<{
4389
4417
  operationId: z.ZodString;
@@ -4402,10 +4430,10 @@ export declare const domainProviderSnapshotRefreshResponseSchema: z.ZodObject<{
4402
4430
  kind: z.ZodString;
4403
4431
  status: z.ZodEnum<{
4404
4432
  failed: "failed";
4433
+ canceled: "canceled";
4405
4434
  queued: "queued";
4406
4435
  running: "running";
4407
4436
  succeeded: "succeeded";
4408
- canceled: "canceled";
4409
4437
  }>;
4410
4438
  resources: z.ZodArray<z.ZodObject<{
4411
4439
  type: z.ZodString;
@@ -4426,9 +4454,9 @@ export declare const domainProviderSnapshotRefreshResponseSchema: z.ZodObject<{
4426
4454
  message: z.ZodString;
4427
4455
  path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4428
4456
  provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4457
+ registrar: "registrar";
4429
4458
  wpcloud: "wpcloud";
4430
4459
  dns: "dns";
4431
- registrar: "registrar";
4432
4460
  runtime: "runtime";
4433
4461
  }>>>;
4434
4462
  details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
@@ -4477,10 +4505,10 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
4477
4505
  }>;
4478
4506
  status: z.ZodEnum<{
4479
4507
  failed: "failed";
4508
+ canceled: "canceled";
4480
4509
  queued: "queued";
4481
4510
  running: "running";
4482
4511
  succeeded: "succeeded";
4483
- canceled: "canceled";
4484
4512
  observing: "observing";
4485
4513
  }>;
4486
4514
  provider: z.ZodString;
@@ -4498,9 +4526,9 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
4498
4526
  message: z.ZodString;
4499
4527
  path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4500
4528
  provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4529
+ registrar: "registrar";
4501
4530
  wpcloud: "wpcloud";
4502
4531
  dns: "dns";
4503
- registrar: "registrar";
4504
4532
  runtime: "runtime";
4505
4533
  }>>>;
4506
4534
  details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
@@ -4557,8 +4585,8 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
4557
4585
  dangerous: "dangerous";
4558
4586
  }>;
4559
4587
  subjectFacet: z.ZodEnum<{
4560
- registrar: "registrar";
4561
4588
  email: "email";
4589
+ registrar: "registrar";
4562
4590
  dns_zone: "dns_zone";
4563
4591
  hosting_binding: "hosting_binding";
4564
4592
  forwarding: "forwarding";
@@ -4571,17 +4599,17 @@ export declare const domainDnsOperationSchema: z.ZodObject<{
4571
4599
  connectionId: z.ZodOptional<z.ZodString>;
4572
4600
  }, z.core.$strip>;
4573
4601
  owner: z.ZodEnum<{
4602
+ support: "support";
4574
4603
  registrar: "registrar";
4604
+ stattic: "stattic";
4575
4605
  provider: "provider";
4576
4606
  user: "user";
4577
- stattic: "stattic";
4578
- support: "support";
4579
4607
  waiting: "waiting";
4580
4608
  }>;
4581
4609
  status: z.ZodEnum<{
4610
+ active: "active";
4582
4611
  running: "running";
4583
4612
  resolved: "resolved";
4584
- active: "active";
4585
4613
  waiting: "waiting";
4586
4614
  dismissed: "dismissed";
4587
4615
  }>;
@@ -4678,10 +4706,10 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
4678
4706
  }>;
4679
4707
  status: z.ZodEnum<{
4680
4708
  failed: "failed";
4709
+ canceled: "canceled";
4681
4710
  queued: "queued";
4682
4711
  running: "running";
4683
4712
  succeeded: "succeeded";
4684
- canceled: "canceled";
4685
4713
  observing: "observing";
4686
4714
  }>;
4687
4715
  provider: z.ZodString;
@@ -4699,9 +4727,9 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
4699
4727
  message: z.ZodString;
4700
4728
  path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4701
4729
  provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4730
+ registrar: "registrar";
4702
4731
  wpcloud: "wpcloud";
4703
4732
  dns: "dns";
4704
- registrar: "registrar";
4705
4733
  runtime: "runtime";
4706
4734
  }>>>;
4707
4735
  details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
@@ -4758,8 +4786,8 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
4758
4786
  dangerous: "dangerous";
4759
4787
  }>;
4760
4788
  subjectFacet: z.ZodEnum<{
4761
- registrar: "registrar";
4762
4789
  email: "email";
4790
+ registrar: "registrar";
4763
4791
  dns_zone: "dns_zone";
4764
4792
  hosting_binding: "hosting_binding";
4765
4793
  forwarding: "forwarding";
@@ -4772,17 +4800,17 @@ export declare const domainDnsOperationListResponseSchema: z.ZodObject<{
4772
4800
  connectionId: z.ZodOptional<z.ZodString>;
4773
4801
  }, z.core.$strip>;
4774
4802
  owner: z.ZodEnum<{
4803
+ support: "support";
4775
4804
  registrar: "registrar";
4805
+ stattic: "stattic";
4776
4806
  provider: "provider";
4777
4807
  user: "user";
4778
- stattic: "stattic";
4779
- support: "support";
4780
4808
  waiting: "waiting";
4781
4809
  }>;
4782
4810
  status: z.ZodEnum<{
4811
+ active: "active";
4783
4812
  running: "running";
4784
4813
  resolved: "resolved";
4785
- active: "active";
4786
4814
  waiting: "waiting";
4787
4815
  dismissed: "dismissed";
4788
4816
  }>;
@@ -4874,19 +4902,19 @@ export declare const domainActionKindSchema: z.ZodEnum<{
4874
4902
  connect_provider: "connect_provider";
4875
4903
  }>;
4876
4904
  export declare const domainActionSubjectFacetSchema: z.ZodEnum<{
4877
- registrar: "registrar";
4878
4905
  email: "email";
4906
+ registrar: "registrar";
4879
4907
  dns_zone: "dns_zone";
4880
4908
  hosting_binding: "hosting_binding";
4881
4909
  forwarding: "forwarding";
4882
4910
  provider_connection: "provider_connection";
4883
4911
  }>;
4884
4912
  export declare const domainActionStatusSchema: z.ZodEnum<{
4913
+ open: "open";
4885
4914
  failed: "failed";
4886
- running: "running";
4887
4915
  canceled: "canceled";
4888
- open: "open";
4889
4916
  expired: "expired";
4917
+ running: "running";
4890
4918
  observing: "observing";
4891
4919
  blocked: "blocked";
4892
4920
  dismissed: "dismissed";
@@ -4900,12 +4928,12 @@ export declare const domainActionStatusSchema: z.ZodEnum<{
4900
4928
  rollback_available: "rollback_available";
4901
4929
  }>;
4902
4930
  export declare const domainActionOwnerSchema: z.ZodEnum<{
4931
+ support: "support";
4903
4932
  registrar: "registrar";
4933
+ stattic: "stattic";
4904
4934
  provider: "provider";
4905
4935
  user: "user";
4906
4936
  team_admin: "team_admin";
4907
- stattic: "stattic";
4908
- support: "support";
4909
4937
  waiting: "waiting";
4910
4938
  }>;
4911
4939
  export declare const domainActionSchema: z.ZodObject<{
@@ -4926,8 +4954,8 @@ export declare const domainActionSchema: z.ZodObject<{
4926
4954
  connect_provider: "connect_provider";
4927
4955
  }>;
4928
4956
  subjectFacet: z.ZodEnum<{
4929
- registrar: "registrar";
4930
4957
  email: "email";
4958
+ registrar: "registrar";
4931
4959
  dns_zone: "dns_zone";
4932
4960
  hosting_binding: "hosting_binding";
4933
4961
  forwarding: "forwarding";
@@ -4935,11 +4963,11 @@ export declare const domainActionSchema: z.ZodObject<{
4935
4963
  }>;
4936
4964
  subject: z.ZodRecord<z.ZodString, z.ZodUnknown>;
4937
4965
  status: z.ZodEnum<{
4966
+ open: "open";
4938
4967
  failed: "failed";
4939
- running: "running";
4940
4968
  canceled: "canceled";
4941
- open: "open";
4942
4969
  expired: "expired";
4970
+ running: "running";
4943
4971
  observing: "observing";
4944
4972
  blocked: "blocked";
4945
4973
  dismissed: "dismissed";
@@ -4953,12 +4981,12 @@ export declare const domainActionSchema: z.ZodObject<{
4953
4981
  rollback_available: "rollback_available";
4954
4982
  }>;
4955
4983
  owner: z.ZodEnum<{
4984
+ support: "support";
4956
4985
  registrar: "registrar";
4986
+ stattic: "stattic";
4957
4987
  provider: "provider";
4958
4988
  user: "user";
4959
4989
  team_admin: "team_admin";
4960
- stattic: "stattic";
4961
- support: "support";
4962
4990
  waiting: "waiting";
4963
4991
  }>;
4964
4992
  desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -4990,8 +5018,8 @@ export declare const domainActionListResponseSchema: z.ZodObject<{
4990
5018
  connect_provider: "connect_provider";
4991
5019
  }>;
4992
5020
  subjectFacet: z.ZodEnum<{
4993
- registrar: "registrar";
4994
5021
  email: "email";
5022
+ registrar: "registrar";
4995
5023
  dns_zone: "dns_zone";
4996
5024
  hosting_binding: "hosting_binding";
4997
5025
  forwarding: "forwarding";
@@ -4999,11 +5027,11 @@ export declare const domainActionListResponseSchema: z.ZodObject<{
4999
5027
  }>;
5000
5028
  subject: z.ZodRecord<z.ZodString, z.ZodUnknown>;
5001
5029
  status: z.ZodEnum<{
5030
+ open: "open";
5002
5031
  failed: "failed";
5003
- running: "running";
5004
5032
  canceled: "canceled";
5005
- open: "open";
5006
5033
  expired: "expired";
5034
+ running: "running";
5007
5035
  observing: "observing";
5008
5036
  blocked: "blocked";
5009
5037
  dismissed: "dismissed";
@@ -5017,12 +5045,12 @@ export declare const domainActionListResponseSchema: z.ZodObject<{
5017
5045
  rollback_available: "rollback_available";
5018
5046
  }>;
5019
5047
  owner: z.ZodEnum<{
5048
+ support: "support";
5020
5049
  registrar: "registrar";
5050
+ stattic: "stattic";
5021
5051
  provider: "provider";
5022
5052
  user: "user";
5023
5053
  team_admin: "team_admin";
5024
- stattic: "stattic";
5025
- support: "support";
5026
5054
  waiting: "waiting";
5027
5055
  }>;
5028
5056
  desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -5044,11 +5072,11 @@ export declare const domainActionListQuerySchema: z.ZodObject<{
5044
5072
  limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
5045
5073
  cursor: z.ZodOptional<z.ZodString>;
5046
5074
  status: z.ZodOptional<z.ZodEnum<{
5075
+ open: "open";
5047
5076
  failed: "failed";
5048
- running: "running";
5049
5077
  canceled: "canceled";
5050
- open: "open";
5051
5078
  expired: "expired";
5079
+ running: "running";
5052
5080
  observing: "observing";
5053
5081
  blocked: "blocked";
5054
5082
  dismissed: "dismissed";
@@ -5076,8 +5104,8 @@ export declare const domainActionPreviewRequestSchema: z.ZodObject<{
5076
5104
  connect_provider: "connect_provider";
5077
5105
  }>;
5078
5106
  subjectFacet: z.ZodEnum<{
5079
- registrar: "registrar";
5080
5107
  email: "email";
5108
+ registrar: "registrar";
5081
5109
  dns_zone: "dns_zone";
5082
5110
  hosting_binding: "hosting_binding";
5083
5111
  forwarding: "forwarding";
@@ -5085,12 +5113,12 @@ export declare const domainActionPreviewRequestSchema: z.ZodObject<{
5085
5113
  }>;
5086
5114
  subject: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5087
5115
  owner: z.ZodEnum<{
5116
+ support: "support";
5088
5117
  registrar: "registrar";
5118
+ stattic: "stattic";
5089
5119
  provider: "provider";
5090
5120
  user: "user";
5091
5121
  team_admin: "team_admin";
5092
- stattic: "stattic";
5093
- support: "support";
5094
5122
  waiting: "waiting";
5095
5123
  }>;
5096
5124
  desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -5114,8 +5142,8 @@ export declare const domainActionCreateRequestSchema: z.ZodObject<{
5114
5142
  connect_provider: "connect_provider";
5115
5143
  }>;
5116
5144
  subjectFacet: z.ZodEnum<{
5117
- registrar: "registrar";
5118
5145
  email: "email";
5146
+ registrar: "registrar";
5119
5147
  dns_zone: "dns_zone";
5120
5148
  hosting_binding: "hosting_binding";
5121
5149
  forwarding: "forwarding";
@@ -5123,12 +5151,12 @@ export declare const domainActionCreateRequestSchema: z.ZodObject<{
5123
5151
  }>;
5124
5152
  subject: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5125
5153
  owner: z.ZodEnum<{
5154
+ support: "support";
5126
5155
  registrar: "registrar";
5156
+ stattic: "stattic";
5127
5157
  provider: "provider";
5128
5158
  user: "user";
5129
5159
  team_admin: "team_admin";
5130
- stattic: "stattic";
5131
- support: "support";
5132
5160
  waiting: "waiting";
5133
5161
  }>;
5134
5162
  desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -5158,8 +5186,8 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
5158
5186
  connect_provider: "connect_provider";
5159
5187
  }>;
5160
5188
  subjectFacet: z.ZodEnum<{
5161
- registrar: "registrar";
5162
5189
  email: "email";
5190
+ registrar: "registrar";
5163
5191
  dns_zone: "dns_zone";
5164
5192
  hosting_binding: "hosting_binding";
5165
5193
  forwarding: "forwarding";
@@ -5167,11 +5195,11 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
5167
5195
  }>;
5168
5196
  subject: z.ZodRecord<z.ZodString, z.ZodUnknown>;
5169
5197
  status: z.ZodEnum<{
5198
+ open: "open";
5170
5199
  failed: "failed";
5171
- running: "running";
5172
5200
  canceled: "canceled";
5173
- open: "open";
5174
5201
  expired: "expired";
5202
+ running: "running";
5175
5203
  observing: "observing";
5176
5204
  blocked: "blocked";
5177
5205
  dismissed: "dismissed";
@@ -5185,12 +5213,12 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
5185
5213
  rollback_available: "rollback_available";
5186
5214
  }>;
5187
5215
  owner: z.ZodEnum<{
5216
+ support: "support";
5188
5217
  registrar: "registrar";
5218
+ stattic: "stattic";
5189
5219
  provider: "provider";
5190
5220
  user: "user";
5191
5221
  team_admin: "team_admin";
5192
- stattic: "stattic";
5193
- support: "support";
5194
5222
  waiting: "waiting";
5195
5223
  }>;
5196
5224
  desiredOutcome: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -5208,10 +5236,10 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
5208
5236
  kind: z.ZodString;
5209
5237
  status: z.ZodEnum<{
5210
5238
  failed: "failed";
5239
+ canceled: "canceled";
5211
5240
  queued: "queued";
5212
5241
  running: "running";
5213
5242
  succeeded: "succeeded";
5214
- canceled: "canceled";
5215
5243
  }>;
5216
5244
  resources: z.ZodArray<z.ZodObject<{
5217
5245
  type: z.ZodString;
@@ -5232,9 +5260,9 @@ export declare const domainActionMutationResponseSchema: z.ZodObject<{
5232
5260
  message: z.ZodString;
5233
5261
  path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5234
5262
  provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5263
+ registrar: "registrar";
5235
5264
  wpcloud: "wpcloud";
5236
5265
  dns: "dns";
5237
- registrar: "registrar";
5238
5266
  runtime: "runtime";
5239
5267
  }>>>;
5240
5268
  details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
@@ -5270,8 +5298,8 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5270
5298
  CNAME: "CNAME";
5271
5299
  TXT: "TXT";
5272
5300
  ALIAS: "ALIAS";
5273
- CAA: "CAA";
5274
5301
  MX: "MX";
5302
+ CAA: "CAA";
5275
5303
  NS: "NS";
5276
5304
  SRV: "SRV";
5277
5305
  }>;
@@ -5299,10 +5327,10 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5299
5327
  hasMore: z.ZodBoolean;
5300
5328
  }, z.core.$strip>;
5301
5329
  managementKind: z.ZodOptional<z.ZodEnum<{
5330
+ stattic_nameservers: "stattic_nameservers";
5331
+ registrar_dns: "registrar_dns";
5302
5332
  unmanaged_external: "unmanaged_external";
5303
5333
  connected_provider: "connected_provider";
5304
- registrar_dns: "registrar_dns";
5305
- stattic_nameservers: "stattic_nameservers";
5306
5334
  }>>;
5307
5335
  provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5308
5336
  writeStrategy: z.ZodOptional<z.ZodEnum<{
@@ -5329,10 +5357,10 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5329
5357
  capabilities: z.ZodOptional<z.ZodPipe<z.ZodObject<{
5330
5358
  domainId: z.ZodString;
5331
5359
  managementKind: z.ZodEnum<{
5360
+ stattic_nameservers: "stattic_nameservers";
5361
+ registrar_dns: "registrar_dns";
5332
5362
  unmanaged_external: "unmanaged_external";
5333
5363
  connected_provider: "connected_provider";
5334
- registrar_dns: "registrar_dns";
5335
- stattic_nameservers: "stattic_nameservers";
5336
5364
  }>;
5337
5365
  dnsMode: z.ZodOptional<z.ZodEnum<{
5338
5366
  authoritative: "authoritative";
@@ -5352,8 +5380,8 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5352
5380
  CNAME: "CNAME";
5353
5381
  TXT: "TXT";
5354
5382
  ALIAS: "ALIAS";
5355
- CAA: "CAA";
5356
5383
  MX: "MX";
5384
+ CAA: "CAA";
5357
5385
  NS: "NS";
5358
5386
  SRV: "SRV";
5359
5387
  }>>;
@@ -5391,16 +5419,16 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5391
5419
  CNAME: "CNAME";
5392
5420
  TXT: "TXT";
5393
5421
  ALIAS: "ALIAS";
5394
- CAA: "CAA";
5395
5422
  MX: "MX";
5423
+ CAA: "CAA";
5396
5424
  NS: "NS";
5397
5425
  SRV: "SRV";
5398
5426
  }>>>;
5399
5427
  managementKinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
5428
+ stattic_nameservers: "stattic_nameservers";
5429
+ registrar_dns: "registrar_dns";
5400
5430
  unmanaged_external: "unmanaged_external";
5401
5431
  connected_provider: "connected_provider";
5402
- registrar_dns: "registrar_dns";
5403
- stattic_nameservers: "stattic_nameservers";
5404
5432
  }>>>;
5405
5433
  providerKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
5406
5434
  expression: z.ZodOptional<z.ZodString>;
@@ -5507,8 +5535,8 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5507
5535
  CNAME: "CNAME";
5508
5536
  TXT: "TXT";
5509
5537
  ALIAS: "ALIAS";
5510
- CAA: "CAA";
5511
5538
  MX: "MX";
5539
+ CAA: "CAA";
5512
5540
  NS: "NS";
5513
5541
  SRV: "SRV";
5514
5542
  }>>;
@@ -5562,9 +5590,9 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5562
5590
  message: z.ZodString;
5563
5591
  path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5564
5592
  provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5593
+ registrar: "registrar";
5565
5594
  wpcloud: "wpcloud";
5566
5595
  dns: "dns";
5567
- registrar: "registrar";
5568
5596
  runtime: "runtime";
5569
5597
  }>>>;
5570
5598
  details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
@@ -5574,10 +5602,10 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5574
5602
  }, z.core.$strip>, z.ZodTransform<{
5575
5603
  dnsMode: "authoritative" | "adapter";
5576
5604
  domainId: string;
5577
- managementKind: "unmanaged_external" | "connected_provider" | "registrar_dns" | "stattic_nameservers";
5605
+ managementKind: "stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider";
5578
5606
  writeAuthority: "none" | "provider_credentials" | "registrar_authority" | "delegated_nameservers" | "internal_service_key";
5579
5607
  provider: string | null;
5580
- recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
5608
+ recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[];
5581
5609
  fields: {
5582
5610
  path: string;
5583
5611
  type: "string" | "number" | "boolean" | "object" | "array" | "enum";
@@ -5597,8 +5625,8 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5597
5625
  message: string;
5598
5626
  fixSuggestion: string;
5599
5627
  appliesWhen?: {
5600
- recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[] | undefined;
5601
- managementKinds?: ("unmanaged_external" | "connected_provider" | "registrar_dns" | "stattic_nameservers")[] | undefined;
5628
+ recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[] | undefined;
5629
+ managementKinds?: ("stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider")[] | undefined;
5602
5630
  providerKeys?: string[] | undefined;
5603
5631
  expression?: string | undefined;
5604
5632
  } | undefined;
@@ -5679,7 +5707,7 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5679
5707
  };
5680
5708
  proxied: {
5681
5709
  supported: boolean;
5682
- editableTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
5710
+ editableTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[];
5683
5711
  ttlBehavior?: "automatic_when_enabled" | undefined;
5684
5712
  };
5685
5713
  comments: {
@@ -5708,17 +5736,17 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5708
5736
  severity: "info" | "warning" | "error";
5709
5737
  message: string;
5710
5738
  path?: string | null | undefined;
5711
- provider?: "wpcloud" | "dns" | "registrar" | "runtime" | null | undefined;
5739
+ provider?: "registrar" | "wpcloud" | "dns" | "runtime" | null | undefined;
5712
5740
  details?: Record<string, unknown> | null | undefined;
5713
5741
  fix?: string | null | undefined;
5714
5742
  retryable?: boolean | null | undefined;
5715
5743
  }[];
5716
5744
  }, {
5717
5745
  domainId: string;
5718
- managementKind: "unmanaged_external" | "connected_provider" | "registrar_dns" | "stattic_nameservers";
5746
+ managementKind: "stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider";
5719
5747
  writeAuthority: "none" | "provider_credentials" | "registrar_authority" | "delegated_nameservers" | "internal_service_key";
5720
5748
  provider: string | null;
5721
- recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
5749
+ recordTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[];
5722
5750
  fields: {
5723
5751
  path: string;
5724
5752
  type: "string" | "number" | "boolean" | "object" | "array" | "enum";
@@ -5738,8 +5766,8 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5738
5766
  message: string;
5739
5767
  fixSuggestion: string;
5740
5768
  appliesWhen?: {
5741
- recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[] | undefined;
5742
- managementKinds?: ("unmanaged_external" | "connected_provider" | "registrar_dns" | "stattic_nameservers")[] | undefined;
5769
+ recordTypes?: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[] | undefined;
5770
+ managementKinds?: ("stattic_nameservers" | "registrar_dns" | "unmanaged_external" | "connected_provider")[] | undefined;
5743
5771
  providerKeys?: string[] | undefined;
5744
5772
  expression?: string | undefined;
5745
5773
  } | undefined;
@@ -5820,7 +5848,7 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5820
5848
  };
5821
5849
  proxied: {
5822
5850
  supported: boolean;
5823
- editableTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "CAA" | "MX" | "NS" | "SRV")[];
5851
+ editableTypes: ("A" | "AAAA" | "CNAME" | "TXT" | "ALIAS" | "MX" | "CAA" | "NS" | "SRV")[];
5824
5852
  ttlBehavior?: "automatic_when_enabled" | undefined;
5825
5853
  };
5826
5854
  comments: {
@@ -5849,7 +5877,7 @@ export declare const domainDnsRecordListResponseSchema: z.ZodObject<{
5849
5877
  severity: "info" | "warning" | "error";
5850
5878
  message: string;
5851
5879
  path?: string | null | undefined;
5852
- provider?: "wpcloud" | "dns" | "registrar" | "runtime" | null | undefined;
5880
+ provider?: "registrar" | "wpcloud" | "dns" | "runtime" | null | undefined;
5853
5881
  details?: Record<string, unknown> | null | undefined;
5854
5882
  fix?: string | null | undefined;
5855
5883
  retryable?: boolean | null | undefined;
@@ -5875,8 +5903,8 @@ export declare const domainDnsRecordCreateSchema: z.ZodObject<{
5875
5903
  CNAME: "CNAME";
5876
5904
  TXT: "TXT";
5877
5905
  ALIAS: "ALIAS";
5878
- CAA: "CAA";
5879
5906
  MX: "MX";
5907
+ CAA: "CAA";
5880
5908
  NS: "NS";
5881
5909
  SRV: "SRV";
5882
5910
  }>;
@@ -5895,8 +5923,8 @@ export declare const domainDnsRecordPatchSchema: z.ZodObject<{
5895
5923
  CNAME: "CNAME";
5896
5924
  TXT: "TXT";
5897
5925
  ALIAS: "ALIAS";
5898
- CAA: "CAA";
5899
5926
  MX: "MX";
5927
+ CAA: "CAA";
5900
5928
  NS: "NS";
5901
5929
  SRV: "SRV";
5902
5930
  }>>;
@@ -5919,8 +5947,8 @@ export declare const domainDnsRecordBatchSchema: z.ZodObject<{
5919
5947
  CNAME: "CNAME";
5920
5948
  TXT: "TXT";
5921
5949
  ALIAS: "ALIAS";
5922
- CAA: "CAA";
5923
5950
  MX: "MX";
5951
+ CAA: "CAA";
5924
5952
  NS: "NS";
5925
5953
  SRV: "SRV";
5926
5954
  }>>;
@@ -5940,8 +5968,8 @@ export declare const domainDnsRecordBatchSchema: z.ZodObject<{
5940
5968
  CNAME: "CNAME";
5941
5969
  TXT: "TXT";
5942
5970
  ALIAS: "ALIAS";
5943
- CAA: "CAA";
5944
5971
  MX: "MX";
5972
+ CAA: "CAA";
5945
5973
  NS: "NS";
5946
5974
  SRV: "SRV";
5947
5975
  }>;
@@ -5961,8 +5989,8 @@ export declare const domainDnsRecordBatchSchema: z.ZodObject<{
5961
5989
  CNAME: "CNAME";
5962
5990
  TXT: "TXT";
5963
5991
  ALIAS: "ALIAS";
5964
- CAA: "CAA";
5965
5992
  MX: "MX";
5993
+ CAA: "CAA";
5966
5994
  NS: "NS";
5967
5995
  SRV: "SRV";
5968
5996
  }>;
@@ -5980,6 +6008,8 @@ export declare const domainHostnameDnsSnapshotSchema: z.ZodObject<{
5980
6008
  a: z.ZodDefault<z.ZodArray<z.ZodString>>;
5981
6009
  aaaa: z.ZodDefault<z.ZodArray<z.ZodString>>;
5982
6010
  caa: z.ZodDefault<z.ZodArray<z.ZodString>>;
6011
+ cname: z.ZodDefault<z.ZodArray<z.ZodString>>;
6012
+ mx: z.ZodDefault<z.ZodArray<z.ZodString>>;
5983
6013
  txt: z.ZodDefault<z.ZodArray<z.ZodString>>;
5984
6014
  }, z.core.$strip>;
5985
6015
  export declare const domainHostnameSslBrokenRecordSchema: z.ZodObject<{
@@ -6000,8 +6030,10 @@ export declare const domainHostnameDiagnosticsSchema: z.ZodObject<{
6000
6030
  verificationCode: z.ZodNullable<z.ZodString>;
6001
6031
  dnsInstructions: z.ZodDefault<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
6002
6032
  dns: z.ZodObject<{
6033
+ observedAt: z.ZodString;
6003
6034
  expectedTxtValue: z.ZodNullable<z.ZodString>;
6004
6035
  pointsToProvider: z.ZodBoolean;
6036
+ proxyDetected: z.ZodNullable<z.ZodBoolean>;
6005
6037
  txtVerified: z.ZodNullable<z.ZodBoolean>;
6006
6038
  hasAaaaRecords: z.ZodBoolean;
6007
6039
  hasCaaRecords: z.ZodBoolean;
@@ -6009,6 +6041,8 @@ export declare const domainHostnameDiagnosticsSchema: z.ZodObject<{
6009
6041
  a: z.ZodDefault<z.ZodArray<z.ZodString>>;
6010
6042
  aaaa: z.ZodDefault<z.ZodArray<z.ZodString>>;
6011
6043
  caa: z.ZodDefault<z.ZodArray<z.ZodString>>;
6044
+ cname: z.ZodDefault<z.ZodArray<z.ZodString>>;
6045
+ mx: z.ZodDefault<z.ZodArray<z.ZodString>>;
6012
6046
  txt: z.ZodDefault<z.ZodArray<z.ZodString>>;
6013
6047
  }, z.core.$strip>;
6014
6048
  byResolver: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -6016,6 +6050,8 @@ export declare const domainHostnameDiagnosticsSchema: z.ZodObject<{
6016
6050
  a: z.ZodDefault<z.ZodArray<z.ZodString>>;
6017
6051
  aaaa: z.ZodDefault<z.ZodArray<z.ZodString>>;
6018
6052
  caa: z.ZodDefault<z.ZodArray<z.ZodString>>;
6053
+ cname: z.ZodDefault<z.ZodArray<z.ZodString>>;
6054
+ mx: z.ZodDefault<z.ZodArray<z.ZodString>>;
6019
6055
  txt: z.ZodDefault<z.ZodArray<z.ZodString>>;
6020
6056
  }, z.core.$strip>>>;
6021
6057
  }, z.core.$strip>;
@@ -6052,9 +6088,9 @@ export declare const domainDiagnosticsResponseSchema: z.ZodObject<{
6052
6088
  message: z.ZodString;
6053
6089
  path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6054
6090
  provider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
6091
+ registrar: "registrar";
6055
6092
  wpcloud: "wpcloud";
6056
6093
  dns: "dns";
6057
- registrar: "registrar";
6058
6094
  runtime: "runtime";
6059
6095
  }>>>;
6060
6096
  details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
@@ -6073,8 +6109,10 @@ export declare const domainDiagnosticsResponseSchema: z.ZodObject<{
6073
6109
  verificationCode: z.ZodNullable<z.ZodString>;
6074
6110
  dnsInstructions: z.ZodDefault<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
6075
6111
  dns: z.ZodObject<{
6112
+ observedAt: z.ZodString;
6076
6113
  expectedTxtValue: z.ZodNullable<z.ZodString>;
6077
6114
  pointsToProvider: z.ZodBoolean;
6115
+ proxyDetected: z.ZodNullable<z.ZodBoolean>;
6078
6116
  txtVerified: z.ZodNullable<z.ZodBoolean>;
6079
6117
  hasAaaaRecords: z.ZodBoolean;
6080
6118
  hasCaaRecords: z.ZodBoolean;
@@ -6082,6 +6120,8 @@ export declare const domainDiagnosticsResponseSchema: z.ZodObject<{
6082
6120
  a: z.ZodDefault<z.ZodArray<z.ZodString>>;
6083
6121
  aaaa: z.ZodDefault<z.ZodArray<z.ZodString>>;
6084
6122
  caa: z.ZodDefault<z.ZodArray<z.ZodString>>;
6123
+ cname: z.ZodDefault<z.ZodArray<z.ZodString>>;
6124
+ mx: z.ZodDefault<z.ZodArray<z.ZodString>>;
6085
6125
  txt: z.ZodDefault<z.ZodArray<z.ZodString>>;
6086
6126
  }, z.core.$strip>;
6087
6127
  byResolver: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -6089,6 +6129,8 @@ export declare const domainDiagnosticsResponseSchema: z.ZodObject<{
6089
6129
  a: z.ZodDefault<z.ZodArray<z.ZodString>>;
6090
6130
  aaaa: z.ZodDefault<z.ZodArray<z.ZodString>>;
6091
6131
  caa: z.ZodDefault<z.ZodArray<z.ZodString>>;
6132
+ cname: z.ZodDefault<z.ZodArray<z.ZodString>>;
6133
+ mx: z.ZodDefault<z.ZodArray<z.ZodString>>;
6092
6134
  txt: z.ZodDefault<z.ZodArray<z.ZodString>>;
6093
6135
  }, z.core.$strip>>>;
6094
6136
  }, z.core.$strip>;