@omni-graph/omni-model 0.7.10 → 0.7.12
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.
|
@@ -210,18 +210,39 @@ export declare const HeadingTypeEnum: z.ZodEnum<{
|
|
|
210
210
|
h6: "h6";
|
|
211
211
|
strong: "strong";
|
|
212
212
|
}>;
|
|
213
|
-
export declare const DesignGuideSectionSchema: z.ZodObject<{
|
|
213
|
+
export declare const DesignGuideSectionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
214
214
|
name: z.ZodString;
|
|
215
|
-
type: z.ZodEnum<{
|
|
216
|
-
boolean: "boolean";
|
|
217
|
-
html_text: "html_text";
|
|
218
|
-
bullet_point: "bullet_point";
|
|
219
|
-
specification: "specification";
|
|
220
|
-
plain_text: "plain_text";
|
|
221
|
-
title: "title";
|
|
222
|
-
}>;
|
|
223
215
|
description: z.ZodString;
|
|
224
216
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
217
|
+
type: z.ZodLiteral<"html_text">;
|
|
218
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
219
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
220
|
+
name: z.ZodString;
|
|
221
|
+
description: z.ZodString;
|
|
222
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
223
|
+
type: z.ZodLiteral<"bullet_point">;
|
|
224
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
225
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
226
|
+
name: z.ZodString;
|
|
227
|
+
description: z.ZodString;
|
|
228
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
229
|
+
type: z.ZodLiteral<"specification">;
|
|
230
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
231
|
+
name: z.ZodString;
|
|
232
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
233
|
+
}, z.core.$strip>>>>;
|
|
234
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
235
|
+
name: z.ZodString;
|
|
236
|
+
description: z.ZodString;
|
|
237
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
238
|
+
type: z.ZodLiteral<"plain_text">;
|
|
239
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
240
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
241
|
+
name: z.ZodString;
|
|
242
|
+
description: z.ZodString;
|
|
243
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
244
|
+
type: z.ZodLiteral<"title">;
|
|
245
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
225
246
|
settings: z.ZodOptional<z.ZodObject<{
|
|
226
247
|
heading_type: z.ZodEnum<{
|
|
227
248
|
h1: "h1";
|
|
@@ -232,8 +253,15 @@ export declare const DesignGuideSectionSchema: z.ZodObject<{
|
|
|
232
253
|
h6: "h6";
|
|
233
254
|
strong: "strong";
|
|
234
255
|
}>;
|
|
256
|
+
skip_if_next_section_empty: z.ZodOptional<z.ZodBoolean>;
|
|
235
257
|
}, z.core.$strip>>;
|
|
236
|
-
}, z.core.$strip
|
|
258
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
259
|
+
name: z.ZodString;
|
|
260
|
+
description: z.ZodString;
|
|
261
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
262
|
+
type: z.ZodLiteral<"boolean">;
|
|
263
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodBoolean>>;
|
|
264
|
+
}, z.core.$strip>]>;
|
|
237
265
|
export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
238
266
|
id: z.ZodCatch<z.ZodEnum<{
|
|
239
267
|
[x: string]: string;
|
|
@@ -247,18 +275,39 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
247
275
|
allow_empty_store_url: z.ZodBoolean;
|
|
248
276
|
prioritization_strategy: z.ZodOptional<z.ZodString>;
|
|
249
277
|
design_guide: z.ZodObject<{
|
|
250
|
-
sections: z.ZodArray<z.ZodObject<{
|
|
278
|
+
sections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
279
|
+
name: z.ZodString;
|
|
280
|
+
description: z.ZodString;
|
|
281
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
282
|
+
type: z.ZodLiteral<"html_text">;
|
|
283
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
284
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
285
|
+
name: z.ZodString;
|
|
286
|
+
description: z.ZodString;
|
|
287
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
288
|
+
type: z.ZodLiteral<"bullet_point">;
|
|
289
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
290
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
251
291
|
name: z.ZodString;
|
|
252
|
-
type: z.ZodEnum<{
|
|
253
|
-
boolean: "boolean";
|
|
254
|
-
html_text: "html_text";
|
|
255
|
-
bullet_point: "bullet_point";
|
|
256
|
-
specification: "specification";
|
|
257
|
-
plain_text: "plain_text";
|
|
258
|
-
title: "title";
|
|
259
|
-
}>;
|
|
260
292
|
description: z.ZodString;
|
|
261
293
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
294
|
+
type: z.ZodLiteral<"specification">;
|
|
295
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
296
|
+
name: z.ZodString;
|
|
297
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
298
|
+
}, z.core.$strip>>>>;
|
|
299
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
300
|
+
name: z.ZodString;
|
|
301
|
+
description: z.ZodString;
|
|
302
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
303
|
+
type: z.ZodLiteral<"plain_text">;
|
|
304
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
305
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
306
|
+
name: z.ZodString;
|
|
307
|
+
description: z.ZodString;
|
|
308
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
309
|
+
type: z.ZodLiteral<"title">;
|
|
310
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
262
311
|
settings: z.ZodOptional<z.ZodObject<{
|
|
263
312
|
heading_type: z.ZodEnum<{
|
|
264
313
|
h1: "h1";
|
|
@@ -269,8 +318,15 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
269
318
|
h6: "h6";
|
|
270
319
|
strong: "strong";
|
|
271
320
|
}>;
|
|
321
|
+
skip_if_next_section_empty: z.ZodOptional<z.ZodBoolean>;
|
|
272
322
|
}, z.core.$strip>>;
|
|
273
|
-
}, z.core.$strip
|
|
323
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
324
|
+
name: z.ZodString;
|
|
325
|
+
description: z.ZodString;
|
|
326
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
327
|
+
type: z.ZodLiteral<"boolean">;
|
|
328
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodBoolean>>;
|
|
329
|
+
}, z.core.$strip>]>>;
|
|
274
330
|
}, z.core.$strip>;
|
|
275
331
|
}, z.core.$strip>;
|
|
276
332
|
}, z.core.$strip>, z.ZodTransform<{
|
|
@@ -278,15 +334,50 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
278
334
|
use_online_summary: boolean;
|
|
279
335
|
allow_empty_store_url: boolean;
|
|
280
336
|
design_guide: {
|
|
281
|
-
sections: {
|
|
337
|
+
sections: ({
|
|
338
|
+
name: string;
|
|
339
|
+
description: string;
|
|
340
|
+
type: "html_text";
|
|
341
|
+
hidden?: boolean | undefined;
|
|
342
|
+
examples?: string[] | undefined;
|
|
343
|
+
} | {
|
|
282
344
|
name: string;
|
|
283
|
-
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
284
345
|
description: string;
|
|
346
|
+
type: "bullet_point";
|
|
285
347
|
hidden?: boolean | undefined;
|
|
348
|
+
examples?: string[][] | undefined;
|
|
349
|
+
} | {
|
|
350
|
+
name: string;
|
|
351
|
+
description: string;
|
|
352
|
+
type: "specification";
|
|
353
|
+
hidden?: boolean | undefined;
|
|
354
|
+
examples?: {
|
|
355
|
+
name: string;
|
|
356
|
+
value: string | number | (string | number)[];
|
|
357
|
+
}[][] | undefined;
|
|
358
|
+
} | {
|
|
359
|
+
name: string;
|
|
360
|
+
description: string;
|
|
361
|
+
type: "plain_text";
|
|
362
|
+
hidden?: boolean | undefined;
|
|
363
|
+
examples?: string[] | undefined;
|
|
364
|
+
} | {
|
|
365
|
+
name: string;
|
|
366
|
+
description: string;
|
|
367
|
+
type: "title";
|
|
368
|
+
hidden?: boolean | undefined;
|
|
369
|
+
examples?: string[] | undefined;
|
|
286
370
|
settings?: {
|
|
287
371
|
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
372
|
+
skip_if_next_section_empty?: boolean | undefined;
|
|
288
373
|
} | undefined;
|
|
289
|
-
}
|
|
374
|
+
} | {
|
|
375
|
+
name: string;
|
|
376
|
+
description: string;
|
|
377
|
+
type: "boolean";
|
|
378
|
+
hidden?: boolean | undefined;
|
|
379
|
+
examples?: boolean[] | undefined;
|
|
380
|
+
})[];
|
|
290
381
|
};
|
|
291
382
|
prioritization_strategy?: string | undefined;
|
|
292
383
|
}, {
|
|
@@ -297,15 +388,50 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
297
388
|
use_online_summary: boolean;
|
|
298
389
|
allow_empty_store_url: boolean;
|
|
299
390
|
design_guide: {
|
|
300
|
-
sections: {
|
|
391
|
+
sections: ({
|
|
392
|
+
name: string;
|
|
393
|
+
description: string;
|
|
394
|
+
type: "html_text";
|
|
395
|
+
hidden?: boolean | undefined;
|
|
396
|
+
examples?: string[] | undefined;
|
|
397
|
+
} | {
|
|
398
|
+
name: string;
|
|
399
|
+
description: string;
|
|
400
|
+
type: "bullet_point";
|
|
401
|
+
hidden?: boolean | undefined;
|
|
402
|
+
examples?: string[][] | undefined;
|
|
403
|
+
} | {
|
|
404
|
+
name: string;
|
|
405
|
+
description: string;
|
|
406
|
+
type: "specification";
|
|
407
|
+
hidden?: boolean | undefined;
|
|
408
|
+
examples?: {
|
|
409
|
+
name: string;
|
|
410
|
+
value: string | number | (string | number)[];
|
|
411
|
+
}[][] | undefined;
|
|
412
|
+
} | {
|
|
413
|
+
name: string;
|
|
414
|
+
description: string;
|
|
415
|
+
type: "plain_text";
|
|
416
|
+
hidden?: boolean | undefined;
|
|
417
|
+
examples?: string[] | undefined;
|
|
418
|
+
} | {
|
|
301
419
|
name: string;
|
|
302
|
-
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
303
420
|
description: string;
|
|
421
|
+
type: "title";
|
|
304
422
|
hidden?: boolean | undefined;
|
|
423
|
+
examples?: string[] | undefined;
|
|
305
424
|
settings?: {
|
|
306
425
|
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
426
|
+
skip_if_next_section_empty?: boolean | undefined;
|
|
307
427
|
} | undefined;
|
|
308
|
-
}
|
|
428
|
+
} | {
|
|
429
|
+
name: string;
|
|
430
|
+
description: string;
|
|
431
|
+
type: "boolean";
|
|
432
|
+
hidden?: boolean | undefined;
|
|
433
|
+
examples?: boolean[] | undefined;
|
|
434
|
+
})[];
|
|
309
435
|
};
|
|
310
436
|
prioritization_strategy?: string | undefined;
|
|
311
437
|
};
|
|
@@ -320,18 +446,39 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
320
446
|
accountId: z.ZodString;
|
|
321
447
|
updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
|
|
322
448
|
value: z.ZodObject<{
|
|
323
|
-
sections: z.ZodArray<z.ZodObject<{
|
|
449
|
+
sections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
450
|
+
name: z.ZodString;
|
|
451
|
+
description: z.ZodString;
|
|
452
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
453
|
+
type: z.ZodLiteral<"html_text">;
|
|
454
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
455
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
456
|
+
name: z.ZodString;
|
|
457
|
+
description: z.ZodString;
|
|
458
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
459
|
+
type: z.ZodLiteral<"bullet_point">;
|
|
460
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
461
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
462
|
+
name: z.ZodString;
|
|
463
|
+
description: z.ZodString;
|
|
464
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
465
|
+
type: z.ZodLiteral<"specification">;
|
|
466
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
467
|
+
name: z.ZodString;
|
|
468
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
469
|
+
}, z.core.$strip>>>>;
|
|
470
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
324
471
|
name: z.ZodString;
|
|
325
|
-
type: z.ZodEnum<{
|
|
326
|
-
boolean: "boolean";
|
|
327
|
-
html_text: "html_text";
|
|
328
|
-
bullet_point: "bullet_point";
|
|
329
|
-
specification: "specification";
|
|
330
|
-
plain_text: "plain_text";
|
|
331
|
-
title: "title";
|
|
332
|
-
}>;
|
|
333
472
|
description: z.ZodString;
|
|
334
473
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
474
|
+
type: z.ZodLiteral<"plain_text">;
|
|
475
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
476
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
477
|
+
name: z.ZodString;
|
|
478
|
+
description: z.ZodString;
|
|
479
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
480
|
+
type: z.ZodLiteral<"title">;
|
|
481
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
335
482
|
settings: z.ZodOptional<z.ZodObject<{
|
|
336
483
|
heading_type: z.ZodEnum<{
|
|
337
484
|
h1: "h1";
|
|
@@ -342,32 +489,109 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
|
|
|
342
489
|
h6: "h6";
|
|
343
490
|
strong: "strong";
|
|
344
491
|
}>;
|
|
492
|
+
skip_if_next_section_empty: z.ZodOptional<z.ZodBoolean>;
|
|
345
493
|
}, z.core.$strip>>;
|
|
346
|
-
}, z.core.$strip
|
|
494
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
495
|
+
name: z.ZodString;
|
|
496
|
+
description: z.ZodString;
|
|
497
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
498
|
+
type: z.ZodLiteral<"boolean">;
|
|
499
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodBoolean>>;
|
|
500
|
+
}, z.core.$strip>]>>;
|
|
347
501
|
}, z.core.$strip>;
|
|
348
502
|
}, z.core.$strip>, z.ZodTransform<{
|
|
349
|
-
sections: {
|
|
503
|
+
sections: ({
|
|
504
|
+
name: string;
|
|
505
|
+
description: string;
|
|
506
|
+
type: "html_text";
|
|
507
|
+
hidden?: boolean | undefined;
|
|
508
|
+
examples?: string[] | undefined;
|
|
509
|
+
} | {
|
|
510
|
+
name: string;
|
|
511
|
+
description: string;
|
|
512
|
+
type: "bullet_point";
|
|
513
|
+
hidden?: boolean | undefined;
|
|
514
|
+
examples?: string[][] | undefined;
|
|
515
|
+
} | {
|
|
350
516
|
name: string;
|
|
351
|
-
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
352
517
|
description: string;
|
|
518
|
+
type: "specification";
|
|
353
519
|
hidden?: boolean | undefined;
|
|
520
|
+
examples?: {
|
|
521
|
+
name: string;
|
|
522
|
+
value: string | number | (string | number)[];
|
|
523
|
+
}[][] | undefined;
|
|
524
|
+
} | {
|
|
525
|
+
name: string;
|
|
526
|
+
description: string;
|
|
527
|
+
type: "plain_text";
|
|
528
|
+
hidden?: boolean | undefined;
|
|
529
|
+
examples?: string[] | undefined;
|
|
530
|
+
} | {
|
|
531
|
+
name: string;
|
|
532
|
+
description: string;
|
|
533
|
+
type: "title";
|
|
534
|
+
hidden?: boolean | undefined;
|
|
535
|
+
examples?: string[] | undefined;
|
|
354
536
|
settings?: {
|
|
355
537
|
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
538
|
+
skip_if_next_section_empty?: boolean | undefined;
|
|
356
539
|
} | undefined;
|
|
357
|
-
}
|
|
540
|
+
} | {
|
|
541
|
+
name: string;
|
|
542
|
+
description: string;
|
|
543
|
+
type: "boolean";
|
|
544
|
+
hidden?: boolean | undefined;
|
|
545
|
+
examples?: boolean[] | undefined;
|
|
546
|
+
})[];
|
|
358
547
|
}, {
|
|
359
548
|
id: string;
|
|
360
549
|
accountId: string;
|
|
361
550
|
value: {
|
|
362
|
-
sections: {
|
|
551
|
+
sections: ({
|
|
552
|
+
name: string;
|
|
553
|
+
description: string;
|
|
554
|
+
type: "html_text";
|
|
555
|
+
hidden?: boolean | undefined;
|
|
556
|
+
examples?: string[] | undefined;
|
|
557
|
+
} | {
|
|
558
|
+
name: string;
|
|
559
|
+
description: string;
|
|
560
|
+
type: "bullet_point";
|
|
561
|
+
hidden?: boolean | undefined;
|
|
562
|
+
examples?: string[][] | undefined;
|
|
563
|
+
} | {
|
|
564
|
+
name: string;
|
|
565
|
+
description: string;
|
|
566
|
+
type: "specification";
|
|
567
|
+
hidden?: boolean | undefined;
|
|
568
|
+
examples?: {
|
|
569
|
+
name: string;
|
|
570
|
+
value: string | number | (string | number)[];
|
|
571
|
+
}[][] | undefined;
|
|
572
|
+
} | {
|
|
363
573
|
name: string;
|
|
364
|
-
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
365
574
|
description: string;
|
|
575
|
+
type: "plain_text";
|
|
366
576
|
hidden?: boolean | undefined;
|
|
577
|
+
examples?: string[] | undefined;
|
|
578
|
+
} | {
|
|
579
|
+
name: string;
|
|
580
|
+
description: string;
|
|
581
|
+
type: "title";
|
|
582
|
+
hidden?: boolean | undefined;
|
|
583
|
+
examples?: string[] | undefined;
|
|
367
584
|
settings?: {
|
|
368
585
|
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
586
|
+
skip_if_next_section_empty?: boolean | undefined;
|
|
369
587
|
} | undefined;
|
|
370
|
-
}
|
|
588
|
+
} | {
|
|
589
|
+
name: string;
|
|
590
|
+
description: string;
|
|
591
|
+
type: "boolean";
|
|
592
|
+
hidden?: boolean | undefined;
|
|
593
|
+
examples?: boolean[] | undefined;
|
|
594
|
+
})[];
|
|
371
595
|
};
|
|
372
596
|
isEnabled?: boolean | undefined;
|
|
373
597
|
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
@@ -1044,18 +1268,39 @@ export declare const SettingsSchemas: {
|
|
|
1044
1268
|
allow_empty_store_url: z.ZodBoolean;
|
|
1045
1269
|
prioritization_strategy: z.ZodOptional<z.ZodString>;
|
|
1046
1270
|
design_guide: z.ZodObject<{
|
|
1047
|
-
sections: z.ZodArray<z.ZodObject<{
|
|
1271
|
+
sections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1272
|
+
name: z.ZodString;
|
|
1273
|
+
description: z.ZodString;
|
|
1274
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1275
|
+
type: z.ZodLiteral<"html_text">;
|
|
1276
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1277
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1278
|
+
name: z.ZodString;
|
|
1279
|
+
description: z.ZodString;
|
|
1280
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1281
|
+
type: z.ZodLiteral<"bullet_point">;
|
|
1282
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
1283
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1284
|
+
name: z.ZodString;
|
|
1285
|
+
description: z.ZodString;
|
|
1286
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1287
|
+
type: z.ZodLiteral<"specification">;
|
|
1288
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
1289
|
+
name: z.ZodString;
|
|
1290
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
1291
|
+
}, z.core.$strip>>>>;
|
|
1292
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1293
|
+
name: z.ZodString;
|
|
1294
|
+
description: z.ZodString;
|
|
1295
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1296
|
+
type: z.ZodLiteral<"plain_text">;
|
|
1297
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1298
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1048
1299
|
name: z.ZodString;
|
|
1049
|
-
type: z.ZodEnum<{
|
|
1050
|
-
boolean: "boolean";
|
|
1051
|
-
html_text: "html_text";
|
|
1052
|
-
bullet_point: "bullet_point";
|
|
1053
|
-
specification: "specification";
|
|
1054
|
-
plain_text: "plain_text";
|
|
1055
|
-
title: "title";
|
|
1056
|
-
}>;
|
|
1057
1300
|
description: z.ZodString;
|
|
1058
1301
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1302
|
+
type: z.ZodLiteral<"title">;
|
|
1303
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1059
1304
|
settings: z.ZodOptional<z.ZodObject<{
|
|
1060
1305
|
heading_type: z.ZodEnum<{
|
|
1061
1306
|
h1: "h1";
|
|
@@ -1066,8 +1311,15 @@ export declare const SettingsSchemas: {
|
|
|
1066
1311
|
h6: "h6";
|
|
1067
1312
|
strong: "strong";
|
|
1068
1313
|
}>;
|
|
1314
|
+
skip_if_next_section_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1069
1315
|
}, z.core.$strip>>;
|
|
1070
|
-
}, z.core.$strip
|
|
1316
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1317
|
+
name: z.ZodString;
|
|
1318
|
+
description: z.ZodString;
|
|
1319
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1320
|
+
type: z.ZodLiteral<"boolean">;
|
|
1321
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodBoolean>>;
|
|
1322
|
+
}, z.core.$strip>]>>;
|
|
1071
1323
|
}, z.core.$strip>;
|
|
1072
1324
|
}, z.core.$strip>;
|
|
1073
1325
|
}, z.core.$strip>, z.ZodTransform<{
|
|
@@ -1075,15 +1327,50 @@ export declare const SettingsSchemas: {
|
|
|
1075
1327
|
use_online_summary: boolean;
|
|
1076
1328
|
allow_empty_store_url: boolean;
|
|
1077
1329
|
design_guide: {
|
|
1078
|
-
sections: {
|
|
1330
|
+
sections: ({
|
|
1079
1331
|
name: string;
|
|
1080
|
-
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
1081
1332
|
description: string;
|
|
1333
|
+
type: "html_text";
|
|
1082
1334
|
hidden?: boolean | undefined;
|
|
1335
|
+
examples?: string[] | undefined;
|
|
1336
|
+
} | {
|
|
1337
|
+
name: string;
|
|
1338
|
+
description: string;
|
|
1339
|
+
type: "bullet_point";
|
|
1340
|
+
hidden?: boolean | undefined;
|
|
1341
|
+
examples?: string[][] | undefined;
|
|
1342
|
+
} | {
|
|
1343
|
+
name: string;
|
|
1344
|
+
description: string;
|
|
1345
|
+
type: "specification";
|
|
1346
|
+
hidden?: boolean | undefined;
|
|
1347
|
+
examples?: {
|
|
1348
|
+
name: string;
|
|
1349
|
+
value: string | number | (string | number)[];
|
|
1350
|
+
}[][] | undefined;
|
|
1351
|
+
} | {
|
|
1352
|
+
name: string;
|
|
1353
|
+
description: string;
|
|
1354
|
+
type: "plain_text";
|
|
1355
|
+
hidden?: boolean | undefined;
|
|
1356
|
+
examples?: string[] | undefined;
|
|
1357
|
+
} | {
|
|
1358
|
+
name: string;
|
|
1359
|
+
description: string;
|
|
1360
|
+
type: "title";
|
|
1361
|
+
hidden?: boolean | undefined;
|
|
1362
|
+
examples?: string[] | undefined;
|
|
1083
1363
|
settings?: {
|
|
1084
1364
|
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1365
|
+
skip_if_next_section_empty?: boolean | undefined;
|
|
1085
1366
|
} | undefined;
|
|
1086
|
-
}
|
|
1367
|
+
} | {
|
|
1368
|
+
name: string;
|
|
1369
|
+
description: string;
|
|
1370
|
+
type: "boolean";
|
|
1371
|
+
hidden?: boolean | undefined;
|
|
1372
|
+
examples?: boolean[] | undefined;
|
|
1373
|
+
})[];
|
|
1087
1374
|
};
|
|
1088
1375
|
prioritization_strategy?: string | undefined;
|
|
1089
1376
|
}, {
|
|
@@ -1094,15 +1381,50 @@ export declare const SettingsSchemas: {
|
|
|
1094
1381
|
use_online_summary: boolean;
|
|
1095
1382
|
allow_empty_store_url: boolean;
|
|
1096
1383
|
design_guide: {
|
|
1097
|
-
sections: {
|
|
1384
|
+
sections: ({
|
|
1385
|
+
name: string;
|
|
1386
|
+
description: string;
|
|
1387
|
+
type: "html_text";
|
|
1388
|
+
hidden?: boolean | undefined;
|
|
1389
|
+
examples?: string[] | undefined;
|
|
1390
|
+
} | {
|
|
1391
|
+
name: string;
|
|
1392
|
+
description: string;
|
|
1393
|
+
type: "bullet_point";
|
|
1394
|
+
hidden?: boolean | undefined;
|
|
1395
|
+
examples?: string[][] | undefined;
|
|
1396
|
+
} | {
|
|
1397
|
+
name: string;
|
|
1398
|
+
description: string;
|
|
1399
|
+
type: "specification";
|
|
1400
|
+
hidden?: boolean | undefined;
|
|
1401
|
+
examples?: {
|
|
1402
|
+
name: string;
|
|
1403
|
+
value: string | number | (string | number)[];
|
|
1404
|
+
}[][] | undefined;
|
|
1405
|
+
} | {
|
|
1406
|
+
name: string;
|
|
1407
|
+
description: string;
|
|
1408
|
+
type: "plain_text";
|
|
1409
|
+
hidden?: boolean | undefined;
|
|
1410
|
+
examples?: string[] | undefined;
|
|
1411
|
+
} | {
|
|
1098
1412
|
name: string;
|
|
1099
|
-
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
1100
1413
|
description: string;
|
|
1414
|
+
type: "title";
|
|
1101
1415
|
hidden?: boolean | undefined;
|
|
1416
|
+
examples?: string[] | undefined;
|
|
1102
1417
|
settings?: {
|
|
1103
1418
|
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1419
|
+
skip_if_next_section_empty?: boolean | undefined;
|
|
1104
1420
|
} | undefined;
|
|
1105
|
-
}
|
|
1421
|
+
} | {
|
|
1422
|
+
name: string;
|
|
1423
|
+
description: string;
|
|
1424
|
+
type: "boolean";
|
|
1425
|
+
hidden?: boolean | undefined;
|
|
1426
|
+
examples?: boolean[] | undefined;
|
|
1427
|
+
})[];
|
|
1106
1428
|
};
|
|
1107
1429
|
prioritization_strategy?: string | undefined;
|
|
1108
1430
|
};
|
|
@@ -1823,18 +2145,39 @@ export declare const SettingsSchemas: {
|
|
|
1823
2145
|
accountId: z.ZodString;
|
|
1824
2146
|
updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
|
|
1825
2147
|
value: z.ZodObject<{
|
|
1826
|
-
sections: z.ZodArray<z.ZodObject<{
|
|
2148
|
+
sections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2149
|
+
name: z.ZodString;
|
|
2150
|
+
description: z.ZodString;
|
|
2151
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2152
|
+
type: z.ZodLiteral<"html_text">;
|
|
2153
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2154
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2155
|
+
name: z.ZodString;
|
|
2156
|
+
description: z.ZodString;
|
|
2157
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2158
|
+
type: z.ZodLiteral<"bullet_point">;
|
|
2159
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
2160
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2161
|
+
name: z.ZodString;
|
|
2162
|
+
description: z.ZodString;
|
|
2163
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2164
|
+
type: z.ZodLiteral<"specification">;
|
|
2165
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
2166
|
+
name: z.ZodString;
|
|
2167
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2168
|
+
}, z.core.$strip>>>>;
|
|
2169
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1827
2170
|
name: z.ZodString;
|
|
1828
|
-
type: z.ZodEnum<{
|
|
1829
|
-
boolean: "boolean";
|
|
1830
|
-
html_text: "html_text";
|
|
1831
|
-
bullet_point: "bullet_point";
|
|
1832
|
-
specification: "specification";
|
|
1833
|
-
plain_text: "plain_text";
|
|
1834
|
-
title: "title";
|
|
1835
|
-
}>;
|
|
1836
2171
|
description: z.ZodString;
|
|
1837
2172
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2173
|
+
type: z.ZodLiteral<"plain_text">;
|
|
2174
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2175
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2176
|
+
name: z.ZodString;
|
|
2177
|
+
description: z.ZodString;
|
|
2178
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2179
|
+
type: z.ZodLiteral<"title">;
|
|
2180
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1838
2181
|
settings: z.ZodOptional<z.ZodObject<{
|
|
1839
2182
|
heading_type: z.ZodEnum<{
|
|
1840
2183
|
h1: "h1";
|
|
@@ -1845,32 +2188,109 @@ export declare const SettingsSchemas: {
|
|
|
1845
2188
|
h6: "h6";
|
|
1846
2189
|
strong: "strong";
|
|
1847
2190
|
}>;
|
|
2191
|
+
skip_if_next_section_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1848
2192
|
}, z.core.$strip>>;
|
|
1849
|
-
}, z.core.$strip
|
|
2193
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2194
|
+
name: z.ZodString;
|
|
2195
|
+
description: z.ZodString;
|
|
2196
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2197
|
+
type: z.ZodLiteral<"boolean">;
|
|
2198
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodBoolean>>;
|
|
2199
|
+
}, z.core.$strip>]>>;
|
|
1850
2200
|
}, z.core.$strip>;
|
|
1851
2201
|
}, z.core.$strip>, z.ZodTransform<{
|
|
1852
|
-
sections: {
|
|
2202
|
+
sections: ({
|
|
1853
2203
|
name: string;
|
|
1854
|
-
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
1855
2204
|
description: string;
|
|
2205
|
+
type: "html_text";
|
|
1856
2206
|
hidden?: boolean | undefined;
|
|
2207
|
+
examples?: string[] | undefined;
|
|
2208
|
+
} | {
|
|
2209
|
+
name: string;
|
|
2210
|
+
description: string;
|
|
2211
|
+
type: "bullet_point";
|
|
2212
|
+
hidden?: boolean | undefined;
|
|
2213
|
+
examples?: string[][] | undefined;
|
|
2214
|
+
} | {
|
|
2215
|
+
name: string;
|
|
2216
|
+
description: string;
|
|
2217
|
+
type: "specification";
|
|
2218
|
+
hidden?: boolean | undefined;
|
|
2219
|
+
examples?: {
|
|
2220
|
+
name: string;
|
|
2221
|
+
value: string | number | (string | number)[];
|
|
2222
|
+
}[][] | undefined;
|
|
2223
|
+
} | {
|
|
2224
|
+
name: string;
|
|
2225
|
+
description: string;
|
|
2226
|
+
type: "plain_text";
|
|
2227
|
+
hidden?: boolean | undefined;
|
|
2228
|
+
examples?: string[] | undefined;
|
|
2229
|
+
} | {
|
|
2230
|
+
name: string;
|
|
2231
|
+
description: string;
|
|
2232
|
+
type: "title";
|
|
2233
|
+
hidden?: boolean | undefined;
|
|
2234
|
+
examples?: string[] | undefined;
|
|
1857
2235
|
settings?: {
|
|
1858
2236
|
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2237
|
+
skip_if_next_section_empty?: boolean | undefined;
|
|
1859
2238
|
} | undefined;
|
|
1860
|
-
}
|
|
2239
|
+
} | {
|
|
2240
|
+
name: string;
|
|
2241
|
+
description: string;
|
|
2242
|
+
type: "boolean";
|
|
2243
|
+
hidden?: boolean | undefined;
|
|
2244
|
+
examples?: boolean[] | undefined;
|
|
2245
|
+
})[];
|
|
1861
2246
|
}, {
|
|
1862
2247
|
id: string;
|
|
1863
2248
|
accountId: string;
|
|
1864
2249
|
value: {
|
|
1865
|
-
sections: {
|
|
2250
|
+
sections: ({
|
|
1866
2251
|
name: string;
|
|
1867
|
-
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
1868
2252
|
description: string;
|
|
2253
|
+
type: "html_text";
|
|
1869
2254
|
hidden?: boolean | undefined;
|
|
2255
|
+
examples?: string[] | undefined;
|
|
2256
|
+
} | {
|
|
2257
|
+
name: string;
|
|
2258
|
+
description: string;
|
|
2259
|
+
type: "bullet_point";
|
|
2260
|
+
hidden?: boolean | undefined;
|
|
2261
|
+
examples?: string[][] | undefined;
|
|
2262
|
+
} | {
|
|
2263
|
+
name: string;
|
|
2264
|
+
description: string;
|
|
2265
|
+
type: "specification";
|
|
2266
|
+
hidden?: boolean | undefined;
|
|
2267
|
+
examples?: {
|
|
2268
|
+
name: string;
|
|
2269
|
+
value: string | number | (string | number)[];
|
|
2270
|
+
}[][] | undefined;
|
|
2271
|
+
} | {
|
|
2272
|
+
name: string;
|
|
2273
|
+
description: string;
|
|
2274
|
+
type: "plain_text";
|
|
2275
|
+
hidden?: boolean | undefined;
|
|
2276
|
+
examples?: string[] | undefined;
|
|
2277
|
+
} | {
|
|
2278
|
+
name: string;
|
|
2279
|
+
description: string;
|
|
2280
|
+
type: "title";
|
|
2281
|
+
hidden?: boolean | undefined;
|
|
2282
|
+
examples?: string[] | undefined;
|
|
1870
2283
|
settings?: {
|
|
1871
2284
|
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2285
|
+
skip_if_next_section_empty?: boolean | undefined;
|
|
1872
2286
|
} | undefined;
|
|
1873
|
-
}
|
|
2287
|
+
} | {
|
|
2288
|
+
name: string;
|
|
2289
|
+
description: string;
|
|
2290
|
+
type: "boolean";
|
|
2291
|
+
hidden?: boolean | undefined;
|
|
2292
|
+
examples?: boolean[] | undefined;
|
|
2293
|
+
})[];
|
|
1874
2294
|
};
|
|
1875
2295
|
isEnabled?: boolean | undefined;
|
|
1876
2296
|
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountSettings.d.ts","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"accountSettings.d.ts","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmB3B,CAAC"}
|
|
@@ -42,22 +42,60 @@ export const getPrettySectionTypeName = (type) => {
|
|
|
42
42
|
return 'Plain Text';
|
|
43
43
|
case 'title':
|
|
44
44
|
return 'Title';
|
|
45
|
+
case 'boolean':
|
|
46
|
+
return 'Boolean';
|
|
45
47
|
default:
|
|
46
48
|
return type;
|
|
47
49
|
}
|
|
48
50
|
};
|
|
49
51
|
export const HeadingTypeEnum = z.enum(['h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'strong']);
|
|
50
|
-
|
|
52
|
+
const BaseDesignGuideSectionSchema = z.object({
|
|
51
53
|
name: z.string(),
|
|
52
|
-
type: DesignGuideSectionTypeEnum,
|
|
53
54
|
description: z.string(),
|
|
54
|
-
hidden: z.boolean().optional(),
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
55
|
+
hidden: z.boolean().optional(),
|
|
56
|
+
});
|
|
57
|
+
const HtmlTextSectionSchema = BaseDesignGuideSectionSchema.extend({
|
|
58
|
+
type: z.literal('html_text'),
|
|
59
|
+
examples: z.array(z.string()).optional(),
|
|
60
|
+
});
|
|
61
|
+
const BulletPointSectionSchema = BaseDesignGuideSectionSchema.extend({
|
|
62
|
+
type: z.literal('bullet_point'),
|
|
63
|
+
examples: z.array(z.array(z.string())).optional(),
|
|
64
|
+
});
|
|
65
|
+
const SpecificationValueSchema = z.union([z.string(), z.number(), z.array(z.union([z.string(), z.number()]))]);
|
|
66
|
+
const SpecificationSchema = z.object({
|
|
67
|
+
name: z.string(),
|
|
68
|
+
value: SpecificationValueSchema,
|
|
69
|
+
});
|
|
70
|
+
const SpecificationSectionSchema = BaseDesignGuideSectionSchema.extend({
|
|
71
|
+
type: z.literal('specification'),
|
|
72
|
+
examples: z.array(z.array(SpecificationSchema)).optional(),
|
|
73
|
+
});
|
|
74
|
+
const PlainTextSectionSchema = BaseDesignGuideSectionSchema.extend({
|
|
75
|
+
type: z.literal('plain_text'),
|
|
76
|
+
examples: z.array(z.string()).optional(),
|
|
77
|
+
});
|
|
78
|
+
const TitleSectionSettingsSchema = z.object({
|
|
79
|
+
heading_type: HeadingTypeEnum,
|
|
80
|
+
skip_if_next_section_empty: z.boolean().optional(),
|
|
81
|
+
});
|
|
82
|
+
const TitleSectionSchema = BaseDesignGuideSectionSchema.extend({
|
|
83
|
+
type: z.literal('title'),
|
|
84
|
+
examples: z.array(z.string()).optional(),
|
|
85
|
+
settings: TitleSectionSettingsSchema.optional(),
|
|
86
|
+
});
|
|
87
|
+
const BooleanSectionSchema = BaseDesignGuideSectionSchema.extend({
|
|
88
|
+
type: z.literal('boolean'),
|
|
89
|
+
examples: z.array(z.boolean()).optional(),
|
|
60
90
|
});
|
|
91
|
+
export const DesignGuideSectionSchema = z.discriminatedUnion('type', [
|
|
92
|
+
HtmlTextSectionSchema,
|
|
93
|
+
BulletPointSectionSchema,
|
|
94
|
+
SpecificationSectionSchema,
|
|
95
|
+
PlainTextSectionSchema,
|
|
96
|
+
TitleSectionSchema,
|
|
97
|
+
BooleanSectionSchema,
|
|
98
|
+
]);
|
|
61
99
|
const ContentOptimizationValueSchema = z.object({
|
|
62
100
|
tone_of_voice: z.string().nullable(),
|
|
63
101
|
use_online_summary: z.boolean(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountSettings.js","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"accountSettings.js","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"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"}
|