@dmptool/types 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/dist/answers/__tests__/answers.spec.js +59 -7
- package/dist/answers/answer.d.ts +3 -3
- package/dist/answers/dateAnswers.d.ts +5 -5
- package/dist/answers/dateAnswers.js +3 -3
- package/dist/answers/index.d.ts +892 -513
- package/dist/answers/index.js +3 -2
- package/dist/answers/primitiveAnswers.d.ts +40 -0
- package/dist/answers/primitiveAnswers.js +8 -1
- package/dist/answers/tableAnswers.d.ts +1639 -32
- package/dist/answers/tableAnswers.js +10 -3
- package/dist/questions/__tests__/dateQuestions.spec.js +20 -20
- package/dist/questions/__tests__/primitiveQuestions.spec.js +92 -0
- package/dist/questions/__tests__/tableQuestion.spec.d.ts +1 -0
- package/dist/questions/__tests__/tableQuestion.spec.js +73 -0
- package/dist/questions/dateQuestions.d.ts +19 -19
- package/dist/questions/dateQuestions.js +8 -8
- package/dist/questions/graphQLQuestions.d.ts +20 -20
- package/dist/questions/graphQLQuestions.js +1 -1
- package/dist/questions/index.d.ts +1856 -1413
- package/dist/questions/index.js +3 -2
- package/dist/questions/optionBasedQuestions.js +1 -1
- package/dist/questions/primitiveQuestions.d.ts +193 -0
- package/dist/questions/primitiveQuestions.js +17 -1
- package/dist/questions/question.d.ts +4 -4
- package/dist/questions/question.js +2 -1
- package/dist/questions/tableQuestions.d.ts +2124 -145
- package/dist/questions/tableQuestions.js +7 -3
- package/dist/schemas/anyAnswer.schema.json +144 -119
- package/dist/schemas/anyQuestion.schema.json +148 -137
- package/dist/schemas/anyTableColumnAnswer.schema.json +1 -1
- package/dist/schemas/anyTableColumnQuestion.schema.json +2 -3
- package/dist/schemas/dateAnswer.schema.json +37 -0
- package/dist/schemas/datePickerAnswer.schema.json +4 -4
- package/dist/schemas/datePickerQuestion.schema.json +6 -5
- package/dist/schemas/dateQuestion.schema.json +51 -0
- package/dist/schemas/dateRangeQuestion.schema.json +1 -1
- package/dist/schemas/filteredSearchQuestion.schema.json +1 -2
- package/dist/schemas/numberRangeAnswer.schema.json +50 -0
- package/dist/schemas/numberRangeQuestion.schema.json +106 -0
- package/dist/schemas/tableAnswer.schema.json +349 -324
- package/dist/schemas/tableQuestion.schema.json +491 -480
- package/package.json +1 -1
package/dist/answers/index.d.ts
CHANGED
|
@@ -85,15 +85,15 @@ export declare const AnyAnswerSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
85
85
|
schemaVersion: "1.0";
|
|
86
86
|
}>;
|
|
87
87
|
} & {
|
|
88
|
-
type: z.ZodLiteral<"
|
|
88
|
+
type: z.ZodLiteral<"date">;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
|
-
type: "
|
|
90
|
+
type: "date";
|
|
91
91
|
meta: {
|
|
92
92
|
schemaVersion: "1.0";
|
|
93
93
|
};
|
|
94
94
|
answer: string;
|
|
95
95
|
}, {
|
|
96
|
-
type: "
|
|
96
|
+
type: "date";
|
|
97
97
|
meta: {
|
|
98
98
|
schemaVersion: "1.0";
|
|
99
99
|
};
|
|
@@ -261,530 +261,909 @@ export declare const AnyAnswerSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
261
261
|
}>;
|
|
262
262
|
} & {
|
|
263
263
|
type: z.ZodLiteral<"table">;
|
|
264
|
-
answer: z.ZodArray<z.
|
|
265
|
-
|
|
266
|
-
|
|
264
|
+
answer: z.ZodArray<z.ZodObject<{
|
|
265
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
266
|
+
heading: z.ZodString;
|
|
267
|
+
content: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
268
|
+
meta: z.ZodObject<{
|
|
269
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
270
|
+
}, "strip", z.ZodTypeAny, {
|
|
271
|
+
schemaVersion: "1.0";
|
|
272
|
+
}, {
|
|
273
|
+
schemaVersion: "1.0";
|
|
274
|
+
}>;
|
|
275
|
+
} & {
|
|
276
|
+
type: z.ZodLiteral<"boolean">;
|
|
277
|
+
answer: z.ZodBoolean;
|
|
278
|
+
}, "strip", z.ZodTypeAny, {
|
|
279
|
+
type: "boolean";
|
|
280
|
+
meta: {
|
|
281
|
+
schemaVersion: "1.0";
|
|
282
|
+
};
|
|
283
|
+
answer: boolean;
|
|
284
|
+
}, {
|
|
285
|
+
type: "boolean";
|
|
286
|
+
meta: {
|
|
287
|
+
schemaVersion: "1.0";
|
|
288
|
+
};
|
|
289
|
+
answer: boolean;
|
|
290
|
+
}>, z.ZodObject<{
|
|
291
|
+
meta: z.ZodObject<{
|
|
292
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
293
|
+
}, "strip", z.ZodTypeAny, {
|
|
294
|
+
schemaVersion: "1.0";
|
|
295
|
+
}, {
|
|
296
|
+
schemaVersion: "1.0";
|
|
297
|
+
}>;
|
|
298
|
+
} & {
|
|
299
|
+
type: z.ZodLiteral<"checkBoxes">;
|
|
300
|
+
answer: z.ZodArray<z.ZodString, "many">;
|
|
301
|
+
}, "strip", z.ZodTypeAny, {
|
|
302
|
+
type: "checkBoxes";
|
|
303
|
+
meta: {
|
|
304
|
+
schemaVersion: "1.0";
|
|
305
|
+
};
|
|
306
|
+
answer: string[];
|
|
307
|
+
}, {
|
|
308
|
+
type: "checkBoxes";
|
|
309
|
+
meta: {
|
|
310
|
+
schemaVersion: "1.0";
|
|
311
|
+
};
|
|
312
|
+
answer: string[];
|
|
313
|
+
}>, z.ZodObject<{
|
|
314
|
+
meta: z.ZodObject<{
|
|
315
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
316
|
+
}, "strip", z.ZodTypeAny, {
|
|
317
|
+
schemaVersion: "1.0";
|
|
318
|
+
}, {
|
|
319
|
+
schemaVersion: "1.0";
|
|
320
|
+
}>;
|
|
321
|
+
} & {
|
|
322
|
+
type: z.ZodLiteral<"currency">;
|
|
323
|
+
answer: z.ZodNumber;
|
|
324
|
+
}, "strip", z.ZodTypeAny, {
|
|
325
|
+
type: "currency";
|
|
326
|
+
meta: {
|
|
327
|
+
schemaVersion: "1.0";
|
|
328
|
+
};
|
|
329
|
+
answer: number;
|
|
330
|
+
}, {
|
|
331
|
+
type: "currency";
|
|
332
|
+
meta: {
|
|
333
|
+
schemaVersion: "1.0";
|
|
334
|
+
};
|
|
335
|
+
answer: number;
|
|
336
|
+
}>, z.ZodObject<{
|
|
337
|
+
answer: z.ZodString;
|
|
338
|
+
meta: z.ZodObject<{
|
|
339
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
340
|
+
}, "strip", z.ZodTypeAny, {
|
|
341
|
+
schemaVersion: "1.0";
|
|
342
|
+
}, {
|
|
343
|
+
schemaVersion: "1.0";
|
|
344
|
+
}>;
|
|
345
|
+
} & {
|
|
346
|
+
type: z.ZodLiteral<"date">;
|
|
347
|
+
}, "strip", z.ZodTypeAny, {
|
|
348
|
+
type: "date";
|
|
349
|
+
meta: {
|
|
350
|
+
schemaVersion: "1.0";
|
|
351
|
+
};
|
|
352
|
+
answer: string;
|
|
353
|
+
}, {
|
|
354
|
+
type: "date";
|
|
355
|
+
meta: {
|
|
356
|
+
schemaVersion: "1.0";
|
|
357
|
+
};
|
|
358
|
+
answer: string;
|
|
359
|
+
}>, z.ZodObject<{
|
|
360
|
+
meta: z.ZodObject<{
|
|
361
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
362
|
+
}, "strip", z.ZodTypeAny, {
|
|
363
|
+
schemaVersion: "1.0";
|
|
364
|
+
}, {
|
|
365
|
+
schemaVersion: "1.0";
|
|
366
|
+
}>;
|
|
367
|
+
} & {
|
|
368
|
+
type: z.ZodLiteral<"dateRange">;
|
|
369
|
+
answer: z.ZodObject<{
|
|
370
|
+
start: z.ZodString;
|
|
371
|
+
end: z.ZodString;
|
|
372
|
+
}, "strip", z.ZodTypeAny, {
|
|
373
|
+
start: string;
|
|
374
|
+
end: string;
|
|
375
|
+
}, {
|
|
376
|
+
start: string;
|
|
377
|
+
end: string;
|
|
378
|
+
}>;
|
|
379
|
+
}, "strip", z.ZodTypeAny, {
|
|
380
|
+
type: "dateRange";
|
|
381
|
+
meta: {
|
|
382
|
+
schemaVersion: "1.0";
|
|
383
|
+
};
|
|
384
|
+
answer: {
|
|
385
|
+
start: string;
|
|
386
|
+
end: string;
|
|
387
|
+
};
|
|
388
|
+
}, {
|
|
389
|
+
type: "dateRange";
|
|
390
|
+
meta: {
|
|
391
|
+
schemaVersion: "1.0";
|
|
392
|
+
};
|
|
393
|
+
answer: {
|
|
394
|
+
start: string;
|
|
395
|
+
end: string;
|
|
396
|
+
};
|
|
397
|
+
}>, z.ZodObject<{
|
|
398
|
+
meta: z.ZodObject<{
|
|
399
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
400
|
+
}, "strip", z.ZodTypeAny, {
|
|
401
|
+
schemaVersion: "1.0";
|
|
402
|
+
}, {
|
|
403
|
+
schemaVersion: "1.0";
|
|
404
|
+
}>;
|
|
405
|
+
} & {
|
|
406
|
+
type: z.ZodLiteral<"email">;
|
|
407
|
+
answer: z.ZodString;
|
|
408
|
+
}, "strip", z.ZodTypeAny, {
|
|
409
|
+
type: "email";
|
|
410
|
+
meta: {
|
|
411
|
+
schemaVersion: "1.0";
|
|
412
|
+
};
|
|
413
|
+
answer: string;
|
|
414
|
+
}, {
|
|
415
|
+
type: "email";
|
|
416
|
+
meta: {
|
|
417
|
+
schemaVersion: "1.0";
|
|
418
|
+
};
|
|
419
|
+
answer: string;
|
|
420
|
+
}>, z.ZodObject<{
|
|
421
|
+
meta: z.ZodObject<{
|
|
422
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
423
|
+
}, "strip", z.ZodTypeAny, {
|
|
424
|
+
schemaVersion: "1.0";
|
|
425
|
+
}, {
|
|
426
|
+
schemaVersion: "1.0";
|
|
427
|
+
}>;
|
|
428
|
+
} & {
|
|
429
|
+
type: z.ZodLiteral<"filteredSearch">;
|
|
430
|
+
answer: z.ZodArray<z.ZodString, "many">;
|
|
431
|
+
}, "strip", z.ZodTypeAny, {
|
|
432
|
+
type: "filteredSearch";
|
|
433
|
+
meta: {
|
|
434
|
+
schemaVersion: "1.0";
|
|
435
|
+
};
|
|
436
|
+
answer: string[];
|
|
437
|
+
}, {
|
|
438
|
+
type: "filteredSearch";
|
|
439
|
+
meta: {
|
|
440
|
+
schemaVersion: "1.0";
|
|
441
|
+
};
|
|
442
|
+
answer: string[];
|
|
443
|
+
}>, z.ZodObject<{
|
|
444
|
+
meta: z.ZodObject<{
|
|
445
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
446
|
+
}, "strip", z.ZodTypeAny, {
|
|
447
|
+
schemaVersion: "1.0";
|
|
448
|
+
}, {
|
|
449
|
+
schemaVersion: "1.0";
|
|
450
|
+
}>;
|
|
451
|
+
} & {
|
|
452
|
+
type: z.ZodLiteral<"number">;
|
|
453
|
+
answer: z.ZodNumber;
|
|
454
|
+
}, "strip", z.ZodTypeAny, {
|
|
455
|
+
type: "number";
|
|
456
|
+
meta: {
|
|
457
|
+
schemaVersion: "1.0";
|
|
458
|
+
};
|
|
459
|
+
answer: number;
|
|
460
|
+
}, {
|
|
461
|
+
type: "number";
|
|
462
|
+
meta: {
|
|
463
|
+
schemaVersion: "1.0";
|
|
464
|
+
};
|
|
465
|
+
answer: number;
|
|
466
|
+
}>, z.ZodObject<{
|
|
467
|
+
meta: z.ZodObject<{
|
|
468
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
469
|
+
}, "strip", z.ZodTypeAny, {
|
|
470
|
+
schemaVersion: "1.0";
|
|
471
|
+
}, {
|
|
472
|
+
schemaVersion: "1.0";
|
|
473
|
+
}>;
|
|
474
|
+
} & {
|
|
475
|
+
type: z.ZodLiteral<"radioButtons">;
|
|
476
|
+
answer: z.ZodString;
|
|
477
|
+
}, "strip", z.ZodTypeAny, {
|
|
478
|
+
type: "radioButtons";
|
|
479
|
+
meta: {
|
|
480
|
+
schemaVersion: "1.0";
|
|
481
|
+
};
|
|
482
|
+
answer: string;
|
|
483
|
+
}, {
|
|
484
|
+
type: "radioButtons";
|
|
485
|
+
meta: {
|
|
486
|
+
schemaVersion: "1.0";
|
|
487
|
+
};
|
|
488
|
+
answer: string;
|
|
489
|
+
}>, z.ZodObject<{
|
|
490
|
+
meta: z.ZodObject<{
|
|
491
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
492
|
+
}, "strip", z.ZodTypeAny, {
|
|
493
|
+
schemaVersion: "1.0";
|
|
494
|
+
}, {
|
|
495
|
+
schemaVersion: "1.0";
|
|
496
|
+
}>;
|
|
497
|
+
} & {
|
|
498
|
+
type: z.ZodLiteral<"selectBox">;
|
|
499
|
+
answer: z.ZodArray<z.ZodString, "many">;
|
|
500
|
+
}, "strip", z.ZodTypeAny, {
|
|
501
|
+
type: "selectBox";
|
|
502
|
+
meta: {
|
|
503
|
+
schemaVersion: "1.0";
|
|
504
|
+
};
|
|
505
|
+
answer: string[];
|
|
506
|
+
}, {
|
|
507
|
+
type: "selectBox";
|
|
508
|
+
meta: {
|
|
509
|
+
schemaVersion: "1.0";
|
|
510
|
+
};
|
|
511
|
+
answer: string[];
|
|
512
|
+
}>, z.ZodObject<{
|
|
513
|
+
meta: z.ZodObject<{
|
|
514
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
515
|
+
}, "strip", z.ZodTypeAny, {
|
|
516
|
+
schemaVersion: "1.0";
|
|
517
|
+
}, {
|
|
518
|
+
schemaVersion: "1.0";
|
|
519
|
+
}>;
|
|
520
|
+
} & {
|
|
521
|
+
type: z.ZodLiteral<"text">;
|
|
522
|
+
answer: z.ZodString;
|
|
523
|
+
}, "strip", z.ZodTypeAny, {
|
|
524
|
+
type: "text";
|
|
525
|
+
meta: {
|
|
526
|
+
schemaVersion: "1.0";
|
|
527
|
+
};
|
|
528
|
+
answer: string;
|
|
529
|
+
}, {
|
|
530
|
+
type: "text";
|
|
531
|
+
meta: {
|
|
532
|
+
schemaVersion: "1.0";
|
|
533
|
+
};
|
|
534
|
+
answer: string;
|
|
535
|
+
}>, z.ZodObject<{
|
|
536
|
+
meta: z.ZodObject<{
|
|
537
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
538
|
+
}, "strip", z.ZodTypeAny, {
|
|
539
|
+
schemaVersion: "1.0";
|
|
540
|
+
}, {
|
|
541
|
+
schemaVersion: "1.0";
|
|
542
|
+
}>;
|
|
543
|
+
} & {
|
|
544
|
+
type: z.ZodLiteral<"textArea">;
|
|
545
|
+
answer: z.ZodString;
|
|
546
|
+
}, "strip", z.ZodTypeAny, {
|
|
547
|
+
type: "textArea";
|
|
548
|
+
meta: {
|
|
549
|
+
schemaVersion: "1.0";
|
|
550
|
+
};
|
|
551
|
+
answer: string;
|
|
552
|
+
}, {
|
|
553
|
+
type: "textArea";
|
|
554
|
+
meta: {
|
|
555
|
+
schemaVersion: "1.0";
|
|
556
|
+
};
|
|
557
|
+
answer: string;
|
|
558
|
+
}>, z.ZodObject<{
|
|
559
|
+
meta: z.ZodObject<{
|
|
560
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
561
|
+
}, "strip", z.ZodTypeAny, {
|
|
562
|
+
schemaVersion: "1.0";
|
|
563
|
+
}, {
|
|
564
|
+
schemaVersion: "1.0";
|
|
565
|
+
}>;
|
|
566
|
+
} & {
|
|
567
|
+
type: z.ZodLiteral<"typeaheadSearch">;
|
|
568
|
+
answer: z.ZodString;
|
|
569
|
+
}, "strip", z.ZodTypeAny, {
|
|
570
|
+
type: "typeaheadSearch";
|
|
571
|
+
meta: {
|
|
572
|
+
schemaVersion: "1.0";
|
|
573
|
+
};
|
|
574
|
+
answer: string;
|
|
575
|
+
}, {
|
|
576
|
+
type: "typeaheadSearch";
|
|
577
|
+
meta: {
|
|
578
|
+
schemaVersion: "1.0";
|
|
579
|
+
};
|
|
580
|
+
answer: string;
|
|
581
|
+
}>, z.ZodObject<{
|
|
582
|
+
meta: z.ZodObject<{
|
|
583
|
+
schemaVersion: z.ZodLiteral<"1.0">;
|
|
584
|
+
}, "strip", z.ZodTypeAny, {
|
|
585
|
+
schemaVersion: "1.0";
|
|
586
|
+
}, {
|
|
587
|
+
schemaVersion: "1.0";
|
|
588
|
+
}>;
|
|
589
|
+
} & {
|
|
590
|
+
type: z.ZodLiteral<"url">;
|
|
591
|
+
answer: z.ZodString;
|
|
592
|
+
}, "strip", z.ZodTypeAny, {
|
|
593
|
+
type: "url";
|
|
594
|
+
meta: {
|
|
595
|
+
schemaVersion: "1.0";
|
|
596
|
+
};
|
|
597
|
+
answer: string;
|
|
598
|
+
}, {
|
|
599
|
+
type: "url";
|
|
600
|
+
meta: {
|
|
601
|
+
schemaVersion: "1.0";
|
|
602
|
+
};
|
|
603
|
+
answer: string;
|
|
604
|
+
}>]>;
|
|
267
605
|
}, "strip", z.ZodTypeAny, {
|
|
268
|
-
|
|
606
|
+
heading: string;
|
|
607
|
+
content: {
|
|
608
|
+
type: "date";
|
|
609
|
+
meta: {
|
|
610
|
+
schemaVersion: "1.0";
|
|
611
|
+
};
|
|
612
|
+
answer: string;
|
|
613
|
+
} | {
|
|
614
|
+
type: "dateRange";
|
|
615
|
+
meta: {
|
|
616
|
+
schemaVersion: "1.0";
|
|
617
|
+
};
|
|
618
|
+
answer: {
|
|
619
|
+
start: string;
|
|
620
|
+
end: string;
|
|
621
|
+
};
|
|
622
|
+
} | {
|
|
623
|
+
type: "filteredSearch";
|
|
624
|
+
meta: {
|
|
625
|
+
schemaVersion: "1.0";
|
|
626
|
+
};
|
|
627
|
+
answer: string[];
|
|
628
|
+
} | {
|
|
629
|
+
type: "typeaheadSearch";
|
|
630
|
+
meta: {
|
|
631
|
+
schemaVersion: "1.0";
|
|
632
|
+
};
|
|
633
|
+
answer: string;
|
|
634
|
+
} | {
|
|
635
|
+
type: "checkBoxes";
|
|
636
|
+
meta: {
|
|
637
|
+
schemaVersion: "1.0";
|
|
638
|
+
};
|
|
639
|
+
answer: string[];
|
|
640
|
+
} | {
|
|
641
|
+
type: "radioButtons";
|
|
642
|
+
meta: {
|
|
643
|
+
schemaVersion: "1.0";
|
|
644
|
+
};
|
|
645
|
+
answer: string;
|
|
646
|
+
} | {
|
|
647
|
+
type: "selectBox";
|
|
648
|
+
meta: {
|
|
649
|
+
schemaVersion: "1.0";
|
|
650
|
+
};
|
|
651
|
+
answer: string[];
|
|
652
|
+
} | {
|
|
653
|
+
type: "boolean";
|
|
654
|
+
meta: {
|
|
655
|
+
schemaVersion: "1.0";
|
|
656
|
+
};
|
|
657
|
+
answer: boolean;
|
|
658
|
+
} | {
|
|
659
|
+
type: "currency";
|
|
660
|
+
meta: {
|
|
661
|
+
schemaVersion: "1.0";
|
|
662
|
+
};
|
|
663
|
+
answer: number;
|
|
664
|
+
} | {
|
|
665
|
+
type: "email";
|
|
666
|
+
meta: {
|
|
667
|
+
schemaVersion: "1.0";
|
|
668
|
+
};
|
|
669
|
+
answer: string;
|
|
670
|
+
} | {
|
|
671
|
+
type: "number";
|
|
672
|
+
meta: {
|
|
673
|
+
schemaVersion: "1.0";
|
|
674
|
+
};
|
|
675
|
+
answer: number;
|
|
676
|
+
} | {
|
|
677
|
+
type: "text";
|
|
678
|
+
meta: {
|
|
679
|
+
schemaVersion: "1.0";
|
|
680
|
+
};
|
|
681
|
+
answer: string;
|
|
682
|
+
} | {
|
|
683
|
+
type: "textArea";
|
|
684
|
+
meta: {
|
|
685
|
+
schemaVersion: "1.0";
|
|
686
|
+
};
|
|
687
|
+
answer: string;
|
|
688
|
+
} | {
|
|
689
|
+
type: "url";
|
|
690
|
+
meta: {
|
|
691
|
+
schemaVersion: "1.0";
|
|
692
|
+
};
|
|
693
|
+
answer: string;
|
|
694
|
+
};
|
|
269
695
|
}, {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
696
|
+
heading: string;
|
|
697
|
+
content: {
|
|
698
|
+
type: "date";
|
|
699
|
+
meta: {
|
|
700
|
+
schemaVersion: "1.0";
|
|
701
|
+
};
|
|
702
|
+
answer: string;
|
|
703
|
+
} | {
|
|
704
|
+
type: "dateRange";
|
|
705
|
+
meta: {
|
|
706
|
+
schemaVersion: "1.0";
|
|
707
|
+
};
|
|
708
|
+
answer: {
|
|
709
|
+
start: string;
|
|
710
|
+
end: string;
|
|
711
|
+
};
|
|
712
|
+
} | {
|
|
713
|
+
type: "filteredSearch";
|
|
714
|
+
meta: {
|
|
715
|
+
schemaVersion: "1.0";
|
|
716
|
+
};
|
|
717
|
+
answer: string[];
|
|
718
|
+
} | {
|
|
719
|
+
type: "typeaheadSearch";
|
|
720
|
+
meta: {
|
|
721
|
+
schemaVersion: "1.0";
|
|
722
|
+
};
|
|
723
|
+
answer: string;
|
|
724
|
+
} | {
|
|
725
|
+
type: "checkBoxes";
|
|
726
|
+
meta: {
|
|
727
|
+
schemaVersion: "1.0";
|
|
728
|
+
};
|
|
729
|
+
answer: string[];
|
|
730
|
+
} | {
|
|
731
|
+
type: "radioButtons";
|
|
732
|
+
meta: {
|
|
733
|
+
schemaVersion: "1.0";
|
|
734
|
+
};
|
|
735
|
+
answer: string;
|
|
736
|
+
} | {
|
|
737
|
+
type: "selectBox";
|
|
738
|
+
meta: {
|
|
739
|
+
schemaVersion: "1.0";
|
|
740
|
+
};
|
|
741
|
+
answer: string[];
|
|
742
|
+
} | {
|
|
743
|
+
type: "boolean";
|
|
744
|
+
meta: {
|
|
745
|
+
schemaVersion: "1.0";
|
|
746
|
+
};
|
|
747
|
+
answer: boolean;
|
|
748
|
+
} | {
|
|
749
|
+
type: "currency";
|
|
750
|
+
meta: {
|
|
751
|
+
schemaVersion: "1.0";
|
|
752
|
+
};
|
|
753
|
+
answer: number;
|
|
754
|
+
} | {
|
|
755
|
+
type: "email";
|
|
756
|
+
meta: {
|
|
757
|
+
schemaVersion: "1.0";
|
|
758
|
+
};
|
|
759
|
+
answer: string;
|
|
760
|
+
} | {
|
|
761
|
+
type: "number";
|
|
762
|
+
meta: {
|
|
763
|
+
schemaVersion: "1.0";
|
|
764
|
+
};
|
|
765
|
+
answer: number;
|
|
766
|
+
} | {
|
|
767
|
+
type: "text";
|
|
768
|
+
meta: {
|
|
769
|
+
schemaVersion: "1.0";
|
|
770
|
+
};
|
|
771
|
+
answer: string;
|
|
772
|
+
} | {
|
|
773
|
+
type: "textArea";
|
|
774
|
+
meta: {
|
|
775
|
+
schemaVersion: "1.0";
|
|
776
|
+
};
|
|
777
|
+
answer: string;
|
|
778
|
+
} | {
|
|
779
|
+
type: "url";
|
|
780
|
+
meta: {
|
|
781
|
+
schemaVersion: "1.0";
|
|
782
|
+
};
|
|
783
|
+
answer: string;
|
|
784
|
+
};
|
|
785
|
+
}>, "many">;
|
|
275
786
|
}, "strip", z.ZodTypeAny, {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
787
|
+
columns: {
|
|
788
|
+
heading: string;
|
|
789
|
+
content: {
|
|
790
|
+
type: "date";
|
|
791
|
+
meta: {
|
|
792
|
+
schemaVersion: "1.0";
|
|
793
|
+
};
|
|
794
|
+
answer: string;
|
|
795
|
+
} | {
|
|
796
|
+
type: "dateRange";
|
|
797
|
+
meta: {
|
|
798
|
+
schemaVersion: "1.0";
|
|
799
|
+
};
|
|
800
|
+
answer: {
|
|
801
|
+
start: string;
|
|
802
|
+
end: string;
|
|
803
|
+
};
|
|
804
|
+
} | {
|
|
805
|
+
type: "filteredSearch";
|
|
806
|
+
meta: {
|
|
807
|
+
schemaVersion: "1.0";
|
|
808
|
+
};
|
|
809
|
+
answer: string[];
|
|
810
|
+
} | {
|
|
811
|
+
type: "typeaheadSearch";
|
|
812
|
+
meta: {
|
|
813
|
+
schemaVersion: "1.0";
|
|
814
|
+
};
|
|
815
|
+
answer: string;
|
|
816
|
+
} | {
|
|
817
|
+
type: "checkBoxes";
|
|
818
|
+
meta: {
|
|
819
|
+
schemaVersion: "1.0";
|
|
820
|
+
};
|
|
821
|
+
answer: string[];
|
|
822
|
+
} | {
|
|
823
|
+
type: "radioButtons";
|
|
824
|
+
meta: {
|
|
825
|
+
schemaVersion: "1.0";
|
|
826
|
+
};
|
|
827
|
+
answer: string;
|
|
828
|
+
} | {
|
|
829
|
+
type: "selectBox";
|
|
830
|
+
meta: {
|
|
831
|
+
schemaVersion: "1.0";
|
|
832
|
+
};
|
|
833
|
+
answer: string[];
|
|
834
|
+
} | {
|
|
835
|
+
type: "boolean";
|
|
836
|
+
meta: {
|
|
837
|
+
schemaVersion: "1.0";
|
|
838
|
+
};
|
|
839
|
+
answer: boolean;
|
|
840
|
+
} | {
|
|
841
|
+
type: "currency";
|
|
842
|
+
meta: {
|
|
843
|
+
schemaVersion: "1.0";
|
|
844
|
+
};
|
|
845
|
+
answer: number;
|
|
846
|
+
} | {
|
|
847
|
+
type: "email";
|
|
848
|
+
meta: {
|
|
849
|
+
schemaVersion: "1.0";
|
|
850
|
+
};
|
|
851
|
+
answer: string;
|
|
852
|
+
} | {
|
|
853
|
+
type: "number";
|
|
854
|
+
meta: {
|
|
855
|
+
schemaVersion: "1.0";
|
|
856
|
+
};
|
|
857
|
+
answer: number;
|
|
858
|
+
} | {
|
|
859
|
+
type: "text";
|
|
860
|
+
meta: {
|
|
861
|
+
schemaVersion: "1.0";
|
|
862
|
+
};
|
|
863
|
+
answer: string;
|
|
864
|
+
} | {
|
|
865
|
+
type: "textArea";
|
|
866
|
+
meta: {
|
|
867
|
+
schemaVersion: "1.0";
|
|
868
|
+
};
|
|
869
|
+
answer: string;
|
|
870
|
+
} | {
|
|
871
|
+
type: "url";
|
|
872
|
+
meta: {
|
|
873
|
+
schemaVersion: "1.0";
|
|
874
|
+
};
|
|
875
|
+
answer: string;
|
|
876
|
+
};
|
|
877
|
+
}[];
|
|
281
878
|
}, {
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
end: string;
|
|
375
|
-
}>;
|
|
376
|
-
}, "strip", z.ZodTypeAny, {
|
|
377
|
-
type: "dateRange";
|
|
378
|
-
meta: {
|
|
379
|
-
schemaVersion: "1.0";
|
|
380
|
-
};
|
|
381
|
-
answer: {
|
|
382
|
-
start: string;
|
|
383
|
-
end: string;
|
|
384
|
-
};
|
|
385
|
-
}, {
|
|
386
|
-
type: "dateRange";
|
|
387
|
-
meta: {
|
|
388
|
-
schemaVersion: "1.0";
|
|
389
|
-
};
|
|
390
|
-
answer: {
|
|
391
|
-
start: string;
|
|
392
|
-
end: string;
|
|
393
|
-
};
|
|
394
|
-
}>, z.ZodObject<{
|
|
395
|
-
meta: z.ZodObject<{
|
|
396
|
-
schemaVersion: z.ZodLiteral<"1.0">;
|
|
397
|
-
}, "strip", z.ZodTypeAny, {
|
|
398
|
-
schemaVersion: "1.0";
|
|
399
|
-
}, {
|
|
400
|
-
schemaVersion: "1.0";
|
|
401
|
-
}>;
|
|
402
|
-
} & {
|
|
403
|
-
type: z.ZodLiteral<"email">;
|
|
404
|
-
answer: z.ZodString;
|
|
405
|
-
}, "strip", z.ZodTypeAny, {
|
|
406
|
-
type: "email";
|
|
407
|
-
meta: {
|
|
408
|
-
schemaVersion: "1.0";
|
|
409
|
-
};
|
|
410
|
-
answer: string;
|
|
411
|
-
}, {
|
|
412
|
-
type: "email";
|
|
413
|
-
meta: {
|
|
414
|
-
schemaVersion: "1.0";
|
|
415
|
-
};
|
|
416
|
-
answer: string;
|
|
417
|
-
}>, z.ZodObject<{
|
|
418
|
-
meta: z.ZodObject<{
|
|
419
|
-
schemaVersion: z.ZodLiteral<"1.0">;
|
|
420
|
-
}, "strip", z.ZodTypeAny, {
|
|
421
|
-
schemaVersion: "1.0";
|
|
422
|
-
}, {
|
|
423
|
-
schemaVersion: "1.0";
|
|
424
|
-
}>;
|
|
425
|
-
} & {
|
|
426
|
-
type: z.ZodLiteral<"filteredSearch">;
|
|
427
|
-
answer: z.ZodArray<z.ZodString, "many">;
|
|
428
|
-
}, "strip", z.ZodTypeAny, {
|
|
429
|
-
type: "filteredSearch";
|
|
430
|
-
meta: {
|
|
431
|
-
schemaVersion: "1.0";
|
|
432
|
-
};
|
|
433
|
-
answer: string[];
|
|
434
|
-
}, {
|
|
435
|
-
type: "filteredSearch";
|
|
436
|
-
meta: {
|
|
437
|
-
schemaVersion: "1.0";
|
|
438
|
-
};
|
|
439
|
-
answer: string[];
|
|
440
|
-
}>, z.ZodObject<{
|
|
441
|
-
meta: z.ZodObject<{
|
|
442
|
-
schemaVersion: z.ZodLiteral<"1.0">;
|
|
443
|
-
}, "strip", z.ZodTypeAny, {
|
|
444
|
-
schemaVersion: "1.0";
|
|
445
|
-
}, {
|
|
446
|
-
schemaVersion: "1.0";
|
|
447
|
-
}>;
|
|
448
|
-
} & {
|
|
449
|
-
type: z.ZodLiteral<"number">;
|
|
450
|
-
answer: z.ZodNumber;
|
|
451
|
-
}, "strip", z.ZodTypeAny, {
|
|
452
|
-
type: "number";
|
|
453
|
-
meta: {
|
|
454
|
-
schemaVersion: "1.0";
|
|
455
|
-
};
|
|
456
|
-
answer: number;
|
|
457
|
-
}, {
|
|
458
|
-
type: "number";
|
|
459
|
-
meta: {
|
|
460
|
-
schemaVersion: "1.0";
|
|
461
|
-
};
|
|
462
|
-
answer: number;
|
|
463
|
-
}>, z.ZodObject<{
|
|
464
|
-
meta: z.ZodObject<{
|
|
465
|
-
schemaVersion: z.ZodLiteral<"1.0">;
|
|
466
|
-
}, "strip", z.ZodTypeAny, {
|
|
467
|
-
schemaVersion: "1.0";
|
|
468
|
-
}, {
|
|
469
|
-
schemaVersion: "1.0";
|
|
470
|
-
}>;
|
|
471
|
-
} & {
|
|
472
|
-
type: z.ZodLiteral<"radioButtons">;
|
|
473
|
-
answer: z.ZodString;
|
|
474
|
-
}, "strip", z.ZodTypeAny, {
|
|
475
|
-
type: "radioButtons";
|
|
476
|
-
meta: {
|
|
477
|
-
schemaVersion: "1.0";
|
|
478
|
-
};
|
|
479
|
-
answer: string;
|
|
480
|
-
}, {
|
|
481
|
-
type: "radioButtons";
|
|
482
|
-
meta: {
|
|
483
|
-
schemaVersion: "1.0";
|
|
484
|
-
};
|
|
485
|
-
answer: string;
|
|
486
|
-
}>, z.ZodObject<{
|
|
487
|
-
meta: z.ZodObject<{
|
|
488
|
-
schemaVersion: z.ZodLiteral<"1.0">;
|
|
489
|
-
}, "strip", z.ZodTypeAny, {
|
|
490
|
-
schemaVersion: "1.0";
|
|
491
|
-
}, {
|
|
492
|
-
schemaVersion: "1.0";
|
|
493
|
-
}>;
|
|
494
|
-
} & {
|
|
495
|
-
type: z.ZodLiteral<"selectBox">;
|
|
496
|
-
answer: z.ZodArray<z.ZodString, "many">;
|
|
497
|
-
}, "strip", z.ZodTypeAny, {
|
|
498
|
-
type: "selectBox";
|
|
499
|
-
meta: {
|
|
500
|
-
schemaVersion: "1.0";
|
|
501
|
-
};
|
|
502
|
-
answer: string[];
|
|
503
|
-
}, {
|
|
504
|
-
type: "selectBox";
|
|
505
|
-
meta: {
|
|
506
|
-
schemaVersion: "1.0";
|
|
507
|
-
};
|
|
508
|
-
answer: string[];
|
|
509
|
-
}>, z.ZodObject<{
|
|
510
|
-
meta: z.ZodObject<{
|
|
511
|
-
schemaVersion: z.ZodLiteral<"1.0">;
|
|
512
|
-
}, "strip", z.ZodTypeAny, {
|
|
513
|
-
schemaVersion: "1.0";
|
|
514
|
-
}, {
|
|
515
|
-
schemaVersion: "1.0";
|
|
516
|
-
}>;
|
|
517
|
-
} & {
|
|
518
|
-
type: z.ZodLiteral<"text">;
|
|
519
|
-
answer: z.ZodString;
|
|
520
|
-
}, "strip", z.ZodTypeAny, {
|
|
521
|
-
type: "text";
|
|
522
|
-
meta: {
|
|
523
|
-
schemaVersion: "1.0";
|
|
524
|
-
};
|
|
525
|
-
answer: string;
|
|
526
|
-
}, {
|
|
527
|
-
type: "text";
|
|
528
|
-
meta: {
|
|
529
|
-
schemaVersion: "1.0";
|
|
530
|
-
};
|
|
531
|
-
answer: string;
|
|
532
|
-
}>, z.ZodObject<{
|
|
533
|
-
meta: z.ZodObject<{
|
|
534
|
-
schemaVersion: z.ZodLiteral<"1.0">;
|
|
535
|
-
}, "strip", z.ZodTypeAny, {
|
|
536
|
-
schemaVersion: "1.0";
|
|
537
|
-
}, {
|
|
538
|
-
schemaVersion: "1.0";
|
|
539
|
-
}>;
|
|
540
|
-
} & {
|
|
541
|
-
type: z.ZodLiteral<"textArea">;
|
|
542
|
-
answer: z.ZodString;
|
|
543
|
-
}, "strip", z.ZodTypeAny, {
|
|
544
|
-
type: "textArea";
|
|
545
|
-
meta: {
|
|
546
|
-
schemaVersion: "1.0";
|
|
547
|
-
};
|
|
548
|
-
answer: string;
|
|
549
|
-
}, {
|
|
550
|
-
type: "textArea";
|
|
551
|
-
meta: {
|
|
552
|
-
schemaVersion: "1.0";
|
|
553
|
-
};
|
|
554
|
-
answer: string;
|
|
555
|
-
}>, z.ZodObject<{
|
|
556
|
-
meta: z.ZodObject<{
|
|
557
|
-
schemaVersion: z.ZodLiteral<"1.0">;
|
|
558
|
-
}, "strip", z.ZodTypeAny, {
|
|
559
|
-
schemaVersion: "1.0";
|
|
560
|
-
}, {
|
|
561
|
-
schemaVersion: "1.0";
|
|
562
|
-
}>;
|
|
563
|
-
} & {
|
|
564
|
-
type: z.ZodLiteral<"typeaheadSearch">;
|
|
565
|
-
answer: z.ZodString;
|
|
566
|
-
}, "strip", z.ZodTypeAny, {
|
|
567
|
-
type: "typeaheadSearch";
|
|
568
|
-
meta: {
|
|
569
|
-
schemaVersion: "1.0";
|
|
570
|
-
};
|
|
571
|
-
answer: string;
|
|
572
|
-
}, {
|
|
573
|
-
type: "typeaheadSearch";
|
|
574
|
-
meta: {
|
|
575
|
-
schemaVersion: "1.0";
|
|
576
|
-
};
|
|
577
|
-
answer: string;
|
|
578
|
-
}>, z.ZodObject<{
|
|
579
|
-
meta: z.ZodObject<{
|
|
580
|
-
schemaVersion: z.ZodLiteral<"1.0">;
|
|
581
|
-
}, "strip", z.ZodTypeAny, {
|
|
582
|
-
schemaVersion: "1.0";
|
|
583
|
-
}, {
|
|
584
|
-
schemaVersion: "1.0";
|
|
585
|
-
}>;
|
|
586
|
-
} & {
|
|
587
|
-
type: z.ZodLiteral<"url">;
|
|
588
|
-
answer: z.ZodString;
|
|
589
|
-
}, "strip", z.ZodTypeAny, {
|
|
590
|
-
type: "url";
|
|
591
|
-
meta: {
|
|
592
|
-
schemaVersion: "1.0";
|
|
593
|
-
};
|
|
594
|
-
answer: string;
|
|
595
|
-
}, {
|
|
596
|
-
type: "url";
|
|
597
|
-
meta: {
|
|
598
|
-
schemaVersion: "1.0";
|
|
599
|
-
};
|
|
600
|
-
answer: string;
|
|
601
|
-
}>]>, "many">;
|
|
879
|
+
columns: {
|
|
880
|
+
heading: string;
|
|
881
|
+
content: {
|
|
882
|
+
type: "date";
|
|
883
|
+
meta: {
|
|
884
|
+
schemaVersion: "1.0";
|
|
885
|
+
};
|
|
886
|
+
answer: string;
|
|
887
|
+
} | {
|
|
888
|
+
type: "dateRange";
|
|
889
|
+
meta: {
|
|
890
|
+
schemaVersion: "1.0";
|
|
891
|
+
};
|
|
892
|
+
answer: {
|
|
893
|
+
start: string;
|
|
894
|
+
end: string;
|
|
895
|
+
};
|
|
896
|
+
} | {
|
|
897
|
+
type: "filteredSearch";
|
|
898
|
+
meta: {
|
|
899
|
+
schemaVersion: "1.0";
|
|
900
|
+
};
|
|
901
|
+
answer: string[];
|
|
902
|
+
} | {
|
|
903
|
+
type: "typeaheadSearch";
|
|
904
|
+
meta: {
|
|
905
|
+
schemaVersion: "1.0";
|
|
906
|
+
};
|
|
907
|
+
answer: string;
|
|
908
|
+
} | {
|
|
909
|
+
type: "checkBoxes";
|
|
910
|
+
meta: {
|
|
911
|
+
schemaVersion: "1.0";
|
|
912
|
+
};
|
|
913
|
+
answer: string[];
|
|
914
|
+
} | {
|
|
915
|
+
type: "radioButtons";
|
|
916
|
+
meta: {
|
|
917
|
+
schemaVersion: "1.0";
|
|
918
|
+
};
|
|
919
|
+
answer: string;
|
|
920
|
+
} | {
|
|
921
|
+
type: "selectBox";
|
|
922
|
+
meta: {
|
|
923
|
+
schemaVersion: "1.0";
|
|
924
|
+
};
|
|
925
|
+
answer: string[];
|
|
926
|
+
} | {
|
|
927
|
+
type: "boolean";
|
|
928
|
+
meta: {
|
|
929
|
+
schemaVersion: "1.0";
|
|
930
|
+
};
|
|
931
|
+
answer: boolean;
|
|
932
|
+
} | {
|
|
933
|
+
type: "currency";
|
|
934
|
+
meta: {
|
|
935
|
+
schemaVersion: "1.0";
|
|
936
|
+
};
|
|
937
|
+
answer: number;
|
|
938
|
+
} | {
|
|
939
|
+
type: "email";
|
|
940
|
+
meta: {
|
|
941
|
+
schemaVersion: "1.0";
|
|
942
|
+
};
|
|
943
|
+
answer: string;
|
|
944
|
+
} | {
|
|
945
|
+
type: "number";
|
|
946
|
+
meta: {
|
|
947
|
+
schemaVersion: "1.0";
|
|
948
|
+
};
|
|
949
|
+
answer: number;
|
|
950
|
+
} | {
|
|
951
|
+
type: "text";
|
|
952
|
+
meta: {
|
|
953
|
+
schemaVersion: "1.0";
|
|
954
|
+
};
|
|
955
|
+
answer: string;
|
|
956
|
+
} | {
|
|
957
|
+
type: "textArea";
|
|
958
|
+
meta: {
|
|
959
|
+
schemaVersion: "1.0";
|
|
960
|
+
};
|
|
961
|
+
answer: string;
|
|
962
|
+
} | {
|
|
963
|
+
type: "url";
|
|
964
|
+
meta: {
|
|
965
|
+
schemaVersion: "1.0";
|
|
966
|
+
};
|
|
967
|
+
answer: string;
|
|
968
|
+
};
|
|
969
|
+
}[];
|
|
970
|
+
}>, "many">;
|
|
602
971
|
}, "strip", z.ZodTypeAny, {
|
|
603
972
|
type: "table";
|
|
604
973
|
meta: {
|
|
605
974
|
schemaVersion: "1.0";
|
|
606
975
|
};
|
|
607
|
-
answer:
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
976
|
+
answer: {
|
|
977
|
+
columns: {
|
|
978
|
+
heading: string;
|
|
979
|
+
content: {
|
|
980
|
+
type: "date";
|
|
981
|
+
meta: {
|
|
982
|
+
schemaVersion: "1.0";
|
|
983
|
+
};
|
|
984
|
+
answer: string;
|
|
985
|
+
} | {
|
|
986
|
+
type: "dateRange";
|
|
987
|
+
meta: {
|
|
988
|
+
schemaVersion: "1.0";
|
|
989
|
+
};
|
|
990
|
+
answer: {
|
|
991
|
+
start: string;
|
|
992
|
+
end: string;
|
|
993
|
+
};
|
|
994
|
+
} | {
|
|
995
|
+
type: "filteredSearch";
|
|
996
|
+
meta: {
|
|
997
|
+
schemaVersion: "1.0";
|
|
998
|
+
};
|
|
999
|
+
answer: string[];
|
|
1000
|
+
} | {
|
|
1001
|
+
type: "typeaheadSearch";
|
|
1002
|
+
meta: {
|
|
1003
|
+
schemaVersion: "1.0";
|
|
1004
|
+
};
|
|
1005
|
+
answer: string;
|
|
1006
|
+
} | {
|
|
1007
|
+
type: "checkBoxes";
|
|
1008
|
+
meta: {
|
|
1009
|
+
schemaVersion: "1.0";
|
|
1010
|
+
};
|
|
1011
|
+
answer: string[];
|
|
1012
|
+
} | {
|
|
1013
|
+
type: "radioButtons";
|
|
1014
|
+
meta: {
|
|
1015
|
+
schemaVersion: "1.0";
|
|
1016
|
+
};
|
|
1017
|
+
answer: string;
|
|
1018
|
+
} | {
|
|
1019
|
+
type: "selectBox";
|
|
1020
|
+
meta: {
|
|
1021
|
+
schemaVersion: "1.0";
|
|
1022
|
+
};
|
|
1023
|
+
answer: string[];
|
|
1024
|
+
} | {
|
|
1025
|
+
type: "boolean";
|
|
1026
|
+
meta: {
|
|
1027
|
+
schemaVersion: "1.0";
|
|
1028
|
+
};
|
|
1029
|
+
answer: boolean;
|
|
1030
|
+
} | {
|
|
1031
|
+
type: "currency";
|
|
1032
|
+
meta: {
|
|
1033
|
+
schemaVersion: "1.0";
|
|
1034
|
+
};
|
|
1035
|
+
answer: number;
|
|
1036
|
+
} | {
|
|
1037
|
+
type: "email";
|
|
1038
|
+
meta: {
|
|
1039
|
+
schemaVersion: "1.0";
|
|
1040
|
+
};
|
|
1041
|
+
answer: string;
|
|
1042
|
+
} | {
|
|
1043
|
+
type: "number";
|
|
1044
|
+
meta: {
|
|
1045
|
+
schemaVersion: "1.0";
|
|
1046
|
+
};
|
|
1047
|
+
answer: number;
|
|
1048
|
+
} | {
|
|
1049
|
+
type: "text";
|
|
1050
|
+
meta: {
|
|
1051
|
+
schemaVersion: "1.0";
|
|
1052
|
+
};
|
|
1053
|
+
answer: string;
|
|
1054
|
+
} | {
|
|
1055
|
+
type: "textArea";
|
|
1056
|
+
meta: {
|
|
1057
|
+
schemaVersion: "1.0";
|
|
1058
|
+
};
|
|
1059
|
+
answer: string;
|
|
1060
|
+
} | {
|
|
1061
|
+
type: "url";
|
|
1062
|
+
meta: {
|
|
1063
|
+
schemaVersion: "1.0";
|
|
1064
|
+
};
|
|
1065
|
+
answer: string;
|
|
1066
|
+
};
|
|
1067
|
+
}[];
|
|
1068
|
+
}[];
|
|
695
1069
|
}, {
|
|
696
1070
|
type: "table";
|
|
697
1071
|
meta: {
|
|
698
1072
|
schemaVersion: "1.0";
|
|
699
1073
|
};
|
|
700
|
-
answer:
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
1074
|
+
answer: {
|
|
1075
|
+
columns: {
|
|
1076
|
+
heading: string;
|
|
1077
|
+
content: {
|
|
1078
|
+
type: "date";
|
|
1079
|
+
meta: {
|
|
1080
|
+
schemaVersion: "1.0";
|
|
1081
|
+
};
|
|
1082
|
+
answer: string;
|
|
1083
|
+
} | {
|
|
1084
|
+
type: "dateRange";
|
|
1085
|
+
meta: {
|
|
1086
|
+
schemaVersion: "1.0";
|
|
1087
|
+
};
|
|
1088
|
+
answer: {
|
|
1089
|
+
start: string;
|
|
1090
|
+
end: string;
|
|
1091
|
+
};
|
|
1092
|
+
} | {
|
|
1093
|
+
type: "filteredSearch";
|
|
1094
|
+
meta: {
|
|
1095
|
+
schemaVersion: "1.0";
|
|
1096
|
+
};
|
|
1097
|
+
answer: string[];
|
|
1098
|
+
} | {
|
|
1099
|
+
type: "typeaheadSearch";
|
|
1100
|
+
meta: {
|
|
1101
|
+
schemaVersion: "1.0";
|
|
1102
|
+
};
|
|
1103
|
+
answer: string;
|
|
1104
|
+
} | {
|
|
1105
|
+
type: "checkBoxes";
|
|
1106
|
+
meta: {
|
|
1107
|
+
schemaVersion: "1.0";
|
|
1108
|
+
};
|
|
1109
|
+
answer: string[];
|
|
1110
|
+
} | {
|
|
1111
|
+
type: "radioButtons";
|
|
1112
|
+
meta: {
|
|
1113
|
+
schemaVersion: "1.0";
|
|
1114
|
+
};
|
|
1115
|
+
answer: string;
|
|
1116
|
+
} | {
|
|
1117
|
+
type: "selectBox";
|
|
1118
|
+
meta: {
|
|
1119
|
+
schemaVersion: "1.0";
|
|
1120
|
+
};
|
|
1121
|
+
answer: string[];
|
|
1122
|
+
} | {
|
|
1123
|
+
type: "boolean";
|
|
1124
|
+
meta: {
|
|
1125
|
+
schemaVersion: "1.0";
|
|
1126
|
+
};
|
|
1127
|
+
answer: boolean;
|
|
1128
|
+
} | {
|
|
1129
|
+
type: "currency";
|
|
1130
|
+
meta: {
|
|
1131
|
+
schemaVersion: "1.0";
|
|
1132
|
+
};
|
|
1133
|
+
answer: number;
|
|
1134
|
+
} | {
|
|
1135
|
+
type: "email";
|
|
1136
|
+
meta: {
|
|
1137
|
+
schemaVersion: "1.0";
|
|
1138
|
+
};
|
|
1139
|
+
answer: string;
|
|
1140
|
+
} | {
|
|
1141
|
+
type: "number";
|
|
1142
|
+
meta: {
|
|
1143
|
+
schemaVersion: "1.0";
|
|
1144
|
+
};
|
|
1145
|
+
answer: number;
|
|
1146
|
+
} | {
|
|
1147
|
+
type: "text";
|
|
1148
|
+
meta: {
|
|
1149
|
+
schemaVersion: "1.0";
|
|
1150
|
+
};
|
|
1151
|
+
answer: string;
|
|
1152
|
+
} | {
|
|
1153
|
+
type: "textArea";
|
|
1154
|
+
meta: {
|
|
1155
|
+
schemaVersion: "1.0";
|
|
1156
|
+
};
|
|
1157
|
+
answer: string;
|
|
1158
|
+
} | {
|
|
1159
|
+
type: "url";
|
|
1160
|
+
meta: {
|
|
1161
|
+
schemaVersion: "1.0";
|
|
1162
|
+
};
|
|
1163
|
+
answer: string;
|
|
1164
|
+
};
|
|
1165
|
+
}[];
|
|
1166
|
+
}[];
|
|
788
1167
|
}>, z.ZodObject<{
|
|
789
1168
|
meta: z.ZodObject<{
|
|
790
1169
|
schemaVersion: z.ZodLiteral<"1.0">;
|