@omni-graph/omni-model 0.7.10-2-g58f5db9 → 0.7.10

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,39 +210,18 @@ export declare const HeadingTypeEnum: z.ZodEnum<{
210
210
  h6: "h6";
211
211
  strong: "strong";
212
212
  }>;
213
- export declare const DesignGuideSectionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
213
+ export declare const DesignGuideSectionSchema: 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
+ }>;
215
223
  description: z.ZodString;
216
224
  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>>;
246
225
  settings: z.ZodOptional<z.ZodObject<{
247
226
  heading_type: z.ZodEnum<{
248
227
  h1: "h1";
@@ -253,15 +232,8 @@ export declare const DesignGuideSectionSchema: z.ZodDiscriminatedUnion<[z.ZodObj
253
232
  h6: "h6";
254
233
  strong: "strong";
255
234
  }>;
256
- skip_if_next_section_empty: z.ZodOptional<z.ZodBoolean>;
257
235
  }, 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>]>;
236
+ }, z.core.$strip>;
265
237
  export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
266
238
  id: z.ZodCatch<z.ZodEnum<{
267
239
  [x: string]: string;
@@ -275,39 +247,18 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
275
247
  allow_empty_store_url: z.ZodBoolean;
276
248
  prioritization_strategy: z.ZodOptional<z.ZodString>;
277
249
  design_guide: 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<{
291
- name: z.ZodString;
292
- description: z.ZodString;
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<{
250
+ sections: z.ZodArray<z.ZodObject<{
306
251
  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
+ }>;
307
260
  description: z.ZodString;
308
261
  hidden: z.ZodOptional<z.ZodBoolean>;
309
- type: z.ZodLiteral<"title">;
310
- examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
311
262
  settings: z.ZodOptional<z.ZodObject<{
312
263
  heading_type: z.ZodEnum<{
313
264
  h1: "h1";
@@ -318,15 +269,8 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
318
269
  h6: "h6";
319
270
  strong: "strong";
320
271
  }>;
321
- skip_if_next_section_empty: z.ZodOptional<z.ZodBoolean>;
322
272
  }, 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>]>>;
273
+ }, z.core.$strip>>;
330
274
  }, z.core.$strip>;
331
275
  }, z.core.$strip>;
332
276
  }, z.core.$strip>, z.ZodTransform<{
@@ -334,50 +278,15 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
334
278
  use_online_summary: boolean;
335
279
  allow_empty_store_url: boolean;
336
280
  design_guide: {
337
- sections: ({
338
- name: string;
339
- description: string;
340
- type: "html_text";
341
- hidden?: boolean | undefined;
342
- examples?: string[] | undefined;
343
- } | {
281
+ sections: {
344
282
  name: string;
283
+ type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
345
284
  description: string;
346
- type: "bullet_point";
347
285
  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;
370
286
  settings?: {
371
287
  heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
372
- skip_if_next_section_empty?: boolean | undefined;
373
288
  } | undefined;
374
- } | {
375
- name: string;
376
- description: string;
377
- type: "boolean";
378
- hidden?: boolean | undefined;
379
- examples?: boolean[] | undefined;
380
- })[];
289
+ }[];
381
290
  };
382
291
  prioritization_strategy?: string | undefined;
383
292
  }, {
@@ -388,50 +297,15 @@ export declare const ContentOptimizationResponseSchema: z.ZodPipe<z.ZodObject<{
388
297
  use_online_summary: boolean;
389
298
  allow_empty_store_url: boolean;
390
299
  design_guide: {
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
- } | {
300
+ sections: {
419
301
  name: string;
302
+ type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
420
303
  description: string;
421
- type: "title";
422
304
  hidden?: boolean | undefined;
423
- examples?: string[] | undefined;
424
305
  settings?: {
425
306
  heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
426
- skip_if_next_section_empty?: boolean | undefined;
427
307
  } | undefined;
428
- } | {
429
- name: string;
430
- description: string;
431
- type: "boolean";
432
- hidden?: boolean | undefined;
433
- examples?: boolean[] | undefined;
434
- })[];
308
+ }[];
435
309
  };
436
310
  prioritization_strategy?: string | undefined;
437
311
  };
@@ -446,39 +320,18 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
446
320
  accountId: z.ZodString;
447
321
  updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
448
322
  value: 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<{
323
+ sections: z.ZodArray<z.ZodObject<{
471
324
  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
+ }>;
472
333
  description: z.ZodString;
473
334
  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>>;
482
335
  settings: z.ZodOptional<z.ZodObject<{
483
336
  heading_type: z.ZodEnum<{
484
337
  h1: "h1";
@@ -489,109 +342,32 @@ export declare const DesignGuideResponseSchema: z.ZodPipe<z.ZodObject<{
489
342
  h6: "h6";
490
343
  strong: "strong";
491
344
  }>;
492
- skip_if_next_section_empty: z.ZodOptional<z.ZodBoolean>;
493
345
  }, 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>]>>;
346
+ }, z.core.$strip>>;
501
347
  }, z.core.$strip>;
502
348
  }, z.core.$strip>, z.ZodTransform<{
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
- } | {
349
+ sections: {
516
350
  name: string;
351
+ type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
517
352
  description: string;
518
- type: "specification";
519
353
  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;
536
354
  settings?: {
537
355
  heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
538
- skip_if_next_section_empty?: boolean | undefined;
539
356
  } | undefined;
540
- } | {
541
- name: string;
542
- description: string;
543
- type: "boolean";
544
- hidden?: boolean | undefined;
545
- examples?: boolean[] | undefined;
546
- })[];
357
+ }[];
547
358
  }, {
548
359
  id: string;
549
360
  accountId: string;
550
361
  value: {
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
- } | {
362
+ sections: {
573
363
  name: string;
364
+ type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
574
365
  description: string;
575
- type: "plain_text";
576
366
  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;
584
367
  settings?: {
585
368
  heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
586
- skip_if_next_section_empty?: boolean | undefined;
587
369
  } | undefined;
588
- } | {
589
- name: string;
590
- description: string;
591
- type: "boolean";
592
- hidden?: boolean | undefined;
593
- examples?: boolean[] | undefined;
594
- })[];
370
+ }[];
595
371
  };
596
372
  isEnabled?: boolean | undefined;
597
373
  updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
@@ -1268,39 +1044,18 @@ export declare const SettingsSchemas: {
1268
1044
  allow_empty_store_url: z.ZodBoolean;
1269
1045
  prioritization_strategy: z.ZodOptional<z.ZodString>;
1270
1046
  design_guide: 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<{
1047
+ sections: z.ZodArray<z.ZodObject<{
1299
1048
  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
+ }>;
1300
1057
  description: z.ZodString;
1301
1058
  hidden: z.ZodOptional<z.ZodBoolean>;
1302
- type: z.ZodLiteral<"title">;
1303
- examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
1304
1059
  settings: z.ZodOptional<z.ZodObject<{
1305
1060
  heading_type: z.ZodEnum<{
1306
1061
  h1: "h1";
@@ -1311,15 +1066,8 @@ export declare const SettingsSchemas: {
1311
1066
  h6: "h6";
1312
1067
  strong: "strong";
1313
1068
  }>;
1314
- skip_if_next_section_empty: z.ZodOptional<z.ZodBoolean>;
1315
1069
  }, 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>]>>;
1070
+ }, z.core.$strip>>;
1323
1071
  }, z.core.$strip>;
1324
1072
  }, z.core.$strip>;
1325
1073
  }, z.core.$strip>, z.ZodTransform<{
@@ -1327,50 +1075,15 @@ export declare const SettingsSchemas: {
1327
1075
  use_online_summary: boolean;
1328
1076
  allow_empty_store_url: boolean;
1329
1077
  design_guide: {
1330
- sections: ({
1078
+ sections: {
1331
1079
  name: string;
1080
+ type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
1332
1081
  description: string;
1333
- type: "html_text";
1334
1082
  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;
1363
1083
  settings?: {
1364
1084
  heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
1365
- skip_if_next_section_empty?: boolean | undefined;
1366
1085
  } | undefined;
1367
- } | {
1368
- name: string;
1369
- description: string;
1370
- type: "boolean";
1371
- hidden?: boolean | undefined;
1372
- examples?: boolean[] | undefined;
1373
- })[];
1086
+ }[];
1374
1087
  };
1375
1088
  prioritization_strategy?: string | undefined;
1376
1089
  }, {
@@ -1381,50 +1094,15 @@ export declare const SettingsSchemas: {
1381
1094
  use_online_summary: boolean;
1382
1095
  allow_empty_store_url: boolean;
1383
1096
  design_guide: {
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
- } | {
1097
+ sections: {
1412
1098
  name: string;
1099
+ type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
1413
1100
  description: string;
1414
- type: "title";
1415
1101
  hidden?: boolean | undefined;
1416
- examples?: string[] | undefined;
1417
1102
  settings?: {
1418
1103
  heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
1419
- skip_if_next_section_empty?: boolean | undefined;
1420
1104
  } | undefined;
1421
- } | {
1422
- name: string;
1423
- description: string;
1424
- type: "boolean";
1425
- hidden?: boolean | undefined;
1426
- examples?: boolean[] | undefined;
1427
- })[];
1105
+ }[];
1428
1106
  };
1429
1107
  prioritization_strategy?: string | undefined;
1430
1108
  };
@@ -2145,39 +1823,18 @@ export declare const SettingsSchemas: {
2145
1823
  accountId: z.ZodString;
2146
1824
  updatedAt: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("luxon").DateTime<true> | import("luxon").DateTime<false>, string>>>;
2147
1825
  value: 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<{
2170
- name: z.ZodString;
2171
- description: z.ZodString;
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<{
1826
+ sections: z.ZodArray<z.ZodObject<{
2176
1827
  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
+ }>;
2177
1836
  description: z.ZodString;
2178
1837
  hidden: z.ZodOptional<z.ZodBoolean>;
2179
- type: z.ZodLiteral<"title">;
2180
- examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
2181
1838
  settings: z.ZodOptional<z.ZodObject<{
2182
1839
  heading_type: z.ZodEnum<{
2183
1840
  h1: "h1";
@@ -2188,109 +1845,32 @@ export declare const SettingsSchemas: {
2188
1845
  h6: "h6";
2189
1846
  strong: "strong";
2190
1847
  }>;
2191
- skip_if_next_section_empty: z.ZodOptional<z.ZodBoolean>;
2192
1848
  }, 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>]>>;
1849
+ }, z.core.$strip>>;
2200
1850
  }, z.core.$strip>;
2201
1851
  }, z.core.$strip>, z.ZodTransform<{
2202
- sections: ({
1852
+ sections: {
2203
1853
  name: string;
1854
+ type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
2204
1855
  description: string;
2205
- type: "html_text";
2206
1856
  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;
2235
1857
  settings?: {
2236
1858
  heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
2237
- skip_if_next_section_empty?: boolean | undefined;
2238
1859
  } | undefined;
2239
- } | {
2240
- name: string;
2241
- description: string;
2242
- type: "boolean";
2243
- hidden?: boolean | undefined;
2244
- examples?: boolean[] | undefined;
2245
- })[];
1860
+ }[];
2246
1861
  }, {
2247
1862
  id: string;
2248
1863
  accountId: string;
2249
1864
  value: {
2250
- sections: ({
1865
+ sections: {
2251
1866
  name: string;
1867
+ type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
2252
1868
  description: string;
2253
- type: "html_text";
2254
1869
  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;
2283
1870
  settings?: {
2284
1871
  heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
2285
- skip_if_next_section_empty?: boolean | undefined;
2286
1872
  } | undefined;
2287
- } | {
2288
- name: string;
2289
- description: string;
2290
- type: "boolean";
2291
- hidden?: boolean | undefined;
2292
- examples?: boolean[] | undefined;
2293
- })[];
1873
+ }[];
2294
1874
  };
2295
1875
  isEnabled?: boolean | undefined;
2296
1876
  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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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmB3B,CAAC"}
1
+ {"version":3,"file":"accountSettings.d.ts","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"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"}
@@ -42,60 +42,22 @@ export const getPrettySectionTypeName = (type) => {
42
42
  return 'Plain Text';
43
43
  case 'title':
44
44
  return 'Title';
45
- case 'boolean':
46
- return 'Boolean';
47
45
  default:
48
46
  return type;
49
47
  }
50
48
  };
51
49
  export const HeadingTypeEnum = z.enum(['h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'strong']);
52
- const BaseDesignGuideSectionSchema = z.object({
50
+ export const DesignGuideSectionSchema = z.object({
53
51
  name: z.string(),
52
+ type: DesignGuideSectionTypeEnum,
54
53
  description: z.string(),
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(),
54
+ hidden: z.boolean().optional(), // Whether the section should be hidden when converted to HTML
55
+ settings: z
56
+ .object({
57
+ heading_type: HeadingTypeEnum,
58
+ })
59
+ .optional(),
90
60
  });
91
- export const DesignGuideSectionSchema = z.discriminatedUnion('type', [
92
- HtmlTextSectionSchema,
93
- BulletPointSectionSchema,
94
- SpecificationSectionSchema,
95
- PlainTextSectionSchema,
96
- TitleSectionSchema,
97
- BooleanSectionSchema,
98
- ]);
99
61
  const ContentOptimizationValueSchema = z.object({
100
62
  tone_of_voice: z.string().nullable(),
101
63
  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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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omni-graph/omni-model",
3
- "version": "0.7.10-2-g58f5db9",
3
+ "version": "0.7.10",
4
4
  "description": "Models for the OmniGraph Services & Frontend",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",