@omni-graph/omni-model 0.2.58 → 0.2.60

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.
@@ -28,12 +28,12 @@ export type SettingsIdToResponseMap = {
28
28
  [AccountSettingsIdEnum.CONTENT_OPTIMIZATION_WRITE_SEO_PLATFORM]: ContentOptimizationWriteSEOPlatformResponse;
29
29
  [AccountSettingsIdEnum.WIZARD_PLATFORM]: WizardPlatformResponse;
30
30
  };
31
- export declare const InventoryOptimizationResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
31
+ export declare const InventoryOptimizationResponseSchema: z.ZodEffects<z.ZodObject<{
32
32
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
33
33
  isEnabled: z.ZodOptional<z.ZodBoolean>;
34
34
  accountId: z.ZodString;
35
35
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
36
- }, {
36
+ } & {
37
37
  value: z.ZodObject<{
38
38
  lead_time_days: z.ZodNumber;
39
39
  stockout_cost_ratio: z.ZodNumber;
@@ -65,7 +65,7 @@ export declare const InventoryOptimizationResponseSchema: z.ZodEffects<z.ZodObje
65
65
  maximum_periods: number;
66
66
  discount_rate: number;
67
67
  }>;
68
- }>, "strip", z.ZodTypeAny, {
68
+ }, "strip", z.ZodTypeAny, {
69
69
  id: string;
70
70
  value: {
71
71
  lead_time_days: number;
@@ -124,12 +124,12 @@ export declare const InventoryOptimizationResponseSchema: z.ZodEffects<z.ZodObje
124
124
  isEnabled?: boolean | undefined;
125
125
  updatedAt?: string | undefined;
126
126
  }>;
127
- export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
127
+ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject<{
128
128
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
129
129
  isEnabled: z.ZodOptional<z.ZodBoolean>;
130
130
  accountId: z.ZodString;
131
131
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
132
- }, {
132
+ } & {
133
133
  value: z.ZodObject<{
134
134
  tone_of_voice: z.ZodNullable<z.ZodString>;
135
135
  use_online_summary: z.ZodBoolean;
@@ -140,7 +140,7 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
140
140
  tone_of_voice: string | null;
141
141
  use_online_summary: boolean;
142
142
  }>;
143
- }>, "strip", z.ZodTypeAny, {
143
+ }, "strip", z.ZodTypeAny, {
144
144
  id: string;
145
145
  value: {
146
146
  tone_of_voice: string | null;
@@ -171,12 +171,12 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
171
171
  isEnabled?: boolean | undefined;
172
172
  updatedAt?: string | undefined;
173
173
  }>;
174
- export declare const ContentOptimizationRefinementResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
174
+ export declare const ContentOptimizationRefinementResponseSchema: z.ZodEffects<z.ZodObject<{
175
175
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
176
176
  isEnabled: z.ZodOptional<z.ZodBoolean>;
177
177
  accountId: z.ZodString;
178
178
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
179
- }, {
179
+ } & {
180
180
  value: z.ZodObject<{
181
181
  recommendation_severity_weight: z.ZodObject<{
182
182
  improve: z.ZodNumber;
@@ -205,7 +205,7 @@ export declare const ContentOptimizationRefinementResponseSchema: z.ZodEffects<z
205
205
  use_feedback_based_instructions: boolean;
206
206
  force_shop_language: boolean;
207
207
  }>;
208
- }>, "strip", z.ZodTypeAny, {
208
+ }, "strip", z.ZodTypeAny, {
209
209
  id: string;
210
210
  value: {
211
211
  recommendation_severity_weight: {
@@ -252,12 +252,14 @@ export declare const ContentOptimizationRefinementResponseSchema: z.ZodEffects<z
252
252
  isEnabled?: boolean | undefined;
253
253
  updatedAt?: string | undefined;
254
254
  }>;
255
- export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
255
+ declare const resourceKeyTranslation: z.ZodEnum<["product_name", "product_description_html", "seo_title", "seo_description"]>;
256
+ export type ResourceKeyTranslation = z.infer<typeof resourceKeyTranslation>;
257
+ export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<z.ZodObject<{
256
258
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
257
259
  isEnabled: z.ZodOptional<z.ZodBoolean>;
258
260
  accountId: z.ZodString;
259
261
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
260
- }, {
262
+ } & {
261
263
  value: z.ZodObject<{
262
264
  recommendation_severity_weight: z.ZodNumber;
263
265
  use_feedback_based_instructions: z.ZodBoolean;
@@ -266,123 +268,123 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<
266
268
  translation_fields: z.ZodObject<{
267
269
  content_optimization_translate_product_description_html: z.ZodObject<{
268
270
  product_description_html: z.ZodObject<{
269
- name: z.ZodLiteral<"product_description_html">;
271
+ name: z.ZodEnum<["product_name", "product_description_html", "seo_title", "seo_description"]>;
270
272
  enabled: z.ZodBoolean;
271
273
  }, "strip", z.ZodTypeAny, {
272
- name: "product_description_html";
274
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
273
275
  enabled: boolean;
274
276
  }, {
275
- name: "product_description_html";
277
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
276
278
  enabled: boolean;
277
279
  }>;
278
280
  product_name: z.ZodObject<{
279
- name: z.ZodLiteral<"product_name">;
281
+ name: z.ZodEnum<["product_name", "product_description_html", "seo_title", "seo_description"]>;
280
282
  enabled: z.ZodBoolean;
281
283
  }, "strip", z.ZodTypeAny, {
282
- name: "product_name";
284
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
283
285
  enabled: boolean;
284
286
  }, {
285
- name: "product_name";
287
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
286
288
  enabled: boolean;
287
289
  }>;
288
290
  }, "strip", z.ZodTypeAny, {
289
291
  product_description_html: {
290
- name: "product_description_html";
292
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
291
293
  enabled: boolean;
292
294
  };
293
295
  product_name: {
294
- name: "product_name";
296
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
295
297
  enabled: boolean;
296
298
  };
297
299
  }, {
298
300
  product_description_html: {
299
- name: "product_description_html";
301
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
300
302
  enabled: boolean;
301
303
  };
302
304
  product_name: {
303
- name: "product_name";
305
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
304
306
  enabled: boolean;
305
307
  };
306
308
  }>;
307
309
  content_optimization_translate_seo: z.ZodOptional<z.ZodObject<{
308
310
  seo_title: z.ZodObject<{
309
- name: z.ZodLiteral<"seo_title">;
311
+ name: z.ZodEnum<["product_name", "product_description_html", "seo_title", "seo_description"]>;
310
312
  enabled: z.ZodBoolean;
311
313
  }, "strip", z.ZodTypeAny, {
312
- name: "seo_title";
314
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
313
315
  enabled: boolean;
314
316
  }, {
315
- name: "seo_title";
317
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
316
318
  enabled: boolean;
317
319
  }>;
318
320
  seo_description: z.ZodObject<{
319
- name: z.ZodLiteral<"seo_description">;
321
+ name: z.ZodEnum<["product_name", "product_description_html", "seo_title", "seo_description"]>;
320
322
  enabled: z.ZodBoolean;
321
323
  }, "strip", z.ZodTypeAny, {
322
- name: "seo_description";
324
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
323
325
  enabled: boolean;
324
326
  }, {
325
- name: "seo_description";
327
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
326
328
  enabled: boolean;
327
329
  }>;
328
330
  }, "strip", z.ZodTypeAny, {
329
331
  seo_title: {
330
- name: "seo_title";
332
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
331
333
  enabled: boolean;
332
334
  };
333
335
  seo_description: {
334
- name: "seo_description";
336
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
335
337
  enabled: boolean;
336
338
  };
337
339
  }, {
338
340
  seo_title: {
339
- name: "seo_title";
341
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
340
342
  enabled: boolean;
341
343
  };
342
344
  seo_description: {
343
- name: "seo_description";
345
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
344
346
  enabled: boolean;
345
347
  };
346
348
  }>>;
347
349
  }, "strip", z.ZodTypeAny, {
348
350
  content_optimization_translate_product_description_html: {
349
351
  product_description_html: {
350
- name: "product_description_html";
352
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
351
353
  enabled: boolean;
352
354
  };
353
355
  product_name: {
354
- name: "product_name";
356
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
355
357
  enabled: boolean;
356
358
  };
357
359
  };
358
360
  content_optimization_translate_seo?: {
359
361
  seo_title: {
360
- name: "seo_title";
362
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
361
363
  enabled: boolean;
362
364
  };
363
365
  seo_description: {
364
- name: "seo_description";
366
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
365
367
  enabled: boolean;
366
368
  };
367
369
  } | undefined;
368
370
  }, {
369
371
  content_optimization_translate_product_description_html: {
370
372
  product_description_html: {
371
- name: "product_description_html";
373
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
372
374
  enabled: boolean;
373
375
  };
374
376
  product_name: {
375
- name: "product_name";
377
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
376
378
  enabled: boolean;
377
379
  };
378
380
  };
379
381
  content_optimization_translate_seo?: {
380
382
  seo_title: {
381
- name: "seo_title";
383
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
382
384
  enabled: boolean;
383
385
  };
384
386
  seo_description: {
385
- name: "seo_description";
387
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
386
388
  enabled: boolean;
387
389
  };
388
390
  } | undefined;
@@ -394,21 +396,21 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<
394
396
  translation_fields: {
395
397
  content_optimization_translate_product_description_html: {
396
398
  product_description_html: {
397
- name: "product_description_html";
399
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
398
400
  enabled: boolean;
399
401
  };
400
402
  product_name: {
401
- name: "product_name";
403
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
402
404
  enabled: boolean;
403
405
  };
404
406
  };
405
407
  content_optimization_translate_seo?: {
406
408
  seo_title: {
407
- name: "seo_title";
409
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
408
410
  enabled: boolean;
409
411
  };
410
412
  seo_description: {
411
- name: "seo_description";
413
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
412
414
  enabled: boolean;
413
415
  };
414
416
  } | undefined;
@@ -421,28 +423,28 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<
421
423
  translation_fields: {
422
424
  content_optimization_translate_product_description_html: {
423
425
  product_description_html: {
424
- name: "product_description_html";
426
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
425
427
  enabled: boolean;
426
428
  };
427
429
  product_name: {
428
- name: "product_name";
430
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
429
431
  enabled: boolean;
430
432
  };
431
433
  };
432
434
  content_optimization_translate_seo?: {
433
435
  seo_title: {
434
- name: "seo_title";
436
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
435
437
  enabled: boolean;
436
438
  };
437
439
  seo_description: {
438
- name: "seo_description";
440
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
439
441
  enabled: boolean;
440
442
  };
441
443
  } | undefined;
442
444
  };
443
445
  translation_languages?: string[] | undefined;
444
446
  }>;
445
- }>, "strip", z.ZodTypeAny, {
447
+ }, "strip", z.ZodTypeAny, {
446
448
  id: string;
447
449
  value: {
448
450
  recommendation_severity_weight: number;
@@ -451,21 +453,21 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<
451
453
  translation_fields: {
452
454
  content_optimization_translate_product_description_html: {
453
455
  product_description_html: {
454
- name: "product_description_html";
456
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
455
457
  enabled: boolean;
456
458
  };
457
459
  product_name: {
458
- name: "product_name";
460
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
459
461
  enabled: boolean;
460
462
  };
461
463
  };
462
464
  content_optimization_translate_seo?: {
463
465
  seo_title: {
464
- name: "seo_title";
466
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
465
467
  enabled: boolean;
466
468
  };
467
469
  seo_description: {
468
- name: "seo_description";
470
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
469
471
  enabled: boolean;
470
472
  };
471
473
  } | undefined;
@@ -483,21 +485,21 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<
483
485
  translation_fields: {
484
486
  content_optimization_translate_product_description_html: {
485
487
  product_description_html: {
486
- name: "product_description_html";
488
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
487
489
  enabled: boolean;
488
490
  };
489
491
  product_name: {
490
- name: "product_name";
492
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
491
493
  enabled: boolean;
492
494
  };
493
495
  };
494
496
  content_optimization_translate_seo?: {
495
497
  seo_title: {
496
- name: "seo_title";
498
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
497
499
  enabled: boolean;
498
500
  };
499
501
  seo_description: {
500
- name: "seo_description";
502
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
501
503
  enabled: boolean;
502
504
  };
503
505
  } | undefined;
@@ -515,21 +517,21 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<
515
517
  translation_fields: {
516
518
  content_optimization_translate_product_description_html: {
517
519
  product_description_html: {
518
- name: "product_description_html";
520
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
519
521
  enabled: boolean;
520
522
  };
521
523
  product_name: {
522
- name: "product_name";
524
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
523
525
  enabled: boolean;
524
526
  };
525
527
  };
526
528
  content_optimization_translate_seo?: {
527
529
  seo_title: {
528
- name: "seo_title";
530
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
529
531
  enabled: boolean;
530
532
  };
531
533
  seo_description: {
532
- name: "seo_description";
534
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
533
535
  enabled: boolean;
534
536
  };
535
537
  } | undefined;
@@ -543,21 +545,21 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<
543
545
  translation_fields: {
544
546
  content_optimization_translate_product_description_html: {
545
547
  product_description_html: {
546
- name: "product_description_html";
548
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
547
549
  enabled: boolean;
548
550
  };
549
551
  product_name: {
550
- name: "product_name";
552
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
551
553
  enabled: boolean;
552
554
  };
553
555
  };
554
556
  content_optimization_translate_seo?: {
555
557
  seo_title: {
556
- name: "seo_title";
558
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
557
559
  enabled: boolean;
558
560
  };
559
561
  seo_description: {
560
- name: "seo_description";
562
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
561
563
  enabled: boolean;
562
564
  };
563
565
  } | undefined;
@@ -569,12 +571,12 @@ export declare const ContentOptimizationTranslationResponseSchema: z.ZodEffects<
569
571
  isEnabled?: boolean | undefined;
570
572
  updatedAt?: string | undefined;
571
573
  }>;
572
- export declare const ContentOptimizationWriteResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
574
+ export declare const ContentOptimizationWriteResponseSchema: z.ZodEffects<z.ZodObject<{
573
575
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
574
576
  isEnabled: z.ZodOptional<z.ZodBoolean>;
575
577
  accountId: z.ZodString;
576
578
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
577
- }, {
579
+ } & {
578
580
  value: z.ZodObject<{
579
581
  recommendation_severity_weight: z.ZodNumber;
580
582
  use_feedback_based_instructions: z.ZodBoolean;
@@ -588,7 +590,7 @@ export declare const ContentOptimizationWriteResponseSchema: z.ZodEffects<z.ZodO
588
590
  use_feedback_based_instructions: boolean;
589
591
  only_generate_missing: boolean;
590
592
  }>;
591
- }>, "strip", z.ZodTypeAny, {
593
+ }, "strip", z.ZodTypeAny, {
592
594
  id: string;
593
595
  value: {
594
596
  recommendation_severity_weight: number;
@@ -623,12 +625,12 @@ export declare const ContentOptimizationWriteResponseSchema: z.ZodEffects<z.ZodO
623
625
  isEnabled?: boolean | undefined;
624
626
  updatedAt?: string | undefined;
625
627
  }>;
626
- export declare const ContentOptimizationSEOResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
628
+ export declare const ContentOptimizationSEOResponseSchema: z.ZodEffects<z.ZodObject<{
627
629
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
628
630
  isEnabled: z.ZodOptional<z.ZodBoolean>;
629
631
  accountId: z.ZodString;
630
632
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
631
- }, {
633
+ } & {
632
634
  value: z.ZodObject<{
633
635
  recommendation_severity_weight: z.ZodNumber;
634
636
  use_feedback_based_instructions: z.ZodBoolean;
@@ -648,7 +650,7 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodEffects<z.ZodObj
648
650
  character_limit_title: number;
649
651
  character_limit_description: number;
650
652
  }>;
651
- }>, "strip", z.ZodTypeAny, {
653
+ }, "strip", z.ZodTypeAny, {
652
654
  id: string;
653
655
  value: {
654
656
  recommendation_severity_weight: number;
@@ -691,12 +693,12 @@ export declare const ContentOptimizationSEOResponseSchema: z.ZodEffects<z.ZodObj
691
693
  isEnabled?: boolean | undefined;
692
694
  updatedAt?: string | undefined;
693
695
  }>;
694
- export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
696
+ export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodEffects<z.ZodObject<{
695
697
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
696
698
  isEnabled: z.ZodOptional<z.ZodBoolean>;
697
699
  accountId: z.ZodString;
698
700
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
699
- }, {
701
+ } & {
700
702
  value: z.ZodObject<{
701
703
  recommendation_severity_weight: z.ZodNumber;
702
704
  use_feedback_based_instructions: z.ZodBoolean;
@@ -710,7 +712,7 @@ export declare const ContentOptimizationReduceSimilarityResponseSchema: z.ZodEff
710
712
  use_feedback_based_instructions: boolean;
711
713
  similarity_threshold: number;
712
714
  }>;
713
- }>, "strip", z.ZodTypeAny, {
715
+ }, "strip", z.ZodTypeAny, {
714
716
  id: string;
715
717
  value: {
716
718
  recommendation_severity_weight: number;
@@ -798,12 +800,12 @@ export declare const ContentOptimizationWriteSEOPlatformValueSchema: z.ZodObject
798
800
  };
799
801
  };
800
802
  }>;
801
- export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
803
+ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodEffects<z.ZodObject<{
802
804
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
803
805
  isEnabled: z.ZodOptional<z.ZodBoolean>;
804
806
  accountId: z.ZodString;
805
807
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
806
- }, {
808
+ } & {
807
809
  value: z.ZodObject<{
808
810
  isEnabled: z.ZodBoolean;
809
811
  fields: z.ZodObject<{
@@ -857,7 +859,7 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodEff
857
859
  };
858
860
  };
859
861
  }>;
860
- }>, "strip", z.ZodTypeAny, {
862
+ }, "strip", z.ZodTypeAny, {
861
863
  id: string;
862
864
  value: {
863
865
  isEnabled: boolean;
@@ -916,12 +918,12 @@ export declare const ContentOptimizationWriteSEOPlatformResponseSchema: z.ZodEff
916
918
  isEnabled?: boolean | undefined;
917
919
  updatedAt?: string | undefined;
918
920
  }>;
919
- export declare const WizardPlatformResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
921
+ export declare const WizardPlatformResponseSchema: z.ZodEffects<z.ZodObject<{
920
922
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
921
923
  isEnabled: z.ZodOptional<z.ZodBoolean>;
922
924
  accountId: z.ZodString;
923
925
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
924
- }, {
926
+ } & {
925
927
  value: z.ZodObject<{
926
928
  isInterrestedInRefinementEnabled: z.ZodOptional<z.ZodBoolean>;
927
929
  isInterestedInTranslation: z.ZodOptional<z.ZodBoolean>;
@@ -944,7 +946,7 @@ export declare const WizardPlatformResponseSchema: z.ZodEffects<z.ZodObject<z.ob
944
946
  isInterstedInInventoryOptimization?: boolean | undefined;
945
947
  hasCompletedWizard?: boolean | undefined;
946
948
  }>;
947
- }>, "strip", z.ZodTypeAny, {
949
+ }, "strip", z.ZodTypeAny, {
948
950
  id: string;
949
951
  value: {
950
952
  isInterrestedInRefinementEnabled?: boolean | undefined;
@@ -991,14 +993,14 @@ export declare const WizardPlatformResponseSchema: z.ZodEffects<z.ZodObject<z.ob
991
993
  isEnabled?: boolean | undefined;
992
994
  updatedAt?: string | undefined;
993
995
  }>;
994
- export declare const ShopifyPrimaryLocaleResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
996
+ export declare const ShopifyPrimaryLocaleResponseSchema: z.ZodEffects<z.ZodObject<{
995
997
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
996
998
  isEnabled: z.ZodOptional<z.ZodBoolean>;
997
999
  accountId: z.ZodString;
998
1000
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
999
- }, {
1001
+ } & {
1000
1002
  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, {
1003
+ }, "strip", z.ZodTypeAny, {
1002
1004
  id: string;
1003
1005
  accountId: string;
1004
1006
  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,14 +1019,14 @@ export declare const ShopifyPrimaryLocaleResponseSchema: z.ZodEffects<z.ZodObjec
1017
1019
  isEnabled?: boolean | undefined;
1018
1020
  updatedAt?: string | undefined;
1019
1021
  }>;
1020
- export declare const DefaultResponseSchema: z.ZodEffects<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
1022
+ export declare const DefaultResponseSchema: z.ZodEffects<z.ZodOptional<z.ZodObject<{
1021
1023
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1022
1024
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1023
1025
  accountId: z.ZodString;
1024
1026
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1025
- }, {
1027
+ } & {
1026
1028
  value: z.ZodString;
1027
- }>, "strip", z.ZodTypeAny, {
1029
+ }, "strip", z.ZodTypeAny, {
1028
1030
  id: string;
1029
1031
  value: string;
1030
1032
  accountId: string;
@@ -1043,14 +1045,14 @@ export declare const DefaultResponseSchema: z.ZodEffects<z.ZodOptional<z.ZodObje
1043
1045
  isEnabled?: boolean | undefined;
1044
1046
  updatedAt?: string | undefined;
1045
1047
  } | undefined>;
1046
- export declare const CurrencySettingResponseSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1048
+ export declare const CurrencySettingResponseSchema: z.ZodEffects<z.ZodObject<{
1047
1049
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1048
1050
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1049
1051
  accountId: z.ZodString;
1050
1052
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1051
- }, {
1053
+ } & {
1052
1054
  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, {
1055
+ }, "strip", z.ZodTypeAny, {
1054
1056
  id: string;
1055
1057
  accountId: string;
1056
1058
  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;
@@ -1070,12 +1072,12 @@ export declare const CurrencySettingResponseSchema: z.ZodEffects<z.ZodObject<z.o
1070
1072
  updatedAt?: string | undefined;
1071
1073
  }>;
1072
1074
  export declare const SettingsSchemas: {
1073
- content_optimization: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1075
+ content_optimization: z.ZodEffects<z.ZodObject<{
1074
1076
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1075
1077
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1076
1078
  accountId: z.ZodString;
1077
1079
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1078
- }, {
1080
+ } & {
1079
1081
  value: z.ZodObject<{
1080
1082
  tone_of_voice: z.ZodNullable<z.ZodString>;
1081
1083
  use_online_summary: z.ZodBoolean;
@@ -1086,7 +1088,7 @@ export declare const SettingsSchemas: {
1086
1088
  tone_of_voice: string | null;
1087
1089
  use_online_summary: boolean;
1088
1090
  }>;
1089
- }>, "strip", z.ZodTypeAny, {
1091
+ }, "strip", z.ZodTypeAny, {
1090
1092
  id: string;
1091
1093
  value: {
1092
1094
  tone_of_voice: string | null;
@@ -1117,12 +1119,12 @@ export declare const SettingsSchemas: {
1117
1119
  isEnabled?: boolean | undefined;
1118
1120
  updatedAt?: string | undefined;
1119
1121
  }>;
1120
- content_optimization_refine: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1122
+ content_optimization_refine: z.ZodEffects<z.ZodObject<{
1121
1123
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1122
1124
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1123
1125
  accountId: z.ZodString;
1124
1126
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1125
- }, {
1127
+ } & {
1126
1128
  value: z.ZodObject<{
1127
1129
  recommendation_severity_weight: z.ZodObject<{
1128
1130
  improve: z.ZodNumber;
@@ -1151,7 +1153,7 @@ export declare const SettingsSchemas: {
1151
1153
  use_feedback_based_instructions: boolean;
1152
1154
  force_shop_language: boolean;
1153
1155
  }>;
1154
- }>, "strip", z.ZodTypeAny, {
1156
+ }, "strip", z.ZodTypeAny, {
1155
1157
  id: string;
1156
1158
  value: {
1157
1159
  recommendation_severity_weight: {
@@ -1198,12 +1200,12 @@ export declare const SettingsSchemas: {
1198
1200
  isEnabled?: boolean | undefined;
1199
1201
  updatedAt?: string | undefined;
1200
1202
  }>;
1201
- content_optimization_translate: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1203
+ content_optimization_translate: z.ZodEffects<z.ZodObject<{
1202
1204
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1203
1205
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1204
1206
  accountId: z.ZodString;
1205
1207
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1206
- }, {
1208
+ } & {
1207
1209
  value: z.ZodObject<{
1208
1210
  recommendation_severity_weight: z.ZodNumber;
1209
1211
  use_feedback_based_instructions: z.ZodBoolean;
@@ -1212,123 +1214,123 @@ export declare const SettingsSchemas: {
1212
1214
  translation_fields: z.ZodObject<{
1213
1215
  content_optimization_translate_product_description_html: z.ZodObject<{
1214
1216
  product_description_html: z.ZodObject<{
1215
- name: z.ZodLiteral<"product_description_html">;
1217
+ name: z.ZodEnum<["product_name", "product_description_html", "seo_title", "seo_description"]>;
1216
1218
  enabled: z.ZodBoolean;
1217
1219
  }, "strip", z.ZodTypeAny, {
1218
- name: "product_description_html";
1220
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1219
1221
  enabled: boolean;
1220
1222
  }, {
1221
- name: "product_description_html";
1223
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1222
1224
  enabled: boolean;
1223
1225
  }>;
1224
1226
  product_name: z.ZodObject<{
1225
- name: z.ZodLiteral<"product_name">;
1227
+ name: z.ZodEnum<["product_name", "product_description_html", "seo_title", "seo_description"]>;
1226
1228
  enabled: z.ZodBoolean;
1227
1229
  }, "strip", z.ZodTypeAny, {
1228
- name: "product_name";
1230
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1229
1231
  enabled: boolean;
1230
1232
  }, {
1231
- name: "product_name";
1233
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1232
1234
  enabled: boolean;
1233
1235
  }>;
1234
1236
  }, "strip", z.ZodTypeAny, {
1235
1237
  product_description_html: {
1236
- name: "product_description_html";
1238
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1237
1239
  enabled: boolean;
1238
1240
  };
1239
1241
  product_name: {
1240
- name: "product_name";
1242
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1241
1243
  enabled: boolean;
1242
1244
  };
1243
1245
  }, {
1244
1246
  product_description_html: {
1245
- name: "product_description_html";
1247
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1246
1248
  enabled: boolean;
1247
1249
  };
1248
1250
  product_name: {
1249
- name: "product_name";
1251
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1250
1252
  enabled: boolean;
1251
1253
  };
1252
1254
  }>;
1253
1255
  content_optimization_translate_seo: z.ZodOptional<z.ZodObject<{
1254
1256
  seo_title: z.ZodObject<{
1255
- name: z.ZodLiteral<"seo_title">;
1257
+ name: z.ZodEnum<["product_name", "product_description_html", "seo_title", "seo_description"]>;
1256
1258
  enabled: z.ZodBoolean;
1257
1259
  }, "strip", z.ZodTypeAny, {
1258
- name: "seo_title";
1260
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1259
1261
  enabled: boolean;
1260
1262
  }, {
1261
- name: "seo_title";
1263
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1262
1264
  enabled: boolean;
1263
1265
  }>;
1264
1266
  seo_description: z.ZodObject<{
1265
- name: z.ZodLiteral<"seo_description">;
1267
+ name: z.ZodEnum<["product_name", "product_description_html", "seo_title", "seo_description"]>;
1266
1268
  enabled: z.ZodBoolean;
1267
1269
  }, "strip", z.ZodTypeAny, {
1268
- name: "seo_description";
1270
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1269
1271
  enabled: boolean;
1270
1272
  }, {
1271
- name: "seo_description";
1273
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1272
1274
  enabled: boolean;
1273
1275
  }>;
1274
1276
  }, "strip", z.ZodTypeAny, {
1275
1277
  seo_title: {
1276
- name: "seo_title";
1278
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1277
1279
  enabled: boolean;
1278
1280
  };
1279
1281
  seo_description: {
1280
- name: "seo_description";
1282
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1281
1283
  enabled: boolean;
1282
1284
  };
1283
1285
  }, {
1284
1286
  seo_title: {
1285
- name: "seo_title";
1287
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1286
1288
  enabled: boolean;
1287
1289
  };
1288
1290
  seo_description: {
1289
- name: "seo_description";
1291
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1290
1292
  enabled: boolean;
1291
1293
  };
1292
1294
  }>>;
1293
1295
  }, "strip", z.ZodTypeAny, {
1294
1296
  content_optimization_translate_product_description_html: {
1295
1297
  product_description_html: {
1296
- name: "product_description_html";
1298
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1297
1299
  enabled: boolean;
1298
1300
  };
1299
1301
  product_name: {
1300
- name: "product_name";
1302
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1301
1303
  enabled: boolean;
1302
1304
  };
1303
1305
  };
1304
1306
  content_optimization_translate_seo?: {
1305
1307
  seo_title: {
1306
- name: "seo_title";
1308
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1307
1309
  enabled: boolean;
1308
1310
  };
1309
1311
  seo_description: {
1310
- name: "seo_description";
1312
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1311
1313
  enabled: boolean;
1312
1314
  };
1313
1315
  } | undefined;
1314
1316
  }, {
1315
1317
  content_optimization_translate_product_description_html: {
1316
1318
  product_description_html: {
1317
- name: "product_description_html";
1319
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1318
1320
  enabled: boolean;
1319
1321
  };
1320
1322
  product_name: {
1321
- name: "product_name";
1323
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1322
1324
  enabled: boolean;
1323
1325
  };
1324
1326
  };
1325
1327
  content_optimization_translate_seo?: {
1326
1328
  seo_title: {
1327
- name: "seo_title";
1329
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1328
1330
  enabled: boolean;
1329
1331
  };
1330
1332
  seo_description: {
1331
- name: "seo_description";
1333
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1332
1334
  enabled: boolean;
1333
1335
  };
1334
1336
  } | undefined;
@@ -1340,21 +1342,21 @@ export declare const SettingsSchemas: {
1340
1342
  translation_fields: {
1341
1343
  content_optimization_translate_product_description_html: {
1342
1344
  product_description_html: {
1343
- name: "product_description_html";
1345
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1344
1346
  enabled: boolean;
1345
1347
  };
1346
1348
  product_name: {
1347
- name: "product_name";
1349
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1348
1350
  enabled: boolean;
1349
1351
  };
1350
1352
  };
1351
1353
  content_optimization_translate_seo?: {
1352
1354
  seo_title: {
1353
- name: "seo_title";
1355
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1354
1356
  enabled: boolean;
1355
1357
  };
1356
1358
  seo_description: {
1357
- name: "seo_description";
1359
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1358
1360
  enabled: boolean;
1359
1361
  };
1360
1362
  } | undefined;
@@ -1367,28 +1369,28 @@ export declare const SettingsSchemas: {
1367
1369
  translation_fields: {
1368
1370
  content_optimization_translate_product_description_html: {
1369
1371
  product_description_html: {
1370
- name: "product_description_html";
1372
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1371
1373
  enabled: boolean;
1372
1374
  };
1373
1375
  product_name: {
1374
- name: "product_name";
1376
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1375
1377
  enabled: boolean;
1376
1378
  };
1377
1379
  };
1378
1380
  content_optimization_translate_seo?: {
1379
1381
  seo_title: {
1380
- name: "seo_title";
1382
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1381
1383
  enabled: boolean;
1382
1384
  };
1383
1385
  seo_description: {
1384
- name: "seo_description";
1386
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1385
1387
  enabled: boolean;
1386
1388
  };
1387
1389
  } | undefined;
1388
1390
  };
1389
1391
  translation_languages?: string[] | undefined;
1390
1392
  }>;
1391
- }>, "strip", z.ZodTypeAny, {
1393
+ }, "strip", z.ZodTypeAny, {
1392
1394
  id: string;
1393
1395
  value: {
1394
1396
  recommendation_severity_weight: number;
@@ -1397,21 +1399,21 @@ export declare const SettingsSchemas: {
1397
1399
  translation_fields: {
1398
1400
  content_optimization_translate_product_description_html: {
1399
1401
  product_description_html: {
1400
- name: "product_description_html";
1402
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1401
1403
  enabled: boolean;
1402
1404
  };
1403
1405
  product_name: {
1404
- name: "product_name";
1406
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1405
1407
  enabled: boolean;
1406
1408
  };
1407
1409
  };
1408
1410
  content_optimization_translate_seo?: {
1409
1411
  seo_title: {
1410
- name: "seo_title";
1412
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1411
1413
  enabled: boolean;
1412
1414
  };
1413
1415
  seo_description: {
1414
- name: "seo_description";
1416
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1415
1417
  enabled: boolean;
1416
1418
  };
1417
1419
  } | undefined;
@@ -1429,21 +1431,21 @@ export declare const SettingsSchemas: {
1429
1431
  translation_fields: {
1430
1432
  content_optimization_translate_product_description_html: {
1431
1433
  product_description_html: {
1432
- name: "product_description_html";
1434
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1433
1435
  enabled: boolean;
1434
1436
  };
1435
1437
  product_name: {
1436
- name: "product_name";
1438
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1437
1439
  enabled: boolean;
1438
1440
  };
1439
1441
  };
1440
1442
  content_optimization_translate_seo?: {
1441
1443
  seo_title: {
1442
- name: "seo_title";
1444
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1443
1445
  enabled: boolean;
1444
1446
  };
1445
1447
  seo_description: {
1446
- name: "seo_description";
1448
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1447
1449
  enabled: boolean;
1448
1450
  };
1449
1451
  } | undefined;
@@ -1461,21 +1463,21 @@ export declare const SettingsSchemas: {
1461
1463
  translation_fields: {
1462
1464
  content_optimization_translate_product_description_html: {
1463
1465
  product_description_html: {
1464
- name: "product_description_html";
1466
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1465
1467
  enabled: boolean;
1466
1468
  };
1467
1469
  product_name: {
1468
- name: "product_name";
1470
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1469
1471
  enabled: boolean;
1470
1472
  };
1471
1473
  };
1472
1474
  content_optimization_translate_seo?: {
1473
1475
  seo_title: {
1474
- name: "seo_title";
1476
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1475
1477
  enabled: boolean;
1476
1478
  };
1477
1479
  seo_description: {
1478
- name: "seo_description";
1480
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1479
1481
  enabled: boolean;
1480
1482
  };
1481
1483
  } | undefined;
@@ -1489,21 +1491,21 @@ export declare const SettingsSchemas: {
1489
1491
  translation_fields: {
1490
1492
  content_optimization_translate_product_description_html: {
1491
1493
  product_description_html: {
1492
- name: "product_description_html";
1494
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1493
1495
  enabled: boolean;
1494
1496
  };
1495
1497
  product_name: {
1496
- name: "product_name";
1498
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1497
1499
  enabled: boolean;
1498
1500
  };
1499
1501
  };
1500
1502
  content_optimization_translate_seo?: {
1501
1503
  seo_title: {
1502
- name: "seo_title";
1504
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1503
1505
  enabled: boolean;
1504
1506
  };
1505
1507
  seo_description: {
1506
- name: "seo_description";
1508
+ name: "product_description_html" | "product_name" | "seo_title" | "seo_description";
1507
1509
  enabled: boolean;
1508
1510
  };
1509
1511
  } | undefined;
@@ -1515,12 +1517,12 @@ export declare const SettingsSchemas: {
1515
1517
  isEnabled?: boolean | undefined;
1516
1518
  updatedAt?: string | undefined;
1517
1519
  }>;
1518
- content_optimization_write: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1520
+ content_optimization_write: z.ZodEffects<z.ZodObject<{
1519
1521
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1520
1522
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1521
1523
  accountId: z.ZodString;
1522
1524
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1523
- }, {
1525
+ } & {
1524
1526
  value: z.ZodObject<{
1525
1527
  recommendation_severity_weight: z.ZodNumber;
1526
1528
  use_feedback_based_instructions: z.ZodBoolean;
@@ -1534,7 +1536,7 @@ export declare const SettingsSchemas: {
1534
1536
  use_feedback_based_instructions: boolean;
1535
1537
  only_generate_missing: boolean;
1536
1538
  }>;
1537
- }>, "strip", z.ZodTypeAny, {
1539
+ }, "strip", z.ZodTypeAny, {
1538
1540
  id: string;
1539
1541
  value: {
1540
1542
  recommendation_severity_weight: number;
@@ -1569,12 +1571,12 @@ export declare const SettingsSchemas: {
1569
1571
  isEnabled?: boolean | undefined;
1570
1572
  updatedAt?: string | undefined;
1571
1573
  }>;
1572
- content_optimization_write_seo: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1574
+ content_optimization_write_seo: z.ZodEffects<z.ZodObject<{
1573
1575
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1574
1576
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1575
1577
  accountId: z.ZodString;
1576
1578
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1577
- }, {
1579
+ } & {
1578
1580
  value: z.ZodObject<{
1579
1581
  recommendation_severity_weight: z.ZodNumber;
1580
1582
  use_feedback_based_instructions: z.ZodBoolean;
@@ -1594,7 +1596,7 @@ export declare const SettingsSchemas: {
1594
1596
  character_limit_title: number;
1595
1597
  character_limit_description: number;
1596
1598
  }>;
1597
- }>, "strip", z.ZodTypeAny, {
1599
+ }, "strip", z.ZodTypeAny, {
1598
1600
  id: string;
1599
1601
  value: {
1600
1602
  recommendation_severity_weight: number;
@@ -1637,12 +1639,12 @@ export declare const SettingsSchemas: {
1637
1639
  isEnabled?: boolean | undefined;
1638
1640
  updatedAt?: string | undefined;
1639
1641
  }>;
1640
- content_optimization_reduce_similarity: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1642
+ content_optimization_reduce_similarity: z.ZodEffects<z.ZodObject<{
1641
1643
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1642
1644
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1643
1645
  accountId: z.ZodString;
1644
1646
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1645
- }, {
1647
+ } & {
1646
1648
  value: z.ZodObject<{
1647
1649
  recommendation_severity_weight: z.ZodNumber;
1648
1650
  use_feedback_based_instructions: z.ZodBoolean;
@@ -1656,7 +1658,7 @@ export declare const SettingsSchemas: {
1656
1658
  use_feedback_based_instructions: boolean;
1657
1659
  similarity_threshold: number;
1658
1660
  }>;
1659
- }>, "strip", z.ZodTypeAny, {
1661
+ }, "strip", z.ZodTypeAny, {
1660
1662
  id: string;
1661
1663
  value: {
1662
1664
  recommendation_severity_weight: number;
@@ -1691,12 +1693,12 @@ export declare const SettingsSchemas: {
1691
1693
  isEnabled?: boolean | undefined;
1692
1694
  updatedAt?: string | undefined;
1693
1695
  }>;
1694
- content_optimization_write_seo_platform: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1696
+ content_optimization_write_seo_platform: z.ZodEffects<z.ZodObject<{
1695
1697
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1696
1698
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1697
1699
  accountId: z.ZodString;
1698
1700
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1699
- }, {
1701
+ } & {
1700
1702
  value: z.ZodObject<{
1701
1703
  isEnabled: z.ZodBoolean;
1702
1704
  fields: z.ZodObject<{
@@ -1750,7 +1752,7 @@ export declare const SettingsSchemas: {
1750
1752
  };
1751
1753
  };
1752
1754
  }>;
1753
- }>, "strip", z.ZodTypeAny, {
1755
+ }, "strip", z.ZodTypeAny, {
1754
1756
  id: string;
1755
1757
  value: {
1756
1758
  isEnabled: boolean;
@@ -1809,12 +1811,12 @@ export declare const SettingsSchemas: {
1809
1811
  isEnabled?: boolean | undefined;
1810
1812
  updatedAt?: string | undefined;
1811
1813
  }>;
1812
- inventory_optimization_economic_reward: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1814
+ inventory_optimization_economic_reward: z.ZodEffects<z.ZodObject<{
1813
1815
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1814
1816
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1815
1817
  accountId: z.ZodString;
1816
1818
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1817
- }, {
1819
+ } & {
1818
1820
  value: z.ZodObject<{
1819
1821
  lead_time_days: z.ZodNumber;
1820
1822
  stockout_cost_ratio: z.ZodNumber;
@@ -1846,7 +1848,7 @@ export declare const SettingsSchemas: {
1846
1848
  maximum_periods: number;
1847
1849
  discount_rate: number;
1848
1850
  }>;
1849
- }>, "strip", z.ZodTypeAny, {
1851
+ }, "strip", z.ZodTypeAny, {
1850
1852
  id: string;
1851
1853
  value: {
1852
1854
  lead_time_days: number;
@@ -1905,12 +1907,12 @@ export declare const SettingsSchemas: {
1905
1907
  isEnabled?: boolean | undefined;
1906
1908
  updatedAt?: string | undefined;
1907
1909
  }>;
1908
- wizard_platform: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1910
+ wizard_platform: z.ZodEffects<z.ZodObject<{
1909
1911
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1910
1912
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1911
1913
  accountId: z.ZodString;
1912
1914
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1913
- }, {
1915
+ } & {
1914
1916
  value: z.ZodObject<{
1915
1917
  isInterrestedInRefinementEnabled: z.ZodOptional<z.ZodBoolean>;
1916
1918
  isInterestedInTranslation: z.ZodOptional<z.ZodBoolean>;
@@ -1933,7 +1935,7 @@ export declare const SettingsSchemas: {
1933
1935
  isInterstedInInventoryOptimization?: boolean | undefined;
1934
1936
  hasCompletedWizard?: boolean | undefined;
1935
1937
  }>;
1936
- }>, "strip", z.ZodTypeAny, {
1938
+ }, "strip", z.ZodTypeAny, {
1937
1939
  id: string;
1938
1940
  value: {
1939
1941
  isInterrestedInRefinementEnabled?: boolean | undefined;
@@ -1980,14 +1982,14 @@ export declare const SettingsSchemas: {
1980
1982
  isEnabled?: boolean | undefined;
1981
1983
  updatedAt?: string | undefined;
1982
1984
  }>;
1983
- shopify_primary_locale: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1985
+ shopify_primary_locale: z.ZodEffects<z.ZodObject<{
1984
1986
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
1985
1987
  isEnabled: z.ZodOptional<z.ZodBoolean>;
1986
1988
  accountId: z.ZodString;
1987
1989
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
1988
- }, {
1990
+ } & {
1989
1991
  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, {
1992
+ }, "strip", z.ZodTypeAny, {
1991
1993
  id: string;
1992
1994
  accountId: string;
1993
1995
  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,14 +2008,14 @@ export declare const SettingsSchemas: {
2006
2008
  isEnabled?: boolean | undefined;
2007
2009
  updatedAt?: string | undefined;
2008
2010
  }>;
2009
- shopify_primary_url: z.ZodEffects<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
2011
+ shopify_primary_url: z.ZodEffects<z.ZodOptional<z.ZodObject<{
2010
2012
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
2011
2013
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2012
2014
  accountId: z.ZodString;
2013
2015
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
2014
- }, {
2016
+ } & {
2015
2017
  value: z.ZodString;
2016
- }>, "strip", z.ZodTypeAny, {
2018
+ }, "strip", z.ZodTypeAny, {
2017
2019
  id: string;
2018
2020
  value: string;
2019
2021
  accountId: string;
@@ -2032,14 +2034,14 @@ export declare const SettingsSchemas: {
2032
2034
  isEnabled?: boolean | undefined;
2033
2035
  updatedAt?: string | undefined;
2034
2036
  } | undefined>;
2035
- analytics_timezone: z.ZodEffects<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
2037
+ analytics_timezone: z.ZodEffects<z.ZodOptional<z.ZodObject<{
2036
2038
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
2037
2039
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2038
2040
  accountId: z.ZodString;
2039
2041
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
2040
- }, {
2042
+ } & {
2041
2043
  value: z.ZodString;
2042
- }>, "strip", z.ZodTypeAny, {
2044
+ }, "strip", z.ZodTypeAny, {
2043
2045
  id: string;
2044
2046
  value: string;
2045
2047
  accountId: string;
@@ -2058,14 +2060,14 @@ export declare const SettingsSchemas: {
2058
2060
  isEnabled?: boolean | undefined;
2059
2061
  updatedAt?: string | undefined;
2060
2062
  } | undefined>;
2061
- company_description: z.ZodEffects<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
2063
+ company_description: z.ZodEffects<z.ZodOptional<z.ZodObject<{
2062
2064
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
2063
2065
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2064
2066
  accountId: z.ZodString;
2065
2067
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
2066
- }, {
2068
+ } & {
2067
2069
  value: z.ZodString;
2068
- }>, "strip", z.ZodTypeAny, {
2070
+ }, "strip", z.ZodTypeAny, {
2069
2071
  id: string;
2070
2072
  value: string;
2071
2073
  accountId: string;
@@ -2084,14 +2086,14 @@ export declare const SettingsSchemas: {
2084
2086
  isEnabled?: boolean | undefined;
2085
2087
  updatedAt?: string | undefined;
2086
2088
  } | undefined>;
2087
- analytics_currency_code: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
2089
+ analytics_currency_code: z.ZodEffects<z.ZodObject<{
2088
2090
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
2089
2091
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2090
2092
  accountId: z.ZodString;
2091
2093
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
2092
- }, {
2094
+ } & {
2093
2095
  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, {
2096
+ }, "strip", z.ZodTypeAny, {
2095
2097
  id: string;
2096
2098
  accountId: string;
2097
2099
  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;
@@ -2110,14 +2112,14 @@ export declare const SettingsSchemas: {
2110
2112
  isEnabled?: boolean | undefined;
2111
2113
  updatedAt?: string | undefined;
2112
2114
  }>;
2113
- unknown: z.ZodEffects<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
2115
+ unknown: z.ZodEffects<z.ZodOptional<z.ZodObject<{
2114
2116
  id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
2115
2117
  isEnabled: z.ZodOptional<z.ZodBoolean>;
2116
2118
  accountId: z.ZodString;
2117
2119
  updatedAt: z.ZodOptional<z.ZodEffects<z.ZodString, import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>;
2118
- }, {
2120
+ } & {
2119
2121
  value: z.ZodString;
2120
- }>, "strip", z.ZodTypeAny, {
2122
+ }, "strip", z.ZodTypeAny, {
2121
2123
  id: string;
2122
2124
  value: string;
2123
2125
  accountId: string;
@@ -2137,4 +2139,5 @@ export declare const SettingsSchemas: {
2137
2139
  updatedAt?: string | undefined;
2138
2140
  } | undefined>;
2139
2141
  };
2142
+ export {};
2140
2143
  //# sourceMappingURL=accountSettings.d.ts.map