@omni-graph/omni-model 0.7.13 → 0.7.14-17-gf960c6a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants/languageCodeMapper.d.ts +107 -1
- package/dist/constants/languageCodeMapper.d.ts.map +1 -1
- package/dist/constants/languageCodeMapper.js +7 -2
- package/dist/constants/languageCodeMapper.js.map +1 -1
- package/dist/functions/filtering/textHandler.d.ts +1 -1
- package/dist/zod/account-settings/accountSettings.d.ts +206 -62
- package/dist/zod/account-settings/accountSettings.d.ts.map +1 -1
- package/dist/zod/account-settings/accountSettings.js +16 -1
- package/dist/zod/account-settings/accountSettings.js.map +1 -1
- package/dist/zod/account-settings/base.d.ts +2 -0
- package/dist/zod/account-settings/base.d.ts.map +1 -1
- package/dist/zod/account-settings/base.js +2 -0
- package/dist/zod/account-settings/base.js.map +1 -1
- package/dist/zod/recommendations/base.d.ts +42 -17
- package/dist/zod/recommendations/base.d.ts.map +1 -1
- package/dist/zod/recommendations/base.js +35 -13
- package/dist/zod/recommendations/base.js.map +1 -1
- package/dist/zod/recommendations/content-optimization/base.d.ts +51 -47
- package/dist/zod/recommendations/content-optimization/base.d.ts.map +1 -1
- package/dist/zod/recommendations/content-optimization/base.js +2 -2
- package/dist/zod/recommendations/content-optimization/base.js.map +1 -1
- package/dist/zod/recommendations/content-optimization/index.d.ts +2 -0
- package/dist/zod/recommendations/content-optimization/index.d.ts.map +1 -1
- package/dist/zod/recommendations/content-optimization/index.js +2 -0
- package/dist/zod/recommendations/content-optimization/index.js.map +1 -1
- package/dist/zod/recommendations/content-optimization/metaAttributes.d.ts +10289 -0
- package/dist/zod/recommendations/content-optimization/metaAttributes.d.ts.map +1 -0
- package/dist/zod/recommendations/content-optimization/metaAttributes.js +142 -0
- package/dist/zod/recommendations/content-optimization/metaAttributes.js.map +1 -0
- package/dist/zod/recommendations/content-optimization/productRecommendation.d.ts +360 -0
- package/dist/zod/recommendations/content-optimization/productRecommendation.d.ts.map +1 -0
- package/dist/zod/recommendations/content-optimization/productRecommendation.js +128 -0
- package/dist/zod/recommendations/content-optimization/productRecommendation.js.map +1 -0
- package/dist/zod/recommendations/content-optimization/translation.d.ts +9 -242
- package/dist/zod/recommendations/content-optimization/translation.d.ts.map +1 -1
- package/dist/zod/recommendations/content-optimization/translation.js +15 -23
- package/dist/zod/recommendations/content-optimization/translation.js.map +1 -1
- package/dist/zod/recommendations/index.d.ts +4336 -0
- package/dist/zod/recommendations/index.d.ts.map +1 -1
- package/dist/zod/recommendations/index.js +10 -0
- package/dist/zod/recommendations/index.js.map +1 -1
- 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]: ProductMetafieldsSettingsResponse;
|
|
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.
|
|
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
|
-
|
|
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.
|
|
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
|
-
|
|
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.
|
|
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
|
-
|
|
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";
|
|
@@ -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.
|
|
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
|
-
|
|
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.
|
|
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
|
-
|
|
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,11 +168,11 @@ 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<"
|
|
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<"
|
|
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
|
}>>;
|
|
@@ -178,11 +190,11 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
|
|
|
178
190
|
maximum_periods: number;
|
|
179
191
|
discount_rate: number;
|
|
180
192
|
min_return_on_investment: number;
|
|
181
|
-
bundle_size: Partial<Record<"
|
|
193
|
+
bundle_size: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
|
|
182
194
|
meta_id: string;
|
|
183
195
|
unit?: "currency" | "units" | undefined;
|
|
184
196
|
}>>;
|
|
185
|
-
minimum_order_quantity: Partial<Record<"
|
|
197
|
+
minimum_order_quantity: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
|
|
186
198
|
meta_id: string;
|
|
187
199
|
unit?: "currency" | "units" | undefined;
|
|
188
200
|
}>>;
|
|
@@ -620,9 +632,79 @@ export declare const ContentOptimizationRefinementResponseSchema: z.ZodPipe<z.Zo
|
|
|
620
632
|
isEnabled?: boolean | undefined;
|
|
621
633
|
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
622
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.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
|
|
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
|
+
value: {
|
|
667
|
+
metafields: {
|
|
668
|
+
metafield_id: string;
|
|
669
|
+
additional_context?: string | null | undefined;
|
|
670
|
+
}[];
|
|
671
|
+
};
|
|
672
|
+
isEnabled?: boolean | undefined;
|
|
673
|
+
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | 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.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
|
|
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
|
+
value: {
|
|
697
|
+
metafields: {
|
|
698
|
+
metafield_id: string;
|
|
699
|
+
additional_context?: string | null | undefined;
|
|
700
|
+
}[];
|
|
701
|
+
};
|
|
702
|
+
isEnabled?: boolean | undefined;
|
|
703
|
+
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
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
|
}>;
|
|
@@ -637,7 +719,7 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
|
|
|
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: "
|
|
876
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
795
877
|
enabled: boolean;
|
|
796
878
|
};
|
|
797
879
|
product_name: {
|
|
798
|
-
name: "
|
|
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: "
|
|
886
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
805
887
|
enabled: boolean;
|
|
806
888
|
};
|
|
807
889
|
seo_description: {
|
|
808
|
-
name: "
|
|
890
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
809
891
|
enabled: boolean;
|
|
810
892
|
};
|
|
811
893
|
} | undefined;
|
|
@@ -820,21 +902,21 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
|
|
|
820
902
|
translation_fields: {
|
|
821
903
|
content_optimization_translate_product_description_html: {
|
|
822
904
|
product_description_html: {
|
|
823
|
-
name: "
|
|
905
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
824
906
|
enabled: boolean;
|
|
825
907
|
};
|
|
826
908
|
product_name: {
|
|
827
|
-
name: "
|
|
909
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
828
910
|
enabled: boolean;
|
|
829
911
|
};
|
|
830
912
|
};
|
|
831
913
|
content_optimization_translate_seo?: {
|
|
832
914
|
seo_title: {
|
|
833
|
-
name: "
|
|
915
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
834
916
|
enabled: boolean;
|
|
835
917
|
};
|
|
836
918
|
seo_description: {
|
|
837
|
-
name: "
|
|
919
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
838
920
|
enabled: boolean;
|
|
839
921
|
};
|
|
840
922
|
} | undefined;
|
|
@@ -1045,7 +1127,7 @@ export declare const PrimaryLocaleResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1045
1127
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1046
1128
|
accountId: z.ZodString;
|
|
1047
1129
|
updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
|
|
1048
|
-
value: z.ZodOptional<z.ZodEnum<{
|
|
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,7 +1231,7 @@ 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;
|
|
@@ -1465,7 +1547,7 @@ export declare const SettingsSchemas: {
|
|
|
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: "
|
|
1704
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
1623
1705
|
enabled: boolean;
|
|
1624
1706
|
};
|
|
1625
1707
|
product_name: {
|
|
1626
|
-
name: "
|
|
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: "
|
|
1714
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
1633
1715
|
enabled: boolean;
|
|
1634
1716
|
};
|
|
1635
1717
|
seo_description: {
|
|
1636
|
-
name: "
|
|
1718
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
1637
1719
|
enabled: boolean;
|
|
1638
1720
|
};
|
|
1639
1721
|
} | undefined;
|
|
@@ -1648,21 +1730,21 @@ export declare const SettingsSchemas: {
|
|
|
1648
1730
|
translation_fields: {
|
|
1649
1731
|
content_optimization_translate_product_description_html: {
|
|
1650
1732
|
product_description_html: {
|
|
1651
|
-
name: "
|
|
1733
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
1652
1734
|
enabled: boolean;
|
|
1653
1735
|
};
|
|
1654
1736
|
product_name: {
|
|
1655
|
-
name: "
|
|
1737
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
1656
1738
|
enabled: boolean;
|
|
1657
1739
|
};
|
|
1658
1740
|
};
|
|
1659
1741
|
content_optimization_translate_seo?: {
|
|
1660
1742
|
seo_title: {
|
|
1661
|
-
name: "
|
|
1743
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
1662
1744
|
enabled: boolean;
|
|
1663
1745
|
};
|
|
1664
1746
|
seo_description: {
|
|
1665
|
-
name: "
|
|
1747
|
+
name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
|
|
1666
1748
|
enabled: boolean;
|
|
1667
1749
|
};
|
|
1668
1750
|
} | undefined;
|
|
@@ -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.
|
|
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
|
-
|
|
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.
|
|
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
|
-
|
|
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,11 +1935,11 @@ 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<"
|
|
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<"
|
|
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
|
}>>;
|
|
@@ -1873,11 +1957,11 @@ export declare const SettingsSchemas: {
|
|
|
1873
1957
|
maximum_periods: number;
|
|
1874
1958
|
discount_rate: number;
|
|
1875
1959
|
min_return_on_investment: number;
|
|
1876
|
-
bundle_size: Partial<Record<"
|
|
1960
|
+
bundle_size: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
|
|
1877
1961
|
meta_id: string;
|
|
1878
1962
|
unit?: "currency" | "units" | undefined;
|
|
1879
1963
|
}>>;
|
|
1880
|
-
minimum_order_quantity: Partial<Record<"
|
|
1964
|
+
minimum_order_quantity: Partial<Record<"location" | "product" | "sku" | "pseudo_product" | "collection" | "pseudo_collection", {
|
|
1881
1965
|
meta_id: string;
|
|
1882
1966
|
unit?: "currency" | "units" | undefined;
|
|
1883
1967
|
}>>;
|
|
@@ -1928,7 +2012,7 @@ export declare const SettingsSchemas: {
|
|
|
1928
2012
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1929
2013
|
accountId: z.ZodString;
|
|
1930
2014
|
updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
|
|
1931
|
-
value: z.ZodOptional<z.ZodEnum<{
|
|
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,7 +2116,7 @@ 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;
|
|
@@ -2334,6 +2418,66 @@ export declare const SettingsSchemas: {
|
|
|
2334
2418
|
isEnabled?: boolean | undefined;
|
|
2335
2419
|
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2336
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.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
|
|
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
|
+
value: {
|
|
2443
|
+
metafields: {
|
|
2444
|
+
metafield_id: string;
|
|
2445
|
+
additional_context?: string | null | undefined;
|
|
2446
|
+
}[];
|
|
2447
|
+
};
|
|
2448
|
+
isEnabled?: boolean | undefined;
|
|
2449
|
+
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | 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.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
|
|
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
|
+
value: {
|
|
2473
|
+
metafields: {
|
|
2474
|
+
metafield_id: string;
|
|
2475
|
+
additional_context?: string | null | undefined;
|
|
2476
|
+
}[];
|
|
2477
|
+
};
|
|
2478
|
+
isEnabled?: boolean | undefined;
|
|
2479
|
+
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2480
|
+
}>>;
|
|
2337
2481
|
"product-filter-views": z.ZodPipe<z.ZodObject<{
|
|
2338
2482
|
id: z.ZodCatch<z.ZodEnum<{
|
|
2339
2483
|
[x: string]: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountSettings.d.ts","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"accountSettings.d.ts","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"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"}
|