@redocly/config 0.26.3-rc.1 → 0.26.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/default-theme-config-schema.d.ts +187 -13
- package/lib/entities-catalog-config-schema.d.ts +184 -0
- package/lib/entities-catalog-config-schema.js +2 -0
- package/lib/ex-theme-config-schemas.d.ts +3 -4
- package/lib/ex-theme-config-schemas.js +1 -2
- package/lib/graphql-config-schema.d.ts +0 -9
- package/lib/graphql-config-schema.js +0 -9
- package/lib/product-override-schema.d.ts +0 -18
- package/lib/root-config-schema.d.ts +940 -148
- package/lib-esm/default-theme-config-schema.d.ts +187 -13
- package/lib-esm/entities-catalog-config-schema.d.ts +184 -0
- package/lib-esm/entities-catalog-config-schema.js +2 -0
- package/lib-esm/ex-theme-config-schemas.d.ts +3 -4
- package/lib-esm/ex-theme-config-schemas.js +1 -2
- package/lib-esm/graphql-config-schema.d.ts +0 -9
- package/lib-esm/graphql-config-schema.js +0 -9
- package/lib-esm/product-override-schema.d.ts +0 -18
- package/lib-esm/root-config-schema.d.ts +5647 -5315
- package/package.json +4 -2
|
@@ -3120,15 +3120,6 @@ export declare const themeConfigSchema: {
|
|
|
3120
3120
|
readonly baseUrlPath: {
|
|
3121
3121
|
readonly type: "string";
|
|
3122
3122
|
};
|
|
3123
|
-
readonly metadata: {
|
|
3124
|
-
readonly type: "object";
|
|
3125
|
-
readonly properties: {
|
|
3126
|
-
readonly apiId: {
|
|
3127
|
-
readonly type: "string";
|
|
3128
|
-
};
|
|
3129
|
-
};
|
|
3130
|
-
readonly additionalProperties: true;
|
|
3131
|
-
};
|
|
3132
3123
|
readonly feedback: {
|
|
3133
3124
|
readonly type: "object";
|
|
3134
3125
|
readonly properties: {
|
|
@@ -4510,6 +4501,190 @@ export declare const themeConfigSchema: {
|
|
|
4510
4501
|
};
|
|
4511
4502
|
readonly additionalProperties: false;
|
|
4512
4503
|
};
|
|
4504
|
+
readonly dataSchemas: {
|
|
4505
|
+
readonly type: "object";
|
|
4506
|
+
readonly properties: {
|
|
4507
|
+
readonly slug: {
|
|
4508
|
+
readonly type: "string";
|
|
4509
|
+
};
|
|
4510
|
+
readonly hide: {
|
|
4511
|
+
readonly type: "boolean";
|
|
4512
|
+
};
|
|
4513
|
+
readonly includes: {
|
|
4514
|
+
readonly type: "array";
|
|
4515
|
+
readonly items: {
|
|
4516
|
+
readonly type: "object";
|
|
4517
|
+
readonly required: readonly ["type"];
|
|
4518
|
+
readonly properties: {
|
|
4519
|
+
readonly type: {
|
|
4520
|
+
readonly type: "string";
|
|
4521
|
+
};
|
|
4522
|
+
};
|
|
4523
|
+
readonly additionalProperties: false;
|
|
4524
|
+
};
|
|
4525
|
+
};
|
|
4526
|
+
readonly excludes: {
|
|
4527
|
+
readonly type: "array";
|
|
4528
|
+
readonly items: {
|
|
4529
|
+
readonly type: "object";
|
|
4530
|
+
readonly required: readonly ["key"];
|
|
4531
|
+
readonly properties: {
|
|
4532
|
+
readonly key: {
|
|
4533
|
+
readonly type: "string";
|
|
4534
|
+
};
|
|
4535
|
+
};
|
|
4536
|
+
readonly additionalProperties: false;
|
|
4537
|
+
};
|
|
4538
|
+
};
|
|
4539
|
+
readonly filters: {
|
|
4540
|
+
readonly type: "array";
|
|
4541
|
+
readonly items: {
|
|
4542
|
+
readonly type: "object";
|
|
4543
|
+
readonly required: readonly ["property", "title"];
|
|
4544
|
+
readonly properties: {
|
|
4545
|
+
readonly property: {
|
|
4546
|
+
readonly type: "string";
|
|
4547
|
+
};
|
|
4548
|
+
readonly hide: {
|
|
4549
|
+
readonly type: "boolean";
|
|
4550
|
+
};
|
|
4551
|
+
readonly label: {
|
|
4552
|
+
readonly type: "string";
|
|
4553
|
+
};
|
|
4554
|
+
readonly options: {
|
|
4555
|
+
readonly type: "array";
|
|
4556
|
+
readonly items: {
|
|
4557
|
+
readonly type: "string";
|
|
4558
|
+
};
|
|
4559
|
+
};
|
|
4560
|
+
readonly type: {
|
|
4561
|
+
readonly type: "string";
|
|
4562
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
4563
|
+
readonly default: "checkboxes";
|
|
4564
|
+
};
|
|
4565
|
+
readonly title: {
|
|
4566
|
+
readonly type: "string";
|
|
4567
|
+
};
|
|
4568
|
+
readonly titleTranslationKey: {
|
|
4569
|
+
readonly type: "string";
|
|
4570
|
+
};
|
|
4571
|
+
readonly parentFilter: {
|
|
4572
|
+
readonly type: "string";
|
|
4573
|
+
};
|
|
4574
|
+
readonly valuesMapping: {
|
|
4575
|
+
readonly type: "object";
|
|
4576
|
+
readonly additionalProperties: {
|
|
4577
|
+
readonly type: "string";
|
|
4578
|
+
};
|
|
4579
|
+
};
|
|
4580
|
+
};
|
|
4581
|
+
readonly additionalProperties: false;
|
|
4582
|
+
};
|
|
4583
|
+
};
|
|
4584
|
+
readonly titleTranslationKey: {
|
|
4585
|
+
readonly type: "string";
|
|
4586
|
+
};
|
|
4587
|
+
readonly descriptionTranslationKey: {
|
|
4588
|
+
readonly type: "string";
|
|
4589
|
+
};
|
|
4590
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
4591
|
+
readonly type: "string";
|
|
4592
|
+
};
|
|
4593
|
+
};
|
|
4594
|
+
readonly additionalProperties: false;
|
|
4595
|
+
};
|
|
4596
|
+
readonly apiOperations: {
|
|
4597
|
+
readonly type: "object";
|
|
4598
|
+
readonly properties: {
|
|
4599
|
+
readonly slug: {
|
|
4600
|
+
readonly type: "string";
|
|
4601
|
+
};
|
|
4602
|
+
readonly hide: {
|
|
4603
|
+
readonly type: "boolean";
|
|
4604
|
+
};
|
|
4605
|
+
readonly includes: {
|
|
4606
|
+
readonly type: "array";
|
|
4607
|
+
readonly items: {
|
|
4608
|
+
readonly type: "object";
|
|
4609
|
+
readonly required: readonly ["type"];
|
|
4610
|
+
readonly properties: {
|
|
4611
|
+
readonly type: {
|
|
4612
|
+
readonly type: "string";
|
|
4613
|
+
};
|
|
4614
|
+
};
|
|
4615
|
+
readonly additionalProperties: false;
|
|
4616
|
+
};
|
|
4617
|
+
};
|
|
4618
|
+
readonly excludes: {
|
|
4619
|
+
readonly type: "array";
|
|
4620
|
+
readonly items: {
|
|
4621
|
+
readonly type: "object";
|
|
4622
|
+
readonly required: readonly ["key"];
|
|
4623
|
+
readonly properties: {
|
|
4624
|
+
readonly key: {
|
|
4625
|
+
readonly type: "string";
|
|
4626
|
+
};
|
|
4627
|
+
};
|
|
4628
|
+
readonly additionalProperties: false;
|
|
4629
|
+
};
|
|
4630
|
+
};
|
|
4631
|
+
readonly filters: {
|
|
4632
|
+
readonly type: "array";
|
|
4633
|
+
readonly items: {
|
|
4634
|
+
readonly type: "object";
|
|
4635
|
+
readonly required: readonly ["property", "title"];
|
|
4636
|
+
readonly properties: {
|
|
4637
|
+
readonly property: {
|
|
4638
|
+
readonly type: "string";
|
|
4639
|
+
};
|
|
4640
|
+
readonly hide: {
|
|
4641
|
+
readonly type: "boolean";
|
|
4642
|
+
};
|
|
4643
|
+
readonly label: {
|
|
4644
|
+
readonly type: "string";
|
|
4645
|
+
};
|
|
4646
|
+
readonly options: {
|
|
4647
|
+
readonly type: "array";
|
|
4648
|
+
readonly items: {
|
|
4649
|
+
readonly type: "string";
|
|
4650
|
+
};
|
|
4651
|
+
};
|
|
4652
|
+
readonly type: {
|
|
4653
|
+
readonly type: "string";
|
|
4654
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
4655
|
+
readonly default: "checkboxes";
|
|
4656
|
+
};
|
|
4657
|
+
readonly title: {
|
|
4658
|
+
readonly type: "string";
|
|
4659
|
+
};
|
|
4660
|
+
readonly titleTranslationKey: {
|
|
4661
|
+
readonly type: "string";
|
|
4662
|
+
};
|
|
4663
|
+
readonly parentFilter: {
|
|
4664
|
+
readonly type: "string";
|
|
4665
|
+
};
|
|
4666
|
+
readonly valuesMapping: {
|
|
4667
|
+
readonly type: "object";
|
|
4668
|
+
readonly additionalProperties: {
|
|
4669
|
+
readonly type: "string";
|
|
4670
|
+
};
|
|
4671
|
+
};
|
|
4672
|
+
};
|
|
4673
|
+
readonly additionalProperties: false;
|
|
4674
|
+
};
|
|
4675
|
+
};
|
|
4676
|
+
readonly titleTranslationKey: {
|
|
4677
|
+
readonly type: "string";
|
|
4678
|
+
};
|
|
4679
|
+
readonly descriptionTranslationKey: {
|
|
4680
|
+
readonly type: "string";
|
|
4681
|
+
};
|
|
4682
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
4683
|
+
readonly type: "string";
|
|
4684
|
+
};
|
|
4685
|
+
};
|
|
4686
|
+
readonly additionalProperties: false;
|
|
4687
|
+
};
|
|
4513
4688
|
};
|
|
4514
4689
|
readonly additionalProperties: false;
|
|
4515
4690
|
};
|
|
@@ -4988,16 +5163,15 @@ export declare const themeConfigSchema: {
|
|
|
4988
5163
|
readonly type: "object";
|
|
4989
5164
|
readonly additionalProperties: true;
|
|
4990
5165
|
};
|
|
4991
|
-
readonly ignore: {
|
|
4992
|
-
readonly type: "boolean";
|
|
4993
|
-
};
|
|
4994
5166
|
readonly where: {
|
|
4995
5167
|
readonly type: "object";
|
|
4996
5168
|
readonly required: readonly ["metadata"];
|
|
4997
5169
|
readonly properties: {
|
|
4998
5170
|
readonly metadata: {
|
|
4999
5171
|
readonly type: "object";
|
|
5000
|
-
readonly additionalProperties: {
|
|
5172
|
+
readonly additionalProperties: {
|
|
5173
|
+
readonly type: "string";
|
|
5174
|
+
};
|
|
5001
5175
|
};
|
|
5002
5176
|
};
|
|
5003
5177
|
readonly additionalProperties: false;
|
|
@@ -710,6 +710,190 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
710
710
|
};
|
|
711
711
|
readonly additionalProperties: false;
|
|
712
712
|
};
|
|
713
|
+
readonly dataSchemas: {
|
|
714
|
+
readonly type: "object";
|
|
715
|
+
readonly properties: {
|
|
716
|
+
readonly slug: {
|
|
717
|
+
readonly type: "string";
|
|
718
|
+
};
|
|
719
|
+
readonly hide: {
|
|
720
|
+
readonly type: "boolean";
|
|
721
|
+
};
|
|
722
|
+
readonly includes: {
|
|
723
|
+
readonly type: "array";
|
|
724
|
+
readonly items: {
|
|
725
|
+
readonly type: "object";
|
|
726
|
+
readonly required: readonly ["type"];
|
|
727
|
+
readonly properties: {
|
|
728
|
+
readonly type: {
|
|
729
|
+
readonly type: "string";
|
|
730
|
+
};
|
|
731
|
+
};
|
|
732
|
+
readonly additionalProperties: false;
|
|
733
|
+
};
|
|
734
|
+
};
|
|
735
|
+
readonly excludes: {
|
|
736
|
+
readonly type: "array";
|
|
737
|
+
readonly items: {
|
|
738
|
+
readonly type: "object";
|
|
739
|
+
readonly required: readonly ["key"];
|
|
740
|
+
readonly properties: {
|
|
741
|
+
readonly key: {
|
|
742
|
+
readonly type: "string";
|
|
743
|
+
};
|
|
744
|
+
};
|
|
745
|
+
readonly additionalProperties: false;
|
|
746
|
+
};
|
|
747
|
+
};
|
|
748
|
+
readonly filters: {
|
|
749
|
+
readonly type: "array";
|
|
750
|
+
readonly items: {
|
|
751
|
+
readonly type: "object";
|
|
752
|
+
readonly required: readonly ["property", "title"];
|
|
753
|
+
readonly properties: {
|
|
754
|
+
readonly property: {
|
|
755
|
+
readonly type: "string";
|
|
756
|
+
};
|
|
757
|
+
readonly hide: {
|
|
758
|
+
readonly type: "boolean";
|
|
759
|
+
};
|
|
760
|
+
readonly label: {
|
|
761
|
+
readonly type: "string";
|
|
762
|
+
};
|
|
763
|
+
readonly options: {
|
|
764
|
+
readonly type: "array";
|
|
765
|
+
readonly items: {
|
|
766
|
+
readonly type: "string";
|
|
767
|
+
};
|
|
768
|
+
};
|
|
769
|
+
readonly type: {
|
|
770
|
+
readonly type: "string";
|
|
771
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
772
|
+
readonly default: "checkboxes";
|
|
773
|
+
};
|
|
774
|
+
readonly title: {
|
|
775
|
+
readonly type: "string";
|
|
776
|
+
};
|
|
777
|
+
readonly titleTranslationKey: {
|
|
778
|
+
readonly type: "string";
|
|
779
|
+
};
|
|
780
|
+
readonly parentFilter: {
|
|
781
|
+
readonly type: "string";
|
|
782
|
+
};
|
|
783
|
+
readonly valuesMapping: {
|
|
784
|
+
readonly type: "object";
|
|
785
|
+
readonly additionalProperties: {
|
|
786
|
+
readonly type: "string";
|
|
787
|
+
};
|
|
788
|
+
};
|
|
789
|
+
};
|
|
790
|
+
readonly additionalProperties: false;
|
|
791
|
+
};
|
|
792
|
+
};
|
|
793
|
+
readonly titleTranslationKey: {
|
|
794
|
+
readonly type: "string";
|
|
795
|
+
};
|
|
796
|
+
readonly descriptionTranslationKey: {
|
|
797
|
+
readonly type: "string";
|
|
798
|
+
};
|
|
799
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
800
|
+
readonly type: "string";
|
|
801
|
+
};
|
|
802
|
+
};
|
|
803
|
+
readonly additionalProperties: false;
|
|
804
|
+
};
|
|
805
|
+
readonly apiOperations: {
|
|
806
|
+
readonly type: "object";
|
|
807
|
+
readonly properties: {
|
|
808
|
+
readonly slug: {
|
|
809
|
+
readonly type: "string";
|
|
810
|
+
};
|
|
811
|
+
readonly hide: {
|
|
812
|
+
readonly type: "boolean";
|
|
813
|
+
};
|
|
814
|
+
readonly includes: {
|
|
815
|
+
readonly type: "array";
|
|
816
|
+
readonly items: {
|
|
817
|
+
readonly type: "object";
|
|
818
|
+
readonly required: readonly ["type"];
|
|
819
|
+
readonly properties: {
|
|
820
|
+
readonly type: {
|
|
821
|
+
readonly type: "string";
|
|
822
|
+
};
|
|
823
|
+
};
|
|
824
|
+
readonly additionalProperties: false;
|
|
825
|
+
};
|
|
826
|
+
};
|
|
827
|
+
readonly excludes: {
|
|
828
|
+
readonly type: "array";
|
|
829
|
+
readonly items: {
|
|
830
|
+
readonly type: "object";
|
|
831
|
+
readonly required: readonly ["key"];
|
|
832
|
+
readonly properties: {
|
|
833
|
+
readonly key: {
|
|
834
|
+
readonly type: "string";
|
|
835
|
+
};
|
|
836
|
+
};
|
|
837
|
+
readonly additionalProperties: false;
|
|
838
|
+
};
|
|
839
|
+
};
|
|
840
|
+
readonly filters: {
|
|
841
|
+
readonly type: "array";
|
|
842
|
+
readonly items: {
|
|
843
|
+
readonly type: "object";
|
|
844
|
+
readonly required: readonly ["property", "title"];
|
|
845
|
+
readonly properties: {
|
|
846
|
+
readonly property: {
|
|
847
|
+
readonly type: "string";
|
|
848
|
+
};
|
|
849
|
+
readonly hide: {
|
|
850
|
+
readonly type: "boolean";
|
|
851
|
+
};
|
|
852
|
+
readonly label: {
|
|
853
|
+
readonly type: "string";
|
|
854
|
+
};
|
|
855
|
+
readonly options: {
|
|
856
|
+
readonly type: "array";
|
|
857
|
+
readonly items: {
|
|
858
|
+
readonly type: "string";
|
|
859
|
+
};
|
|
860
|
+
};
|
|
861
|
+
readonly type: {
|
|
862
|
+
readonly type: "string";
|
|
863
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
864
|
+
readonly default: "checkboxes";
|
|
865
|
+
};
|
|
866
|
+
readonly title: {
|
|
867
|
+
readonly type: "string";
|
|
868
|
+
};
|
|
869
|
+
readonly titleTranslationKey: {
|
|
870
|
+
readonly type: "string";
|
|
871
|
+
};
|
|
872
|
+
readonly parentFilter: {
|
|
873
|
+
readonly type: "string";
|
|
874
|
+
};
|
|
875
|
+
readonly valuesMapping: {
|
|
876
|
+
readonly type: "object";
|
|
877
|
+
readonly additionalProperties: {
|
|
878
|
+
readonly type: "string";
|
|
879
|
+
};
|
|
880
|
+
};
|
|
881
|
+
};
|
|
882
|
+
readonly additionalProperties: false;
|
|
883
|
+
};
|
|
884
|
+
};
|
|
885
|
+
readonly titleTranslationKey: {
|
|
886
|
+
readonly type: "string";
|
|
887
|
+
};
|
|
888
|
+
readonly descriptionTranslationKey: {
|
|
889
|
+
readonly type: "string";
|
|
890
|
+
};
|
|
891
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
892
|
+
readonly type: "string";
|
|
893
|
+
};
|
|
894
|
+
};
|
|
895
|
+
readonly additionalProperties: false;
|
|
896
|
+
};
|
|
713
897
|
};
|
|
714
898
|
readonly additionalProperties: false;
|
|
715
899
|
};
|
|
@@ -75,6 +75,8 @@ exports.entitiesCatalogConfigSchema = {
|
|
|
75
75
|
teams: exports.entityCatalogSpecificCatalogSchema,
|
|
76
76
|
users: exports.entityCatalogSpecificCatalogSchema,
|
|
77
77
|
apiDescriptions: exports.entityCatalogSpecificCatalogSchema,
|
|
78
|
+
dataSchemas: exports.entityCatalogSpecificCatalogSchema,
|
|
79
|
+
apiOperations: exports.entityCatalogSpecificCatalogSchema,
|
|
78
80
|
},
|
|
79
81
|
additionalProperties: false,
|
|
80
82
|
},
|
|
@@ -4301,16 +4301,15 @@ export declare const scorecardConfigSchema: {
|
|
|
4301
4301
|
readonly type: "object";
|
|
4302
4302
|
readonly additionalProperties: true;
|
|
4303
4303
|
};
|
|
4304
|
-
readonly ignore: {
|
|
4305
|
-
readonly type: "boolean";
|
|
4306
|
-
};
|
|
4307
4304
|
readonly where: {
|
|
4308
4305
|
readonly type: "object";
|
|
4309
4306
|
readonly required: readonly ["metadata"];
|
|
4310
4307
|
readonly properties: {
|
|
4311
4308
|
readonly metadata: {
|
|
4312
4309
|
readonly type: "object";
|
|
4313
|
-
readonly additionalProperties: {
|
|
4310
|
+
readonly additionalProperties: {
|
|
4311
|
+
readonly type: "string";
|
|
4312
|
+
};
|
|
4314
4313
|
};
|
|
4315
4314
|
};
|
|
4316
4315
|
readonly additionalProperties: false;
|
|
@@ -580,12 +580,11 @@ exports.scorecardConfigSchema = {
|
|
|
580
580
|
properties: {
|
|
581
581
|
minimumLevel: { type: 'string' },
|
|
582
582
|
rules: { type: 'object', additionalProperties: true },
|
|
583
|
-
ignore: { type: 'boolean' },
|
|
584
583
|
where: {
|
|
585
584
|
type: 'object',
|
|
586
585
|
required: ['metadata'],
|
|
587
586
|
properties: {
|
|
588
|
-
metadata: { type: 'object', additionalProperties: {} },
|
|
587
|
+
metadata: { type: 'object', additionalProperties: { type: 'string' } },
|
|
589
588
|
},
|
|
590
589
|
additionalProperties: false,
|
|
591
590
|
},
|
|
@@ -177,15 +177,6 @@ export declare const graphqlConfigSchema: {
|
|
|
177
177
|
readonly baseUrlPath: {
|
|
178
178
|
readonly type: "string";
|
|
179
179
|
};
|
|
180
|
-
readonly metadata: {
|
|
181
|
-
readonly type: "object";
|
|
182
|
-
readonly properties: {
|
|
183
|
-
readonly apiId: {
|
|
184
|
-
readonly type: "string";
|
|
185
|
-
};
|
|
186
|
-
};
|
|
187
|
-
readonly additionalProperties: true;
|
|
188
|
-
};
|
|
189
180
|
readonly feedback: {
|
|
190
181
|
readonly type: "object";
|
|
191
182
|
readonly properties: {
|
|
@@ -104,15 +104,6 @@ exports.graphqlConfigSchema = {
|
|
|
104
104
|
baseUrlPath: {
|
|
105
105
|
type: 'string',
|
|
106
106
|
},
|
|
107
|
-
metadata: {
|
|
108
|
-
type: 'object',
|
|
109
|
-
properties: {
|
|
110
|
-
apiId: {
|
|
111
|
-
type: 'string',
|
|
112
|
-
},
|
|
113
|
-
},
|
|
114
|
-
additionalProperties: true,
|
|
115
|
-
},
|
|
116
107
|
feedback: feedback_config_schema_1.feedbackConfigSchema,
|
|
117
108
|
},
|
|
118
109
|
additionalProperties: false,
|
|
@@ -4864,15 +4864,6 @@ export declare const productConfigOverrideSchema: {
|
|
|
4864
4864
|
readonly baseUrlPath: {
|
|
4865
4865
|
readonly type: "string";
|
|
4866
4866
|
};
|
|
4867
|
-
readonly metadata: {
|
|
4868
|
-
readonly type: "object";
|
|
4869
|
-
readonly properties: {
|
|
4870
|
-
readonly apiId: {
|
|
4871
|
-
readonly type: "string";
|
|
4872
|
-
};
|
|
4873
|
-
};
|
|
4874
|
-
readonly additionalProperties: true;
|
|
4875
|
-
};
|
|
4876
4867
|
readonly feedback: {
|
|
4877
4868
|
readonly type: "object";
|
|
4878
4869
|
readonly properties: {
|
|
@@ -7102,15 +7093,6 @@ export declare const productConfigOverrideSchema: {
|
|
|
7102
7093
|
readonly baseUrlPath: {
|
|
7103
7094
|
readonly type: "string";
|
|
7104
7095
|
};
|
|
7105
|
-
readonly metadata: {
|
|
7106
|
-
readonly type: "object";
|
|
7107
|
-
readonly properties: {
|
|
7108
|
-
readonly apiId: {
|
|
7109
|
-
readonly type: "string";
|
|
7110
|
-
};
|
|
7111
|
-
};
|
|
7112
|
-
readonly additionalProperties: true;
|
|
7113
|
-
};
|
|
7114
7096
|
readonly feedback: {
|
|
7115
7097
|
readonly type: "object";
|
|
7116
7098
|
readonly properties: {
|