@omni-graph/omni-model 0.7.14-17-gf960c6a → 0.7.14-23-gfc23e75
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/zod/account-settings/accountSettings.d.ts +75 -75
- package/dist/zod/account-settings/accountSettings.d.ts.map +1 -1
- package/dist/zod/account-settings/base.d.ts +1 -2
- package/dist/zod/account-settings/base.d.ts.map +1 -1
- package/dist/zod/account-settings/base.js +1 -5
- package/dist/zod/account-settings/base.js.map +1 -1
- package/dist/zod/recommendations/base.d.ts +1 -1
- package/dist/zod/recommendations/base.js +1 -1
- package/dist/zod/recommendations/base.js.map +1 -1
- package/dist/zod/recommendations/content-optimization/base.d.ts +2 -2
- package/dist/zod/recommendations/content-optimization/metaAttributes.d.ts +1290 -170
- package/dist/zod/recommendations/content-optimization/metaAttributes.d.ts.map +1 -1
- package/dist/zod/recommendations/content-optimization/metaAttributes.js +7 -8
- package/dist/zod/recommendations/content-optimization/metaAttributes.js.map +1 -1
- package/dist/zod/recommendations/index.d.ts +458 -10
- package/dist/zod/recommendations/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -38,7 +38,7 @@ export type SettingsIdToResponseMap = {
|
|
|
38
38
|
[AccountSettingsIdEnum.DESIGN_GUIDE_SECTION]: DesignGuideResponse;
|
|
39
39
|
[AccountSettingsIdEnum.EDUCATIONAL_PLATFORM]: EducationalPlatformResponse;
|
|
40
40
|
[AccountSettingsIdEnum.CONTENT_OPTIMIZATION_METAFIELDS_PRODUCT]: ProductMetafieldsSettingsResponse;
|
|
41
|
-
[AccountSettingsIdEnum.CONTENT_OPTIMIZATION_METAFIELDS_COLLECTION]:
|
|
41
|
+
[AccountSettingsIdEnum.CONTENT_OPTIMIZATION_METAFIELDS_COLLECTION]: CollectionMetafieldsSettingsResponse;
|
|
42
42
|
[AccountSettingsIdEnum.PRODUCT_FILTER_VIEWS]: ProductFilterResponse;
|
|
43
43
|
};
|
|
44
44
|
export declare const MetaFieldUnitEnum: z.ZodOptional<z.ZodEnum<{
|
|
@@ -116,7 +116,7 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
|
|
|
116
116
|
}>>;
|
|
117
117
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
118
118
|
accountId: z.ZodString;
|
|
119
|
-
updatedAt: z.
|
|
119
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
120
120
|
value: z.ZodObject<{
|
|
121
121
|
lead_time_days: z.ZodNumber;
|
|
122
122
|
stockout_cost_ratio: z.ZodNumber;
|
|
@@ -179,6 +179,7 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
|
|
|
179
179
|
}, {
|
|
180
180
|
id: string;
|
|
181
181
|
accountId: string;
|
|
182
|
+
updatedAt: Date;
|
|
182
183
|
value: {
|
|
183
184
|
lead_time_days: number;
|
|
184
185
|
stockout_cost_ratio: number;
|
|
@@ -200,7 +201,6 @@ export declare const InventoryOptimizationResponseSchema: z.ZodPipe<z.ZodObject<
|
|
|
200
201
|
}>>;
|
|
201
202
|
};
|
|
202
203
|
isEnabled?: boolean | undefined;
|
|
203
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
204
204
|
}>>;
|
|
205
205
|
export declare const DesignGuideSectionTypeEnum: z.ZodEnum<{
|
|
206
206
|
boolean: "boolean";
|
|
@@ -280,7 +280,7 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
280
280
|
}>>;
|
|
281
281
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
282
282
|
accountId: z.ZodString;
|
|
283
|
-
updatedAt: z.
|
|
283
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
284
284
|
value: z.ZodObject<{
|
|
285
285
|
tone_of_voice: z.ZodNullable<z.ZodString>;
|
|
286
286
|
use_online_summary: z.ZodBoolean;
|
|
@@ -395,6 +395,7 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
395
395
|
}, {
|
|
396
396
|
id: string;
|
|
397
397
|
accountId: string;
|
|
398
|
+
updatedAt: Date;
|
|
398
399
|
value: {
|
|
399
400
|
tone_of_voice: string | null;
|
|
400
401
|
use_online_summary: boolean;
|
|
@@ -448,7 +449,6 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
448
449
|
prioritization_strategy?: string | undefined;
|
|
449
450
|
};
|
|
450
451
|
isEnabled?: boolean | undefined;
|
|
451
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
452
452
|
}>>;
|
|
453
453
|
export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
454
454
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -456,7 +456,7 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
456
456
|
}>>;
|
|
457
457
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
458
458
|
accountId: z.ZodString;
|
|
459
|
-
updatedAt: z.
|
|
459
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
460
460
|
value: z.ZodObject<{
|
|
461
461
|
sections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
462
462
|
name: z.ZodString;
|
|
@@ -559,6 +559,7 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
559
559
|
}, {
|
|
560
560
|
id: string;
|
|
561
561
|
accountId: string;
|
|
562
|
+
updatedAt: Date;
|
|
562
563
|
value: {
|
|
563
564
|
sections: ({
|
|
564
565
|
name: string;
|
|
@@ -606,7 +607,6 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
606
607
|
})[];
|
|
607
608
|
};
|
|
608
609
|
isEnabled?: boolean | undefined;
|
|
609
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
610
610
|
}>>;
|
|
611
611
|
export declare const ContentOptimizationRefinementResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
612
612
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -614,7 +614,7 @@ export declare const ContentOptimizationRefinementResponseSchema: z.ZodPipe<z.Zo
|
|
|
614
614
|
}>>;
|
|
615
615
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
616
616
|
accountId: z.ZodString;
|
|
617
|
-
updatedAt: z.
|
|
617
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
618
618
|
value: z.ZodObject<{
|
|
619
619
|
use_feedback_based_instructions: z.ZodBoolean;
|
|
620
620
|
force_shop_language: z.ZodBoolean;
|
|
@@ -625,12 +625,12 @@ export declare const ContentOptimizationRefinementResponseSchema: z.ZodPipe<z.Zo
|
|
|
625
625
|
}, {
|
|
626
626
|
id: string;
|
|
627
627
|
accountId: string;
|
|
628
|
+
updatedAt: Date;
|
|
628
629
|
value: {
|
|
629
630
|
use_feedback_based_instructions: boolean;
|
|
630
631
|
force_shop_language: boolean;
|
|
631
632
|
};
|
|
632
633
|
isEnabled?: boolean | undefined;
|
|
633
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
634
634
|
}>>;
|
|
635
635
|
export declare const MetafieldSettingSchema: z.ZodObject<{
|
|
636
636
|
metafield_id: z.ZodString;
|
|
@@ -648,7 +648,7 @@ export declare const ProductMetafieldsSettingsResponseSchema: z.ZodPipe<z.ZodObj
|
|
|
648
648
|
}>>;
|
|
649
649
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
650
650
|
accountId: z.ZodString;
|
|
651
|
-
updatedAt: z.
|
|
651
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
652
652
|
value: z.ZodObject<{
|
|
653
653
|
metafields: z.ZodArray<z.ZodObject<{
|
|
654
654
|
metafield_id: z.ZodString;
|
|
@@ -663,6 +663,7 @@ export declare const ProductMetafieldsSettingsResponseSchema: z.ZodPipe<z.ZodObj
|
|
|
663
663
|
}, {
|
|
664
664
|
id: string;
|
|
665
665
|
accountId: string;
|
|
666
|
+
updatedAt: Date;
|
|
666
667
|
value: {
|
|
667
668
|
metafields: {
|
|
668
669
|
metafield_id: string;
|
|
@@ -670,7 +671,6 @@ export declare const ProductMetafieldsSettingsResponseSchema: z.ZodPipe<z.ZodObj
|
|
|
670
671
|
}[];
|
|
671
672
|
};
|
|
672
673
|
isEnabled?: boolean | undefined;
|
|
673
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
674
674
|
}>>;
|
|
675
675
|
export declare const CollectionMetafieldsSettingsResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
676
676
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -678,7 +678,7 @@ export declare const CollectionMetafieldsSettingsResponseSchema: z.ZodPipe<z.Zod
|
|
|
678
678
|
}>>;
|
|
679
679
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
680
680
|
accountId: z.ZodString;
|
|
681
|
-
updatedAt: z.
|
|
681
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
682
682
|
value: z.ZodObject<{
|
|
683
683
|
metafields: z.ZodArray<z.ZodObject<{
|
|
684
684
|
metafield_id: z.ZodString;
|
|
@@ -693,6 +693,7 @@ export declare const CollectionMetafieldsSettingsResponseSchema: z.ZodPipe<z.Zod
|
|
|
693
693
|
}, {
|
|
694
694
|
id: string;
|
|
695
695
|
accountId: string;
|
|
696
|
+
updatedAt: Date;
|
|
696
697
|
value: {
|
|
697
698
|
metafields: {
|
|
698
699
|
metafield_id: string;
|
|
@@ -700,7 +701,6 @@ export declare const CollectionMetafieldsSettingsResponseSchema: z.ZodPipe<z.Zod
|
|
|
700
701
|
}[];
|
|
701
702
|
};
|
|
702
703
|
isEnabled?: boolean | undefined;
|
|
703
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
704
704
|
}>>;
|
|
705
705
|
export declare const resourceKeyTranslation: z.ZodEnum<{
|
|
706
706
|
product_description_html: "product_description_html";
|
|
@@ -715,7 +715,7 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
|
|
|
715
715
|
}>>;
|
|
716
716
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
717
717
|
accountId: z.ZodString;
|
|
718
|
-
updatedAt: z.
|
|
718
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
719
719
|
value: z.ZodObject<{
|
|
720
720
|
use_feedback_based_instructions: z.ZodBoolean;
|
|
721
721
|
only_generate_missing: z.ZodBoolean;
|
|
@@ -896,6 +896,7 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
|
|
|
896
896
|
}, {
|
|
897
897
|
id: string;
|
|
898
898
|
accountId: string;
|
|
899
|
+
updatedAt: Date;
|
|
899
900
|
value: {
|
|
900
901
|
use_feedback_based_instructions: boolean;
|
|
901
902
|
only_generate_missing: boolean;
|
|
@@ -924,7 +925,6 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodPipe<z.Z
|
|
|
924
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;
|
|
925
926
|
};
|
|
926
927
|
isEnabled?: boolean | undefined;
|
|
927
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
928
928
|
}>>;
|
|
929
929
|
export declare const ContentOptimizationWriteResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
930
930
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -932,7 +932,7 @@ export declare const ContentOptimizationWriteResponseSchema: z.ZodPipe<z.ZodObje
|
|
|
932
932
|
}>>;
|
|
933
933
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
934
934
|
accountId: z.ZodString;
|
|
935
|
-
updatedAt: z.
|
|
935
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
936
936
|
value: z.ZodObject<{
|
|
937
937
|
use_feedback_based_instructions: z.ZodBoolean;
|
|
938
938
|
only_generate_missing: z.ZodBoolean;
|
|
@@ -943,12 +943,12 @@ export declare const ContentOptimizationWriteResponseSchema: z.ZodPipe<z.ZodObje
|
|
|
943
943
|
}, {
|
|
944
944
|
id: string;
|
|
945
945
|
accountId: string;
|
|
946
|
+
updatedAt: Date;
|
|
946
947
|
value: {
|
|
947
948
|
use_feedback_based_instructions: boolean;
|
|
948
949
|
only_generate_missing: boolean;
|
|
949
950
|
};
|
|
950
951
|
isEnabled?: boolean | undefined;
|
|
951
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
952
952
|
}>>;
|
|
953
953
|
export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
954
954
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -956,7 +956,7 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject
|
|
|
956
956
|
}>>;
|
|
957
957
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
958
958
|
accountId: z.ZodString;
|
|
959
|
-
updatedAt: z.
|
|
959
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
960
960
|
value: z.ZodObject<{
|
|
961
961
|
use_feedback_based_instructions: z.ZodBoolean;
|
|
962
962
|
character_limit_title: z.ZodNumber;
|
|
@@ -971,6 +971,7 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject
|
|
|
971
971
|
}, {
|
|
972
972
|
id: string;
|
|
973
973
|
accountId: string;
|
|
974
|
+
updatedAt: Date;
|
|
974
975
|
value: {
|
|
975
976
|
use_feedback_based_instructions: boolean;
|
|
976
977
|
character_limit_title: number;
|
|
@@ -978,7 +979,6 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodPipe<z.ZodObject
|
|
|
978
979
|
only_generate_missing: boolean;
|
|
979
980
|
};
|
|
980
981
|
isEnabled?: boolean | undefined;
|
|
981
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
982
982
|
}>>;
|
|
983
983
|
export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
984
984
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -986,7 +986,7 @@ export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodPip
|
|
|
986
986
|
}>>;
|
|
987
987
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
988
988
|
accountId: z.ZodString;
|
|
989
|
-
updatedAt: z.
|
|
989
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
990
990
|
value: z.ZodObject<{
|
|
991
991
|
use_feedback_based_instructions: z.ZodBoolean;
|
|
992
992
|
similarity_threshold: z.ZodNumber;
|
|
@@ -997,12 +997,12 @@ export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodPip
|
|
|
997
997
|
}, {
|
|
998
998
|
id: string;
|
|
999
999
|
accountId: string;
|
|
1000
|
+
updatedAt: Date;
|
|
1000
1001
|
value: {
|
|
1001
1002
|
use_feedback_based_instructions: boolean;
|
|
1002
1003
|
similarity_threshold: number;
|
|
1003
1004
|
};
|
|
1004
1005
|
isEnabled?: boolean | undefined;
|
|
1005
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1006
1006
|
}>>;
|
|
1007
1007
|
export declare const ContentOptimizationWriteSEOPlatformValueSchema: z.ZodObject<{
|
|
1008
1008
|
isEnabled: z.ZodBoolean;
|
|
@@ -1021,7 +1021,7 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodPip
|
|
|
1021
1021
|
}>>;
|
|
1022
1022
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1023
1023
|
accountId: z.ZodString;
|
|
1024
|
-
updatedAt: z.
|
|
1024
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1025
1025
|
value: z.ZodObject<{
|
|
1026
1026
|
isEnabled: z.ZodBoolean;
|
|
1027
1027
|
fields: z.ZodObject<{
|
|
@@ -1046,6 +1046,7 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodPip
|
|
|
1046
1046
|
}, {
|
|
1047
1047
|
id: string;
|
|
1048
1048
|
accountId: string;
|
|
1049
|
+
updatedAt: Date;
|
|
1049
1050
|
value: {
|
|
1050
1051
|
isEnabled: boolean;
|
|
1051
1052
|
fields: {
|
|
@@ -1058,7 +1059,6 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodPip
|
|
|
1058
1059
|
};
|
|
1059
1060
|
};
|
|
1060
1061
|
isEnabled?: boolean | undefined;
|
|
1061
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1062
1062
|
}>>;
|
|
1063
1063
|
export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
1064
1064
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1066,7 +1066,7 @@ export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1066
1066
|
}>>;
|
|
1067
1067
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1068
1068
|
accountId: z.ZodString;
|
|
1069
|
-
updatedAt: z.
|
|
1069
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1070
1070
|
value: z.ZodObject<{
|
|
1071
1071
|
isInterrestedInRefinementEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1072
1072
|
isInterestedInTranslation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1085,6 +1085,7 @@ export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1085
1085
|
}, {
|
|
1086
1086
|
id: string;
|
|
1087
1087
|
accountId: string;
|
|
1088
|
+
updatedAt: Date;
|
|
1088
1089
|
value: {
|
|
1089
1090
|
isInterrestedInRefinementEnabled?: boolean | undefined;
|
|
1090
1091
|
isInterestedInTranslation?: boolean | undefined;
|
|
@@ -1094,7 +1095,6 @@ export declare const WizardPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1094
1095
|
hasCompletedWizard?: boolean | undefined;
|
|
1095
1096
|
};
|
|
1096
1097
|
isEnabled?: boolean | undefined;
|
|
1097
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1098
1098
|
}>>;
|
|
1099
1099
|
export declare const EducationalPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
1100
1100
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1102,7 +1102,7 @@ export declare const EducationalPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1102
1102
|
}>>;
|
|
1103
1103
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1104
1104
|
accountId: z.ZodString;
|
|
1105
|
-
updatedAt: z.
|
|
1105
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1106
1106
|
value: z.ZodObject<{
|
|
1107
1107
|
hasCompletedDesignGuide: z.ZodOptional<z.ZodBoolean>;
|
|
1108
1108
|
hasVisitedEducationalPlatform: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1113,12 +1113,12 @@ export declare const EducationalPlatformResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1113
1113
|
}, {
|
|
1114
1114
|
id: string;
|
|
1115
1115
|
accountId: string;
|
|
1116
|
+
updatedAt: Date;
|
|
1116
1117
|
value: {
|
|
1117
1118
|
hasCompletedDesignGuide?: boolean | undefined;
|
|
1118
1119
|
hasVisitedEducationalPlatform?: boolean | undefined;
|
|
1119
1120
|
};
|
|
1120
1121
|
isEnabled?: boolean | undefined;
|
|
1121
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1122
1122
|
}>>;
|
|
1123
1123
|
export declare const PrimaryLocaleResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
1124
1124
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1126,7 +1126,7 @@ export declare const PrimaryLocaleResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1126
1126
|
}>>;
|
|
1127
1127
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1128
1128
|
accountId: z.ZodString;
|
|
1129
|
-
updatedAt: z.
|
|
1129
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1130
1130
|
value: z.ZodOptional<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
|
|
1131
1131
|
af: "af";
|
|
1132
1132
|
am: "am";
|
|
@@ -1235,8 +1235,8 @@ export declare const PrimaryLocaleResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1235
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, {
|
|
1236
1236
|
id: string;
|
|
1237
1237
|
accountId: string;
|
|
1238
|
+
updatedAt: Date;
|
|
1238
1239
|
isEnabled?: boolean | undefined;
|
|
1239
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1240
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;
|
|
1241
1241
|
}>>;
|
|
1242
1242
|
export declare const DefaultResponseSchema: z.ZodPipe<z.ZodOptional<z.ZodObject<{
|
|
@@ -1245,14 +1245,14 @@ export declare const DefaultResponseSchema: z.ZodPipe<z.ZodOptional<z.ZodObject<
|
|
|
1245
1245
|
}>>;
|
|
1246
1246
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1247
1247
|
accountId: z.ZodString;
|
|
1248
|
-
updatedAt: z.
|
|
1248
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1249
1249
|
value: z.ZodString;
|
|
1250
1250
|
}, z.core.$strip>>, z.ZodTransform<string | undefined, {
|
|
1251
1251
|
id: string;
|
|
1252
1252
|
accountId: string;
|
|
1253
|
+
updatedAt: Date;
|
|
1253
1254
|
value: string;
|
|
1254
1255
|
isEnabled?: boolean | undefined;
|
|
1255
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1256
1256
|
} | undefined>>;
|
|
1257
1257
|
export declare const CurrencySettingResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
1258
1258
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1260,7 +1260,7 @@ export declare const CurrencySettingResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1260
1260
|
}>>;
|
|
1261
1261
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1262
1262
|
accountId: z.ZodString;
|
|
1263
|
-
updatedAt: z.
|
|
1263
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1264
1264
|
value: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
|
|
1265
1265
|
AED: "AED";
|
|
1266
1266
|
ARS: "ARS";
|
|
@@ -1302,8 +1302,8 @@ export declare const CurrencySettingResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1302
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", {
|
|
1303
1303
|
id: string;
|
|
1304
1304
|
accountId: string;
|
|
1305
|
+
updatedAt: Date;
|
|
1305
1306
|
isEnabled?: boolean | undefined;
|
|
1306
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1307
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;
|
|
1308
1308
|
}>>;
|
|
1309
1309
|
export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
@@ -1312,7 +1312,7 @@ export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1312
1312
|
}>>;
|
|
1313
1313
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1314
1314
|
accountId: z.ZodString;
|
|
1315
|
-
updatedAt: z.
|
|
1315
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1316
1316
|
value: z.ZodObject<{
|
|
1317
1317
|
views: z.ZodArray<z.ZodObject<{
|
|
1318
1318
|
name: z.ZodString;
|
|
@@ -1327,6 +1327,7 @@ export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1327
1327
|
}, {
|
|
1328
1328
|
id: string;
|
|
1329
1329
|
accountId: string;
|
|
1330
|
+
updatedAt: Date;
|
|
1330
1331
|
value: {
|
|
1331
1332
|
views: {
|
|
1332
1333
|
name: string;
|
|
@@ -1334,7 +1335,6 @@ export declare const ProductFilterViewsResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1334
1335
|
}[];
|
|
1335
1336
|
};
|
|
1336
1337
|
isEnabled?: boolean | undefined;
|
|
1337
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1338
1338
|
}>>;
|
|
1339
1339
|
export declare const SettingsSchemas: {
|
|
1340
1340
|
content_optimization: z.ZodPipe<z.ZodObject<{
|
|
@@ -1343,7 +1343,7 @@ export declare const SettingsSchemas: {
|
|
|
1343
1343
|
}>>;
|
|
1344
1344
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1345
1345
|
accountId: z.ZodString;
|
|
1346
|
-
updatedAt: z.
|
|
1346
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1347
1347
|
value: z.ZodObject<{
|
|
1348
1348
|
tone_of_voice: z.ZodNullable<z.ZodString>;
|
|
1349
1349
|
use_online_summary: z.ZodBoolean;
|
|
@@ -1458,6 +1458,7 @@ export declare const SettingsSchemas: {
|
|
|
1458
1458
|
}, {
|
|
1459
1459
|
id: string;
|
|
1460
1460
|
accountId: string;
|
|
1461
|
+
updatedAt: Date;
|
|
1461
1462
|
value: {
|
|
1462
1463
|
tone_of_voice: string | null;
|
|
1463
1464
|
use_online_summary: boolean;
|
|
@@ -1511,7 +1512,6 @@ export declare const SettingsSchemas: {
|
|
|
1511
1512
|
prioritization_strategy?: string | undefined;
|
|
1512
1513
|
};
|
|
1513
1514
|
isEnabled?: boolean | undefined;
|
|
1514
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1515
1515
|
}>>;
|
|
1516
1516
|
content_optimization_refine: z.ZodPipe<z.ZodObject<{
|
|
1517
1517
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1519,7 +1519,7 @@ export declare const SettingsSchemas: {
|
|
|
1519
1519
|
}>>;
|
|
1520
1520
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1521
1521
|
accountId: z.ZodString;
|
|
1522
|
-
updatedAt: z.
|
|
1522
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1523
1523
|
value: z.ZodObject<{
|
|
1524
1524
|
use_feedback_based_instructions: z.ZodBoolean;
|
|
1525
1525
|
force_shop_language: z.ZodBoolean;
|
|
@@ -1530,12 +1530,12 @@ export declare const SettingsSchemas: {
|
|
|
1530
1530
|
}, {
|
|
1531
1531
|
id: string;
|
|
1532
1532
|
accountId: string;
|
|
1533
|
+
updatedAt: Date;
|
|
1533
1534
|
value: {
|
|
1534
1535
|
use_feedback_based_instructions: boolean;
|
|
1535
1536
|
force_shop_language: boolean;
|
|
1536
1537
|
};
|
|
1537
1538
|
isEnabled?: boolean | undefined;
|
|
1538
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1539
1539
|
}>>;
|
|
1540
1540
|
content_optimization_translate: z.ZodPipe<z.ZodObject<{
|
|
1541
1541
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1543,7 +1543,7 @@ export declare const SettingsSchemas: {
|
|
|
1543
1543
|
}>>;
|
|
1544
1544
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1545
1545
|
accountId: z.ZodString;
|
|
1546
|
-
updatedAt: z.
|
|
1546
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1547
1547
|
value: z.ZodObject<{
|
|
1548
1548
|
use_feedback_based_instructions: z.ZodBoolean;
|
|
1549
1549
|
only_generate_missing: z.ZodBoolean;
|
|
@@ -1724,6 +1724,7 @@ export declare const SettingsSchemas: {
|
|
|
1724
1724
|
}, {
|
|
1725
1725
|
id: string;
|
|
1726
1726
|
accountId: string;
|
|
1727
|
+
updatedAt: Date;
|
|
1727
1728
|
value: {
|
|
1728
1729
|
use_feedback_based_instructions: boolean;
|
|
1729
1730
|
only_generate_missing: boolean;
|
|
@@ -1752,7 +1753,6 @@ export declare const SettingsSchemas: {
|
|
|
1752
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;
|
|
1753
1754
|
};
|
|
1754
1755
|
isEnabled?: boolean | undefined;
|
|
1755
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1756
1756
|
}>>;
|
|
1757
1757
|
content_optimization_write: z.ZodPipe<z.ZodObject<{
|
|
1758
1758
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1760,7 +1760,7 @@ export declare const SettingsSchemas: {
|
|
|
1760
1760
|
}>>;
|
|
1761
1761
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1762
1762
|
accountId: z.ZodString;
|
|
1763
|
-
updatedAt: z.
|
|
1763
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1764
1764
|
value: z.ZodObject<{
|
|
1765
1765
|
use_feedback_based_instructions: z.ZodBoolean;
|
|
1766
1766
|
only_generate_missing: z.ZodBoolean;
|
|
@@ -1771,12 +1771,12 @@ export declare const SettingsSchemas: {
|
|
|
1771
1771
|
}, {
|
|
1772
1772
|
id: string;
|
|
1773
1773
|
accountId: string;
|
|
1774
|
+
updatedAt: Date;
|
|
1774
1775
|
value: {
|
|
1775
1776
|
use_feedback_based_instructions: boolean;
|
|
1776
1777
|
only_generate_missing: boolean;
|
|
1777
1778
|
};
|
|
1778
1779
|
isEnabled?: boolean | undefined;
|
|
1779
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1780
1780
|
}>>;
|
|
1781
1781
|
content_optimization_write_seo: z.ZodPipe<z.ZodObject<{
|
|
1782
1782
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1784,7 +1784,7 @@ export declare const SettingsSchemas: {
|
|
|
1784
1784
|
}>>;
|
|
1785
1785
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1786
1786
|
accountId: z.ZodString;
|
|
1787
|
-
updatedAt: z.
|
|
1787
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1788
1788
|
value: z.ZodObject<{
|
|
1789
1789
|
use_feedback_based_instructions: z.ZodBoolean;
|
|
1790
1790
|
character_limit_title: z.ZodNumber;
|
|
@@ -1799,6 +1799,7 @@ export declare const SettingsSchemas: {
|
|
|
1799
1799
|
}, {
|
|
1800
1800
|
id: string;
|
|
1801
1801
|
accountId: string;
|
|
1802
|
+
updatedAt: Date;
|
|
1802
1803
|
value: {
|
|
1803
1804
|
use_feedback_based_instructions: boolean;
|
|
1804
1805
|
character_limit_title: number;
|
|
@@ -1806,7 +1807,6 @@ export declare const SettingsSchemas: {
|
|
|
1806
1807
|
only_generate_missing: boolean;
|
|
1807
1808
|
};
|
|
1808
1809
|
isEnabled?: boolean | undefined;
|
|
1809
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1810
1810
|
}>>;
|
|
1811
1811
|
content_optimization_reduce_similarity: z.ZodPipe<z.ZodObject<{
|
|
1812
1812
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1814,7 +1814,7 @@ export declare const SettingsSchemas: {
|
|
|
1814
1814
|
}>>;
|
|
1815
1815
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1816
1816
|
accountId: z.ZodString;
|
|
1817
|
-
updatedAt: z.
|
|
1817
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1818
1818
|
value: z.ZodObject<{
|
|
1819
1819
|
use_feedback_based_instructions: z.ZodBoolean;
|
|
1820
1820
|
similarity_threshold: z.ZodNumber;
|
|
@@ -1825,12 +1825,12 @@ export declare const SettingsSchemas: {
|
|
|
1825
1825
|
}, {
|
|
1826
1826
|
id: string;
|
|
1827
1827
|
accountId: string;
|
|
1828
|
+
updatedAt: Date;
|
|
1828
1829
|
value: {
|
|
1829
1830
|
use_feedback_based_instructions: boolean;
|
|
1830
1831
|
similarity_threshold: number;
|
|
1831
1832
|
};
|
|
1832
1833
|
isEnabled?: boolean | undefined;
|
|
1833
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1834
1834
|
}>>;
|
|
1835
1835
|
content_optimization_write_seo_platform: z.ZodPipe<z.ZodObject<{
|
|
1836
1836
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1838,7 +1838,7 @@ export declare const SettingsSchemas: {
|
|
|
1838
1838
|
}>>;
|
|
1839
1839
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1840
1840
|
accountId: z.ZodString;
|
|
1841
|
-
updatedAt: z.
|
|
1841
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1842
1842
|
value: z.ZodObject<{
|
|
1843
1843
|
isEnabled: z.ZodBoolean;
|
|
1844
1844
|
fields: z.ZodObject<{
|
|
@@ -1863,6 +1863,7 @@ export declare const SettingsSchemas: {
|
|
|
1863
1863
|
}, {
|
|
1864
1864
|
id: string;
|
|
1865
1865
|
accountId: string;
|
|
1866
|
+
updatedAt: Date;
|
|
1866
1867
|
value: {
|
|
1867
1868
|
isEnabled: boolean;
|
|
1868
1869
|
fields: {
|
|
@@ -1875,7 +1876,6 @@ export declare const SettingsSchemas: {
|
|
|
1875
1876
|
};
|
|
1876
1877
|
};
|
|
1877
1878
|
isEnabled?: boolean | undefined;
|
|
1878
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1879
1879
|
}>>;
|
|
1880
1880
|
inventory_optimization_economic_reward: z.ZodPipe<z.ZodObject<{
|
|
1881
1881
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1883,7 +1883,7 @@ export declare const SettingsSchemas: {
|
|
|
1883
1883
|
}>>;
|
|
1884
1884
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1885
1885
|
accountId: z.ZodString;
|
|
1886
|
-
updatedAt: z.
|
|
1886
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1887
1887
|
value: z.ZodObject<{
|
|
1888
1888
|
lead_time_days: z.ZodNumber;
|
|
1889
1889
|
stockout_cost_ratio: z.ZodNumber;
|
|
@@ -1946,6 +1946,7 @@ export declare const SettingsSchemas: {
|
|
|
1946
1946
|
}, {
|
|
1947
1947
|
id: string;
|
|
1948
1948
|
accountId: string;
|
|
1949
|
+
updatedAt: Date;
|
|
1949
1950
|
value: {
|
|
1950
1951
|
lead_time_days: number;
|
|
1951
1952
|
stockout_cost_ratio: number;
|
|
@@ -1967,7 +1968,6 @@ export declare const SettingsSchemas: {
|
|
|
1967
1968
|
}>>;
|
|
1968
1969
|
};
|
|
1969
1970
|
isEnabled?: boolean | undefined;
|
|
1970
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
1971
1971
|
}>>;
|
|
1972
1972
|
wizard_platform: z.ZodPipe<z.ZodObject<{
|
|
1973
1973
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -1975,7 +1975,7 @@ export declare const SettingsSchemas: {
|
|
|
1975
1975
|
}>>;
|
|
1976
1976
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1977
1977
|
accountId: z.ZodString;
|
|
1978
|
-
updatedAt: z.
|
|
1978
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
1979
1979
|
value: z.ZodObject<{
|
|
1980
1980
|
isInterrestedInRefinementEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1981
1981
|
isInterestedInTranslation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1994,6 +1994,7 @@ export declare const SettingsSchemas: {
|
|
|
1994
1994
|
}, {
|
|
1995
1995
|
id: string;
|
|
1996
1996
|
accountId: string;
|
|
1997
|
+
updatedAt: Date;
|
|
1997
1998
|
value: {
|
|
1998
1999
|
isInterrestedInRefinementEnabled?: boolean | undefined;
|
|
1999
2000
|
isInterestedInTranslation?: boolean | undefined;
|
|
@@ -2003,7 +2004,6 @@ export declare const SettingsSchemas: {
|
|
|
2003
2004
|
hasCompletedWizard?: boolean | undefined;
|
|
2004
2005
|
};
|
|
2005
2006
|
isEnabled?: boolean | undefined;
|
|
2006
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2007
2007
|
}>>;
|
|
2008
2008
|
primary_locale: z.ZodPipe<z.ZodObject<{
|
|
2009
2009
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -2011,7 +2011,7 @@ export declare const SettingsSchemas: {
|
|
|
2011
2011
|
}>>;
|
|
2012
2012
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2013
2013
|
accountId: z.ZodString;
|
|
2014
|
-
updatedAt: z.
|
|
2014
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2015
2015
|
value: z.ZodOptional<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodEnum<{
|
|
2016
2016
|
af: "af";
|
|
2017
2017
|
am: "am";
|
|
@@ -2120,8 +2120,8 @@ export declare const SettingsSchemas: {
|
|
|
2120
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, {
|
|
2121
2121
|
id: string;
|
|
2122
2122
|
accountId: string;
|
|
2123
|
+
updatedAt: Date;
|
|
2123
2124
|
isEnabled?: boolean | undefined;
|
|
2124
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2125
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;
|
|
2126
2126
|
}>>;
|
|
2127
2127
|
shopify_primary_url: z.ZodPipe<z.ZodOptional<z.ZodObject<{
|
|
@@ -2130,14 +2130,14 @@ export declare const SettingsSchemas: {
|
|
|
2130
2130
|
}>>;
|
|
2131
2131
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2132
2132
|
accountId: z.ZodString;
|
|
2133
|
-
updatedAt: z.
|
|
2133
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2134
2134
|
value: z.ZodString;
|
|
2135
2135
|
}, z.core.$strip>>, z.ZodTransform<string | undefined, {
|
|
2136
2136
|
id: string;
|
|
2137
2137
|
accountId: string;
|
|
2138
|
+
updatedAt: Date;
|
|
2138
2139
|
value: string;
|
|
2139
2140
|
isEnabled?: boolean | undefined;
|
|
2140
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2141
2141
|
} | undefined>>;
|
|
2142
2142
|
analytics_timezone: z.ZodPipe<z.ZodOptional<z.ZodObject<{
|
|
2143
2143
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -2145,14 +2145,14 @@ export declare const SettingsSchemas: {
|
|
|
2145
2145
|
}>>;
|
|
2146
2146
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2147
2147
|
accountId: z.ZodString;
|
|
2148
|
-
updatedAt: z.
|
|
2148
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2149
2149
|
value: z.ZodString;
|
|
2150
2150
|
}, z.core.$strip>>, z.ZodTransform<string | undefined, {
|
|
2151
2151
|
id: string;
|
|
2152
2152
|
accountId: string;
|
|
2153
|
+
updatedAt: Date;
|
|
2153
2154
|
value: string;
|
|
2154
2155
|
isEnabled?: boolean | undefined;
|
|
2155
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2156
2156
|
} | undefined>>;
|
|
2157
2157
|
company_description: z.ZodPipe<z.ZodOptional<z.ZodObject<{
|
|
2158
2158
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -2160,14 +2160,14 @@ export declare const SettingsSchemas: {
|
|
|
2160
2160
|
}>>;
|
|
2161
2161
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2162
2162
|
accountId: z.ZodString;
|
|
2163
|
-
updatedAt: z.
|
|
2163
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2164
2164
|
value: z.ZodString;
|
|
2165
2165
|
}, z.core.$strip>>, z.ZodTransform<string | undefined, {
|
|
2166
2166
|
id: string;
|
|
2167
2167
|
accountId: string;
|
|
2168
|
+
updatedAt: Date;
|
|
2168
2169
|
value: string;
|
|
2169
2170
|
isEnabled?: boolean | undefined;
|
|
2170
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2171
2171
|
} | undefined>>;
|
|
2172
2172
|
analytics_currency_code: z.ZodPipe<z.ZodObject<{
|
|
2173
2173
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -2175,7 +2175,7 @@ export declare const SettingsSchemas: {
|
|
|
2175
2175
|
}>>;
|
|
2176
2176
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2177
2177
|
accountId: z.ZodString;
|
|
2178
|
-
updatedAt: z.
|
|
2178
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2179
2179
|
value: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
|
|
2180
2180
|
AED: "AED";
|
|
2181
2181
|
ARS: "ARS";
|
|
@@ -2217,8 +2217,8 @@ export declare const SettingsSchemas: {
|
|
|
2217
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", {
|
|
2218
2218
|
id: string;
|
|
2219
2219
|
accountId: string;
|
|
2220
|
+
updatedAt: Date;
|
|
2220
2221
|
isEnabled?: boolean | undefined;
|
|
2221
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2222
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;
|
|
2223
2223
|
}>>;
|
|
2224
2224
|
design_guide_section_templates: z.ZodPipe<z.ZodObject<{
|
|
@@ -2227,7 +2227,7 @@ export declare const SettingsSchemas: {
|
|
|
2227
2227
|
}>>;
|
|
2228
2228
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2229
2229
|
accountId: z.ZodString;
|
|
2230
|
-
updatedAt: z.
|
|
2230
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2231
2231
|
value: z.ZodObject<{
|
|
2232
2232
|
sections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2233
2233
|
name: z.ZodString;
|
|
@@ -2330,6 +2330,7 @@ export declare const SettingsSchemas: {
|
|
|
2330
2330
|
}, {
|
|
2331
2331
|
id: string;
|
|
2332
2332
|
accountId: string;
|
|
2333
|
+
updatedAt: Date;
|
|
2333
2334
|
value: {
|
|
2334
2335
|
sections: ({
|
|
2335
2336
|
name: string;
|
|
@@ -2377,7 +2378,6 @@ export declare const SettingsSchemas: {
|
|
|
2377
2378
|
})[];
|
|
2378
2379
|
};
|
|
2379
2380
|
isEnabled?: boolean | undefined;
|
|
2380
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2381
2381
|
}>>;
|
|
2382
2382
|
unknown: z.ZodPipe<z.ZodOptional<z.ZodObject<{
|
|
2383
2383
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -2385,14 +2385,14 @@ export declare const SettingsSchemas: {
|
|
|
2385
2385
|
}>>;
|
|
2386
2386
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2387
2387
|
accountId: z.ZodString;
|
|
2388
|
-
updatedAt: z.
|
|
2388
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2389
2389
|
value: z.ZodString;
|
|
2390
2390
|
}, z.core.$strip>>, z.ZodTransform<string | undefined, {
|
|
2391
2391
|
id: string;
|
|
2392
2392
|
accountId: string;
|
|
2393
|
+
updatedAt: Date;
|
|
2393
2394
|
value: string;
|
|
2394
2395
|
isEnabled?: boolean | undefined;
|
|
2395
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2396
2396
|
} | undefined>>;
|
|
2397
2397
|
educational_platform: z.ZodPipe<z.ZodObject<{
|
|
2398
2398
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -2400,7 +2400,7 @@ export declare const SettingsSchemas: {
|
|
|
2400
2400
|
}>>;
|
|
2401
2401
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2402
2402
|
accountId: z.ZodString;
|
|
2403
|
-
updatedAt: z.
|
|
2403
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2404
2404
|
value: z.ZodObject<{
|
|
2405
2405
|
hasCompletedDesignGuide: z.ZodOptional<z.ZodBoolean>;
|
|
2406
2406
|
hasVisitedEducationalPlatform: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2411,12 +2411,12 @@ export declare const SettingsSchemas: {
|
|
|
2411
2411
|
}, {
|
|
2412
2412
|
id: string;
|
|
2413
2413
|
accountId: string;
|
|
2414
|
+
updatedAt: Date;
|
|
2414
2415
|
value: {
|
|
2415
2416
|
hasCompletedDesignGuide?: boolean | undefined;
|
|
2416
2417
|
hasVisitedEducationalPlatform?: boolean | undefined;
|
|
2417
2418
|
};
|
|
2418
2419
|
isEnabled?: boolean | undefined;
|
|
2419
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2420
2420
|
}>>;
|
|
2421
2421
|
content_optimization_product_meta_ids: z.ZodPipe<z.ZodObject<{
|
|
2422
2422
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -2424,7 +2424,7 @@ export declare const SettingsSchemas: {
|
|
|
2424
2424
|
}>>;
|
|
2425
2425
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2426
2426
|
accountId: z.ZodString;
|
|
2427
|
-
updatedAt: z.
|
|
2427
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2428
2428
|
value: z.ZodObject<{
|
|
2429
2429
|
metafields: z.ZodArray<z.ZodObject<{
|
|
2430
2430
|
metafield_id: z.ZodString;
|
|
@@ -2439,6 +2439,7 @@ export declare const SettingsSchemas: {
|
|
|
2439
2439
|
}, {
|
|
2440
2440
|
id: string;
|
|
2441
2441
|
accountId: string;
|
|
2442
|
+
updatedAt: Date;
|
|
2442
2443
|
value: {
|
|
2443
2444
|
metafields: {
|
|
2444
2445
|
metafield_id: string;
|
|
@@ -2446,7 +2447,6 @@ export declare const SettingsSchemas: {
|
|
|
2446
2447
|
}[];
|
|
2447
2448
|
};
|
|
2448
2449
|
isEnabled?: boolean | undefined;
|
|
2449
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2450
2450
|
}>>;
|
|
2451
2451
|
content_optimization_collection_meta_ids: z.ZodPipe<z.ZodObject<{
|
|
2452
2452
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -2454,7 +2454,7 @@ export declare const SettingsSchemas: {
|
|
|
2454
2454
|
}>>;
|
|
2455
2455
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2456
2456
|
accountId: z.ZodString;
|
|
2457
|
-
updatedAt: z.
|
|
2457
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2458
2458
|
value: z.ZodObject<{
|
|
2459
2459
|
metafields: z.ZodArray<z.ZodObject<{
|
|
2460
2460
|
metafield_id: z.ZodString;
|
|
@@ -2469,6 +2469,7 @@ export declare const SettingsSchemas: {
|
|
|
2469
2469
|
}, {
|
|
2470
2470
|
id: string;
|
|
2471
2471
|
accountId: string;
|
|
2472
|
+
updatedAt: Date;
|
|
2472
2473
|
value: {
|
|
2473
2474
|
metafields: {
|
|
2474
2475
|
metafield_id: string;
|
|
@@ -2476,7 +2477,6 @@ export declare const SettingsSchemas: {
|
|
|
2476
2477
|
}[];
|
|
2477
2478
|
};
|
|
2478
2479
|
isEnabled?: boolean | undefined;
|
|
2479
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2480
2480
|
}>>;
|
|
2481
2481
|
"product-filter-views": z.ZodPipe<z.ZodObject<{
|
|
2482
2482
|
id: z.ZodCatch<z.ZodEnum<{
|
|
@@ -2484,7 +2484,7 @@ export declare const SettingsSchemas: {
|
|
|
2484
2484
|
}>>;
|
|
2485
2485
|
isEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2486
2486
|
accountId: z.ZodString;
|
|
2487
|
-
updatedAt: z.
|
|
2487
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2488
2488
|
value: z.ZodObject<{
|
|
2489
2489
|
views: z.ZodArray<z.ZodObject<{
|
|
2490
2490
|
name: z.ZodString;
|
|
@@ -2499,6 +2499,7 @@ export declare const SettingsSchemas: {
|
|
|
2499
2499
|
}, {
|
|
2500
2500
|
id: string;
|
|
2501
2501
|
accountId: string;
|
|
2502
|
+
updatedAt: Date;
|
|
2502
2503
|
value: {
|
|
2503
2504
|
views: {
|
|
2504
2505
|
name: string;
|
|
@@ -2506,7 +2507,6 @@ export declare const SettingsSchemas: {
|
|
|
2506
2507
|
}[];
|
|
2507
2508
|
};
|
|
2508
2509
|
isEnabled?: boolean | undefined;
|
|
2509
|
-
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
2510
2510
|
}>>;
|
|
2511
2511
|
};
|
|
2512
2512
|
//# sourceMappingURL=accountSettings.d.ts.map
|