@takeshape/schema 8.67.0 → 8.68.7

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 (95) hide show
  1. package/es/content-schema-transform.js +2 -2
  2. package/es/layers/layers.js +2 -2
  3. package/es/layers/type-utils.js +4 -4
  4. package/es/migration/index.js +6 -1
  5. package/es/migration/to/v3.15.0.js +10 -0
  6. package/es/project-schema/index.js +1 -0
  7. package/es/project-schema/v3.15.0.js +1 -0
  8. package/es/refs.js +78 -1
  9. package/es/rewrite.js +4 -5
  10. package/es/schema-util.js +32 -118
  11. package/es/schemas/index.js +4 -3
  12. package/es/schemas/index.ts +4 -2
  13. package/es/schemas/project-schema/v3.15.0.json +2359 -0
  14. package/es/schemas/project-schema.json +1 -1
  15. package/es/template-shapes/templates.js +4 -11
  16. package/es/types/utils.js +12 -8
  17. package/es/unions.js +5 -5
  18. package/es/util/detect-cycles.js +2 -2
  19. package/es/util/index.js +2 -1
  20. package/es/util/merge.js +36 -0
  21. package/es/validate.js +2 -10
  22. package/examples/latest/betzino.json +1 -1
  23. package/examples/latest/blog-schema.json +1 -1
  24. package/examples/latest/brewery-schema.json +1 -1
  25. package/examples/latest/complex-project-schema.json +1 -1
  26. package/examples/latest/fabric-ecommerce.json +1 -1
  27. package/examples/latest/frank-and-fred-schema.json +1 -1
  28. package/examples/latest/massive-schema.json +1 -1
  29. package/examples/latest/mill-components-schema.json +1 -1
  30. package/examples/latest/pet-oneof-array.json +1 -1
  31. package/examples/latest/post-schema.json +1 -1
  32. package/examples/latest/pruned-shopify-product-schema.json +1 -1
  33. package/examples/latest/real-world-schema.json +1 -1
  34. package/examples/latest/recursive-repeater-schema.json +1 -1
  35. package/examples/latest/recursive-schema.json +1 -1
  36. package/examples/latest/rick-and-morty-ast.json +1 -1
  37. package/examples/latest/rick-and-morty-graphql.json +1 -1
  38. package/examples/latest/rick-and-morty-rest.json +1 -1
  39. package/examples/latest/schema-with-repeater-draftjs.json +1 -1
  40. package/examples/latest/shape-books-v3_2_0.json +1 -1
  41. package/examples/latest/shape-books.json +1 -1
  42. package/examples/latest/shopify-lookbook.json +1 -1
  43. package/examples/latest/shopify-store-with-widget.json +1 -1
  44. package/examples/latest/stripe-starter-resolved.json +1 -1
  45. package/examples/latest/user-schema-no-required.json +1 -1
  46. package/examples/latest/user-schema-with-defaults.json +1 -1
  47. package/lib/content-schema-transform.js +6 -6
  48. package/lib/layers/layers.js +1 -1
  49. package/lib/layers/type-utils.js +3 -3
  50. package/lib/migration/index.d.ts.map +1 -1
  51. package/lib/migration/index.js +6 -0
  52. package/lib/migration/to/v3.15.0.d.ts +4 -0
  53. package/lib/migration/to/v3.15.0.d.ts.map +1 -0
  54. package/lib/migration/to/v3.15.0.js +18 -0
  55. package/lib/project-schema/index.d.ts +3 -1
  56. package/lib/project-schema/index.d.ts.map +1 -1
  57. package/lib/project-schema/index.js +33 -20
  58. package/lib/project-schema/latest.d.ts +45 -23
  59. package/lib/project-schema/latest.d.ts.map +1 -1
  60. package/lib/project-schema/v3.15.0.d.ts +1459 -0
  61. package/lib/project-schema/v3.15.0.d.ts.map +1 -0
  62. package/lib/project-schema/v3.15.0.js +5 -0
  63. package/lib/refs.d.ts +11 -2
  64. package/lib/refs.d.ts.map +1 -1
  65. package/lib/refs.js +83 -0
  66. package/lib/rewrite.d.ts.map +1 -1
  67. package/lib/rewrite.js +5 -5
  68. package/lib/schema-util.d.ts +3 -15
  69. package/lib/schema-util.d.ts.map +1 -1
  70. package/lib/schema-util.js +36 -135
  71. package/lib/schemas/index.d.ts +2302 -2
  72. package/lib/schemas/index.d.ts.map +1 -1
  73. package/lib/schemas/index.js +24 -22
  74. package/lib/schemas/index.ts +4 -2
  75. package/lib/schemas/project-schema/v3.15.0.json +2359 -0
  76. package/lib/schemas/project-schema.json +1 -1
  77. package/lib/template-shapes/templates.d.ts.map +1 -1
  78. package/lib/template-shapes/templates.js +8 -13
  79. package/lib/types/types.d.ts +2 -2
  80. package/lib/types/types.d.ts.map +1 -1
  81. package/lib/types/utils.d.ts +3 -1
  82. package/lib/types/utils.d.ts.map +1 -1
  83. package/lib/types/utils.js +15 -8
  84. package/lib/unions.js +4 -4
  85. package/lib/util/detect-cycles.d.ts +1 -1
  86. package/lib/util/detect-cycles.js +2 -2
  87. package/lib/util/index.d.ts +1 -0
  88. package/lib/util/index.d.ts.map +1 -1
  89. package/lib/util/index.js +13 -0
  90. package/lib/util/merge.d.ts +5 -0
  91. package/lib/util/merge.d.ts.map +1 -0
  92. package/lib/util/merge.js +51 -0
  93. package/lib/validate.d.ts.map +1 -1
  94. package/lib/validate.js +3 -10
  95. package/package.json +4 -4
@@ -1,7 +1,2307 @@
1
- export declare const CURRENT_SCHEMA_VERSION = "3.14.0";
1
+ export declare const CURRENT_SCHEMA_VERSION = "3.15.0";
2
2
  export { default as anyProjectSchema } from './project-schema.json';
3
- export { default as latestSchemaJson } from './project-schema/v3.14.0.json';
3
+ export { default as latestSchemaJson } from './project-schema/v3.15.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
+ };
941
+ args: {
942
+ description: string;
943
+ $ref: string;
944
+ };
945
+ results: {
946
+ description: string;
947
+ $ref: string;
948
+ };
949
+ };
950
+ required: string[];
951
+ additionalProperties: boolean;
952
+ };
953
+ internalTakeshapeResolver: {
954
+ title: string;
955
+ type: string;
956
+ properties: {
957
+ if: {
958
+ type: string;
959
+ };
960
+ id: {
961
+ type: string;
962
+ pattern: string;
963
+ };
964
+ name: {
965
+ title: string;
966
+ type: string;
967
+ description: string;
968
+ enum: string[];
969
+ };
970
+ service: {
971
+ type: string;
972
+ description: string;
973
+ enum: string[];
974
+ };
975
+ options: {
976
+ title: string;
977
+ type: string;
978
+ additionalProperties: boolean;
979
+ };
980
+ shapeName: {
981
+ description: string;
982
+ type: string;
983
+ };
984
+ args: {
985
+ description: string;
986
+ $ref: string;
987
+ };
988
+ results: {
989
+ description: string;
990
+ $ref: string;
991
+ };
992
+ argsMapping: {
993
+ $ref: string;
994
+ };
995
+ resultsMapping: {
996
+ $ref: string;
997
+ };
998
+ };
999
+ required: string[];
1000
+ additionalProperties: boolean;
1001
+ };
1002
+ graphqlResolver: {
1003
+ title: string;
1004
+ type: string;
1005
+ properties: {
1006
+ if: {
1007
+ type: string;
1008
+ };
1009
+ id: {
1010
+ type: string;
1011
+ pattern: string;
1012
+ };
1013
+ name: {
1014
+ title: string;
1015
+ type: string;
1016
+ description: string;
1017
+ enum: string[];
1018
+ };
1019
+ service: {
1020
+ type: string;
1021
+ description: string;
1022
+ };
1023
+ argsMapping: {
1024
+ $ref: string;
1025
+ };
1026
+ resultsMapping: {
1027
+ $ref: string;
1028
+ };
1029
+ options: {
1030
+ title: string;
1031
+ type: string;
1032
+ properties: {
1033
+ selectionSet: {
1034
+ type: string;
1035
+ };
1036
+ unboxParentSelectionSet: {
1037
+ type: string;
1038
+ };
1039
+ ignoreErrors: {
1040
+ type: string;
1041
+ };
1042
+ skipWhenMissingArgs: {
1043
+ type: string;
1044
+ };
1045
+ ttl: {
1046
+ type: string;
1047
+ };
1048
+ timeout: {
1049
+ type: string;
1050
+ };
1051
+ retry: {
1052
+ oneOf: {
1053
+ type: string;
1054
+ }[];
1055
+ };
1056
+ };
1057
+ additionalProperties: boolean;
1058
+ };
1059
+ fieldName: {
1060
+ description: string;
1061
+ type: string;
1062
+ };
1063
+ headers: {
1064
+ description: string;
1065
+ $ref: string;
1066
+ };
1067
+ searchParams: {
1068
+ description: string;
1069
+ $ref: string;
1070
+ };
1071
+ args: {
1072
+ description: string;
1073
+ $ref: string;
1074
+ };
1075
+ results: {
1076
+ description: string;
1077
+ $ref: string;
1078
+ };
1079
+ };
1080
+ required: string[];
1081
+ additionalProperties: boolean;
1082
+ };
1083
+ restResolver: {
1084
+ title: string;
1085
+ type: string;
1086
+ properties: {
1087
+ if: {
1088
+ type: string;
1089
+ };
1090
+ id: {
1091
+ type: string;
1092
+ pattern: string;
1093
+ };
1094
+ name: {
1095
+ title: string;
1096
+ type: string;
1097
+ description: string;
1098
+ enum: string[];
1099
+ };
1100
+ service: {
1101
+ type: string;
1102
+ description: string;
1103
+ };
1104
+ argsMapping: {
1105
+ $ref: string;
1106
+ };
1107
+ searchParamsMapping: {
1108
+ $ref: string;
1109
+ };
1110
+ resultsMapping: {
1111
+ $ref: string;
1112
+ };
1113
+ options: {
1114
+ title: string;
1115
+ type: string;
1116
+ properties: {
1117
+ trailingSlash: {
1118
+ type: string;
1119
+ };
1120
+ ttl: {
1121
+ type: string;
1122
+ };
1123
+ timeout: {
1124
+ type: string;
1125
+ };
1126
+ retry: {
1127
+ oneOf: {
1128
+ type: string;
1129
+ }[];
1130
+ };
1131
+ };
1132
+ additionalProperties: boolean;
1133
+ };
1134
+ body: {
1135
+ description: string;
1136
+ $ref: string;
1137
+ };
1138
+ form: {
1139
+ description: string;
1140
+ $ref: string;
1141
+ };
1142
+ headers: {
1143
+ description: string;
1144
+ $ref: string;
1145
+ };
1146
+ json: {
1147
+ description: string;
1148
+ $ref: string;
1149
+ };
1150
+ path: {
1151
+ description: string;
1152
+ oneOf: ({
1153
+ $ref: string;
1154
+ type?: undefined;
1155
+ } | {
1156
+ type: string;
1157
+ $ref?: undefined;
1158
+ })[];
1159
+ };
1160
+ searchParams: {
1161
+ description: string;
1162
+ $ref: string;
1163
+ };
1164
+ args: {
1165
+ description: string;
1166
+ $ref: string;
1167
+ };
1168
+ results: {
1169
+ description: string;
1170
+ $ref: string;
1171
+ };
1172
+ };
1173
+ required: string[];
1174
+ additionalProperties: boolean;
1175
+ };
1176
+ awsLambdaResolver: {
1177
+ title: string;
1178
+ type: string;
1179
+ properties: {
1180
+ if: {
1181
+ type: string;
1182
+ };
1183
+ id: {
1184
+ type: string;
1185
+ pattern: string;
1186
+ };
1187
+ name: {
1188
+ title: string;
1189
+ type: string;
1190
+ description: string;
1191
+ enum: string[];
1192
+ };
1193
+ service: {
1194
+ type: string;
1195
+ description: string;
1196
+ };
1197
+ options: {
1198
+ title: string;
1199
+ type: string;
1200
+ additionalProperties: boolean;
1201
+ };
1202
+ payload: {
1203
+ description: string;
1204
+ $ref: string;
1205
+ };
1206
+ functionName: {
1207
+ description: string;
1208
+ oneOf: ({
1209
+ type: string;
1210
+ $ref?: undefined;
1211
+ } | {
1212
+ $ref: string;
1213
+ type?: undefined;
1214
+ })[];
1215
+ };
1216
+ clientContext: {
1217
+ description: string;
1218
+ $ref: string;
1219
+ };
1220
+ args: {
1221
+ description: string;
1222
+ $ref: string;
1223
+ };
1224
+ results: {
1225
+ description: string;
1226
+ $ref: string;
1227
+ };
1228
+ argsMapping: {
1229
+ $ref: string;
1230
+ };
1231
+ searchParamsMapping: {
1232
+ description: string;
1233
+ $ref: string;
1234
+ };
1235
+ resultsMapping: {
1236
+ $ref: string;
1237
+ };
1238
+ };
1239
+ required: string[];
1240
+ additionalProperties: boolean;
1241
+ };
1242
+ composeResolver: {
1243
+ title: string;
1244
+ type: string;
1245
+ properties: {
1246
+ compose: {
1247
+ type: string;
1248
+ items: {
1249
+ $ref: string;
1250
+ };
1251
+ };
1252
+ resultsMapping: {
1253
+ oneOf: {
1254
+ $ref: string;
1255
+ }[];
1256
+ };
1257
+ results: {
1258
+ description: string;
1259
+ $ref: string;
1260
+ };
1261
+ };
1262
+ required: string[];
1263
+ additionalProperties: boolean;
1264
+ };
1265
+ resolver: {
1266
+ title: string;
1267
+ oneOf: {
1268
+ $ref: string;
1269
+ }[];
1270
+ };
1271
+ ref: {
1272
+ title: string;
1273
+ type: string;
1274
+ };
1275
+ query: {
1276
+ title: string;
1277
+ type: string;
1278
+ properties: {
1279
+ args: {
1280
+ description: string;
1281
+ $ref: string;
1282
+ };
1283
+ resolver: {
1284
+ description: string;
1285
+ $ref: string;
1286
+ };
1287
+ shape: {
1288
+ $ref: string;
1289
+ description: string;
1290
+ };
1291
+ description: {
1292
+ type: string;
1293
+ description: string;
1294
+ };
1295
+ };
1296
+ required: string[];
1297
+ };
1298
+ propertySchema: {
1299
+ title: string;
1300
+ type: string;
1301
+ properties: {
1302
+ $ref: {
1303
+ type: string;
1304
+ format: string;
1305
+ };
1306
+ title: {
1307
+ type: string;
1308
+ };
1309
+ description: {
1310
+ type: string;
1311
+ };
1312
+ default: {};
1313
+ readOnly: {
1314
+ type: string;
1315
+ default: boolean;
1316
+ };
1317
+ multipleOf: {
1318
+ type: string;
1319
+ exclusiveMinimum: number;
1320
+ };
1321
+ maximum: {
1322
+ type: string;
1323
+ };
1324
+ exclusiveMaximum: {
1325
+ type: string;
1326
+ };
1327
+ minimum: {
1328
+ type: string;
1329
+ };
1330
+ exclusiveMinimum: {
1331
+ type: string;
1332
+ };
1333
+ maxLength: {
1334
+ $ref: string;
1335
+ };
1336
+ minLength: {
1337
+ $ref: string;
1338
+ };
1339
+ pattern: {
1340
+ type: string;
1341
+ format: string;
1342
+ };
1343
+ additionalItems: {
1344
+ $ref: string;
1345
+ };
1346
+ items: {
1347
+ $ref: string;
1348
+ };
1349
+ maxItems: {
1350
+ $ref: string;
1351
+ };
1352
+ minItems: {
1353
+ $ref: string;
1354
+ };
1355
+ uniqueItems: {
1356
+ type: string;
1357
+ default: boolean;
1358
+ };
1359
+ contains: {
1360
+ $ref: string;
1361
+ };
1362
+ maxProperties: {
1363
+ $ref: string;
1364
+ };
1365
+ minProperties: {
1366
+ $ref: string;
1367
+ };
1368
+ required: {
1369
+ $ref: string;
1370
+ };
1371
+ additionalProperties: {
1372
+ oneOf: ({
1373
+ $ref: string;
1374
+ enum?: undefined;
1375
+ } | {
1376
+ enum: boolean[];
1377
+ $ref?: undefined;
1378
+ })[];
1379
+ };
1380
+ definitions: {
1381
+ type: string;
1382
+ additionalProperties: {
1383
+ $ref: string;
1384
+ };
1385
+ default: {};
1386
+ };
1387
+ properties: {
1388
+ type: string;
1389
+ additionalProperties: {
1390
+ $ref: string;
1391
+ };
1392
+ default: {};
1393
+ };
1394
+ const: {};
1395
+ enum: {
1396
+ type: string;
1397
+ minItems: number;
1398
+ uniqueItems: boolean;
1399
+ };
1400
+ type: {
1401
+ anyOf: ({
1402
+ $ref: string;
1403
+ type?: undefined;
1404
+ items?: undefined;
1405
+ minItems?: undefined;
1406
+ uniqueItems?: undefined;
1407
+ } | {
1408
+ type: string;
1409
+ items: {
1410
+ $ref: string;
1411
+ };
1412
+ minItems: number;
1413
+ uniqueItems: boolean;
1414
+ $ref?: undefined;
1415
+ })[];
1416
+ };
1417
+ format: {
1418
+ type: string;
1419
+ };
1420
+ contentMediaType: {
1421
+ type: string;
1422
+ };
1423
+ contentEncoding: {
1424
+ type: string;
1425
+ };
1426
+ allOf: {
1427
+ $ref: string;
1428
+ };
1429
+ oneOf: {
1430
+ $ref: string;
1431
+ };
1432
+ extends: {
1433
+ $ref: string;
1434
+ };
1435
+ "@relationship": {
1436
+ $ref: string;
1437
+ };
1438
+ "@backreference": {
1439
+ $ref: string;
1440
+ };
1441
+ "@input": {
1442
+ $ref: string;
1443
+ };
1444
+ "@syncLocaleStructure": {
1445
+ type: string;
1446
+ };
1447
+ "@sensitive": {
1448
+ type: string;
1449
+ };
1450
+ "@draftjs": {
1451
+ type: string;
1452
+ };
1453
+ "@l10n": {
1454
+ type: string;
1455
+ };
1456
+ "@key": {
1457
+ type: string;
1458
+ pattern: string;
1459
+ };
1460
+ "@workflow": {
1461
+ type: string;
1462
+ };
1463
+ "@mapping": {
1464
+ $ref: string;
1465
+ };
1466
+ "@tag": {
1467
+ type: string;
1468
+ };
1469
+ "@tags": {
1470
+ type: string;
1471
+ items: {
1472
+ type: string;
1473
+ };
1474
+ };
1475
+ "@deprecationReason": {
1476
+ type: string;
1477
+ };
1478
+ "@user": {
1479
+ type: string;
1480
+ };
1481
+ "@args": {
1482
+ $ref: string;
1483
+ };
1484
+ "@resolver": {
1485
+ $ref: string;
1486
+ };
1487
+ "@ref": {
1488
+ $ref: string;
1489
+ };
1490
+ "@derivedFrom": {
1491
+ type: string;
1492
+ };
1493
+ };
1494
+ additionalProperties: boolean;
1495
+ };
1496
+ shape: {
1497
+ title: string;
1498
+ description: string;
1499
+ type: string;
1500
+ properties: {
1501
+ name: {
1502
+ type: string;
1503
+ pattern: string;
1504
+ description: string;
1505
+ };
1506
+ id: {
1507
+ type: string;
1508
+ pattern: string;
1509
+ description: string;
1510
+ };
1511
+ title: {
1512
+ type: string;
1513
+ description: string;
1514
+ };
1515
+ description: {
1516
+ type: string;
1517
+ };
1518
+ model: {
1519
+ description: string;
1520
+ type: string;
1521
+ properties: {
1522
+ type: {
1523
+ title: string;
1524
+ type: string;
1525
+ enum: string[];
1526
+ };
1527
+ };
1528
+ required: string[];
1529
+ additionalProperties: boolean;
1530
+ };
1531
+ workflow: {
1532
+ type: string;
1533
+ };
1534
+ schema: {
1535
+ $ref: string;
1536
+ };
1537
+ };
1538
+ required: string[];
1539
+ additionalProperties: boolean;
1540
+ };
1541
+ shapeWithObjectSchema: {
1542
+ title: string;
1543
+ type: string;
1544
+ allOf: ({
1545
+ $ref: string;
1546
+ type?: undefined;
1547
+ properties?: undefined;
1548
+ required?: undefined;
1549
+ additionalProperties?: undefined;
1550
+ } | {
1551
+ type: string;
1552
+ properties: {
1553
+ schema: {
1554
+ $ref: string;
1555
+ };
1556
+ };
1557
+ required: string[];
1558
+ additionalProperties: boolean;
1559
+ $ref?: undefined;
1560
+ })[];
1561
+ };
1562
+ shapeMap: {
1563
+ title: string;
1564
+ type: string;
1565
+ patternProperties: {
1566
+ "[0-9A-Za-z_-]+": {
1567
+ $ref: string;
1568
+ };
1569
+ };
1570
+ };
1571
+ formMap: {
1572
+ title: string;
1573
+ type: string;
1574
+ patternProperties: {
1575
+ "[0-9A-Za-z_-]+": {
1576
+ $ref: string;
1577
+ };
1578
+ };
1579
+ };
1580
+ indexedShapeMap: {
1581
+ title: string;
1582
+ type: string;
1583
+ patternProperties: {
1584
+ "[0-9A-Za-z_-]+": {
1585
+ $ref: string;
1586
+ };
1587
+ };
1588
+ };
1589
+ indexedShapeConfig: {
1590
+ title: string;
1591
+ type: string;
1592
+ properties: {
1593
+ idField: {
1594
+ type: string;
1595
+ };
1596
+ searchSummaryField: {
1597
+ type: string;
1598
+ };
1599
+ queries: {
1600
+ $ref: string;
1601
+ };
1602
+ triggers: {
1603
+ type: string;
1604
+ items: {
1605
+ $ref: string;
1606
+ };
1607
+ };
1608
+ };
1609
+ additionalProperties: boolean;
1610
+ required: string[];
1611
+ };
1612
+ indexedShapeQueriesConfig: {
1613
+ title: string;
1614
+ type: string;
1615
+ properties: {
1616
+ list: {
1617
+ $ref: string;
1618
+ };
1619
+ get: {
1620
+ $ref: string;
1621
+ };
1622
+ };
1623
+ additionalProperties: boolean;
1624
+ };
1625
+ indexedShapeListQueryConfig: {
1626
+ title: string;
1627
+ type: string;
1628
+ properties: {
1629
+ name: {
1630
+ type: string;
1631
+ };
1632
+ ignoreFields: {
1633
+ type: string;
1634
+ items: {
1635
+ type: string;
1636
+ };
1637
+ };
1638
+ objectDepthLimit: {
1639
+ type: string;
1640
+ };
1641
+ pagination: {
1642
+ $ref: string;
1643
+ };
1644
+ };
1645
+ additionalProperties: boolean;
1646
+ required: string[];
1647
+ };
1648
+ indexedShapeGetQueryConfig: {
1649
+ title: string;
1650
+ type: string;
1651
+ properties: {
1652
+ name: {
1653
+ type: string;
1654
+ };
1655
+ ignoreFields: {
1656
+ type: string;
1657
+ items: {
1658
+ type: string;
1659
+ };
1660
+ };
1661
+ objectDepthLimit: {
1662
+ type: string;
1663
+ };
1664
+ };
1665
+ additionalProperties: boolean;
1666
+ required: string[];
1667
+ };
1668
+ paginationConfig: {
1669
+ title: string;
1670
+ oneOf: {
1671
+ $ref: string;
1672
+ }[];
1673
+ };
1674
+ paginationCursorConfig: {
1675
+ title: string;
1676
+ type: string;
1677
+ properties: {
1678
+ type: {
1679
+ type: string;
1680
+ enum: string[];
1681
+ };
1682
+ cursorArg: {
1683
+ type: string;
1684
+ };
1685
+ cursorPath: {
1686
+ type: string;
1687
+ };
1688
+ pageSize: {
1689
+ type: string;
1690
+ };
1691
+ pageSizeArg: {
1692
+ type: string;
1693
+ };
1694
+ hasMorePath: {
1695
+ type: string;
1696
+ };
1697
+ itemsToIndexPath: {
1698
+ type: string;
1699
+ };
1700
+ };
1701
+ additionalProperties: boolean;
1702
+ required: string[];
1703
+ };
1704
+ paginationPageConfig: {
1705
+ title: string;
1706
+ type: string;
1707
+ properties: {
1708
+ type: {
1709
+ type: string;
1710
+ enum: string[];
1711
+ };
1712
+ pageArg: {
1713
+ type: string;
1714
+ };
1715
+ itemsToIndexPath: {
1716
+ type: string;
1717
+ };
1718
+ pageTotalPath: {
1719
+ type: string;
1720
+ };
1721
+ };
1722
+ additionalProperties: boolean;
1723
+ required: string[];
1724
+ };
1725
+ paginationOffsetConfig: {
1726
+ title: string;
1727
+ type: string;
1728
+ properties: {
1729
+ type: {
1730
+ type: string;
1731
+ enum: string[];
1732
+ };
1733
+ offsetArg: {
1734
+ type: string;
1735
+ };
1736
+ itemsToIndexPath: {
1737
+ type: string;
1738
+ };
1739
+ itemTotalPath: {
1740
+ type: string;
1741
+ };
1742
+ };
1743
+ additionalProperties: boolean;
1744
+ required: string[];
1745
+ };
1746
+ indexedShapeTriggersConfig: {
1747
+ title: string;
1748
+ oneOf: {
1749
+ $ref: string;
1750
+ }[];
1751
+ };
1752
+ indexedShapeScheduleTriggerConfig: {
1753
+ title: string;
1754
+ type: string;
1755
+ properties: {
1756
+ type: {
1757
+ type: string;
1758
+ enum: string[];
1759
+ };
1760
+ query: {
1761
+ enum: string[];
1762
+ };
1763
+ interval: {
1764
+ type: string;
1765
+ };
1766
+ };
1767
+ additionalProperties: boolean;
1768
+ required: string[];
1769
+ };
1770
+ indexedShapeWebhookTriggerConfig: {
1771
+ title: string;
1772
+ type: string;
1773
+ properties: {
1774
+ type: {
1775
+ type: string;
1776
+ enum: string[];
1777
+ };
1778
+ query: {
1779
+ enum: string[];
1780
+ };
1781
+ service: {
1782
+ type: string;
1783
+ };
1784
+ events: {
1785
+ type: string;
1786
+ items: {
1787
+ type: string;
1788
+ };
1789
+ };
1790
+ };
1791
+ additionalProperties: boolean;
1792
+ required: string[];
1793
+ };
1794
+ formScalarConfig: {
1795
+ title: string;
1796
+ type: string;
1797
+ properties: {
1798
+ widget: {
1799
+ type: string;
1800
+ };
1801
+ };
1802
+ additionalProperties: boolean;
1803
+ required: string[];
1804
+ };
1805
+ formObjectConfig: {
1806
+ title: string;
1807
+ type: string;
1808
+ properties: {
1809
+ widget: {
1810
+ type: string;
1811
+ };
1812
+ order: {
1813
+ type: string;
1814
+ items: {
1815
+ type: string;
1816
+ };
1817
+ };
1818
+ properties: {
1819
+ patternProperties: {
1820
+ "[0-9A-Za-z_-]+": {
1821
+ $ref: string;
1822
+ };
1823
+ };
1824
+ };
1825
+ };
1826
+ additionalProperties: boolean;
1827
+ };
1828
+ formArrayConfig: {
1829
+ title: string;
1830
+ type: string;
1831
+ properties: {
1832
+ widget: {
1833
+ type: string;
1834
+ };
1835
+ items: {
1836
+ $ref: string;
1837
+ };
1838
+ };
1839
+ additionalProperties: boolean;
1840
+ required: string[];
1841
+ };
1842
+ customAuthentication: {
1843
+ title: string;
1844
+ description: string;
1845
+ type: string;
1846
+ properties: {
1847
+ type: {
1848
+ type: string;
1849
+ enum: string[];
1850
+ };
1851
+ };
1852
+ additionalProperties: boolean;
1853
+ required: string[];
1854
+ };
1855
+ searchParamsAuthentication: {
1856
+ title: string;
1857
+ type: string;
1858
+ properties: {
1859
+ type: {
1860
+ type: string;
1861
+ enum: string[];
1862
+ };
1863
+ params: {
1864
+ type: string;
1865
+ items: {
1866
+ properties: {
1867
+ name: {
1868
+ type: string;
1869
+ };
1870
+ value: {
1871
+ type: string;
1872
+ };
1873
+ };
1874
+ required: string[];
1875
+ additionalProperties: boolean;
1876
+ };
1877
+ };
1878
+ };
1879
+ additionalProperties: boolean;
1880
+ required: string[];
1881
+ };
1882
+ bearerAuthentication: {
1883
+ title: string;
1884
+ type: string;
1885
+ properties: {
1886
+ type: {
1887
+ type: string;
1888
+ enum: string[];
1889
+ };
1890
+ token: {
1891
+ type: string;
1892
+ };
1893
+ prefix: {
1894
+ type: string;
1895
+ };
1896
+ header: {
1897
+ type: string;
1898
+ };
1899
+ };
1900
+ additionalProperties: boolean;
1901
+ required: string[];
1902
+ };
1903
+ oauth2BearerAuthentication: {
1904
+ title: string;
1905
+ type: string;
1906
+ properties: {
1907
+ type: {
1908
+ type: string;
1909
+ enum: string[];
1910
+ };
1911
+ token: {
1912
+ type: string;
1913
+ };
1914
+ prefix: {
1915
+ type: string;
1916
+ };
1917
+ header: {
1918
+ type: string;
1919
+ };
1920
+ scope: {
1921
+ type: string;
1922
+ };
1923
+ expiresAt: {
1924
+ type: string;
1925
+ };
1926
+ };
1927
+ additionalProperties: boolean;
1928
+ required: string[];
1929
+ };
1930
+ basicAuthentication: {
1931
+ title: string;
1932
+ type: string;
1933
+ properties: {
1934
+ type: {
1935
+ type: string;
1936
+ enum: string[];
1937
+ };
1938
+ username: {
1939
+ type: string;
1940
+ };
1941
+ password: {
1942
+ type: string;
1943
+ };
1944
+ useIso8859: {
1945
+ type: string;
1946
+ };
1947
+ };
1948
+ additionalProperties: boolean;
1949
+ required: string[];
1950
+ };
1951
+ oauth2Authentication: {
1952
+ title: string;
1953
+ type: string;
1954
+ properties: {
1955
+ type: {
1956
+ type: string;
1957
+ enum: string[];
1958
+ };
1959
+ grantType: {
1960
+ type: string;
1961
+ enum: string[];
1962
+ };
1963
+ authorizationUrl: {
1964
+ type: string;
1965
+ };
1966
+ accessTokenUrl: {
1967
+ type: string;
1968
+ };
1969
+ clientId: {
1970
+ type: string;
1971
+ };
1972
+ clientSecret: {
1973
+ type: string;
1974
+ };
1975
+ scope: {
1976
+ type: string;
1977
+ };
1978
+ usePkce: {
1979
+ type: string;
1980
+ };
1981
+ redirectUrl: {
1982
+ type: string;
1983
+ };
1984
+ headerPrefix: {
1985
+ type: string;
1986
+ };
1987
+ audience: {
1988
+ type: string;
1989
+ };
1990
+ resource: {
1991
+ type: string;
1992
+ };
1993
+ };
1994
+ additionalProperties: boolean;
1995
+ required: string[];
1996
+ };
1997
+ awsAuthentication: {
1998
+ title: string;
1999
+ type: string;
2000
+ properties: {
2001
+ type: {
2002
+ type: string;
2003
+ enum: string[];
2004
+ };
2005
+ awsAccessKeyId: {
2006
+ type: string;
2007
+ };
2008
+ awsSecretAccessKey: {
2009
+ type: string;
2010
+ };
2011
+ };
2012
+ additionalProperties: boolean;
2013
+ required: string[];
2014
+ };
2015
+ serviceAuthentication: {
2016
+ title: string;
2017
+ oneOf: {
2018
+ $ref: string;
2019
+ }[];
2020
+ };
2021
+ serviceType: {
2022
+ title: string;
2023
+ description: string;
2024
+ type: string;
2025
+ enum: string[];
2026
+ };
2027
+ serviceConfig: {
2028
+ title: string;
2029
+ type: string;
2030
+ properties: {
2031
+ id: {
2032
+ type: string;
2033
+ description: string;
2034
+ };
2035
+ title: {
2036
+ type: string;
2037
+ description: string;
2038
+ };
2039
+ provider: {
2040
+ description: string;
2041
+ type: string;
2042
+ };
2043
+ namespace: {
2044
+ type: string;
2045
+ description: string;
2046
+ };
2047
+ serviceType: {
2048
+ $ref: string;
2049
+ };
2050
+ authenticationType: {
2051
+ type: string;
2052
+ enum: string[];
2053
+ };
2054
+ authentication: {
2055
+ $ref: string;
2056
+ };
2057
+ webhookId: {
2058
+ type: string;
2059
+ };
2060
+ options: {
2061
+ type: string;
2062
+ description: string;
2063
+ };
2064
+ };
2065
+ required: string[];
2066
+ additionalProperties: boolean;
2067
+ };
2068
+ storedServiceConfig: {
2069
+ title: string;
2070
+ type: string;
2071
+ properties: {
2072
+ id: {
2073
+ type: string;
2074
+ description: string;
2075
+ };
2076
+ title: {
2077
+ type: string;
2078
+ description: string;
2079
+ };
2080
+ provider: {
2081
+ type: string;
2082
+ description: string;
2083
+ };
2084
+ namespace: {
2085
+ type: string;
2086
+ description: string;
2087
+ };
2088
+ serviceType: {
2089
+ $ref: string;
2090
+ };
2091
+ authenticationType: {
2092
+ type: string;
2093
+ enum: string[];
2094
+ };
2095
+ authentication: {
2096
+ type: string;
2097
+ };
2098
+ webhookId: {
2099
+ type: string;
2100
+ };
2101
+ options: {
2102
+ type: string;
2103
+ description: string;
2104
+ };
2105
+ };
2106
+ required: string[];
2107
+ additionalProperties: boolean;
2108
+ };
2109
+ anyServiceConfig: {
2110
+ title: string;
2111
+ oneOf: {
2112
+ $ref: string;
2113
+ }[];
2114
+ };
2115
+ storedServiceMap: {
2116
+ title: string;
2117
+ type: string;
2118
+ patternProperties: {
2119
+ "[0-9A-Za-z_-]+": {
2120
+ $ref: string;
2121
+ };
2122
+ };
2123
+ };
2124
+ workflowStep: {
2125
+ title: string;
2126
+ type: string;
2127
+ properties: {
2128
+ name: {
2129
+ type: string;
2130
+ title: string;
2131
+ pattern: string;
2132
+ description: string;
2133
+ };
2134
+ title: {
2135
+ title: string;
2136
+ type: string;
2137
+ description: string;
2138
+ };
2139
+ description: {
2140
+ title: string;
2141
+ type: string;
2142
+ };
2143
+ color: {
2144
+ title: string;
2145
+ type: string;
2146
+ description: string;
2147
+ };
2148
+ live: {
2149
+ title: string;
2150
+ type: string;
2151
+ description: string;
2152
+ };
2153
+ key: {
2154
+ title: string;
2155
+ type: string;
2156
+ description: string;
2157
+ };
2158
+ };
2159
+ required: string[];
2160
+ additionalProperties: boolean;
2161
+ };
2162
+ workflow: {
2163
+ title: string;
2164
+ type: string;
2165
+ properties: {
2166
+ name: {
2167
+ type: string;
2168
+ pattern: string;
2169
+ description: string;
2170
+ };
2171
+ title: {
2172
+ type: string;
2173
+ title: string;
2174
+ minLength: number;
2175
+ description: string;
2176
+ };
2177
+ steps: {
2178
+ type: string;
2179
+ title: string;
2180
+ items: {
2181
+ $ref: string;
2182
+ };
2183
+ minItems: number;
2184
+ };
2185
+ };
2186
+ required: string[];
2187
+ };
2188
+ workflowMap: {
2189
+ title: string;
2190
+ type: string;
2191
+ patternProperties: {
2192
+ "[0-9A-Za-z_-]+": {
2193
+ $ref: string;
2194
+ };
2195
+ };
2196
+ };
2197
+ formConfig: {
2198
+ title: string;
2199
+ type: string;
2200
+ };
2201
+ formsConfig: {
2202
+ title: string;
2203
+ type: string;
2204
+ properties: {
2205
+ default: {
2206
+ $ref: string;
2207
+ };
2208
+ };
2209
+ patternProperties: {
2210
+ "[0-9A-Za-z_-]+": {
2211
+ $ref: string;
2212
+ };
2213
+ };
2214
+ required: string[];
2215
+ };
2216
+ };
2217
+ properties: {
2218
+ $schema: {
2219
+ type: string;
2220
+ };
2221
+ version: {
2222
+ type: string;
2223
+ description: string;
2224
+ };
2225
+ apiVersion: {
2226
+ type: string;
2227
+ description: string;
2228
+ };
2229
+ schemaVersion: {
2230
+ type: string;
2231
+ enum: string[];
2232
+ description: string;
2233
+ };
2234
+ projectId: {
2235
+ type: string;
2236
+ description: string;
2237
+ };
2238
+ author: {
2239
+ type: string;
2240
+ description: string;
2241
+ };
2242
+ created: {
2243
+ type: string;
2244
+ format: string;
2245
+ description: string;
2246
+ };
2247
+ updated: {
2248
+ type: string;
2249
+ format: string;
2250
+ description: string;
2251
+ };
2252
+ deactivated: {
2253
+ type: string;
2254
+ };
2255
+ defaultLocale: {
2256
+ type: string;
2257
+ minLength: number;
2258
+ pattern: string;
2259
+ description: string;
2260
+ };
2261
+ locales: {
2262
+ type: string;
2263
+ minItems: number;
2264
+ items: {
2265
+ type: string;
2266
+ minLength: number;
2267
+ pattern: string;
2268
+ };
2269
+ };
2270
+ queries: {
2271
+ $ref: string;
2272
+ description: string;
2273
+ };
2274
+ mutations: {
2275
+ $ref: string;
2276
+ description: string;
2277
+ };
2278
+ shapes: {
2279
+ $ref: string;
2280
+ description: string;
2281
+ };
2282
+ indexedShapes: {
2283
+ $ref: string;
2284
+ description: string;
2285
+ };
2286
+ forms: {
2287
+ $ref: string;
2288
+ description: string;
2289
+ };
2290
+ workflows: {
2291
+ $ref: string;
2292
+ description: string;
2293
+ };
2294
+ dataKey: {
2295
+ type: string;
2296
+ };
2297
+ services: {
2298
+ $ref: string;
2299
+ description: string;
2300
+ };
2301
+ };
2302
+ additionalProperties: boolean;
2303
+ required: string[];
2304
+ } | {
5
2305
  $schema: string;
6
2306
  $id: string;
7
2307
  definitions: {