@takeshape/schema 8.87.2 → 8.89.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/es/builtin-schema.js +23 -0
  2. package/es/migration/index.js +3 -1
  3. package/es/migration/to/v3.17.0.js +27 -0
  4. package/es/project-schema/index.js +3 -1
  5. package/es/project-schema/migrate.js +5 -1
  6. package/es/project-schema/v3.17.0.js +1 -0
  7. package/es/schema-util.js +29 -17
  8. package/es/schemas/index.js +4 -3
  9. package/es/schemas/index.ts +4 -2
  10. package/es/schemas/project-schema/latest.json +7 -8
  11. package/es/schemas/project-schema/v3.17.0.json +2358 -0
  12. package/es/schemas/project-schema.json +3 -0
  13. package/es/template-shapes/where.js +1 -1
  14. package/es/validate.js +12 -8
  15. package/examples/latest/betzino.json +1393 -349
  16. package/examples/latest/blog-schema.json +1 -1
  17. package/examples/latest/brewery-schema.json +1 -1
  18. package/examples/latest/complex-project-schema.json +1 -1
  19. package/examples/latest/fabric-ecommerce.json +1 -1
  20. package/examples/latest/frank-and-fred-schema.json +1 -1
  21. package/examples/latest/massive-schema.json +1 -1
  22. package/examples/latest/mill-components-schema.json +1 -1
  23. package/examples/latest/pet-oneof-array.json +1 -1
  24. package/examples/latest/post-schema.json +1 -1
  25. package/examples/latest/pruned-shopify-product-schema.json +1 -1
  26. package/examples/latest/real-world-schema.json +1 -1
  27. package/examples/latest/recursive-repeater-schema.json +1 -1
  28. package/examples/latest/recursive-schema.json +1 -1
  29. package/examples/latest/rick-and-morty-ast.json +145 -37
  30. package/examples/latest/rick-and-morty-graphql.json +113 -29
  31. package/examples/latest/rick-and-morty-rest.json +1 -1
  32. package/examples/latest/schema-with-repeater-draftjs.json +1 -1
  33. package/examples/latest/shape-books-v3_2_0.json +1 -1
  34. package/examples/latest/shape-books.json +1 -1
  35. package/examples/latest/shopify-lookbook.json +1 -1
  36. package/examples/latest/shopify-store-with-widget.json +81 -21
  37. package/examples/latest/stripe-starter-resolved.json +49 -13
  38. package/examples/latest/user-schema-no-required.json +1 -1
  39. package/examples/latest/user-schema-with-defaults.json +1 -1
  40. package/lib/builtin-schema.d.ts.map +1 -1
  41. package/lib/builtin-schema.js +23 -0
  42. package/lib/migration/index.d.ts +1 -0
  43. package/lib/migration/index.d.ts.map +1 -1
  44. package/lib/migration/index.js +4 -1
  45. package/lib/migration/to/v3.17.0.d.ts +5 -0
  46. package/lib/migration/to/v3.17.0.d.ts.map +1 -0
  47. package/lib/migration/to/v3.17.0.js +40 -0
  48. package/lib/project-schema/index.d.ts +4 -1
  49. package/lib/project-schema/index.d.ts.map +1 -1
  50. package/lib/project-schema/index.js +20 -3
  51. package/lib/project-schema/latest.d.ts +2 -5
  52. package/lib/project-schema/latest.d.ts.map +1 -1
  53. package/lib/project-schema/migrate.d.ts.map +1 -1
  54. package/lib/project-schema/migrate.js +4 -0
  55. package/lib/project-schema/v3.17.0.d.ts +1456 -0
  56. package/lib/project-schema/v3.17.0.d.ts.map +1 -0
  57. package/lib/project-schema/v3.17.0.js +5 -0
  58. package/lib/schema-util.d.ts.map +1 -1
  59. package/lib/schema-util.js +29 -17
  60. package/lib/schemas/index.d.ts +2301 -2
  61. package/lib/schemas/index.d.ts.map +1 -1
  62. package/lib/schemas/index.js +6 -4
  63. package/lib/schemas/index.ts +4 -2
  64. package/lib/schemas/project-schema/latest.json +7 -8
  65. package/lib/schemas/project-schema/v3.17.0.json +2358 -0
  66. package/lib/schemas/project-schema.json +3 -0
  67. package/lib/template-shapes/where.d.ts.map +1 -1
  68. package/lib/template-shapes/where.js +1 -1
  69. package/lib/types/types.d.ts +2 -2
  70. package/lib/types/types.d.ts.map +1 -1
  71. package/lib/validate.d.ts.map +1 -1
  72. package/lib/validate.js +12 -8
  73. package/package.json +4 -4
@@ -1,7 +1,2306 @@
1
- export declare const CURRENT_SCHEMA_VERSION = "3.16.0";
1
+ export declare const CURRENT_SCHEMA_VERSION = "3.17.0";
2
2
  export { default as anyProjectSchema } from './project-schema.json';
3
- export { default as latestSchemaJson } from './project-schema/v3.16.0.json';
3
+ export { default as latestSchemaJson } from './project-schema/v3.17.0.json';
4
4
  export declare const allProjectSchemas: ({
5
+ $schema: string;
6
+ $id: string;
7
+ title: string;
8
+ definitions: {
9
+ schemaArray: {
10
+ title: string;
11
+ type: string;
12
+ minItems: number;
13
+ items: {
14
+ $ref: string;
15
+ };
16
+ };
17
+ nonNegativeInteger: {
18
+ title: string;
19
+ type: string;
20
+ minimum: number;
21
+ };
22
+ nonNegativeIntegerDefault0: {
23
+ title: string;
24
+ allOf: ({
25
+ $ref: string;
26
+ default?: undefined;
27
+ } | {
28
+ default: number;
29
+ $ref?: undefined;
30
+ })[];
31
+ };
32
+ simpleTypes: {
33
+ title: string;
34
+ enum: string[];
35
+ };
36
+ stringArray: {
37
+ title: string;
38
+ type: string;
39
+ items: {
40
+ type: string;
41
+ };
42
+ uniqueItems: boolean;
43
+ default: never[];
44
+ };
45
+ relationship: {
46
+ title: string;
47
+ type: string;
48
+ properties: {
49
+ shapeIds: {
50
+ type: string;
51
+ items: {
52
+ type: string;
53
+ };
54
+ minItems: number;
55
+ };
56
+ type: {
57
+ type: string;
58
+ };
59
+ relatedName: {
60
+ type: string;
61
+ pattern: string;
62
+ };
63
+ };
64
+ required: string[];
65
+ additionalProperties: boolean;
66
+ };
67
+ backreference: {
68
+ title: string;
69
+ description: string;
70
+ type: string;
71
+ properties: {
72
+ enabled: {
73
+ type: string;
74
+ };
75
+ name: {
76
+ type: string;
77
+ pattern: string;
78
+ };
79
+ };
80
+ additionalProperties: boolean;
81
+ required: string[];
82
+ };
83
+ input: {
84
+ title: string;
85
+ description: string;
86
+ $ref: string;
87
+ };
88
+ mappingString: {
89
+ title: string;
90
+ type: string;
91
+ pattern: string;
92
+ };
93
+ fieldMapping: {
94
+ title: string;
95
+ oneOf: ({
96
+ $ref: string;
97
+ type?: undefined;
98
+ items?: undefined;
99
+ } | {
100
+ type: string;
101
+ items: {
102
+ $ref: string;
103
+ };
104
+ $ref?: undefined;
105
+ })[];
106
+ };
107
+ refSchema: {
108
+ title: string;
109
+ type: string;
110
+ properties: {
111
+ "@ref": {
112
+ $ref: string;
113
+ };
114
+ };
115
+ required: string[];
116
+ };
117
+ refSchemaLegacy: {
118
+ title: string;
119
+ type: string;
120
+ properties: {
121
+ $ref: {
122
+ $ref: string;
123
+ };
124
+ };
125
+ required: string[];
126
+ };
127
+ shapeSchemaEnum: {
128
+ title: string;
129
+ type: string;
130
+ properties: {
131
+ enum: {
132
+ type: string;
133
+ items: {
134
+ type: string;
135
+ };
136
+ minItems: number;
137
+ };
138
+ };
139
+ additionalProperties: boolean;
140
+ required: string[];
141
+ };
142
+ objectSchema: {
143
+ title: string;
144
+ type: string;
145
+ allOf: ({
146
+ $ref: string;
147
+ properties?: undefined;
148
+ required?: undefined;
149
+ } | {
150
+ properties: {
151
+ type: {
152
+ type: string;
153
+ const: string;
154
+ };
155
+ properties: {
156
+ type: string;
157
+ additionalProperties: {
158
+ $ref: string;
159
+ };
160
+ };
161
+ };
162
+ required: string[];
163
+ $ref?: undefined;
164
+ })[];
165
+ };
166
+ returnShapeArraySchema: {
167
+ title: string;
168
+ type: string;
169
+ allOf: ({
170
+ $ref: string;
171
+ properties?: undefined;
172
+ required?: undefined;
173
+ } | {
174
+ properties: {
175
+ type: {
176
+ type: string;
177
+ const: string;
178
+ };
179
+ items: {
180
+ oneOf: ({
181
+ $ref: string;
182
+ type?: undefined;
183
+ properties?: undefined;
184
+ required?: undefined;
185
+ } | {
186
+ type: string;
187
+ properties: {
188
+ type: {
189
+ enum: string[];
190
+ };
191
+ };
192
+ required: string[];
193
+ $ref?: undefined;
194
+ })[];
195
+ };
196
+ };
197
+ required: string[];
198
+ $ref?: undefined;
199
+ })[];
200
+ };
201
+ objectOrRefArray: {
202
+ title: string;
203
+ type: string;
204
+ items: {
205
+ oneOf: {
206
+ $ref: string;
207
+ }[];
208
+ unevaluatedProperties: boolean;
209
+ };
210
+ };
211
+ shapeSchemaAllOf: {
212
+ title: string;
213
+ type: string;
214
+ properties: {
215
+ allOf: {
216
+ $ref: string;
217
+ };
218
+ };
219
+ required: string[];
220
+ additionalProperties: boolean;
221
+ };
222
+ allOfSchema: {
223
+ title: string;
224
+ allOf: ({
225
+ $ref: string;
226
+ type?: undefined;
227
+ properties?: undefined;
228
+ required?: undefined;
229
+ } | {
230
+ type: string;
231
+ properties: {
232
+ allOf: {
233
+ $ref: string;
234
+ };
235
+ };
236
+ required: string[];
237
+ $ref?: undefined;
238
+ })[];
239
+ };
240
+ shapeSchemaExtends: {
241
+ title: string;
242
+ type: string;
243
+ properties: {
244
+ extends: {
245
+ $ref: string;
246
+ };
247
+ };
248
+ required: string[];
249
+ additionalProperties: boolean;
250
+ };
251
+ extendsSchema: {
252
+ title: string;
253
+ allOf: ({
254
+ $ref: string;
255
+ type?: undefined;
256
+ properties?: undefined;
257
+ required?: undefined;
258
+ } | {
259
+ type: string;
260
+ properties: {
261
+ extends: {
262
+ $ref: string;
263
+ };
264
+ };
265
+ required: string[];
266
+ $ref?: undefined;
267
+ })[];
268
+ };
269
+ shapeSchemaOneOf: {
270
+ title: string;
271
+ type: string;
272
+ properties: {
273
+ oneOf: {
274
+ $ref: string;
275
+ };
276
+ };
277
+ required: string[];
278
+ additionalProperties: boolean;
279
+ };
280
+ oneOfSchema: {
281
+ title: string;
282
+ allOf: ({
283
+ $ref: string;
284
+ type?: undefined;
285
+ properties?: undefined;
286
+ required?: undefined;
287
+ additionalProperties?: undefined;
288
+ } | {
289
+ type: string;
290
+ properties: {
291
+ oneOf: {
292
+ $ref: string;
293
+ };
294
+ };
295
+ required: string[];
296
+ additionalProperties: boolean;
297
+ $ref?: undefined;
298
+ })[];
299
+ };
300
+ shapeSchema: {
301
+ title: string;
302
+ type: string;
303
+ oneOf: {
304
+ $ref: string;
305
+ }[];
306
+ };
307
+ queryMap: {
308
+ title: string;
309
+ type: string;
310
+ patternProperties: {
311
+ "[0-9A-Za-z_-]+": {
312
+ $ref: string;
313
+ };
314
+ };
315
+ };
316
+ args: {
317
+ title: string;
318
+ oneOf: ({
319
+ type: string;
320
+ $ref?: undefined;
321
+ } | {
322
+ $ref: string;
323
+ type?: undefined;
324
+ })[];
325
+ };
326
+ returnShape: {
327
+ title: string;
328
+ oneOf: ({
329
+ type: string;
330
+ $ref?: undefined;
331
+ } | {
332
+ $ref: string;
333
+ type?: undefined;
334
+ })[];
335
+ };
336
+ directiveConfigItem: {
337
+ title: string;
338
+ description: string;
339
+ type: string;
340
+ items: ({
341
+ title: string;
342
+ type: string;
343
+ propertyNames?: undefined;
344
+ } | {
345
+ title: string;
346
+ type: string;
347
+ propertyNames: {
348
+ pattern: string;
349
+ };
350
+ })[];
351
+ };
352
+ parameterSerializeStyleOptions: {
353
+ title: string;
354
+ description: string;
355
+ type: string;
356
+ properties: {
357
+ style: {
358
+ type: string;
359
+ enum: string[];
360
+ };
361
+ explode: {
362
+ type: string;
363
+ };
364
+ allowEmptyValue: {
365
+ type: string;
366
+ };
367
+ allowReserved: {
368
+ description: string;
369
+ type: string;
370
+ };
371
+ skipEncoding: {
372
+ type: string;
373
+ };
374
+ };
375
+ required: string[];
376
+ additionalProperties: boolean;
377
+ };
378
+ parameterSerializeStyleOptionsForPathParams: {
379
+ title: string;
380
+ description: string;
381
+ type: string;
382
+ properties: {
383
+ style: {
384
+ type: string;
385
+ enum: string[];
386
+ };
387
+ explode: {
388
+ type: string;
389
+ };
390
+ allowEmptyValue: {
391
+ type: string;
392
+ };
393
+ allowReserved: {
394
+ description: string;
395
+ type: string;
396
+ };
397
+ skipEncoding: {
398
+ type: string;
399
+ };
400
+ };
401
+ required: string[];
402
+ additionalProperties: boolean;
403
+ };
404
+ parameterSerializeStyleOptionsForSearchParams: {
405
+ title: string;
406
+ description: string;
407
+ type: string;
408
+ properties: {
409
+ style: {
410
+ type: string;
411
+ enum: string[];
412
+ };
413
+ explode: {
414
+ type: string;
415
+ };
416
+ allowEmptyValue: {
417
+ type: string;
418
+ };
419
+ allowReserved: {
420
+ description: string;
421
+ type: string;
422
+ };
423
+ skipEncoding: {
424
+ type: string;
425
+ };
426
+ };
427
+ required: string[];
428
+ additionalProperties: boolean;
429
+ };
430
+ parameterSerializeStyleOptionsForHeaders: {
431
+ title: string;
432
+ description: string;
433
+ type: string;
434
+ properties: {
435
+ style: {
436
+ type: string;
437
+ enum: string[];
438
+ };
439
+ explode: {
440
+ type: string;
441
+ };
442
+ };
443
+ required: string[];
444
+ additionalProperties: boolean;
445
+ };
446
+ parameterSerializeContentOptions: {
447
+ title: string;
448
+ description: string;
449
+ type: string;
450
+ properties: {
451
+ contentType: {
452
+ type: string;
453
+ };
454
+ allowReserved: {
455
+ description: string;
456
+ type: string;
457
+ };
458
+ skipEncoding: {
459
+ type: string;
460
+ };
461
+ options: {
462
+ description: string;
463
+ type: string;
464
+ };
465
+ };
466
+ required: string[];
467
+ additionalProperties: boolean;
468
+ };
469
+ parameterSerializeOptions: {
470
+ title: string;
471
+ description: string;
472
+ type: string;
473
+ oneOf: {
474
+ $ref: string;
475
+ }[];
476
+ };
477
+ parameterSerializeConfig: {
478
+ title: string;
479
+ description: string;
480
+ type: string;
481
+ properties: {
482
+ content: {
483
+ $ref: string;
484
+ };
485
+ defaults: {
486
+ $ref: string;
487
+ };
488
+ paths: {
489
+ type: string;
490
+ patternProperties: {
491
+ "^[^\\n\\r]*$": {
492
+ $ref: string;
493
+ };
494
+ };
495
+ };
496
+ };
497
+ additionalProperties: boolean;
498
+ };
499
+ parameterSerializeConfigForBody: {
500
+ title: string;
501
+ description: string;
502
+ type: string;
503
+ properties: {
504
+ content: {
505
+ $ref: string;
506
+ };
507
+ };
508
+ additionalProperties: boolean;
509
+ };
510
+ parameterSerializeConfigForPathParams: {
511
+ title: string;
512
+ description: string;
513
+ type: string;
514
+ properties: {
515
+ template: {
516
+ description: string;
517
+ type: string;
518
+ };
519
+ defaults: {
520
+ oneOf: {
521
+ $ref: string;
522
+ }[];
523
+ };
524
+ paths: {
525
+ type: string;
526
+ patternProperties: {
527
+ "^[^\\n\\r]*$": {
528
+ oneOf: {
529
+ $ref: string;
530
+ }[];
531
+ };
532
+ };
533
+ };
534
+ };
535
+ required: string[];
536
+ additionalProperties: boolean;
537
+ };
538
+ parameterSerializeConfigForSearchParams: {
539
+ title: string;
540
+ description: string;
541
+ type: string;
542
+ properties: {
543
+ defaults: {
544
+ oneOf: {
545
+ $ref: string;
546
+ }[];
547
+ };
548
+ paths: {
549
+ type: string;
550
+ patternProperties: {
551
+ "^[^\\n\\r]*$": {
552
+ oneOf: {
553
+ $ref: string;
554
+ }[];
555
+ };
556
+ };
557
+ };
558
+ };
559
+ additionalProperties: boolean;
560
+ };
561
+ parameterSerializeConfigForHeaders: {
562
+ title: string;
563
+ description: string;
564
+ type: string;
565
+ properties: {
566
+ defaults: {
567
+ oneOf: {
568
+ $ref: string;
569
+ }[];
570
+ };
571
+ paths: {
572
+ type: string;
573
+ patternProperties: {
574
+ "^[^\\n\\r]*$": {
575
+ oneOf: {
576
+ $ref: string;
577
+ }[];
578
+ };
579
+ };
580
+ };
581
+ };
582
+ additionalProperties: boolean;
583
+ };
584
+ parameterOpNested: {
585
+ title: string;
586
+ description: string;
587
+ type: string;
588
+ properties: {
589
+ path: {
590
+ description: string;
591
+ type: string;
592
+ minLength: number;
593
+ pattern: string;
594
+ };
595
+ op: {
596
+ description: string;
597
+ type: string;
598
+ enum: string[];
599
+ };
600
+ ops: {
601
+ description: string;
602
+ $ref: string;
603
+ };
604
+ };
605
+ required: string[];
606
+ additionalProperties: boolean;
607
+ };
608
+ parameterOpValue: {
609
+ title: string;
610
+ description: string;
611
+ type: string;
612
+ properties: {
613
+ path: {
614
+ description: string;
615
+ type: string;
616
+ minLength: number;
617
+ pattern: string;
618
+ };
619
+ op: {
620
+ description: string;
621
+ type: string;
622
+ enum: string[];
623
+ };
624
+ value: {
625
+ description: string;
626
+ type: string[];
627
+ };
628
+ };
629
+ required: string[];
630
+ additionalProperties: boolean;
631
+ };
632
+ parameterOpMapping: {
633
+ title: string;
634
+ description: string;
635
+ type: string;
636
+ properties: {
637
+ path: {
638
+ description: string;
639
+ type: string;
640
+ minLength: number;
641
+ pattern: string;
642
+ };
643
+ op: {
644
+ description: string;
645
+ type: string;
646
+ enum: string[];
647
+ };
648
+ mapping: {
649
+ description: string;
650
+ oneOf: ({
651
+ type: string;
652
+ minLength: number;
653
+ $ref?: undefined;
654
+ } | {
655
+ $ref: string;
656
+ type?: undefined;
657
+ minLength?: undefined;
658
+ })[];
659
+ };
660
+ };
661
+ required: string[];
662
+ additionalProperties: boolean;
663
+ };
664
+ parameterOpOp: {
665
+ title: string;
666
+ description: string;
667
+ type: string;
668
+ properties: {
669
+ path: {
670
+ description: string;
671
+ type: string;
672
+ minLength: number;
673
+ pattern: string;
674
+ };
675
+ op: {
676
+ description: string;
677
+ type: string;
678
+ enum: string[];
679
+ };
680
+ };
681
+ required: string[];
682
+ additionalProperties: boolean;
683
+ };
684
+ parameterOp: {
685
+ title: string;
686
+ description: string;
687
+ oneOf: {
688
+ $ref: string;
689
+ }[];
690
+ };
691
+ parameterOpList: {
692
+ title: string;
693
+ type: string;
694
+ items: {
695
+ $ref: string;
696
+ };
697
+ minItems: number;
698
+ };
699
+ parameterConfig: {
700
+ title: string;
701
+ description: string;
702
+ type: string;
703
+ properties: {
704
+ ops: {
705
+ $ref: string;
706
+ };
707
+ serialize: {
708
+ $ref: string;
709
+ };
710
+ };
711
+ required: string[];
712
+ additionalProperties: boolean;
713
+ };
714
+ parameterConfigForBody: {
715
+ title: string;
716
+ type: string;
717
+ properties: {
718
+ ops: {
719
+ $ref: string;
720
+ };
721
+ serialize: {
722
+ $ref: string;
723
+ };
724
+ };
725
+ required: string[];
726
+ additionalProperties: boolean;
727
+ };
728
+ parameterConfigForPathParams: {
729
+ title: string;
730
+ type: string;
731
+ properties: {
732
+ ops: {
733
+ $ref: string;
734
+ };
735
+ serialize: {
736
+ $ref: string;
737
+ };
738
+ };
739
+ required: string[];
740
+ additionalProperties: boolean;
741
+ };
742
+ parameterConfigForAwsLambda: {
743
+ title: string;
744
+ type: string;
745
+ properties: {
746
+ ops: {
747
+ $ref: string;
748
+ };
749
+ serialize: {
750
+ $ref: string;
751
+ };
752
+ };
753
+ required: string[];
754
+ additionalProperties: boolean;
755
+ };
756
+ parameterConfigForSearchParams: {
757
+ title: string;
758
+ type: string;
759
+ properties: {
760
+ ops: {
761
+ $ref: string;
762
+ };
763
+ serialize: {
764
+ $ref: string;
765
+ };
766
+ };
767
+ required: string[];
768
+ additionalProperties: boolean;
769
+ };
770
+ parameterConfigForHeaders: {
771
+ title: string;
772
+ type: string;
773
+ properties: {
774
+ ops: {
775
+ $ref: string;
776
+ };
777
+ serialize: {
778
+ $ref: string;
779
+ };
780
+ };
781
+ required: string[];
782
+ additionalProperties: boolean;
783
+ };
784
+ parameterConfigForJson: {
785
+ title: string;
786
+ type: string;
787
+ properties: {
788
+ ops: {
789
+ $ref: string;
790
+ };
791
+ };
792
+ required: string[];
793
+ additionalProperties: boolean;
794
+ };
795
+ directiveConfig: {
796
+ title: string;
797
+ description: string;
798
+ type: string;
799
+ items: {
800
+ $ref: string;
801
+ };
802
+ minItems: number;
803
+ };
804
+ directiveMappingMap: {
805
+ title: string;
806
+ description: string;
807
+ type: string;
808
+ patternProperties: {
809
+ "[0-9A-Za-z_-]+": {
810
+ $ref: string;
811
+ };
812
+ };
813
+ };
814
+ directiveMappingArrayItem: {
815
+ title: string;
816
+ description: string;
817
+ type: string;
818
+ items: ({
819
+ type: string;
820
+ $ref?: undefined;
821
+ } | {
822
+ $ref: string;
823
+ type?: undefined;
824
+ })[];
825
+ };
826
+ directiveMappingArray: {
827
+ title: string;
828
+ description: string;
829
+ type: string;
830
+ items: {
831
+ $ref: string;
832
+ };
833
+ };
834
+ basicResolver: {
835
+ title: string;
836
+ description: string;
837
+ oneOf: {
838
+ $ref: string;
839
+ }[];
840
+ };
841
+ argsMapping: {
842
+ title: string;
843
+ description: string;
844
+ oneOf: {
845
+ $ref: string;
846
+ }[];
847
+ };
848
+ searchParamsMapping: {
849
+ title: string;
850
+ description: string;
851
+ $ref: string;
852
+ };
853
+ resultsMapping: {
854
+ title: string;
855
+ description: string;
856
+ oneOf: {
857
+ $ref: string;
858
+ }[];
859
+ };
860
+ utilResolver: {
861
+ title: string;
862
+ type: string;
863
+ properties: {
864
+ if: {
865
+ type: string;
866
+ };
867
+ id: {
868
+ type: string;
869
+ pattern: string;
870
+ };
871
+ name: {
872
+ title: string;
873
+ type: string;
874
+ description: string;
875
+ enum: string[];
876
+ };
877
+ service: {
878
+ type: string;
879
+ description: string;
880
+ };
881
+ options: {
882
+ title: string;
883
+ type: string;
884
+ additionalProperties: boolean;
885
+ };
886
+ args: {
887
+ description: string;
888
+ $ref: string;
889
+ };
890
+ results: {
891
+ description: string;
892
+ $ref: string;
893
+ };
894
+ argsMapping: {
895
+ $ref: string;
896
+ };
897
+ resultsMapping: {
898
+ $ref: string;
899
+ };
900
+ };
901
+ required: string[];
902
+ additionalProperties: boolean;
903
+ };
904
+ takeshapeResolver: {
905
+ title: string;
906
+ type: string;
907
+ properties: {
908
+ if: {
909
+ type: string;
910
+ };
911
+ id: {
912
+ type: string;
913
+ pattern: string;
914
+ };
915
+ name: {
916
+ title: string;
917
+ type: string;
918
+ description: string;
919
+ enum: string[];
920
+ };
921
+ service: {
922
+ type: string;
923
+ description: string;
924
+ enum: string[];
925
+ };
926
+ options: {
927
+ title: string;
928
+ type: string;
929
+ additionalProperties: boolean;
930
+ };
931
+ argsMapping: {
932
+ $ref: string;
933
+ };
934
+ resultsMapping: {
935
+ $ref: string;
936
+ };
937
+ shapeName: {
938
+ description: string;
939
+ type: string;
940
+ minLength: number;
941
+ };
942
+ args: {
943
+ description: string;
944
+ $ref: string;
945
+ };
946
+ results: {
947
+ description: string;
948
+ $ref: string;
949
+ };
950
+ };
951
+ required: string[];
952
+ additionalProperties: boolean;
953
+ };
954
+ internalTakeshapeResolver: {
955
+ title: string;
956
+ type: string;
957
+ properties: {
958
+ if: {
959
+ type: string;
960
+ };
961
+ id: {
962
+ type: string;
963
+ pattern: string;
964
+ };
965
+ name: {
966
+ title: string;
967
+ type: string;
968
+ description: string;
969
+ enum: string[];
970
+ };
971
+ service: {
972
+ type: string;
973
+ description: string;
974
+ enum: string[];
975
+ };
976
+ options: {
977
+ title: string;
978
+ type: string;
979
+ additionalProperties: boolean;
980
+ };
981
+ shapeName: {
982
+ description: string;
983
+ type: string;
984
+ minLength: number;
985
+ };
986
+ args: {
987
+ description: string;
988
+ $ref: string;
989
+ };
990
+ results: {
991
+ description: string;
992
+ $ref: string;
993
+ };
994
+ argsMapping: {
995
+ $ref: string;
996
+ };
997
+ resultsMapping: {
998
+ $ref: string;
999
+ };
1000
+ };
1001
+ required: string[];
1002
+ additionalProperties: boolean;
1003
+ };
1004
+ graphqlResolver: {
1005
+ title: string;
1006
+ type: string;
1007
+ properties: {
1008
+ if: {
1009
+ type: string;
1010
+ };
1011
+ id: {
1012
+ type: string;
1013
+ pattern: string;
1014
+ };
1015
+ name: {
1016
+ title: string;
1017
+ type: string;
1018
+ description: string;
1019
+ enum: string[];
1020
+ };
1021
+ service: {
1022
+ type: string;
1023
+ description: string;
1024
+ };
1025
+ argsMapping: {
1026
+ $ref: string;
1027
+ };
1028
+ resultsMapping: {
1029
+ $ref: string;
1030
+ };
1031
+ options: {
1032
+ title: string;
1033
+ type: string;
1034
+ properties: {
1035
+ selectionSet: {
1036
+ type: string;
1037
+ };
1038
+ unboxParentSelectionSet: {
1039
+ type: string;
1040
+ };
1041
+ ignoreErrors: {
1042
+ type: string;
1043
+ };
1044
+ skipWhenMissingArgs: {
1045
+ type: string;
1046
+ };
1047
+ ttl: {
1048
+ type: string;
1049
+ };
1050
+ timeout: {
1051
+ type: string;
1052
+ };
1053
+ retry: {
1054
+ oneOf: {
1055
+ type: string;
1056
+ }[];
1057
+ };
1058
+ };
1059
+ additionalProperties: boolean;
1060
+ };
1061
+ fieldName: {
1062
+ description: string;
1063
+ type: string;
1064
+ };
1065
+ headers: {
1066
+ description: string;
1067
+ $ref: string;
1068
+ };
1069
+ searchParams: {
1070
+ description: string;
1071
+ $ref: string;
1072
+ };
1073
+ args: {
1074
+ description: string;
1075
+ $ref: string;
1076
+ };
1077
+ results: {
1078
+ description: string;
1079
+ $ref: string;
1080
+ };
1081
+ };
1082
+ required: string[];
1083
+ additionalProperties: boolean;
1084
+ };
1085
+ restResolver: {
1086
+ title: string;
1087
+ type: string;
1088
+ properties: {
1089
+ if: {
1090
+ type: string;
1091
+ };
1092
+ id: {
1093
+ type: string;
1094
+ pattern: string;
1095
+ };
1096
+ name: {
1097
+ title: string;
1098
+ type: string;
1099
+ description: string;
1100
+ enum: string[];
1101
+ };
1102
+ service: {
1103
+ type: string;
1104
+ description: string;
1105
+ };
1106
+ argsMapping: {
1107
+ $ref: string;
1108
+ };
1109
+ searchParamsMapping: {
1110
+ $ref: string;
1111
+ };
1112
+ resultsMapping: {
1113
+ $ref: string;
1114
+ };
1115
+ options: {
1116
+ title: string;
1117
+ type: string;
1118
+ properties: {
1119
+ trailingSlash: {
1120
+ type: string;
1121
+ };
1122
+ ttl: {
1123
+ type: string;
1124
+ };
1125
+ timeout: {
1126
+ type: string;
1127
+ };
1128
+ retry: {
1129
+ oneOf: {
1130
+ type: string;
1131
+ }[];
1132
+ };
1133
+ };
1134
+ additionalProperties: boolean;
1135
+ };
1136
+ body: {
1137
+ description: string;
1138
+ $ref: string;
1139
+ };
1140
+ form: {
1141
+ description: string;
1142
+ $ref: string;
1143
+ };
1144
+ headers: {
1145
+ description: string;
1146
+ $ref: string;
1147
+ };
1148
+ json: {
1149
+ description: string;
1150
+ $ref: string;
1151
+ };
1152
+ path: {
1153
+ description: string;
1154
+ oneOf: ({
1155
+ $ref: string;
1156
+ type?: undefined;
1157
+ } | {
1158
+ type: string;
1159
+ $ref?: undefined;
1160
+ })[];
1161
+ };
1162
+ searchParams: {
1163
+ description: string;
1164
+ $ref: string;
1165
+ };
1166
+ args: {
1167
+ description: string;
1168
+ $ref: string;
1169
+ };
1170
+ results: {
1171
+ description: string;
1172
+ $ref: string;
1173
+ };
1174
+ };
1175
+ required: string[];
1176
+ additionalProperties: boolean;
1177
+ };
1178
+ awsLambdaResolver: {
1179
+ title: string;
1180
+ type: string;
1181
+ properties: {
1182
+ if: {
1183
+ type: string;
1184
+ };
1185
+ id: {
1186
+ type: string;
1187
+ pattern: string;
1188
+ };
1189
+ name: {
1190
+ title: string;
1191
+ type: string;
1192
+ description: string;
1193
+ enum: string[];
1194
+ };
1195
+ service: {
1196
+ type: string;
1197
+ description: string;
1198
+ };
1199
+ options: {
1200
+ title: string;
1201
+ type: string;
1202
+ additionalProperties: boolean;
1203
+ };
1204
+ payload: {
1205
+ description: string;
1206
+ $ref: string;
1207
+ };
1208
+ functionName: {
1209
+ description: string;
1210
+ oneOf: ({
1211
+ type: string;
1212
+ $ref?: undefined;
1213
+ } | {
1214
+ $ref: string;
1215
+ type?: undefined;
1216
+ })[];
1217
+ };
1218
+ clientContext: {
1219
+ description: string;
1220
+ $ref: string;
1221
+ };
1222
+ args: {
1223
+ description: string;
1224
+ $ref: string;
1225
+ };
1226
+ results: {
1227
+ description: string;
1228
+ $ref: string;
1229
+ };
1230
+ argsMapping: {
1231
+ $ref: string;
1232
+ };
1233
+ searchParamsMapping: {
1234
+ description: string;
1235
+ $ref: string;
1236
+ };
1237
+ resultsMapping: {
1238
+ $ref: string;
1239
+ };
1240
+ };
1241
+ required: string[];
1242
+ additionalProperties: boolean;
1243
+ };
1244
+ composeResolver: {
1245
+ title: string;
1246
+ type: string;
1247
+ properties: {
1248
+ compose: {
1249
+ type: string;
1250
+ items: {
1251
+ $ref: string;
1252
+ };
1253
+ };
1254
+ resultsMapping: {
1255
+ oneOf: {
1256
+ $ref: string;
1257
+ }[];
1258
+ };
1259
+ results: {
1260
+ description: string;
1261
+ $ref: string;
1262
+ };
1263
+ };
1264
+ required: string[];
1265
+ additionalProperties: boolean;
1266
+ };
1267
+ resolver: {
1268
+ title: string;
1269
+ oneOf: {
1270
+ $ref: string;
1271
+ }[];
1272
+ };
1273
+ ref: {
1274
+ title: string;
1275
+ type: string;
1276
+ };
1277
+ query: {
1278
+ title: string;
1279
+ type: string;
1280
+ properties: {
1281
+ args: {
1282
+ description: string;
1283
+ $ref: string;
1284
+ };
1285
+ resolver: {
1286
+ description: string;
1287
+ $ref: string;
1288
+ };
1289
+ shape: {
1290
+ $ref: string;
1291
+ description: string;
1292
+ };
1293
+ description: {
1294
+ type: string;
1295
+ description: string;
1296
+ };
1297
+ };
1298
+ required: string[];
1299
+ };
1300
+ propertySchema: {
1301
+ title: string;
1302
+ type: string;
1303
+ properties: {
1304
+ $ref: {
1305
+ type: string;
1306
+ format: string;
1307
+ };
1308
+ title: {
1309
+ type: string;
1310
+ };
1311
+ description: {
1312
+ type: string;
1313
+ };
1314
+ default: {};
1315
+ readOnly: {
1316
+ type: string;
1317
+ default: boolean;
1318
+ };
1319
+ multipleOf: {
1320
+ type: string;
1321
+ exclusiveMinimum: number;
1322
+ };
1323
+ maximum: {
1324
+ type: string;
1325
+ };
1326
+ exclusiveMaximum: {
1327
+ type: string;
1328
+ };
1329
+ minimum: {
1330
+ type: string;
1331
+ };
1332
+ exclusiveMinimum: {
1333
+ type: string;
1334
+ };
1335
+ maxLength: {
1336
+ $ref: string;
1337
+ };
1338
+ minLength: {
1339
+ $ref: string;
1340
+ };
1341
+ pattern: {
1342
+ type: string;
1343
+ format: string;
1344
+ };
1345
+ additionalItems: {
1346
+ $ref: string;
1347
+ };
1348
+ items: {
1349
+ $ref: string;
1350
+ };
1351
+ maxItems: {
1352
+ $ref: string;
1353
+ };
1354
+ minItems: {
1355
+ $ref: string;
1356
+ };
1357
+ uniqueItems: {
1358
+ type: string;
1359
+ default: boolean;
1360
+ };
1361
+ contains: {
1362
+ $ref: string;
1363
+ };
1364
+ maxProperties: {
1365
+ $ref: string;
1366
+ };
1367
+ minProperties: {
1368
+ $ref: string;
1369
+ };
1370
+ required: {
1371
+ $ref: string;
1372
+ };
1373
+ additionalProperties: {
1374
+ oneOf: ({
1375
+ $ref: string;
1376
+ enum?: undefined;
1377
+ } | {
1378
+ enum: boolean[];
1379
+ $ref?: undefined;
1380
+ })[];
1381
+ };
1382
+ definitions: {
1383
+ type: string;
1384
+ additionalProperties: {
1385
+ $ref: string;
1386
+ };
1387
+ default: {};
1388
+ };
1389
+ properties: {
1390
+ type: string;
1391
+ additionalProperties: {
1392
+ $ref: string;
1393
+ };
1394
+ default: {};
1395
+ };
1396
+ const: {};
1397
+ enum: {
1398
+ type: string;
1399
+ minItems: number;
1400
+ uniqueItems: boolean;
1401
+ };
1402
+ type: {
1403
+ anyOf: ({
1404
+ $ref: string;
1405
+ type?: undefined;
1406
+ items?: undefined;
1407
+ minItems?: undefined;
1408
+ uniqueItems?: undefined;
1409
+ } | {
1410
+ type: string;
1411
+ items: {
1412
+ $ref: string;
1413
+ };
1414
+ minItems: number;
1415
+ uniqueItems: boolean;
1416
+ $ref?: undefined;
1417
+ })[];
1418
+ };
1419
+ format: {
1420
+ type: string;
1421
+ };
1422
+ contentMediaType: {
1423
+ type: string;
1424
+ };
1425
+ contentEncoding: {
1426
+ type: string;
1427
+ };
1428
+ allOf: {
1429
+ $ref: string;
1430
+ };
1431
+ oneOf: {
1432
+ $ref: string;
1433
+ };
1434
+ extends: {
1435
+ $ref: string;
1436
+ };
1437
+ "@relationship": {
1438
+ $ref: string;
1439
+ };
1440
+ "@backreference": {
1441
+ $ref: string;
1442
+ };
1443
+ "@input": {
1444
+ $ref: string;
1445
+ };
1446
+ "@syncLocaleStructure": {
1447
+ type: string;
1448
+ };
1449
+ "@sensitive": {
1450
+ type: string;
1451
+ };
1452
+ "@draftjs": {
1453
+ type: string;
1454
+ };
1455
+ "@l10n": {
1456
+ type: string;
1457
+ };
1458
+ "@key": {
1459
+ type: string;
1460
+ pattern: string;
1461
+ };
1462
+ "@workflow": {
1463
+ type: string;
1464
+ };
1465
+ "@mapping": {
1466
+ $ref: string;
1467
+ };
1468
+ "@tag": {
1469
+ type: string;
1470
+ };
1471
+ "@tags": {
1472
+ type: string;
1473
+ items: {
1474
+ type: string;
1475
+ };
1476
+ };
1477
+ "@deprecationReason": {
1478
+ type: string;
1479
+ };
1480
+ "@args": {
1481
+ $ref: string;
1482
+ };
1483
+ "@resolver": {
1484
+ $ref: string;
1485
+ };
1486
+ "@ref": {
1487
+ $ref: string;
1488
+ };
1489
+ "@derivedFrom": {
1490
+ type: string;
1491
+ };
1492
+ };
1493
+ additionalProperties: boolean;
1494
+ };
1495
+ shape: {
1496
+ title: string;
1497
+ description: string;
1498
+ type: string;
1499
+ properties: {
1500
+ name: {
1501
+ type: string;
1502
+ pattern: string;
1503
+ description: string;
1504
+ };
1505
+ id: {
1506
+ type: string;
1507
+ pattern: string;
1508
+ description: string;
1509
+ };
1510
+ title: {
1511
+ type: string;
1512
+ description: string;
1513
+ };
1514
+ description: {
1515
+ type: string;
1516
+ };
1517
+ model: {
1518
+ description: string;
1519
+ type: string;
1520
+ properties: {
1521
+ type: {
1522
+ title: string;
1523
+ type: string;
1524
+ enum: string[];
1525
+ };
1526
+ };
1527
+ required: string[];
1528
+ additionalProperties: boolean;
1529
+ };
1530
+ workflow: {
1531
+ type: string;
1532
+ };
1533
+ schema: {
1534
+ $ref: string;
1535
+ };
1536
+ };
1537
+ required: string[];
1538
+ additionalProperties: boolean;
1539
+ };
1540
+ shapeWithObjectSchema: {
1541
+ title: string;
1542
+ type: string;
1543
+ allOf: ({
1544
+ $ref: string;
1545
+ type?: undefined;
1546
+ properties?: undefined;
1547
+ required?: undefined;
1548
+ additionalProperties?: undefined;
1549
+ } | {
1550
+ type: string;
1551
+ properties: {
1552
+ schema: {
1553
+ $ref: string;
1554
+ };
1555
+ };
1556
+ required: string[];
1557
+ additionalProperties: boolean;
1558
+ $ref?: undefined;
1559
+ })[];
1560
+ };
1561
+ shapeMap: {
1562
+ title: string;
1563
+ type: string;
1564
+ patternProperties: {
1565
+ "[0-9A-Za-z_-]+": {
1566
+ $ref: string;
1567
+ };
1568
+ };
1569
+ };
1570
+ formMap: {
1571
+ title: string;
1572
+ type: string;
1573
+ patternProperties: {
1574
+ "[0-9A-Za-z_-]+": {
1575
+ $ref: string;
1576
+ };
1577
+ };
1578
+ };
1579
+ indexedShapeMap: {
1580
+ title: string;
1581
+ type: string;
1582
+ patternProperties: {
1583
+ "[0-9A-Za-z_-]+": {
1584
+ $ref: string;
1585
+ };
1586
+ };
1587
+ };
1588
+ indexedShapeConfig: {
1589
+ title: string;
1590
+ type: string;
1591
+ properties: {
1592
+ idField: {
1593
+ type: string;
1594
+ };
1595
+ searchSummaryField: {
1596
+ type: string;
1597
+ };
1598
+ queries: {
1599
+ $ref: string;
1600
+ };
1601
+ triggers: {
1602
+ type: string;
1603
+ items: {
1604
+ $ref: string;
1605
+ };
1606
+ };
1607
+ };
1608
+ additionalProperties: boolean;
1609
+ required: string[];
1610
+ };
1611
+ indexedShapeQueriesConfig: {
1612
+ title: string;
1613
+ type: string;
1614
+ properties: {
1615
+ list: {
1616
+ $ref: string;
1617
+ };
1618
+ get: {
1619
+ $ref: string;
1620
+ };
1621
+ };
1622
+ additionalProperties: boolean;
1623
+ };
1624
+ indexedShapeListQueryConfig: {
1625
+ title: string;
1626
+ type: string;
1627
+ properties: {
1628
+ name: {
1629
+ type: string;
1630
+ };
1631
+ ignoreFields: {
1632
+ type: string;
1633
+ items: {
1634
+ type: string;
1635
+ };
1636
+ };
1637
+ objectDepthLimit: {
1638
+ type: string;
1639
+ };
1640
+ pagination: {
1641
+ $ref: string;
1642
+ };
1643
+ };
1644
+ additionalProperties: boolean;
1645
+ required: string[];
1646
+ };
1647
+ indexedShapeGetQueryConfig: {
1648
+ title: string;
1649
+ type: string;
1650
+ properties: {
1651
+ name: {
1652
+ type: string;
1653
+ };
1654
+ ignoreFields: {
1655
+ type: string;
1656
+ items: {
1657
+ type: string;
1658
+ };
1659
+ };
1660
+ objectDepthLimit: {
1661
+ type: string;
1662
+ };
1663
+ };
1664
+ additionalProperties: boolean;
1665
+ required: string[];
1666
+ };
1667
+ paginationConfig: {
1668
+ title: string;
1669
+ oneOf: {
1670
+ $ref: string;
1671
+ }[];
1672
+ };
1673
+ paginationCursorConfig: {
1674
+ title: string;
1675
+ type: string;
1676
+ properties: {
1677
+ type: {
1678
+ type: string;
1679
+ enum: string[];
1680
+ };
1681
+ cursorArg: {
1682
+ type: string;
1683
+ };
1684
+ cursorPath: {
1685
+ type: string;
1686
+ };
1687
+ pageSize: {
1688
+ type: string;
1689
+ };
1690
+ pageSizeArg: {
1691
+ type: string;
1692
+ };
1693
+ hasMorePath: {
1694
+ type: string;
1695
+ };
1696
+ itemsToIndexPath: {
1697
+ type: string;
1698
+ };
1699
+ };
1700
+ additionalProperties: boolean;
1701
+ required: string[];
1702
+ };
1703
+ paginationPageConfig: {
1704
+ title: string;
1705
+ type: string;
1706
+ properties: {
1707
+ type: {
1708
+ type: string;
1709
+ enum: string[];
1710
+ };
1711
+ pageArg: {
1712
+ type: string;
1713
+ };
1714
+ itemsToIndexPath: {
1715
+ type: string;
1716
+ };
1717
+ pageTotalPath: {
1718
+ type: string;
1719
+ };
1720
+ };
1721
+ additionalProperties: boolean;
1722
+ required: string[];
1723
+ };
1724
+ paginationOffsetConfig: {
1725
+ title: string;
1726
+ type: string;
1727
+ properties: {
1728
+ type: {
1729
+ type: string;
1730
+ enum: string[];
1731
+ };
1732
+ offsetArg: {
1733
+ type: string;
1734
+ };
1735
+ itemsToIndexPath: {
1736
+ type: string;
1737
+ };
1738
+ itemTotalPath: {
1739
+ type: string;
1740
+ };
1741
+ };
1742
+ additionalProperties: boolean;
1743
+ required: string[];
1744
+ };
1745
+ indexedShapeTriggersConfig: {
1746
+ title: string;
1747
+ oneOf: {
1748
+ $ref: string;
1749
+ }[];
1750
+ };
1751
+ indexedShapeScheduleTriggerConfig: {
1752
+ title: string;
1753
+ type: string;
1754
+ properties: {
1755
+ type: {
1756
+ type: string;
1757
+ enum: string[];
1758
+ };
1759
+ query: {
1760
+ enum: string[];
1761
+ };
1762
+ interval: {
1763
+ type: string;
1764
+ };
1765
+ };
1766
+ additionalProperties: boolean;
1767
+ required: string[];
1768
+ };
1769
+ indexedShapeWebhookTriggerConfig: {
1770
+ title: string;
1771
+ type: string;
1772
+ properties: {
1773
+ type: {
1774
+ type: string;
1775
+ enum: string[];
1776
+ };
1777
+ query: {
1778
+ enum: string[];
1779
+ };
1780
+ service: {
1781
+ type: string;
1782
+ };
1783
+ events: {
1784
+ type: string;
1785
+ items: {
1786
+ type: string;
1787
+ };
1788
+ };
1789
+ };
1790
+ additionalProperties: boolean;
1791
+ required: string[];
1792
+ };
1793
+ formScalarConfig: {
1794
+ title: string;
1795
+ type: string;
1796
+ properties: {
1797
+ widget: {
1798
+ type: string;
1799
+ };
1800
+ };
1801
+ additionalProperties: boolean;
1802
+ required: string[];
1803
+ };
1804
+ formObjectConfig: {
1805
+ title: string;
1806
+ type: string;
1807
+ properties: {
1808
+ widget: {
1809
+ type: string;
1810
+ };
1811
+ order: {
1812
+ type: string;
1813
+ items: {
1814
+ type: string;
1815
+ };
1816
+ };
1817
+ properties: {
1818
+ patternProperties: {
1819
+ "[0-9A-Za-z_-]+": {
1820
+ $ref: string;
1821
+ };
1822
+ };
1823
+ };
1824
+ };
1825
+ additionalProperties: boolean;
1826
+ };
1827
+ formArrayConfig: {
1828
+ title: string;
1829
+ type: string;
1830
+ properties: {
1831
+ widget: {
1832
+ type: string;
1833
+ };
1834
+ items: {
1835
+ $ref: string;
1836
+ };
1837
+ };
1838
+ additionalProperties: boolean;
1839
+ required: string[];
1840
+ };
1841
+ customAuthentication: {
1842
+ title: string;
1843
+ description: string;
1844
+ type: string;
1845
+ properties: {
1846
+ type: {
1847
+ type: string;
1848
+ enum: string[];
1849
+ };
1850
+ };
1851
+ additionalProperties: boolean;
1852
+ required: string[];
1853
+ };
1854
+ searchParamsAuthentication: {
1855
+ title: string;
1856
+ type: string;
1857
+ properties: {
1858
+ type: {
1859
+ type: string;
1860
+ enum: string[];
1861
+ };
1862
+ params: {
1863
+ type: string;
1864
+ items: {
1865
+ properties: {
1866
+ name: {
1867
+ type: string;
1868
+ };
1869
+ value: {
1870
+ type: string;
1871
+ };
1872
+ };
1873
+ required: string[];
1874
+ additionalProperties: boolean;
1875
+ };
1876
+ };
1877
+ };
1878
+ additionalProperties: boolean;
1879
+ required: string[];
1880
+ };
1881
+ bearerAuthentication: {
1882
+ title: string;
1883
+ type: string;
1884
+ properties: {
1885
+ type: {
1886
+ type: string;
1887
+ enum: string[];
1888
+ };
1889
+ token: {
1890
+ type: string;
1891
+ };
1892
+ prefix: {
1893
+ type: string;
1894
+ };
1895
+ header: {
1896
+ type: string;
1897
+ };
1898
+ };
1899
+ additionalProperties: boolean;
1900
+ required: string[];
1901
+ };
1902
+ oauth2BearerAuthentication: {
1903
+ title: string;
1904
+ type: string;
1905
+ properties: {
1906
+ type: {
1907
+ type: string;
1908
+ enum: string[];
1909
+ };
1910
+ token: {
1911
+ type: string;
1912
+ };
1913
+ prefix: {
1914
+ type: string;
1915
+ };
1916
+ header: {
1917
+ type: string;
1918
+ };
1919
+ scope: {
1920
+ type: string;
1921
+ };
1922
+ expiresAt: {
1923
+ type: string;
1924
+ };
1925
+ };
1926
+ additionalProperties: boolean;
1927
+ required: string[];
1928
+ };
1929
+ basicAuthentication: {
1930
+ title: string;
1931
+ type: string;
1932
+ properties: {
1933
+ type: {
1934
+ type: string;
1935
+ enum: string[];
1936
+ };
1937
+ username: {
1938
+ type: string;
1939
+ };
1940
+ password: {
1941
+ type: string;
1942
+ };
1943
+ useIso8859: {
1944
+ type: string;
1945
+ };
1946
+ };
1947
+ additionalProperties: boolean;
1948
+ required: string[];
1949
+ };
1950
+ oauth2Authentication: {
1951
+ title: string;
1952
+ type: string;
1953
+ properties: {
1954
+ type: {
1955
+ type: string;
1956
+ enum: string[];
1957
+ };
1958
+ grantType: {
1959
+ type: string;
1960
+ enum: string[];
1961
+ };
1962
+ authorizationUrl: {
1963
+ type: string;
1964
+ };
1965
+ accessTokenUrl: {
1966
+ type: string;
1967
+ };
1968
+ clientId: {
1969
+ type: string;
1970
+ };
1971
+ clientSecret: {
1972
+ type: string;
1973
+ };
1974
+ scope: {
1975
+ type: string;
1976
+ };
1977
+ usePkce: {
1978
+ type: string;
1979
+ };
1980
+ redirectUrl: {
1981
+ type: string;
1982
+ };
1983
+ headerPrefix: {
1984
+ type: string;
1985
+ };
1986
+ audience: {
1987
+ type: string;
1988
+ };
1989
+ resource: {
1990
+ type: string;
1991
+ };
1992
+ };
1993
+ additionalProperties: boolean;
1994
+ required: string[];
1995
+ };
1996
+ awsAuthentication: {
1997
+ title: string;
1998
+ type: string;
1999
+ properties: {
2000
+ type: {
2001
+ type: string;
2002
+ enum: string[];
2003
+ };
2004
+ awsAccessKeyId: {
2005
+ type: string;
2006
+ };
2007
+ awsSecretAccessKey: {
2008
+ type: string;
2009
+ };
2010
+ };
2011
+ additionalProperties: boolean;
2012
+ required: string[];
2013
+ };
2014
+ serviceAuthentication: {
2015
+ title: string;
2016
+ oneOf: {
2017
+ $ref: string;
2018
+ }[];
2019
+ };
2020
+ serviceType: {
2021
+ title: string;
2022
+ description: string;
2023
+ type: string;
2024
+ enum: string[];
2025
+ };
2026
+ serviceConfig: {
2027
+ title: string;
2028
+ type: string;
2029
+ properties: {
2030
+ id: {
2031
+ type: string;
2032
+ description: string;
2033
+ };
2034
+ title: {
2035
+ type: string;
2036
+ description: string;
2037
+ };
2038
+ provider: {
2039
+ description: string;
2040
+ type: string;
2041
+ };
2042
+ namespace: {
2043
+ type: string;
2044
+ description: string;
2045
+ };
2046
+ serviceType: {
2047
+ $ref: string;
2048
+ };
2049
+ authenticationType: {
2050
+ type: string;
2051
+ enum: string[];
2052
+ };
2053
+ authentication: {
2054
+ $ref: string;
2055
+ };
2056
+ webhookId: {
2057
+ type: string;
2058
+ };
2059
+ options: {
2060
+ type: string;
2061
+ description: string;
2062
+ };
2063
+ };
2064
+ required: string[];
2065
+ additionalProperties: boolean;
2066
+ };
2067
+ storedServiceConfig: {
2068
+ title: string;
2069
+ type: string;
2070
+ properties: {
2071
+ id: {
2072
+ type: string;
2073
+ description: string;
2074
+ };
2075
+ title: {
2076
+ type: string;
2077
+ description: string;
2078
+ };
2079
+ provider: {
2080
+ type: string;
2081
+ description: string;
2082
+ };
2083
+ namespace: {
2084
+ type: string;
2085
+ description: string;
2086
+ };
2087
+ serviceType: {
2088
+ $ref: string;
2089
+ };
2090
+ authenticationType: {
2091
+ type: string;
2092
+ enum: string[];
2093
+ };
2094
+ authentication: {
2095
+ type: string;
2096
+ };
2097
+ webhookId: {
2098
+ type: string;
2099
+ };
2100
+ options: {
2101
+ type: string;
2102
+ description: string;
2103
+ };
2104
+ };
2105
+ required: string[];
2106
+ additionalProperties: boolean;
2107
+ };
2108
+ anyServiceConfig: {
2109
+ title: string;
2110
+ oneOf: {
2111
+ $ref: string;
2112
+ }[];
2113
+ };
2114
+ storedServiceMap: {
2115
+ title: string;
2116
+ type: string;
2117
+ patternProperties: {
2118
+ "[0-9A-Za-z_-]+": {
2119
+ $ref: string;
2120
+ };
2121
+ };
2122
+ };
2123
+ workflowStep: {
2124
+ title: string;
2125
+ type: string;
2126
+ properties: {
2127
+ name: {
2128
+ type: string;
2129
+ title: string;
2130
+ pattern: string;
2131
+ description: string;
2132
+ };
2133
+ title: {
2134
+ title: string;
2135
+ type: string;
2136
+ description: string;
2137
+ };
2138
+ description: {
2139
+ title: string;
2140
+ type: string;
2141
+ };
2142
+ color: {
2143
+ title: string;
2144
+ type: string;
2145
+ description: string;
2146
+ };
2147
+ live: {
2148
+ title: string;
2149
+ type: string;
2150
+ description: string;
2151
+ };
2152
+ key: {
2153
+ title: string;
2154
+ type: string;
2155
+ description: string;
2156
+ };
2157
+ };
2158
+ required: string[];
2159
+ additionalProperties: boolean;
2160
+ };
2161
+ workflow: {
2162
+ title: string;
2163
+ type: string;
2164
+ properties: {
2165
+ name: {
2166
+ type: string;
2167
+ pattern: string;
2168
+ description: string;
2169
+ };
2170
+ title: {
2171
+ type: string;
2172
+ title: string;
2173
+ minLength: number;
2174
+ description: string;
2175
+ };
2176
+ steps: {
2177
+ type: string;
2178
+ title: string;
2179
+ items: {
2180
+ $ref: string;
2181
+ };
2182
+ minItems: number;
2183
+ };
2184
+ };
2185
+ required: string[];
2186
+ };
2187
+ workflowMap: {
2188
+ title: string;
2189
+ type: string;
2190
+ patternProperties: {
2191
+ "[0-9A-Za-z_-]+": {
2192
+ $ref: string;
2193
+ };
2194
+ };
2195
+ };
2196
+ formConfig: {
2197
+ title: string;
2198
+ type: string;
2199
+ };
2200
+ formsConfig: {
2201
+ title: string;
2202
+ type: string;
2203
+ properties: {
2204
+ default: {
2205
+ $ref: string;
2206
+ };
2207
+ };
2208
+ patternProperties: {
2209
+ "[0-9A-Za-z_-]+": {
2210
+ $ref: string;
2211
+ };
2212
+ };
2213
+ required: string[];
2214
+ };
2215
+ };
2216
+ properties: {
2217
+ $schema: {
2218
+ type: string;
2219
+ };
2220
+ version: {
2221
+ type: string;
2222
+ description: string;
2223
+ };
2224
+ apiVersion: {
2225
+ type: string;
2226
+ description: string;
2227
+ };
2228
+ schemaVersion: {
2229
+ type: string;
2230
+ enum: string[];
2231
+ description: string;
2232
+ };
2233
+ projectId: {
2234
+ type: string;
2235
+ description: string;
2236
+ };
2237
+ author: {
2238
+ type: string;
2239
+ description: string;
2240
+ };
2241
+ created: {
2242
+ type: string;
2243
+ format: string;
2244
+ description: string;
2245
+ };
2246
+ updated: {
2247
+ type: string;
2248
+ format: string;
2249
+ description: string;
2250
+ };
2251
+ deactivated: {
2252
+ type: string;
2253
+ };
2254
+ defaultLocale: {
2255
+ type: string;
2256
+ minLength: number;
2257
+ pattern: string;
2258
+ description: string;
2259
+ };
2260
+ locales: {
2261
+ type: string;
2262
+ minItems: number;
2263
+ items: {
2264
+ type: string;
2265
+ minLength: number;
2266
+ pattern: string;
2267
+ };
2268
+ };
2269
+ queries: {
2270
+ $ref: string;
2271
+ description: string;
2272
+ };
2273
+ mutations: {
2274
+ $ref: string;
2275
+ description: string;
2276
+ };
2277
+ shapes: {
2278
+ $ref: string;
2279
+ description: string;
2280
+ };
2281
+ indexedShapes: {
2282
+ $ref: string;
2283
+ description: string;
2284
+ };
2285
+ forms: {
2286
+ $ref: string;
2287
+ description: string;
2288
+ };
2289
+ workflows: {
2290
+ $ref: string;
2291
+ description: string;
2292
+ };
2293
+ dataKey: {
2294
+ type: string;
2295
+ };
2296
+ services: {
2297
+ $ref: string;
2298
+ description: string;
2299
+ };
2300
+ };
2301
+ additionalProperties: boolean;
2302
+ required: string[];
2303
+ } | {
5
2304
  $schema: string;
6
2305
  $id: string;
7
2306
  title: string;