@vcp-dev/contracts 0.4.8 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/colorway-distinctness.js +1 -1
- package/dist/custom-domain.d.ts +263 -0
- package/dist/design-tokens.d.ts +0 -8
- package/dist/design-tokens.js +1 -1
- package/dist/index.d.ts +1991 -109
- package/dist/index.js +1 -1
- package/dist/input-context-bundle.d.ts +2 -0
- package/dist/page-slug.d.ts +18 -9
- package/dist/publish-plan.d.ts +54 -0
- package/dist/site-edit-class-name-source.d.ts +3 -98
- package/dist/site-edit-event.d.ts +20 -2
- package/dist/site-edit-history-status.d.ts +120 -0
- package/dist/site-edit-materialization.d.ts +49 -0
- package/dist/site-edit-mutation-context.d.ts +18 -0
- package/dist/site-edit-operation.d.ts +467 -53
- package/dist/site-edit-page-composition.d.ts +971 -0
- package/dist/site-edit-render-document.d.ts +74 -139
- package/dist/site-edit-render-page-composition.d.ts +84 -0
- package/dist/site-edit-session.d.ts +15 -0
- package/dist/site-edit-version.d.ts +1 -1
- package/dist/site-locale.d.ts +72 -2
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export * from "./deployment-runtime.js";
|
|
3
|
-
export { canonicalizePageSlug, pageSlugToRouteFilePath } from "./page-slug.js";
|
|
3
|
+
export { PAGE_SLUG_PATTERN, PAGE_SLUG_SEGMENT_PATTERN_SOURCE, canonicalizePageSlug, isCanonicalPageSlug, pageSlugToRouteFilePath, tryCanonicalizeAsciiPageSlug, } from "./page-slug.js";
|
|
4
4
|
export * from "./site-edit-capability.js";
|
|
5
5
|
export * from "./site-edit-class-name-source.js";
|
|
6
6
|
export * from "./site-edit-command-result.js";
|
|
7
7
|
export * from "./site-edit-element-property.js";
|
|
8
8
|
export * from "./site-edit-event.js";
|
|
9
|
+
export * from "./site-edit-history-status.js";
|
|
9
10
|
export * from "./site-edit-identity.js";
|
|
11
|
+
export * from "./site-edit-materialization.js";
|
|
12
|
+
export * from "./site-edit-mutation-context.js";
|
|
10
13
|
export * from "./site-edit-operation.js";
|
|
14
|
+
export * from "./site-edit-page-composition.js";
|
|
11
15
|
export * from "./site-edit-patch-plan.js";
|
|
12
16
|
export * from "./site-edit-repeat-instance-key.js";
|
|
13
17
|
export * from "./site-edit-render-document.js";
|
|
18
|
+
export * from "./site-edit-render-page-composition.js";
|
|
14
19
|
export * from "./site-edit-runtime-capability.js";
|
|
20
|
+
export * from "./site-edit-session.js";
|
|
15
21
|
export * from "./site-edit-source.js";
|
|
16
22
|
export * from "./user-facing-copy.js";
|
|
17
23
|
export * from "./site-edit-version.js";
|
|
@@ -21,6 +27,8 @@ export * from "./connect-form.js";
|
|
|
21
27
|
export * from "./cms-collection-binding.js";
|
|
22
28
|
export * from "./cms-public-url.js";
|
|
23
29
|
export * from "./input-context-bundle.js";
|
|
30
|
+
export * from "./publish-plan.js";
|
|
31
|
+
export * from "./custom-domain.js";
|
|
24
32
|
/**
|
|
25
33
|
* Clarify 视觉调性 text-options 题的每个 option 的结构化硬绑信号。
|
|
26
34
|
* spec §1.1 + 2026-05-27 接通:用户选中的 option 的 visualHints 会被
|
|
@@ -48,11 +56,11 @@ export declare const VisualHintsSchema: z.ZodObject<{
|
|
|
48
56
|
dark: "dark";
|
|
49
57
|
}>>;
|
|
50
58
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
59
|
+
none: "none";
|
|
51
60
|
sm: "sm";
|
|
52
61
|
md: "md";
|
|
53
62
|
lg: "lg";
|
|
54
63
|
xl: "xl";
|
|
55
|
-
none: "none";
|
|
56
64
|
}>>;
|
|
57
65
|
density: z.ZodOptional<z.ZodEnum<{
|
|
58
66
|
compact: "compact";
|
|
@@ -88,8 +96,9 @@ export type VisualHints = z.infer<typeof VisualHintsSchema>;
|
|
|
88
96
|
* - protocol: how the visitor takes the action — phone (tel: link), form
|
|
89
97
|
* (lead capture form), download (file), route (internal page link), or
|
|
90
98
|
* external (third-party URL).
|
|
91
|
-
* - ctaLabel: concrete CTA label in the
|
|
92
|
-
* "立即致电咨询" or
|
|
99
|
+
* - ctaLabel: concrete CTA label in the site output language when known,
|
|
100
|
+
* otherwise the brief's language (<=40 chars), e.g. "立即致电咨询" or
|
|
101
|
+
* "Book a consultation".
|
|
93
102
|
* - ctaTarget: optional concrete target — phone number / route / URL /
|
|
94
103
|
* anchor; when absent the owner must fill it in later.
|
|
95
104
|
* - requiresOwnerDetail: true when the protocol needs an owner-provided
|
|
@@ -225,11 +234,11 @@ export declare const ClarifyQuestionOptionSchema: z.ZodObject<{
|
|
|
225
234
|
dark: "dark";
|
|
226
235
|
}>>;
|
|
227
236
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
237
|
+
none: "none";
|
|
228
238
|
sm: "sm";
|
|
229
239
|
md: "md";
|
|
230
240
|
lg: "lg";
|
|
231
241
|
xl: "xl";
|
|
232
|
-
none: "none";
|
|
233
242
|
}>>;
|
|
234
243
|
density: z.ZodOptional<z.ZodEnum<{
|
|
235
244
|
compact: "compact";
|
|
@@ -290,11 +299,11 @@ export declare const ClarifyQuestionSchema: z.ZodObject<{
|
|
|
290
299
|
dark: "dark";
|
|
291
300
|
}>>;
|
|
292
301
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
302
|
+
none: "none";
|
|
293
303
|
sm: "sm";
|
|
294
304
|
md: "md";
|
|
295
305
|
lg: "lg";
|
|
296
306
|
xl: "xl";
|
|
297
|
-
none: "none";
|
|
298
307
|
}>>;
|
|
299
308
|
density: z.ZodOptional<z.ZodEnum<{
|
|
300
309
|
compact: "compact";
|
|
@@ -392,11 +401,11 @@ export declare const ClarifyQuestionsSchema: z.ZodObject<{
|
|
|
392
401
|
dark: "dark";
|
|
393
402
|
}>>;
|
|
394
403
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
404
|
+
none: "none";
|
|
395
405
|
sm: "sm";
|
|
396
406
|
md: "md";
|
|
397
407
|
lg: "lg";
|
|
398
408
|
xl: "xl";
|
|
399
|
-
none: "none";
|
|
400
409
|
}>>;
|
|
401
410
|
density: z.ZodOptional<z.ZodEnum<{
|
|
402
411
|
compact: "compact";
|
|
@@ -476,12 +485,149 @@ export declare const ClarifyRunInputSchema: z.ZodObject<{
|
|
|
476
485
|
site_default_locale: z.ZodOptional<z.ZodEnum<{
|
|
477
486
|
id: "id";
|
|
478
487
|
"zh-CN": "zh-CN";
|
|
488
|
+
"zh-HK": "zh-HK";
|
|
489
|
+
"zh-TW": "zh-TW";
|
|
490
|
+
"en-US": "en-US";
|
|
491
|
+
"en-GB": "en-GB";
|
|
492
|
+
"ja-JP": "ja-JP";
|
|
493
|
+
"ko-KR": "ko-KR";
|
|
494
|
+
"es-ES": "es-ES";
|
|
495
|
+
"fr-FR": "fr-FR";
|
|
496
|
+
"de-DE": "de-DE";
|
|
497
|
+
"pt-PT": "pt-PT";
|
|
498
|
+
"ru-RU": "ru-RU";
|
|
499
|
+
"ar-SA": "ar-SA";
|
|
500
|
+
"id-ID": "id-ID";
|
|
501
|
+
"vi-VN": "vi-VN";
|
|
502
|
+
"th-TH": "th-TH";
|
|
503
|
+
"it-IT": "it-IT";
|
|
504
|
+
"nl-NL": "nl-NL";
|
|
505
|
+
"tr-TR": "tr-TR";
|
|
506
|
+
"pl-PL": "pl-PL";
|
|
507
|
+
"uk-UA": "uk-UA";
|
|
508
|
+
"cs-CZ": "cs-CZ";
|
|
509
|
+
"sk-SK": "sk-SK";
|
|
510
|
+
"hu-HU": "hu-HU";
|
|
511
|
+
"ro-RO": "ro-RO";
|
|
512
|
+
"el-GR": "el-GR";
|
|
513
|
+
"sv-SE": "sv-SE";
|
|
514
|
+
"da-DK": "da-DK";
|
|
515
|
+
"fi-FI": "fi-FI";
|
|
516
|
+
"hr-HR": "hr-HR";
|
|
517
|
+
"lt-LT": "lt-LT";
|
|
518
|
+
"lv-LV": "lv-LV";
|
|
519
|
+
"et-EE": "et-EE";
|
|
520
|
+
"ga-IE": "ga-IE";
|
|
521
|
+
"mt-MT": "mt-MT";
|
|
522
|
+
"ka-GE": "ka-GE";
|
|
523
|
+
"fa-IR": "fa-IR";
|
|
524
|
+
"bn-BD": "bn-BD";
|
|
525
|
+
"ta-IN": "ta-IN";
|
|
526
|
+
"si-LK": "si-LK";
|
|
527
|
+
"ms-MY": "ms-MY";
|
|
528
|
+
"fil-PH": "fil-PH";
|
|
529
|
+
"my-MM": "my-MM";
|
|
530
|
+
"km-KH": "km-KH";
|
|
531
|
+
"lo-LA": "lo-LA";
|
|
532
|
+
"mn-MN": "mn-MN";
|
|
533
|
+
"kk-KZ": "kk-KZ";
|
|
479
534
|
en: "en";
|
|
480
535
|
ja: "ja";
|
|
481
536
|
es: "es";
|
|
482
537
|
fr: "fr";
|
|
483
538
|
de: "de";
|
|
539
|
+
ko: "ko";
|
|
540
|
+
pt: "pt";
|
|
541
|
+
"pt-BR": "pt-BR";
|
|
542
|
+
it: "it";
|
|
543
|
+
ru: "ru";
|
|
544
|
+
ar: "ar";
|
|
545
|
+
hi: "hi";
|
|
546
|
+
vi: "vi";
|
|
547
|
+
th: "th";
|
|
548
|
+
tr: "tr";
|
|
549
|
+
nl: "nl";
|
|
550
|
+
pl: "pl";
|
|
551
|
+
uk: "uk";
|
|
552
|
+
sv: "sv";
|
|
553
|
+
da: "da";
|
|
554
|
+
fi: "fi";
|
|
555
|
+
no: "no";
|
|
556
|
+
cs: "cs";
|
|
557
|
+
el: "el";
|
|
558
|
+
hu: "hu";
|
|
559
|
+
ro: "ro";
|
|
560
|
+
he: "he";
|
|
561
|
+
ms: "ms";
|
|
562
|
+
fil: "fil";
|
|
563
|
+
bn: "bn";
|
|
564
|
+
ta: "ta";
|
|
565
|
+
ca: "ca";
|
|
566
|
+
sk: "sk";
|
|
567
|
+
hr: "hr";
|
|
568
|
+
bg: "bg";
|
|
569
|
+
lt: "lt";
|
|
570
|
+
lv: "lv";
|
|
571
|
+
et: "et";
|
|
572
|
+
fa: "fa";
|
|
573
|
+
sw: "sw";
|
|
574
|
+
sr: "sr";
|
|
575
|
+
is: "is";
|
|
576
|
+
}>>;
|
|
577
|
+
owner_locale: z.ZodOptional<z.ZodEnum<{
|
|
578
|
+
id: "id";
|
|
579
|
+
"zh-CN": "zh-CN";
|
|
580
|
+
"zh-HK": "zh-HK";
|
|
484
581
|
"zh-TW": "zh-TW";
|
|
582
|
+
"en-US": "en-US";
|
|
583
|
+
"en-GB": "en-GB";
|
|
584
|
+
"ja-JP": "ja-JP";
|
|
585
|
+
"ko-KR": "ko-KR";
|
|
586
|
+
"es-ES": "es-ES";
|
|
587
|
+
"fr-FR": "fr-FR";
|
|
588
|
+
"de-DE": "de-DE";
|
|
589
|
+
"pt-PT": "pt-PT";
|
|
590
|
+
"ru-RU": "ru-RU";
|
|
591
|
+
"ar-SA": "ar-SA";
|
|
592
|
+
"id-ID": "id-ID";
|
|
593
|
+
"vi-VN": "vi-VN";
|
|
594
|
+
"th-TH": "th-TH";
|
|
595
|
+
"it-IT": "it-IT";
|
|
596
|
+
"nl-NL": "nl-NL";
|
|
597
|
+
"tr-TR": "tr-TR";
|
|
598
|
+
"pl-PL": "pl-PL";
|
|
599
|
+
"uk-UA": "uk-UA";
|
|
600
|
+
"cs-CZ": "cs-CZ";
|
|
601
|
+
"sk-SK": "sk-SK";
|
|
602
|
+
"hu-HU": "hu-HU";
|
|
603
|
+
"ro-RO": "ro-RO";
|
|
604
|
+
"el-GR": "el-GR";
|
|
605
|
+
"sv-SE": "sv-SE";
|
|
606
|
+
"da-DK": "da-DK";
|
|
607
|
+
"fi-FI": "fi-FI";
|
|
608
|
+
"hr-HR": "hr-HR";
|
|
609
|
+
"lt-LT": "lt-LT";
|
|
610
|
+
"lv-LV": "lv-LV";
|
|
611
|
+
"et-EE": "et-EE";
|
|
612
|
+
"ga-IE": "ga-IE";
|
|
613
|
+
"mt-MT": "mt-MT";
|
|
614
|
+
"ka-GE": "ka-GE";
|
|
615
|
+
"fa-IR": "fa-IR";
|
|
616
|
+
"bn-BD": "bn-BD";
|
|
617
|
+
"ta-IN": "ta-IN";
|
|
618
|
+
"si-LK": "si-LK";
|
|
619
|
+
"ms-MY": "ms-MY";
|
|
620
|
+
"fil-PH": "fil-PH";
|
|
621
|
+
"my-MM": "my-MM";
|
|
622
|
+
"km-KH": "km-KH";
|
|
623
|
+
"lo-LA": "lo-LA";
|
|
624
|
+
"mn-MN": "mn-MN";
|
|
625
|
+
"kk-KZ": "kk-KZ";
|
|
626
|
+
en: "en";
|
|
627
|
+
ja: "ja";
|
|
628
|
+
es: "es";
|
|
629
|
+
fr: "fr";
|
|
630
|
+
de: "de";
|
|
485
631
|
ko: "ko";
|
|
486
632
|
pt: "pt";
|
|
487
633
|
"pt-BR": "pt-BR";
|
|
@@ -686,12 +832,13 @@ export declare function assertSiteGenerationStateTransition(from: SiteGeneration
|
|
|
686
832
|
*
|
|
687
833
|
* - `run.started` -> `initial_generation_running`
|
|
688
834
|
* - `run.finished` -> `generated`
|
|
689
|
-
* - `run.failed` -> `planning
|
|
835
|
+
* - `run.failed` -> 有 current snapshot 时保持 `generated`,否则回 `planning`
|
|
690
836
|
*/
|
|
691
837
|
export declare function resolveGenerationStateForRunLifecycle(input: {
|
|
692
838
|
agent_type: AgentRunType;
|
|
693
839
|
current_state: SiteGenerationState;
|
|
694
840
|
event_type: "run.started" | "run.finished" | "run.failed";
|
|
841
|
+
has_current_snapshot: boolean;
|
|
695
842
|
}): SiteGenerationState | null;
|
|
696
843
|
/**
|
|
697
844
|
* Step 2/3 写入口在非 `planning` 态被命中时返回的结构化锁定错误码。
|
|
@@ -720,12 +867,57 @@ export declare const UpdateSiteRequestSchema: z.ZodObject<{
|
|
|
720
867
|
default_locale: z.ZodOptional<z.ZodEnum<{
|
|
721
868
|
id: "id";
|
|
722
869
|
"zh-CN": "zh-CN";
|
|
870
|
+
"zh-HK": "zh-HK";
|
|
871
|
+
"zh-TW": "zh-TW";
|
|
872
|
+
"en-US": "en-US";
|
|
873
|
+
"en-GB": "en-GB";
|
|
874
|
+
"ja-JP": "ja-JP";
|
|
875
|
+
"ko-KR": "ko-KR";
|
|
876
|
+
"es-ES": "es-ES";
|
|
877
|
+
"fr-FR": "fr-FR";
|
|
878
|
+
"de-DE": "de-DE";
|
|
879
|
+
"pt-PT": "pt-PT";
|
|
880
|
+
"ru-RU": "ru-RU";
|
|
881
|
+
"ar-SA": "ar-SA";
|
|
882
|
+
"id-ID": "id-ID";
|
|
883
|
+
"vi-VN": "vi-VN";
|
|
884
|
+
"th-TH": "th-TH";
|
|
885
|
+
"it-IT": "it-IT";
|
|
886
|
+
"nl-NL": "nl-NL";
|
|
887
|
+
"tr-TR": "tr-TR";
|
|
888
|
+
"pl-PL": "pl-PL";
|
|
889
|
+
"uk-UA": "uk-UA";
|
|
890
|
+
"cs-CZ": "cs-CZ";
|
|
891
|
+
"sk-SK": "sk-SK";
|
|
892
|
+
"hu-HU": "hu-HU";
|
|
893
|
+
"ro-RO": "ro-RO";
|
|
894
|
+
"el-GR": "el-GR";
|
|
895
|
+
"sv-SE": "sv-SE";
|
|
896
|
+
"da-DK": "da-DK";
|
|
897
|
+
"fi-FI": "fi-FI";
|
|
898
|
+
"hr-HR": "hr-HR";
|
|
899
|
+
"lt-LT": "lt-LT";
|
|
900
|
+
"lv-LV": "lv-LV";
|
|
901
|
+
"et-EE": "et-EE";
|
|
902
|
+
"ga-IE": "ga-IE";
|
|
903
|
+
"mt-MT": "mt-MT";
|
|
904
|
+
"ka-GE": "ka-GE";
|
|
905
|
+
"fa-IR": "fa-IR";
|
|
906
|
+
"bn-BD": "bn-BD";
|
|
907
|
+
"ta-IN": "ta-IN";
|
|
908
|
+
"si-LK": "si-LK";
|
|
909
|
+
"ms-MY": "ms-MY";
|
|
910
|
+
"fil-PH": "fil-PH";
|
|
911
|
+
"my-MM": "my-MM";
|
|
912
|
+
"km-KH": "km-KH";
|
|
913
|
+
"lo-LA": "lo-LA";
|
|
914
|
+
"mn-MN": "mn-MN";
|
|
915
|
+
"kk-KZ": "kk-KZ";
|
|
723
916
|
en: "en";
|
|
724
917
|
ja: "ja";
|
|
725
918
|
es: "es";
|
|
726
919
|
fr: "fr";
|
|
727
920
|
de: "de";
|
|
728
|
-
"zh-TW": "zh-TW";
|
|
729
921
|
ko: "ko";
|
|
730
922
|
pt: "pt";
|
|
731
923
|
"pt-BR": "pt-BR";
|
|
@@ -770,9 +962,14 @@ export declare const UpdateBriefRequestSchema: z.ZodObject<{
|
|
|
770
962
|
body: z.ZodString;
|
|
771
963
|
}, z.core.$strip>;
|
|
772
964
|
export type UpdateBriefRequest = z.infer<typeof UpdateBriefRequestSchema>;
|
|
965
|
+
export declare const SaveBriefDraftRequestSchema: z.ZodObject<{
|
|
966
|
+
body: z.ZodString;
|
|
967
|
+
}, z.core.$strip>;
|
|
968
|
+
export type SaveBriefDraftRequest = z.infer<typeof SaveBriefDraftRequestSchema>;
|
|
773
969
|
export declare const ExternalSyncSiteRequestSchema: z.ZodObject<{
|
|
774
970
|
tenant_id: z.ZodString;
|
|
775
971
|
site_url: z.ZodString;
|
|
972
|
+
site_name: z.ZodOptional<z.ZodString>;
|
|
776
973
|
}, z.core.$strip>;
|
|
777
974
|
export type ExternalSyncSiteRequest = z.infer<typeof ExternalSyncSiteRequestSchema>;
|
|
778
975
|
export declare const ApiResponseSchema: <T extends z.ZodTypeAny>(dataSchema: T) => z.ZodObject<{
|
|
@@ -789,6 +986,235 @@ export declare const ExternalSyncSiteResponseSchema: z.ZodObject<{
|
|
|
789
986
|
message: z.ZodString;
|
|
790
987
|
}, z.core.$strip>;
|
|
791
988
|
export type ExternalSyncSiteResponse = z.infer<typeof ExternalSyncSiteResponseSchema>;
|
|
989
|
+
export declare const ListSiteDomainsResponseSchema: z.ZodObject<{
|
|
990
|
+
code: z.ZodNumber;
|
|
991
|
+
data: z.ZodObject<{
|
|
992
|
+
defaultDomain: z.ZodObject<{
|
|
993
|
+
hostname: z.ZodString;
|
|
994
|
+
url: z.ZodString;
|
|
995
|
+
status: z.ZodLiteral<"ready">;
|
|
996
|
+
}, z.core.$strict>;
|
|
997
|
+
currentDomain: z.ZodNullable<z.ZodObject<{
|
|
998
|
+
id: z.ZodString;
|
|
999
|
+
domainId: z.ZodOptional<z.ZodString>;
|
|
1000
|
+
hostname: z.ZodString;
|
|
1001
|
+
displayHostname: z.ZodString;
|
|
1002
|
+
asciiHostname: z.ZodString;
|
|
1003
|
+
status: z.ZodEnum<{
|
|
1004
|
+
pending_dns: "pending_dns";
|
|
1005
|
+
active: "active";
|
|
1006
|
+
}>;
|
|
1007
|
+
isPrimary: z.ZodBoolean;
|
|
1008
|
+
deletable: z.ZodBoolean;
|
|
1009
|
+
dnsRecords: z.ZodArray<z.ZodObject<{
|
|
1010
|
+
id: z.ZodString;
|
|
1011
|
+
type: z.ZodString;
|
|
1012
|
+
name: z.ZodString;
|
|
1013
|
+
value: z.ZodString;
|
|
1014
|
+
purpose: z.ZodEnum<{
|
|
1015
|
+
unknown: "unknown";
|
|
1016
|
+
ownershipVerification: "ownershipVerification";
|
|
1017
|
+
certificateValidation: "certificateValidation";
|
|
1018
|
+
traffic: "traffic";
|
|
1019
|
+
}>;
|
|
1020
|
+
required: z.ZodBoolean;
|
|
1021
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1022
|
+
pending: "pending";
|
|
1023
|
+
matched: "matched";
|
|
1024
|
+
}>>;
|
|
1025
|
+
}, z.core.$strict>>;
|
|
1026
|
+
createdAt: z.ZodNullable<z.ZodString>;
|
|
1027
|
+
checkedAt: z.ZodNullable<z.ZodString>;
|
|
1028
|
+
}, z.core.$strict>>;
|
|
1029
|
+
customDomains: z.ZodArray<z.ZodObject<{
|
|
1030
|
+
id: z.ZodString;
|
|
1031
|
+
domainId: z.ZodOptional<z.ZodString>;
|
|
1032
|
+
hostname: z.ZodString;
|
|
1033
|
+
displayHostname: z.ZodString;
|
|
1034
|
+
asciiHostname: z.ZodString;
|
|
1035
|
+
status: z.ZodEnum<{
|
|
1036
|
+
pending_dns: "pending_dns";
|
|
1037
|
+
active: "active";
|
|
1038
|
+
}>;
|
|
1039
|
+
isPrimary: z.ZodBoolean;
|
|
1040
|
+
deletable: z.ZodBoolean;
|
|
1041
|
+
dnsRecords: z.ZodArray<z.ZodObject<{
|
|
1042
|
+
id: z.ZodString;
|
|
1043
|
+
type: z.ZodString;
|
|
1044
|
+
name: z.ZodString;
|
|
1045
|
+
value: z.ZodString;
|
|
1046
|
+
purpose: z.ZodEnum<{
|
|
1047
|
+
unknown: "unknown";
|
|
1048
|
+
ownershipVerification: "ownershipVerification";
|
|
1049
|
+
certificateValidation: "certificateValidation";
|
|
1050
|
+
traffic: "traffic";
|
|
1051
|
+
}>;
|
|
1052
|
+
required: z.ZodBoolean;
|
|
1053
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1054
|
+
pending: "pending";
|
|
1055
|
+
matched: "matched";
|
|
1056
|
+
}>>;
|
|
1057
|
+
}, z.core.$strict>>;
|
|
1058
|
+
createdAt: z.ZodNullable<z.ZodString>;
|
|
1059
|
+
checkedAt: z.ZodNullable<z.ZodString>;
|
|
1060
|
+
}, z.core.$strict>>;
|
|
1061
|
+
}, z.core.$strict>;
|
|
1062
|
+
message: z.ZodString;
|
|
1063
|
+
}, z.core.$strip>;
|
|
1064
|
+
export type ListSiteDomainsResponse = z.infer<typeof ListSiteDomainsResponseSchema>;
|
|
1065
|
+
export declare const BindSiteDomainResponseSchema: z.ZodObject<{
|
|
1066
|
+
code: z.ZodNumber;
|
|
1067
|
+
data: z.ZodObject<{
|
|
1068
|
+
domain: z.ZodObject<{
|
|
1069
|
+
id: z.ZodString;
|
|
1070
|
+
domainId: z.ZodOptional<z.ZodString>;
|
|
1071
|
+
hostname: z.ZodString;
|
|
1072
|
+
displayHostname: z.ZodString;
|
|
1073
|
+
asciiHostname: z.ZodString;
|
|
1074
|
+
status: z.ZodEnum<{
|
|
1075
|
+
pending_dns: "pending_dns";
|
|
1076
|
+
active: "active";
|
|
1077
|
+
}>;
|
|
1078
|
+
isPrimary: z.ZodBoolean;
|
|
1079
|
+
deletable: z.ZodBoolean;
|
|
1080
|
+
dnsRecords: z.ZodArray<z.ZodObject<{
|
|
1081
|
+
id: z.ZodString;
|
|
1082
|
+
type: z.ZodString;
|
|
1083
|
+
name: z.ZodString;
|
|
1084
|
+
value: z.ZodString;
|
|
1085
|
+
purpose: z.ZodEnum<{
|
|
1086
|
+
unknown: "unknown";
|
|
1087
|
+
ownershipVerification: "ownershipVerification";
|
|
1088
|
+
certificateValidation: "certificateValidation";
|
|
1089
|
+
traffic: "traffic";
|
|
1090
|
+
}>;
|
|
1091
|
+
required: z.ZodBoolean;
|
|
1092
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1093
|
+
pending: "pending";
|
|
1094
|
+
matched: "matched";
|
|
1095
|
+
}>>;
|
|
1096
|
+
}, z.core.$strict>>;
|
|
1097
|
+
createdAt: z.ZodNullable<z.ZodString>;
|
|
1098
|
+
checkedAt: z.ZodNullable<z.ZodString>;
|
|
1099
|
+
}, z.core.$strict>;
|
|
1100
|
+
}, z.core.$strict>;
|
|
1101
|
+
message: z.ZodString;
|
|
1102
|
+
}, z.core.$strip>;
|
|
1103
|
+
export type BindSiteDomainResponse = z.infer<typeof BindSiteDomainResponseSchema>;
|
|
1104
|
+
export declare const VerifySiteDomainResponseSchema: z.ZodObject<{
|
|
1105
|
+
code: z.ZodNumber;
|
|
1106
|
+
data: z.ZodObject<{
|
|
1107
|
+
domain: z.ZodObject<{
|
|
1108
|
+
id: z.ZodString;
|
|
1109
|
+
domainId: z.ZodOptional<z.ZodString>;
|
|
1110
|
+
hostname: z.ZodString;
|
|
1111
|
+
displayHostname: z.ZodString;
|
|
1112
|
+
asciiHostname: z.ZodString;
|
|
1113
|
+
status: z.ZodEnum<{
|
|
1114
|
+
pending_dns: "pending_dns";
|
|
1115
|
+
active: "active";
|
|
1116
|
+
}>;
|
|
1117
|
+
isPrimary: z.ZodBoolean;
|
|
1118
|
+
deletable: z.ZodBoolean;
|
|
1119
|
+
dnsRecords: z.ZodArray<z.ZodObject<{
|
|
1120
|
+
id: z.ZodString;
|
|
1121
|
+
type: z.ZodString;
|
|
1122
|
+
name: z.ZodString;
|
|
1123
|
+
value: z.ZodString;
|
|
1124
|
+
purpose: z.ZodEnum<{
|
|
1125
|
+
unknown: "unknown";
|
|
1126
|
+
ownershipVerification: "ownershipVerification";
|
|
1127
|
+
certificateValidation: "certificateValidation";
|
|
1128
|
+
traffic: "traffic";
|
|
1129
|
+
}>;
|
|
1130
|
+
required: z.ZodBoolean;
|
|
1131
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1132
|
+
pending: "pending";
|
|
1133
|
+
matched: "matched";
|
|
1134
|
+
}>>;
|
|
1135
|
+
}, z.core.$strict>>;
|
|
1136
|
+
createdAt: z.ZodNullable<z.ZodString>;
|
|
1137
|
+
checkedAt: z.ZodNullable<z.ZodString>;
|
|
1138
|
+
}, z.core.$strict>;
|
|
1139
|
+
}, z.core.$strict>;
|
|
1140
|
+
message: z.ZodString;
|
|
1141
|
+
}, z.core.$strip>;
|
|
1142
|
+
export type VerifySiteDomainResponse = z.infer<typeof VerifySiteDomainResponseSchema>;
|
|
1143
|
+
export declare const GetSiteDomainDetailResponseSchema: z.ZodObject<{
|
|
1144
|
+
code: z.ZodNumber;
|
|
1145
|
+
data: z.ZodObject<{
|
|
1146
|
+
domain: z.ZodObject<{
|
|
1147
|
+
id: z.ZodString;
|
|
1148
|
+
domainId: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
hostname: z.ZodString;
|
|
1150
|
+
displayHostname: z.ZodString;
|
|
1151
|
+
asciiHostname: z.ZodString;
|
|
1152
|
+
status: z.ZodEnum<{
|
|
1153
|
+
pending_dns: "pending_dns";
|
|
1154
|
+
active: "active";
|
|
1155
|
+
}>;
|
|
1156
|
+
isPrimary: z.ZodBoolean;
|
|
1157
|
+
deletable: z.ZodBoolean;
|
|
1158
|
+
dnsRecords: z.ZodArray<z.ZodObject<{
|
|
1159
|
+
id: z.ZodString;
|
|
1160
|
+
type: z.ZodString;
|
|
1161
|
+
name: z.ZodString;
|
|
1162
|
+
value: z.ZodString;
|
|
1163
|
+
purpose: z.ZodEnum<{
|
|
1164
|
+
unknown: "unknown";
|
|
1165
|
+
ownershipVerification: "ownershipVerification";
|
|
1166
|
+
certificateValidation: "certificateValidation";
|
|
1167
|
+
traffic: "traffic";
|
|
1168
|
+
}>;
|
|
1169
|
+
required: z.ZodBoolean;
|
|
1170
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1171
|
+
pending: "pending";
|
|
1172
|
+
matched: "matched";
|
|
1173
|
+
}>>;
|
|
1174
|
+
}, z.core.$strict>>;
|
|
1175
|
+
createdAt: z.ZodNullable<z.ZodString>;
|
|
1176
|
+
checkedAt: z.ZodNullable<z.ZodString>;
|
|
1177
|
+
}, z.core.$strict>;
|
|
1178
|
+
}, z.core.$strict>;
|
|
1179
|
+
message: z.ZodString;
|
|
1180
|
+
}, z.core.$strip>;
|
|
1181
|
+
export type GetSiteDomainDetailResponse = z.infer<typeof GetSiteDomainDetailResponseSchema>;
|
|
1182
|
+
export declare const DeleteSiteDomainResponseSchema: z.ZodObject<{
|
|
1183
|
+
code: z.ZodNumber;
|
|
1184
|
+
data: z.ZodObject<{
|
|
1185
|
+
deleted: z.ZodBoolean;
|
|
1186
|
+
}, z.core.$strict>;
|
|
1187
|
+
message: z.ZodString;
|
|
1188
|
+
}, z.core.$strip>;
|
|
1189
|
+
export type DeleteSiteDomainResponse = z.infer<typeof DeleteSiteDomainResponseSchema>;
|
|
1190
|
+
export declare const GetSitePlanResponseSchema: z.ZodObject<{
|
|
1191
|
+
code: z.ZodNumber;
|
|
1192
|
+
data: z.ZodObject<{
|
|
1193
|
+
plan: z.ZodNullable<z.ZodObject<{
|
|
1194
|
+
subscriptionId: z.ZodString;
|
|
1195
|
+
planId: z.ZodString;
|
|
1196
|
+
locale: z.ZodUnion<[z.ZodEnum<{
|
|
1197
|
+
en: "en";
|
|
1198
|
+
zh_CN: "zh_CN";
|
|
1199
|
+
}>, z.ZodString]>;
|
|
1200
|
+
currentPeriodEnd: z.ZodNullable<z.ZodString>;
|
|
1201
|
+
servicePeriodEnd: z.ZodNullable<z.ZodString>;
|
|
1202
|
+
featureSnapshot: z.ZodNullable<z.ZodObject<{
|
|
1203
|
+
maxSites: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1204
|
+
maxStorageMb: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1205
|
+
customDomains: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1206
|
+
}, z.core.$loose>>;
|
|
1207
|
+
code: z.ZodNullable<z.ZodString>;
|
|
1208
|
+
level: z.ZodNullable<z.ZodNumber>;
|
|
1209
|
+
name: z.ZodNullable<z.ZodString>;
|
|
1210
|
+
}, z.core.$strict>>;
|
|
1211
|
+
entitlement: z.ZodObject<{
|
|
1212
|
+
hasActiveSubscription: z.ZodBoolean;
|
|
1213
|
+
}, z.core.$strict>;
|
|
1214
|
+
}, z.core.$strict>;
|
|
1215
|
+
message: z.ZodString;
|
|
1216
|
+
}, z.core.$strip>;
|
|
1217
|
+
export type GetSitePlanResponse = z.infer<typeof GetSitePlanResponseSchema>;
|
|
792
1218
|
export declare const SiteRecordSchema: z.ZodObject<{
|
|
793
1219
|
id: z.ZodString;
|
|
794
1220
|
tenant_id: z.ZodString;
|
|
@@ -817,12 +1243,57 @@ export declare const SiteRecordSchema: z.ZodObject<{
|
|
|
817
1243
|
default_locale: z.ZodEnum<{
|
|
818
1244
|
id: "id";
|
|
819
1245
|
"zh-CN": "zh-CN";
|
|
1246
|
+
"zh-HK": "zh-HK";
|
|
1247
|
+
"zh-TW": "zh-TW";
|
|
1248
|
+
"en-US": "en-US";
|
|
1249
|
+
"en-GB": "en-GB";
|
|
1250
|
+
"ja-JP": "ja-JP";
|
|
1251
|
+
"ko-KR": "ko-KR";
|
|
1252
|
+
"es-ES": "es-ES";
|
|
1253
|
+
"fr-FR": "fr-FR";
|
|
1254
|
+
"de-DE": "de-DE";
|
|
1255
|
+
"pt-PT": "pt-PT";
|
|
1256
|
+
"ru-RU": "ru-RU";
|
|
1257
|
+
"ar-SA": "ar-SA";
|
|
1258
|
+
"id-ID": "id-ID";
|
|
1259
|
+
"vi-VN": "vi-VN";
|
|
1260
|
+
"th-TH": "th-TH";
|
|
1261
|
+
"it-IT": "it-IT";
|
|
1262
|
+
"nl-NL": "nl-NL";
|
|
1263
|
+
"tr-TR": "tr-TR";
|
|
1264
|
+
"pl-PL": "pl-PL";
|
|
1265
|
+
"uk-UA": "uk-UA";
|
|
1266
|
+
"cs-CZ": "cs-CZ";
|
|
1267
|
+
"sk-SK": "sk-SK";
|
|
1268
|
+
"hu-HU": "hu-HU";
|
|
1269
|
+
"ro-RO": "ro-RO";
|
|
1270
|
+
"el-GR": "el-GR";
|
|
1271
|
+
"sv-SE": "sv-SE";
|
|
1272
|
+
"da-DK": "da-DK";
|
|
1273
|
+
"fi-FI": "fi-FI";
|
|
1274
|
+
"hr-HR": "hr-HR";
|
|
1275
|
+
"lt-LT": "lt-LT";
|
|
1276
|
+
"lv-LV": "lv-LV";
|
|
1277
|
+
"et-EE": "et-EE";
|
|
1278
|
+
"ga-IE": "ga-IE";
|
|
1279
|
+
"mt-MT": "mt-MT";
|
|
1280
|
+
"ka-GE": "ka-GE";
|
|
1281
|
+
"fa-IR": "fa-IR";
|
|
1282
|
+
"bn-BD": "bn-BD";
|
|
1283
|
+
"ta-IN": "ta-IN";
|
|
1284
|
+
"si-LK": "si-LK";
|
|
1285
|
+
"ms-MY": "ms-MY";
|
|
1286
|
+
"fil-PH": "fil-PH";
|
|
1287
|
+
"my-MM": "my-MM";
|
|
1288
|
+
"km-KH": "km-KH";
|
|
1289
|
+
"lo-LA": "lo-LA";
|
|
1290
|
+
"mn-MN": "mn-MN";
|
|
1291
|
+
"kk-KZ": "kk-KZ";
|
|
820
1292
|
en: "en";
|
|
821
1293
|
ja: "ja";
|
|
822
1294
|
es: "es";
|
|
823
1295
|
fr: "fr";
|
|
824
1296
|
de: "de";
|
|
825
|
-
"zh-TW": "zh-TW";
|
|
826
1297
|
ko: "ko";
|
|
827
1298
|
pt: "pt";
|
|
828
1299
|
"pt-BR": "pt-BR";
|
|
@@ -861,6 +1332,98 @@ export declare const SiteRecordSchema: z.ZodObject<{
|
|
|
861
1332
|
sr: "sr";
|
|
862
1333
|
is: "is";
|
|
863
1334
|
}>;
|
|
1335
|
+
owner_locale: z.ZodOptional<z.ZodEnum<{
|
|
1336
|
+
id: "id";
|
|
1337
|
+
"zh-CN": "zh-CN";
|
|
1338
|
+
"zh-HK": "zh-HK";
|
|
1339
|
+
"zh-TW": "zh-TW";
|
|
1340
|
+
"en-US": "en-US";
|
|
1341
|
+
"en-GB": "en-GB";
|
|
1342
|
+
"ja-JP": "ja-JP";
|
|
1343
|
+
"ko-KR": "ko-KR";
|
|
1344
|
+
"es-ES": "es-ES";
|
|
1345
|
+
"fr-FR": "fr-FR";
|
|
1346
|
+
"de-DE": "de-DE";
|
|
1347
|
+
"pt-PT": "pt-PT";
|
|
1348
|
+
"ru-RU": "ru-RU";
|
|
1349
|
+
"ar-SA": "ar-SA";
|
|
1350
|
+
"id-ID": "id-ID";
|
|
1351
|
+
"vi-VN": "vi-VN";
|
|
1352
|
+
"th-TH": "th-TH";
|
|
1353
|
+
"it-IT": "it-IT";
|
|
1354
|
+
"nl-NL": "nl-NL";
|
|
1355
|
+
"tr-TR": "tr-TR";
|
|
1356
|
+
"pl-PL": "pl-PL";
|
|
1357
|
+
"uk-UA": "uk-UA";
|
|
1358
|
+
"cs-CZ": "cs-CZ";
|
|
1359
|
+
"sk-SK": "sk-SK";
|
|
1360
|
+
"hu-HU": "hu-HU";
|
|
1361
|
+
"ro-RO": "ro-RO";
|
|
1362
|
+
"el-GR": "el-GR";
|
|
1363
|
+
"sv-SE": "sv-SE";
|
|
1364
|
+
"da-DK": "da-DK";
|
|
1365
|
+
"fi-FI": "fi-FI";
|
|
1366
|
+
"hr-HR": "hr-HR";
|
|
1367
|
+
"lt-LT": "lt-LT";
|
|
1368
|
+
"lv-LV": "lv-LV";
|
|
1369
|
+
"et-EE": "et-EE";
|
|
1370
|
+
"ga-IE": "ga-IE";
|
|
1371
|
+
"mt-MT": "mt-MT";
|
|
1372
|
+
"ka-GE": "ka-GE";
|
|
1373
|
+
"fa-IR": "fa-IR";
|
|
1374
|
+
"bn-BD": "bn-BD";
|
|
1375
|
+
"ta-IN": "ta-IN";
|
|
1376
|
+
"si-LK": "si-LK";
|
|
1377
|
+
"ms-MY": "ms-MY";
|
|
1378
|
+
"fil-PH": "fil-PH";
|
|
1379
|
+
"my-MM": "my-MM";
|
|
1380
|
+
"km-KH": "km-KH";
|
|
1381
|
+
"lo-LA": "lo-LA";
|
|
1382
|
+
"mn-MN": "mn-MN";
|
|
1383
|
+
"kk-KZ": "kk-KZ";
|
|
1384
|
+
en: "en";
|
|
1385
|
+
ja: "ja";
|
|
1386
|
+
es: "es";
|
|
1387
|
+
fr: "fr";
|
|
1388
|
+
de: "de";
|
|
1389
|
+
ko: "ko";
|
|
1390
|
+
pt: "pt";
|
|
1391
|
+
"pt-BR": "pt-BR";
|
|
1392
|
+
it: "it";
|
|
1393
|
+
ru: "ru";
|
|
1394
|
+
ar: "ar";
|
|
1395
|
+
hi: "hi";
|
|
1396
|
+
vi: "vi";
|
|
1397
|
+
th: "th";
|
|
1398
|
+
tr: "tr";
|
|
1399
|
+
nl: "nl";
|
|
1400
|
+
pl: "pl";
|
|
1401
|
+
uk: "uk";
|
|
1402
|
+
sv: "sv";
|
|
1403
|
+
da: "da";
|
|
1404
|
+
fi: "fi";
|
|
1405
|
+
no: "no";
|
|
1406
|
+
cs: "cs";
|
|
1407
|
+
el: "el";
|
|
1408
|
+
hu: "hu";
|
|
1409
|
+
ro: "ro";
|
|
1410
|
+
he: "he";
|
|
1411
|
+
ms: "ms";
|
|
1412
|
+
fil: "fil";
|
|
1413
|
+
bn: "bn";
|
|
1414
|
+
ta: "ta";
|
|
1415
|
+
ca: "ca";
|
|
1416
|
+
sk: "sk";
|
|
1417
|
+
hr: "hr";
|
|
1418
|
+
bg: "bg";
|
|
1419
|
+
lt: "lt";
|
|
1420
|
+
lv: "lv";
|
|
1421
|
+
et: "et";
|
|
1422
|
+
fa: "fa";
|
|
1423
|
+
sw: "sw";
|
|
1424
|
+
sr: "sr";
|
|
1425
|
+
is: "is";
|
|
1426
|
+
}>>;
|
|
864
1427
|
cms_site_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
865
1428
|
cms_site_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
866
1429
|
schema_version: z.ZodLiteral<1>;
|
|
@@ -911,12 +1474,57 @@ export declare const CreateSiteBriefResponseSchema: z.ZodObject<{
|
|
|
911
1474
|
default_locale: z.ZodEnum<{
|
|
912
1475
|
id: "id";
|
|
913
1476
|
"zh-CN": "zh-CN";
|
|
1477
|
+
"zh-HK": "zh-HK";
|
|
1478
|
+
"zh-TW": "zh-TW";
|
|
1479
|
+
"en-US": "en-US";
|
|
1480
|
+
"en-GB": "en-GB";
|
|
1481
|
+
"ja-JP": "ja-JP";
|
|
1482
|
+
"ko-KR": "ko-KR";
|
|
1483
|
+
"es-ES": "es-ES";
|
|
1484
|
+
"fr-FR": "fr-FR";
|
|
1485
|
+
"de-DE": "de-DE";
|
|
1486
|
+
"pt-PT": "pt-PT";
|
|
1487
|
+
"ru-RU": "ru-RU";
|
|
1488
|
+
"ar-SA": "ar-SA";
|
|
1489
|
+
"id-ID": "id-ID";
|
|
1490
|
+
"vi-VN": "vi-VN";
|
|
1491
|
+
"th-TH": "th-TH";
|
|
1492
|
+
"it-IT": "it-IT";
|
|
1493
|
+
"nl-NL": "nl-NL";
|
|
1494
|
+
"tr-TR": "tr-TR";
|
|
1495
|
+
"pl-PL": "pl-PL";
|
|
1496
|
+
"uk-UA": "uk-UA";
|
|
1497
|
+
"cs-CZ": "cs-CZ";
|
|
1498
|
+
"sk-SK": "sk-SK";
|
|
1499
|
+
"hu-HU": "hu-HU";
|
|
1500
|
+
"ro-RO": "ro-RO";
|
|
1501
|
+
"el-GR": "el-GR";
|
|
1502
|
+
"sv-SE": "sv-SE";
|
|
1503
|
+
"da-DK": "da-DK";
|
|
1504
|
+
"fi-FI": "fi-FI";
|
|
1505
|
+
"hr-HR": "hr-HR";
|
|
1506
|
+
"lt-LT": "lt-LT";
|
|
1507
|
+
"lv-LV": "lv-LV";
|
|
1508
|
+
"et-EE": "et-EE";
|
|
1509
|
+
"ga-IE": "ga-IE";
|
|
1510
|
+
"mt-MT": "mt-MT";
|
|
1511
|
+
"ka-GE": "ka-GE";
|
|
1512
|
+
"fa-IR": "fa-IR";
|
|
1513
|
+
"bn-BD": "bn-BD";
|
|
1514
|
+
"ta-IN": "ta-IN";
|
|
1515
|
+
"si-LK": "si-LK";
|
|
1516
|
+
"ms-MY": "ms-MY";
|
|
1517
|
+
"fil-PH": "fil-PH";
|
|
1518
|
+
"my-MM": "my-MM";
|
|
1519
|
+
"km-KH": "km-KH";
|
|
1520
|
+
"lo-LA": "lo-LA";
|
|
1521
|
+
"mn-MN": "mn-MN";
|
|
1522
|
+
"kk-KZ": "kk-KZ";
|
|
914
1523
|
en: "en";
|
|
915
1524
|
ja: "ja";
|
|
916
1525
|
es: "es";
|
|
917
1526
|
fr: "fr";
|
|
918
1527
|
de: "de";
|
|
919
|
-
"zh-TW": "zh-TW";
|
|
920
1528
|
ko: "ko";
|
|
921
1529
|
pt: "pt";
|
|
922
1530
|
"pt-BR": "pt-BR";
|
|
@@ -955,6 +1563,98 @@ export declare const CreateSiteBriefResponseSchema: z.ZodObject<{
|
|
|
955
1563
|
sr: "sr";
|
|
956
1564
|
is: "is";
|
|
957
1565
|
}>;
|
|
1566
|
+
owner_locale: z.ZodOptional<z.ZodEnum<{
|
|
1567
|
+
id: "id";
|
|
1568
|
+
"zh-CN": "zh-CN";
|
|
1569
|
+
"zh-HK": "zh-HK";
|
|
1570
|
+
"zh-TW": "zh-TW";
|
|
1571
|
+
"en-US": "en-US";
|
|
1572
|
+
"en-GB": "en-GB";
|
|
1573
|
+
"ja-JP": "ja-JP";
|
|
1574
|
+
"ko-KR": "ko-KR";
|
|
1575
|
+
"es-ES": "es-ES";
|
|
1576
|
+
"fr-FR": "fr-FR";
|
|
1577
|
+
"de-DE": "de-DE";
|
|
1578
|
+
"pt-PT": "pt-PT";
|
|
1579
|
+
"ru-RU": "ru-RU";
|
|
1580
|
+
"ar-SA": "ar-SA";
|
|
1581
|
+
"id-ID": "id-ID";
|
|
1582
|
+
"vi-VN": "vi-VN";
|
|
1583
|
+
"th-TH": "th-TH";
|
|
1584
|
+
"it-IT": "it-IT";
|
|
1585
|
+
"nl-NL": "nl-NL";
|
|
1586
|
+
"tr-TR": "tr-TR";
|
|
1587
|
+
"pl-PL": "pl-PL";
|
|
1588
|
+
"uk-UA": "uk-UA";
|
|
1589
|
+
"cs-CZ": "cs-CZ";
|
|
1590
|
+
"sk-SK": "sk-SK";
|
|
1591
|
+
"hu-HU": "hu-HU";
|
|
1592
|
+
"ro-RO": "ro-RO";
|
|
1593
|
+
"el-GR": "el-GR";
|
|
1594
|
+
"sv-SE": "sv-SE";
|
|
1595
|
+
"da-DK": "da-DK";
|
|
1596
|
+
"fi-FI": "fi-FI";
|
|
1597
|
+
"hr-HR": "hr-HR";
|
|
1598
|
+
"lt-LT": "lt-LT";
|
|
1599
|
+
"lv-LV": "lv-LV";
|
|
1600
|
+
"et-EE": "et-EE";
|
|
1601
|
+
"ga-IE": "ga-IE";
|
|
1602
|
+
"mt-MT": "mt-MT";
|
|
1603
|
+
"ka-GE": "ka-GE";
|
|
1604
|
+
"fa-IR": "fa-IR";
|
|
1605
|
+
"bn-BD": "bn-BD";
|
|
1606
|
+
"ta-IN": "ta-IN";
|
|
1607
|
+
"si-LK": "si-LK";
|
|
1608
|
+
"ms-MY": "ms-MY";
|
|
1609
|
+
"fil-PH": "fil-PH";
|
|
1610
|
+
"my-MM": "my-MM";
|
|
1611
|
+
"km-KH": "km-KH";
|
|
1612
|
+
"lo-LA": "lo-LA";
|
|
1613
|
+
"mn-MN": "mn-MN";
|
|
1614
|
+
"kk-KZ": "kk-KZ";
|
|
1615
|
+
en: "en";
|
|
1616
|
+
ja: "ja";
|
|
1617
|
+
es: "es";
|
|
1618
|
+
fr: "fr";
|
|
1619
|
+
de: "de";
|
|
1620
|
+
ko: "ko";
|
|
1621
|
+
pt: "pt";
|
|
1622
|
+
"pt-BR": "pt-BR";
|
|
1623
|
+
it: "it";
|
|
1624
|
+
ru: "ru";
|
|
1625
|
+
ar: "ar";
|
|
1626
|
+
hi: "hi";
|
|
1627
|
+
vi: "vi";
|
|
1628
|
+
th: "th";
|
|
1629
|
+
tr: "tr";
|
|
1630
|
+
nl: "nl";
|
|
1631
|
+
pl: "pl";
|
|
1632
|
+
uk: "uk";
|
|
1633
|
+
sv: "sv";
|
|
1634
|
+
da: "da";
|
|
1635
|
+
fi: "fi";
|
|
1636
|
+
no: "no";
|
|
1637
|
+
cs: "cs";
|
|
1638
|
+
el: "el";
|
|
1639
|
+
hu: "hu";
|
|
1640
|
+
ro: "ro";
|
|
1641
|
+
he: "he";
|
|
1642
|
+
ms: "ms";
|
|
1643
|
+
fil: "fil";
|
|
1644
|
+
bn: "bn";
|
|
1645
|
+
ta: "ta";
|
|
1646
|
+
ca: "ca";
|
|
1647
|
+
sk: "sk";
|
|
1648
|
+
hr: "hr";
|
|
1649
|
+
bg: "bg";
|
|
1650
|
+
lt: "lt";
|
|
1651
|
+
lv: "lv";
|
|
1652
|
+
et: "et";
|
|
1653
|
+
fa: "fa";
|
|
1654
|
+
sw: "sw";
|
|
1655
|
+
sr: "sr";
|
|
1656
|
+
is: "is";
|
|
1657
|
+
}>>;
|
|
958
1658
|
cms_site_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
959
1659
|
cms_site_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
960
1660
|
schema_version: z.ZodLiteral<1>;
|
|
@@ -999,19 +1699,156 @@ export declare const UpdateBriefResponseSchema: z.ZodObject<{
|
|
|
999
1699
|
initial_generation_running: "initial_generation_running";
|
|
1000
1700
|
generated: "generated";
|
|
1001
1701
|
}>;
|
|
1002
|
-
planning_locked_at: z.ZodNullable<z.ZodString>;
|
|
1003
|
-
current_sitemap_id: z.ZodNullable<z.ZodString>;
|
|
1004
|
-
current_snapshot_id: z.ZodNullable<z.ZodString>;
|
|
1005
|
-
deployed_url: z.ZodNullable<z.ZodString>;
|
|
1006
|
-
default_locale: z.ZodEnum<{
|
|
1702
|
+
planning_locked_at: z.ZodNullable<z.ZodString>;
|
|
1703
|
+
current_sitemap_id: z.ZodNullable<z.ZodString>;
|
|
1704
|
+
current_snapshot_id: z.ZodNullable<z.ZodString>;
|
|
1705
|
+
deployed_url: z.ZodNullable<z.ZodString>;
|
|
1706
|
+
default_locale: z.ZodEnum<{
|
|
1707
|
+
id: "id";
|
|
1708
|
+
"zh-CN": "zh-CN";
|
|
1709
|
+
"zh-HK": "zh-HK";
|
|
1710
|
+
"zh-TW": "zh-TW";
|
|
1711
|
+
"en-US": "en-US";
|
|
1712
|
+
"en-GB": "en-GB";
|
|
1713
|
+
"ja-JP": "ja-JP";
|
|
1714
|
+
"ko-KR": "ko-KR";
|
|
1715
|
+
"es-ES": "es-ES";
|
|
1716
|
+
"fr-FR": "fr-FR";
|
|
1717
|
+
"de-DE": "de-DE";
|
|
1718
|
+
"pt-PT": "pt-PT";
|
|
1719
|
+
"ru-RU": "ru-RU";
|
|
1720
|
+
"ar-SA": "ar-SA";
|
|
1721
|
+
"id-ID": "id-ID";
|
|
1722
|
+
"vi-VN": "vi-VN";
|
|
1723
|
+
"th-TH": "th-TH";
|
|
1724
|
+
"it-IT": "it-IT";
|
|
1725
|
+
"nl-NL": "nl-NL";
|
|
1726
|
+
"tr-TR": "tr-TR";
|
|
1727
|
+
"pl-PL": "pl-PL";
|
|
1728
|
+
"uk-UA": "uk-UA";
|
|
1729
|
+
"cs-CZ": "cs-CZ";
|
|
1730
|
+
"sk-SK": "sk-SK";
|
|
1731
|
+
"hu-HU": "hu-HU";
|
|
1732
|
+
"ro-RO": "ro-RO";
|
|
1733
|
+
"el-GR": "el-GR";
|
|
1734
|
+
"sv-SE": "sv-SE";
|
|
1735
|
+
"da-DK": "da-DK";
|
|
1736
|
+
"fi-FI": "fi-FI";
|
|
1737
|
+
"hr-HR": "hr-HR";
|
|
1738
|
+
"lt-LT": "lt-LT";
|
|
1739
|
+
"lv-LV": "lv-LV";
|
|
1740
|
+
"et-EE": "et-EE";
|
|
1741
|
+
"ga-IE": "ga-IE";
|
|
1742
|
+
"mt-MT": "mt-MT";
|
|
1743
|
+
"ka-GE": "ka-GE";
|
|
1744
|
+
"fa-IR": "fa-IR";
|
|
1745
|
+
"bn-BD": "bn-BD";
|
|
1746
|
+
"ta-IN": "ta-IN";
|
|
1747
|
+
"si-LK": "si-LK";
|
|
1748
|
+
"ms-MY": "ms-MY";
|
|
1749
|
+
"fil-PH": "fil-PH";
|
|
1750
|
+
"my-MM": "my-MM";
|
|
1751
|
+
"km-KH": "km-KH";
|
|
1752
|
+
"lo-LA": "lo-LA";
|
|
1753
|
+
"mn-MN": "mn-MN";
|
|
1754
|
+
"kk-KZ": "kk-KZ";
|
|
1755
|
+
en: "en";
|
|
1756
|
+
ja: "ja";
|
|
1757
|
+
es: "es";
|
|
1758
|
+
fr: "fr";
|
|
1759
|
+
de: "de";
|
|
1760
|
+
ko: "ko";
|
|
1761
|
+
pt: "pt";
|
|
1762
|
+
"pt-BR": "pt-BR";
|
|
1763
|
+
it: "it";
|
|
1764
|
+
ru: "ru";
|
|
1765
|
+
ar: "ar";
|
|
1766
|
+
hi: "hi";
|
|
1767
|
+
vi: "vi";
|
|
1768
|
+
th: "th";
|
|
1769
|
+
tr: "tr";
|
|
1770
|
+
nl: "nl";
|
|
1771
|
+
pl: "pl";
|
|
1772
|
+
uk: "uk";
|
|
1773
|
+
sv: "sv";
|
|
1774
|
+
da: "da";
|
|
1775
|
+
fi: "fi";
|
|
1776
|
+
no: "no";
|
|
1777
|
+
cs: "cs";
|
|
1778
|
+
el: "el";
|
|
1779
|
+
hu: "hu";
|
|
1780
|
+
ro: "ro";
|
|
1781
|
+
he: "he";
|
|
1782
|
+
ms: "ms";
|
|
1783
|
+
fil: "fil";
|
|
1784
|
+
bn: "bn";
|
|
1785
|
+
ta: "ta";
|
|
1786
|
+
ca: "ca";
|
|
1787
|
+
sk: "sk";
|
|
1788
|
+
hr: "hr";
|
|
1789
|
+
bg: "bg";
|
|
1790
|
+
lt: "lt";
|
|
1791
|
+
lv: "lv";
|
|
1792
|
+
et: "et";
|
|
1793
|
+
fa: "fa";
|
|
1794
|
+
sw: "sw";
|
|
1795
|
+
sr: "sr";
|
|
1796
|
+
is: "is";
|
|
1797
|
+
}>;
|
|
1798
|
+
owner_locale: z.ZodOptional<z.ZodEnum<{
|
|
1007
1799
|
id: "id";
|
|
1008
1800
|
"zh-CN": "zh-CN";
|
|
1801
|
+
"zh-HK": "zh-HK";
|
|
1802
|
+
"zh-TW": "zh-TW";
|
|
1803
|
+
"en-US": "en-US";
|
|
1804
|
+
"en-GB": "en-GB";
|
|
1805
|
+
"ja-JP": "ja-JP";
|
|
1806
|
+
"ko-KR": "ko-KR";
|
|
1807
|
+
"es-ES": "es-ES";
|
|
1808
|
+
"fr-FR": "fr-FR";
|
|
1809
|
+
"de-DE": "de-DE";
|
|
1810
|
+
"pt-PT": "pt-PT";
|
|
1811
|
+
"ru-RU": "ru-RU";
|
|
1812
|
+
"ar-SA": "ar-SA";
|
|
1813
|
+
"id-ID": "id-ID";
|
|
1814
|
+
"vi-VN": "vi-VN";
|
|
1815
|
+
"th-TH": "th-TH";
|
|
1816
|
+
"it-IT": "it-IT";
|
|
1817
|
+
"nl-NL": "nl-NL";
|
|
1818
|
+
"tr-TR": "tr-TR";
|
|
1819
|
+
"pl-PL": "pl-PL";
|
|
1820
|
+
"uk-UA": "uk-UA";
|
|
1821
|
+
"cs-CZ": "cs-CZ";
|
|
1822
|
+
"sk-SK": "sk-SK";
|
|
1823
|
+
"hu-HU": "hu-HU";
|
|
1824
|
+
"ro-RO": "ro-RO";
|
|
1825
|
+
"el-GR": "el-GR";
|
|
1826
|
+
"sv-SE": "sv-SE";
|
|
1827
|
+
"da-DK": "da-DK";
|
|
1828
|
+
"fi-FI": "fi-FI";
|
|
1829
|
+
"hr-HR": "hr-HR";
|
|
1830
|
+
"lt-LT": "lt-LT";
|
|
1831
|
+
"lv-LV": "lv-LV";
|
|
1832
|
+
"et-EE": "et-EE";
|
|
1833
|
+
"ga-IE": "ga-IE";
|
|
1834
|
+
"mt-MT": "mt-MT";
|
|
1835
|
+
"ka-GE": "ka-GE";
|
|
1836
|
+
"fa-IR": "fa-IR";
|
|
1837
|
+
"bn-BD": "bn-BD";
|
|
1838
|
+
"ta-IN": "ta-IN";
|
|
1839
|
+
"si-LK": "si-LK";
|
|
1840
|
+
"ms-MY": "ms-MY";
|
|
1841
|
+
"fil-PH": "fil-PH";
|
|
1842
|
+
"my-MM": "my-MM";
|
|
1843
|
+
"km-KH": "km-KH";
|
|
1844
|
+
"lo-LA": "lo-LA";
|
|
1845
|
+
"mn-MN": "mn-MN";
|
|
1846
|
+
"kk-KZ": "kk-KZ";
|
|
1009
1847
|
en: "en";
|
|
1010
1848
|
ja: "ja";
|
|
1011
1849
|
es: "es";
|
|
1012
1850
|
fr: "fr";
|
|
1013
1851
|
de: "de";
|
|
1014
|
-
"zh-TW": "zh-TW";
|
|
1015
1852
|
ko: "ko";
|
|
1016
1853
|
pt: "pt";
|
|
1017
1854
|
"pt-BR": "pt-BR";
|
|
@@ -1049,7 +1886,7 @@ export declare const UpdateBriefResponseSchema: z.ZodObject<{
|
|
|
1049
1886
|
sw: "sw";
|
|
1050
1887
|
sr: "sr";
|
|
1051
1888
|
is: "is";
|
|
1052
|
-
}
|
|
1889
|
+
}>>;
|
|
1053
1890
|
cms_site_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1054
1891
|
cms_site_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1055
1892
|
schema_version: z.ZodLiteral<1>;
|
|
@@ -1071,6 +1908,22 @@ export declare const UpdateBriefResponseSchema: z.ZodObject<{
|
|
|
1071
1908
|
}, z.core.$strip>;
|
|
1072
1909
|
}, z.core.$strip>;
|
|
1073
1910
|
export type UpdateBriefResponse = z.infer<typeof UpdateBriefResponseSchema>;
|
|
1911
|
+
export declare const SaveBriefDraftResponseSchema: z.ZodObject<{
|
|
1912
|
+
brief: z.ZodObject<{
|
|
1913
|
+
id: z.ZodString;
|
|
1914
|
+
tenant_id: z.ZodString;
|
|
1915
|
+
site_id: z.ZodString;
|
|
1916
|
+
body: z.ZodString;
|
|
1917
|
+
source: z.ZodEnum<{
|
|
1918
|
+
user: "user";
|
|
1919
|
+
import: "import";
|
|
1920
|
+
system: "system";
|
|
1921
|
+
}>;
|
|
1922
|
+
created_at: z.ZodString;
|
|
1923
|
+
updated_at: z.ZodString;
|
|
1924
|
+
}, z.core.$strip>;
|
|
1925
|
+
}, z.core.$strip>;
|
|
1926
|
+
export type SaveBriefDraftResponse = z.infer<typeof SaveBriefDraftResponseSchema>;
|
|
1074
1927
|
export declare const AgentRunStatusSchema: z.ZodEnum<{
|
|
1075
1928
|
failed: "failed";
|
|
1076
1929
|
queued: "queued";
|
|
@@ -1271,12 +2124,57 @@ export declare const PersistSiteSnapshotResponseSchema: z.ZodObject<{
|
|
|
1271
2124
|
default_locale: z.ZodEnum<{
|
|
1272
2125
|
id: "id";
|
|
1273
2126
|
"zh-CN": "zh-CN";
|
|
2127
|
+
"zh-HK": "zh-HK";
|
|
2128
|
+
"zh-TW": "zh-TW";
|
|
2129
|
+
"en-US": "en-US";
|
|
2130
|
+
"en-GB": "en-GB";
|
|
2131
|
+
"ja-JP": "ja-JP";
|
|
2132
|
+
"ko-KR": "ko-KR";
|
|
2133
|
+
"es-ES": "es-ES";
|
|
2134
|
+
"fr-FR": "fr-FR";
|
|
2135
|
+
"de-DE": "de-DE";
|
|
2136
|
+
"pt-PT": "pt-PT";
|
|
2137
|
+
"ru-RU": "ru-RU";
|
|
2138
|
+
"ar-SA": "ar-SA";
|
|
2139
|
+
"id-ID": "id-ID";
|
|
2140
|
+
"vi-VN": "vi-VN";
|
|
2141
|
+
"th-TH": "th-TH";
|
|
2142
|
+
"it-IT": "it-IT";
|
|
2143
|
+
"nl-NL": "nl-NL";
|
|
2144
|
+
"tr-TR": "tr-TR";
|
|
2145
|
+
"pl-PL": "pl-PL";
|
|
2146
|
+
"uk-UA": "uk-UA";
|
|
2147
|
+
"cs-CZ": "cs-CZ";
|
|
2148
|
+
"sk-SK": "sk-SK";
|
|
2149
|
+
"hu-HU": "hu-HU";
|
|
2150
|
+
"ro-RO": "ro-RO";
|
|
2151
|
+
"el-GR": "el-GR";
|
|
2152
|
+
"sv-SE": "sv-SE";
|
|
2153
|
+
"da-DK": "da-DK";
|
|
2154
|
+
"fi-FI": "fi-FI";
|
|
2155
|
+
"hr-HR": "hr-HR";
|
|
2156
|
+
"lt-LT": "lt-LT";
|
|
2157
|
+
"lv-LV": "lv-LV";
|
|
2158
|
+
"et-EE": "et-EE";
|
|
2159
|
+
"ga-IE": "ga-IE";
|
|
2160
|
+
"mt-MT": "mt-MT";
|
|
2161
|
+
"ka-GE": "ka-GE";
|
|
2162
|
+
"fa-IR": "fa-IR";
|
|
2163
|
+
"bn-BD": "bn-BD";
|
|
2164
|
+
"ta-IN": "ta-IN";
|
|
2165
|
+
"si-LK": "si-LK";
|
|
2166
|
+
"ms-MY": "ms-MY";
|
|
2167
|
+
"fil-PH": "fil-PH";
|
|
2168
|
+
"my-MM": "my-MM";
|
|
2169
|
+
"km-KH": "km-KH";
|
|
2170
|
+
"lo-LA": "lo-LA";
|
|
2171
|
+
"mn-MN": "mn-MN";
|
|
2172
|
+
"kk-KZ": "kk-KZ";
|
|
1274
2173
|
en: "en";
|
|
1275
2174
|
ja: "ja";
|
|
1276
2175
|
es: "es";
|
|
1277
2176
|
fr: "fr";
|
|
1278
2177
|
de: "de";
|
|
1279
|
-
"zh-TW": "zh-TW";
|
|
1280
2178
|
ko: "ko";
|
|
1281
2179
|
pt: "pt";
|
|
1282
2180
|
"pt-BR": "pt-BR";
|
|
@@ -1315,6 +2213,98 @@ export declare const PersistSiteSnapshotResponseSchema: z.ZodObject<{
|
|
|
1315
2213
|
sr: "sr";
|
|
1316
2214
|
is: "is";
|
|
1317
2215
|
}>;
|
|
2216
|
+
owner_locale: z.ZodOptional<z.ZodEnum<{
|
|
2217
|
+
id: "id";
|
|
2218
|
+
"zh-CN": "zh-CN";
|
|
2219
|
+
"zh-HK": "zh-HK";
|
|
2220
|
+
"zh-TW": "zh-TW";
|
|
2221
|
+
"en-US": "en-US";
|
|
2222
|
+
"en-GB": "en-GB";
|
|
2223
|
+
"ja-JP": "ja-JP";
|
|
2224
|
+
"ko-KR": "ko-KR";
|
|
2225
|
+
"es-ES": "es-ES";
|
|
2226
|
+
"fr-FR": "fr-FR";
|
|
2227
|
+
"de-DE": "de-DE";
|
|
2228
|
+
"pt-PT": "pt-PT";
|
|
2229
|
+
"ru-RU": "ru-RU";
|
|
2230
|
+
"ar-SA": "ar-SA";
|
|
2231
|
+
"id-ID": "id-ID";
|
|
2232
|
+
"vi-VN": "vi-VN";
|
|
2233
|
+
"th-TH": "th-TH";
|
|
2234
|
+
"it-IT": "it-IT";
|
|
2235
|
+
"nl-NL": "nl-NL";
|
|
2236
|
+
"tr-TR": "tr-TR";
|
|
2237
|
+
"pl-PL": "pl-PL";
|
|
2238
|
+
"uk-UA": "uk-UA";
|
|
2239
|
+
"cs-CZ": "cs-CZ";
|
|
2240
|
+
"sk-SK": "sk-SK";
|
|
2241
|
+
"hu-HU": "hu-HU";
|
|
2242
|
+
"ro-RO": "ro-RO";
|
|
2243
|
+
"el-GR": "el-GR";
|
|
2244
|
+
"sv-SE": "sv-SE";
|
|
2245
|
+
"da-DK": "da-DK";
|
|
2246
|
+
"fi-FI": "fi-FI";
|
|
2247
|
+
"hr-HR": "hr-HR";
|
|
2248
|
+
"lt-LT": "lt-LT";
|
|
2249
|
+
"lv-LV": "lv-LV";
|
|
2250
|
+
"et-EE": "et-EE";
|
|
2251
|
+
"ga-IE": "ga-IE";
|
|
2252
|
+
"mt-MT": "mt-MT";
|
|
2253
|
+
"ka-GE": "ka-GE";
|
|
2254
|
+
"fa-IR": "fa-IR";
|
|
2255
|
+
"bn-BD": "bn-BD";
|
|
2256
|
+
"ta-IN": "ta-IN";
|
|
2257
|
+
"si-LK": "si-LK";
|
|
2258
|
+
"ms-MY": "ms-MY";
|
|
2259
|
+
"fil-PH": "fil-PH";
|
|
2260
|
+
"my-MM": "my-MM";
|
|
2261
|
+
"km-KH": "km-KH";
|
|
2262
|
+
"lo-LA": "lo-LA";
|
|
2263
|
+
"mn-MN": "mn-MN";
|
|
2264
|
+
"kk-KZ": "kk-KZ";
|
|
2265
|
+
en: "en";
|
|
2266
|
+
ja: "ja";
|
|
2267
|
+
es: "es";
|
|
2268
|
+
fr: "fr";
|
|
2269
|
+
de: "de";
|
|
2270
|
+
ko: "ko";
|
|
2271
|
+
pt: "pt";
|
|
2272
|
+
"pt-BR": "pt-BR";
|
|
2273
|
+
it: "it";
|
|
2274
|
+
ru: "ru";
|
|
2275
|
+
ar: "ar";
|
|
2276
|
+
hi: "hi";
|
|
2277
|
+
vi: "vi";
|
|
2278
|
+
th: "th";
|
|
2279
|
+
tr: "tr";
|
|
2280
|
+
nl: "nl";
|
|
2281
|
+
pl: "pl";
|
|
2282
|
+
uk: "uk";
|
|
2283
|
+
sv: "sv";
|
|
2284
|
+
da: "da";
|
|
2285
|
+
fi: "fi";
|
|
2286
|
+
no: "no";
|
|
2287
|
+
cs: "cs";
|
|
2288
|
+
el: "el";
|
|
2289
|
+
hu: "hu";
|
|
2290
|
+
ro: "ro";
|
|
2291
|
+
he: "he";
|
|
2292
|
+
ms: "ms";
|
|
2293
|
+
fil: "fil";
|
|
2294
|
+
bn: "bn";
|
|
2295
|
+
ta: "ta";
|
|
2296
|
+
ca: "ca";
|
|
2297
|
+
sk: "sk";
|
|
2298
|
+
hr: "hr";
|
|
2299
|
+
bg: "bg";
|
|
2300
|
+
lt: "lt";
|
|
2301
|
+
lv: "lv";
|
|
2302
|
+
et: "et";
|
|
2303
|
+
fa: "fa";
|
|
2304
|
+
sw: "sw";
|
|
2305
|
+
sr: "sr";
|
|
2306
|
+
is: "is";
|
|
2307
|
+
}>>;
|
|
1318
2308
|
cms_site_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1319
2309
|
cms_site_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1320
2310
|
schema_version: z.ZodLiteral<1>;
|
|
@@ -1375,12 +2365,57 @@ export declare const PromoteSiteSnapshotResponseSchema: z.ZodObject<{
|
|
|
1375
2365
|
default_locale: z.ZodEnum<{
|
|
1376
2366
|
id: "id";
|
|
1377
2367
|
"zh-CN": "zh-CN";
|
|
2368
|
+
"zh-HK": "zh-HK";
|
|
2369
|
+
"zh-TW": "zh-TW";
|
|
2370
|
+
"en-US": "en-US";
|
|
2371
|
+
"en-GB": "en-GB";
|
|
2372
|
+
"ja-JP": "ja-JP";
|
|
2373
|
+
"ko-KR": "ko-KR";
|
|
2374
|
+
"es-ES": "es-ES";
|
|
2375
|
+
"fr-FR": "fr-FR";
|
|
2376
|
+
"de-DE": "de-DE";
|
|
2377
|
+
"pt-PT": "pt-PT";
|
|
2378
|
+
"ru-RU": "ru-RU";
|
|
2379
|
+
"ar-SA": "ar-SA";
|
|
2380
|
+
"id-ID": "id-ID";
|
|
2381
|
+
"vi-VN": "vi-VN";
|
|
2382
|
+
"th-TH": "th-TH";
|
|
2383
|
+
"it-IT": "it-IT";
|
|
2384
|
+
"nl-NL": "nl-NL";
|
|
2385
|
+
"tr-TR": "tr-TR";
|
|
2386
|
+
"pl-PL": "pl-PL";
|
|
2387
|
+
"uk-UA": "uk-UA";
|
|
2388
|
+
"cs-CZ": "cs-CZ";
|
|
2389
|
+
"sk-SK": "sk-SK";
|
|
2390
|
+
"hu-HU": "hu-HU";
|
|
2391
|
+
"ro-RO": "ro-RO";
|
|
2392
|
+
"el-GR": "el-GR";
|
|
2393
|
+
"sv-SE": "sv-SE";
|
|
2394
|
+
"da-DK": "da-DK";
|
|
2395
|
+
"fi-FI": "fi-FI";
|
|
2396
|
+
"hr-HR": "hr-HR";
|
|
2397
|
+
"lt-LT": "lt-LT";
|
|
2398
|
+
"lv-LV": "lv-LV";
|
|
2399
|
+
"et-EE": "et-EE";
|
|
2400
|
+
"ga-IE": "ga-IE";
|
|
2401
|
+
"mt-MT": "mt-MT";
|
|
2402
|
+
"ka-GE": "ka-GE";
|
|
2403
|
+
"fa-IR": "fa-IR";
|
|
2404
|
+
"bn-BD": "bn-BD";
|
|
2405
|
+
"ta-IN": "ta-IN";
|
|
2406
|
+
"si-LK": "si-LK";
|
|
2407
|
+
"ms-MY": "ms-MY";
|
|
2408
|
+
"fil-PH": "fil-PH";
|
|
2409
|
+
"my-MM": "my-MM";
|
|
2410
|
+
"km-KH": "km-KH";
|
|
2411
|
+
"lo-LA": "lo-LA";
|
|
2412
|
+
"mn-MN": "mn-MN";
|
|
2413
|
+
"kk-KZ": "kk-KZ";
|
|
1378
2414
|
en: "en";
|
|
1379
2415
|
ja: "ja";
|
|
1380
2416
|
es: "es";
|
|
1381
2417
|
fr: "fr";
|
|
1382
2418
|
de: "de";
|
|
1383
|
-
"zh-TW": "zh-TW";
|
|
1384
2419
|
ko: "ko";
|
|
1385
2420
|
pt: "pt";
|
|
1386
2421
|
"pt-BR": "pt-BR";
|
|
@@ -1419,6 +2454,98 @@ export declare const PromoteSiteSnapshotResponseSchema: z.ZodObject<{
|
|
|
1419
2454
|
sr: "sr";
|
|
1420
2455
|
is: "is";
|
|
1421
2456
|
}>;
|
|
2457
|
+
owner_locale: z.ZodOptional<z.ZodEnum<{
|
|
2458
|
+
id: "id";
|
|
2459
|
+
"zh-CN": "zh-CN";
|
|
2460
|
+
"zh-HK": "zh-HK";
|
|
2461
|
+
"zh-TW": "zh-TW";
|
|
2462
|
+
"en-US": "en-US";
|
|
2463
|
+
"en-GB": "en-GB";
|
|
2464
|
+
"ja-JP": "ja-JP";
|
|
2465
|
+
"ko-KR": "ko-KR";
|
|
2466
|
+
"es-ES": "es-ES";
|
|
2467
|
+
"fr-FR": "fr-FR";
|
|
2468
|
+
"de-DE": "de-DE";
|
|
2469
|
+
"pt-PT": "pt-PT";
|
|
2470
|
+
"ru-RU": "ru-RU";
|
|
2471
|
+
"ar-SA": "ar-SA";
|
|
2472
|
+
"id-ID": "id-ID";
|
|
2473
|
+
"vi-VN": "vi-VN";
|
|
2474
|
+
"th-TH": "th-TH";
|
|
2475
|
+
"it-IT": "it-IT";
|
|
2476
|
+
"nl-NL": "nl-NL";
|
|
2477
|
+
"tr-TR": "tr-TR";
|
|
2478
|
+
"pl-PL": "pl-PL";
|
|
2479
|
+
"uk-UA": "uk-UA";
|
|
2480
|
+
"cs-CZ": "cs-CZ";
|
|
2481
|
+
"sk-SK": "sk-SK";
|
|
2482
|
+
"hu-HU": "hu-HU";
|
|
2483
|
+
"ro-RO": "ro-RO";
|
|
2484
|
+
"el-GR": "el-GR";
|
|
2485
|
+
"sv-SE": "sv-SE";
|
|
2486
|
+
"da-DK": "da-DK";
|
|
2487
|
+
"fi-FI": "fi-FI";
|
|
2488
|
+
"hr-HR": "hr-HR";
|
|
2489
|
+
"lt-LT": "lt-LT";
|
|
2490
|
+
"lv-LV": "lv-LV";
|
|
2491
|
+
"et-EE": "et-EE";
|
|
2492
|
+
"ga-IE": "ga-IE";
|
|
2493
|
+
"mt-MT": "mt-MT";
|
|
2494
|
+
"ka-GE": "ka-GE";
|
|
2495
|
+
"fa-IR": "fa-IR";
|
|
2496
|
+
"bn-BD": "bn-BD";
|
|
2497
|
+
"ta-IN": "ta-IN";
|
|
2498
|
+
"si-LK": "si-LK";
|
|
2499
|
+
"ms-MY": "ms-MY";
|
|
2500
|
+
"fil-PH": "fil-PH";
|
|
2501
|
+
"my-MM": "my-MM";
|
|
2502
|
+
"km-KH": "km-KH";
|
|
2503
|
+
"lo-LA": "lo-LA";
|
|
2504
|
+
"mn-MN": "mn-MN";
|
|
2505
|
+
"kk-KZ": "kk-KZ";
|
|
2506
|
+
en: "en";
|
|
2507
|
+
ja: "ja";
|
|
2508
|
+
es: "es";
|
|
2509
|
+
fr: "fr";
|
|
2510
|
+
de: "de";
|
|
2511
|
+
ko: "ko";
|
|
2512
|
+
pt: "pt";
|
|
2513
|
+
"pt-BR": "pt-BR";
|
|
2514
|
+
it: "it";
|
|
2515
|
+
ru: "ru";
|
|
2516
|
+
ar: "ar";
|
|
2517
|
+
hi: "hi";
|
|
2518
|
+
vi: "vi";
|
|
2519
|
+
th: "th";
|
|
2520
|
+
tr: "tr";
|
|
2521
|
+
nl: "nl";
|
|
2522
|
+
pl: "pl";
|
|
2523
|
+
uk: "uk";
|
|
2524
|
+
sv: "sv";
|
|
2525
|
+
da: "da";
|
|
2526
|
+
fi: "fi";
|
|
2527
|
+
no: "no";
|
|
2528
|
+
cs: "cs";
|
|
2529
|
+
el: "el";
|
|
2530
|
+
hu: "hu";
|
|
2531
|
+
ro: "ro";
|
|
2532
|
+
he: "he";
|
|
2533
|
+
ms: "ms";
|
|
2534
|
+
fil: "fil";
|
|
2535
|
+
bn: "bn";
|
|
2536
|
+
ta: "ta";
|
|
2537
|
+
ca: "ca";
|
|
2538
|
+
sk: "sk";
|
|
2539
|
+
hr: "hr";
|
|
2540
|
+
bg: "bg";
|
|
2541
|
+
lt: "lt";
|
|
2542
|
+
lv: "lv";
|
|
2543
|
+
et: "et";
|
|
2544
|
+
fa: "fa";
|
|
2545
|
+
sw: "sw";
|
|
2546
|
+
sr: "sr";
|
|
2547
|
+
is: "is";
|
|
2548
|
+
}>>;
|
|
1422
2549
|
cms_site_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1423
2550
|
cms_site_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1424
2551
|
schema_version: z.ZodLiteral<1>;
|
|
@@ -1580,12 +2707,57 @@ export declare const RestoreSiteSnapshotResponseSchema: z.ZodObject<{
|
|
|
1580
2707
|
default_locale: z.ZodEnum<{
|
|
1581
2708
|
id: "id";
|
|
1582
2709
|
"zh-CN": "zh-CN";
|
|
2710
|
+
"zh-HK": "zh-HK";
|
|
2711
|
+
"zh-TW": "zh-TW";
|
|
2712
|
+
"en-US": "en-US";
|
|
2713
|
+
"en-GB": "en-GB";
|
|
2714
|
+
"ja-JP": "ja-JP";
|
|
2715
|
+
"ko-KR": "ko-KR";
|
|
2716
|
+
"es-ES": "es-ES";
|
|
2717
|
+
"fr-FR": "fr-FR";
|
|
2718
|
+
"de-DE": "de-DE";
|
|
2719
|
+
"pt-PT": "pt-PT";
|
|
2720
|
+
"ru-RU": "ru-RU";
|
|
2721
|
+
"ar-SA": "ar-SA";
|
|
2722
|
+
"id-ID": "id-ID";
|
|
2723
|
+
"vi-VN": "vi-VN";
|
|
2724
|
+
"th-TH": "th-TH";
|
|
2725
|
+
"it-IT": "it-IT";
|
|
2726
|
+
"nl-NL": "nl-NL";
|
|
2727
|
+
"tr-TR": "tr-TR";
|
|
2728
|
+
"pl-PL": "pl-PL";
|
|
2729
|
+
"uk-UA": "uk-UA";
|
|
2730
|
+
"cs-CZ": "cs-CZ";
|
|
2731
|
+
"sk-SK": "sk-SK";
|
|
2732
|
+
"hu-HU": "hu-HU";
|
|
2733
|
+
"ro-RO": "ro-RO";
|
|
2734
|
+
"el-GR": "el-GR";
|
|
2735
|
+
"sv-SE": "sv-SE";
|
|
2736
|
+
"da-DK": "da-DK";
|
|
2737
|
+
"fi-FI": "fi-FI";
|
|
2738
|
+
"hr-HR": "hr-HR";
|
|
2739
|
+
"lt-LT": "lt-LT";
|
|
2740
|
+
"lv-LV": "lv-LV";
|
|
2741
|
+
"et-EE": "et-EE";
|
|
2742
|
+
"ga-IE": "ga-IE";
|
|
2743
|
+
"mt-MT": "mt-MT";
|
|
2744
|
+
"ka-GE": "ka-GE";
|
|
2745
|
+
"fa-IR": "fa-IR";
|
|
2746
|
+
"bn-BD": "bn-BD";
|
|
2747
|
+
"ta-IN": "ta-IN";
|
|
2748
|
+
"si-LK": "si-LK";
|
|
2749
|
+
"ms-MY": "ms-MY";
|
|
2750
|
+
"fil-PH": "fil-PH";
|
|
2751
|
+
"my-MM": "my-MM";
|
|
2752
|
+
"km-KH": "km-KH";
|
|
2753
|
+
"lo-LA": "lo-LA";
|
|
2754
|
+
"mn-MN": "mn-MN";
|
|
2755
|
+
"kk-KZ": "kk-KZ";
|
|
1583
2756
|
en: "en";
|
|
1584
2757
|
ja: "ja";
|
|
1585
2758
|
es: "es";
|
|
1586
2759
|
fr: "fr";
|
|
1587
2760
|
de: "de";
|
|
1588
|
-
"zh-TW": "zh-TW";
|
|
1589
2761
|
ko: "ko";
|
|
1590
2762
|
pt: "pt";
|
|
1591
2763
|
"pt-BR": "pt-BR";
|
|
@@ -1624,6 +2796,98 @@ export declare const RestoreSiteSnapshotResponseSchema: z.ZodObject<{
|
|
|
1624
2796
|
sr: "sr";
|
|
1625
2797
|
is: "is";
|
|
1626
2798
|
}>;
|
|
2799
|
+
owner_locale: z.ZodOptional<z.ZodEnum<{
|
|
2800
|
+
id: "id";
|
|
2801
|
+
"zh-CN": "zh-CN";
|
|
2802
|
+
"zh-HK": "zh-HK";
|
|
2803
|
+
"zh-TW": "zh-TW";
|
|
2804
|
+
"en-US": "en-US";
|
|
2805
|
+
"en-GB": "en-GB";
|
|
2806
|
+
"ja-JP": "ja-JP";
|
|
2807
|
+
"ko-KR": "ko-KR";
|
|
2808
|
+
"es-ES": "es-ES";
|
|
2809
|
+
"fr-FR": "fr-FR";
|
|
2810
|
+
"de-DE": "de-DE";
|
|
2811
|
+
"pt-PT": "pt-PT";
|
|
2812
|
+
"ru-RU": "ru-RU";
|
|
2813
|
+
"ar-SA": "ar-SA";
|
|
2814
|
+
"id-ID": "id-ID";
|
|
2815
|
+
"vi-VN": "vi-VN";
|
|
2816
|
+
"th-TH": "th-TH";
|
|
2817
|
+
"it-IT": "it-IT";
|
|
2818
|
+
"nl-NL": "nl-NL";
|
|
2819
|
+
"tr-TR": "tr-TR";
|
|
2820
|
+
"pl-PL": "pl-PL";
|
|
2821
|
+
"uk-UA": "uk-UA";
|
|
2822
|
+
"cs-CZ": "cs-CZ";
|
|
2823
|
+
"sk-SK": "sk-SK";
|
|
2824
|
+
"hu-HU": "hu-HU";
|
|
2825
|
+
"ro-RO": "ro-RO";
|
|
2826
|
+
"el-GR": "el-GR";
|
|
2827
|
+
"sv-SE": "sv-SE";
|
|
2828
|
+
"da-DK": "da-DK";
|
|
2829
|
+
"fi-FI": "fi-FI";
|
|
2830
|
+
"hr-HR": "hr-HR";
|
|
2831
|
+
"lt-LT": "lt-LT";
|
|
2832
|
+
"lv-LV": "lv-LV";
|
|
2833
|
+
"et-EE": "et-EE";
|
|
2834
|
+
"ga-IE": "ga-IE";
|
|
2835
|
+
"mt-MT": "mt-MT";
|
|
2836
|
+
"ka-GE": "ka-GE";
|
|
2837
|
+
"fa-IR": "fa-IR";
|
|
2838
|
+
"bn-BD": "bn-BD";
|
|
2839
|
+
"ta-IN": "ta-IN";
|
|
2840
|
+
"si-LK": "si-LK";
|
|
2841
|
+
"ms-MY": "ms-MY";
|
|
2842
|
+
"fil-PH": "fil-PH";
|
|
2843
|
+
"my-MM": "my-MM";
|
|
2844
|
+
"km-KH": "km-KH";
|
|
2845
|
+
"lo-LA": "lo-LA";
|
|
2846
|
+
"mn-MN": "mn-MN";
|
|
2847
|
+
"kk-KZ": "kk-KZ";
|
|
2848
|
+
en: "en";
|
|
2849
|
+
ja: "ja";
|
|
2850
|
+
es: "es";
|
|
2851
|
+
fr: "fr";
|
|
2852
|
+
de: "de";
|
|
2853
|
+
ko: "ko";
|
|
2854
|
+
pt: "pt";
|
|
2855
|
+
"pt-BR": "pt-BR";
|
|
2856
|
+
it: "it";
|
|
2857
|
+
ru: "ru";
|
|
2858
|
+
ar: "ar";
|
|
2859
|
+
hi: "hi";
|
|
2860
|
+
vi: "vi";
|
|
2861
|
+
th: "th";
|
|
2862
|
+
tr: "tr";
|
|
2863
|
+
nl: "nl";
|
|
2864
|
+
pl: "pl";
|
|
2865
|
+
uk: "uk";
|
|
2866
|
+
sv: "sv";
|
|
2867
|
+
da: "da";
|
|
2868
|
+
fi: "fi";
|
|
2869
|
+
no: "no";
|
|
2870
|
+
cs: "cs";
|
|
2871
|
+
el: "el";
|
|
2872
|
+
hu: "hu";
|
|
2873
|
+
ro: "ro";
|
|
2874
|
+
he: "he";
|
|
2875
|
+
ms: "ms";
|
|
2876
|
+
fil: "fil";
|
|
2877
|
+
bn: "bn";
|
|
2878
|
+
ta: "ta";
|
|
2879
|
+
ca: "ca";
|
|
2880
|
+
sk: "sk";
|
|
2881
|
+
hr: "hr";
|
|
2882
|
+
bg: "bg";
|
|
2883
|
+
lt: "lt";
|
|
2884
|
+
lv: "lv";
|
|
2885
|
+
et: "et";
|
|
2886
|
+
fa: "fa";
|
|
2887
|
+
sw: "sw";
|
|
2888
|
+
sr: "sr";
|
|
2889
|
+
is: "is";
|
|
2890
|
+
}>>;
|
|
1627
2891
|
cms_site_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1628
2892
|
cms_site_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1629
2893
|
schema_version: z.ZodLiteral<1>;
|
|
@@ -1686,6 +2950,7 @@ export declare const PrepareVersionPreviewResponseSchema: z.ZodObject<{
|
|
|
1686
2950
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
1687
2951
|
}, z.core.$strip>;
|
|
1688
2952
|
export type PrepareVersionPreviewResponse = z.infer<typeof PrepareVersionPreviewResponseSchema>;
|
|
2953
|
+
export declare const DEPLOYMENT_ENTITLEMENT_REQUIRED_ERROR_CODE: "DEPLOYMENT_ENTITLEMENT_REQUIRED";
|
|
1689
2954
|
export declare const DeploymentStatusSchema: z.ZodEnum<{
|
|
1690
2955
|
queued: "queued";
|
|
1691
2956
|
preparing_source: "preparing_source";
|
|
@@ -2218,11 +3483,11 @@ export declare const VisualThemeSchema: z.ZodObject<{
|
|
|
2218
3483
|
dark: "dark";
|
|
2219
3484
|
}>>;
|
|
2220
3485
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
3486
|
+
none: "none";
|
|
2221
3487
|
sm: "sm";
|
|
2222
3488
|
md: "md";
|
|
2223
3489
|
lg: "lg";
|
|
2224
3490
|
xl: "xl";
|
|
2225
|
-
none: "none";
|
|
2226
3491
|
}>>;
|
|
2227
3492
|
density: z.ZodOptional<z.ZodEnum<{
|
|
2228
3493
|
compact: "compact";
|
|
@@ -2400,11 +3665,11 @@ export declare const SiteDesignContextSchema: z.ZodObject<{
|
|
|
2400
3665
|
dark: "dark";
|
|
2401
3666
|
}>>;
|
|
2402
3667
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
3668
|
+
none: "none";
|
|
2403
3669
|
sm: "sm";
|
|
2404
3670
|
md: "md";
|
|
2405
3671
|
lg: "lg";
|
|
2406
3672
|
xl: "xl";
|
|
2407
|
-
none: "none";
|
|
2408
3673
|
}>>;
|
|
2409
3674
|
imagePalette: z.ZodOptional<z.ZodObject<{
|
|
2410
3675
|
background: z.ZodOptional<z.ZodString>;
|
|
@@ -2686,11 +3951,11 @@ export declare const DesignPlanSchema: z.ZodObject<{
|
|
|
2686
3951
|
dark: "dark";
|
|
2687
3952
|
}>>;
|
|
2688
3953
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
3954
|
+
none: "none";
|
|
2689
3955
|
sm: "sm";
|
|
2690
3956
|
md: "md";
|
|
2691
3957
|
lg: "lg";
|
|
2692
3958
|
xl: "xl";
|
|
2693
|
-
none: "none";
|
|
2694
3959
|
}>>;
|
|
2695
3960
|
imagePalette: z.ZodOptional<z.ZodObject<{
|
|
2696
3961
|
background: z.ZodOptional<z.ZodString>;
|
|
@@ -2817,11 +4082,11 @@ export declare const DesignPlanPatchSchema: z.ZodObject<{
|
|
|
2817
4082
|
dark: "dark";
|
|
2818
4083
|
}>>;
|
|
2819
4084
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
4085
|
+
none: "none";
|
|
2820
4086
|
sm: "sm";
|
|
2821
4087
|
md: "md";
|
|
2822
4088
|
lg: "lg";
|
|
2823
4089
|
xl: "xl";
|
|
2824
|
-
none: "none";
|
|
2825
4090
|
}>>;
|
|
2826
4091
|
density: z.ZodEnum<{
|
|
2827
4092
|
compact: "compact";
|
|
@@ -2945,6 +4210,8 @@ export declare const BlockSchema: z.ZodObject<{
|
|
|
2945
4210
|
userInstruction: z.ZodOptional<z.ZodString>;
|
|
2946
4211
|
}, z.core.$strip>>;
|
|
2947
4212
|
}, z.core.$strict>;
|
|
4213
|
+
export declare const PageSlugSchema: z.ZodString;
|
|
4214
|
+
export declare const SitemapNavigationHrefSchema: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
2948
4215
|
export declare const PageSchema: z.ZodObject<{
|
|
2949
4216
|
id: z.ZodString;
|
|
2950
4217
|
slug: z.ZodString;
|
|
@@ -2978,6 +4245,40 @@ export declare const PageSchema: z.ZodObject<{
|
|
|
2978
4245
|
order: z.ZodNumber;
|
|
2979
4246
|
}, z.core.$strip>;
|
|
2980
4247
|
}, z.core.$strict>;
|
|
4248
|
+
export declare const SitemapModelPageSchema: z.ZodObject<{
|
|
4249
|
+
id: z.ZodString;
|
|
4250
|
+
title: z.ZodString;
|
|
4251
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
4252
|
+
id: z.ZodString;
|
|
4253
|
+
type: z.ZodString;
|
|
4254
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
4255
|
+
order: z.ZodNumber;
|
|
4256
|
+
props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4257
|
+
enabled: z.ZodBoolean;
|
|
4258
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
4259
|
+
aiGenerated: z.ZodBoolean;
|
|
4260
|
+
userEdited: z.ZodBoolean;
|
|
4261
|
+
lastEditedAt: z.ZodString;
|
|
4262
|
+
lastEditedBy: z.ZodEnum<{
|
|
4263
|
+
ai: "ai";
|
|
4264
|
+
user: "user";
|
|
4265
|
+
}>;
|
|
4266
|
+
userInstruction: z.ZodOptional<z.ZodString>;
|
|
4267
|
+
}, z.core.$strip>>;
|
|
4268
|
+
}, z.core.$strict>>;
|
|
4269
|
+
layout: z.ZodOptional<z.ZodEnum<{
|
|
4270
|
+
default: "default";
|
|
4271
|
+
centered: "centered";
|
|
4272
|
+
fullwidth: "fullwidth";
|
|
4273
|
+
}>>;
|
|
4274
|
+
navigation: z.ZodObject<{
|
|
4275
|
+
showInHeader: z.ZodBoolean;
|
|
4276
|
+
showInFooter: z.ZodBoolean;
|
|
4277
|
+
order: z.ZodNumber;
|
|
4278
|
+
}, z.core.$strip>;
|
|
4279
|
+
slug: z.ZodString;
|
|
4280
|
+
}, z.core.$strict>;
|
|
4281
|
+
export type SitemapModelPage = z.infer<typeof SitemapModelPageSchema>;
|
|
2981
4282
|
export declare const SitemapSchema: z.ZodObject<{
|
|
2982
4283
|
site_name: z.ZodOptional<z.ZodString>;
|
|
2983
4284
|
version: z.ZodNumber;
|
|
@@ -3017,11 +4318,11 @@ export declare const SitemapSchema: z.ZodObject<{
|
|
|
3017
4318
|
navigation: z.ZodObject<{
|
|
3018
4319
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
3019
4320
|
label: z.ZodString;
|
|
3020
|
-
href: z.ZodString
|
|
4321
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3021
4322
|
}, z.core.$strip>>;
|
|
3022
4323
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
3023
4324
|
label: z.ZodString;
|
|
3024
|
-
href: z.ZodString
|
|
4325
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3025
4326
|
}, z.core.$strip>>;
|
|
3026
4327
|
}, z.core.$strip>;
|
|
3027
4328
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -3067,11 +4368,11 @@ export declare const SitemapSchema: z.ZodObject<{
|
|
|
3067
4368
|
dark: "dark";
|
|
3068
4369
|
}>>;
|
|
3069
4370
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
4371
|
+
none: "none";
|
|
3070
4372
|
sm: "sm";
|
|
3071
4373
|
md: "md";
|
|
3072
4374
|
lg: "lg";
|
|
3073
4375
|
xl: "xl";
|
|
3074
|
-
none: "none";
|
|
3075
4376
|
}>>;
|
|
3076
4377
|
density: z.ZodOptional<z.ZodEnum<{
|
|
3077
4378
|
compact: "compact";
|
|
@@ -3114,7 +4415,7 @@ export declare const SitemapSchema: z.ZodObject<{
|
|
|
3114
4415
|
}, z.core.$strict>;
|
|
3115
4416
|
export type Sitemap = z.infer<typeof SitemapSchema>;
|
|
3116
4417
|
/**
|
|
3117
|
-
* 提供给
|
|
4418
|
+
* 提供给 emit_sitemap 工具输入的 sitemap schema 子集。
|
|
3118
4419
|
* skillSelection / visualTheme / userChoices / confirmedChoices
|
|
3119
4420
|
* 是服务端注入字段,LLM 不输出。
|
|
3120
4421
|
*/
|
|
@@ -3126,19 +4427,13 @@ export declare const SitemapModelOutputSchema: z.ZodObject<{
|
|
|
3126
4427
|
source_brief_id: z.ZodOptional<z.ZodString>;
|
|
3127
4428
|
source_answer_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3128
4429
|
}, z.core.$strip>;
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
footerLinks: z.ZodArray<z.ZodObject<{
|
|
3135
|
-
label: z.ZodString;
|
|
3136
|
-
href: z.ZodString;
|
|
3137
|
-
}, z.core.$strip>>;
|
|
3138
|
-
}, z.core.$strip>;
|
|
4430
|
+
integrations: z.ZodOptional<z.ZodObject<{
|
|
4431
|
+
cms: z.ZodOptional<z.ZodUnknown>;
|
|
4432
|
+
analytics: z.ZodOptional<z.ZodUnknown>;
|
|
4433
|
+
}, z.core.$strip>>;
|
|
4434
|
+
site_name: z.ZodString;
|
|
3139
4435
|
pages: z.ZodArray<z.ZodObject<{
|
|
3140
4436
|
id: z.ZodString;
|
|
3141
|
-
slug: z.ZodString;
|
|
3142
4437
|
title: z.ZodString;
|
|
3143
4438
|
blocks: z.ZodArray<z.ZodObject<{
|
|
3144
4439
|
id: z.ZodString;
|
|
@@ -3168,12 +4463,18 @@ export declare const SitemapModelOutputSchema: z.ZodObject<{
|
|
|
3168
4463
|
showInFooter: z.ZodBoolean;
|
|
3169
4464
|
order: z.ZodNumber;
|
|
3170
4465
|
}, z.core.$strip>;
|
|
4466
|
+
slug: z.ZodString;
|
|
3171
4467
|
}, z.core.$strict>>;
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
4468
|
+
navigation: z.ZodObject<{
|
|
4469
|
+
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
4470
|
+
label: z.ZodString;
|
|
4471
|
+
href: z.ZodString;
|
|
4472
|
+
}, z.core.$strip>>;
|
|
4473
|
+
footerLinks: z.ZodArray<z.ZodObject<{
|
|
4474
|
+
label: z.ZodString;
|
|
4475
|
+
href: z.ZodString;
|
|
4476
|
+
}, z.core.$strip>>;
|
|
4477
|
+
}, z.core.$strip>;
|
|
3177
4478
|
}, z.core.$strict>;
|
|
3178
4479
|
export type SitemapModelOutput = z.infer<typeof SitemapModelOutputSchema>;
|
|
3179
4480
|
export type Page = z.infer<typeof PageSchema>;
|
|
@@ -3392,11 +4693,11 @@ export declare const SitemapAnswerSchema: z.ZodObject<{
|
|
|
3392
4693
|
dark: "dark";
|
|
3393
4694
|
}>>;
|
|
3394
4695
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
4696
|
+
none: "none";
|
|
3395
4697
|
sm: "sm";
|
|
3396
4698
|
md: "md";
|
|
3397
4699
|
lg: "lg";
|
|
3398
4700
|
xl: "xl";
|
|
3399
|
-
none: "none";
|
|
3400
4701
|
}>>;
|
|
3401
4702
|
density: z.ZodOptional<z.ZodEnum<{
|
|
3402
4703
|
compact: "compact";
|
|
@@ -3462,11 +4763,11 @@ export declare const SitemapRunInputSchema: z.ZodObject<{
|
|
|
3462
4763
|
dark: "dark";
|
|
3463
4764
|
}>>;
|
|
3464
4765
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
4766
|
+
none: "none";
|
|
3465
4767
|
sm: "sm";
|
|
3466
4768
|
md: "md";
|
|
3467
4769
|
lg: "lg";
|
|
3468
4770
|
xl: "xl";
|
|
3469
|
-
none: "none";
|
|
3470
4771
|
}>>;
|
|
3471
4772
|
density: z.ZodOptional<z.ZodEnum<{
|
|
3472
4773
|
compact: "compact";
|
|
@@ -3521,12 +4822,149 @@ export declare const SitemapRunInputSchema: z.ZodObject<{
|
|
|
3521
4822
|
site_default_locale: z.ZodOptional<z.ZodEnum<{
|
|
3522
4823
|
id: "id";
|
|
3523
4824
|
"zh-CN": "zh-CN";
|
|
4825
|
+
"zh-HK": "zh-HK";
|
|
4826
|
+
"zh-TW": "zh-TW";
|
|
4827
|
+
"en-US": "en-US";
|
|
4828
|
+
"en-GB": "en-GB";
|
|
4829
|
+
"ja-JP": "ja-JP";
|
|
4830
|
+
"ko-KR": "ko-KR";
|
|
4831
|
+
"es-ES": "es-ES";
|
|
4832
|
+
"fr-FR": "fr-FR";
|
|
4833
|
+
"de-DE": "de-DE";
|
|
4834
|
+
"pt-PT": "pt-PT";
|
|
4835
|
+
"ru-RU": "ru-RU";
|
|
4836
|
+
"ar-SA": "ar-SA";
|
|
4837
|
+
"id-ID": "id-ID";
|
|
4838
|
+
"vi-VN": "vi-VN";
|
|
4839
|
+
"th-TH": "th-TH";
|
|
4840
|
+
"it-IT": "it-IT";
|
|
4841
|
+
"nl-NL": "nl-NL";
|
|
4842
|
+
"tr-TR": "tr-TR";
|
|
4843
|
+
"pl-PL": "pl-PL";
|
|
4844
|
+
"uk-UA": "uk-UA";
|
|
4845
|
+
"cs-CZ": "cs-CZ";
|
|
4846
|
+
"sk-SK": "sk-SK";
|
|
4847
|
+
"hu-HU": "hu-HU";
|
|
4848
|
+
"ro-RO": "ro-RO";
|
|
4849
|
+
"el-GR": "el-GR";
|
|
4850
|
+
"sv-SE": "sv-SE";
|
|
4851
|
+
"da-DK": "da-DK";
|
|
4852
|
+
"fi-FI": "fi-FI";
|
|
4853
|
+
"hr-HR": "hr-HR";
|
|
4854
|
+
"lt-LT": "lt-LT";
|
|
4855
|
+
"lv-LV": "lv-LV";
|
|
4856
|
+
"et-EE": "et-EE";
|
|
4857
|
+
"ga-IE": "ga-IE";
|
|
4858
|
+
"mt-MT": "mt-MT";
|
|
4859
|
+
"ka-GE": "ka-GE";
|
|
4860
|
+
"fa-IR": "fa-IR";
|
|
4861
|
+
"bn-BD": "bn-BD";
|
|
4862
|
+
"ta-IN": "ta-IN";
|
|
4863
|
+
"si-LK": "si-LK";
|
|
4864
|
+
"ms-MY": "ms-MY";
|
|
4865
|
+
"fil-PH": "fil-PH";
|
|
4866
|
+
"my-MM": "my-MM";
|
|
4867
|
+
"km-KH": "km-KH";
|
|
4868
|
+
"lo-LA": "lo-LA";
|
|
4869
|
+
"mn-MN": "mn-MN";
|
|
4870
|
+
"kk-KZ": "kk-KZ";
|
|
3524
4871
|
en: "en";
|
|
3525
4872
|
ja: "ja";
|
|
3526
4873
|
es: "es";
|
|
3527
4874
|
fr: "fr";
|
|
3528
4875
|
de: "de";
|
|
4876
|
+
ko: "ko";
|
|
4877
|
+
pt: "pt";
|
|
4878
|
+
"pt-BR": "pt-BR";
|
|
4879
|
+
it: "it";
|
|
4880
|
+
ru: "ru";
|
|
4881
|
+
ar: "ar";
|
|
4882
|
+
hi: "hi";
|
|
4883
|
+
vi: "vi";
|
|
4884
|
+
th: "th";
|
|
4885
|
+
tr: "tr";
|
|
4886
|
+
nl: "nl";
|
|
4887
|
+
pl: "pl";
|
|
4888
|
+
uk: "uk";
|
|
4889
|
+
sv: "sv";
|
|
4890
|
+
da: "da";
|
|
4891
|
+
fi: "fi";
|
|
4892
|
+
no: "no";
|
|
4893
|
+
cs: "cs";
|
|
4894
|
+
el: "el";
|
|
4895
|
+
hu: "hu";
|
|
4896
|
+
ro: "ro";
|
|
4897
|
+
he: "he";
|
|
4898
|
+
ms: "ms";
|
|
4899
|
+
fil: "fil";
|
|
4900
|
+
bn: "bn";
|
|
4901
|
+
ta: "ta";
|
|
4902
|
+
ca: "ca";
|
|
4903
|
+
sk: "sk";
|
|
4904
|
+
hr: "hr";
|
|
4905
|
+
bg: "bg";
|
|
4906
|
+
lt: "lt";
|
|
4907
|
+
lv: "lv";
|
|
4908
|
+
et: "et";
|
|
4909
|
+
fa: "fa";
|
|
4910
|
+
sw: "sw";
|
|
4911
|
+
sr: "sr";
|
|
4912
|
+
is: "is";
|
|
4913
|
+
}>>;
|
|
4914
|
+
owner_locale: z.ZodOptional<z.ZodEnum<{
|
|
4915
|
+
id: "id";
|
|
4916
|
+
"zh-CN": "zh-CN";
|
|
4917
|
+
"zh-HK": "zh-HK";
|
|
3529
4918
|
"zh-TW": "zh-TW";
|
|
4919
|
+
"en-US": "en-US";
|
|
4920
|
+
"en-GB": "en-GB";
|
|
4921
|
+
"ja-JP": "ja-JP";
|
|
4922
|
+
"ko-KR": "ko-KR";
|
|
4923
|
+
"es-ES": "es-ES";
|
|
4924
|
+
"fr-FR": "fr-FR";
|
|
4925
|
+
"de-DE": "de-DE";
|
|
4926
|
+
"pt-PT": "pt-PT";
|
|
4927
|
+
"ru-RU": "ru-RU";
|
|
4928
|
+
"ar-SA": "ar-SA";
|
|
4929
|
+
"id-ID": "id-ID";
|
|
4930
|
+
"vi-VN": "vi-VN";
|
|
4931
|
+
"th-TH": "th-TH";
|
|
4932
|
+
"it-IT": "it-IT";
|
|
4933
|
+
"nl-NL": "nl-NL";
|
|
4934
|
+
"tr-TR": "tr-TR";
|
|
4935
|
+
"pl-PL": "pl-PL";
|
|
4936
|
+
"uk-UA": "uk-UA";
|
|
4937
|
+
"cs-CZ": "cs-CZ";
|
|
4938
|
+
"sk-SK": "sk-SK";
|
|
4939
|
+
"hu-HU": "hu-HU";
|
|
4940
|
+
"ro-RO": "ro-RO";
|
|
4941
|
+
"el-GR": "el-GR";
|
|
4942
|
+
"sv-SE": "sv-SE";
|
|
4943
|
+
"da-DK": "da-DK";
|
|
4944
|
+
"fi-FI": "fi-FI";
|
|
4945
|
+
"hr-HR": "hr-HR";
|
|
4946
|
+
"lt-LT": "lt-LT";
|
|
4947
|
+
"lv-LV": "lv-LV";
|
|
4948
|
+
"et-EE": "et-EE";
|
|
4949
|
+
"ga-IE": "ga-IE";
|
|
4950
|
+
"mt-MT": "mt-MT";
|
|
4951
|
+
"ka-GE": "ka-GE";
|
|
4952
|
+
"fa-IR": "fa-IR";
|
|
4953
|
+
"bn-BD": "bn-BD";
|
|
4954
|
+
"ta-IN": "ta-IN";
|
|
4955
|
+
"si-LK": "si-LK";
|
|
4956
|
+
"ms-MY": "ms-MY";
|
|
4957
|
+
"fil-PH": "fil-PH";
|
|
4958
|
+
"my-MM": "my-MM";
|
|
4959
|
+
"km-KH": "km-KH";
|
|
4960
|
+
"lo-LA": "lo-LA";
|
|
4961
|
+
"mn-MN": "mn-MN";
|
|
4962
|
+
"kk-KZ": "kk-KZ";
|
|
4963
|
+
en: "en";
|
|
4964
|
+
ja: "ja";
|
|
4965
|
+
es: "es";
|
|
4966
|
+
fr: "fr";
|
|
4967
|
+
de: "de";
|
|
3530
4968
|
ko: "ko";
|
|
3531
4969
|
pt: "pt";
|
|
3532
4970
|
"pt-BR": "pt-BR";
|
|
@@ -3610,6 +5048,16 @@ export declare const SitemapGenerationStageSchema: z.ZodEnum<{
|
|
|
3610
5048
|
validating: "validating";
|
|
3611
5049
|
}>;
|
|
3612
5050
|
export type SitemapGenerationStage = z.infer<typeof SitemapGenerationStageSchema>;
|
|
5051
|
+
export declare const SitemapGenerationOutcomeSchema: z.ZodEnum<{
|
|
5052
|
+
deterministic_fallback: "deterministic_fallback";
|
|
5053
|
+
salvaged: "salvaged";
|
|
5054
|
+
}>;
|
|
5055
|
+
export type SitemapGenerationOutcome = z.infer<typeof SitemapGenerationOutcomeSchema>;
|
|
5056
|
+
export declare const SitemapGenerationReasonSchema: z.ZodEnum<{
|
|
5057
|
+
model_exception_settled_prefix: "model_exception_settled_prefix";
|
|
5058
|
+
model_exception_safe_root: "model_exception_safe_root";
|
|
5059
|
+
}>;
|
|
5060
|
+
export type SitemapGenerationReason = z.infer<typeof SitemapGenerationReasonSchema>;
|
|
3613
5061
|
export declare const SitemapStreamEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3614
5062
|
type: z.ZodLiteral<"run.started">;
|
|
3615
5063
|
runId: z.ZodString;
|
|
@@ -3629,6 +5077,16 @@ export declare const SitemapStreamEventSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
3629
5077
|
object: z.ZodUnknown;
|
|
3630
5078
|
at: z.ZodString;
|
|
3631
5079
|
}, z.core.$strip>, z.ZodObject<{
|
|
5080
|
+
at: z.ZodString;
|
|
5081
|
+
outcome: z.ZodOptional<z.ZodEnum<{
|
|
5082
|
+
deterministic_fallback: "deterministic_fallback";
|
|
5083
|
+
salvaged: "salvaged";
|
|
5084
|
+
}>>;
|
|
5085
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
5086
|
+
model_exception_settled_prefix: "model_exception_settled_prefix";
|
|
5087
|
+
model_exception_safe_root: "model_exception_safe_root";
|
|
5088
|
+
}>>;
|
|
5089
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
3632
5090
|
type: z.ZodLiteral<"sitemap.generated">;
|
|
3633
5091
|
sitemap_id: z.ZodString;
|
|
3634
5092
|
sitemap: z.ZodObject<{
|
|
@@ -3670,11 +5128,11 @@ export declare const SitemapStreamEventSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
3670
5128
|
navigation: z.ZodObject<{
|
|
3671
5129
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
3672
5130
|
label: z.ZodString;
|
|
3673
|
-
href: z.ZodString
|
|
5131
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3674
5132
|
}, z.core.$strip>>;
|
|
3675
5133
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
3676
5134
|
label: z.ZodString;
|
|
3677
|
-
href: z.ZodString
|
|
5135
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3678
5136
|
}, z.core.$strip>>;
|
|
3679
5137
|
}, z.core.$strip>;
|
|
3680
5138
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -3720,11 +5178,11 @@ export declare const SitemapStreamEventSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
3720
5178
|
dark: "dark";
|
|
3721
5179
|
}>>;
|
|
3722
5180
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
5181
|
+
none: "none";
|
|
3723
5182
|
sm: "sm";
|
|
3724
5183
|
md: "md";
|
|
3725
5184
|
lg: "lg";
|
|
3726
5185
|
xl: "xl";
|
|
3727
|
-
none: "none";
|
|
3728
5186
|
}>>;
|
|
3729
5187
|
density: z.ZodOptional<z.ZodEnum<{
|
|
3730
5188
|
compact: "compact";
|
|
@@ -3765,7 +5223,6 @@ export declare const SitemapStreamEventSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
3765
5223
|
}, z.core.$strip>>;
|
|
3766
5224
|
}, z.core.$strip>>;
|
|
3767
5225
|
}, z.core.$strict>;
|
|
3768
|
-
at: z.ZodString;
|
|
3769
5226
|
}, z.core.$strip>, z.ZodObject<{
|
|
3770
5227
|
type: z.ZodLiteral<"sitemap.clamped">;
|
|
3771
5228
|
reason: z.ZodEnum<{
|
|
@@ -3852,11 +5309,11 @@ export declare const SitemapRecordSchema: z.ZodObject<{
|
|
|
3852
5309
|
navigation: z.ZodObject<{
|
|
3853
5310
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
3854
5311
|
label: z.ZodString;
|
|
3855
|
-
href: z.ZodString
|
|
5312
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3856
5313
|
}, z.core.$strip>>;
|
|
3857
5314
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
3858
5315
|
label: z.ZodString;
|
|
3859
|
-
href: z.ZodString
|
|
5316
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3860
5317
|
}, z.core.$strip>>;
|
|
3861
5318
|
}, z.core.$strip>;
|
|
3862
5319
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -3902,11 +5359,11 @@ export declare const SitemapRecordSchema: z.ZodObject<{
|
|
|
3902
5359
|
dark: "dark";
|
|
3903
5360
|
}>>;
|
|
3904
5361
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
5362
|
+
none: "none";
|
|
3905
5363
|
sm: "sm";
|
|
3906
5364
|
md: "md";
|
|
3907
5365
|
lg: "lg";
|
|
3908
5366
|
xl: "xl";
|
|
3909
|
-
none: "none";
|
|
3910
5367
|
}>>;
|
|
3911
5368
|
density: z.ZodOptional<z.ZodEnum<{
|
|
3912
5369
|
compact: "compact";
|
|
@@ -3993,11 +5450,11 @@ export declare const PersistSiteSitemapRequestSchema: z.ZodObject<{
|
|
|
3993
5450
|
navigation: z.ZodObject<{
|
|
3994
5451
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
3995
5452
|
label: z.ZodString;
|
|
3996
|
-
href: z.ZodString
|
|
5453
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
3997
5454
|
}, z.core.$strip>>;
|
|
3998
5455
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
3999
5456
|
label: z.ZodString;
|
|
4000
|
-
href: z.ZodString
|
|
5457
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4001
5458
|
}, z.core.$strip>>;
|
|
4002
5459
|
}, z.core.$strip>;
|
|
4003
5460
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -4043,11 +5500,11 @@ export declare const PersistSiteSitemapRequestSchema: z.ZodObject<{
|
|
|
4043
5500
|
dark: "dark";
|
|
4044
5501
|
}>>;
|
|
4045
5502
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
5503
|
+
none: "none";
|
|
4046
5504
|
sm: "sm";
|
|
4047
5505
|
md: "md";
|
|
4048
5506
|
lg: "lg";
|
|
4049
5507
|
xl: "xl";
|
|
4050
|
-
none: "none";
|
|
4051
5508
|
}>>;
|
|
4052
5509
|
density: z.ZodOptional<z.ZodEnum<{
|
|
4053
5510
|
compact: "compact";
|
|
@@ -4120,12 +5577,57 @@ export declare const PersistSiteSitemapResponseSchema: z.ZodObject<{
|
|
|
4120
5577
|
default_locale: z.ZodEnum<{
|
|
4121
5578
|
id: "id";
|
|
4122
5579
|
"zh-CN": "zh-CN";
|
|
5580
|
+
"zh-HK": "zh-HK";
|
|
5581
|
+
"zh-TW": "zh-TW";
|
|
5582
|
+
"en-US": "en-US";
|
|
5583
|
+
"en-GB": "en-GB";
|
|
5584
|
+
"ja-JP": "ja-JP";
|
|
5585
|
+
"ko-KR": "ko-KR";
|
|
5586
|
+
"es-ES": "es-ES";
|
|
5587
|
+
"fr-FR": "fr-FR";
|
|
5588
|
+
"de-DE": "de-DE";
|
|
5589
|
+
"pt-PT": "pt-PT";
|
|
5590
|
+
"ru-RU": "ru-RU";
|
|
5591
|
+
"ar-SA": "ar-SA";
|
|
5592
|
+
"id-ID": "id-ID";
|
|
5593
|
+
"vi-VN": "vi-VN";
|
|
5594
|
+
"th-TH": "th-TH";
|
|
5595
|
+
"it-IT": "it-IT";
|
|
5596
|
+
"nl-NL": "nl-NL";
|
|
5597
|
+
"tr-TR": "tr-TR";
|
|
5598
|
+
"pl-PL": "pl-PL";
|
|
5599
|
+
"uk-UA": "uk-UA";
|
|
5600
|
+
"cs-CZ": "cs-CZ";
|
|
5601
|
+
"sk-SK": "sk-SK";
|
|
5602
|
+
"hu-HU": "hu-HU";
|
|
5603
|
+
"ro-RO": "ro-RO";
|
|
5604
|
+
"el-GR": "el-GR";
|
|
5605
|
+
"sv-SE": "sv-SE";
|
|
5606
|
+
"da-DK": "da-DK";
|
|
5607
|
+
"fi-FI": "fi-FI";
|
|
5608
|
+
"hr-HR": "hr-HR";
|
|
5609
|
+
"lt-LT": "lt-LT";
|
|
5610
|
+
"lv-LV": "lv-LV";
|
|
5611
|
+
"et-EE": "et-EE";
|
|
5612
|
+
"ga-IE": "ga-IE";
|
|
5613
|
+
"mt-MT": "mt-MT";
|
|
5614
|
+
"ka-GE": "ka-GE";
|
|
5615
|
+
"fa-IR": "fa-IR";
|
|
5616
|
+
"bn-BD": "bn-BD";
|
|
5617
|
+
"ta-IN": "ta-IN";
|
|
5618
|
+
"si-LK": "si-LK";
|
|
5619
|
+
"ms-MY": "ms-MY";
|
|
5620
|
+
"fil-PH": "fil-PH";
|
|
5621
|
+
"my-MM": "my-MM";
|
|
5622
|
+
"km-KH": "km-KH";
|
|
5623
|
+
"lo-LA": "lo-LA";
|
|
5624
|
+
"mn-MN": "mn-MN";
|
|
5625
|
+
"kk-KZ": "kk-KZ";
|
|
4123
5626
|
en: "en";
|
|
4124
5627
|
ja: "ja";
|
|
4125
5628
|
es: "es";
|
|
4126
5629
|
fr: "fr";
|
|
4127
5630
|
de: "de";
|
|
4128
|
-
"zh-TW": "zh-TW";
|
|
4129
5631
|
ko: "ko";
|
|
4130
5632
|
pt: "pt";
|
|
4131
5633
|
"pt-BR": "pt-BR";
|
|
@@ -4164,6 +5666,98 @@ export declare const PersistSiteSitemapResponseSchema: z.ZodObject<{
|
|
|
4164
5666
|
sr: "sr";
|
|
4165
5667
|
is: "is";
|
|
4166
5668
|
}>;
|
|
5669
|
+
owner_locale: z.ZodOptional<z.ZodEnum<{
|
|
5670
|
+
id: "id";
|
|
5671
|
+
"zh-CN": "zh-CN";
|
|
5672
|
+
"zh-HK": "zh-HK";
|
|
5673
|
+
"zh-TW": "zh-TW";
|
|
5674
|
+
"en-US": "en-US";
|
|
5675
|
+
"en-GB": "en-GB";
|
|
5676
|
+
"ja-JP": "ja-JP";
|
|
5677
|
+
"ko-KR": "ko-KR";
|
|
5678
|
+
"es-ES": "es-ES";
|
|
5679
|
+
"fr-FR": "fr-FR";
|
|
5680
|
+
"de-DE": "de-DE";
|
|
5681
|
+
"pt-PT": "pt-PT";
|
|
5682
|
+
"ru-RU": "ru-RU";
|
|
5683
|
+
"ar-SA": "ar-SA";
|
|
5684
|
+
"id-ID": "id-ID";
|
|
5685
|
+
"vi-VN": "vi-VN";
|
|
5686
|
+
"th-TH": "th-TH";
|
|
5687
|
+
"it-IT": "it-IT";
|
|
5688
|
+
"nl-NL": "nl-NL";
|
|
5689
|
+
"tr-TR": "tr-TR";
|
|
5690
|
+
"pl-PL": "pl-PL";
|
|
5691
|
+
"uk-UA": "uk-UA";
|
|
5692
|
+
"cs-CZ": "cs-CZ";
|
|
5693
|
+
"sk-SK": "sk-SK";
|
|
5694
|
+
"hu-HU": "hu-HU";
|
|
5695
|
+
"ro-RO": "ro-RO";
|
|
5696
|
+
"el-GR": "el-GR";
|
|
5697
|
+
"sv-SE": "sv-SE";
|
|
5698
|
+
"da-DK": "da-DK";
|
|
5699
|
+
"fi-FI": "fi-FI";
|
|
5700
|
+
"hr-HR": "hr-HR";
|
|
5701
|
+
"lt-LT": "lt-LT";
|
|
5702
|
+
"lv-LV": "lv-LV";
|
|
5703
|
+
"et-EE": "et-EE";
|
|
5704
|
+
"ga-IE": "ga-IE";
|
|
5705
|
+
"mt-MT": "mt-MT";
|
|
5706
|
+
"ka-GE": "ka-GE";
|
|
5707
|
+
"fa-IR": "fa-IR";
|
|
5708
|
+
"bn-BD": "bn-BD";
|
|
5709
|
+
"ta-IN": "ta-IN";
|
|
5710
|
+
"si-LK": "si-LK";
|
|
5711
|
+
"ms-MY": "ms-MY";
|
|
5712
|
+
"fil-PH": "fil-PH";
|
|
5713
|
+
"my-MM": "my-MM";
|
|
5714
|
+
"km-KH": "km-KH";
|
|
5715
|
+
"lo-LA": "lo-LA";
|
|
5716
|
+
"mn-MN": "mn-MN";
|
|
5717
|
+
"kk-KZ": "kk-KZ";
|
|
5718
|
+
en: "en";
|
|
5719
|
+
ja: "ja";
|
|
5720
|
+
es: "es";
|
|
5721
|
+
fr: "fr";
|
|
5722
|
+
de: "de";
|
|
5723
|
+
ko: "ko";
|
|
5724
|
+
pt: "pt";
|
|
5725
|
+
"pt-BR": "pt-BR";
|
|
5726
|
+
it: "it";
|
|
5727
|
+
ru: "ru";
|
|
5728
|
+
ar: "ar";
|
|
5729
|
+
hi: "hi";
|
|
5730
|
+
vi: "vi";
|
|
5731
|
+
th: "th";
|
|
5732
|
+
tr: "tr";
|
|
5733
|
+
nl: "nl";
|
|
5734
|
+
pl: "pl";
|
|
5735
|
+
uk: "uk";
|
|
5736
|
+
sv: "sv";
|
|
5737
|
+
da: "da";
|
|
5738
|
+
fi: "fi";
|
|
5739
|
+
no: "no";
|
|
5740
|
+
cs: "cs";
|
|
5741
|
+
el: "el";
|
|
5742
|
+
hu: "hu";
|
|
5743
|
+
ro: "ro";
|
|
5744
|
+
he: "he";
|
|
5745
|
+
ms: "ms";
|
|
5746
|
+
fil: "fil";
|
|
5747
|
+
bn: "bn";
|
|
5748
|
+
ta: "ta";
|
|
5749
|
+
ca: "ca";
|
|
5750
|
+
sk: "sk";
|
|
5751
|
+
hr: "hr";
|
|
5752
|
+
bg: "bg";
|
|
5753
|
+
lt: "lt";
|
|
5754
|
+
lv: "lv";
|
|
5755
|
+
et: "et";
|
|
5756
|
+
fa: "fa";
|
|
5757
|
+
sw: "sw";
|
|
5758
|
+
sr: "sr";
|
|
5759
|
+
is: "is";
|
|
5760
|
+
}>>;
|
|
4167
5761
|
cms_site_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4168
5762
|
cms_site_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4169
5763
|
schema_version: z.ZodLiteral<1>;
|
|
@@ -4214,11 +5808,11 @@ export declare const PersistSiteSitemapResponseSchema: z.ZodObject<{
|
|
|
4214
5808
|
navigation: z.ZodObject<{
|
|
4215
5809
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
4216
5810
|
label: z.ZodString;
|
|
4217
|
-
href: z.ZodString
|
|
5811
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4218
5812
|
}, z.core.$strip>>;
|
|
4219
5813
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
4220
5814
|
label: z.ZodString;
|
|
4221
|
-
href: z.ZodString
|
|
5815
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4222
5816
|
}, z.core.$strip>>;
|
|
4223
5817
|
}, z.core.$strip>;
|
|
4224
5818
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -4264,11 +5858,11 @@ export declare const PersistSiteSitemapResponseSchema: z.ZodObject<{
|
|
|
4264
5858
|
dark: "dark";
|
|
4265
5859
|
}>>;
|
|
4266
5860
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
5861
|
+
none: "none";
|
|
4267
5862
|
sm: "sm";
|
|
4268
5863
|
md: "md";
|
|
4269
5864
|
lg: "lg";
|
|
4270
5865
|
xl: "xl";
|
|
4271
|
-
none: "none";
|
|
4272
5866
|
}>>;
|
|
4273
5867
|
density: z.ZodOptional<z.ZodEnum<{
|
|
4274
5868
|
compact: "compact";
|
|
@@ -4349,11 +5943,11 @@ export declare const ClarifySessionRecordSchema: z.ZodObject<{
|
|
|
4349
5943
|
dark: "dark";
|
|
4350
5944
|
}>>;
|
|
4351
5945
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
5946
|
+
none: "none";
|
|
4352
5947
|
sm: "sm";
|
|
4353
5948
|
md: "md";
|
|
4354
5949
|
lg: "lg";
|
|
4355
5950
|
xl: "xl";
|
|
4356
|
-
none: "none";
|
|
4357
5951
|
}>>;
|
|
4358
5952
|
density: z.ZodOptional<z.ZodEnum<{
|
|
4359
5953
|
compact: "compact";
|
|
@@ -4445,11 +6039,11 @@ export declare const ClarifySessionRecordSchema: z.ZodObject<{
|
|
|
4445
6039
|
dark: "dark";
|
|
4446
6040
|
}>>;
|
|
4447
6041
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
6042
|
+
none: "none";
|
|
4448
6043
|
sm: "sm";
|
|
4449
6044
|
md: "md";
|
|
4450
6045
|
lg: "lg";
|
|
4451
6046
|
xl: "xl";
|
|
4452
|
-
none: "none";
|
|
4453
6047
|
}>>;
|
|
4454
6048
|
density: z.ZodOptional<z.ZodEnum<{
|
|
4455
6049
|
compact: "compact";
|
|
@@ -4528,11 +6122,11 @@ export declare const PersistClarifyAnswersRequestSchema: z.ZodObject<{
|
|
|
4528
6122
|
dark: "dark";
|
|
4529
6123
|
}>>;
|
|
4530
6124
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
6125
|
+
none: "none";
|
|
4531
6126
|
sm: "sm";
|
|
4532
6127
|
md: "md";
|
|
4533
6128
|
lg: "lg";
|
|
4534
6129
|
xl: "xl";
|
|
4535
|
-
none: "none";
|
|
4536
6130
|
}>>;
|
|
4537
6131
|
density: z.ZodOptional<z.ZodEnum<{
|
|
4538
6132
|
compact: "compact";
|
|
@@ -4598,11 +6192,11 @@ export declare const PersistClarifyAnswersRequestSchema: z.ZodObject<{
|
|
|
4598
6192
|
dark: "dark";
|
|
4599
6193
|
}>>;
|
|
4600
6194
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
6195
|
+
none: "none";
|
|
4601
6196
|
sm: "sm";
|
|
4602
6197
|
md: "md";
|
|
4603
6198
|
lg: "lg";
|
|
4604
6199
|
xl: "xl";
|
|
4605
|
-
none: "none";
|
|
4606
6200
|
}>>;
|
|
4607
6201
|
density: z.ZodOptional<z.ZodEnum<{
|
|
4608
6202
|
compact: "compact";
|
|
@@ -4721,11 +6315,11 @@ export declare const PersistClarifyAnswersResponseSchema: z.ZodObject<{
|
|
|
4721
6315
|
dark: "dark";
|
|
4722
6316
|
}>>;
|
|
4723
6317
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
6318
|
+
none: "none";
|
|
4724
6319
|
sm: "sm";
|
|
4725
6320
|
md: "md";
|
|
4726
6321
|
lg: "lg";
|
|
4727
6322
|
xl: "xl";
|
|
4728
|
-
none: "none";
|
|
4729
6323
|
}>>;
|
|
4730
6324
|
density: z.ZodOptional<z.ZodEnum<{
|
|
4731
6325
|
compact: "compact";
|
|
@@ -4817,11 +6411,11 @@ export declare const PersistClarifyAnswersResponseSchema: z.ZodObject<{
|
|
|
4817
6411
|
dark: "dark";
|
|
4818
6412
|
}>>;
|
|
4819
6413
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
6414
|
+
none: "none";
|
|
4820
6415
|
sm: "sm";
|
|
4821
6416
|
md: "md";
|
|
4822
6417
|
lg: "lg";
|
|
4823
6418
|
xl: "xl";
|
|
4824
|
-
none: "none";
|
|
4825
6419
|
}>>;
|
|
4826
6420
|
density: z.ZodOptional<z.ZodEnum<{
|
|
4827
6421
|
compact: "compact";
|
|
@@ -4913,11 +6507,11 @@ export declare const UpdateClarifyArchetypeRequestSchema: z.ZodObject<{
|
|
|
4913
6507
|
dark: "dark";
|
|
4914
6508
|
}>>;
|
|
4915
6509
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
6510
|
+
none: "none";
|
|
4916
6511
|
sm: "sm";
|
|
4917
6512
|
md: "md";
|
|
4918
6513
|
lg: "lg";
|
|
4919
6514
|
xl: "xl";
|
|
4920
|
-
none: "none";
|
|
4921
6515
|
}>>;
|
|
4922
6516
|
density: z.ZodOptional<z.ZodEnum<{
|
|
4923
6517
|
compact: "compact";
|
|
@@ -5044,11 +6638,11 @@ export declare const DesignPlanRecordSchema: z.ZodObject<{
|
|
|
5044
6638
|
dark: "dark";
|
|
5045
6639
|
}>>;
|
|
5046
6640
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
6641
|
+
none: "none";
|
|
5047
6642
|
sm: "sm";
|
|
5048
6643
|
md: "md";
|
|
5049
6644
|
lg: "lg";
|
|
5050
6645
|
xl: "xl";
|
|
5051
|
-
none: "none";
|
|
5052
6646
|
}>>;
|
|
5053
6647
|
imagePalette: z.ZodOptional<z.ZodObject<{
|
|
5054
6648
|
background: z.ZodOptional<z.ZodString>;
|
|
@@ -5199,11 +6793,11 @@ export declare const PersistSiteDesignPlanRequestSchema: z.ZodObject<{
|
|
|
5199
6793
|
dark: "dark";
|
|
5200
6794
|
}>>;
|
|
5201
6795
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
6796
|
+
none: "none";
|
|
5202
6797
|
sm: "sm";
|
|
5203
6798
|
md: "md";
|
|
5204
6799
|
lg: "lg";
|
|
5205
6800
|
xl: "xl";
|
|
5206
|
-
none: "none";
|
|
5207
6801
|
}>>;
|
|
5208
6802
|
imagePalette: z.ZodOptional<z.ZodObject<{
|
|
5209
6803
|
background: z.ZodOptional<z.ZodString>;
|
|
@@ -5356,11 +6950,11 @@ export declare const PersistSiteDesignPlanResponseSchema: z.ZodObject<{
|
|
|
5356
6950
|
dark: "dark";
|
|
5357
6951
|
}>>;
|
|
5358
6952
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
6953
|
+
none: "none";
|
|
5359
6954
|
sm: "sm";
|
|
5360
6955
|
md: "md";
|
|
5361
6956
|
lg: "lg";
|
|
5362
6957
|
xl: "xl";
|
|
5363
|
-
none: "none";
|
|
5364
6958
|
}>>;
|
|
5365
6959
|
imagePalette: z.ZodOptional<z.ZodObject<{
|
|
5366
6960
|
background: z.ZodOptional<z.ZodString>;
|
|
@@ -5491,6 +7085,8 @@ export type WorkspaceSuggestion = z.infer<typeof WorkspaceSuggestionSchema>;
|
|
|
5491
7085
|
export declare const WorkspaceSuggestionsSourceSchema: z.ZodEnum<{
|
|
5492
7086
|
model: "model";
|
|
5493
7087
|
derived: "derived";
|
|
7088
|
+
mixed: "mixed";
|
|
7089
|
+
advisor: "advisor";
|
|
5494
7090
|
}>;
|
|
5495
7091
|
export type WorkspaceSuggestionsSource = z.infer<typeof WorkspaceSuggestionsSourceSchema>;
|
|
5496
7092
|
export declare const WorkspaceSuggestionsSchema: z.ZodObject<{
|
|
@@ -5501,9 +7097,30 @@ export declare const WorkspaceSuggestionsSchema: z.ZodObject<{
|
|
|
5501
7097
|
source: z.ZodEnum<{
|
|
5502
7098
|
model: "model";
|
|
5503
7099
|
derived: "derived";
|
|
7100
|
+
mixed: "mixed";
|
|
7101
|
+
advisor: "advisor";
|
|
5504
7102
|
}>;
|
|
5505
7103
|
}, z.core.$strict>;
|
|
5506
7104
|
export type WorkspaceSuggestions = z.infer<typeof WorkspaceSuggestionsSchema>;
|
|
7105
|
+
export declare const DesignPlanGenerationOutcomeSchema: z.ZodEnum<{
|
|
7106
|
+
deterministic_fallback: "deterministic_fallback";
|
|
7107
|
+
salvaged: "salvaged";
|
|
7108
|
+
clean: "clean";
|
|
7109
|
+
baseline_retained: "baseline_retained";
|
|
7110
|
+
}>;
|
|
7111
|
+
export type DesignPlanGenerationOutcome = z.infer<typeof DesignPlanGenerationOutcomeSchema>;
|
|
7112
|
+
export declare const DesignPlanGenerationReasonSchema: z.ZodEnum<{
|
|
7113
|
+
generation_succeeded: "generation_succeeded";
|
|
7114
|
+
entry_slots_omitted: "entry_slots_omitted";
|
|
7115
|
+
quality_gate_exhausted: "quality_gate_exhausted";
|
|
7116
|
+
schema_gate_exhausted: "schema_gate_exhausted";
|
|
7117
|
+
stream_schema_mismatch: "stream_schema_mismatch";
|
|
7118
|
+
stream_generation_error: "stream_generation_error";
|
|
7119
|
+
generation_error: "generation_error";
|
|
7120
|
+
fallback_compiler_error: "fallback_compiler_error";
|
|
7121
|
+
legacy_result_missing_metadata: "legacy_result_missing_metadata";
|
|
7122
|
+
}>;
|
|
7123
|
+
export type DesignPlanGenerationReason = z.infer<typeof DesignPlanGenerationReasonSchema>;
|
|
5507
7124
|
export declare const AgentEventTypeSchema: z.ZodEnum<{
|
|
5508
7125
|
"run.started": "run.started";
|
|
5509
7126
|
"skill.selecting": "skill.selecting";
|
|
@@ -5513,9 +7130,9 @@ export declare const AgentEventTypeSchema: z.ZodEnum<{
|
|
|
5513
7130
|
"clarify.finished": "clarify.finished";
|
|
5514
7131
|
"run.failed": "run.failed";
|
|
5515
7132
|
"run.finished": "run.finished";
|
|
7133
|
+
"sitemap.generated": "sitemap.generated";
|
|
5516
7134
|
"sitemap.generating": "sitemap.generating";
|
|
5517
7135
|
"sitemap.partial": "sitemap.partial";
|
|
5518
|
-
"sitemap.generated": "sitemap.generated";
|
|
5519
7136
|
"sitemap.clamped": "sitemap.clamped";
|
|
5520
7137
|
"media_resolution.started": "media_resolution.started";
|
|
5521
7138
|
"media_resolution.finished": "media_resolution.finished";
|
|
@@ -5533,6 +7150,7 @@ export declare const AgentEventTypeSchema: z.ZodEnum<{
|
|
|
5533
7150
|
"workspace.worker.updated": "workspace.worker.updated";
|
|
5534
7151
|
"workspace.task.updated": "workspace.task.updated";
|
|
5535
7152
|
"workspace.degraded": "workspace.degraded";
|
|
7153
|
+
"workspace.design_plan.outcome": "workspace.design_plan.outcome";
|
|
5536
7154
|
"workspace.suggestions": "workspace.suggestions";
|
|
5537
7155
|
"file.changed": "file.changed";
|
|
5538
7156
|
"preview.preparing": "preview.preparing";
|
|
@@ -6046,6 +7664,16 @@ export declare const AgentEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6046
7664
|
object: z.ZodUnknown;
|
|
6047
7665
|
at: z.ZodString;
|
|
6048
7666
|
}, z.core.$strip>, z.ZodObject<{
|
|
7667
|
+
at: z.ZodString;
|
|
7668
|
+
outcome: z.ZodOptional<z.ZodEnum<{
|
|
7669
|
+
deterministic_fallback: "deterministic_fallback";
|
|
7670
|
+
salvaged: "salvaged";
|
|
7671
|
+
}>>;
|
|
7672
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
7673
|
+
model_exception_settled_prefix: "model_exception_settled_prefix";
|
|
7674
|
+
model_exception_safe_root: "model_exception_safe_root";
|
|
7675
|
+
}>>;
|
|
7676
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
6049
7677
|
type: z.ZodLiteral<"sitemap.generated">;
|
|
6050
7678
|
sitemap_id: z.ZodString;
|
|
6051
7679
|
sitemap: z.ZodObject<{
|
|
@@ -6087,11 +7715,11 @@ export declare const AgentEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6087
7715
|
navigation: z.ZodObject<{
|
|
6088
7716
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
6089
7717
|
label: z.ZodString;
|
|
6090
|
-
href: z.ZodString
|
|
7718
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
6091
7719
|
}, z.core.$strip>>;
|
|
6092
7720
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
6093
7721
|
label: z.ZodString;
|
|
6094
|
-
href: z.ZodString
|
|
7722
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
6095
7723
|
}, z.core.$strip>>;
|
|
6096
7724
|
}, z.core.$strip>;
|
|
6097
7725
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -6137,11 +7765,11 @@ export declare const AgentEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6137
7765
|
dark: "dark";
|
|
6138
7766
|
}>>;
|
|
6139
7767
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
7768
|
+
none: "none";
|
|
6140
7769
|
sm: "sm";
|
|
6141
7770
|
md: "md";
|
|
6142
7771
|
lg: "lg";
|
|
6143
7772
|
xl: "xl";
|
|
6144
|
-
none: "none";
|
|
6145
7773
|
}>>;
|
|
6146
7774
|
density: z.ZodOptional<z.ZodEnum<{
|
|
6147
7775
|
compact: "compact";
|
|
@@ -6182,7 +7810,6 @@ export declare const AgentEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6182
7810
|
}, z.core.$strip>>;
|
|
6183
7811
|
}, z.core.$strip>>;
|
|
6184
7812
|
}, z.core.$strict>;
|
|
6185
|
-
at: z.ZodString;
|
|
6186
7813
|
}, z.core.$strip>, z.ZodObject<{
|
|
6187
7814
|
type: z.ZodLiteral<"sitemap.clamped">;
|
|
6188
7815
|
reason: z.ZodEnum<{
|
|
@@ -6392,15 +8019,38 @@ export declare const AgentEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6392
8019
|
patch_protected_dropped: "patch_protected_dropped";
|
|
6393
8020
|
preview_health_degraded: "preview_health_degraded";
|
|
6394
8021
|
design_plan_fallback: "design_plan_fallback";
|
|
8022
|
+
generated_code_rescue: "generated_code_rescue";
|
|
6395
8023
|
}>;
|
|
6396
8024
|
degraded_block_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6397
8025
|
dropped_files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8026
|
+
degraded_file_paths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8027
|
+
degraded_page_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6398
8028
|
snapshot_id: z.ZodOptional<z.ZodString>;
|
|
6399
8029
|
code: z.ZodOptional<z.ZodString>;
|
|
6400
8030
|
message: z.ZodOptional<z.ZodString>;
|
|
6401
8031
|
diagnostics: z.ZodOptional<z.ZodString>;
|
|
6402
8032
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
6403
8033
|
at: z.ZodString;
|
|
8034
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8035
|
+
type: z.ZodLiteral<"workspace.design_plan.outcome">;
|
|
8036
|
+
design_plan_outcome: z.ZodEnum<{
|
|
8037
|
+
deterministic_fallback: "deterministic_fallback";
|
|
8038
|
+
salvaged: "salvaged";
|
|
8039
|
+
clean: "clean";
|
|
8040
|
+
baseline_retained: "baseline_retained";
|
|
8041
|
+
}>;
|
|
8042
|
+
reason: z.ZodEnum<{
|
|
8043
|
+
generation_succeeded: "generation_succeeded";
|
|
8044
|
+
entry_slots_omitted: "entry_slots_omitted";
|
|
8045
|
+
quality_gate_exhausted: "quality_gate_exhausted";
|
|
8046
|
+
schema_gate_exhausted: "schema_gate_exhausted";
|
|
8047
|
+
stream_schema_mismatch: "stream_schema_mismatch";
|
|
8048
|
+
stream_generation_error: "stream_generation_error";
|
|
8049
|
+
generation_error: "generation_error";
|
|
8050
|
+
fallback_compiler_error: "fallback_compiler_error";
|
|
8051
|
+
legacy_result_missing_metadata: "legacy_result_missing_metadata";
|
|
8052
|
+
}>;
|
|
8053
|
+
at: z.ZodString;
|
|
6404
8054
|
}, z.core.$strict>, z.ZodObject<{
|
|
6405
8055
|
suggestions: z.ZodArray<z.ZodObject<{
|
|
6406
8056
|
label: z.ZodString;
|
|
@@ -6409,6 +8059,8 @@ export declare const AgentEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6409
8059
|
source: z.ZodEnum<{
|
|
6410
8060
|
model: "model";
|
|
6411
8061
|
derived: "derived";
|
|
8062
|
+
mixed: "mixed";
|
|
8063
|
+
advisor: "advisor";
|
|
6412
8064
|
}>;
|
|
6413
8065
|
type: z.ZodLiteral<"workspace.suggestions">;
|
|
6414
8066
|
at: z.ZodString;
|
|
@@ -6462,6 +8114,7 @@ export declare const AgentEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6462
8114
|
}>>;
|
|
6463
8115
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
6464
8116
|
attempts: z.ZodOptional<z.ZodNumber>;
|
|
8117
|
+
outcome: z.ZodOptional<z.ZodLiteral<"retained_previous">>;
|
|
6465
8118
|
at: z.ZodString;
|
|
6466
8119
|
}, z.core.$strip>, z.ZodObject<{
|
|
6467
8120
|
type: z.ZodLiteral<"run.finished">;
|
|
@@ -6570,9 +8223,9 @@ export declare const AgentEventRecordSchema: z.ZodObject<{
|
|
|
6570
8223
|
"clarify.finished": "clarify.finished";
|
|
6571
8224
|
"run.failed": "run.failed";
|
|
6572
8225
|
"run.finished": "run.finished";
|
|
8226
|
+
"sitemap.generated": "sitemap.generated";
|
|
6573
8227
|
"sitemap.generating": "sitemap.generating";
|
|
6574
8228
|
"sitemap.partial": "sitemap.partial";
|
|
6575
|
-
"sitemap.generated": "sitemap.generated";
|
|
6576
8229
|
"sitemap.clamped": "sitemap.clamped";
|
|
6577
8230
|
"media_resolution.started": "media_resolution.started";
|
|
6578
8231
|
"media_resolution.finished": "media_resolution.finished";
|
|
@@ -6590,6 +8243,7 @@ export declare const AgentEventRecordSchema: z.ZodObject<{
|
|
|
6590
8243
|
"workspace.worker.updated": "workspace.worker.updated";
|
|
6591
8244
|
"workspace.task.updated": "workspace.task.updated";
|
|
6592
8245
|
"workspace.degraded": "workspace.degraded";
|
|
8246
|
+
"workspace.design_plan.outcome": "workspace.design_plan.outcome";
|
|
6593
8247
|
"workspace.suggestions": "workspace.suggestions";
|
|
6594
8248
|
"file.changed": "file.changed";
|
|
6595
8249
|
"preview.preparing": "preview.preparing";
|
|
@@ -6723,6 +8377,16 @@ export declare const AgentEventRecordSchema: z.ZodObject<{
|
|
|
6723
8377
|
object: z.ZodUnknown;
|
|
6724
8378
|
at: z.ZodString;
|
|
6725
8379
|
}, z.core.$strip>, z.ZodObject<{
|
|
8380
|
+
at: z.ZodString;
|
|
8381
|
+
outcome: z.ZodOptional<z.ZodEnum<{
|
|
8382
|
+
deterministic_fallback: "deterministic_fallback";
|
|
8383
|
+
salvaged: "salvaged";
|
|
8384
|
+
}>>;
|
|
8385
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
8386
|
+
model_exception_settled_prefix: "model_exception_settled_prefix";
|
|
8387
|
+
model_exception_safe_root: "model_exception_safe_root";
|
|
8388
|
+
}>>;
|
|
8389
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
6726
8390
|
type: z.ZodLiteral<"sitemap.generated">;
|
|
6727
8391
|
sitemap_id: z.ZodString;
|
|
6728
8392
|
sitemap: z.ZodObject<{
|
|
@@ -6764,11 +8428,11 @@ export declare const AgentEventRecordSchema: z.ZodObject<{
|
|
|
6764
8428
|
navigation: z.ZodObject<{
|
|
6765
8429
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
6766
8430
|
label: z.ZodString;
|
|
6767
|
-
href: z.ZodString
|
|
8431
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
6768
8432
|
}, z.core.$strip>>;
|
|
6769
8433
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
6770
8434
|
label: z.ZodString;
|
|
6771
|
-
href: z.ZodString
|
|
8435
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
6772
8436
|
}, z.core.$strip>>;
|
|
6773
8437
|
}, z.core.$strip>;
|
|
6774
8438
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -6814,11 +8478,11 @@ export declare const AgentEventRecordSchema: z.ZodObject<{
|
|
|
6814
8478
|
dark: "dark";
|
|
6815
8479
|
}>>;
|
|
6816
8480
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
8481
|
+
none: "none";
|
|
6817
8482
|
sm: "sm";
|
|
6818
8483
|
md: "md";
|
|
6819
8484
|
lg: "lg";
|
|
6820
8485
|
xl: "xl";
|
|
6821
|
-
none: "none";
|
|
6822
8486
|
}>>;
|
|
6823
8487
|
density: z.ZodOptional<z.ZodEnum<{
|
|
6824
8488
|
compact: "compact";
|
|
@@ -6859,7 +8523,6 @@ export declare const AgentEventRecordSchema: z.ZodObject<{
|
|
|
6859
8523
|
}, z.core.$strip>>;
|
|
6860
8524
|
}, z.core.$strip>>;
|
|
6861
8525
|
}, z.core.$strict>;
|
|
6862
|
-
at: z.ZodString;
|
|
6863
8526
|
}, z.core.$strip>, z.ZodObject<{
|
|
6864
8527
|
type: z.ZodLiteral<"sitemap.clamped">;
|
|
6865
8528
|
reason: z.ZodEnum<{
|
|
@@ -7069,15 +8732,38 @@ export declare const AgentEventRecordSchema: z.ZodObject<{
|
|
|
7069
8732
|
patch_protected_dropped: "patch_protected_dropped";
|
|
7070
8733
|
preview_health_degraded: "preview_health_degraded";
|
|
7071
8734
|
design_plan_fallback: "design_plan_fallback";
|
|
8735
|
+
generated_code_rescue: "generated_code_rescue";
|
|
7072
8736
|
}>;
|
|
7073
8737
|
degraded_block_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7074
8738
|
dropped_files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8739
|
+
degraded_file_paths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8740
|
+
degraded_page_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7075
8741
|
snapshot_id: z.ZodOptional<z.ZodString>;
|
|
7076
8742
|
code: z.ZodOptional<z.ZodString>;
|
|
7077
8743
|
message: z.ZodOptional<z.ZodString>;
|
|
7078
8744
|
diagnostics: z.ZodOptional<z.ZodString>;
|
|
7079
8745
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
7080
8746
|
at: z.ZodString;
|
|
8747
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8748
|
+
type: z.ZodLiteral<"workspace.design_plan.outcome">;
|
|
8749
|
+
design_plan_outcome: z.ZodEnum<{
|
|
8750
|
+
deterministic_fallback: "deterministic_fallback";
|
|
8751
|
+
salvaged: "salvaged";
|
|
8752
|
+
clean: "clean";
|
|
8753
|
+
baseline_retained: "baseline_retained";
|
|
8754
|
+
}>;
|
|
8755
|
+
reason: z.ZodEnum<{
|
|
8756
|
+
generation_succeeded: "generation_succeeded";
|
|
8757
|
+
entry_slots_omitted: "entry_slots_omitted";
|
|
8758
|
+
quality_gate_exhausted: "quality_gate_exhausted";
|
|
8759
|
+
schema_gate_exhausted: "schema_gate_exhausted";
|
|
8760
|
+
stream_schema_mismatch: "stream_schema_mismatch";
|
|
8761
|
+
stream_generation_error: "stream_generation_error";
|
|
8762
|
+
generation_error: "generation_error";
|
|
8763
|
+
fallback_compiler_error: "fallback_compiler_error";
|
|
8764
|
+
legacy_result_missing_metadata: "legacy_result_missing_metadata";
|
|
8765
|
+
}>;
|
|
8766
|
+
at: z.ZodString;
|
|
7081
8767
|
}, z.core.$strict>, z.ZodObject<{
|
|
7082
8768
|
suggestions: z.ZodArray<z.ZodObject<{
|
|
7083
8769
|
label: z.ZodString;
|
|
@@ -7086,6 +8772,8 @@ export declare const AgentEventRecordSchema: z.ZodObject<{
|
|
|
7086
8772
|
source: z.ZodEnum<{
|
|
7087
8773
|
model: "model";
|
|
7088
8774
|
derived: "derived";
|
|
8775
|
+
mixed: "mixed";
|
|
8776
|
+
advisor: "advisor";
|
|
7089
8777
|
}>;
|
|
7090
8778
|
type: z.ZodLiteral<"workspace.suggestions">;
|
|
7091
8779
|
at: z.ZodString;
|
|
@@ -7139,6 +8827,7 @@ export declare const AgentEventRecordSchema: z.ZodObject<{
|
|
|
7139
8827
|
}>>;
|
|
7140
8828
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
7141
8829
|
attempts: z.ZodOptional<z.ZodNumber>;
|
|
8830
|
+
outcome: z.ZodOptional<z.ZodLiteral<"retained_previous">>;
|
|
7142
8831
|
at: z.ZodString;
|
|
7143
8832
|
}, z.core.$strip>, z.ZodObject<{
|
|
7144
8833
|
type: z.ZodLiteral<"run.finished">;
|
|
@@ -7244,9 +8933,9 @@ export declare const AppendAgentEventRequestSchema: z.ZodObject<{
|
|
|
7244
8933
|
"clarify.finished": "clarify.finished";
|
|
7245
8934
|
"run.failed": "run.failed";
|
|
7246
8935
|
"run.finished": "run.finished";
|
|
8936
|
+
"sitemap.generated": "sitemap.generated";
|
|
7247
8937
|
"sitemap.generating": "sitemap.generating";
|
|
7248
8938
|
"sitemap.partial": "sitemap.partial";
|
|
7249
|
-
"sitemap.generated": "sitemap.generated";
|
|
7250
8939
|
"sitemap.clamped": "sitemap.clamped";
|
|
7251
8940
|
"media_resolution.started": "media_resolution.started";
|
|
7252
8941
|
"media_resolution.finished": "media_resolution.finished";
|
|
@@ -7264,6 +8953,7 @@ export declare const AppendAgentEventRequestSchema: z.ZodObject<{
|
|
|
7264
8953
|
"workspace.worker.updated": "workspace.worker.updated";
|
|
7265
8954
|
"workspace.task.updated": "workspace.task.updated";
|
|
7266
8955
|
"workspace.degraded": "workspace.degraded";
|
|
8956
|
+
"workspace.design_plan.outcome": "workspace.design_plan.outcome";
|
|
7267
8957
|
"workspace.suggestions": "workspace.suggestions";
|
|
7268
8958
|
"file.changed": "file.changed";
|
|
7269
8959
|
"preview.preparing": "preview.preparing";
|
|
@@ -7397,6 +9087,16 @@ export declare const AppendAgentEventRequestSchema: z.ZodObject<{
|
|
|
7397
9087
|
object: z.ZodUnknown;
|
|
7398
9088
|
at: z.ZodString;
|
|
7399
9089
|
}, z.core.$strip>, z.ZodObject<{
|
|
9090
|
+
at: z.ZodString;
|
|
9091
|
+
outcome: z.ZodOptional<z.ZodEnum<{
|
|
9092
|
+
deterministic_fallback: "deterministic_fallback";
|
|
9093
|
+
salvaged: "salvaged";
|
|
9094
|
+
}>>;
|
|
9095
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
9096
|
+
model_exception_settled_prefix: "model_exception_settled_prefix";
|
|
9097
|
+
model_exception_safe_root: "model_exception_safe_root";
|
|
9098
|
+
}>>;
|
|
9099
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
7400
9100
|
type: z.ZodLiteral<"sitemap.generated">;
|
|
7401
9101
|
sitemap_id: z.ZodString;
|
|
7402
9102
|
sitemap: z.ZodObject<{
|
|
@@ -7438,11 +9138,11 @@ export declare const AppendAgentEventRequestSchema: z.ZodObject<{
|
|
|
7438
9138
|
navigation: z.ZodObject<{
|
|
7439
9139
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
7440
9140
|
label: z.ZodString;
|
|
7441
|
-
href: z.ZodString
|
|
9141
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
7442
9142
|
}, z.core.$strip>>;
|
|
7443
9143
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
7444
9144
|
label: z.ZodString;
|
|
7445
|
-
href: z.ZodString
|
|
9145
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
7446
9146
|
}, z.core.$strip>>;
|
|
7447
9147
|
}, z.core.$strip>;
|
|
7448
9148
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -7488,11 +9188,11 @@ export declare const AppendAgentEventRequestSchema: z.ZodObject<{
|
|
|
7488
9188
|
dark: "dark";
|
|
7489
9189
|
}>>;
|
|
7490
9190
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
9191
|
+
none: "none";
|
|
7491
9192
|
sm: "sm";
|
|
7492
9193
|
md: "md";
|
|
7493
9194
|
lg: "lg";
|
|
7494
9195
|
xl: "xl";
|
|
7495
|
-
none: "none";
|
|
7496
9196
|
}>>;
|
|
7497
9197
|
density: z.ZodOptional<z.ZodEnum<{
|
|
7498
9198
|
compact: "compact";
|
|
@@ -7533,7 +9233,6 @@ export declare const AppendAgentEventRequestSchema: z.ZodObject<{
|
|
|
7533
9233
|
}, z.core.$strip>>;
|
|
7534
9234
|
}, z.core.$strip>>;
|
|
7535
9235
|
}, z.core.$strict>;
|
|
7536
|
-
at: z.ZodString;
|
|
7537
9236
|
}, z.core.$strip>, z.ZodObject<{
|
|
7538
9237
|
type: z.ZodLiteral<"sitemap.clamped">;
|
|
7539
9238
|
reason: z.ZodEnum<{
|
|
@@ -7743,15 +9442,38 @@ export declare const AppendAgentEventRequestSchema: z.ZodObject<{
|
|
|
7743
9442
|
patch_protected_dropped: "patch_protected_dropped";
|
|
7744
9443
|
preview_health_degraded: "preview_health_degraded";
|
|
7745
9444
|
design_plan_fallback: "design_plan_fallback";
|
|
9445
|
+
generated_code_rescue: "generated_code_rescue";
|
|
7746
9446
|
}>;
|
|
7747
9447
|
degraded_block_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7748
9448
|
dropped_files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9449
|
+
degraded_file_paths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9450
|
+
degraded_page_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7749
9451
|
snapshot_id: z.ZodOptional<z.ZodString>;
|
|
7750
9452
|
code: z.ZodOptional<z.ZodString>;
|
|
7751
9453
|
message: z.ZodOptional<z.ZodString>;
|
|
7752
9454
|
diagnostics: z.ZodOptional<z.ZodString>;
|
|
7753
9455
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
7754
9456
|
at: z.ZodString;
|
|
9457
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9458
|
+
type: z.ZodLiteral<"workspace.design_plan.outcome">;
|
|
9459
|
+
design_plan_outcome: z.ZodEnum<{
|
|
9460
|
+
deterministic_fallback: "deterministic_fallback";
|
|
9461
|
+
salvaged: "salvaged";
|
|
9462
|
+
clean: "clean";
|
|
9463
|
+
baseline_retained: "baseline_retained";
|
|
9464
|
+
}>;
|
|
9465
|
+
reason: z.ZodEnum<{
|
|
9466
|
+
generation_succeeded: "generation_succeeded";
|
|
9467
|
+
entry_slots_omitted: "entry_slots_omitted";
|
|
9468
|
+
quality_gate_exhausted: "quality_gate_exhausted";
|
|
9469
|
+
schema_gate_exhausted: "schema_gate_exhausted";
|
|
9470
|
+
stream_schema_mismatch: "stream_schema_mismatch";
|
|
9471
|
+
stream_generation_error: "stream_generation_error";
|
|
9472
|
+
generation_error: "generation_error";
|
|
9473
|
+
fallback_compiler_error: "fallback_compiler_error";
|
|
9474
|
+
legacy_result_missing_metadata: "legacy_result_missing_metadata";
|
|
9475
|
+
}>;
|
|
9476
|
+
at: z.ZodString;
|
|
7755
9477
|
}, z.core.$strict>, z.ZodObject<{
|
|
7756
9478
|
suggestions: z.ZodArray<z.ZodObject<{
|
|
7757
9479
|
label: z.ZodString;
|
|
@@ -7760,6 +9482,8 @@ export declare const AppendAgentEventRequestSchema: z.ZodObject<{
|
|
|
7760
9482
|
source: z.ZodEnum<{
|
|
7761
9483
|
model: "model";
|
|
7762
9484
|
derived: "derived";
|
|
9485
|
+
mixed: "mixed";
|
|
9486
|
+
advisor: "advisor";
|
|
7763
9487
|
}>;
|
|
7764
9488
|
type: z.ZodLiteral<"workspace.suggestions">;
|
|
7765
9489
|
at: z.ZodString;
|
|
@@ -7813,6 +9537,7 @@ export declare const AppendAgentEventRequestSchema: z.ZodObject<{
|
|
|
7813
9537
|
}>>;
|
|
7814
9538
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
7815
9539
|
attempts: z.ZodOptional<z.ZodNumber>;
|
|
9540
|
+
outcome: z.ZodOptional<z.ZodLiteral<"retained_previous">>;
|
|
7816
9541
|
at: z.ZodString;
|
|
7817
9542
|
}, z.core.$strip>, z.ZodObject<{
|
|
7818
9543
|
type: z.ZodLiteral<"run.finished">;
|
|
@@ -7957,9 +9682,9 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
7957
9682
|
"clarify.finished": "clarify.finished";
|
|
7958
9683
|
"run.failed": "run.failed";
|
|
7959
9684
|
"run.finished": "run.finished";
|
|
9685
|
+
"sitemap.generated": "sitemap.generated";
|
|
7960
9686
|
"sitemap.generating": "sitemap.generating";
|
|
7961
9687
|
"sitemap.partial": "sitemap.partial";
|
|
7962
|
-
"sitemap.generated": "sitemap.generated";
|
|
7963
9688
|
"sitemap.clamped": "sitemap.clamped";
|
|
7964
9689
|
"media_resolution.started": "media_resolution.started";
|
|
7965
9690
|
"media_resolution.finished": "media_resolution.finished";
|
|
@@ -7977,6 +9702,7 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
7977
9702
|
"workspace.worker.updated": "workspace.worker.updated";
|
|
7978
9703
|
"workspace.task.updated": "workspace.task.updated";
|
|
7979
9704
|
"workspace.degraded": "workspace.degraded";
|
|
9705
|
+
"workspace.design_plan.outcome": "workspace.design_plan.outcome";
|
|
7980
9706
|
"workspace.suggestions": "workspace.suggestions";
|
|
7981
9707
|
"file.changed": "file.changed";
|
|
7982
9708
|
"preview.preparing": "preview.preparing";
|
|
@@ -8110,6 +9836,16 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8110
9836
|
object: z.ZodUnknown;
|
|
8111
9837
|
at: z.ZodString;
|
|
8112
9838
|
}, z.core.$strip>, z.ZodObject<{
|
|
9839
|
+
at: z.ZodString;
|
|
9840
|
+
outcome: z.ZodOptional<z.ZodEnum<{
|
|
9841
|
+
deterministic_fallback: "deterministic_fallback";
|
|
9842
|
+
salvaged: "salvaged";
|
|
9843
|
+
}>>;
|
|
9844
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
9845
|
+
model_exception_settled_prefix: "model_exception_settled_prefix";
|
|
9846
|
+
model_exception_safe_root: "model_exception_safe_root";
|
|
9847
|
+
}>>;
|
|
9848
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
8113
9849
|
type: z.ZodLiteral<"sitemap.generated">;
|
|
8114
9850
|
sitemap_id: z.ZodString;
|
|
8115
9851
|
sitemap: z.ZodObject<{
|
|
@@ -8151,11 +9887,11 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8151
9887
|
navigation: z.ZodObject<{
|
|
8152
9888
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
8153
9889
|
label: z.ZodString;
|
|
8154
|
-
href: z.ZodString
|
|
9890
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
8155
9891
|
}, z.core.$strip>>;
|
|
8156
9892
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
8157
9893
|
label: z.ZodString;
|
|
8158
|
-
href: z.ZodString
|
|
9894
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
8159
9895
|
}, z.core.$strip>>;
|
|
8160
9896
|
}, z.core.$strip>;
|
|
8161
9897
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -8201,11 +9937,11 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8201
9937
|
dark: "dark";
|
|
8202
9938
|
}>>;
|
|
8203
9939
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
9940
|
+
none: "none";
|
|
8204
9941
|
sm: "sm";
|
|
8205
9942
|
md: "md";
|
|
8206
9943
|
lg: "lg";
|
|
8207
9944
|
xl: "xl";
|
|
8208
|
-
none: "none";
|
|
8209
9945
|
}>>;
|
|
8210
9946
|
density: z.ZodOptional<z.ZodEnum<{
|
|
8211
9947
|
compact: "compact";
|
|
@@ -8246,7 +9982,6 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8246
9982
|
}, z.core.$strip>>;
|
|
8247
9983
|
}, z.core.$strip>>;
|
|
8248
9984
|
}, z.core.$strict>;
|
|
8249
|
-
at: z.ZodString;
|
|
8250
9985
|
}, z.core.$strip>, z.ZodObject<{
|
|
8251
9986
|
type: z.ZodLiteral<"sitemap.clamped">;
|
|
8252
9987
|
reason: z.ZodEnum<{
|
|
@@ -8456,15 +10191,38 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8456
10191
|
patch_protected_dropped: "patch_protected_dropped";
|
|
8457
10192
|
preview_health_degraded: "preview_health_degraded";
|
|
8458
10193
|
design_plan_fallback: "design_plan_fallback";
|
|
10194
|
+
generated_code_rescue: "generated_code_rescue";
|
|
8459
10195
|
}>;
|
|
8460
10196
|
degraded_block_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8461
10197
|
dropped_files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10198
|
+
degraded_file_paths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10199
|
+
degraded_page_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8462
10200
|
snapshot_id: z.ZodOptional<z.ZodString>;
|
|
8463
10201
|
code: z.ZodOptional<z.ZodString>;
|
|
8464
10202
|
message: z.ZodOptional<z.ZodString>;
|
|
8465
10203
|
diagnostics: z.ZodOptional<z.ZodString>;
|
|
8466
10204
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
8467
10205
|
at: z.ZodString;
|
|
10206
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
10207
|
+
type: z.ZodLiteral<"workspace.design_plan.outcome">;
|
|
10208
|
+
design_plan_outcome: z.ZodEnum<{
|
|
10209
|
+
deterministic_fallback: "deterministic_fallback";
|
|
10210
|
+
salvaged: "salvaged";
|
|
10211
|
+
clean: "clean";
|
|
10212
|
+
baseline_retained: "baseline_retained";
|
|
10213
|
+
}>;
|
|
10214
|
+
reason: z.ZodEnum<{
|
|
10215
|
+
generation_succeeded: "generation_succeeded";
|
|
10216
|
+
entry_slots_omitted: "entry_slots_omitted";
|
|
10217
|
+
quality_gate_exhausted: "quality_gate_exhausted";
|
|
10218
|
+
schema_gate_exhausted: "schema_gate_exhausted";
|
|
10219
|
+
stream_schema_mismatch: "stream_schema_mismatch";
|
|
10220
|
+
stream_generation_error: "stream_generation_error";
|
|
10221
|
+
generation_error: "generation_error";
|
|
10222
|
+
fallback_compiler_error: "fallback_compiler_error";
|
|
10223
|
+
legacy_result_missing_metadata: "legacy_result_missing_metadata";
|
|
10224
|
+
}>;
|
|
10225
|
+
at: z.ZodString;
|
|
8468
10226
|
}, z.core.$strict>, z.ZodObject<{
|
|
8469
10227
|
suggestions: z.ZodArray<z.ZodObject<{
|
|
8470
10228
|
label: z.ZodString;
|
|
@@ -8473,6 +10231,8 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8473
10231
|
source: z.ZodEnum<{
|
|
8474
10232
|
model: "model";
|
|
8475
10233
|
derived: "derived";
|
|
10234
|
+
mixed: "mixed";
|
|
10235
|
+
advisor: "advisor";
|
|
8476
10236
|
}>;
|
|
8477
10237
|
type: z.ZodLiteral<"workspace.suggestions">;
|
|
8478
10238
|
at: z.ZodString;
|
|
@@ -8526,6 +10286,7 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8526
10286
|
}>>;
|
|
8527
10287
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
8528
10288
|
attempts: z.ZodOptional<z.ZodNumber>;
|
|
10289
|
+
outcome: z.ZodOptional<z.ZodLiteral<"retained_previous">>;
|
|
8529
10290
|
at: z.ZodString;
|
|
8530
10291
|
}, z.core.$strip>, z.ZodObject<{
|
|
8531
10292
|
type: z.ZodLiteral<"run.finished">;
|
|
@@ -8671,9 +10432,9 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8671
10432
|
"clarify.finished": "clarify.finished";
|
|
8672
10433
|
"run.failed": "run.failed";
|
|
8673
10434
|
"run.finished": "run.finished";
|
|
10435
|
+
"sitemap.generated": "sitemap.generated";
|
|
8674
10436
|
"sitemap.generating": "sitemap.generating";
|
|
8675
10437
|
"sitemap.partial": "sitemap.partial";
|
|
8676
|
-
"sitemap.generated": "sitemap.generated";
|
|
8677
10438
|
"sitemap.clamped": "sitemap.clamped";
|
|
8678
10439
|
"media_resolution.started": "media_resolution.started";
|
|
8679
10440
|
"media_resolution.finished": "media_resolution.finished";
|
|
@@ -8691,6 +10452,7 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8691
10452
|
"workspace.worker.updated": "workspace.worker.updated";
|
|
8692
10453
|
"workspace.task.updated": "workspace.task.updated";
|
|
8693
10454
|
"workspace.degraded": "workspace.degraded";
|
|
10455
|
+
"workspace.design_plan.outcome": "workspace.design_plan.outcome";
|
|
8694
10456
|
"workspace.suggestions": "workspace.suggestions";
|
|
8695
10457
|
"file.changed": "file.changed";
|
|
8696
10458
|
"preview.preparing": "preview.preparing";
|
|
@@ -8824,6 +10586,16 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8824
10586
|
object: z.ZodUnknown;
|
|
8825
10587
|
at: z.ZodString;
|
|
8826
10588
|
}, z.core.$strip>, z.ZodObject<{
|
|
10589
|
+
at: z.ZodString;
|
|
10590
|
+
outcome: z.ZodOptional<z.ZodEnum<{
|
|
10591
|
+
deterministic_fallback: "deterministic_fallback";
|
|
10592
|
+
salvaged: "salvaged";
|
|
10593
|
+
}>>;
|
|
10594
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
10595
|
+
model_exception_settled_prefix: "model_exception_settled_prefix";
|
|
10596
|
+
model_exception_safe_root: "model_exception_safe_root";
|
|
10597
|
+
}>>;
|
|
10598
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
8827
10599
|
type: z.ZodLiteral<"sitemap.generated">;
|
|
8828
10600
|
sitemap_id: z.ZodString;
|
|
8829
10601
|
sitemap: z.ZodObject<{
|
|
@@ -8865,11 +10637,11 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8865
10637
|
navigation: z.ZodObject<{
|
|
8866
10638
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
8867
10639
|
label: z.ZodString;
|
|
8868
|
-
href: z.ZodString
|
|
10640
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
8869
10641
|
}, z.core.$strip>>;
|
|
8870
10642
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
8871
10643
|
label: z.ZodString;
|
|
8872
|
-
href: z.ZodString
|
|
10644
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
8873
10645
|
}, z.core.$strip>>;
|
|
8874
10646
|
}, z.core.$strip>;
|
|
8875
10647
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -8915,11 +10687,11 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8915
10687
|
dark: "dark";
|
|
8916
10688
|
}>>;
|
|
8917
10689
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
10690
|
+
none: "none";
|
|
8918
10691
|
sm: "sm";
|
|
8919
10692
|
md: "md";
|
|
8920
10693
|
lg: "lg";
|
|
8921
10694
|
xl: "xl";
|
|
8922
|
-
none: "none";
|
|
8923
10695
|
}>>;
|
|
8924
10696
|
density: z.ZodOptional<z.ZodEnum<{
|
|
8925
10697
|
compact: "compact";
|
|
@@ -8960,7 +10732,6 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
8960
10732
|
}, z.core.$strip>>;
|
|
8961
10733
|
}, z.core.$strip>>;
|
|
8962
10734
|
}, z.core.$strict>;
|
|
8963
|
-
at: z.ZodString;
|
|
8964
10735
|
}, z.core.$strip>, z.ZodObject<{
|
|
8965
10736
|
type: z.ZodLiteral<"sitemap.clamped">;
|
|
8966
10737
|
reason: z.ZodEnum<{
|
|
@@ -9170,15 +10941,38 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
9170
10941
|
patch_protected_dropped: "patch_protected_dropped";
|
|
9171
10942
|
preview_health_degraded: "preview_health_degraded";
|
|
9172
10943
|
design_plan_fallback: "design_plan_fallback";
|
|
10944
|
+
generated_code_rescue: "generated_code_rescue";
|
|
9173
10945
|
}>;
|
|
9174
10946
|
degraded_block_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9175
10947
|
dropped_files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10948
|
+
degraded_file_paths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10949
|
+
degraded_page_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9176
10950
|
snapshot_id: z.ZodOptional<z.ZodString>;
|
|
9177
10951
|
code: z.ZodOptional<z.ZodString>;
|
|
9178
10952
|
message: z.ZodOptional<z.ZodString>;
|
|
9179
10953
|
diagnostics: z.ZodOptional<z.ZodString>;
|
|
9180
10954
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
9181
10955
|
at: z.ZodString;
|
|
10956
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
10957
|
+
type: z.ZodLiteral<"workspace.design_plan.outcome">;
|
|
10958
|
+
design_plan_outcome: z.ZodEnum<{
|
|
10959
|
+
deterministic_fallback: "deterministic_fallback";
|
|
10960
|
+
salvaged: "salvaged";
|
|
10961
|
+
clean: "clean";
|
|
10962
|
+
baseline_retained: "baseline_retained";
|
|
10963
|
+
}>;
|
|
10964
|
+
reason: z.ZodEnum<{
|
|
10965
|
+
generation_succeeded: "generation_succeeded";
|
|
10966
|
+
entry_slots_omitted: "entry_slots_omitted";
|
|
10967
|
+
quality_gate_exhausted: "quality_gate_exhausted";
|
|
10968
|
+
schema_gate_exhausted: "schema_gate_exhausted";
|
|
10969
|
+
stream_schema_mismatch: "stream_schema_mismatch";
|
|
10970
|
+
stream_generation_error: "stream_generation_error";
|
|
10971
|
+
generation_error: "generation_error";
|
|
10972
|
+
fallback_compiler_error: "fallback_compiler_error";
|
|
10973
|
+
legacy_result_missing_metadata: "legacy_result_missing_metadata";
|
|
10974
|
+
}>;
|
|
10975
|
+
at: z.ZodString;
|
|
9182
10976
|
}, z.core.$strict>, z.ZodObject<{
|
|
9183
10977
|
suggestions: z.ZodArray<z.ZodObject<{
|
|
9184
10978
|
label: z.ZodString;
|
|
@@ -9187,6 +10981,8 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
9187
10981
|
source: z.ZodEnum<{
|
|
9188
10982
|
model: "model";
|
|
9189
10983
|
derived: "derived";
|
|
10984
|
+
mixed: "mixed";
|
|
10985
|
+
advisor: "advisor";
|
|
9190
10986
|
}>;
|
|
9191
10987
|
type: z.ZodLiteral<"workspace.suggestions">;
|
|
9192
10988
|
at: z.ZodString;
|
|
@@ -9240,6 +11036,7 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
9240
11036
|
}>>;
|
|
9241
11037
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
9242
11038
|
attempts: z.ZodOptional<z.ZodNumber>;
|
|
11039
|
+
outcome: z.ZodOptional<z.ZodLiteral<"retained_previous">>;
|
|
9243
11040
|
at: z.ZodString;
|
|
9244
11041
|
}, z.core.$strip>, z.ZodObject<{
|
|
9245
11042
|
type: z.ZodLiteral<"run.finished">;
|
|
@@ -9353,9 +11150,9 @@ export declare const ListAgentEventsResponseSchema: z.ZodObject<{
|
|
|
9353
11150
|
"clarify.finished": "clarify.finished";
|
|
9354
11151
|
"run.failed": "run.failed";
|
|
9355
11152
|
"run.finished": "run.finished";
|
|
11153
|
+
"sitemap.generated": "sitemap.generated";
|
|
9356
11154
|
"sitemap.generating": "sitemap.generating";
|
|
9357
11155
|
"sitemap.partial": "sitemap.partial";
|
|
9358
|
-
"sitemap.generated": "sitemap.generated";
|
|
9359
11156
|
"sitemap.clamped": "sitemap.clamped";
|
|
9360
11157
|
"media_resolution.started": "media_resolution.started";
|
|
9361
11158
|
"media_resolution.finished": "media_resolution.finished";
|
|
@@ -9373,6 +11170,7 @@ export declare const ListAgentEventsResponseSchema: z.ZodObject<{
|
|
|
9373
11170
|
"workspace.worker.updated": "workspace.worker.updated";
|
|
9374
11171
|
"workspace.task.updated": "workspace.task.updated";
|
|
9375
11172
|
"workspace.degraded": "workspace.degraded";
|
|
11173
|
+
"workspace.design_plan.outcome": "workspace.design_plan.outcome";
|
|
9376
11174
|
"workspace.suggestions": "workspace.suggestions";
|
|
9377
11175
|
"file.changed": "file.changed";
|
|
9378
11176
|
"preview.preparing": "preview.preparing";
|
|
@@ -9506,6 +11304,16 @@ export declare const ListAgentEventsResponseSchema: z.ZodObject<{
|
|
|
9506
11304
|
object: z.ZodUnknown;
|
|
9507
11305
|
at: z.ZodString;
|
|
9508
11306
|
}, z.core.$strip>, z.ZodObject<{
|
|
11307
|
+
at: z.ZodString;
|
|
11308
|
+
outcome: z.ZodOptional<z.ZodEnum<{
|
|
11309
|
+
deterministic_fallback: "deterministic_fallback";
|
|
11310
|
+
salvaged: "salvaged";
|
|
11311
|
+
}>>;
|
|
11312
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
11313
|
+
model_exception_settled_prefix: "model_exception_settled_prefix";
|
|
11314
|
+
model_exception_safe_root: "model_exception_safe_root";
|
|
11315
|
+
}>>;
|
|
11316
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
9509
11317
|
type: z.ZodLiteral<"sitemap.generated">;
|
|
9510
11318
|
sitemap_id: z.ZodString;
|
|
9511
11319
|
sitemap: z.ZodObject<{
|
|
@@ -9547,11 +11355,11 @@ export declare const ListAgentEventsResponseSchema: z.ZodObject<{
|
|
|
9547
11355
|
navigation: z.ZodObject<{
|
|
9548
11356
|
primaryLinks: z.ZodArray<z.ZodObject<{
|
|
9549
11357
|
label: z.ZodString;
|
|
9550
|
-
href: z.ZodString
|
|
11358
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
9551
11359
|
}, z.core.$strip>>;
|
|
9552
11360
|
footerLinks: z.ZodArray<z.ZodObject<{
|
|
9553
11361
|
label: z.ZodString;
|
|
9554
|
-
href: z.ZodString
|
|
11362
|
+
href: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
9555
11363
|
}, z.core.$strip>>;
|
|
9556
11364
|
}, z.core.$strip>;
|
|
9557
11365
|
integrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -9597,11 +11405,11 @@ export declare const ListAgentEventsResponseSchema: z.ZodObject<{
|
|
|
9597
11405
|
dark: "dark";
|
|
9598
11406
|
}>>;
|
|
9599
11407
|
radius: z.ZodOptional<z.ZodEnum<{
|
|
11408
|
+
none: "none";
|
|
9600
11409
|
sm: "sm";
|
|
9601
11410
|
md: "md";
|
|
9602
11411
|
lg: "lg";
|
|
9603
11412
|
xl: "xl";
|
|
9604
|
-
none: "none";
|
|
9605
11413
|
}>>;
|
|
9606
11414
|
density: z.ZodOptional<z.ZodEnum<{
|
|
9607
11415
|
compact: "compact";
|
|
@@ -9642,7 +11450,6 @@ export declare const ListAgentEventsResponseSchema: z.ZodObject<{
|
|
|
9642
11450
|
}, z.core.$strip>>;
|
|
9643
11451
|
}, z.core.$strip>>;
|
|
9644
11452
|
}, z.core.$strict>;
|
|
9645
|
-
at: z.ZodString;
|
|
9646
11453
|
}, z.core.$strip>, z.ZodObject<{
|
|
9647
11454
|
type: z.ZodLiteral<"sitemap.clamped">;
|
|
9648
11455
|
reason: z.ZodEnum<{
|
|
@@ -9852,15 +11659,38 @@ export declare const ListAgentEventsResponseSchema: z.ZodObject<{
|
|
|
9852
11659
|
patch_protected_dropped: "patch_protected_dropped";
|
|
9853
11660
|
preview_health_degraded: "preview_health_degraded";
|
|
9854
11661
|
design_plan_fallback: "design_plan_fallback";
|
|
11662
|
+
generated_code_rescue: "generated_code_rescue";
|
|
9855
11663
|
}>;
|
|
9856
11664
|
degraded_block_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9857
11665
|
dropped_files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11666
|
+
degraded_file_paths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11667
|
+
degraded_page_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9858
11668
|
snapshot_id: z.ZodOptional<z.ZodString>;
|
|
9859
11669
|
code: z.ZodOptional<z.ZodString>;
|
|
9860
11670
|
message: z.ZodOptional<z.ZodString>;
|
|
9861
11671
|
diagnostics: z.ZodOptional<z.ZodString>;
|
|
9862
11672
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
9863
11673
|
at: z.ZodString;
|
|
11674
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
11675
|
+
type: z.ZodLiteral<"workspace.design_plan.outcome">;
|
|
11676
|
+
design_plan_outcome: z.ZodEnum<{
|
|
11677
|
+
deterministic_fallback: "deterministic_fallback";
|
|
11678
|
+
salvaged: "salvaged";
|
|
11679
|
+
clean: "clean";
|
|
11680
|
+
baseline_retained: "baseline_retained";
|
|
11681
|
+
}>;
|
|
11682
|
+
reason: z.ZodEnum<{
|
|
11683
|
+
generation_succeeded: "generation_succeeded";
|
|
11684
|
+
entry_slots_omitted: "entry_slots_omitted";
|
|
11685
|
+
quality_gate_exhausted: "quality_gate_exhausted";
|
|
11686
|
+
schema_gate_exhausted: "schema_gate_exhausted";
|
|
11687
|
+
stream_schema_mismatch: "stream_schema_mismatch";
|
|
11688
|
+
stream_generation_error: "stream_generation_error";
|
|
11689
|
+
generation_error: "generation_error";
|
|
11690
|
+
fallback_compiler_error: "fallback_compiler_error";
|
|
11691
|
+
legacy_result_missing_metadata: "legacy_result_missing_metadata";
|
|
11692
|
+
}>;
|
|
11693
|
+
at: z.ZodString;
|
|
9864
11694
|
}, z.core.$strict>, z.ZodObject<{
|
|
9865
11695
|
suggestions: z.ZodArray<z.ZodObject<{
|
|
9866
11696
|
label: z.ZodString;
|
|
@@ -9869,6 +11699,8 @@ export declare const ListAgentEventsResponseSchema: z.ZodObject<{
|
|
|
9869
11699
|
source: z.ZodEnum<{
|
|
9870
11700
|
model: "model";
|
|
9871
11701
|
derived: "derived";
|
|
11702
|
+
mixed: "mixed";
|
|
11703
|
+
advisor: "advisor";
|
|
9872
11704
|
}>;
|
|
9873
11705
|
type: z.ZodLiteral<"workspace.suggestions">;
|
|
9874
11706
|
at: z.ZodString;
|
|
@@ -9922,6 +11754,7 @@ export declare const ListAgentEventsResponseSchema: z.ZodObject<{
|
|
|
9922
11754
|
}>>;
|
|
9923
11755
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
9924
11756
|
attempts: z.ZodOptional<z.ZodNumber>;
|
|
11757
|
+
outcome: z.ZodOptional<z.ZodLiteral<"retained_previous">>;
|
|
9925
11758
|
at: z.ZodString;
|
|
9926
11759
|
}, z.core.$strip>, z.ZodObject<{
|
|
9927
11760
|
type: z.ZodLiteral<"run.finished">;
|
|
@@ -10032,6 +11865,7 @@ export type ApiContractStatus = z.infer<typeof ApiContractStatusSchema>;
|
|
|
10032
11865
|
export declare const RestApiMethodSchema: z.ZodEnum<{
|
|
10033
11866
|
GET: "GET";
|
|
10034
11867
|
POST: "POST";
|
|
11868
|
+
PUT: "PUT";
|
|
10035
11869
|
PATCH: "PATCH";
|
|
10036
11870
|
DELETE: "DELETE";
|
|
10037
11871
|
}>;
|
|
@@ -10096,7 +11930,7 @@ export declare const REST_API_ENDPOINTS: readonly [{
|
|
|
10096
11930
|
readonly method: "PATCH";
|
|
10097
11931
|
readonly path: "/sites/:site_id";
|
|
10098
11932
|
readonly tag: "sites";
|
|
10099
|
-
readonly summary: "Update site display name for the current tenant.";
|
|
11933
|
+
readonly summary: "Update site display name and optional generated-site locale for the current tenant.";
|
|
10100
11934
|
readonly status: "implemented";
|
|
10101
11935
|
readonly request_body_schema: "UpdateSiteRequestSchema";
|
|
10102
11936
|
readonly response_schema: "SiteRecordSchema";
|
|
@@ -10107,6 +11941,14 @@ export declare const REST_API_ENDPOINTS: readonly [{
|
|
|
10107
11941
|
readonly summary: "Archive a site so it no longer appears in the tenant site list.";
|
|
10108
11942
|
readonly status: "implemented";
|
|
10109
11943
|
readonly response_schema: "SiteRecordSchema";
|
|
11944
|
+
}, {
|
|
11945
|
+
readonly method: "GET";
|
|
11946
|
+
readonly path: "/sites/:site_id/plan";
|
|
11947
|
+
readonly tag: "publish-entitlements";
|
|
11948
|
+
readonly summary: "Get the current site plan and custom-domain entitlement.";
|
|
11949
|
+
readonly status: "implemented";
|
|
11950
|
+
readonly query_schema: "locale";
|
|
11951
|
+
readonly response_schema: "GetSitePlanResponseSchema";
|
|
10110
11952
|
}, {
|
|
10111
11953
|
readonly method: "GET";
|
|
10112
11954
|
readonly path: "/sites/:site_id/workspace/source-files";
|
|
@@ -10185,6 +12027,15 @@ export declare const REST_API_ENDPOINTS: readonly [{
|
|
|
10185
12027
|
readonly summary: "Read the persisted Step 1 brief for a site so the Workspace Agent can seed first full-site generation without a new write surface.";
|
|
10186
12028
|
readonly status: "implemented";
|
|
10187
12029
|
readonly response_schema: "BriefRecordSchema";
|
|
12030
|
+
}, {
|
|
12031
|
+
readonly method: "PUT";
|
|
12032
|
+
readonly path: "/sites/:site_id/brief/draft";
|
|
12033
|
+
readonly tag: "briefs";
|
|
12034
|
+
readonly summary: "Save a draft site's Step 1 brief without advancing the workflow.";
|
|
12035
|
+
readonly status: "implemented";
|
|
12036
|
+
readonly request_body_schema: "SaveBriefDraftRequestSchema";
|
|
12037
|
+
readonly response_schema: "SaveBriefDraftResponseSchema";
|
|
12038
|
+
readonly notes: readonly ["Only draft sites with generation_state=planning are writable; the brief row is upserted idempotently while site status, generation state, locale, and workflow stage remain unchanged."];
|
|
10188
12039
|
}, {
|
|
10189
12040
|
readonly method: "PATCH";
|
|
10190
12041
|
readonly path: "/sites/:site_id/brief";
|
|
@@ -10351,7 +12202,7 @@ export declare const REST_API_ENDPOINTS: readonly [{
|
|
|
10351
12202
|
readonly status: "implemented";
|
|
10352
12203
|
readonly request_body_schema: "CreateDeploymentRequestSchema";
|
|
10353
12204
|
readonly response_schema: "CreateDeploymentResponseSchema";
|
|
10354
|
-
readonly notes: readonly ["The API returns after creating the deployment record and queue job; worker-service claims deployment_jobs for build and Cloudflare publish."];
|
|
12205
|
+
readonly notes: readonly ["Before creating any deployment record or queue job, the API verifies the site's active subscription; an inactive subscription returns 403 DEPLOYMENT_ENTITLEMENT_REQUIRED, while an unavailable entitlement source prevents deployment creation.", "The API returns after creating the deployment record and queue job; worker-service claims deployment_jobs for build and Cloudflare publish."];
|
|
10355
12206
|
}, {
|
|
10356
12207
|
readonly method: "GET";
|
|
10357
12208
|
readonly path: "/sites/:site_id/deployments/current";
|
|
@@ -10428,15 +12279,40 @@ export declare const REST_API_ENDPOINTS: readonly [{
|
|
|
10428
12279
|
}, {
|
|
10429
12280
|
readonly method: "GET";
|
|
10430
12281
|
readonly path: "/sites/:site_id/domains";
|
|
10431
|
-
readonly tag: "domains";
|
|
10432
|
-
readonly summary: "List
|
|
10433
|
-
readonly status: "
|
|
12282
|
+
readonly tag: "custom-domains";
|
|
12283
|
+
readonly summary: "List the site default domain and custom domains.";
|
|
12284
|
+
readonly status: "implemented";
|
|
12285
|
+
readonly response_schema: "ListSiteDomainsResponseSchema";
|
|
10434
12286
|
}, {
|
|
10435
12287
|
readonly method: "POST";
|
|
10436
12288
|
readonly path: "/sites/:site_id/domains";
|
|
10437
|
-
readonly tag: "domains";
|
|
10438
|
-
readonly summary: "
|
|
10439
|
-
readonly status: "
|
|
12289
|
+
readonly tag: "custom-domains";
|
|
12290
|
+
readonly summary: "Bind a custom domain for site publishing.";
|
|
12291
|
+
readonly status: "implemented";
|
|
12292
|
+
readonly request_body_schema: "BindSiteDomainRequestSchema";
|
|
12293
|
+
readonly response_schema: "BindSiteDomainResponseSchema";
|
|
12294
|
+
readonly notes: readonly ["Returns 403 CUSTOM_DOMAIN_ENTITLEMENT_REQUIRED and never calls the downstream bind API when the site has no active subscription or subscription status cannot be confirmed."];
|
|
12295
|
+
}, {
|
|
12296
|
+
readonly method: "GET";
|
|
12297
|
+
readonly path: "/sites/:site_id/domains/:hostname";
|
|
12298
|
+
readonly tag: "custom-domains";
|
|
12299
|
+
readonly summary: "Get DNS verification detail for a custom domain.";
|
|
12300
|
+
readonly status: "implemented";
|
|
12301
|
+
readonly response_schema: "GetSiteDomainDetailResponseSchema";
|
|
12302
|
+
}, {
|
|
12303
|
+
readonly method: "POST";
|
|
12304
|
+
readonly path: "/sites/:site_id/domains/:hostname/verify";
|
|
12305
|
+
readonly tag: "custom-domains";
|
|
12306
|
+
readonly summary: "Refresh DNS verification status for a custom domain.";
|
|
12307
|
+
readonly status: "implemented";
|
|
12308
|
+
readonly response_schema: "VerifySiteDomainResponseSchema";
|
|
12309
|
+
}, {
|
|
12310
|
+
readonly method: "DELETE";
|
|
12311
|
+
readonly path: "/sites/:site_id/domains/:hostname";
|
|
12312
|
+
readonly tag: "custom-domains";
|
|
12313
|
+
readonly summary: "Delete a non-primary custom domain.";
|
|
12314
|
+
readonly status: "implemented";
|
|
12315
|
+
readonly response_schema: "DeleteSiteDomainResponseSchema";
|
|
10440
12316
|
}, {
|
|
10441
12317
|
readonly method: "GET";
|
|
10442
12318
|
readonly path: "/admin/tenants";
|
|
@@ -11181,6 +13057,8 @@ export declare const WorkspaceServerMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
11181
13057
|
source: z.ZodEnum<{
|
|
11182
13058
|
model: "model";
|
|
11183
13059
|
derived: "derived";
|
|
13060
|
+
mixed: "mixed";
|
|
13061
|
+
advisor: "advisor";
|
|
11184
13062
|
}>;
|
|
11185
13063
|
run_id: z.ZodString;
|
|
11186
13064
|
}, z.core.$strict>;
|
|
@@ -11477,6 +13355,7 @@ export declare const WorkspaceServerMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
11477
13355
|
error_code: z.ZodString;
|
|
11478
13356
|
message: z.ZodString;
|
|
11479
13357
|
retryable: z.ZodBoolean;
|
|
13358
|
+
outcome: z.ZodOptional<z.ZodLiteral<"retained_previous">>;
|
|
11480
13359
|
}, z.core.$strip>;
|
|
11481
13360
|
}, z.core.$strip>, z.ZodObject<{
|
|
11482
13361
|
id: z.ZodString;
|
|
@@ -11896,6 +13775,8 @@ export declare const WorkspaceWebSocketMessageSchema: z.ZodUnion<readonly [z.Zod
|
|
|
11896
13775
|
source: z.ZodEnum<{
|
|
11897
13776
|
model: "model";
|
|
11898
13777
|
derived: "derived";
|
|
13778
|
+
mixed: "mixed";
|
|
13779
|
+
advisor: "advisor";
|
|
11899
13780
|
}>;
|
|
11900
13781
|
run_id: z.ZodString;
|
|
11901
13782
|
}, z.core.$strict>;
|
|
@@ -12192,6 +14073,7 @@ export declare const WorkspaceWebSocketMessageSchema: z.ZodUnion<readonly [z.Zod
|
|
|
12192
14073
|
error_code: z.ZodString;
|
|
12193
14074
|
message: z.ZodString;
|
|
12194
14075
|
retryable: z.ZodBoolean;
|
|
14076
|
+
outcome: z.ZodOptional<z.ZodLiteral<"retained_previous">>;
|
|
12195
14077
|
}, z.core.$strip>;
|
|
12196
14078
|
}, z.core.$strip>, z.ZodObject<{
|
|
12197
14079
|
id: z.ZodString;
|