@omni-graph/omni-model 0.7.13 → 0.7.14-22-g165319e

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 (42) 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/functions/filtering/textHandler.d.ts +1 -1
  6. package/dist/zod/account-settings/accountSettings.d.ts +272 -128
  7. package/dist/zod/account-settings/accountSettings.d.ts.map +1 -1
  8. package/dist/zod/account-settings/accountSettings.js +16 -1
  9. package/dist/zod/account-settings/accountSettings.js.map +1 -1
  10. package/dist/zod/account-settings/base.d.ts +3 -2
  11. package/dist/zod/account-settings/base.d.ts.map +1 -1
  12. package/dist/zod/account-settings/base.js +3 -5
  13. package/dist/zod/account-settings/base.js.map +1 -1
  14. package/dist/zod/recommendations/base.d.ts +43 -18
  15. package/dist/zod/recommendations/base.d.ts.map +1 -1
  16. package/dist/zod/recommendations/base.js +36 -14
  17. package/dist/zod/recommendations/base.js.map +1 -1
  18. package/dist/zod/recommendations/content-optimization/base.d.ts +53 -49
  19. package/dist/zod/recommendations/content-optimization/base.d.ts.map +1 -1
  20. package/dist/zod/recommendations/content-optimization/base.js +2 -2
  21. package/dist/zod/recommendations/content-optimization/base.js.map +1 -1
  22. package/dist/zod/recommendations/content-optimization/index.d.ts +2 -0
  23. package/dist/zod/recommendations/content-optimization/index.d.ts.map +1 -1
  24. package/dist/zod/recommendations/content-optimization/index.js +2 -0
  25. package/dist/zod/recommendations/content-optimization/index.js.map +1 -1
  26. package/dist/zod/recommendations/content-optimization/metaAttributes.d.ts +10289 -0
  27. package/dist/zod/recommendations/content-optimization/metaAttributes.d.ts.map +1 -0
  28. package/dist/zod/recommendations/content-optimization/metaAttributes.js +135 -0
  29. package/dist/zod/recommendations/content-optimization/metaAttributes.js.map +1 -0
  30. package/dist/zod/recommendations/content-optimization/productRecommendation.d.ts +360 -0
  31. package/dist/zod/recommendations/content-optimization/productRecommendation.d.ts.map +1 -0
  32. package/dist/zod/recommendations/content-optimization/productRecommendation.js +128 -0
  33. package/dist/zod/recommendations/content-optimization/productRecommendation.js.map +1 -0
  34. package/dist/zod/recommendations/content-optimization/translation.d.ts +9 -242
  35. package/dist/zod/recommendations/content-optimization/translation.d.ts.map +1 -1
  36. package/dist/zod/recommendations/content-optimization/translation.js +15 -23
  37. package/dist/zod/recommendations/content-optimization/translation.js.map +1 -1
  38. package/dist/zod/recommendations/index.d.ts +4336 -0
  39. package/dist/zod/recommendations/index.d.ts.map +1 -1
  40. package/dist/zod/recommendations/index.js +10 -0
  41. package/dist/zod/recommendations/index.js.map +1 -1
  42. package/package.json +1 -1
@@ -15,6 +15,10 @@ export type ContentOptimizationReduceSimilarityResponse = z.infer<typeof Content
15
15
  export type CurrencySettingResponse = z.infer<typeof CurrencySettingResponseSchema>;
16
16
  export type DesignGuideResponse = z.infer<typeof DesignGuideResponseSchema>;
17
17
  export type EducationalPlatformResponse = z.infer<typeof EducationalPlatformResponseSchema>;
18
+ export type MetafieldSetting = z.infer<typeof MetafieldSettingSchema>;
19
+ export type MetafieldSettingsValue = z.infer<typeof MetafieldSettingsValueSchema>;
20
+ export type ProductMetafieldsSettingsResponse = z.infer<typeof ProductMetafieldsSettingsResponseSchema>;
21
+ export type CollectionMetafieldsSettingsResponse = z.infer<typeof CollectionMetafieldsSettingsResponseSchema>;
18
22
  export type ProductFilterResponse = z.infer<typeof ProductFilterViewsResponseSchema>;
19
23
  export type SettingsIdToResponseMap = {
20
24
  [AccountSettingsIdEnum.INVENTORY_OPTIMIZATION_ECONOMIC_REWARD]: InventoryOptimizationResponse;
@@ -31,7 +35,10 @@ export type SettingsIdToResponseMap = {
31
35
  [AccountSettingsIdEnum.ANALYTICS_CURRENCY_CODE]: CurrencySettingResponse;
32
36
  [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_WRITE_SEO_PLATFORM]: ContentOptimizationWriteSEOPlatformResponse;
33
37
  [AccountSettingsIdEnum.WIZARD_PLATFORM]: WizardPlatformResponse;
38
+ [AccountSettingsIdEnum.DESIGN_GUIDE_SECTION]: DesignGuideResponse;
34
39
  [AccountSettingsIdEnum.EDUCATIONAL_PLATFORM]: EducationalPlatformResponse;
40
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_METAFIELDS_PRODUCT]: ProductMetafieldsSettingsResponse;
41
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_METAFIELDS_COLLECTION]: CollectionMetafieldsSettingsResponse;
35
42
  [AccountSettingsIdEnum.PRODUCT_FILTER_VIEWS]: ProductFilterResponse;
36
43
  };
37
44
  export declare const MetaFieldUnitEnum: z.ZodOptional<z.ZodEnum<{
@@ -47,13 +54,14 @@ export declare const MetaFieldUnitMappingShema: z.ZodObject<{
47
54
  }>>;
48
55
  }, z.core.$strip>;
49
56
  export type MetaFieldUnitMapping = z.infer<typeof MetaFieldUnitMappingShema>;
50
- export declare const ObjectScopedMetaReferenceSchema: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
51
- UNKNOWN: "UNKNOWN";
57
+ export declare const ObjectScopedMetaReferenceSchema: z.ZodRecord<z.ZodEnum<{
52
58
  location: "location";
53
59
  product: "product";
54
60
  sku: "sku";
55
61
  pseudo_product: "pseudo_product";
56
- }>> & z.core.$partial, z.ZodObject<{
62
+ collection: "collection";
63
+ pseudo_collection: "pseudo_collection";
64
+ }> & z.core.$partial, z.ZodObject<{
57
65
  meta_id: z.ZodString;
58
66
  unit: z.ZodOptional<z.ZodEnum<{
59
67
  currency: "currency";
@@ -72,26 +80,28 @@ export declare const InventoryOptimizationValueSchema: z.ZodObject<{
72
80
  maximum_periods: z.ZodNumber;
73
81
  discount_rate: z.ZodNumber;
74
82
  min_return_on_investment: z.ZodNumber;
75
- bundle_size: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
76
- UNKNOWN: "UNKNOWN";
83
+ bundle_size: z.ZodRecord<z.ZodEnum<{
77
84
  location: "location";
78
85
  product: "product";
79
86
  sku: "sku";
80
87
  pseudo_product: "pseudo_product";
81
- }>> & z.core.$partial, z.ZodObject<{
88
+ collection: "collection";
89
+ pseudo_collection: "pseudo_collection";
90
+ }> & z.core.$partial, z.ZodObject<{
82
91
  meta_id: z.ZodString;
83
92
  unit: z.ZodOptional<z.ZodEnum<{
84
93
  currency: "currency";
85
94
  units: "units";
86
95
  }>>;
87
96
  }, z.core.$strip>>;
88
- minimum_order_quantity: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
89
- UNKNOWN: "UNKNOWN";
97
+ minimum_order_quantity: z.ZodRecord<z.ZodEnum<{
90
98
  location: "location";
91
99
  product: "product";
92
100
  sku: "sku";
93
101
  pseudo_product: "pseudo_product";
94
- }>> & z.core.$partial, z.ZodObject<{
102
+ collection: "collection";
103
+ pseudo_collection: "pseudo_collection";
104
+ }> & z.core.$partial, z.ZodObject<{
95
105
  meta_id: z.ZodString;
96
106
  unit: z.ZodOptional<z.ZodEnum<{
97
107
  currency: "currency";
@@ -106,7 +116,7 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
106
116
  }>>;
107
117
  isEnabled: z.ZodOptional<z.ZodBoolean>;
108
118
  accountId: z.ZodString;
109
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
119
+ updatedAt: z.ZodCoercedDate<unknown>;
110
120
  value: z.ZodObject<{
111
121
  lead_time_days: z.ZodNumber;
112
122
  stockout_cost_ratio: z.ZodNumber;
@@ -118,26 +128,28 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
118
128
  maximum_periods: z.ZodNumber;
119
129
  discount_rate: z.ZodNumber;
120
130
  min_return_on_investment: z.ZodNumber;
121
- bundle_size: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
122
- UNKNOWN: "UNKNOWN";
131
+ bundle_size: z.ZodRecord<z.ZodEnum<{
123
132
  location: "location";
124
133
  product: "product";
125
134
  sku: "sku";
126
135
  pseudo_product: "pseudo_product";
127
- }>> & z.core.$partial, z.ZodObject<{
136
+ collection: "collection";
137
+ pseudo_collection: "pseudo_collection";
138
+ }> & z.core.$partial, z.ZodObject<{
128
139
  meta_id: z.ZodString;
129
140
  unit: z.ZodOptional<z.ZodEnum<{
130
141
  currency: "currency";
131
142
  units: "units";
132
143
  }>>;
133
144
  }, z.core.$strip>>;
134
- minimum_order_quantity: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
135
- UNKNOWN: "UNKNOWN";
145
+ minimum_order_quantity: z.ZodRecord<z.ZodEnum<{
136
146
  location: "location";
137
147
  product: "product";
138
148
  sku: "sku";
139
149
  pseudo_product: "pseudo_product";
140
- }>> & z.core.$partial, z.ZodObject<{
150
+ collection: "collection";
151
+ pseudo_collection: "pseudo_collection";
152
+ }> & z.core.$partial, z.ZodObject<{
141
153
  meta_id: z.ZodString;
142
154
  unit: z.ZodOptional<z.ZodEnum<{
143
155
  currency: "currency";
@@ -156,17 +168,18 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
156
168
  maximum_periods: number;
157
169
  discount_rate: number;
158
170
  min_return_on_investment: number;
159
- bundle_size: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
171
+ bundle_size: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
160
172
  meta_id: string;
161
173
  unit?: "currency" | "units" | undefined;
162
174
  }>>;
163
- minimum_order_quantity: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
175
+ minimum_order_quantity: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
164
176
  meta_id: string;
165
177
  unit?: "currency" | "units" | undefined;
166
178
  }>>;
167
179
  }, {
168
180
  id: string;
169
181
  accountId: string;
182
+ updatedAt: Date;
170
183
  value: {
171
184
  lead_time_days: number;
172
185
  stockout_cost_ratio: number;
@@ -178,17 +191,16 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
178
191
  maximum_periods: number;
179
192
  discount_rate: number;
180
193
  min_return_on_investment: number;
181
- bundle_size: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
194
+ bundle_size: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
182
195
  meta_id: string;
183
196
  unit?: "currency" | "units" | undefined;
184
197
  }>>;
185
- minimum_order_quantity: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
198
+ minimum_order_quantity: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
186
199
  meta_id: string;
187
200
  unit?: "currency" | "units" | undefined;
188
201
  }>>;
189
202
  };
190
203
  isEnabled?: boolean | undefined;
191
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
192
204
  }>>;
193
205
  export declare const DesignGuideSectionTypeEnum: z.ZodEnum<{
194
206
  boolean: "boolean";
@@ -268,7 +280,7 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
268
280
  }>>;
269
281
  isEnabled: z.ZodOptional<z.ZodBoolean>;
270
282
  accountId: z.ZodString;
271
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
283
+ updatedAt: z.ZodCoercedDate<unknown>;
272
284
  value: z.ZodObject<{
273
285
  tone_of_voice: z.ZodNullable<z.ZodString>;
274
286
  use_online_summary: z.ZodBoolean;
@@ -383,6 +395,7 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
383
395
  }, {
384
396
  id: string;
385
397
  accountId: string;
398
+ updatedAt: Date;
386
399
  value: {
387
400
  tone_of_voice: string | null;
388
401
  use_online_summary: boolean;
@@ -436,7 +449,6 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
436
449
  prioritization_strategy?: string | undefined;
437
450
  };
438
451
  isEnabled?: boolean | undefined;
439
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
440
452
  }>>;
441
453
  export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
442
454
  id: z.ZodCatch<z.ZodEnum<{
@@ -444,7 +456,7 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
444
456
  }>>;
445
457
  isEnabled: z.ZodOptional<z.ZodBoolean>;
446
458
  accountId: z.ZodString;
447
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
459
+ updatedAt: z.ZodCoercedDate<unknown>;
448
460
  value: z.ZodObject<{
449
461
  sections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
450
462
  name: z.ZodString;
@@ -547,6 +559,7 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
547
559
  }, {
548
560
  id: string;
549
561
  accountId: string;
562
+ updatedAt: Date;
550
563
  value: {
551
564
  sections: ({
552
565
  name: string;
@@ -594,7 +607,6 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
594
607
  })[];
595
608
  };
596
609
  isEnabled?: boolean | undefined;
597
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
598
610
  }>>;
599
611
  export declare const ContentOptimizationRefinementResponseSchema: z.ZodPipe<z.ZodObject<{
600
612
  id: z.ZodCatch<z.ZodEnum<{
@@ -602,7 +614,7 @@ export declare const ContentOptimizationRefinementResponseSchema: z.ZodPipe<z.Zo
602
614
  }>>;
603
615
  isEnabled: z.ZodOptional<z.ZodBoolean>;
604
616
  accountId: z.ZodString;
605
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
617
+ updatedAt: z.ZodCoercedDate<unknown>;
606
618
  value: z.ZodObject<{
607
619
  use_feedback_based_instructions: z.ZodBoolean;
608
620
  force_shop_language: z.ZodBoolean;
@@ -613,16 +625,86 @@ export declare const ContentOptimizationRefinementResponseSchema: z.ZodPipe<z.Zo
613
625
  }, {
614
626
  id: string;
615
627
  accountId: string;
628
+ updatedAt: Date;
616
629
  value: {
617
630
  use_feedback_based_instructions: boolean;
618
631
  force_shop_language: boolean;
619
632
  };
620
633
  isEnabled?: boolean | undefined;
621
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
634
+ }>>;
635
+ export declare const MetafieldSettingSchema: z.ZodObject<{
636
+ metafield_id: z.ZodString;
637
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
638
+ }, z.core.$strip>;
639
+ export declare const MetafieldSettingsValueSchema: z.ZodObject<{
640
+ metafields: z.ZodArray<z.ZodObject<{
641
+ metafield_id: z.ZodString;
642
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
643
+ }, z.core.$strip>>;
644
+ }, z.core.$strip>;
645
+ export declare const ProductMetafieldsSettingsResponseSchema: z.ZodPipe<z.ZodObject<{
646
+ id: z.ZodCatch<z.ZodEnum<{
647
+ [x: string]: string;
648
+ }>>;
649
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
650
+ accountId: z.ZodString;
651
+ updatedAt: z.ZodCoercedDate<unknown>;
652
+ value: z.ZodObject<{
653
+ metafields: z.ZodArray<z.ZodObject<{
654
+ metafield_id: z.ZodString;
655
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
656
+ }, z.core.$strip>>;
657
+ }, z.core.$strip>;
658
+ }, z.core.$strip>, z.ZodTransform<{
659
+ metafields: {
660
+ metafield_id: string;
661
+ additional_context?: string | null | undefined;
662
+ }[];
663
+ }, {
664
+ id: string;
665
+ accountId: string;
666
+ updatedAt: Date;
667
+ value: {
668
+ metafields: {
669
+ metafield_id: string;
670
+ additional_context?: string | null | undefined;
671
+ }[];
672
+ };
673
+ isEnabled?: boolean | undefined;
674
+ }>>;
675
+ export declare const CollectionMetafieldsSettingsResponseSchema: z.ZodPipe<z.ZodObject<{
676
+ id: z.ZodCatch<z.ZodEnum<{
677
+ [x: string]: string;
678
+ }>>;
679
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
680
+ accountId: z.ZodString;
681
+ updatedAt: z.ZodCoercedDate<unknown>;
682
+ value: z.ZodObject<{
683
+ metafields: z.ZodArray<z.ZodObject<{
684
+ metafield_id: z.ZodString;
685
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
686
+ }, z.core.$strip>>;
687
+ }, z.core.$strip>;
688
+ }, z.core.$strip>, z.ZodTransform<{
689
+ metafields: {
690
+ metafield_id: string;
691
+ additional_context?: string | null | undefined;
692
+ }[];
693
+ }, {
694
+ id: string;
695
+ accountId: string;
696
+ updatedAt: Date;
697
+ value: {
698
+ metafields: {
699
+ metafield_id: string;
700
+ additional_context?: string | null | undefined;
701
+ }[];
702
+ };
703
+ isEnabled?: boolean | undefined;
622
704
  }>>;
623
705
  export declare const resourceKeyTranslation: z.ZodEnum<{
624
- product_name: "product_name";
625
706
  product_description_html: "product_description_html";
707
+ product_name: "product_name";
626
708
  seo_title: "seo_title";
627
709
  seo_description: "seo_description";
628
710
  }>;
@@ -633,11 +715,11 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
633
715
  }>>;
634
716
  isEnabled: z.ZodOptional<z.ZodBoolean>;
635
717
  accountId: z.ZodString;
636
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
718
+ updatedAt: z.ZodCoercedDate<unknown>;
637
719
  value: z.ZodObject<{
638
720
  use_feedback_based_instructions: z.ZodBoolean;
639
721
  only_generate_missing: z.ZodBoolean;
640
- translation_languages: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
722
+ 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<{
641
723
  af: "af";
642
724
  am: "am";
643
725
  ar: "ar";
@@ -741,13 +823,13 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
741
823
  yo: "yo";
742
824
  zh: "zh";
743
825
  zu: "zu";
744
- }>>>>;
826
+ }>>>>>;
745
827
  translation_fields: z.ZodObject<{
746
828
  content_optimization_translate_product_description_html: z.ZodObject<{
747
829
  product_description_html: z.ZodObject<{
748
830
  name: z.ZodEnum<{
749
- product_name: "product_name";
750
831
  product_description_html: "product_description_html";
832
+ product_name: "product_name";
751
833
  seo_title: "seo_title";
752
834
  seo_description: "seo_description";
753
835
  }>;
@@ -755,8 +837,8 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
755
837
  }, z.core.$strip>;
756
838
  product_name: z.ZodObject<{
757
839
  name: z.ZodEnum<{
758
- product_name: "product_name";
759
840
  product_description_html: "product_description_html";
841
+ product_name: "product_name";
760
842
  seo_title: "seo_title";
761
843
  seo_description: "seo_description";
762
844
  }>;
@@ -766,8 +848,8 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
766
848
  content_optimization_translate_seo: z.ZodOptional<z.ZodObject<{
767
849
  seo_title: z.ZodObject<{
768
850
  name: z.ZodEnum<{
769
- product_name: "product_name";
770
851
  product_description_html: "product_description_html";
852
+ product_name: "product_name";
771
853
  seo_title: "seo_title";
772
854
  seo_description: "seo_description";
773
855
  }>;
@@ -775,8 +857,8 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
775
857
  }, z.core.$strip>;
776
858
  seo_description: z.ZodObject<{
777
859
  name: z.ZodEnum<{
778
- product_name: "product_name";
779
860
  product_description_html: "product_description_html";
861
+ product_name: "product_name";
780
862
  seo_title: "seo_title";
781
863
  seo_description: "seo_description";
782
864
  }>;
@@ -791,21 +873,21 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
791
873
  translation_fields: {
792
874
  content_optimization_translate_product_description_html: {
793
875
  product_description_html: {
794
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
876
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
795
877
  enabled: boolean;
796
878
  };
797
879
  product_name: {
798
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
880
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
799
881
  enabled: boolean;
800
882
  };
801
883
  };
802
884
  content_optimization_translate_seo?: {
803
885
  seo_title: {
804
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
886
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
805
887
  enabled: boolean;
806
888
  };
807
889
  seo_description: {
808
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
890
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
809
891
  enabled: boolean;
810
892
  };
811
893
  } | undefined;
@@ -814,27 +896,28 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
814
896
  }, {
815
897
  id: string;
816
898
  accountId: string;
899
+ updatedAt: Date;
817
900
  value: {
818
901
  use_feedback_based_instructions: boolean;
819
902
  only_generate_missing: boolean;
820
903
  translation_fields: {
821
904
  content_optimization_translate_product_description_html: {
822
905
  product_description_html: {
823
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
906
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
824
907
  enabled: boolean;
825
908
  };
826
909
  product_name: {
827
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
910
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
828
911
  enabled: boolean;
829
912
  };
830
913
  };
831
914
  content_optimization_translate_seo?: {
832
915
  seo_title: {
833
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
916
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
834
917
  enabled: boolean;
835
918
  };
836
919
  seo_description: {
837
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
920
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
838
921
  enabled: boolean;
839
922
  };
840
923
  } | undefined;
@@ -842,7 +925,6 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
842
925
  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;
843
926
  };
844
927
  isEnabled?: boolean | undefined;
845
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
846
928
  }>>;
847
929
  export declare const ContentOptimizationWriteResponseSchema: z.ZodPipe<z.ZodObject<{
848
930
  id: z.ZodCatch<z.ZodEnum<{
@@ -850,7 +932,7 @@ export declare const ContentOptimizationWriteResponseSchema: z.ZodPipe<z.ZodObje
850
932
  }>>;
851
933
  isEnabled: z.ZodOptional<z.ZodBoolean>;
852
934
  accountId: z.ZodString;
853
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
935
+ updatedAt: z.ZodCoercedDate<unknown>;
854
936
  value: z.ZodObject<{
855
937
  use_feedback_based_instructions: z.ZodBoolean;
856
938
  only_generate_missing: z.ZodBoolean;
@@ -861,12 +943,12 @@ export declare const ContentOptimizationWriteResponseSchema: z.ZodPipe<z.ZodObje
861
943
  }, {
862
944
  id: string;
863
945
  accountId: string;
946
+ updatedAt: Date;
864
947
  value: {
865
948
  use_feedback_based_instructions: boolean;
866
949
  only_generate_missing: boolean;
867
950
  };
868
951
  isEnabled?: boolean | undefined;
869
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
870
952
  }>>;
871
953
  export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject<{
872
954
  id: z.ZodCatch<z.ZodEnum<{
@@ -874,7 +956,7 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject
874
956
  }>>;
875
957
  isEnabled: z.ZodOptional<z.ZodBoolean>;
876
958
  accountId: z.ZodString;
877
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
959
+ updatedAt: z.ZodCoercedDate<unknown>;
878
960
  value: z.ZodObject<{
879
961
  use_feedback_based_instructions: z.ZodBoolean;
880
962
  character_limit_title: z.ZodNumber;
@@ -889,6 +971,7 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject
889
971
  }, {
890
972
  id: string;
891
973
  accountId: string;
974
+ updatedAt: Date;
892
975
  value: {
893
976
  use_feedback_based_instructions: boolean;
894
977
  character_limit_title: number;
@@ -896,7 +979,6 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject
896
979
  only_generate_missing: boolean;
897
980
  };
898
981
  isEnabled?: boolean | undefined;
899
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
900
982
  }>>;
901
983
  export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodPipe<z.ZodObject<{
902
984
  id: z.ZodCatch<z.ZodEnum<{
@@ -904,7 +986,7 @@ export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodPip
904
986
  }>>;
905
987
  isEnabled: z.ZodOptional<z.ZodBoolean>;
906
988
  accountId: z.ZodString;
907
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
989
+ updatedAt: z.ZodCoercedDate<unknown>;
908
990
  value: z.ZodObject<{
909
991
  use_feedback_based_instructions: z.ZodBoolean;
910
992
  similarity_threshold: z.ZodNumber;
@@ -915,12 +997,12 @@ export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodPip
915
997
  }, {
916
998
  id: string;
917
999
  accountId: string;
1000
+ updatedAt: Date;
918
1001
  value: {
919
1002
  use_feedback_based_instructions: boolean;
920
1003
  similarity_threshold: number;
921
1004
  };
922
1005
  isEnabled?: boolean | undefined;
923
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
924
1006
  }>>;
925
1007
  export declare const ContentOptimizationWriteSEOPlatformValueSchema: z.ZodObject<{
926
1008
  isEnabled: z.ZodBoolean;
@@ -939,7 +1021,7 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodPip
939
1021
  }>>;
940
1022
  isEnabled: z.ZodOptional<z.ZodBoolean>;
941
1023
  accountId: z.ZodString;
942
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1024
+ updatedAt: z.ZodCoercedDate<unknown>;
943
1025
  value: z.ZodObject<{
944
1026
  isEnabled: z.ZodBoolean;
945
1027
  fields: z.ZodObject<{
@@ -964,6 +1046,7 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodPip
964
1046
  }, {
965
1047
  id: string;
966
1048
  accountId: string;
1049
+ updatedAt: Date;
967
1050
  value: {
968
1051
  isEnabled: boolean;
969
1052
  fields: {
@@ -976,7 +1059,6 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodPip
976
1059
  };
977
1060
  };
978
1061
  isEnabled?: boolean | undefined;
979
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
980
1062
  }>>;
981
1063
  export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
982
1064
  id: z.ZodCatch<z.ZodEnum<{
@@ -984,7 +1066,7 @@ export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
984
1066
  }>>;
985
1067
  isEnabled: z.ZodOptional<z.ZodBoolean>;
986
1068
  accountId: z.ZodString;
987
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1069
+ updatedAt: z.ZodCoercedDate<unknown>;
988
1070
  value: z.ZodObject<{
989
1071
  isInterrestedInRefinementEnabled: z.ZodOptional<z.ZodBoolean>;
990
1072
  isInterestedInTranslation: z.ZodOptional<z.ZodBoolean>;
@@ -1003,6 +1085,7 @@ export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1003
1085
  }, {
1004
1086
  id: string;
1005
1087
  accountId: string;
1088
+ updatedAt: Date;
1006
1089
  value: {
1007
1090
  isInterrestedInRefinementEnabled?: boolean | undefined;
1008
1091
  isInterestedInTranslation?: boolean | undefined;
@@ -1012,7 +1095,6 @@ export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1012
1095
  hasCompletedWizard?: boolean | undefined;
1013
1096
  };
1014
1097
  isEnabled?: boolean | undefined;
1015
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1016
1098
  }>>;
1017
1099
  export declare const EducationalPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1018
1100
  id: z.ZodCatch<z.ZodEnum<{
@@ -1020,7 +1102,7 @@ export declare const EducationalPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1020
1102
  }>>;
1021
1103
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1022
1104
  accountId: z.ZodString;
1023
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1105
+ updatedAt: z.ZodCoercedDate<unknown>;
1024
1106
  value: z.ZodObject<{
1025
1107
  hasCompletedDesignGuide: z.ZodOptional<z.ZodBoolean>;
1026
1108
  hasVisitedEducationalPlatform: z.ZodOptional<z.ZodBoolean>;
@@ -1031,12 +1113,12 @@ export declare const EducationalPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
1031
1113
  }, {
1032
1114
  id: string;
1033
1115
  accountId: string;
1116
+ updatedAt: Date;
1034
1117
  value: {
1035
1118
  hasCompletedDesignGuide?: boolean | undefined;
1036
1119
  hasVisitedEducationalPlatform?: boolean | undefined;
1037
1120
  };
1038
1121
  isEnabled?: boolean | undefined;
1039
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1040
1122
  }>>;
1041
1123
  export declare const PrimaryLocaleResponseSchema: z.ZodPipe<z.ZodObject<{
1042
1124
  id: z.ZodCatch<z.ZodEnum<{
@@ -1044,8 +1126,8 @@ export declare const PrimaryLocaleResponseSchema: z.ZodPipe<z.ZodObject<{
1044
1126
  }>>;
1045
1127
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1046
1128
  accountId: z.ZodString;
1047
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1048
- value: z.ZodOptional<z.ZodEnum<{
1129
+ updatedAt: z.ZodCoercedDate<unknown>;
1130
+ value: z.ZodOptional<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
1049
1131
  af: "af";
1050
1132
  am: "am";
1051
1133
  ar: "ar";
@@ -1149,12 +1231,12 @@ export declare const PrimaryLocaleResponseSchema: z.ZodPipe<z.ZodObject<{
1149
1231
  yo: "yo";
1150
1232
  zh: "zh";
1151
1233
  zu: "zu";
1152
- }>>;
1234
+ }>>>;
1153
1235
  }, 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, {
1154
1236
  id: string;
1155
1237
  accountId: string;
1238
+ updatedAt: Date;
1156
1239
  isEnabled?: boolean | undefined;
1157
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1158
1240
  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;
1159
1241
  }>>;
1160
1242
  export declare const DefaultResponseSchema: z.ZodPipe<z.ZodOptional<z.ZodObject<{
@@ -1163,14 +1245,14 @@ export declare const DefaultResponseSchema: z.ZodPipe<z.ZodOptional<z.ZodObject<
1163
1245
  }>>;
1164
1246
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1165
1247
  accountId: z.ZodString;
1166
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1248
+ updatedAt: z.ZodCoercedDate<unknown>;
1167
1249
  value: z.ZodString;
1168
1250
  }, z.core.$strip>>, z.ZodTransform<string | undefined, {
1169
1251
  id: string;
1170
1252
  accountId: string;
1253
+ updatedAt: Date;
1171
1254
  value: string;
1172
1255
  isEnabled?: boolean | undefined;
1173
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1174
1256
  } | undefined>>;
1175
1257
  export declare const CurrencySettingResponseSchema: z.ZodPipe<z.ZodObject<{
1176
1258
  id: z.ZodCatch<z.ZodEnum<{
@@ -1178,7 +1260,7 @@ export declare const CurrencySettingResponseSchema: z.ZodPipe<z.ZodObject<{
1178
1260
  }>>;
1179
1261
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1180
1262
  accountId: z.ZodString;
1181
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1263
+ updatedAt: z.ZodCoercedDate<unknown>;
1182
1264
  value: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
1183
1265
  AED: "AED";
1184
1266
  ARS: "ARS";
@@ -1220,8 +1302,8 @@ export declare const CurrencySettingResponseSchema: z.ZodPipe<z.ZodObject<{
1220
1302
  }, 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", {
1221
1303
  id: string;
1222
1304
  accountId: string;
1305
+ updatedAt: Date;
1223
1306
  isEnabled?: boolean | undefined;
1224
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1225
1307
  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;
1226
1308
  }>>;
1227
1309
  export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
@@ -1230,7 +1312,7 @@ export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
1230
1312
  }>>;
1231
1313
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1232
1314
  accountId: z.ZodString;
1233
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1315
+ updatedAt: z.ZodCoercedDate<unknown>;
1234
1316
  value: z.ZodObject<{
1235
1317
  views: z.ZodArray<z.ZodObject<{
1236
1318
  name: z.ZodString;
@@ -1245,6 +1327,7 @@ export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
1245
1327
  }, {
1246
1328
  id: string;
1247
1329
  accountId: string;
1330
+ updatedAt: Date;
1248
1331
  value: {
1249
1332
  views: {
1250
1333
  name: string;
@@ -1252,7 +1335,6 @@ export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
1252
1335
  }[];
1253
1336
  };
1254
1337
  isEnabled?: boolean | undefined;
1255
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1256
1338
  }>>;
1257
1339
  export declare const SettingsSchemas: {
1258
1340
  content_optimization: z.ZodPipe<z.ZodObject<{
@@ -1261,7 +1343,7 @@ export declare const SettingsSchemas: {
1261
1343
  }>>;
1262
1344
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1263
1345
  accountId: z.ZodString;
1264
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1346
+ updatedAt: z.ZodCoercedDate<unknown>;
1265
1347
  value: z.ZodObject<{
1266
1348
  tone_of_voice: z.ZodNullable<z.ZodString>;
1267
1349
  use_online_summary: z.ZodBoolean;
@@ -1376,6 +1458,7 @@ export declare const SettingsSchemas: {
1376
1458
  }, {
1377
1459
  id: string;
1378
1460
  accountId: string;
1461
+ updatedAt: Date;
1379
1462
  value: {
1380
1463
  tone_of_voice: string | null;
1381
1464
  use_online_summary: boolean;
@@ -1429,7 +1512,6 @@ export declare const SettingsSchemas: {
1429
1512
  prioritization_strategy?: string | undefined;
1430
1513
  };
1431
1514
  isEnabled?: boolean | undefined;
1432
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1433
1515
  }>>;
1434
1516
  content_optimization_refine: z.ZodPipe<z.ZodObject<{
1435
1517
  id: z.ZodCatch<z.ZodEnum<{
@@ -1437,7 +1519,7 @@ export declare const SettingsSchemas: {
1437
1519
  }>>;
1438
1520
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1439
1521
  accountId: z.ZodString;
1440
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1522
+ updatedAt: z.ZodCoercedDate<unknown>;
1441
1523
  value: z.ZodObject<{
1442
1524
  use_feedback_based_instructions: z.ZodBoolean;
1443
1525
  force_shop_language: z.ZodBoolean;
@@ -1448,12 +1530,12 @@ export declare const SettingsSchemas: {
1448
1530
  }, {
1449
1531
  id: string;
1450
1532
  accountId: string;
1533
+ updatedAt: Date;
1451
1534
  value: {
1452
1535
  use_feedback_based_instructions: boolean;
1453
1536
  force_shop_language: boolean;
1454
1537
  };
1455
1538
  isEnabled?: boolean | undefined;
1456
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1457
1539
  }>>;
1458
1540
  content_optimization_translate: z.ZodPipe<z.ZodObject<{
1459
1541
  id: z.ZodCatch<z.ZodEnum<{
@@ -1461,11 +1543,11 @@ export declare const SettingsSchemas: {
1461
1543
  }>>;
1462
1544
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1463
1545
  accountId: z.ZodString;
1464
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1546
+ updatedAt: z.ZodCoercedDate<unknown>;
1465
1547
  value: z.ZodObject<{
1466
1548
  use_feedback_based_instructions: z.ZodBoolean;
1467
1549
  only_generate_missing: z.ZodBoolean;
1468
- translation_languages: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
1550
+ 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<{
1469
1551
  af: "af";
1470
1552
  am: "am";
1471
1553
  ar: "ar";
@@ -1569,13 +1651,13 @@ export declare const SettingsSchemas: {
1569
1651
  yo: "yo";
1570
1652
  zh: "zh";
1571
1653
  zu: "zu";
1572
- }>>>>;
1654
+ }>>>>>;
1573
1655
  translation_fields: z.ZodObject<{
1574
1656
  content_optimization_translate_product_description_html: z.ZodObject<{
1575
1657
  product_description_html: z.ZodObject<{
1576
1658
  name: z.ZodEnum<{
1577
- product_name: "product_name";
1578
1659
  product_description_html: "product_description_html";
1660
+ product_name: "product_name";
1579
1661
  seo_title: "seo_title";
1580
1662
  seo_description: "seo_description";
1581
1663
  }>;
@@ -1583,8 +1665,8 @@ export declare const SettingsSchemas: {
1583
1665
  }, z.core.$strip>;
1584
1666
  product_name: z.ZodObject<{
1585
1667
  name: z.ZodEnum<{
1586
- product_name: "product_name";
1587
1668
  product_description_html: "product_description_html";
1669
+ product_name: "product_name";
1588
1670
  seo_title: "seo_title";
1589
1671
  seo_description: "seo_description";
1590
1672
  }>;
@@ -1594,8 +1676,8 @@ export declare const SettingsSchemas: {
1594
1676
  content_optimization_translate_seo: z.ZodOptional<z.ZodObject<{
1595
1677
  seo_title: z.ZodObject<{
1596
1678
  name: z.ZodEnum<{
1597
- product_name: "product_name";
1598
1679
  product_description_html: "product_description_html";
1680
+ product_name: "product_name";
1599
1681
  seo_title: "seo_title";
1600
1682
  seo_description: "seo_description";
1601
1683
  }>;
@@ -1603,8 +1685,8 @@ export declare const SettingsSchemas: {
1603
1685
  }, z.core.$strip>;
1604
1686
  seo_description: z.ZodObject<{
1605
1687
  name: z.ZodEnum<{
1606
- product_name: "product_name";
1607
1688
  product_description_html: "product_description_html";
1689
+ product_name: "product_name";
1608
1690
  seo_title: "seo_title";
1609
1691
  seo_description: "seo_description";
1610
1692
  }>;
@@ -1619,21 +1701,21 @@ export declare const SettingsSchemas: {
1619
1701
  translation_fields: {
1620
1702
  content_optimization_translate_product_description_html: {
1621
1703
  product_description_html: {
1622
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
1704
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1623
1705
  enabled: boolean;
1624
1706
  };
1625
1707
  product_name: {
1626
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
1708
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1627
1709
  enabled: boolean;
1628
1710
  };
1629
1711
  };
1630
1712
  content_optimization_translate_seo?: {
1631
1713
  seo_title: {
1632
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
1714
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1633
1715
  enabled: boolean;
1634
1716
  };
1635
1717
  seo_description: {
1636
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
1718
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1637
1719
  enabled: boolean;
1638
1720
  };
1639
1721
  } | undefined;
@@ -1642,27 +1724,28 @@ export declare const SettingsSchemas: {
1642
1724
  }, {
1643
1725
  id: string;
1644
1726
  accountId: string;
1727
+ updatedAt: Date;
1645
1728
  value: {
1646
1729
  use_feedback_based_instructions: boolean;
1647
1730
  only_generate_missing: boolean;
1648
1731
  translation_fields: {
1649
1732
  content_optimization_translate_product_description_html: {
1650
1733
  product_description_html: {
1651
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
1734
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1652
1735
  enabled: boolean;
1653
1736
  };
1654
1737
  product_name: {
1655
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
1738
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1656
1739
  enabled: boolean;
1657
1740
  };
1658
1741
  };
1659
1742
  content_optimization_translate_seo?: {
1660
1743
  seo_title: {
1661
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
1744
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1662
1745
  enabled: boolean;
1663
1746
  };
1664
1747
  seo_description: {
1665
- name: "product_name" | "product_description_html" | "seo_title" | "seo_description";
1748
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1666
1749
  enabled: boolean;
1667
1750
  };
1668
1751
  } | undefined;
@@ -1670,7 +1753,6 @@ export declare const SettingsSchemas: {
1670
1753
  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;
1671
1754
  };
1672
1755
  isEnabled?: boolean | undefined;
1673
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1674
1756
  }>>;
1675
1757
  content_optimization_write: z.ZodPipe<z.ZodObject<{
1676
1758
  id: z.ZodCatch<z.ZodEnum<{
@@ -1678,7 +1760,7 @@ export declare const SettingsSchemas: {
1678
1760
  }>>;
1679
1761
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1680
1762
  accountId: z.ZodString;
1681
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1763
+ updatedAt: z.ZodCoercedDate<unknown>;
1682
1764
  value: z.ZodObject<{
1683
1765
  use_feedback_based_instructions: z.ZodBoolean;
1684
1766
  only_generate_missing: z.ZodBoolean;
@@ -1689,12 +1771,12 @@ export declare const SettingsSchemas: {
1689
1771
  }, {
1690
1772
  id: string;
1691
1773
  accountId: string;
1774
+ updatedAt: Date;
1692
1775
  value: {
1693
1776
  use_feedback_based_instructions: boolean;
1694
1777
  only_generate_missing: boolean;
1695
1778
  };
1696
1779
  isEnabled?: boolean | undefined;
1697
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1698
1780
  }>>;
1699
1781
  content_optimization_write_seo: z.ZodPipe<z.ZodObject<{
1700
1782
  id: z.ZodCatch<z.ZodEnum<{
@@ -1702,7 +1784,7 @@ export declare const SettingsSchemas: {
1702
1784
  }>>;
1703
1785
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1704
1786
  accountId: z.ZodString;
1705
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1787
+ updatedAt: z.ZodCoercedDate<unknown>;
1706
1788
  value: z.ZodObject<{
1707
1789
  use_feedback_based_instructions: z.ZodBoolean;
1708
1790
  character_limit_title: z.ZodNumber;
@@ -1717,6 +1799,7 @@ export declare const SettingsSchemas: {
1717
1799
  }, {
1718
1800
  id: string;
1719
1801
  accountId: string;
1802
+ updatedAt: Date;
1720
1803
  value: {
1721
1804
  use_feedback_based_instructions: boolean;
1722
1805
  character_limit_title: number;
@@ -1724,7 +1807,6 @@ export declare const SettingsSchemas: {
1724
1807
  only_generate_missing: boolean;
1725
1808
  };
1726
1809
  isEnabled?: boolean | undefined;
1727
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1728
1810
  }>>;
1729
1811
  content_optimization_reduce_similarity: z.ZodPipe<z.ZodObject<{
1730
1812
  id: z.ZodCatch<z.ZodEnum<{
@@ -1732,7 +1814,7 @@ export declare const SettingsSchemas: {
1732
1814
  }>>;
1733
1815
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1734
1816
  accountId: z.ZodString;
1735
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1817
+ updatedAt: z.ZodCoercedDate<unknown>;
1736
1818
  value: z.ZodObject<{
1737
1819
  use_feedback_based_instructions: z.ZodBoolean;
1738
1820
  similarity_threshold: z.ZodNumber;
@@ -1743,12 +1825,12 @@ export declare const SettingsSchemas: {
1743
1825
  }, {
1744
1826
  id: string;
1745
1827
  accountId: string;
1828
+ updatedAt: Date;
1746
1829
  value: {
1747
1830
  use_feedback_based_instructions: boolean;
1748
1831
  similarity_threshold: number;
1749
1832
  };
1750
1833
  isEnabled?: boolean | undefined;
1751
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1752
1834
  }>>;
1753
1835
  content_optimization_write_seo_platform: z.ZodPipe<z.ZodObject<{
1754
1836
  id: z.ZodCatch<z.ZodEnum<{
@@ -1756,7 +1838,7 @@ export declare const SettingsSchemas: {
1756
1838
  }>>;
1757
1839
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1758
1840
  accountId: z.ZodString;
1759
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1841
+ updatedAt: z.ZodCoercedDate<unknown>;
1760
1842
  value: z.ZodObject<{
1761
1843
  isEnabled: z.ZodBoolean;
1762
1844
  fields: z.ZodObject<{
@@ -1781,6 +1863,7 @@ export declare const SettingsSchemas: {
1781
1863
  }, {
1782
1864
  id: string;
1783
1865
  accountId: string;
1866
+ updatedAt: Date;
1784
1867
  value: {
1785
1868
  isEnabled: boolean;
1786
1869
  fields: {
@@ -1793,7 +1876,6 @@ export declare const SettingsSchemas: {
1793
1876
  };
1794
1877
  };
1795
1878
  isEnabled?: boolean | undefined;
1796
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1797
1879
  }>>;
1798
1880
  inventory_optimization_economic_reward: z.ZodPipe<z.ZodObject<{
1799
1881
  id: z.ZodCatch<z.ZodEnum<{
@@ -1801,7 +1883,7 @@ export declare const SettingsSchemas: {
1801
1883
  }>>;
1802
1884
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1803
1885
  accountId: z.ZodString;
1804
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1886
+ updatedAt: z.ZodCoercedDate<unknown>;
1805
1887
  value: z.ZodObject<{
1806
1888
  lead_time_days: z.ZodNumber;
1807
1889
  stockout_cost_ratio: z.ZodNumber;
@@ -1813,26 +1895,28 @@ export declare const SettingsSchemas: {
1813
1895
  maximum_periods: z.ZodNumber;
1814
1896
  discount_rate: z.ZodNumber;
1815
1897
  min_return_on_investment: z.ZodNumber;
1816
- bundle_size: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
1817
- UNKNOWN: "UNKNOWN";
1898
+ bundle_size: z.ZodRecord<z.ZodEnum<{
1818
1899
  location: "location";
1819
1900
  product: "product";
1820
1901
  sku: "sku";
1821
1902
  pseudo_product: "pseudo_product";
1822
- }>> & z.core.$partial, z.ZodObject<{
1903
+ collection: "collection";
1904
+ pseudo_collection: "pseudo_collection";
1905
+ }> & z.core.$partial, z.ZodObject<{
1823
1906
  meta_id: z.ZodString;
1824
1907
  unit: z.ZodOptional<z.ZodEnum<{
1825
1908
  currency: "currency";
1826
1909
  units: "units";
1827
1910
  }>>;
1828
1911
  }, z.core.$strip>>;
1829
- minimum_order_quantity: z.ZodRecord<z.ZodCatch<z.ZodEnum<{
1830
- UNKNOWN: "UNKNOWN";
1912
+ minimum_order_quantity: z.ZodRecord<z.ZodEnum<{
1831
1913
  location: "location";
1832
1914
  product: "product";
1833
1915
  sku: "sku";
1834
1916
  pseudo_product: "pseudo_product";
1835
- }>> & z.core.$partial, z.ZodObject<{
1917
+ collection: "collection";
1918
+ pseudo_collection: "pseudo_collection";
1919
+ }> & z.core.$partial, z.ZodObject<{
1836
1920
  meta_id: z.ZodString;
1837
1921
  unit: z.ZodOptional<z.ZodEnum<{
1838
1922
  currency: "currency";
@@ -1851,17 +1935,18 @@ export declare const SettingsSchemas: {
1851
1935
  maximum_periods: number;
1852
1936
  discount_rate: number;
1853
1937
  min_return_on_investment: number;
1854
- bundle_size: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
1938
+ bundle_size: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
1855
1939
  meta_id: string;
1856
1940
  unit?: "currency" | "units" | undefined;
1857
1941
  }>>;
1858
- minimum_order_quantity: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
1942
+ minimum_order_quantity: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
1859
1943
  meta_id: string;
1860
1944
  unit?: "currency" | "units" | undefined;
1861
1945
  }>>;
1862
1946
  }, {
1863
1947
  id: string;
1864
1948
  accountId: string;
1949
+ updatedAt: Date;
1865
1950
  value: {
1866
1951
  lead_time_days: number;
1867
1952
  stockout_cost_ratio: number;
@@ -1873,17 +1958,16 @@ export declare const SettingsSchemas: {
1873
1958
  maximum_periods: number;
1874
1959
  discount_rate: number;
1875
1960
  min_return_on_investment: number;
1876
- bundle_size: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
1961
+ bundle_size: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
1877
1962
  meta_id: string;
1878
1963
  unit?: "currency" | "units" | undefined;
1879
1964
  }>>;
1880
- minimum_order_quantity: Partial<Record<"UNKNOWN" | "location" | "product" | "sku" | "pseudo_product", {
1965
+ minimum_order_quantity: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
1881
1966
  meta_id: string;
1882
1967
  unit?: "currency" | "units" | undefined;
1883
1968
  }>>;
1884
1969
  };
1885
1970
  isEnabled?: boolean | undefined;
1886
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1887
1971
  }>>;
1888
1972
  wizard_platform: z.ZodPipe<z.ZodObject<{
1889
1973
  id: z.ZodCatch<z.ZodEnum<{
@@ -1891,7 +1975,7 @@ export declare const SettingsSchemas: {
1891
1975
  }>>;
1892
1976
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1893
1977
  accountId: z.ZodString;
1894
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1978
+ updatedAt: z.ZodCoercedDate<unknown>;
1895
1979
  value: z.ZodObject<{
1896
1980
  isInterrestedInRefinementEnabled: z.ZodOptional<z.ZodBoolean>;
1897
1981
  isInterestedInTranslation: z.ZodOptional<z.ZodBoolean>;
@@ -1910,6 +1994,7 @@ export declare const SettingsSchemas: {
1910
1994
  }, {
1911
1995
  id: string;
1912
1996
  accountId: string;
1997
+ updatedAt: Date;
1913
1998
  value: {
1914
1999
  isInterrestedInRefinementEnabled?: boolean | undefined;
1915
2000
  isInterestedInTranslation?: boolean | undefined;
@@ -1919,7 +2004,6 @@ export declare const SettingsSchemas: {
1919
2004
  hasCompletedWizard?: boolean | undefined;
1920
2005
  };
1921
2006
  isEnabled?: boolean | undefined;
1922
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1923
2007
  }>>;
1924
2008
  primary_locale: z.ZodPipe<z.ZodObject<{
1925
2009
  id: z.ZodCatch<z.ZodEnum<{
@@ -1927,8 +2011,8 @@ export declare const SettingsSchemas: {
1927
2011
  }>>;
1928
2012
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1929
2013
  accountId: z.ZodString;
1930
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
1931
- value: z.ZodOptional<z.ZodEnum<{
2014
+ updatedAt: z.ZodCoercedDate<unknown>;
2015
+ value: z.ZodOptional<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
1932
2016
  af: "af";
1933
2017
  am: "am";
1934
2018
  ar: "ar";
@@ -2032,12 +2116,12 @@ export declare const SettingsSchemas: {
2032
2116
  yo: "yo";
2033
2117
  zh: "zh";
2034
2118
  zu: "zu";
2035
- }>>;
2119
+ }>>>;
2036
2120
  }, 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, {
2037
2121
  id: string;
2038
2122
  accountId: string;
2123
+ updatedAt: Date;
2039
2124
  isEnabled?: boolean | undefined;
2040
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2041
2125
  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;
2042
2126
  }>>;
2043
2127
  shopify_primary_url: z.ZodPipe<z.ZodOptional<z.ZodObject<{
@@ -2046,14 +2130,14 @@ export declare const SettingsSchemas: {
2046
2130
  }>>;
2047
2131
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2048
2132
  accountId: z.ZodString;
2049
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2133
+ updatedAt: z.ZodCoercedDate<unknown>;
2050
2134
  value: z.ZodString;
2051
2135
  }, z.core.$strip>>, z.ZodTransform<string | undefined, {
2052
2136
  id: string;
2053
2137
  accountId: string;
2138
+ updatedAt: Date;
2054
2139
  value: string;
2055
2140
  isEnabled?: boolean | undefined;
2056
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2057
2141
  } | undefined>>;
2058
2142
  analytics_timezone: z.ZodPipe<z.ZodOptional<z.ZodObject<{
2059
2143
  id: z.ZodCatch<z.ZodEnum<{
@@ -2061,14 +2145,14 @@ export declare const SettingsSchemas: {
2061
2145
  }>>;
2062
2146
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2063
2147
  accountId: z.ZodString;
2064
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2148
+ updatedAt: z.ZodCoercedDate<unknown>;
2065
2149
  value: z.ZodString;
2066
2150
  }, z.core.$strip>>, z.ZodTransform<string | undefined, {
2067
2151
  id: string;
2068
2152
  accountId: string;
2153
+ updatedAt: Date;
2069
2154
  value: string;
2070
2155
  isEnabled?: boolean | undefined;
2071
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2072
2156
  } | undefined>>;
2073
2157
  company_description: z.ZodPipe<z.ZodOptional<z.ZodObject<{
2074
2158
  id: z.ZodCatch<z.ZodEnum<{
@@ -2076,14 +2160,14 @@ export declare const SettingsSchemas: {
2076
2160
  }>>;
2077
2161
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2078
2162
  accountId: z.ZodString;
2079
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2163
+ updatedAt: z.ZodCoercedDate<unknown>;
2080
2164
  value: z.ZodString;
2081
2165
  }, z.core.$strip>>, z.ZodTransform<string | undefined, {
2082
2166
  id: string;
2083
2167
  accountId: string;
2168
+ updatedAt: Date;
2084
2169
  value: string;
2085
2170
  isEnabled?: boolean | undefined;
2086
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2087
2171
  } | undefined>>;
2088
2172
  analytics_currency_code: z.ZodPipe<z.ZodObject<{
2089
2173
  id: z.ZodCatch<z.ZodEnum<{
@@ -2091,7 +2175,7 @@ export declare const SettingsSchemas: {
2091
2175
  }>>;
2092
2176
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2093
2177
  accountId: z.ZodString;
2094
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2178
+ updatedAt: z.ZodCoercedDate<unknown>;
2095
2179
  value: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
2096
2180
  AED: "AED";
2097
2181
  ARS: "ARS";
@@ -2133,8 +2217,8 @@ export declare const SettingsSchemas: {
2133
2217
  }, 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", {
2134
2218
  id: string;
2135
2219
  accountId: string;
2220
+ updatedAt: Date;
2136
2221
  isEnabled?: boolean | undefined;
2137
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2138
2222
  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;
2139
2223
  }>>;
2140
2224
  design_guide_section_templates: z.ZodPipe<z.ZodObject<{
@@ -2143,7 +2227,7 @@ export declare const SettingsSchemas: {
2143
2227
  }>>;
2144
2228
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2145
2229
  accountId: z.ZodString;
2146
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2230
+ updatedAt: z.ZodCoercedDate<unknown>;
2147
2231
  value: z.ZodObject<{
2148
2232
  sections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2149
2233
  name: z.ZodString;
@@ -2246,6 +2330,7 @@ export declare const SettingsSchemas: {
2246
2330
  }, {
2247
2331
  id: string;
2248
2332
  accountId: string;
2333
+ updatedAt: Date;
2249
2334
  value: {
2250
2335
  sections: ({
2251
2336
  name: string;
@@ -2293,7 +2378,6 @@ export declare const SettingsSchemas: {
2293
2378
  })[];
2294
2379
  };
2295
2380
  isEnabled?: boolean | undefined;
2296
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2297
2381
  }>>;
2298
2382
  unknown: z.ZodPipe<z.ZodOptional<z.ZodObject<{
2299
2383
  id: z.ZodCatch<z.ZodEnum<{
@@ -2301,14 +2385,14 @@ export declare const SettingsSchemas: {
2301
2385
  }>>;
2302
2386
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2303
2387
  accountId: z.ZodString;
2304
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2388
+ updatedAt: z.ZodCoercedDate<unknown>;
2305
2389
  value: z.ZodString;
2306
2390
  }, z.core.$strip>>, z.ZodTransform<string | undefined, {
2307
2391
  id: string;
2308
2392
  accountId: string;
2393
+ updatedAt: Date;
2309
2394
  value: string;
2310
2395
  isEnabled?: boolean | undefined;
2311
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2312
2396
  } | undefined>>;
2313
2397
  educational_platform: z.ZodPipe<z.ZodObject<{
2314
2398
  id: z.ZodCatch<z.ZodEnum<{
@@ -2316,7 +2400,7 @@ export declare const SettingsSchemas: {
2316
2400
  }>>;
2317
2401
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2318
2402
  accountId: z.ZodString;
2319
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2403
+ updatedAt: z.ZodCoercedDate<unknown>;
2320
2404
  value: z.ZodObject<{
2321
2405
  hasCompletedDesignGuide: z.ZodOptional<z.ZodBoolean>;
2322
2406
  hasVisitedEducationalPlatform: z.ZodOptional<z.ZodBoolean>;
@@ -2327,12 +2411,72 @@ export declare const SettingsSchemas: {
2327
2411
  }, {
2328
2412
  id: string;
2329
2413
  accountId: string;
2414
+ updatedAt: Date;
2330
2415
  value: {
2331
2416
  hasCompletedDesignGuide?: boolean | undefined;
2332
2417
  hasVisitedEducationalPlatform?: boolean | undefined;
2333
2418
  };
2334
2419
  isEnabled?: boolean | undefined;
2335
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2420
+ }>>;
2421
+ content_optimization_product_meta_ids: z.ZodPipe<z.ZodObject<{
2422
+ id: z.ZodCatch<z.ZodEnum<{
2423
+ [x: string]: string;
2424
+ }>>;
2425
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
2426
+ accountId: z.ZodString;
2427
+ updatedAt: z.ZodCoercedDate<unknown>;
2428
+ value: z.ZodObject<{
2429
+ metafields: z.ZodArray<z.ZodObject<{
2430
+ metafield_id: z.ZodString;
2431
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2432
+ }, z.core.$strip>>;
2433
+ }, z.core.$strip>;
2434
+ }, z.core.$strip>, z.ZodTransform<{
2435
+ metafields: {
2436
+ metafield_id: string;
2437
+ additional_context?: string | null | undefined;
2438
+ }[];
2439
+ }, {
2440
+ id: string;
2441
+ accountId: string;
2442
+ updatedAt: Date;
2443
+ value: {
2444
+ metafields: {
2445
+ metafield_id: string;
2446
+ additional_context?: string | null | undefined;
2447
+ }[];
2448
+ };
2449
+ isEnabled?: boolean | undefined;
2450
+ }>>;
2451
+ content_optimization_collection_meta_ids: z.ZodPipe<z.ZodObject<{
2452
+ id: z.ZodCatch<z.ZodEnum<{
2453
+ [x: string]: string;
2454
+ }>>;
2455
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
2456
+ accountId: z.ZodString;
2457
+ updatedAt: z.ZodCoercedDate<unknown>;
2458
+ value: z.ZodObject<{
2459
+ metafields: z.ZodArray<z.ZodObject<{
2460
+ metafield_id: z.ZodString;
2461
+ additional_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2462
+ }, z.core.$strip>>;
2463
+ }, z.core.$strip>;
2464
+ }, z.core.$strip>, z.ZodTransform<{
2465
+ metafields: {
2466
+ metafield_id: string;
2467
+ additional_context?: string | null | undefined;
2468
+ }[];
2469
+ }, {
2470
+ id: string;
2471
+ accountId: string;
2472
+ updatedAt: Date;
2473
+ value: {
2474
+ metafields: {
2475
+ metafield_id: string;
2476
+ additional_context?: string | null | undefined;
2477
+ }[];
2478
+ };
2479
+ isEnabled?: boolean | undefined;
2336
2480
  }>>;
2337
2481
  "product-filter-views": z.ZodPipe<z.ZodObject<{
2338
2482
  id: z.ZodCatch<z.ZodEnum<{
@@ -2340,7 +2484,7 @@ export declare const SettingsSchemas: {
2340
2484
  }>>;
2341
2485
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2342
2486
  accountId: z.ZodString;
2343
- updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2487
+ updatedAt: z.ZodCoercedDate<unknown>;
2344
2488
  value: z.ZodObject<{
2345
2489
  views: z.ZodArray<z.ZodObject<{
2346
2490
  name: z.ZodString;
@@ -2355,6 +2499,7 @@ export declare const SettingsSchemas: {
2355
2499
  }, {
2356
2500
  id: string;
2357
2501
  accountId: string;
2502
+ updatedAt: Date;
2358
2503
  value: {
2359
2504
  views: {
2360
2505
  name: string;
@@ -2362,7 +2507,6 @@ export declare const SettingsSchemas: {
2362
2507
  }[];
2363
2508
  };
2364
2509
  isEnabled?: boolean | undefined;
2365
- updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2366
2510
  }>>;
2367
2511
  };
2368
2512
  //# sourceMappingURL=accountSettings.d.ts.map