@omni-graph/omni-model 0.7.31 → 0.7.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/constants/languageCodeMapper.d.ts +107 -1
  2. package/dist/constants/languageCodeMapper.d.ts.map +1 -1
  3. package/dist/constants/languageCodeMapper.js +7 -2
  4. package/dist/constants/languageCodeMapper.js.map +1 -1
  5. package/dist/zod/account-settings/accountSettings.d.ts +251 -107
  6. package/dist/zod/account-settings/accountSettings.d.ts.map +1 -1
  7. package/dist/zod/account-settings/accountSettings.js +15 -0
  8. package/dist/zod/account-settings/accountSettings.js.map +1 -1
  9. package/dist/zod/account-settings/base.d.ts +3 -2
  10. package/dist/zod/account-settings/base.d.ts.map +1 -1
  11. package/dist/zod/account-settings/base.js +3 -5
  12. package/dist/zod/account-settings/base.js.map +1 -1
  13. package/dist/zod/recommendations/base.d.ts +25 -16
  14. package/dist/zod/recommendations/base.d.ts.map +1 -1
  15. package/dist/zod/recommendations/base.js +18 -12
  16. package/dist/zod/recommendations/base.js.map +1 -1
  17. package/dist/zod/recommendations/content-optimization/base.d.ts +48 -44
  18. package/dist/zod/recommendations/content-optimization/base.d.ts.map +1 -1
  19. package/dist/zod/recommendations/content-optimization/base.js +2 -2
  20. package/dist/zod/recommendations/content-optimization/base.js.map +1 -1
  21. package/dist/zod/recommendations/content-optimization/index.d.ts +1 -0
  22. package/dist/zod/recommendations/content-optimization/index.d.ts.map +1 -1
  23. package/dist/zod/recommendations/content-optimization/index.js +1 -0
  24. package/dist/zod/recommendations/content-optimization/index.js.map +1 -1
  25. package/dist/zod/recommendations/content-optimization/metaAttributes.d.ts +11496 -0
  26. package/dist/zod/recommendations/content-optimization/metaAttributes.d.ts.map +1 -0
  27. package/dist/zod/recommendations/content-optimization/metaAttributes.js +144 -0
  28. package/dist/zod/recommendations/content-optimization/metaAttributes.js.map +1 -0
  29. package/dist/zod/recommendations/content-optimization/productRecommendation.d.ts +49 -48
  30. package/dist/zod/recommendations/content-optimization/productRecommendation.d.ts.map +1 -1
  31. package/dist/zod/recommendations/content-optimization/productRecommendation.js +2 -2
  32. package/dist/zod/recommendations/content-optimization/productRecommendation.js.map +1 -1
  33. package/dist/zod/recommendations/index.d.ts +4647 -59
  34. package/dist/zod/recommendations/index.d.ts.map +1 -1
  35. package/dist/zod/recommendations/index.js +2 -1
  36. package/dist/zod/recommendations/index.js.map +1 -1
  37. package/package.json +1 -1
@@ -16,6 +16,10 @@ export type ContentOptimizationReduceSimilarityResponse = z.infer<typeof Content
16
16
  export type CurrencySettingResponse = z.infer<typeof CurrencySettingResponseSchema>;
17
17
  export type DesignGuideResponse = z.infer<typeof DesignGuideResponseSchema>;
18
18
  export type EducationalPlatformResponse = z.infer<typeof EducationalPlatformResponseSchema>;
19
+ export type MetafieldSetting = z.infer<typeof MetafieldSettingSchema>;
20
+ export type MetafieldSettingsValue = z.infer<typeof MetafieldSettingsValueSchema>;
21
+ export type ProductMetafieldsSettingsResponse = z.infer<typeof ProductMetafieldsSettingsResponseSchema>;
22
+ export type CollectionMetafieldsSettingsResponse = z.infer<typeof CollectionMetafieldsSettingsResponseSchema>;
19
23
  export type ProductFilterResponse = z.infer<typeof ProductFilterViewsResponseSchema>;
20
24
  export type SettingsIdToResponseMap = {
21
25
  [AccountSettingsIdEnum.INVENTORY_OPTIMIZATION_ECONOMIC_REWARD]: InventoryOptimizationResponse;
@@ -33,7 +37,10 @@ export type SettingsIdToResponseMap = {
33
37
  [AccountSettingsIdEnum.ANALYTICS_CURRENCY_CODE]: CurrencySettingResponse;
34
38
  [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_WRITE_SEO_PLATFORM]: ContentOptimizationWriteSEOPlatformResponse;
35
39
  [AccountSettingsIdEnum.WIZARD_PLATFORM]: WizardPlatformResponse;
40
+ [AccountSettingsIdEnum.DESIGN_GUIDE_SECTION]: DesignGuideResponse;
36
41
  [AccountSettingsIdEnum.EDUCATIONAL_PLATFORM]: EducationalPlatformResponse;
42
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_METAFIELDS_PRODUCT]: ProductMetafieldsSettingsResponse;
43
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_METAFIELDS_COLLECTION]: CollectionMetafieldsSettingsResponse;
37
44
  [AccountSettingsIdEnum.PRODUCT_FILTER_VIEWS]: ProductFilterResponse;
38
45
  };
39
46
  export declare const MetaFieldUnitEnum: z.ZodOptional<z.ZodEnum<{
@@ -49,13 +56,14 @@ export declare const MetaFieldUnitMappingShema: z.ZodObject<{
49
56
  }>>;
50
57
  }, z.core.$strip>;
51
58
  export type MetaFieldUnitMapping = z.infer<typeof MetaFieldUnitMappingShema>;
52
- export declare const ObjectScopedMetaReferenceSchema: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
53
- UNKNOWN: "UNKNOWN";
59
+ export declare const ObjectScopedMetaReferenceSchema: z.ZodRecord<z.ZodEnum<{
54
60
  location: "location";
55
61
  product: "product";
56
62
  sku: "sku";
57
63
  pseudo_product: "pseudo_product";
58
- }>> & z.core.$partial, z.ZodObject<{
64
+ collection: "collection";
65
+ pseudo_collection: "pseudo_collection";
66
+ }> & z.core.$partial, z.ZodObject<{
59
67
  meta_id: z.ZodString;
60
68
  unit: z.ZodOptional<z.ZodEnum<{
61
69
  currency: "currency";
@@ -74,26 +82,28 @@ export declare const InventoryOptimizationValueSchema: z.ZodObject<{
74
82
  maximum_periods: z.ZodNumber;
75
83
  discount_rate: z.ZodNumber;
76
84
  min_return_on_investment: z.ZodNumber;
77
- bundle_size: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
78
- UNKNOWN: "UNKNOWN";
85
+ bundle_size: z.ZodRecord<z.ZodEnum<{
79
86
  location: "location";
80
87
  product: "product";
81
88
  sku: "sku";
82
89
  pseudo_product: "pseudo_product";
83
- }>> & z.core.$partial, z.ZodObject<{
90
+ collection: "collection";
91
+ pseudo_collection: "pseudo_collection";
92
+ }> & z.core.$partial, z.ZodObject<{
84
93
  meta_id: z.ZodString;
85
94
  unit: z.ZodOptional<z.ZodEnum<{
86
95
  currency: "currency";
87
96
  units: "units";
88
97
  }>>;
89
98
  }, z.core.$strip>>;
90
- minimum_order_quantity: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
91
- UNKNOWN: "UNKNOWN";
99
+ minimum_order_quantity: z.ZodRecord<z.ZodEnum<{
92
100
  location: "location";
93
101
  product: "product";
94
102
  sku: "sku";
95
103
  pseudo_product: "pseudo_product";
96
- }>> & z.core.$partial, z.ZodObject<{
104
+ collection: "collection";
105
+ pseudo_collection: "pseudo_collection";
106
+ }> & z.core.$partial, z.ZodObject<{
97
107
  meta_id: z.ZodString;
98
108
  unit: z.ZodOptional<z.ZodEnum<{
99
109
  currency: "currency";
@@ -108,7 +118,7 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
108
118
  }>>;
109
119
  isEnabled: z.ZodOptional<z.ZodBoolean>;
110
120
  accountId: z.ZodString;
111
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
121
+ updatedAt: z.ZodCoercedDate<unknown>;
112
122
  value: z.ZodObject<{
113
123
  lead_time_days: z.ZodNumber;
114
124
  stockout_cost_ratio: z.ZodNumber;
@@ -120,26 +130,28 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
120
130
  maximum_periods: z.ZodNumber;
121
131
  discount_rate: z.ZodNumber;
122
132
  min_return_on_investment: z.ZodNumber;
123
- bundle_size: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
124
- UNKNOWN: "UNKNOWN";
133
+ bundle_size: z.ZodRecord<z.ZodEnum<{
125
134
  location: "location";
126
135
  product: "product";
127
136
  sku: "sku";
128
137
  pseudo_product: "pseudo_product";
129
- }>> & z.core.$partial, z.ZodObject<{
138
+ collection: "collection";
139
+ pseudo_collection: "pseudo_collection";
140
+ }> & z.core.$partial, z.ZodObject<{
130
141
  meta_id: z.ZodString;
131
142
  unit: z.ZodOptional<z.ZodEnum<{
132
143
  currency: "currency";
133
144
  units: "units";
134
145
  }>>;
135
146
  }, z.core.$strip>>;
136
- minimum_order_quantity: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
137
- UNKNOWN: "UNKNOWN";
147
+ minimum_order_quantity: z.ZodRecord<z.ZodEnum<{
138
148
  location: "location";
139
149
  product: "product";
140
150
  sku: "sku";
141
151
  pseudo_product: "pseudo_product";
142
- }>> & z.core.$partial, z.ZodObject<{
152
+ collection: "collection";
153
+ pseudo_collection: "pseudo_collection";
154
+ }> & z.core.$partial, z.ZodObject<{
143
155
  meta_id: z.ZodString;
144
156
  unit: z.ZodOptional<z.ZodEnum<{
145
157
  currency: "currency";
@@ -158,17 +170,18 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
158
170
  maximum_periods: number;
159
171
  discount_rate: number;
160
172
  min_return_on_investment: number;
161
- bundle_size: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
173
+ bundle_size: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
162
174
  meta_id: string;
163
175
  unit?: "currency" | "units" | undefined;
164
176
  }>>;
165
- minimum_order_quantity: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
177
+ minimum_order_quantity: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
166
178
  meta_id: string;
167
179
  unit?: "currency" | "units" | undefined;
168
180
  }>>;
169
181
  }, {
170
182
  id: string;
171
183
  accountId: string;
184
+ updatedAt: Date;
172
185
  value: {
173
186
  lead_time_days: number;
174
187
  stockout_cost_ratio: number;
@@ -180,17 +193,16 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
180
193
  maximum_periods: number;
181
194
  discount_rate: number;
182
195
  min_return_on_investment: number;
183
- bundle_size: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
196
+ bundle_size: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
184
197
  meta_id: string;
185
198
  unit?: "currency" | "units" | undefined;
186
199
  }>>;
187
- minimum_order_quantity: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
200
+ minimum_order_quantity: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
188
201
  meta_id: string;
189
202
  unit?: "currency" | "units" | undefined;
190
203
  }>>;
191
204
  };
192
205
  isEnabled?: boolean | undefined;
193
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
194
206
  }>>;
195
207
  export declare const DesignGuideSectionTypeEnum: z.ZodEnum<{
196
208
  boolean: "boolean";
@@ -270,7 +282,7 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
270
282
  }>>;
271
283
  isEnabled: z.ZodOptional<z.ZodBoolean>;
272
284
  accountId: z.ZodString;
273
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
285
+ updatedAt: z.ZodCoercedDate<unknown>;
274
286
  value: z.ZodObject<{
275
287
  tone_of_voice: z.ZodNullable<z.ZodString>;
276
288
  use_online_summary: z.ZodBoolean;
@@ -385,6 +397,7 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
385
397
  }, {
386
398
  id: string;
387
399
  accountId: string;
400
+ updatedAt: Date;
388
401
  value: {
389
402
  tone_of_voice: string | null;
390
403
  use_online_summary: boolean;
@@ -438,7 +451,6 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
438
451
  prioritization_strategy?: string | undefined;
439
452
  };
440
453
  isEnabled?: boolean | undefined;
441
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
442
454
  }>>;
443
455
  export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
444
456
  id: z.ZodCatch<z.ZodEnum<{
@@ -446,7 +458,7 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
446
458
  }>>;
447
459
  isEnabled: z.ZodOptional<z.ZodBoolean>;
448
460
  accountId: z.ZodString;
449
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
461
+ updatedAt: z.ZodCoercedDate<unknown>;
450
462
  value: z.ZodObject<{
451
463
  sections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
452
464
  name: z.ZodString;
@@ -549,6 +561,7 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
549
561
  }, {
550
562
  id: string;
551
563
  accountId: string;
564
+ updatedAt: Date;
552
565
  value: {
553
566
  sections: ({
554
567
  name: string;
@@ -596,7 +609,6 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
596
609
  })[];
597
610
  };
598
611
  isEnabled?: boolean | undefined;
599
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
600
612
  }>>;
601
613
  export declare const ContentOptimizationRefinementResponseSchema: z.ZodPipe<z.ZodObject<{
602
614
  id: z.ZodCatch<z.ZodEnum<{
@@ -604,7 +616,7 @@ export declare const ContentOptimizationRefinementResponseSchema: z.ZodPipe<z.Zo
604
616
  }>>;
605
617
  isEnabled: z.ZodOptional<z.ZodBoolean>;
606
618
  accountId: z.ZodString;
607
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
619
+ updatedAt: z.ZodCoercedDate<unknown>;
608
620
  value: z.ZodObject<{
609
621
  use_feedback_based_instructions: z.ZodBoolean;
610
622
  force_shop_language: z.ZodBoolean;
@@ -615,12 +627,82 @@ export declare const ContentOptimizationRefinementResponseSchema: z.ZodPipe<z.Zo
615
627
  }, {
616
628
  id: string;
617
629
  accountId: string;
630
+ updatedAt: Date;
618
631
  value: {
619
632
  use_feedback_based_instructions: boolean;
620
633
  force_shop_language: boolean;
621
634
  };
622
635
  isEnabled?: boolean | undefined;
623
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
636
+ }>>;
637
+ export declare const MetafieldSettingSchema: z.ZodObject<{
638
+ metafield_id: z.ZodString;
639
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
640
+ }, z.core.$strip>;
641
+ export declare const MetafieldSettingsValueSchema: z.ZodObject<{
642
+ metafields: z.ZodArray<z.ZodObject<{
643
+ metafield_id: z.ZodString;
644
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
645
+ }, z.core.$strip>>;
646
+ }, z.core.$strip>;
647
+ export declare const ProductMetafieldsSettingsResponseSchema: z.ZodPipe<z.ZodObject<{
648
+ id: z.ZodCatch<z.ZodEnum<{
649
+ [x: string]: string;
650
+ }>>;
651
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
652
+ accountId: z.ZodString;
653
+ updatedAt: z.ZodCoercedDate<unknown>;
654
+ value: z.ZodObject<{
655
+ metafields: z.ZodArray<z.ZodObject<{
656
+ metafield_id: z.ZodString;
657
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
658
+ }, z.core.$strip>>;
659
+ }, z.core.$strip>;
660
+ }, z.core.$strip>, z.ZodTransform<{
661
+ metafields: {
662
+ metafield_id: string;
663
+ additional_context?: string | null | undefined;
664
+ }[];
665
+ }, {
666
+ id: string;
667
+ accountId: string;
668
+ updatedAt: Date;
669
+ value: {
670
+ metafields: {
671
+ metafield_id: string;
672
+ additional_context?: string | null | undefined;
673
+ }[];
674
+ };
675
+ isEnabled?: boolean | undefined;
676
+ }>>;
677
+ export declare const CollectionMetafieldsSettingsResponseSchema: z.ZodPipe<z.ZodObject<{
678
+ id: z.ZodCatch<z.ZodEnum<{
679
+ [x: string]: string;
680
+ }>>;
681
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
682
+ accountId: z.ZodString;
683
+ updatedAt: z.ZodCoercedDate<unknown>;
684
+ value: z.ZodObject<{
685
+ metafields: z.ZodArray<z.ZodObject<{
686
+ metafield_id: z.ZodString;
687
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
688
+ }, z.core.$strip>>;
689
+ }, z.core.$strip>;
690
+ }, z.core.$strip>, z.ZodTransform<{
691
+ metafields: {
692
+ metafield_id: string;
693
+ additional_context?: string | null | undefined;
694
+ }[];
695
+ }, {
696
+ id: string;
697
+ accountId: string;
698
+ updatedAt: Date;
699
+ value: {
700
+ metafields: {
701
+ metafield_id: string;
702
+ additional_context?: string | null | undefined;
703
+ }[];
704
+ };
705
+ isEnabled?: boolean | undefined;
624
706
  }>>;
625
707
  export declare const resourceKeyTranslation: z.ZodEnum<{
626
708
  product_description_html: "product_description_html";
@@ -635,11 +717,11 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
635
717
  }>>;
636
718
  isEnabled: z.ZodOptional<z.ZodBoolean>;
637
719
  accountId: z.ZodString;
638
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
720
+ updatedAt: z.ZodCoercedDate<unknown>;
639
721
  value: z.ZodObject<{
640
722
  use_feedback_based_instructions: z.ZodBoolean;
641
723
  only_generate_missing: z.ZodBoolean;
642
- translation_languages: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
724
+ translation_languages: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
643
725
  af: "af";
644
726
  am: "am";
645
727
  ar: "ar";
@@ -743,7 +825,7 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
743
825
  yo: "yo";
744
826
  zh: "zh";
745
827
  zu: "zu";
746
- }>>>>;
828
+ }>>>>>;
747
829
  translation_fields: z.ZodObject<{
748
830
  content_optimization_translate_product_description_html: z.ZodObject<{
749
831
  product_description_html: z.ZodObject<{
@@ -816,6 +898,7 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
816
898
  }, {
817
899
  id: string;
818
900
  accountId: string;
901
+ updatedAt: Date;
819
902
  value: {
820
903
  use_feedback_based_instructions: boolean;
821
904
  only_generate_missing: boolean;
@@ -844,7 +927,6 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
844
927
  translation_languages?: ("af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fo" | "fr" | "ga" | "gl" | "gu" | "he" | "hi" | "hr" | "ht" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lb" | "lo" | "lt" | "lv" | "mg" | "mi" | "mk" | "ml" | "mn" | "mr" | "ms" | "mt" | "my" | "ne" | "nl" | "no" | "ny" | "oc" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "rw" | "sd" | "si" | "sk" | "sl" | "sm" | "sn" | "so" | "sq" | "sr" | "st" | "su" | "sv" | "sw" | "ta" | "te" | "tg" | "th" | "ti" | "tk" | "tl" | "tr" | "tt" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "yo" | "zh" | "zu")[] | undefined;
845
928
  };
846
929
  isEnabled?: boolean | undefined;
847
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
848
930
  }>>;
849
931
  export declare const ContentOptimizationWriteResponseSchema: z.ZodPipe<z.ZodObject<{
850
932
  id: z.ZodCatch<z.ZodEnum<{
@@ -852,7 +934,7 @@ export declare const ContentOptimizationWriteResponseSchema: z.ZodPipe<z.ZodObje
852
934
  }>>;
853
935
  isEnabled: z.ZodOptional<z.ZodBoolean>;
854
936
  accountId: z.ZodString;
855
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
937
+ updatedAt: z.ZodCoercedDate<unknown>;
856
938
  value: z.ZodObject<{
857
939
  use_feedback_based_instructions: z.ZodBoolean;
858
940
  only_generate_missing: z.ZodBoolean;
@@ -863,12 +945,12 @@ export declare const ContentOptimizationWriteResponseSchema: z.ZodPipe<z.ZodObje
863
945
  }, {
864
946
  id: string;
865
947
  accountId: string;
948
+ updatedAt: Date;
866
949
  value: {
867
950
  use_feedback_based_instructions: boolean;
868
951
  only_generate_missing: boolean;
869
952
  };
870
953
  isEnabled?: boolean | undefined;
871
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
872
954
  }>>;
873
955
  export declare const ContentOptimizationProductNameResponseSchema: z.ZodPipe<z.ZodObject<{
874
956
  id: z.ZodCatch<z.ZodEnum<{
@@ -876,7 +958,7 @@ export declare const ContentOptimizationProductNameResponseSchema: z.ZodPipe<z.Z
876
958
  }>>;
877
959
  isEnabled: z.ZodOptional<z.ZodBoolean>;
878
960
  accountId: z.ZodString;
879
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
961
+ updatedAt: z.ZodCoercedDate<unknown>;
880
962
  value: z.ZodObject<{
881
963
  use_feedback_based_instructions: z.ZodBoolean;
882
964
  character_limit: z.ZodNumber;
@@ -891,6 +973,7 @@ export declare const ContentOptimizationProductNameResponseSchema: z.ZodPipe<z.Z
891
973
  }, {
892
974
  id: string;
893
975
  accountId: string;
976
+ updatedAt: Date;
894
977
  value: {
895
978
  use_feedback_based_instructions: boolean;
896
979
  character_limit: number;
@@ -898,7 +981,6 @@ export declare const ContentOptimizationProductNameResponseSchema: z.ZodPipe<z.Z
898
981
  only_generate_missing: boolean;
899
982
  };
900
983
  isEnabled?: boolean | undefined;
901
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
902
984
  }>>;
903
985
  export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject<{
904
986
  id: z.ZodCatch<z.ZodEnum<{
@@ -906,7 +988,7 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject
906
988
  }>>;
907
989
  isEnabled: z.ZodOptional<z.ZodBoolean>;
908
990
  accountId: z.ZodString;
909
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
991
+ updatedAt: z.ZodCoercedDate<unknown>;
910
992
  value: z.ZodObject<{
911
993
  use_feedback_based_instructions: z.ZodBoolean;
912
994
  character_limit_title: z.ZodNumber;
@@ -921,6 +1003,7 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject
921
1003
  }, {
922
1004
  id: string;
923
1005
  accountId: string;
1006
+ updatedAt: Date;
924
1007
  value: {
925
1008
  use_feedback_based_instructions: boolean;
926
1009
  character_limit_title: number;
@@ -928,7 +1011,6 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject
928
1011
  only_generate_missing: boolean;
929
1012
  };
930
1013
  isEnabled?: boolean | undefined;
931
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
932
1014
  }>>;
933
1015
  export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodPipe<z.ZodObject<{
934
1016
  id: z.ZodCatch<z.ZodEnum<{
@@ -936,7 +1018,7 @@ export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodPip
936
1018
  }>>;
937
1019
  isEnabled: z.ZodOptional<z.ZodBoolean>;
938
1020
  accountId: z.ZodString;
939
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1021
+ updatedAt: z.ZodCoercedDate<unknown>;
940
1022
  value: z.ZodObject<{
941
1023
  use_feedback_based_instructions: z.ZodBoolean;
942
1024
  similarity_threshold: z.ZodNumber;
@@ -947,12 +1029,12 @@ export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodPip
947
1029
  }, {
948
1030
  id: string;
949
1031
  accountId: string;
1032
+ updatedAt: Date;
950
1033
  value: {
951
1034
  use_feedback_based_instructions: boolean;
952
1035
  similarity_threshold: number;
953
1036
  };
954
1037
  isEnabled?: boolean | undefined;
955
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
956
1038
  }>>;
957
1039
  export declare const ContentOptimizationWriteSEOPlatformValueSchema: z.ZodObject<{
958
1040
  isEnabled: z.ZodBoolean;
@@ -971,7 +1053,7 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodPip
971
1053
  }>>;
972
1054
  isEnabled: z.ZodOptional<z.ZodBoolean>;
973
1055
  accountId: z.ZodString;
974
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1056
+ updatedAt: z.ZodCoercedDate<unknown>;
975
1057
  value: z.ZodObject<{
976
1058
  isEnabled: z.ZodBoolean;
977
1059
  fields: z.ZodObject<{
@@ -996,6 +1078,7 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodPip
996
1078
  }, {
997
1079
  id: string;
998
1080
  accountId: string;
1081
+ updatedAt: Date;
999
1082
  value: {
1000
1083
  isEnabled: boolean;
1001
1084
  fields: {
@@ -1008,7 +1091,6 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodPip
1008
1091
  };
1009
1092
  };
1010
1093
  isEnabled?: boolean | undefined;
1011
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1012
1094
  }>>;
1013
1095
  export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1014
1096
  id: z.ZodCatch<z.ZodEnum<{
@@ -1016,7 +1098,7 @@ export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1016
1098
  }>>;
1017
1099
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1018
1100
  accountId: z.ZodString;
1019
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1101
+ updatedAt: z.ZodCoercedDate<unknown>;
1020
1102
  value: z.ZodObject<{
1021
1103
  isInterrestedInRefinementEnabled: z.ZodOptional<z.ZodBoolean>;
1022
1104
  isInterestedInTranslation: z.ZodOptional<z.ZodBoolean>;
@@ -1035,6 +1117,7 @@ export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1035
1117
  }, {
1036
1118
  id: string;
1037
1119
  accountId: string;
1120
+ updatedAt: Date;
1038
1121
  value: {
1039
1122
  isInterrestedInRefinementEnabled?: boolean | undefined;
1040
1123
  isInterestedInTranslation?: boolean | undefined;
@@ -1044,7 +1127,6 @@ export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1044
1127
  hasCompletedWizard?: boolean | undefined;
1045
1128
  };
1046
1129
  isEnabled?: boolean | undefined;
1047
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1048
1130
  }>>;
1049
1131
  export declare const EducationalPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1050
1132
  id: z.ZodCatch<z.ZodEnum<{
@@ -1052,7 +1134,7 @@ export declare const EducationalPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1052
1134
  }>>;
1053
1135
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1054
1136
  accountId: z.ZodString;
1055
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1137
+ updatedAt: z.ZodCoercedDate<unknown>;
1056
1138
  value: z.ZodObject<{
1057
1139
  hasCompletedDesignGuide: z.ZodOptional<z.ZodBoolean>;
1058
1140
  hasVisitedEducationalPlatform: z.ZodOptional<z.ZodBoolean>;
@@ -1063,12 +1145,12 @@ export declare const EducationalPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1063
1145
  }, {
1064
1146
  id: string;
1065
1147
  accountId: string;
1148
+ updatedAt: Date;
1066
1149
  value: {
1067
1150
  hasCompletedDesignGuide?: boolean | undefined;
1068
1151
  hasVisitedEducationalPlatform?: boolean | undefined;
1069
1152
  };
1070
1153
  isEnabled?: boolean | undefined;
1071
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1072
1154
  }>>;
1073
1155
  export declare const PrimaryLocaleResponseSchema: z.ZodPipe<z.ZodObject<{
1074
1156
  id: z.ZodCatch<z.ZodEnum<{
@@ -1076,8 +1158,8 @@ export declare const PrimaryLocaleResponseSchema: z.ZodPipe<z.ZodObject<{
1076
1158
  }>>;
1077
1159
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1078
1160
  accountId: z.ZodString;
1079
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1080
- value: z.ZodOptional<z.ZodEnum<{
1161
+ updatedAt: z.ZodCoercedDate<unknown>;
1162
+ value: z.ZodOptional<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
1081
1163
  af: "af";
1082
1164
  am: "am";
1083
1165
  ar: "ar";
@@ -1181,12 +1263,12 @@ export declare const PrimaryLocaleResponseSchema: z.ZodPipe<z.ZodObject<{
1181
1263
  yo: "yo";
1182
1264
  zh: "zh";
1183
1265
  zu: "zu";
1184
- }>>;
1266
+ }>>>;
1185
1267
  }, z.core.$strip>, z.ZodTransform<"af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fo" | "fr" | "ga" | "gl" | "gu" | "he" | "hi" | "hr" | "ht" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lb" | "lo" | "lt" | "lv" | "mg" | "mi" | "mk" | "ml" | "mn" | "mr" | "ms" | "mt" | "my" | "ne" | "nl" | "no" | "ny" | "oc" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "rw" | "sd" | "si" | "sk" | "sl" | "sm" | "sn" | "so" | "sq" | "sr" | "st" | "su" | "sv" | "sw" | "ta" | "te" | "tg" | "th" | "ti" | "tk" | "tl" | "tr" | "tt" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "yo" | "zh" | "zu" | null, {
1186
1268
  id: string;
1187
1269
  accountId: string;
1270
+ updatedAt: Date;
1188
1271
  isEnabled?: boolean | undefined;
1189
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1190
1272
  value?: "af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fo" | "fr" | "ga" | "gl" | "gu" | "he" | "hi" | "hr" | "ht" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lb" | "lo" | "lt" | "lv" | "mg" | "mi" | "mk" | "ml" | "mn" | "mr" | "ms" | "mt" | "my" | "ne" | "nl" | "no" | "ny" | "oc" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "rw" | "sd" | "si" | "sk" | "sl" | "sm" | "sn" | "so" | "sq" | "sr" | "st" | "su" | "sv" | "sw" | "ta" | "te" | "tg" | "th" | "ti" | "tk" | "tl" | "tr" | "tt" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "yo" | "zh" | "zu" | undefined;
1191
1273
  }>>;
1192
1274
  export declare const DefaultResponseSchema: z.ZodPipe<z.ZodOptional<z.ZodObject<{
@@ -1195,14 +1277,14 @@ export declare const DefaultResponseSchema: z.ZodPipe<z.ZodOptional<z.ZodObject<
1195
1277
  }>>;
1196
1278
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1197
1279
  accountId: z.ZodString;
1198
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1280
+ updatedAt: z.ZodCoercedDate<unknown>;
1199
1281
  value: z.ZodString;
1200
1282
  }, z.core.$strip>>, z.ZodTransform<string | undefined, {
1201
1283
  id: string;
1202
1284
  accountId: string;
1285
+ updatedAt: Date;
1203
1286
  value: string;
1204
1287
  isEnabled?: boolean | undefined;
1205
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1206
1288
  } | undefined>>;
1207
1289
  export declare const CurrencySettingResponseSchema: z.ZodPipe<z.ZodObject<{
1208
1290
  id: z.ZodCatch<z.ZodEnum<{
@@ -1210,7 +1292,7 @@ export declare const CurrencySettingResponseSchema: z.ZodPipe<z.ZodObject<{
1210
1292
  }>>;
1211
1293
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1212
1294
  accountId: z.ZodString;
1213
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1295
+ updatedAt: z.ZodCoercedDate<unknown>;
1214
1296
  value: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
1215
1297
  AED: "AED";
1216
1298
  ARS: "ARS";
@@ -1252,8 +1334,8 @@ export declare const CurrencySettingResponseSchema: z.ZodPipe<z.ZodObject<{
1252
1334
  }, z.core.$strip>, z.ZodTransform<"AED" | "ARS" | "AUD" | "BGN" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "COP" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PLN" | "RON" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "USD" | "ZAR" | "UNKNOWN", {
1253
1335
  id: string;
1254
1336
  accountId: string;
1337
+ updatedAt: Date;
1255
1338
  isEnabled?: boolean | undefined;
1256
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1257
1339
  value?: "AED" | "ARS" | "AUD" | "BGN" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "COP" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PLN" | "RON" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "USD" | "ZAR" | "UNKNOWN" | undefined;
1258
1340
  }>>;
1259
1341
  export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
@@ -1262,7 +1344,7 @@ export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
1262
1344
  }>>;
1263
1345
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1264
1346
  accountId: z.ZodString;
1265
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1347
+ updatedAt: z.ZodCoercedDate<unknown>;
1266
1348
  value: z.ZodObject<{
1267
1349
  views: z.ZodArray<z.ZodObject<{
1268
1350
  name: z.ZodString;
@@ -1277,6 +1359,7 @@ export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
1277
1359
  }, {
1278
1360
  id: string;
1279
1361
  accountId: string;
1362
+ updatedAt: Date;
1280
1363
  value: {
1281
1364
  views: {
1282
1365
  name: string;
@@ -1284,7 +1367,6 @@ export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
1284
1367
  }[];
1285
1368
  };
1286
1369
  isEnabled?: boolean | undefined;
1287
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1288
1370
  }>>;
1289
1371
  export declare const SettingsSchemas: {
1290
1372
  content_optimization: z.ZodPipe<z.ZodObject<{
@@ -1293,7 +1375,7 @@ export declare const SettingsSchemas: {
1293
1375
  }>>;
1294
1376
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1295
1377
  accountId: z.ZodString;
1296
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1378
+ updatedAt: z.ZodCoercedDate<unknown>;
1297
1379
  value: z.ZodObject<{
1298
1380
  tone_of_voice: z.ZodNullable<z.ZodString>;
1299
1381
  use_online_summary: z.ZodBoolean;
@@ -1408,6 +1490,7 @@ export declare const SettingsSchemas: {
1408
1490
  }, {
1409
1491
  id: string;
1410
1492
  accountId: string;
1493
+ updatedAt: Date;
1411
1494
  value: {
1412
1495
  tone_of_voice: string | null;
1413
1496
  use_online_summary: boolean;
@@ -1461,7 +1544,6 @@ export declare const SettingsSchemas: {
1461
1544
  prioritization_strategy?: string | undefined;
1462
1545
  };
1463
1546
  isEnabled?: boolean | undefined;
1464
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1465
1547
  }>>;
1466
1548
  content_optimization_refine: z.ZodPipe<z.ZodObject<{
1467
1549
  id: z.ZodCatch<z.ZodEnum<{
@@ -1469,7 +1551,7 @@ export declare const SettingsSchemas: {
1469
1551
  }>>;
1470
1552
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1471
1553
  accountId: z.ZodString;
1472
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1554
+ updatedAt: z.ZodCoercedDate<unknown>;
1473
1555
  value: z.ZodObject<{
1474
1556
  use_feedback_based_instructions: z.ZodBoolean;
1475
1557
  force_shop_language: z.ZodBoolean;
@@ -1480,12 +1562,12 @@ export declare const SettingsSchemas: {
1480
1562
  }, {
1481
1563
  id: string;
1482
1564
  accountId: string;
1565
+ updatedAt: Date;
1483
1566
  value: {
1484
1567
  use_feedback_based_instructions: boolean;
1485
1568
  force_shop_language: boolean;
1486
1569
  };
1487
1570
  isEnabled?: boolean | undefined;
1488
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1489
1571
  }>>;
1490
1572
  content_optimization_translate: z.ZodPipe<z.ZodObject<{
1491
1573
  id: z.ZodCatch<z.ZodEnum<{
@@ -1493,11 +1575,11 @@ export declare const SettingsSchemas: {
1493
1575
  }>>;
1494
1576
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1495
1577
  accountId: z.ZodString;
1496
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1578
+ updatedAt: z.ZodCoercedDate<unknown>;
1497
1579
  value: z.ZodObject<{
1498
1580
  use_feedback_based_instructions: z.ZodBoolean;
1499
1581
  only_generate_missing: z.ZodBoolean;
1500
- translation_languages: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
1582
+ translation_languages: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
1501
1583
  af: "af";
1502
1584
  am: "am";
1503
1585
  ar: "ar";
@@ -1601,7 +1683,7 @@ export declare const SettingsSchemas: {
1601
1683
  yo: "yo";
1602
1684
  zh: "zh";
1603
1685
  zu: "zu";
1604
- }>>>>;
1686
+ }>>>>>;
1605
1687
  translation_fields: z.ZodObject<{
1606
1688
  content_optimization_translate_product_description_html: z.ZodObject<{
1607
1689
  product_description_html: z.ZodObject<{
@@ -1674,6 +1756,7 @@ export declare const SettingsSchemas: {
1674
1756
  }, {
1675
1757
  id: string;
1676
1758
  accountId: string;
1759
+ updatedAt: Date;
1677
1760
  value: {
1678
1761
  use_feedback_based_instructions: boolean;
1679
1762
  only_generate_missing: boolean;
@@ -1702,7 +1785,6 @@ export declare const SettingsSchemas: {
1702
1785
  translation_languages?: ("af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fo" | "fr" | "ga" | "gl" | "gu" | "he" | "hi" | "hr" | "ht" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lb" | "lo" | "lt" | "lv" | "mg" | "mi" | "mk" | "ml" | "mn" | "mr" | "ms" | "mt" | "my" | "ne" | "nl" | "no" | "ny" | "oc" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "rw" | "sd" | "si" | "sk" | "sl" | "sm" | "sn" | "so" | "sq" | "sr" | "st" | "su" | "sv" | "sw" | "ta" | "te" | "tg" | "th" | "ti" | "tk" | "tl" | "tr" | "tt" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "yo" | "zh" | "zu")[] | undefined;
1703
1786
  };
1704
1787
  isEnabled?: boolean | undefined;
1705
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1706
1788
  }>>;
1707
1789
  content_optimization_write: z.ZodPipe<z.ZodObject<{
1708
1790
  id: z.ZodCatch<z.ZodEnum<{
@@ -1710,7 +1792,7 @@ export declare const SettingsSchemas: {
1710
1792
  }>>;
1711
1793
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1712
1794
  accountId: z.ZodString;
1713
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1795
+ updatedAt: z.ZodCoercedDate<unknown>;
1714
1796
  value: z.ZodObject<{
1715
1797
  use_feedback_based_instructions: z.ZodBoolean;
1716
1798
  only_generate_missing: z.ZodBoolean;
@@ -1721,12 +1803,12 @@ export declare const SettingsSchemas: {
1721
1803
  }, {
1722
1804
  id: string;
1723
1805
  accountId: string;
1806
+ updatedAt: Date;
1724
1807
  value: {
1725
1808
  use_feedback_based_instructions: boolean;
1726
1809
  only_generate_missing: boolean;
1727
1810
  };
1728
1811
  isEnabled?: boolean | undefined;
1729
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1730
1812
  }>>;
1731
1813
  content_optimization_product_name: z.ZodPipe<z.ZodObject<{
1732
1814
  id: z.ZodCatch<z.ZodEnum<{
@@ -1734,7 +1816,7 @@ export declare const SettingsSchemas: {
1734
1816
  }>>;
1735
1817
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1736
1818
  accountId: z.ZodString;
1737
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1819
+ updatedAt: z.ZodCoercedDate<unknown>;
1738
1820
  value: z.ZodObject<{
1739
1821
  use_feedback_based_instructions: z.ZodBoolean;
1740
1822
  character_limit: z.ZodNumber;
@@ -1749,6 +1831,7 @@ export declare const SettingsSchemas: {
1749
1831
  }, {
1750
1832
  id: string;
1751
1833
  accountId: string;
1834
+ updatedAt: Date;
1752
1835
  value: {
1753
1836
  use_feedback_based_instructions: boolean;
1754
1837
  character_limit: number;
@@ -1756,7 +1839,6 @@ export declare const SettingsSchemas: {
1756
1839
  only_generate_missing: boolean;
1757
1840
  };
1758
1841
  isEnabled?: boolean | undefined;
1759
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1760
1842
  }>>;
1761
1843
  content_optimization_write_seo: z.ZodPipe<z.ZodObject<{
1762
1844
  id: z.ZodCatch<z.ZodEnum<{
@@ -1764,7 +1846,7 @@ export declare const SettingsSchemas: {
1764
1846
  }>>;
1765
1847
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1766
1848
  accountId: z.ZodString;
1767
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1849
+ updatedAt: z.ZodCoercedDate<unknown>;
1768
1850
  value: z.ZodObject<{
1769
1851
  use_feedback_based_instructions: z.ZodBoolean;
1770
1852
  character_limit_title: z.ZodNumber;
@@ -1779,6 +1861,7 @@ export declare const SettingsSchemas: {
1779
1861
  }, {
1780
1862
  id: string;
1781
1863
  accountId: string;
1864
+ updatedAt: Date;
1782
1865
  value: {
1783
1866
  use_feedback_based_instructions: boolean;
1784
1867
  character_limit_title: number;
@@ -1786,7 +1869,6 @@ export declare const SettingsSchemas: {
1786
1869
  only_generate_missing: boolean;
1787
1870
  };
1788
1871
  isEnabled?: boolean | undefined;
1789
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1790
1872
  }>>;
1791
1873
  content_optimization_reduce_similarity: z.ZodPipe<z.ZodObject<{
1792
1874
  id: z.ZodCatch<z.ZodEnum<{
@@ -1794,7 +1876,7 @@ export declare const SettingsSchemas: {
1794
1876
  }>>;
1795
1877
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1796
1878
  accountId: z.ZodString;
1797
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1879
+ updatedAt: z.ZodCoercedDate<unknown>;
1798
1880
  value: z.ZodObject<{
1799
1881
  use_feedback_based_instructions: z.ZodBoolean;
1800
1882
  similarity_threshold: z.ZodNumber;
@@ -1805,12 +1887,12 @@ export declare const SettingsSchemas: {
1805
1887
  }, {
1806
1888
  id: string;
1807
1889
  accountId: string;
1890
+ updatedAt: Date;
1808
1891
  value: {
1809
1892
  use_feedback_based_instructions: boolean;
1810
1893
  similarity_threshold: number;
1811
1894
  };
1812
1895
  isEnabled?: boolean | undefined;
1813
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1814
1896
  }>>;
1815
1897
  content_optimization_write_seo_platform: z.ZodPipe<z.ZodObject<{
1816
1898
  id: z.ZodCatch<z.ZodEnum<{
@@ -1818,7 +1900,7 @@ export declare const SettingsSchemas: {
1818
1900
  }>>;
1819
1901
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1820
1902
  accountId: z.ZodString;
1821
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1903
+ updatedAt: z.ZodCoercedDate<unknown>;
1822
1904
  value: z.ZodObject<{
1823
1905
  isEnabled: z.ZodBoolean;
1824
1906
  fields: z.ZodObject<{
@@ -1843,6 +1925,7 @@ export declare const SettingsSchemas: {
1843
1925
  }, {
1844
1926
  id: string;
1845
1927
  accountId: string;
1928
+ updatedAt: Date;
1846
1929
  value: {
1847
1930
  isEnabled: boolean;
1848
1931
  fields: {
@@ -1855,7 +1938,6 @@ export declare const SettingsSchemas: {
1855
1938
  };
1856
1939
  };
1857
1940
  isEnabled?: boolean | undefined;
1858
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1859
1941
  }>>;
1860
1942
  inventory_optimization_economic_reward: z.ZodPipe<z.ZodObject<{
1861
1943
  id: z.ZodCatch<z.ZodEnum<{
@@ -1863,7 +1945,7 @@ export declare const SettingsSchemas: {
1863
1945
  }>>;
1864
1946
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1865
1947
  accountId: z.ZodString;
1866
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1948
+ updatedAt: z.ZodCoercedDate<unknown>;
1867
1949
  value: z.ZodObject<{
1868
1950
  lead_time_days: z.ZodNumber;
1869
1951
  stockout_cost_ratio: z.ZodNumber;
@@ -1875,26 +1957,28 @@ export declare const SettingsSchemas: {
1875
1957
  maximum_periods: z.ZodNumber;
1876
1958
  discount_rate: z.ZodNumber;
1877
1959
  min_return_on_investment: z.ZodNumber;
1878
- bundle_size: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
1879
- UNKNOWN: "UNKNOWN";
1960
+ bundle_size: z.ZodRecord<z.ZodEnum<{
1880
1961
  location: "location";
1881
1962
  product: "product";
1882
1963
  sku: "sku";
1883
1964
  pseudo_product: "pseudo_product";
1884
- }>> & z.core.$partial, z.ZodObject<{
1965
+ collection: "collection";
1966
+ pseudo_collection: "pseudo_collection";
1967
+ }> & z.core.$partial, z.ZodObject<{
1885
1968
  meta_id: z.ZodString;
1886
1969
  unit: z.ZodOptional<z.ZodEnum<{
1887
1970
  currency: "currency";
1888
1971
  units: "units";
1889
1972
  }>>;
1890
1973
  }, z.core.$strip>>;
1891
- minimum_order_quantity: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
1892
- UNKNOWN: "UNKNOWN";
1974
+ minimum_order_quantity: z.ZodRecord<z.ZodEnum<{
1893
1975
  location: "location";
1894
1976
  product: "product";
1895
1977
  sku: "sku";
1896
1978
  pseudo_product: "pseudo_product";
1897
- }>> & z.core.$partial, z.ZodObject<{
1979
+ collection: "collection";
1980
+ pseudo_collection: "pseudo_collection";
1981
+ }> & z.core.$partial, z.ZodObject<{
1898
1982
  meta_id: z.ZodString;
1899
1983
  unit: z.ZodOptional<z.ZodEnum<{
1900
1984
  currency: "currency";
@@ -1913,17 +1997,18 @@ export declare const SettingsSchemas: {
1913
1997
  maximum_periods: number;
1914
1998
  discount_rate: number;
1915
1999
  min_return_on_investment: number;
1916
- bundle_size: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
2000
+ bundle_size: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
1917
2001
  meta_id: string;
1918
2002
  unit?: "currency" | "units" | undefined;
1919
2003
  }>>;
1920
- minimum_order_quantity: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
2004
+ minimum_order_quantity: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
1921
2005
  meta_id: string;
1922
2006
  unit?: "currency" | "units" | undefined;
1923
2007
  }>>;
1924
2008
  }, {
1925
2009
  id: string;
1926
2010
  accountId: string;
2011
+ updatedAt: Date;
1927
2012
  value: {
1928
2013
  lead_time_days: number;
1929
2014
  stockout_cost_ratio: number;
@@ -1935,17 +2020,16 @@ export declare const SettingsSchemas: {
1935
2020
  maximum_periods: number;
1936
2021
  discount_rate: number;
1937
2022
  min_return_on_investment: number;
1938
- bundle_size: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
2023
+ bundle_size: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
1939
2024
  meta_id: string;
1940
2025
  unit?: "currency" | "units" | undefined;
1941
2026
  }>>;
1942
- minimum_order_quantity: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
2027
+ minimum_order_quantity: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
1943
2028
  meta_id: string;
1944
2029
  unit?: "currency" | "units" | undefined;
1945
2030
  }>>;
1946
2031
  };
1947
2032
  isEnabled?: boolean | undefined;
1948
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1949
2033
  }>>;
1950
2034
  wizard_platform: z.ZodPipe<z.ZodObject<{
1951
2035
  id: z.ZodCatch<z.ZodEnum<{
@@ -1953,7 +2037,7 @@ export declare const SettingsSchemas: {
1953
2037
  }>>;
1954
2038
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1955
2039
  accountId: z.ZodString;
1956
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2040
+ updatedAt: z.ZodCoercedDate<unknown>;
1957
2041
  value: z.ZodObject<{
1958
2042
  isInterrestedInRefinementEnabled: z.ZodOptional<z.ZodBoolean>;
1959
2043
  isInterestedInTranslation: z.ZodOptional<z.ZodBoolean>;
@@ -1972,6 +2056,7 @@ export declare const SettingsSchemas: {
1972
2056
  }, {
1973
2057
  id: string;
1974
2058
  accountId: string;
2059
+ updatedAt: Date;
1975
2060
  value: {
1976
2061
  isInterrestedInRefinementEnabled?: boolean | undefined;
1977
2062
  isInterestedInTranslation?: boolean | undefined;
@@ -1981,7 +2066,6 @@ export declare const SettingsSchemas: {
1981
2066
  hasCompletedWizard?: boolean | undefined;
1982
2067
  };
1983
2068
  isEnabled?: boolean | undefined;
1984
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1985
2069
  }>>;
1986
2070
  primary_locale: z.ZodPipe<z.ZodObject<{
1987
2071
  id: z.ZodCatch<z.ZodEnum<{
@@ -1989,8 +2073,8 @@ export declare const SettingsSchemas: {
1989
2073
  }>>;
1990
2074
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1991
2075
  accountId: z.ZodString;
1992
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1993
- value: z.ZodOptional<z.ZodEnum<{
2076
+ updatedAt: z.ZodCoercedDate<unknown>;
2077
+ value: z.ZodOptional<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
1994
2078
  af: "af";
1995
2079
  am: "am";
1996
2080
  ar: "ar";
@@ -2094,12 +2178,12 @@ export declare const SettingsSchemas: {
2094
2178
  yo: "yo";
2095
2179
  zh: "zh";
2096
2180
  zu: "zu";
2097
- }>>;
2181
+ }>>>;
2098
2182
  }, z.core.$strip>, z.ZodTransform<"af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fo" | "fr" | "ga" | "gl" | "gu" | "he" | "hi" | "hr" | "ht" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lb" | "lo" | "lt" | "lv" | "mg" | "mi" | "mk" | "ml" | "mn" | "mr" | "ms" | "mt" | "my" | "ne" | "nl" | "no" | "ny" | "oc" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "rw" | "sd" | "si" | "sk" | "sl" | "sm" | "sn" | "so" | "sq" | "sr" | "st" | "su" | "sv" | "sw" | "ta" | "te" | "tg" | "th" | "ti" | "tk" | "tl" | "tr" | "tt" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "yo" | "zh" | "zu" | null, {
2099
2183
  id: string;
2100
2184
  accountId: string;
2185
+ updatedAt: Date;
2101
2186
  isEnabled?: boolean | undefined;
2102
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2103
2187
  value?: "af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fo" | "fr" | "ga" | "gl" | "gu" | "he" | "hi" | "hr" | "ht" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lb" | "lo" | "lt" | "lv" | "mg" | "mi" | "mk" | "ml" | "mn" | "mr" | "ms" | "mt" | "my" | "ne" | "nl" | "no" | "ny" | "oc" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "rw" | "sd" | "si" | "sk" | "sl" | "sm" | "sn" | "so" | "sq" | "sr" | "st" | "su" | "sv" | "sw" | "ta" | "te" | "tg" | "th" | "ti" | "tk" | "tl" | "tr" | "tt" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "yo" | "zh" | "zu" | undefined;
2104
2188
  }>>;
2105
2189
  shopify_primary_url: z.ZodPipe<z.ZodOptional<z.ZodObject<{
@@ -2108,14 +2192,14 @@ export declare const SettingsSchemas: {
2108
2192
  }>>;
2109
2193
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2110
2194
  accountId: z.ZodString;
2111
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2195
+ updatedAt: z.ZodCoercedDate<unknown>;
2112
2196
  value: z.ZodString;
2113
2197
  }, z.core.$strip>>, z.ZodTransform<string | undefined, {
2114
2198
  id: string;
2115
2199
  accountId: string;
2200
+ updatedAt: Date;
2116
2201
  value: string;
2117
2202
  isEnabled?: boolean | undefined;
2118
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2119
2203
  } | undefined>>;
2120
2204
  analytics_timezone: z.ZodPipe<z.ZodOptional<z.ZodObject<{
2121
2205
  id: z.ZodCatch<z.ZodEnum<{
@@ -2123,14 +2207,14 @@ export declare const SettingsSchemas: {
2123
2207
  }>>;
2124
2208
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2125
2209
  accountId: z.ZodString;
2126
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2210
+ updatedAt: z.ZodCoercedDate<unknown>;
2127
2211
  value: z.ZodString;
2128
2212
  }, z.core.$strip>>, z.ZodTransform<string | undefined, {
2129
2213
  id: string;
2130
2214
  accountId: string;
2215
+ updatedAt: Date;
2131
2216
  value: string;
2132
2217
  isEnabled?: boolean | undefined;
2133
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2134
2218
  } | undefined>>;
2135
2219
  company_description: z.ZodPipe<z.ZodOptional<z.ZodObject<{
2136
2220
  id: z.ZodCatch<z.ZodEnum<{
@@ -2138,14 +2222,14 @@ export declare const SettingsSchemas: {
2138
2222
  }>>;
2139
2223
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2140
2224
  accountId: z.ZodString;
2141
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2225
+ updatedAt: z.ZodCoercedDate<unknown>;
2142
2226
  value: z.ZodString;
2143
2227
  }, z.core.$strip>>, z.ZodTransform<string | undefined, {
2144
2228
  id: string;
2145
2229
  accountId: string;
2230
+ updatedAt: Date;
2146
2231
  value: string;
2147
2232
  isEnabled?: boolean | undefined;
2148
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2149
2233
  } | undefined>>;
2150
2234
  analytics_currency_code: z.ZodPipe<z.ZodObject<{
2151
2235
  id: z.ZodCatch<z.ZodEnum<{
@@ -2153,7 +2237,7 @@ export declare const SettingsSchemas: {
2153
2237
  }>>;
2154
2238
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2155
2239
  accountId: z.ZodString;
2156
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2240
+ updatedAt: z.ZodCoercedDate<unknown>;
2157
2241
  value: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
2158
2242
  AED: "AED";
2159
2243
  ARS: "ARS";
@@ -2195,8 +2279,8 @@ export declare const SettingsSchemas: {
2195
2279
  }, z.core.$strip>, z.ZodTransform<"AED" | "ARS" | "AUD" | "BGN" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "COP" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PLN" | "RON" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "USD" | "ZAR" | "UNKNOWN", {
2196
2280
  id: string;
2197
2281
  accountId: string;
2282
+ updatedAt: Date;
2198
2283
  isEnabled?: boolean | undefined;
2199
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2200
2284
  value?: "AED" | "ARS" | "AUD" | "BGN" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "COP" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PLN" | "RON" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "USD" | "ZAR" | "UNKNOWN" | undefined;
2201
2285
  }>>;
2202
2286
  design_guide_section_templates: z.ZodPipe<z.ZodObject<{
@@ -2205,7 +2289,7 @@ export declare const SettingsSchemas: {
2205
2289
  }>>;
2206
2290
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2207
2291
  accountId: z.ZodString;
2208
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2292
+ updatedAt: z.ZodCoercedDate<unknown>;
2209
2293
  value: z.ZodObject<{
2210
2294
  sections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2211
2295
  name: z.ZodString;
@@ -2308,6 +2392,7 @@ export declare const SettingsSchemas: {
2308
2392
  }, {
2309
2393
  id: string;
2310
2394
  accountId: string;
2395
+ updatedAt: Date;
2311
2396
  value: {
2312
2397
  sections: ({
2313
2398
  name: string;
@@ -2355,7 +2440,6 @@ export declare const SettingsSchemas: {
2355
2440
  })[];
2356
2441
  };
2357
2442
  isEnabled?: boolean | undefined;
2358
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2359
2443
  }>>;
2360
2444
  unknown: z.ZodPipe<z.ZodOptional<z.ZodObject<{
2361
2445
  id: z.ZodCatch<z.ZodEnum<{
@@ -2363,14 +2447,14 @@ export declare const SettingsSchemas: {
2363
2447
  }>>;
2364
2448
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2365
2449
  accountId: z.ZodString;
2366
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2450
+ updatedAt: z.ZodCoercedDate<unknown>;
2367
2451
  value: z.ZodString;
2368
2452
  }, z.core.$strip>>, z.ZodTransform<string | undefined, {
2369
2453
  id: string;
2370
2454
  accountId: string;
2455
+ updatedAt: Date;
2371
2456
  value: string;
2372
2457
  isEnabled?: boolean | undefined;
2373
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2374
2458
  } | undefined>>;
2375
2459
  educational_platform: z.ZodPipe<z.ZodObject<{
2376
2460
  id: z.ZodCatch<z.ZodEnum<{
@@ -2378,7 +2462,7 @@ export declare const SettingsSchemas: {
2378
2462
  }>>;
2379
2463
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2380
2464
  accountId: z.ZodString;
2381
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2465
+ updatedAt: z.ZodCoercedDate<unknown>;
2382
2466
  value: z.ZodObject<{
2383
2467
  hasCompletedDesignGuide: z.ZodOptional<z.ZodBoolean>;
2384
2468
  hasVisitedEducationalPlatform: z.ZodOptional<z.ZodBoolean>;
@@ -2389,12 +2473,72 @@ export declare const SettingsSchemas: {
2389
2473
  }, {
2390
2474
  id: string;
2391
2475
  accountId: string;
2476
+ updatedAt: Date;
2392
2477
  value: {
2393
2478
  hasCompletedDesignGuide?: boolean | undefined;
2394
2479
  hasVisitedEducationalPlatform?: boolean | undefined;
2395
2480
  };
2396
2481
  isEnabled?: boolean | undefined;
2397
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2482
+ }>>;
2483
+ content_optimization_product_meta_ids: z.ZodPipe<z.ZodObject<{
2484
+ id: z.ZodCatch<z.ZodEnum<{
2485
+ [x: string]: string;
2486
+ }>>;
2487
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
2488
+ accountId: z.ZodString;
2489
+ updatedAt: z.ZodCoercedDate<unknown>;
2490
+ value: z.ZodObject<{
2491
+ metafields: z.ZodArray<z.ZodObject<{
2492
+ metafield_id: z.ZodString;
2493
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2494
+ }, z.core.$strip>>;
2495
+ }, z.core.$strip>;
2496
+ }, z.core.$strip>, z.ZodTransform<{
2497
+ metafields: {
2498
+ metafield_id: string;
2499
+ additional_context?: string | null | undefined;
2500
+ }[];
2501
+ }, {
2502
+ id: string;
2503
+ accountId: string;
2504
+ updatedAt: Date;
2505
+ value: {
2506
+ metafields: {
2507
+ metafield_id: string;
2508
+ additional_context?: string | null | undefined;
2509
+ }[];
2510
+ };
2511
+ isEnabled?: boolean | undefined;
2512
+ }>>;
2513
+ content_optimization_collection_meta_ids: z.ZodPipe<z.ZodObject<{
2514
+ id: z.ZodCatch<z.ZodEnum<{
2515
+ [x: string]: string;
2516
+ }>>;
2517
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
2518
+ accountId: z.ZodString;
2519
+ updatedAt: z.ZodCoercedDate<unknown>;
2520
+ value: z.ZodObject<{
2521
+ metafields: z.ZodArray<z.ZodObject<{
2522
+ metafield_id: z.ZodString;
2523
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2524
+ }, z.core.$strip>>;
2525
+ }, z.core.$strip>;
2526
+ }, z.core.$strip>, z.ZodTransform<{
2527
+ metafields: {
2528
+ metafield_id: string;
2529
+ additional_context?: string | null | undefined;
2530
+ }[];
2531
+ }, {
2532
+ id: string;
2533
+ accountId: string;
2534
+ updatedAt: Date;
2535
+ value: {
2536
+ metafields: {
2537
+ metafield_id: string;
2538
+ additional_context?: string | null | undefined;
2539
+ }[];
2540
+ };
2541
+ isEnabled?: boolean | undefined;
2398
2542
  }>>;
2399
2543
  "product-filter-views": z.ZodPipe<z.ZodObject<{
2400
2544
  id: z.ZodCatch<z.ZodEnum<{
@@ -2402,7 +2546,7 @@ export declare const SettingsSchemas: {
2402
2546
  }>>;
2403
2547
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2404
2548
  accountId: z.ZodString;
2405
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2549
+ updatedAt: z.ZodCoercedDate<unknown>;
2406
2550
  value: z.ZodObject<{
2407
2551
  views: z.ZodArray<z.ZodObject<{
2408
2552
  name: z.ZodString;
@@ -2417,6 +2561,7 @@ export declare const SettingsSchemas: {
2417
2561
  }, {
2418
2562
  id: string;
2419
2563
  accountId: string;
2564
+ updatedAt: Date;
2420
2565
  value: {
2421
2566
  views: {
2422
2567
  name: string;
@@ -2424,7 +2569,6 @@ export declare const SettingsSchemas: {
2424
2569
  }[];
2425
2570
  };
2426
2571
  isEnabled?: boolean | undefined;
2427
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2428
2572
  }>>;
2429
2573
  };
2430
2574
  //# sourceMappingURL=accountSettings.d.ts.map