@omni-graph/omni-model 0.2.39 → 0.2.41

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 (45) hide show
  1. package/dist/constants/SupportedCurrency.d.ts +4 -0
  2. package/dist/constants/SupportedCurrency.d.ts.map +1 -0
  3. package/dist/constants/SupportedCurrency.js +43 -0
  4. package/dist/constants/SupportedCurrency.js.map +1 -0
  5. package/dist/constants/index.d.ts +3 -0
  6. package/dist/constants/index.d.ts.map +1 -0
  7. package/dist/constants/index.js +3 -0
  8. package/dist/constants/index.js.map +1 -0
  9. package/dist/constants/languageCodeMapper.d.ts +10 -0
  10. package/dist/constants/languageCodeMapper.d.ts.map +1 -0
  11. package/dist/constants/languageCodeMapper.js +214 -0
  12. package/dist/constants/languageCodeMapper.js.map +1 -0
  13. package/dist/functions/billing/billingFunctions.d.ts +2 -2
  14. package/dist/functions/billing/billingFunctions.d.ts.map +1 -1
  15. package/dist/functions/billing/billingFunctions.js +9 -9
  16. package/dist/functions/billing/billingFunctions.js.map +1 -1
  17. package/dist/functions/index.d.ts.map +1 -1
  18. package/dist/functions/index.js.map +1 -1
  19. package/dist/index.d.ts +3 -1
  20. package/dist/index.d.ts.map +1 -1
  21. package/dist/index.js +3 -1
  22. package/dist/index.js.map +1 -1
  23. package/dist/types/billing/bilingTypes.d.ts.map +1 -1
  24. package/dist/zod/account-settings/accountSettings.d.ts +2114 -0
  25. package/dist/zod/account-settings/accountSettings.d.ts.map +1 -0
  26. package/dist/zod/account-settings/accountSettings.js +167 -0
  27. package/dist/zod/account-settings/accountSettings.js.map +1 -0
  28. package/dist/zod/account-settings/base.d.ts +39 -0
  29. package/dist/zod/account-settings/base.d.ts.map +1 -0
  30. package/dist/zod/account-settings/base.js +32 -0
  31. package/dist/zod/account-settings/base.js.map +1 -0
  32. package/dist/zod/account-settings/index.d.ts +4 -0
  33. package/dist/zod/account-settings/index.d.ts.map +1 -0
  34. package/dist/zod/account-settings/index.js +4 -0
  35. package/dist/zod/account-settings/index.js.map +1 -0
  36. package/dist/zod/index.d.ts +3 -1
  37. package/dist/zod/index.d.ts.map +1 -1
  38. package/dist/zod/index.js +3 -1
  39. package/dist/zod/index.js.map +1 -1
  40. package/dist/zod/recommendations/base.d.ts +4 -3
  41. package/dist/zod/recommendations/base.d.ts.map +1 -1
  42. package/dist/zod/recommendations/contentOptimization/base.d.ts +34 -34
  43. package/dist/zod/recommendations/contentOptimization/base.d.ts.map +1 -1
  44. package/dist/zod/recommendations/contentOptimization/translation.d.ts +29 -29
  45. package/package.json +10 -7
@@ -0,0 +1,2114 @@
1
+ import { z } from 'zod';
2
+ import { AccountSettingsIdEnum } from './base';
3
+ export type DefaultSettingsResponse = z.infer<typeof DefaultResponseSchema>;
4
+ export type ShopifyPrimaryLocaleResponse = z.infer<typeof ShopifyPrimaryLocaleResponseSchema>;
5
+ export type WizardPlatformResponse = z.infer<typeof WizardPlatformResponseSchema>;
6
+ export type InventoryOptimizationResponse = z.infer<typeof InventoryOptimizationResponseSchema>;
7
+ export type ContentOptimizationWriteSEOPlatformResponse = z.infer<typeof ContentOptimizationWriteSEOPlatformResponseSchema>;
8
+ export type ContentOptimizationResponse = z.infer<typeof ContentOptimizationResponseSchema>;
9
+ export type ContentOptimizationRefinementResponse = z.infer<typeof ContentOptimizationRefinementResponseSchema>;
10
+ export type ContentOptimizationTranslationResponse = z.infer<typeof ContentOptimizationTranslationResponseSchema>;
11
+ export type ContentOptimizationWriteResponse = z.infer<typeof ContentOptimizationWriteResponseSchema>;
12
+ export type ContentOptimizationSEOResponse = z.infer<typeof ContentOptimizationSEOResponseSchema>;
13
+ export type ContentOptimizationReduceSimilarityResponse = z.infer<typeof ContentOptimizationReduceSimilarityResponseSchema>;
14
+ export type CurrencySettingResponse = z.infer<typeof CurrencySettingResponseSchema>;
15
+ export type SettingsIdToResponseMap = {
16
+ [AccountSettingsIdEnum.INVENTORY_OPTIMIZATION_ECONOMIC_REWARD]: InventoryOptimizationResponse;
17
+ [AccountSettingsIdEnum.SHOPIFY_PRIMARY_URL]: DefaultSettingsResponse;
18
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION]: ContentOptimizationResponse;
19
+ [AccountSettingsIdEnum.ANALYTICS_TIMEZONE]: DefaultSettingsResponse;
20
+ [AccountSettingsIdEnum.COMPANY_DESCRIPTION]: DefaultSettingsResponse;
21
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_REFINEMENT]: ContentOptimizationRefinementResponse;
22
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_TRANSLATE]: ContentOptimizationTranslationResponse;
23
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_WRITE]: ContentOptimizationWriteResponse;
24
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_SEO]: ContentOptimizationSEOResponse;
25
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_REDUCE_SIMILARITY]: ContentOptimizationReduceSimilarityResponse;
26
+ [AccountSettingsIdEnum.SHOPIFY_PRIMARY_LOCALE]: ShopifyPrimaryLocaleResponse;
27
+ [AccountSettingsIdEnum.ANALYTICS_CURRENCY_CODE]: CurrencySettingResponse;
28
+ [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_WRITE_SEO_PLATFORM]: ContentOptimizationWriteSEOPlatformResponse;
29
+ [AccountSettingsIdEnum.WIZARD_PLATFORM]: WizardPlatformResponse;
30
+ };
31
+ export declare const InventoryOptimizationResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
32
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
33
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
34
+ accountId: z.ZodString;
35
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
36
+ }, {
37
+ value: z.ZodObject<{
38
+ lead_time_days: z.ZodNumber;
39
+ stockout_cost_ratio: z.ZodNumber;
40
+ holding_cost_ratio: z.ZodNumber;
41
+ allow_backorders: z.ZodBoolean;
42
+ location_ids: z.ZodArray<z.ZodString, "many">;
43
+ max_locations: z.ZodNumber;
44
+ probability_threshold: z.ZodNumber;
45
+ maximum_periods: z.ZodNumber;
46
+ discount_rate: z.ZodNumber;
47
+ }, "strip", z.ZodTypeAny, {
48
+ lead_time_days: number;
49
+ stockout_cost_ratio: number;
50
+ holding_cost_ratio: number;
51
+ allow_backorders: boolean;
52
+ location_ids: string[];
53
+ max_locations: number;
54
+ probability_threshold: number;
55
+ maximum_periods: number;
56
+ discount_rate: number;
57
+ }, {
58
+ lead_time_days: number;
59
+ stockout_cost_ratio: number;
60
+ holding_cost_ratio: number;
61
+ allow_backorders: boolean;
62
+ location_ids: string[];
63
+ max_locations: number;
64
+ probability_threshold: number;
65
+ maximum_periods: number;
66
+ discount_rate: number;
67
+ }>;
68
+ }>, "strip", z.ZodTypeAny, {
69
+ id: string;
70
+ value: {
71
+ lead_time_days: number;
72
+ stockout_cost_ratio: number;
73
+ holding_cost_ratio: number;
74
+ allow_backorders: boolean;
75
+ location_ids: string[];
76
+ max_locations: number;
77
+ probability_threshold: number;
78
+ maximum_periods: number;
79
+ discount_rate: number;
80
+ };
81
+ accountId: string;
82
+ isEnabled?: boolean | undefined;
83
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
84
+ }, {
85
+ value: {
86
+ lead_time_days: number;
87
+ stockout_cost_ratio: number;
88
+ holding_cost_ratio: number;
89
+ allow_backorders: boolean;
90
+ location_ids: string[];
91
+ max_locations: number;
92
+ probability_threshold: number;
93
+ maximum_periods: number;
94
+ discount_rate: number;
95
+ };
96
+ accountId: string;
97
+ id?: unknown;
98
+ isEnabled?: boolean | undefined;
99
+ updatedAt?: string | undefined;
100
+ }>, {
101
+ lead_time_days: number;
102
+ stockout_cost_ratio: number;
103
+ holding_cost_ratio: number;
104
+ allow_backorders: boolean;
105
+ location_ids: string[];
106
+ max_locations: number;
107
+ probability_threshold: number;
108
+ maximum_periods: number;
109
+ discount_rate: number;
110
+ }, {
111
+ value: {
112
+ lead_time_days: number;
113
+ stockout_cost_ratio: number;
114
+ holding_cost_ratio: number;
115
+ allow_backorders: boolean;
116
+ location_ids: string[];
117
+ max_locations: number;
118
+ probability_threshold: number;
119
+ maximum_periods: number;
120
+ discount_rate: number;
121
+ };
122
+ accountId: string;
123
+ id?: unknown;
124
+ isEnabled?: boolean | undefined;
125
+ updatedAt?: string | undefined;
126
+ }>;
127
+ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
128
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
129
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
130
+ accountId: z.ZodString;
131
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
132
+ }, {
133
+ value: z.ZodObject<{
134
+ tone_of_voice: z.ZodNullable<z.ZodString>;
135
+ use_online_summary: z.ZodBoolean;
136
+ }, "strip", z.ZodTypeAny, {
137
+ tone_of_voice: string | null;
138
+ use_online_summary: boolean;
139
+ }, {
140
+ tone_of_voice: string | null;
141
+ use_online_summary: boolean;
142
+ }>;
143
+ }>, "strip", z.ZodTypeAny, {
144
+ id: string;
145
+ value: {
146
+ tone_of_voice: string | null;
147
+ use_online_summary: boolean;
148
+ };
149
+ accountId: string;
150
+ isEnabled?: boolean | undefined;
151
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
152
+ }, {
153
+ value: {
154
+ tone_of_voice: string | null;
155
+ use_online_summary: boolean;
156
+ };
157
+ accountId: string;
158
+ id?: unknown;
159
+ isEnabled?: boolean | undefined;
160
+ updatedAt?: string | undefined;
161
+ }>, {
162
+ tone_of_voice: string | null;
163
+ use_online_summary: boolean;
164
+ }, {
165
+ value: {
166
+ tone_of_voice: string | null;
167
+ use_online_summary: boolean;
168
+ };
169
+ accountId: string;
170
+ id?: unknown;
171
+ isEnabled?: boolean | undefined;
172
+ updatedAt?: string | undefined;
173
+ }>;
174
+ export declare const ContentOptimizationRefinementResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
175
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
176
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
177
+ accountId: z.ZodString;
178
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
179
+ }, {
180
+ value: z.ZodObject<{
181
+ recommendation_severity_weight: z.ZodObject<{
182
+ improve: z.ZodNumber;
183
+ rewrite: z.ZodNumber;
184
+ }, "strip", z.ZodTypeAny, {
185
+ improve: number;
186
+ rewrite: number;
187
+ }, {
188
+ improve: number;
189
+ rewrite: number;
190
+ }>;
191
+ use_feedback_based_instructions: z.ZodBoolean;
192
+ force_shop_language: z.ZodBoolean;
193
+ }, "strip", z.ZodTypeAny, {
194
+ recommendation_severity_weight: {
195
+ improve: number;
196
+ rewrite: number;
197
+ };
198
+ use_feedback_based_instructions: boolean;
199
+ force_shop_language: boolean;
200
+ }, {
201
+ recommendation_severity_weight: {
202
+ improve: number;
203
+ rewrite: number;
204
+ };
205
+ use_feedback_based_instructions: boolean;
206
+ force_shop_language: boolean;
207
+ }>;
208
+ }>, "strip", z.ZodTypeAny, {
209
+ id: string;
210
+ value: {
211
+ recommendation_severity_weight: {
212
+ improve: number;
213
+ rewrite: number;
214
+ };
215
+ use_feedback_based_instructions: boolean;
216
+ force_shop_language: boolean;
217
+ };
218
+ accountId: string;
219
+ isEnabled?: boolean | undefined;
220
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
221
+ }, {
222
+ value: {
223
+ recommendation_severity_weight: {
224
+ improve: number;
225
+ rewrite: number;
226
+ };
227
+ use_feedback_based_instructions: boolean;
228
+ force_shop_language: boolean;
229
+ };
230
+ accountId: string;
231
+ id?: unknown;
232
+ isEnabled?: boolean | undefined;
233
+ updatedAt?: string | undefined;
234
+ }>, {
235
+ recommendation_severity_weight: {
236
+ improve: number;
237
+ rewrite: number;
238
+ };
239
+ use_feedback_based_instructions: boolean;
240
+ force_shop_language: boolean;
241
+ }, {
242
+ value: {
243
+ recommendation_severity_weight: {
244
+ improve: number;
245
+ rewrite: number;
246
+ };
247
+ use_feedback_based_instructions: boolean;
248
+ force_shop_language: boolean;
249
+ };
250
+ accountId: string;
251
+ id?: unknown;
252
+ isEnabled?: boolean | undefined;
253
+ updatedAt?: string | undefined;
254
+ }>;
255
+ export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
256
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
257
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
258
+ accountId: z.ZodString;
259
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
260
+ }, {
261
+ value: z.ZodObject<{
262
+ recommendation_severity_weight: z.ZodNumber;
263
+ use_feedback_based_instructions: z.ZodBoolean;
264
+ only_generate_missing: z.ZodBoolean;
265
+ translation_languages: z.ZodOptional<z.ZodArray<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodEnum<["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"]>>, "many">>;
266
+ translation_fields: z.ZodObject<{
267
+ content_optimization_translate_product_description_html: z.ZodObject<{
268
+ product_description_html: z.ZodObject<{
269
+ name: z.ZodLiteral<"product_description_html">;
270
+ enabled: z.ZodBoolean;
271
+ }, "strip", z.ZodTypeAny, {
272
+ name: "product_description_html";
273
+ enabled: boolean;
274
+ }, {
275
+ name: "product_description_html";
276
+ enabled: boolean;
277
+ }>;
278
+ product_name: z.ZodObject<{
279
+ name: z.ZodLiteral<"product_name">;
280
+ enabled: z.ZodBoolean;
281
+ }, "strip", z.ZodTypeAny, {
282
+ name: "product_name";
283
+ enabled: boolean;
284
+ }, {
285
+ name: "product_name";
286
+ enabled: boolean;
287
+ }>;
288
+ }, "strip", z.ZodTypeAny, {
289
+ product_description_html: {
290
+ name: "product_description_html";
291
+ enabled: boolean;
292
+ };
293
+ product_name: {
294
+ name: "product_name";
295
+ enabled: boolean;
296
+ };
297
+ }, {
298
+ product_description_html: {
299
+ name: "product_description_html";
300
+ enabled: boolean;
301
+ };
302
+ product_name: {
303
+ name: "product_name";
304
+ enabled: boolean;
305
+ };
306
+ }>;
307
+ content_optimization_translate_seo: z.ZodOptional<z.ZodObject<{
308
+ seo_title: z.ZodObject<{
309
+ name: z.ZodLiteral<"seo_title">;
310
+ enabled: z.ZodBoolean;
311
+ }, "strip", z.ZodTypeAny, {
312
+ name: "seo_title";
313
+ enabled: boolean;
314
+ }, {
315
+ name: "seo_title";
316
+ enabled: boolean;
317
+ }>;
318
+ seo_description: z.ZodObject<{
319
+ name: z.ZodLiteral<"seo_description">;
320
+ enabled: z.ZodBoolean;
321
+ }, "strip", z.ZodTypeAny, {
322
+ name: "seo_description";
323
+ enabled: boolean;
324
+ }, {
325
+ name: "seo_description";
326
+ enabled: boolean;
327
+ }>;
328
+ }, "strip", z.ZodTypeAny, {
329
+ seo_title: {
330
+ name: "seo_title";
331
+ enabled: boolean;
332
+ };
333
+ seo_description: {
334
+ name: "seo_description";
335
+ enabled: boolean;
336
+ };
337
+ }, {
338
+ seo_title: {
339
+ name: "seo_title";
340
+ enabled: boolean;
341
+ };
342
+ seo_description: {
343
+ name: "seo_description";
344
+ enabled: boolean;
345
+ };
346
+ }>>;
347
+ }, "strip", z.ZodTypeAny, {
348
+ content_optimization_translate_product_description_html: {
349
+ product_description_html: {
350
+ name: "product_description_html";
351
+ enabled: boolean;
352
+ };
353
+ product_name: {
354
+ name: "product_name";
355
+ enabled: boolean;
356
+ };
357
+ };
358
+ content_optimization_translate_seo?: {
359
+ seo_title: {
360
+ name: "seo_title";
361
+ enabled: boolean;
362
+ };
363
+ seo_description: {
364
+ name: "seo_description";
365
+ enabled: boolean;
366
+ };
367
+ } | undefined;
368
+ }, {
369
+ content_optimization_translate_product_description_html: {
370
+ product_description_html: {
371
+ name: "product_description_html";
372
+ enabled: boolean;
373
+ };
374
+ product_name: {
375
+ name: "product_name";
376
+ enabled: boolean;
377
+ };
378
+ };
379
+ content_optimization_translate_seo?: {
380
+ seo_title: {
381
+ name: "seo_title";
382
+ enabled: boolean;
383
+ };
384
+ seo_description: {
385
+ name: "seo_description";
386
+ enabled: boolean;
387
+ };
388
+ } | undefined;
389
+ }>;
390
+ }, "strip", z.ZodTypeAny, {
391
+ recommendation_severity_weight: number;
392
+ use_feedback_based_instructions: boolean;
393
+ only_generate_missing: boolean;
394
+ translation_fields: {
395
+ content_optimization_translate_product_description_html: {
396
+ product_description_html: {
397
+ name: "product_description_html";
398
+ enabled: boolean;
399
+ };
400
+ product_name: {
401
+ name: "product_name";
402
+ enabled: boolean;
403
+ };
404
+ };
405
+ content_optimization_translate_seo?: {
406
+ seo_title: {
407
+ name: "seo_title";
408
+ enabled: boolean;
409
+ };
410
+ seo_description: {
411
+ name: "seo_description";
412
+ enabled: boolean;
413
+ };
414
+ } | undefined;
415
+ };
416
+ 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;
417
+ }, {
418
+ recommendation_severity_weight: number;
419
+ use_feedback_based_instructions: boolean;
420
+ only_generate_missing: boolean;
421
+ translation_fields: {
422
+ content_optimization_translate_product_description_html: {
423
+ product_description_html: {
424
+ name: "product_description_html";
425
+ enabled: boolean;
426
+ };
427
+ product_name: {
428
+ name: "product_name";
429
+ enabled: boolean;
430
+ };
431
+ };
432
+ content_optimization_translate_seo?: {
433
+ seo_title: {
434
+ name: "seo_title";
435
+ enabled: boolean;
436
+ };
437
+ seo_description: {
438
+ name: "seo_description";
439
+ enabled: boolean;
440
+ };
441
+ } | undefined;
442
+ };
443
+ translation_languages?: string[] | undefined;
444
+ }>;
445
+ }>, "strip", z.ZodTypeAny, {
446
+ id: string;
447
+ value: {
448
+ recommendation_severity_weight: number;
449
+ use_feedback_based_instructions: boolean;
450
+ only_generate_missing: boolean;
451
+ translation_fields: {
452
+ content_optimization_translate_product_description_html: {
453
+ product_description_html: {
454
+ name: "product_description_html";
455
+ enabled: boolean;
456
+ };
457
+ product_name: {
458
+ name: "product_name";
459
+ enabled: boolean;
460
+ };
461
+ };
462
+ content_optimization_translate_seo?: {
463
+ seo_title: {
464
+ name: "seo_title";
465
+ enabled: boolean;
466
+ };
467
+ seo_description: {
468
+ name: "seo_description";
469
+ enabled: boolean;
470
+ };
471
+ } | undefined;
472
+ };
473
+ 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;
474
+ };
475
+ accountId: string;
476
+ isEnabled?: boolean | undefined;
477
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
478
+ }, {
479
+ value: {
480
+ recommendation_severity_weight: number;
481
+ use_feedback_based_instructions: boolean;
482
+ only_generate_missing: boolean;
483
+ translation_fields: {
484
+ content_optimization_translate_product_description_html: {
485
+ product_description_html: {
486
+ name: "product_description_html";
487
+ enabled: boolean;
488
+ };
489
+ product_name: {
490
+ name: "product_name";
491
+ enabled: boolean;
492
+ };
493
+ };
494
+ content_optimization_translate_seo?: {
495
+ seo_title: {
496
+ name: "seo_title";
497
+ enabled: boolean;
498
+ };
499
+ seo_description: {
500
+ name: "seo_description";
501
+ enabled: boolean;
502
+ };
503
+ } | undefined;
504
+ };
505
+ translation_languages?: string[] | undefined;
506
+ };
507
+ accountId: string;
508
+ id?: unknown;
509
+ isEnabled?: boolean | undefined;
510
+ updatedAt?: string | undefined;
511
+ }>, {
512
+ recommendation_severity_weight: number;
513
+ use_feedback_based_instructions: boolean;
514
+ only_generate_missing: boolean;
515
+ translation_fields: {
516
+ content_optimization_translate_product_description_html: {
517
+ product_description_html: {
518
+ name: "product_description_html";
519
+ enabled: boolean;
520
+ };
521
+ product_name: {
522
+ name: "product_name";
523
+ enabled: boolean;
524
+ };
525
+ };
526
+ content_optimization_translate_seo?: {
527
+ seo_title: {
528
+ name: "seo_title";
529
+ enabled: boolean;
530
+ };
531
+ seo_description: {
532
+ name: "seo_description";
533
+ enabled: boolean;
534
+ };
535
+ } | undefined;
536
+ };
537
+ 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;
538
+ }, {
539
+ value: {
540
+ recommendation_severity_weight: number;
541
+ use_feedback_based_instructions: boolean;
542
+ only_generate_missing: boolean;
543
+ translation_fields: {
544
+ content_optimization_translate_product_description_html: {
545
+ product_description_html: {
546
+ name: "product_description_html";
547
+ enabled: boolean;
548
+ };
549
+ product_name: {
550
+ name: "product_name";
551
+ enabled: boolean;
552
+ };
553
+ };
554
+ content_optimization_translate_seo?: {
555
+ seo_title: {
556
+ name: "seo_title";
557
+ enabled: boolean;
558
+ };
559
+ seo_description: {
560
+ name: "seo_description";
561
+ enabled: boolean;
562
+ };
563
+ } | undefined;
564
+ };
565
+ translation_languages?: string[] | undefined;
566
+ };
567
+ accountId: string;
568
+ id?: unknown;
569
+ isEnabled?: boolean | undefined;
570
+ updatedAt?: string | undefined;
571
+ }>;
572
+ export declare const ContentOptimizationWriteResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
573
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
574
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
575
+ accountId: z.ZodString;
576
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
577
+ }, {
578
+ value: z.ZodObject<{
579
+ recommendation_severity_weight: z.ZodNumber;
580
+ use_feedback_based_instructions: z.ZodBoolean;
581
+ only_generate_missing: z.ZodBoolean;
582
+ }, "strip", z.ZodTypeAny, {
583
+ recommendation_severity_weight: number;
584
+ use_feedback_based_instructions: boolean;
585
+ only_generate_missing: boolean;
586
+ }, {
587
+ recommendation_severity_weight: number;
588
+ use_feedback_based_instructions: boolean;
589
+ only_generate_missing: boolean;
590
+ }>;
591
+ }>, "strip", z.ZodTypeAny, {
592
+ id: string;
593
+ value: {
594
+ recommendation_severity_weight: number;
595
+ use_feedback_based_instructions: boolean;
596
+ only_generate_missing: boolean;
597
+ };
598
+ accountId: string;
599
+ isEnabled?: boolean | undefined;
600
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
601
+ }, {
602
+ value: {
603
+ recommendation_severity_weight: number;
604
+ use_feedback_based_instructions: boolean;
605
+ only_generate_missing: boolean;
606
+ };
607
+ accountId: string;
608
+ id?: unknown;
609
+ isEnabled?: boolean | undefined;
610
+ updatedAt?: string | undefined;
611
+ }>, {
612
+ recommendation_severity_weight: number;
613
+ use_feedback_based_instructions: boolean;
614
+ only_generate_missing: boolean;
615
+ }, {
616
+ value: {
617
+ recommendation_severity_weight: number;
618
+ use_feedback_based_instructions: boolean;
619
+ only_generate_missing: boolean;
620
+ };
621
+ accountId: string;
622
+ id?: unknown;
623
+ isEnabled?: boolean | undefined;
624
+ updatedAt?: string | undefined;
625
+ }>;
626
+ export declare const ContentOptimizationSEOResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
627
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
628
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
629
+ accountId: z.ZodString;
630
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
631
+ }, {
632
+ value: z.ZodObject<{
633
+ recommendation_severity_weight: z.ZodNumber;
634
+ use_feedback_based_instructions: z.ZodBoolean;
635
+ character_limit_title: z.ZodNumber;
636
+ character_limit_description: z.ZodNumber;
637
+ only_generate_missing: z.ZodBoolean;
638
+ }, "strip", z.ZodTypeAny, {
639
+ recommendation_severity_weight: number;
640
+ use_feedback_based_instructions: boolean;
641
+ only_generate_missing: boolean;
642
+ character_limit_title: number;
643
+ character_limit_description: number;
644
+ }, {
645
+ recommendation_severity_weight: number;
646
+ use_feedback_based_instructions: boolean;
647
+ only_generate_missing: boolean;
648
+ character_limit_title: number;
649
+ character_limit_description: number;
650
+ }>;
651
+ }>, "strip", z.ZodTypeAny, {
652
+ id: string;
653
+ value: {
654
+ recommendation_severity_weight: number;
655
+ use_feedback_based_instructions: boolean;
656
+ only_generate_missing: boolean;
657
+ character_limit_title: number;
658
+ character_limit_description: number;
659
+ };
660
+ accountId: string;
661
+ isEnabled?: boolean | undefined;
662
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
663
+ }, {
664
+ value: {
665
+ recommendation_severity_weight: number;
666
+ use_feedback_based_instructions: boolean;
667
+ only_generate_missing: boolean;
668
+ character_limit_title: number;
669
+ character_limit_description: number;
670
+ };
671
+ accountId: string;
672
+ id?: unknown;
673
+ isEnabled?: boolean | undefined;
674
+ updatedAt?: string | undefined;
675
+ }>, {
676
+ recommendation_severity_weight: number;
677
+ use_feedback_based_instructions: boolean;
678
+ only_generate_missing: boolean;
679
+ character_limit_title: number;
680
+ character_limit_description: number;
681
+ }, {
682
+ value: {
683
+ recommendation_severity_weight: number;
684
+ use_feedback_based_instructions: boolean;
685
+ only_generate_missing: boolean;
686
+ character_limit_title: number;
687
+ character_limit_description: number;
688
+ };
689
+ accountId: string;
690
+ id?: unknown;
691
+ isEnabled?: boolean | undefined;
692
+ updatedAt?: string | undefined;
693
+ }>;
694
+ export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
695
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
696
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
697
+ accountId: z.ZodString;
698
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
699
+ }, {
700
+ value: z.ZodObject<{
701
+ recommendation_severity_weight: z.ZodNumber;
702
+ use_feedback_based_instructions: z.ZodBoolean;
703
+ similarity_threshold: z.ZodNumber;
704
+ }, "strip", z.ZodTypeAny, {
705
+ recommendation_severity_weight: number;
706
+ use_feedback_based_instructions: boolean;
707
+ similarity_threshold: number;
708
+ }, {
709
+ recommendation_severity_weight: number;
710
+ use_feedback_based_instructions: boolean;
711
+ similarity_threshold: number;
712
+ }>;
713
+ }>, "strip", z.ZodTypeAny, {
714
+ id: string;
715
+ value: {
716
+ recommendation_severity_weight: number;
717
+ use_feedback_based_instructions: boolean;
718
+ similarity_threshold: number;
719
+ };
720
+ accountId: string;
721
+ isEnabled?: boolean | undefined;
722
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
723
+ }, {
724
+ value: {
725
+ recommendation_severity_weight: number;
726
+ use_feedback_based_instructions: boolean;
727
+ similarity_threshold: number;
728
+ };
729
+ accountId: string;
730
+ id?: unknown;
731
+ isEnabled?: boolean | undefined;
732
+ updatedAt?: string | undefined;
733
+ }>, {
734
+ recommendation_severity_weight: number;
735
+ use_feedback_based_instructions: boolean;
736
+ similarity_threshold: number;
737
+ }, {
738
+ value: {
739
+ recommendation_severity_weight: number;
740
+ use_feedback_based_instructions: boolean;
741
+ similarity_threshold: number;
742
+ };
743
+ accountId: string;
744
+ id?: unknown;
745
+ isEnabled?: boolean | undefined;
746
+ updatedAt?: string | undefined;
747
+ }>;
748
+ export declare const ContentOptimizationWriteSEOPlatformValueSchema: z.ZodObject<{
749
+ isEnabled: z.ZodBoolean;
750
+ fields: z.ZodObject<{
751
+ seoTitle: z.ZodObject<{
752
+ isEnabled: z.ZodBoolean;
753
+ }, "strip", z.ZodTypeAny, {
754
+ isEnabled: boolean;
755
+ }, {
756
+ isEnabled: boolean;
757
+ }>;
758
+ seoDescription: z.ZodObject<{
759
+ isEnabled: z.ZodBoolean;
760
+ }, "strip", z.ZodTypeAny, {
761
+ isEnabled: boolean;
762
+ }, {
763
+ isEnabled: boolean;
764
+ }>;
765
+ }, "strip", z.ZodTypeAny, {
766
+ seoTitle: {
767
+ isEnabled: boolean;
768
+ };
769
+ seoDescription: {
770
+ isEnabled: boolean;
771
+ };
772
+ }, {
773
+ seoTitle: {
774
+ isEnabled: boolean;
775
+ };
776
+ seoDescription: {
777
+ isEnabled: boolean;
778
+ };
779
+ }>;
780
+ }, "strip", z.ZodTypeAny, {
781
+ isEnabled: boolean;
782
+ fields: {
783
+ seoTitle: {
784
+ isEnabled: boolean;
785
+ };
786
+ seoDescription: {
787
+ isEnabled: boolean;
788
+ };
789
+ };
790
+ }, {
791
+ isEnabled: boolean;
792
+ fields: {
793
+ seoTitle: {
794
+ isEnabled: boolean;
795
+ };
796
+ seoDescription: {
797
+ isEnabled: boolean;
798
+ };
799
+ };
800
+ }>;
801
+ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
802
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
803
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
804
+ accountId: z.ZodString;
805
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
806
+ }, {
807
+ value: z.ZodObject<{
808
+ isEnabled: z.ZodBoolean;
809
+ fields: z.ZodObject<{
810
+ seoTitle: z.ZodObject<{
811
+ isEnabled: z.ZodBoolean;
812
+ }, "strip", z.ZodTypeAny, {
813
+ isEnabled: boolean;
814
+ }, {
815
+ isEnabled: boolean;
816
+ }>;
817
+ seoDescription: z.ZodObject<{
818
+ isEnabled: z.ZodBoolean;
819
+ }, "strip", z.ZodTypeAny, {
820
+ isEnabled: boolean;
821
+ }, {
822
+ isEnabled: boolean;
823
+ }>;
824
+ }, "strip", z.ZodTypeAny, {
825
+ seoTitle: {
826
+ isEnabled: boolean;
827
+ };
828
+ seoDescription: {
829
+ isEnabled: boolean;
830
+ };
831
+ }, {
832
+ seoTitle: {
833
+ isEnabled: boolean;
834
+ };
835
+ seoDescription: {
836
+ isEnabled: boolean;
837
+ };
838
+ }>;
839
+ }, "strip", z.ZodTypeAny, {
840
+ isEnabled: boolean;
841
+ fields: {
842
+ seoTitle: {
843
+ isEnabled: boolean;
844
+ };
845
+ seoDescription: {
846
+ isEnabled: boolean;
847
+ };
848
+ };
849
+ }, {
850
+ isEnabled: boolean;
851
+ fields: {
852
+ seoTitle: {
853
+ isEnabled: boolean;
854
+ };
855
+ seoDescription: {
856
+ isEnabled: boolean;
857
+ };
858
+ };
859
+ }>;
860
+ }>, "strip", z.ZodTypeAny, {
861
+ id: string;
862
+ value: {
863
+ isEnabled: boolean;
864
+ fields: {
865
+ seoTitle: {
866
+ isEnabled: boolean;
867
+ };
868
+ seoDescription: {
869
+ isEnabled: boolean;
870
+ };
871
+ };
872
+ };
873
+ accountId: string;
874
+ isEnabled?: boolean | undefined;
875
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
876
+ }, {
877
+ value: {
878
+ isEnabled: boolean;
879
+ fields: {
880
+ seoTitle: {
881
+ isEnabled: boolean;
882
+ };
883
+ seoDescription: {
884
+ isEnabled: boolean;
885
+ };
886
+ };
887
+ };
888
+ accountId: string;
889
+ id?: unknown;
890
+ isEnabled?: boolean | undefined;
891
+ updatedAt?: string | undefined;
892
+ }>, {
893
+ isEnabled: boolean;
894
+ fields: {
895
+ seoTitle: {
896
+ isEnabled: boolean;
897
+ };
898
+ seoDescription: {
899
+ isEnabled: boolean;
900
+ };
901
+ };
902
+ }, {
903
+ value: {
904
+ isEnabled: boolean;
905
+ fields: {
906
+ seoTitle: {
907
+ isEnabled: boolean;
908
+ };
909
+ seoDescription: {
910
+ isEnabled: boolean;
911
+ };
912
+ };
913
+ };
914
+ accountId: string;
915
+ id?: unknown;
916
+ isEnabled?: boolean | undefined;
917
+ updatedAt?: string | undefined;
918
+ }>;
919
+ export declare const WizardPlatformResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
920
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
921
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
922
+ accountId: z.ZodString;
923
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
924
+ }, {
925
+ value: z.ZodObject<{
926
+ isInterrestedInRefinementEnabled: z.ZodOptional<z.ZodBoolean>;
927
+ isInterestedInTranslation: z.ZodOptional<z.ZodBoolean>;
928
+ isInterestedInSEO: z.ZodOptional<z.ZodBoolean>;
929
+ isInterestedInReduceSimilarity: z.ZodOptional<z.ZodBoolean>;
930
+ isInterstedInInventoryOptimization: z.ZodOptional<z.ZodBoolean>;
931
+ hasCompletedWizard: z.ZodOptional<z.ZodBoolean>;
932
+ }, "strip", z.ZodTypeAny, {
933
+ isInterrestedInRefinementEnabled?: boolean | undefined;
934
+ isInterestedInTranslation?: boolean | undefined;
935
+ isInterestedInSEO?: boolean | undefined;
936
+ isInterestedInReduceSimilarity?: boolean | undefined;
937
+ isInterstedInInventoryOptimization?: boolean | undefined;
938
+ hasCompletedWizard?: boolean | undefined;
939
+ }, {
940
+ isInterrestedInRefinementEnabled?: boolean | undefined;
941
+ isInterestedInTranslation?: boolean | undefined;
942
+ isInterestedInSEO?: boolean | undefined;
943
+ isInterestedInReduceSimilarity?: boolean | undefined;
944
+ isInterstedInInventoryOptimization?: boolean | undefined;
945
+ hasCompletedWizard?: boolean | undefined;
946
+ }>;
947
+ }>, "strip", z.ZodTypeAny, {
948
+ id: string;
949
+ value: {
950
+ isInterrestedInRefinementEnabled?: boolean | undefined;
951
+ isInterestedInTranslation?: boolean | undefined;
952
+ isInterestedInSEO?: boolean | undefined;
953
+ isInterestedInReduceSimilarity?: boolean | undefined;
954
+ isInterstedInInventoryOptimization?: boolean | undefined;
955
+ hasCompletedWizard?: boolean | undefined;
956
+ };
957
+ accountId: string;
958
+ isEnabled?: boolean | undefined;
959
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
960
+ }, {
961
+ value: {
962
+ isInterrestedInRefinementEnabled?: boolean | undefined;
963
+ isInterestedInTranslation?: boolean | undefined;
964
+ isInterestedInSEO?: boolean | undefined;
965
+ isInterestedInReduceSimilarity?: boolean | undefined;
966
+ isInterstedInInventoryOptimization?: boolean | undefined;
967
+ hasCompletedWizard?: boolean | undefined;
968
+ };
969
+ accountId: string;
970
+ id?: unknown;
971
+ isEnabled?: boolean | undefined;
972
+ updatedAt?: string | undefined;
973
+ }>, {
974
+ isInterrestedInRefinementEnabled?: boolean | undefined;
975
+ isInterestedInTranslation?: boolean | undefined;
976
+ isInterestedInSEO?: boolean | undefined;
977
+ isInterestedInReduceSimilarity?: boolean | undefined;
978
+ isInterstedInInventoryOptimization?: boolean | undefined;
979
+ hasCompletedWizard?: boolean | undefined;
980
+ }, {
981
+ value: {
982
+ isInterrestedInRefinementEnabled?: boolean | undefined;
983
+ isInterestedInTranslation?: boolean | undefined;
984
+ isInterestedInSEO?: boolean | undefined;
985
+ isInterestedInReduceSimilarity?: boolean | undefined;
986
+ isInterstedInInventoryOptimization?: boolean | undefined;
987
+ hasCompletedWizard?: boolean | undefined;
988
+ };
989
+ accountId: string;
990
+ id?: unknown;
991
+ isEnabled?: boolean | undefined;
992
+ updatedAt?: string | undefined;
993
+ }>;
994
+ export declare const ShopifyPrimaryLocaleResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
995
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
996
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
997
+ accountId: z.ZodString;
998
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
999
+ }, {
1000
+ value: z.ZodOptional<z.ZodEnum<["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"]>>;
1001
+ }>, "strip", z.ZodTypeAny, {
1002
+ id: string;
1003
+ accountId: string;
1004
+ 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;
1005
+ isEnabled?: boolean | undefined;
1006
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1007
+ }, {
1008
+ accountId: string;
1009
+ id?: unknown;
1010
+ 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;
1011
+ isEnabled?: boolean | undefined;
1012
+ updatedAt?: string | undefined;
1013
+ }>, "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, {
1014
+ accountId: string;
1015
+ id?: unknown;
1016
+ 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;
1017
+ isEnabled?: boolean | undefined;
1018
+ updatedAt?: string | undefined;
1019
+ }>;
1020
+ export declare const DefaultResponseSchema: z.ZodEffects<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
1021
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1022
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1023
+ accountId: z.ZodString;
1024
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1025
+ }, {
1026
+ value: z.ZodString;
1027
+ }>, "strip", z.ZodTypeAny, {
1028
+ id: string;
1029
+ value: string;
1030
+ accountId: string;
1031
+ isEnabled?: boolean | undefined;
1032
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1033
+ }, {
1034
+ value: string;
1035
+ accountId: string;
1036
+ id?: unknown;
1037
+ isEnabled?: boolean | undefined;
1038
+ updatedAt?: string | undefined;
1039
+ }>>, string | undefined, {
1040
+ value: string;
1041
+ accountId: string;
1042
+ id?: unknown;
1043
+ isEnabled?: boolean | undefined;
1044
+ updatedAt?: string | undefined;
1045
+ } | undefined>;
1046
+ export declare const CurrencySettingResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1047
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1048
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1049
+ accountId: z.ZodString;
1050
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1051
+ }, {
1052
+ value: z.ZodCatch<z.ZodOptional<z.ZodEnum<["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"]>>>;
1053
+ }>, "strip", z.ZodTypeAny, {
1054
+ id: string;
1055
+ accountId: string;
1056
+ 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;
1057
+ isEnabled?: boolean | undefined;
1058
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1059
+ }, {
1060
+ accountId: string;
1061
+ id?: unknown;
1062
+ value?: unknown;
1063
+ isEnabled?: boolean | undefined;
1064
+ updatedAt?: string | undefined;
1065
+ }>, "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", {
1066
+ accountId: string;
1067
+ id?: unknown;
1068
+ value?: unknown;
1069
+ isEnabled?: boolean | undefined;
1070
+ updatedAt?: string | undefined;
1071
+ }>;
1072
+ export declare const SettingsSchemas: {
1073
+ readonly content_optimization: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1074
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1075
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1076
+ accountId: z.ZodString;
1077
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1078
+ }, {
1079
+ value: z.ZodObject<{
1080
+ tone_of_voice: z.ZodNullable<z.ZodString>;
1081
+ use_online_summary: z.ZodBoolean;
1082
+ }, "strip", z.ZodTypeAny, {
1083
+ tone_of_voice: string | null;
1084
+ use_online_summary: boolean;
1085
+ }, {
1086
+ tone_of_voice: string | null;
1087
+ use_online_summary: boolean;
1088
+ }>;
1089
+ }>, "strip", z.ZodTypeAny, {
1090
+ id: string;
1091
+ value: {
1092
+ tone_of_voice: string | null;
1093
+ use_online_summary: boolean;
1094
+ };
1095
+ accountId: string;
1096
+ isEnabled?: boolean | undefined;
1097
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1098
+ }, {
1099
+ value: {
1100
+ tone_of_voice: string | null;
1101
+ use_online_summary: boolean;
1102
+ };
1103
+ accountId: string;
1104
+ id?: unknown;
1105
+ isEnabled?: boolean | undefined;
1106
+ updatedAt?: string | undefined;
1107
+ }>, {
1108
+ tone_of_voice: string | null;
1109
+ use_online_summary: boolean;
1110
+ }, {
1111
+ value: {
1112
+ tone_of_voice: string | null;
1113
+ use_online_summary: boolean;
1114
+ };
1115
+ accountId: string;
1116
+ id?: unknown;
1117
+ isEnabled?: boolean | undefined;
1118
+ updatedAt?: string | undefined;
1119
+ }>;
1120
+ readonly content_optimization_refine: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1121
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1122
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1123
+ accountId: z.ZodString;
1124
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1125
+ }, {
1126
+ value: z.ZodObject<{
1127
+ recommendation_severity_weight: z.ZodObject<{
1128
+ improve: z.ZodNumber;
1129
+ rewrite: z.ZodNumber;
1130
+ }, "strip", z.ZodTypeAny, {
1131
+ improve: number;
1132
+ rewrite: number;
1133
+ }, {
1134
+ improve: number;
1135
+ rewrite: number;
1136
+ }>;
1137
+ use_feedback_based_instructions: z.ZodBoolean;
1138
+ force_shop_language: z.ZodBoolean;
1139
+ }, "strip", z.ZodTypeAny, {
1140
+ recommendation_severity_weight: {
1141
+ improve: number;
1142
+ rewrite: number;
1143
+ };
1144
+ use_feedback_based_instructions: boolean;
1145
+ force_shop_language: boolean;
1146
+ }, {
1147
+ recommendation_severity_weight: {
1148
+ improve: number;
1149
+ rewrite: number;
1150
+ };
1151
+ use_feedback_based_instructions: boolean;
1152
+ force_shop_language: boolean;
1153
+ }>;
1154
+ }>, "strip", z.ZodTypeAny, {
1155
+ id: string;
1156
+ value: {
1157
+ recommendation_severity_weight: {
1158
+ improve: number;
1159
+ rewrite: number;
1160
+ };
1161
+ use_feedback_based_instructions: boolean;
1162
+ force_shop_language: boolean;
1163
+ };
1164
+ accountId: string;
1165
+ isEnabled?: boolean | undefined;
1166
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1167
+ }, {
1168
+ value: {
1169
+ recommendation_severity_weight: {
1170
+ improve: number;
1171
+ rewrite: number;
1172
+ };
1173
+ use_feedback_based_instructions: boolean;
1174
+ force_shop_language: boolean;
1175
+ };
1176
+ accountId: string;
1177
+ id?: unknown;
1178
+ isEnabled?: boolean | undefined;
1179
+ updatedAt?: string | undefined;
1180
+ }>, {
1181
+ recommendation_severity_weight: {
1182
+ improve: number;
1183
+ rewrite: number;
1184
+ };
1185
+ use_feedback_based_instructions: boolean;
1186
+ force_shop_language: boolean;
1187
+ }, {
1188
+ value: {
1189
+ recommendation_severity_weight: {
1190
+ improve: number;
1191
+ rewrite: number;
1192
+ };
1193
+ use_feedback_based_instructions: boolean;
1194
+ force_shop_language: boolean;
1195
+ };
1196
+ accountId: string;
1197
+ id?: unknown;
1198
+ isEnabled?: boolean | undefined;
1199
+ updatedAt?: string | undefined;
1200
+ }>;
1201
+ readonly content_optimization_translate: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1202
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1203
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1204
+ accountId: z.ZodString;
1205
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1206
+ }, {
1207
+ value: z.ZodObject<{
1208
+ recommendation_severity_weight: z.ZodNumber;
1209
+ use_feedback_based_instructions: z.ZodBoolean;
1210
+ only_generate_missing: z.ZodBoolean;
1211
+ translation_languages: z.ZodOptional<z.ZodArray<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodEnum<["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"]>>, "many">>;
1212
+ translation_fields: z.ZodObject<{
1213
+ content_optimization_translate_product_description_html: z.ZodObject<{
1214
+ product_description_html: z.ZodObject<{
1215
+ name: z.ZodLiteral<"product_description_html">;
1216
+ enabled: z.ZodBoolean;
1217
+ }, "strip", z.ZodTypeAny, {
1218
+ name: "product_description_html";
1219
+ enabled: boolean;
1220
+ }, {
1221
+ name: "product_description_html";
1222
+ enabled: boolean;
1223
+ }>;
1224
+ product_name: z.ZodObject<{
1225
+ name: z.ZodLiteral<"product_name">;
1226
+ enabled: z.ZodBoolean;
1227
+ }, "strip", z.ZodTypeAny, {
1228
+ name: "product_name";
1229
+ enabled: boolean;
1230
+ }, {
1231
+ name: "product_name";
1232
+ enabled: boolean;
1233
+ }>;
1234
+ }, "strip", z.ZodTypeAny, {
1235
+ product_description_html: {
1236
+ name: "product_description_html";
1237
+ enabled: boolean;
1238
+ };
1239
+ product_name: {
1240
+ name: "product_name";
1241
+ enabled: boolean;
1242
+ };
1243
+ }, {
1244
+ product_description_html: {
1245
+ name: "product_description_html";
1246
+ enabled: boolean;
1247
+ };
1248
+ product_name: {
1249
+ name: "product_name";
1250
+ enabled: boolean;
1251
+ };
1252
+ }>;
1253
+ content_optimization_translate_seo: z.ZodOptional<z.ZodObject<{
1254
+ seo_title: z.ZodObject<{
1255
+ name: z.ZodLiteral<"seo_title">;
1256
+ enabled: z.ZodBoolean;
1257
+ }, "strip", z.ZodTypeAny, {
1258
+ name: "seo_title";
1259
+ enabled: boolean;
1260
+ }, {
1261
+ name: "seo_title";
1262
+ enabled: boolean;
1263
+ }>;
1264
+ seo_description: z.ZodObject<{
1265
+ name: z.ZodLiteral<"seo_description">;
1266
+ enabled: z.ZodBoolean;
1267
+ }, "strip", z.ZodTypeAny, {
1268
+ name: "seo_description";
1269
+ enabled: boolean;
1270
+ }, {
1271
+ name: "seo_description";
1272
+ enabled: boolean;
1273
+ }>;
1274
+ }, "strip", z.ZodTypeAny, {
1275
+ seo_title: {
1276
+ name: "seo_title";
1277
+ enabled: boolean;
1278
+ };
1279
+ seo_description: {
1280
+ name: "seo_description";
1281
+ enabled: boolean;
1282
+ };
1283
+ }, {
1284
+ seo_title: {
1285
+ name: "seo_title";
1286
+ enabled: boolean;
1287
+ };
1288
+ seo_description: {
1289
+ name: "seo_description";
1290
+ enabled: boolean;
1291
+ };
1292
+ }>>;
1293
+ }, "strip", z.ZodTypeAny, {
1294
+ content_optimization_translate_product_description_html: {
1295
+ product_description_html: {
1296
+ name: "product_description_html";
1297
+ enabled: boolean;
1298
+ };
1299
+ product_name: {
1300
+ name: "product_name";
1301
+ enabled: boolean;
1302
+ };
1303
+ };
1304
+ content_optimization_translate_seo?: {
1305
+ seo_title: {
1306
+ name: "seo_title";
1307
+ enabled: boolean;
1308
+ };
1309
+ seo_description: {
1310
+ name: "seo_description";
1311
+ enabled: boolean;
1312
+ };
1313
+ } | undefined;
1314
+ }, {
1315
+ content_optimization_translate_product_description_html: {
1316
+ product_description_html: {
1317
+ name: "product_description_html";
1318
+ enabled: boolean;
1319
+ };
1320
+ product_name: {
1321
+ name: "product_name";
1322
+ enabled: boolean;
1323
+ };
1324
+ };
1325
+ content_optimization_translate_seo?: {
1326
+ seo_title: {
1327
+ name: "seo_title";
1328
+ enabled: boolean;
1329
+ };
1330
+ seo_description: {
1331
+ name: "seo_description";
1332
+ enabled: boolean;
1333
+ };
1334
+ } | undefined;
1335
+ }>;
1336
+ }, "strip", z.ZodTypeAny, {
1337
+ recommendation_severity_weight: number;
1338
+ use_feedback_based_instructions: boolean;
1339
+ only_generate_missing: boolean;
1340
+ translation_fields: {
1341
+ content_optimization_translate_product_description_html: {
1342
+ product_description_html: {
1343
+ name: "product_description_html";
1344
+ enabled: boolean;
1345
+ };
1346
+ product_name: {
1347
+ name: "product_name";
1348
+ enabled: boolean;
1349
+ };
1350
+ };
1351
+ content_optimization_translate_seo?: {
1352
+ seo_title: {
1353
+ name: "seo_title";
1354
+ enabled: boolean;
1355
+ };
1356
+ seo_description: {
1357
+ name: "seo_description";
1358
+ enabled: boolean;
1359
+ };
1360
+ } | undefined;
1361
+ };
1362
+ 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;
1363
+ }, {
1364
+ recommendation_severity_weight: number;
1365
+ use_feedback_based_instructions: boolean;
1366
+ only_generate_missing: boolean;
1367
+ translation_fields: {
1368
+ content_optimization_translate_product_description_html: {
1369
+ product_description_html: {
1370
+ name: "product_description_html";
1371
+ enabled: boolean;
1372
+ };
1373
+ product_name: {
1374
+ name: "product_name";
1375
+ enabled: boolean;
1376
+ };
1377
+ };
1378
+ content_optimization_translate_seo?: {
1379
+ seo_title: {
1380
+ name: "seo_title";
1381
+ enabled: boolean;
1382
+ };
1383
+ seo_description: {
1384
+ name: "seo_description";
1385
+ enabled: boolean;
1386
+ };
1387
+ } | undefined;
1388
+ };
1389
+ translation_languages?: string[] | undefined;
1390
+ }>;
1391
+ }>, "strip", z.ZodTypeAny, {
1392
+ id: string;
1393
+ value: {
1394
+ recommendation_severity_weight: number;
1395
+ use_feedback_based_instructions: boolean;
1396
+ only_generate_missing: boolean;
1397
+ translation_fields: {
1398
+ content_optimization_translate_product_description_html: {
1399
+ product_description_html: {
1400
+ name: "product_description_html";
1401
+ enabled: boolean;
1402
+ };
1403
+ product_name: {
1404
+ name: "product_name";
1405
+ enabled: boolean;
1406
+ };
1407
+ };
1408
+ content_optimization_translate_seo?: {
1409
+ seo_title: {
1410
+ name: "seo_title";
1411
+ enabled: boolean;
1412
+ };
1413
+ seo_description: {
1414
+ name: "seo_description";
1415
+ enabled: boolean;
1416
+ };
1417
+ } | undefined;
1418
+ };
1419
+ 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;
1420
+ };
1421
+ accountId: string;
1422
+ isEnabled?: boolean | undefined;
1423
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1424
+ }, {
1425
+ value: {
1426
+ recommendation_severity_weight: number;
1427
+ use_feedback_based_instructions: boolean;
1428
+ only_generate_missing: boolean;
1429
+ translation_fields: {
1430
+ content_optimization_translate_product_description_html: {
1431
+ product_description_html: {
1432
+ name: "product_description_html";
1433
+ enabled: boolean;
1434
+ };
1435
+ product_name: {
1436
+ name: "product_name";
1437
+ enabled: boolean;
1438
+ };
1439
+ };
1440
+ content_optimization_translate_seo?: {
1441
+ seo_title: {
1442
+ name: "seo_title";
1443
+ enabled: boolean;
1444
+ };
1445
+ seo_description: {
1446
+ name: "seo_description";
1447
+ enabled: boolean;
1448
+ };
1449
+ } | undefined;
1450
+ };
1451
+ translation_languages?: string[] | undefined;
1452
+ };
1453
+ accountId: string;
1454
+ id?: unknown;
1455
+ isEnabled?: boolean | undefined;
1456
+ updatedAt?: string | undefined;
1457
+ }>, {
1458
+ recommendation_severity_weight: number;
1459
+ use_feedback_based_instructions: boolean;
1460
+ only_generate_missing: boolean;
1461
+ translation_fields: {
1462
+ content_optimization_translate_product_description_html: {
1463
+ product_description_html: {
1464
+ name: "product_description_html";
1465
+ enabled: boolean;
1466
+ };
1467
+ product_name: {
1468
+ name: "product_name";
1469
+ enabled: boolean;
1470
+ };
1471
+ };
1472
+ content_optimization_translate_seo?: {
1473
+ seo_title: {
1474
+ name: "seo_title";
1475
+ enabled: boolean;
1476
+ };
1477
+ seo_description: {
1478
+ name: "seo_description";
1479
+ enabled: boolean;
1480
+ };
1481
+ } | undefined;
1482
+ };
1483
+ 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;
1484
+ }, {
1485
+ value: {
1486
+ recommendation_severity_weight: number;
1487
+ use_feedback_based_instructions: boolean;
1488
+ only_generate_missing: boolean;
1489
+ translation_fields: {
1490
+ content_optimization_translate_product_description_html: {
1491
+ product_description_html: {
1492
+ name: "product_description_html";
1493
+ enabled: boolean;
1494
+ };
1495
+ product_name: {
1496
+ name: "product_name";
1497
+ enabled: boolean;
1498
+ };
1499
+ };
1500
+ content_optimization_translate_seo?: {
1501
+ seo_title: {
1502
+ name: "seo_title";
1503
+ enabled: boolean;
1504
+ };
1505
+ seo_description: {
1506
+ name: "seo_description";
1507
+ enabled: boolean;
1508
+ };
1509
+ } | undefined;
1510
+ };
1511
+ translation_languages?: string[] | undefined;
1512
+ };
1513
+ accountId: string;
1514
+ id?: unknown;
1515
+ isEnabled?: boolean | undefined;
1516
+ updatedAt?: string | undefined;
1517
+ }>;
1518
+ readonly content_optimization_write: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1519
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1520
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1521
+ accountId: z.ZodString;
1522
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1523
+ }, {
1524
+ value: z.ZodObject<{
1525
+ recommendation_severity_weight: z.ZodNumber;
1526
+ use_feedback_based_instructions: z.ZodBoolean;
1527
+ only_generate_missing: z.ZodBoolean;
1528
+ }, "strip", z.ZodTypeAny, {
1529
+ recommendation_severity_weight: number;
1530
+ use_feedback_based_instructions: boolean;
1531
+ only_generate_missing: boolean;
1532
+ }, {
1533
+ recommendation_severity_weight: number;
1534
+ use_feedback_based_instructions: boolean;
1535
+ only_generate_missing: boolean;
1536
+ }>;
1537
+ }>, "strip", z.ZodTypeAny, {
1538
+ id: string;
1539
+ value: {
1540
+ recommendation_severity_weight: number;
1541
+ use_feedback_based_instructions: boolean;
1542
+ only_generate_missing: boolean;
1543
+ };
1544
+ accountId: string;
1545
+ isEnabled?: boolean | undefined;
1546
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1547
+ }, {
1548
+ value: {
1549
+ recommendation_severity_weight: number;
1550
+ use_feedback_based_instructions: boolean;
1551
+ only_generate_missing: boolean;
1552
+ };
1553
+ accountId: string;
1554
+ id?: unknown;
1555
+ isEnabled?: boolean | undefined;
1556
+ updatedAt?: string | undefined;
1557
+ }>, {
1558
+ recommendation_severity_weight: number;
1559
+ use_feedback_based_instructions: boolean;
1560
+ only_generate_missing: boolean;
1561
+ }, {
1562
+ value: {
1563
+ recommendation_severity_weight: number;
1564
+ use_feedback_based_instructions: boolean;
1565
+ only_generate_missing: boolean;
1566
+ };
1567
+ accountId: string;
1568
+ id?: unknown;
1569
+ isEnabled?: boolean | undefined;
1570
+ updatedAt?: string | undefined;
1571
+ }>;
1572
+ readonly content_optimization_write_seo: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1573
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1574
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1575
+ accountId: z.ZodString;
1576
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1577
+ }, {
1578
+ value: z.ZodObject<{
1579
+ recommendation_severity_weight: z.ZodNumber;
1580
+ use_feedback_based_instructions: z.ZodBoolean;
1581
+ character_limit_title: z.ZodNumber;
1582
+ character_limit_description: z.ZodNumber;
1583
+ only_generate_missing: z.ZodBoolean;
1584
+ }, "strip", z.ZodTypeAny, {
1585
+ recommendation_severity_weight: number;
1586
+ use_feedback_based_instructions: boolean;
1587
+ only_generate_missing: boolean;
1588
+ character_limit_title: number;
1589
+ character_limit_description: number;
1590
+ }, {
1591
+ recommendation_severity_weight: number;
1592
+ use_feedback_based_instructions: boolean;
1593
+ only_generate_missing: boolean;
1594
+ character_limit_title: number;
1595
+ character_limit_description: number;
1596
+ }>;
1597
+ }>, "strip", z.ZodTypeAny, {
1598
+ id: string;
1599
+ value: {
1600
+ recommendation_severity_weight: number;
1601
+ use_feedback_based_instructions: boolean;
1602
+ only_generate_missing: boolean;
1603
+ character_limit_title: number;
1604
+ character_limit_description: number;
1605
+ };
1606
+ accountId: string;
1607
+ isEnabled?: boolean | undefined;
1608
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1609
+ }, {
1610
+ value: {
1611
+ recommendation_severity_weight: number;
1612
+ use_feedback_based_instructions: boolean;
1613
+ only_generate_missing: boolean;
1614
+ character_limit_title: number;
1615
+ character_limit_description: number;
1616
+ };
1617
+ accountId: string;
1618
+ id?: unknown;
1619
+ isEnabled?: boolean | undefined;
1620
+ updatedAt?: string | undefined;
1621
+ }>, {
1622
+ recommendation_severity_weight: number;
1623
+ use_feedback_based_instructions: boolean;
1624
+ only_generate_missing: boolean;
1625
+ character_limit_title: number;
1626
+ character_limit_description: number;
1627
+ }, {
1628
+ value: {
1629
+ recommendation_severity_weight: number;
1630
+ use_feedback_based_instructions: boolean;
1631
+ only_generate_missing: boolean;
1632
+ character_limit_title: number;
1633
+ character_limit_description: number;
1634
+ };
1635
+ accountId: string;
1636
+ id?: unknown;
1637
+ isEnabled?: boolean | undefined;
1638
+ updatedAt?: string | undefined;
1639
+ }>;
1640
+ readonly content_optimization_reduce_similarity: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1641
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1642
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1643
+ accountId: z.ZodString;
1644
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1645
+ }, {
1646
+ value: z.ZodObject<{
1647
+ recommendation_severity_weight: z.ZodNumber;
1648
+ use_feedback_based_instructions: z.ZodBoolean;
1649
+ similarity_threshold: z.ZodNumber;
1650
+ }, "strip", z.ZodTypeAny, {
1651
+ recommendation_severity_weight: number;
1652
+ use_feedback_based_instructions: boolean;
1653
+ similarity_threshold: number;
1654
+ }, {
1655
+ recommendation_severity_weight: number;
1656
+ use_feedback_based_instructions: boolean;
1657
+ similarity_threshold: number;
1658
+ }>;
1659
+ }>, "strip", z.ZodTypeAny, {
1660
+ id: string;
1661
+ value: {
1662
+ recommendation_severity_weight: number;
1663
+ use_feedback_based_instructions: boolean;
1664
+ similarity_threshold: number;
1665
+ };
1666
+ accountId: string;
1667
+ isEnabled?: boolean | undefined;
1668
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1669
+ }, {
1670
+ value: {
1671
+ recommendation_severity_weight: number;
1672
+ use_feedback_based_instructions: boolean;
1673
+ similarity_threshold: number;
1674
+ };
1675
+ accountId: string;
1676
+ id?: unknown;
1677
+ isEnabled?: boolean | undefined;
1678
+ updatedAt?: string | undefined;
1679
+ }>, {
1680
+ recommendation_severity_weight: number;
1681
+ use_feedback_based_instructions: boolean;
1682
+ similarity_threshold: number;
1683
+ }, {
1684
+ value: {
1685
+ recommendation_severity_weight: number;
1686
+ use_feedback_based_instructions: boolean;
1687
+ similarity_threshold: number;
1688
+ };
1689
+ accountId: string;
1690
+ id?: unknown;
1691
+ isEnabled?: boolean | undefined;
1692
+ updatedAt?: string | undefined;
1693
+ }>;
1694
+ readonly content_optimization_write_seo_platform: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1695
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1696
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1697
+ accountId: z.ZodString;
1698
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1699
+ }, {
1700
+ value: z.ZodObject<{
1701
+ isEnabled: z.ZodBoolean;
1702
+ fields: z.ZodObject<{
1703
+ seoTitle: z.ZodObject<{
1704
+ isEnabled: z.ZodBoolean;
1705
+ }, "strip", z.ZodTypeAny, {
1706
+ isEnabled: boolean;
1707
+ }, {
1708
+ isEnabled: boolean;
1709
+ }>;
1710
+ seoDescription: z.ZodObject<{
1711
+ isEnabled: z.ZodBoolean;
1712
+ }, "strip", z.ZodTypeAny, {
1713
+ isEnabled: boolean;
1714
+ }, {
1715
+ isEnabled: boolean;
1716
+ }>;
1717
+ }, "strip", z.ZodTypeAny, {
1718
+ seoTitle: {
1719
+ isEnabled: boolean;
1720
+ };
1721
+ seoDescription: {
1722
+ isEnabled: boolean;
1723
+ };
1724
+ }, {
1725
+ seoTitle: {
1726
+ isEnabled: boolean;
1727
+ };
1728
+ seoDescription: {
1729
+ isEnabled: boolean;
1730
+ };
1731
+ }>;
1732
+ }, "strip", z.ZodTypeAny, {
1733
+ isEnabled: boolean;
1734
+ fields: {
1735
+ seoTitle: {
1736
+ isEnabled: boolean;
1737
+ };
1738
+ seoDescription: {
1739
+ isEnabled: boolean;
1740
+ };
1741
+ };
1742
+ }, {
1743
+ isEnabled: boolean;
1744
+ fields: {
1745
+ seoTitle: {
1746
+ isEnabled: boolean;
1747
+ };
1748
+ seoDescription: {
1749
+ isEnabled: boolean;
1750
+ };
1751
+ };
1752
+ }>;
1753
+ }>, "strip", z.ZodTypeAny, {
1754
+ id: string;
1755
+ value: {
1756
+ isEnabled: boolean;
1757
+ fields: {
1758
+ seoTitle: {
1759
+ isEnabled: boolean;
1760
+ };
1761
+ seoDescription: {
1762
+ isEnabled: boolean;
1763
+ };
1764
+ };
1765
+ };
1766
+ accountId: string;
1767
+ isEnabled?: boolean | undefined;
1768
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1769
+ }, {
1770
+ value: {
1771
+ isEnabled: boolean;
1772
+ fields: {
1773
+ seoTitle: {
1774
+ isEnabled: boolean;
1775
+ };
1776
+ seoDescription: {
1777
+ isEnabled: boolean;
1778
+ };
1779
+ };
1780
+ };
1781
+ accountId: string;
1782
+ id?: unknown;
1783
+ isEnabled?: boolean | undefined;
1784
+ updatedAt?: string | undefined;
1785
+ }>, {
1786
+ isEnabled: boolean;
1787
+ fields: {
1788
+ seoTitle: {
1789
+ isEnabled: boolean;
1790
+ };
1791
+ seoDescription: {
1792
+ isEnabled: boolean;
1793
+ };
1794
+ };
1795
+ }, {
1796
+ value: {
1797
+ isEnabled: boolean;
1798
+ fields: {
1799
+ seoTitle: {
1800
+ isEnabled: boolean;
1801
+ };
1802
+ seoDescription: {
1803
+ isEnabled: boolean;
1804
+ };
1805
+ };
1806
+ };
1807
+ accountId: string;
1808
+ id?: unknown;
1809
+ isEnabled?: boolean | undefined;
1810
+ updatedAt?: string | undefined;
1811
+ }>;
1812
+ readonly inventory_optimization_economic_reward: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1813
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1814
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1815
+ accountId: z.ZodString;
1816
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1817
+ }, {
1818
+ value: z.ZodObject<{
1819
+ lead_time_days: z.ZodNumber;
1820
+ stockout_cost_ratio: z.ZodNumber;
1821
+ holding_cost_ratio: z.ZodNumber;
1822
+ allow_backorders: z.ZodBoolean;
1823
+ location_ids: z.ZodArray<z.ZodString, "many">;
1824
+ max_locations: z.ZodNumber;
1825
+ probability_threshold: z.ZodNumber;
1826
+ maximum_periods: z.ZodNumber;
1827
+ discount_rate: z.ZodNumber;
1828
+ }, "strip", z.ZodTypeAny, {
1829
+ lead_time_days: number;
1830
+ stockout_cost_ratio: number;
1831
+ holding_cost_ratio: number;
1832
+ allow_backorders: boolean;
1833
+ location_ids: string[];
1834
+ max_locations: number;
1835
+ probability_threshold: number;
1836
+ maximum_periods: number;
1837
+ discount_rate: number;
1838
+ }, {
1839
+ lead_time_days: number;
1840
+ stockout_cost_ratio: number;
1841
+ holding_cost_ratio: number;
1842
+ allow_backorders: boolean;
1843
+ location_ids: string[];
1844
+ max_locations: number;
1845
+ probability_threshold: number;
1846
+ maximum_periods: number;
1847
+ discount_rate: number;
1848
+ }>;
1849
+ }>, "strip", z.ZodTypeAny, {
1850
+ id: string;
1851
+ value: {
1852
+ lead_time_days: number;
1853
+ stockout_cost_ratio: number;
1854
+ holding_cost_ratio: number;
1855
+ allow_backorders: boolean;
1856
+ location_ids: string[];
1857
+ max_locations: number;
1858
+ probability_threshold: number;
1859
+ maximum_periods: number;
1860
+ discount_rate: number;
1861
+ };
1862
+ accountId: string;
1863
+ isEnabled?: boolean | undefined;
1864
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1865
+ }, {
1866
+ value: {
1867
+ lead_time_days: number;
1868
+ stockout_cost_ratio: number;
1869
+ holding_cost_ratio: number;
1870
+ allow_backorders: boolean;
1871
+ location_ids: string[];
1872
+ max_locations: number;
1873
+ probability_threshold: number;
1874
+ maximum_periods: number;
1875
+ discount_rate: number;
1876
+ };
1877
+ accountId: string;
1878
+ id?: unknown;
1879
+ isEnabled?: boolean | undefined;
1880
+ updatedAt?: string | undefined;
1881
+ }>, {
1882
+ lead_time_days: number;
1883
+ stockout_cost_ratio: number;
1884
+ holding_cost_ratio: number;
1885
+ allow_backorders: boolean;
1886
+ location_ids: string[];
1887
+ max_locations: number;
1888
+ probability_threshold: number;
1889
+ maximum_periods: number;
1890
+ discount_rate: number;
1891
+ }, {
1892
+ value: {
1893
+ lead_time_days: number;
1894
+ stockout_cost_ratio: number;
1895
+ holding_cost_ratio: number;
1896
+ allow_backorders: boolean;
1897
+ location_ids: string[];
1898
+ max_locations: number;
1899
+ probability_threshold: number;
1900
+ maximum_periods: number;
1901
+ discount_rate: number;
1902
+ };
1903
+ accountId: string;
1904
+ id?: unknown;
1905
+ isEnabled?: boolean | undefined;
1906
+ updatedAt?: string | undefined;
1907
+ }>;
1908
+ readonly wizard_platform: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1909
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1910
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1911
+ accountId: z.ZodString;
1912
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1913
+ }, {
1914
+ value: z.ZodObject<{
1915
+ isInterrestedInRefinementEnabled: z.ZodOptional<z.ZodBoolean>;
1916
+ isInterestedInTranslation: z.ZodOptional<z.ZodBoolean>;
1917
+ isInterestedInSEO: z.ZodOptional<z.ZodBoolean>;
1918
+ isInterestedInReduceSimilarity: z.ZodOptional<z.ZodBoolean>;
1919
+ isInterstedInInventoryOptimization: z.ZodOptional<z.ZodBoolean>;
1920
+ hasCompletedWizard: z.ZodOptional<z.ZodBoolean>;
1921
+ }, "strip", z.ZodTypeAny, {
1922
+ isInterrestedInRefinementEnabled?: boolean | undefined;
1923
+ isInterestedInTranslation?: boolean | undefined;
1924
+ isInterestedInSEO?: boolean | undefined;
1925
+ isInterestedInReduceSimilarity?: boolean | undefined;
1926
+ isInterstedInInventoryOptimization?: boolean | undefined;
1927
+ hasCompletedWizard?: boolean | undefined;
1928
+ }, {
1929
+ isInterrestedInRefinementEnabled?: boolean | undefined;
1930
+ isInterestedInTranslation?: boolean | undefined;
1931
+ isInterestedInSEO?: boolean | undefined;
1932
+ isInterestedInReduceSimilarity?: boolean | undefined;
1933
+ isInterstedInInventoryOptimization?: boolean | undefined;
1934
+ hasCompletedWizard?: boolean | undefined;
1935
+ }>;
1936
+ }>, "strip", z.ZodTypeAny, {
1937
+ id: string;
1938
+ value: {
1939
+ isInterrestedInRefinementEnabled?: boolean | undefined;
1940
+ isInterestedInTranslation?: boolean | undefined;
1941
+ isInterestedInSEO?: boolean | undefined;
1942
+ isInterestedInReduceSimilarity?: boolean | undefined;
1943
+ isInterstedInInventoryOptimization?: boolean | undefined;
1944
+ hasCompletedWizard?: boolean | undefined;
1945
+ };
1946
+ accountId: string;
1947
+ isEnabled?: boolean | undefined;
1948
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1949
+ }, {
1950
+ value: {
1951
+ isInterrestedInRefinementEnabled?: boolean | undefined;
1952
+ isInterestedInTranslation?: boolean | undefined;
1953
+ isInterestedInSEO?: boolean | undefined;
1954
+ isInterestedInReduceSimilarity?: boolean | undefined;
1955
+ isInterstedInInventoryOptimization?: boolean | undefined;
1956
+ hasCompletedWizard?: boolean | undefined;
1957
+ };
1958
+ accountId: string;
1959
+ id?: unknown;
1960
+ isEnabled?: boolean | undefined;
1961
+ updatedAt?: string | undefined;
1962
+ }>, {
1963
+ isInterrestedInRefinementEnabled?: boolean | undefined;
1964
+ isInterestedInTranslation?: boolean | undefined;
1965
+ isInterestedInSEO?: boolean | undefined;
1966
+ isInterestedInReduceSimilarity?: boolean | undefined;
1967
+ isInterstedInInventoryOptimization?: boolean | undefined;
1968
+ hasCompletedWizard?: boolean | undefined;
1969
+ }, {
1970
+ value: {
1971
+ isInterrestedInRefinementEnabled?: boolean | undefined;
1972
+ isInterestedInTranslation?: boolean | undefined;
1973
+ isInterestedInSEO?: boolean | undefined;
1974
+ isInterestedInReduceSimilarity?: boolean | undefined;
1975
+ isInterstedInInventoryOptimization?: boolean | undefined;
1976
+ hasCompletedWizard?: boolean | undefined;
1977
+ };
1978
+ accountId: string;
1979
+ id?: unknown;
1980
+ isEnabled?: boolean | undefined;
1981
+ updatedAt?: string | undefined;
1982
+ }>;
1983
+ readonly shopify_primary_locale: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1984
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1985
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
1986
+ accountId: z.ZodString;
1987
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1988
+ }, {
1989
+ value: z.ZodOptional<z.ZodEnum<["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"]>>;
1990
+ }>, "strip", z.ZodTypeAny, {
1991
+ id: string;
1992
+ accountId: string;
1993
+ 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;
1994
+ isEnabled?: boolean | undefined;
1995
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
1996
+ }, {
1997
+ accountId: string;
1998
+ id?: unknown;
1999
+ 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;
2000
+ isEnabled?: boolean | undefined;
2001
+ updatedAt?: string | undefined;
2002
+ }>, "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, {
2003
+ accountId: string;
2004
+ id?: unknown;
2005
+ 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;
2006
+ isEnabled?: boolean | undefined;
2007
+ updatedAt?: string | undefined;
2008
+ }>;
2009
+ readonly shopify_primary_url: z.ZodEffects<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
2010
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
2011
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
2012
+ accountId: z.ZodString;
2013
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
2014
+ }, {
2015
+ value: z.ZodString;
2016
+ }>, "strip", z.ZodTypeAny, {
2017
+ id: string;
2018
+ value: string;
2019
+ accountId: string;
2020
+ isEnabled?: boolean | undefined;
2021
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2022
+ }, {
2023
+ value: string;
2024
+ accountId: string;
2025
+ id?: unknown;
2026
+ isEnabled?: boolean | undefined;
2027
+ updatedAt?: string | undefined;
2028
+ }>>, string | undefined, {
2029
+ value: string;
2030
+ accountId: string;
2031
+ id?: unknown;
2032
+ isEnabled?: boolean | undefined;
2033
+ updatedAt?: string | undefined;
2034
+ } | undefined>;
2035
+ readonly analytics_timezone: z.ZodEffects<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
2036
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
2037
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
2038
+ accountId: z.ZodString;
2039
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
2040
+ }, {
2041
+ value: z.ZodString;
2042
+ }>, "strip", z.ZodTypeAny, {
2043
+ id: string;
2044
+ value: string;
2045
+ accountId: string;
2046
+ isEnabled?: boolean | undefined;
2047
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2048
+ }, {
2049
+ value: string;
2050
+ accountId: string;
2051
+ id?: unknown;
2052
+ isEnabled?: boolean | undefined;
2053
+ updatedAt?: string | undefined;
2054
+ }>>, string | undefined, {
2055
+ value: string;
2056
+ accountId: string;
2057
+ id?: unknown;
2058
+ isEnabled?: boolean | undefined;
2059
+ updatedAt?: string | undefined;
2060
+ } | undefined>;
2061
+ readonly company_description: z.ZodEffects<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
2062
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
2063
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
2064
+ accountId: z.ZodString;
2065
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
2066
+ }, {
2067
+ value: z.ZodString;
2068
+ }>, "strip", z.ZodTypeAny, {
2069
+ id: string;
2070
+ value: string;
2071
+ accountId: string;
2072
+ isEnabled?: boolean | undefined;
2073
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2074
+ }, {
2075
+ value: string;
2076
+ accountId: string;
2077
+ id?: unknown;
2078
+ isEnabled?: boolean | undefined;
2079
+ updatedAt?: string | undefined;
2080
+ }>>, string | undefined, {
2081
+ value: string;
2082
+ accountId: string;
2083
+ id?: unknown;
2084
+ isEnabled?: boolean | undefined;
2085
+ updatedAt?: string | undefined;
2086
+ } | undefined>;
2087
+ readonly analytics_currency_code: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
2088
+ id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
2089
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
2090
+ accountId: z.ZodString;
2091
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
2092
+ }, {
2093
+ value: z.ZodCatch<z.ZodOptional<z.ZodEnum<["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"]>>>;
2094
+ }>, "strip", z.ZodTypeAny, {
2095
+ id: string;
2096
+ accountId: string;
2097
+ 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;
2098
+ isEnabled?: boolean | undefined;
2099
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
2100
+ }, {
2101
+ accountId: string;
2102
+ id?: unknown;
2103
+ value?: unknown;
2104
+ isEnabled?: boolean | undefined;
2105
+ updatedAt?: string | undefined;
2106
+ }>, "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", {
2107
+ accountId: string;
2108
+ id?: unknown;
2109
+ value?: unknown;
2110
+ isEnabled?: boolean | undefined;
2111
+ updatedAt?: string | undefined;
2112
+ }>;
2113
+ };
2114
+ //# sourceMappingURL=accountSettings.d.ts.map