@redocly/config 0.39.0 → 0.41.0

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 (35) hide show
  1. package/lib/default-theme-config-schema.d.ts +836 -2
  2. package/lib/default-theme-config-schema.js +6 -1
  3. package/lib/entities-catalog-entity-file-schema.d.ts +87 -0
  4. package/lib/entities-catalog-entity-file-schema.js +9 -0
  5. package/lib/ex-theme-config-schemas.d.ts +0 -11
  6. package/lib/ex-theme-config-schemas.js +1 -9
  7. package/lib/graphql-config-schema.d.ts +52 -0
  8. package/lib/graphql-config-schema.js +31 -0
  9. package/lib/product-override-schema.d.ts +104 -0
  10. package/lib/root-config-schema.d.ts +6281 -1577
  11. package/lib/root-config-schema.js +28 -2
  12. package/lib/scorecards-config-schema.d.ts +1079 -0
  13. package/lib/scorecards-config-schema.js +240 -0
  14. package/lib/types/api-functions-types.d.ts +2 -2
  15. package/lib/types/catalog-entity-types.d.ts +2 -0
  16. package/lib/types/config-types.d.ts +5 -2
  17. package/lib/types/portal-shared-types.d.ts +1 -1
  18. package/lib-esm/default-theme-config-schema.d.ts +836 -2
  19. package/lib-esm/default-theme-config-schema.js +6 -1
  20. package/lib-esm/entities-catalog-entity-file-schema.d.ts +87 -0
  21. package/lib-esm/entities-catalog-entity-file-schema.js +9 -0
  22. package/lib-esm/ex-theme-config-schemas.d.ts +0 -11
  23. package/lib-esm/ex-theme-config-schemas.js +0 -8
  24. package/lib-esm/graphql-config-schema.d.ts +52 -0
  25. package/lib-esm/graphql-config-schema.js +31 -0
  26. package/lib-esm/product-override-schema.d.ts +104 -0
  27. package/lib-esm/root-config-schema.d.ts +6281 -1577
  28. package/lib-esm/root-config-schema.js +28 -2
  29. package/lib-esm/scorecards-config-schema.d.ts +1079 -0
  30. package/lib-esm/scorecards-config-schema.js +237 -0
  31. package/lib-esm/types/api-functions-types.d.ts +2 -2
  32. package/lib-esm/types/catalog-entity-types.d.ts +2 -0
  33. package/lib-esm/types/config-types.d.ts +5 -2
  34. package/lib-esm/types/portal-shared-types.d.ts +1 -1
  35. package/package.json +2 -2
@@ -3457,6 +3457,58 @@ export declare const themeConfigSchema: {
3457
3457
  readonly showBuiltInDirectives: {
3458
3458
  readonly type: "boolean";
3459
3459
  };
3460
+ readonly info: {
3461
+ readonly type: "object";
3462
+ readonly properties: {
3463
+ readonly title: {
3464
+ readonly type: "string";
3465
+ };
3466
+ readonly version: {
3467
+ readonly type: "string";
3468
+ };
3469
+ readonly description: {
3470
+ readonly type: "string";
3471
+ };
3472
+ readonly termsOfService: {
3473
+ readonly type: "string";
3474
+ readonly format: "uri";
3475
+ };
3476
+ readonly contact: {
3477
+ readonly type: "object";
3478
+ readonly properties: {
3479
+ readonly name: {
3480
+ readonly type: "string";
3481
+ };
3482
+ readonly url: {
3483
+ readonly type: "string";
3484
+ readonly format: "uri";
3485
+ };
3486
+ readonly email: {
3487
+ readonly type: "string";
3488
+ readonly format: "email";
3489
+ };
3490
+ };
3491
+ readonly additionalProperties: false;
3492
+ };
3493
+ readonly license: {
3494
+ readonly type: "object";
3495
+ readonly properties: {
3496
+ readonly name: {
3497
+ readonly type: "string";
3498
+ };
3499
+ readonly url: {
3500
+ readonly type: "string";
3501
+ readonly format: "uri";
3502
+ };
3503
+ readonly identifier: {
3504
+ readonly type: "string";
3505
+ };
3506
+ };
3507
+ readonly additionalProperties: false;
3508
+ };
3509
+ };
3510
+ readonly additionalProperties: false;
3511
+ };
3460
3512
  };
3461
3513
  readonly additionalProperties: false;
3462
3514
  };
@@ -5285,6 +5337,9 @@ export declare const themeConfigSchema: {
5285
5337
  };
5286
5338
  };
5287
5339
  };
5340
+ /**
5341
+ * @deprecated Should use `scorecardClassic` instead
5342
+ */
5288
5343
  readonly scorecard: {
5289
5344
  readonly type: "object";
5290
5345
  readonly additionalProperties: true;
@@ -5535,13 +5590,792 @@ export declare const themeConfigSchema: {
5535
5590
  };
5536
5591
  };
5537
5592
  readonly scorecards: {
5593
+ readonly type: "array";
5594
+ readonly items: {
5595
+ readonly type: "object";
5596
+ readonly properties: {
5597
+ readonly name: {
5598
+ readonly type: "string";
5599
+ };
5600
+ readonly description: {
5601
+ readonly type: "string";
5602
+ };
5603
+ readonly entities: {
5604
+ readonly oneOf: readonly [{
5605
+ readonly type: "array";
5606
+ readonly items: {
5607
+ readonly oneOf: readonly [{
5608
+ readonly type: "object";
5609
+ readonly properties: {
5610
+ readonly field: {
5611
+ readonly type: "string";
5612
+ };
5613
+ readonly operator: {
5614
+ readonly type: "string";
5615
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5616
+ };
5617
+ readonly value: {
5618
+ readonly oneOf: readonly [{
5619
+ readonly type: "boolean";
5620
+ }, {
5621
+ readonly type: "string";
5622
+ }, {
5623
+ readonly type: "number";
5624
+ }];
5625
+ };
5626
+ readonly match: {
5627
+ readonly type: "array";
5628
+ readonly items: {
5629
+ readonly type: "object";
5630
+ readonly properties: {
5631
+ readonly field: {
5632
+ readonly type: "string";
5633
+ };
5634
+ readonly operator: {
5635
+ readonly type: "string";
5636
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5637
+ };
5638
+ readonly value: {
5639
+ readonly oneOf: readonly [{
5640
+ readonly type: "boolean";
5641
+ }, {
5642
+ readonly type: "string";
5643
+ }, {
5644
+ readonly type: "number";
5645
+ }];
5646
+ };
5647
+ };
5648
+ };
5649
+ };
5650
+ };
5651
+ }, {
5652
+ readonly type: "object";
5653
+ readonly properties: {
5654
+ readonly operator: {
5655
+ readonly type: "string";
5656
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5657
+ };
5658
+ readonly conditions: {
5659
+ readonly type: "array";
5660
+ readonly items: {
5661
+ readonly oneOf: readonly [{
5662
+ readonly type: "object";
5663
+ readonly properties: {
5664
+ readonly field: {
5665
+ readonly type: "string";
5666
+ };
5667
+ readonly operator: {
5668
+ readonly type: "string";
5669
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5670
+ };
5671
+ readonly value: {
5672
+ readonly oneOf: readonly [{
5673
+ readonly type: "boolean";
5674
+ }, {
5675
+ readonly type: "string";
5676
+ }, {
5677
+ readonly type: "number";
5678
+ }];
5679
+ };
5680
+ readonly match: {
5681
+ readonly type: "array";
5682
+ readonly items: {
5683
+ readonly type: "object";
5684
+ readonly properties: {
5685
+ readonly field: {
5686
+ readonly type: "string";
5687
+ };
5688
+ readonly operator: {
5689
+ readonly type: "string";
5690
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5691
+ };
5692
+ readonly value: {
5693
+ readonly oneOf: readonly [{
5694
+ readonly type: "boolean";
5695
+ }, {
5696
+ readonly type: "string";
5697
+ }, {
5698
+ readonly type: "number";
5699
+ }];
5700
+ };
5701
+ };
5702
+ };
5703
+ };
5704
+ };
5705
+ }, {
5706
+ readonly type: "object";
5707
+ readonly properties: {
5708
+ readonly operator: {
5709
+ readonly type: "string";
5710
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5711
+ };
5712
+ readonly conditions: {
5713
+ readonly type: "array";
5714
+ readonly items: {
5715
+ readonly type: "object";
5716
+ readonly properties: {
5717
+ readonly field: {
5718
+ readonly type: "string";
5719
+ };
5720
+ readonly operator: {
5721
+ readonly type: "string";
5722
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5723
+ };
5724
+ readonly value: {
5725
+ readonly oneOf: readonly [{
5726
+ readonly type: "boolean";
5727
+ }, {
5728
+ readonly type: "string";
5729
+ }, {
5730
+ readonly type: "number";
5731
+ }];
5732
+ };
5733
+ readonly match: {
5734
+ readonly type: "array";
5735
+ readonly items: {
5736
+ readonly type: "object";
5737
+ readonly properties: {
5738
+ readonly field: {
5739
+ readonly type: "string";
5740
+ };
5741
+ readonly operator: {
5742
+ readonly type: "string";
5743
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5744
+ };
5745
+ readonly value: {
5746
+ readonly oneOf: readonly [{
5747
+ readonly type: "boolean";
5748
+ }, {
5749
+ readonly type: "string";
5750
+ }, {
5751
+ readonly type: "number";
5752
+ }];
5753
+ };
5754
+ };
5755
+ };
5756
+ };
5757
+ };
5758
+ };
5759
+ };
5760
+ };
5761
+ readonly required: readonly ["operator", "conditions"];
5762
+ readonly additionalProperties: false;
5763
+ }];
5764
+ };
5765
+ };
5766
+ };
5767
+ readonly required: readonly ["operator", "conditions"];
5768
+ readonly additionalProperties: false;
5769
+ }];
5770
+ };
5771
+ }, {
5772
+ readonly type: "object";
5773
+ readonly properties: {
5774
+ readonly operator: {
5775
+ readonly type: "string";
5776
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5777
+ };
5778
+ readonly conditions: {
5779
+ readonly type: "array";
5780
+ readonly items: {
5781
+ readonly oneOf: readonly [{
5782
+ readonly type: "object";
5783
+ readonly properties: {
5784
+ readonly field: {
5785
+ readonly type: "string";
5786
+ };
5787
+ readonly operator: {
5788
+ readonly type: "string";
5789
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5790
+ };
5791
+ readonly value: {
5792
+ readonly oneOf: readonly [{
5793
+ readonly type: "boolean";
5794
+ }, {
5795
+ readonly type: "string";
5796
+ }, {
5797
+ readonly type: "number";
5798
+ }];
5799
+ };
5800
+ readonly match: {
5801
+ readonly type: "array";
5802
+ readonly items: {
5803
+ readonly type: "object";
5804
+ readonly properties: {
5805
+ readonly field: {
5806
+ readonly type: "string";
5807
+ };
5808
+ readonly operator: {
5809
+ readonly type: "string";
5810
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5811
+ };
5812
+ readonly value: {
5813
+ readonly oneOf: readonly [{
5814
+ readonly type: "boolean";
5815
+ }, {
5816
+ readonly type: "string";
5817
+ }, {
5818
+ readonly type: "number";
5819
+ }];
5820
+ };
5821
+ };
5822
+ };
5823
+ };
5824
+ };
5825
+ }, {
5826
+ readonly type: "object";
5827
+ readonly properties: {
5828
+ readonly operator: {
5829
+ readonly type: "string";
5830
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5831
+ };
5832
+ readonly conditions: {
5833
+ readonly type: "array";
5834
+ readonly items: {
5835
+ readonly oneOf: readonly [{
5836
+ readonly type: "object";
5837
+ readonly properties: {
5838
+ readonly field: {
5839
+ readonly type: "string";
5840
+ };
5841
+ readonly operator: {
5842
+ readonly type: "string";
5843
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5844
+ };
5845
+ readonly value: {
5846
+ readonly oneOf: readonly [{
5847
+ readonly type: "boolean";
5848
+ }, {
5849
+ readonly type: "string";
5850
+ }, {
5851
+ readonly type: "number";
5852
+ }];
5853
+ };
5854
+ readonly match: {
5855
+ readonly type: "array";
5856
+ readonly items: {
5857
+ readonly type: "object";
5858
+ readonly properties: {
5859
+ readonly field: {
5860
+ readonly type: "string";
5861
+ };
5862
+ readonly operator: {
5863
+ readonly type: "string";
5864
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5865
+ };
5866
+ readonly value: {
5867
+ readonly oneOf: readonly [{
5868
+ readonly type: "boolean";
5869
+ }, {
5870
+ readonly type: "string";
5871
+ }, {
5872
+ readonly type: "number";
5873
+ }];
5874
+ };
5875
+ };
5876
+ };
5877
+ };
5878
+ };
5879
+ }, {
5880
+ readonly type: "object";
5881
+ readonly properties: {
5882
+ readonly operator: {
5883
+ readonly type: "string";
5884
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5885
+ };
5886
+ readonly conditions: {
5887
+ readonly type: "array";
5888
+ readonly items: {
5889
+ readonly type: "object";
5890
+ readonly properties: {
5891
+ readonly field: {
5892
+ readonly type: "string";
5893
+ };
5894
+ readonly operator: {
5895
+ readonly type: "string";
5896
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5897
+ };
5898
+ readonly value: {
5899
+ readonly oneOf: readonly [{
5900
+ readonly type: "boolean";
5901
+ }, {
5902
+ readonly type: "string";
5903
+ }, {
5904
+ readonly type: "number";
5905
+ }];
5906
+ };
5907
+ readonly match: {
5908
+ readonly type: "array";
5909
+ readonly items: {
5910
+ readonly type: "object";
5911
+ readonly properties: {
5912
+ readonly field: {
5913
+ readonly type: "string";
5914
+ };
5915
+ readonly operator: {
5916
+ readonly type: "string";
5917
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
5918
+ };
5919
+ readonly value: {
5920
+ readonly oneOf: readonly [{
5921
+ readonly type: "boolean";
5922
+ }, {
5923
+ readonly type: "string";
5924
+ }, {
5925
+ readonly type: "number";
5926
+ }];
5927
+ };
5928
+ };
5929
+ };
5930
+ };
5931
+ };
5932
+ };
5933
+ };
5934
+ };
5935
+ readonly required: readonly ["operator", "conditions"];
5936
+ readonly additionalProperties: false;
5937
+ }];
5938
+ };
5939
+ };
5940
+ };
5941
+ readonly required: readonly ["operator", "conditions"];
5942
+ readonly additionalProperties: false;
5943
+ }];
5944
+ };
5945
+ };
5946
+ };
5947
+ readonly required: readonly ["operator", "conditions"];
5948
+ readonly additionalProperties: false;
5949
+ }];
5950
+ };
5951
+ readonly levels: {
5952
+ readonly type: "array";
5953
+ readonly items: {
5954
+ readonly type: "object";
5955
+ readonly properties: {
5956
+ readonly name: {
5957
+ readonly type: "string";
5958
+ };
5959
+ readonly extends: {
5960
+ readonly type: "array";
5961
+ readonly items: {
5962
+ readonly type: "string";
5963
+ };
5964
+ };
5965
+ readonly rules: {
5966
+ readonly type: "object";
5967
+ readonly additionalProperties: {
5968
+ readonly oneOf: readonly [{
5969
+ readonly type: "string";
5970
+ }, {
5971
+ readonly type: "object";
5972
+ readonly properties: {
5973
+ readonly severity: {
5974
+ readonly type: "string";
5975
+ readonly enum: readonly ["error", "warn", "off"];
5976
+ };
5977
+ readonly weight: {
5978
+ readonly type: "number";
5979
+ readonly default: 1;
5980
+ };
5981
+ };
5982
+ readonly additionalProperties: true;
5983
+ }, {
5984
+ readonly type: "object";
5985
+ readonly properties: {
5986
+ readonly title: {
5987
+ readonly type: "string";
5988
+ };
5989
+ readonly subject: {
5990
+ readonly type: "object";
5991
+ readonly properties: {
5992
+ readonly type: {
5993
+ readonly type: "string";
5994
+ readonly enum: readonly ["Entity", "EntityMetadata", "EntityRelations", "EntityRelation"];
5995
+ };
5996
+ readonly property: {
5997
+ readonly type: "string";
5998
+ };
5999
+ };
6000
+ readonly required: readonly ["type", "property"];
6001
+ readonly additionalProperties: false;
6002
+ };
6003
+ readonly severity: {
6004
+ readonly type: "string";
6005
+ readonly enum: readonly ["error", "warn", "off"];
6006
+ };
6007
+ readonly message: {
6008
+ readonly type: "string";
6009
+ };
6010
+ readonly assertions: {
6011
+ readonly type: "object";
6012
+ readonly properties: {
6013
+ readonly defined: {
6014
+ readonly type: "boolean";
6015
+ };
6016
+ readonly nonEmpty: {
6017
+ readonly type: "boolean";
6018
+ };
6019
+ readonly eq: {};
6020
+ readonly gt: {
6021
+ readonly type: "number";
6022
+ };
6023
+ readonly gte: {
6024
+ readonly type: "number";
6025
+ };
6026
+ readonly lt: {
6027
+ readonly type: "number";
6028
+ };
6029
+ readonly lte: {
6030
+ readonly type: "number";
6031
+ };
6032
+ readonly const: {};
6033
+ };
6034
+ readonly additionalProperties: false;
6035
+ };
6036
+ readonly where: {
6037
+ readonly type: "array";
6038
+ readonly items: {
6039
+ readonly type: "object";
6040
+ readonly properties: {
6041
+ readonly subject: {
6042
+ readonly type: "object";
6043
+ readonly properties: {
6044
+ readonly type: {
6045
+ readonly type: "string";
6046
+ readonly enum: readonly ["Entity", "EntityMetadata", "EntityRelations", "EntityRelation"];
6047
+ };
6048
+ readonly property: {
6049
+ readonly type: "string";
6050
+ };
6051
+ };
6052
+ readonly required: readonly ["type", "property"];
6053
+ readonly additionalProperties: false;
6054
+ };
6055
+ readonly assertions: {
6056
+ readonly type: "object";
6057
+ readonly properties: {
6058
+ readonly defined: {
6059
+ readonly type: "boolean";
6060
+ };
6061
+ readonly nonEmpty: {
6062
+ readonly type: "boolean";
6063
+ };
6064
+ readonly eq: {};
6065
+ readonly gt: {
6066
+ readonly type: "number";
6067
+ };
6068
+ readonly gte: {
6069
+ readonly type: "number";
6070
+ };
6071
+ readonly lt: {
6072
+ readonly type: "number";
6073
+ };
6074
+ readonly lte: {
6075
+ readonly type: "number";
6076
+ };
6077
+ readonly const: {};
6078
+ };
6079
+ readonly additionalProperties: false;
6080
+ };
6081
+ };
6082
+ readonly required: readonly ["subject", "assertions"];
6083
+ readonly additionalProperties: false;
6084
+ };
6085
+ };
6086
+ readonly weight: {
6087
+ readonly type: "number";
6088
+ readonly default: 1;
6089
+ };
6090
+ };
6091
+ readonly required: readonly ["subject", "assertions"];
6092
+ readonly additionalProperties: false;
6093
+ }];
6094
+ };
6095
+ };
6096
+ };
6097
+ readonly required: readonly ["name"];
6098
+ readonly additionalProperties: false;
6099
+ };
6100
+ readonly minItems: 1;
6101
+ };
6102
+ readonly trigger: {
6103
+ readonly oneOf: readonly [{
6104
+ readonly type: "object";
6105
+ readonly properties: {
6106
+ readonly event: {
6107
+ readonly type: "string";
6108
+ readonly enum: readonly ["runtime", "manual"];
6109
+ };
6110
+ };
6111
+ readonly required: readonly ["event"];
6112
+ readonly additionalProperties: false;
6113
+ }, {
6114
+ readonly type: "array";
6115
+ readonly items: {
6116
+ readonly type: "object";
6117
+ readonly properties: {
6118
+ readonly event: {
6119
+ readonly type: "string";
6120
+ readonly enum: readonly ["runtime", "manual"];
6121
+ };
6122
+ };
6123
+ readonly required: readonly ["event"];
6124
+ readonly additionalProperties: false;
6125
+ };
6126
+ }];
6127
+ };
6128
+ };
6129
+ readonly required: readonly ["name", "entities", "levels"];
6130
+ readonly additionalProperties: false;
6131
+ };
6132
+ };
6133
+ readonly scorecardClassic: {
5538
6134
  readonly type: "object";
5539
6135
  readonly additionalProperties: true;
5540
6136
  readonly required: readonly [];
5541
6137
  readonly properties: {
5542
- readonly test: {
6138
+ readonly ignoreNonCompliant: {
5543
6139
  readonly type: "boolean";
5544
- readonly default: true;
6140
+ readonly default: false;
6141
+ };
6142
+ readonly teamMetadataProperty: {
6143
+ readonly type: "object";
6144
+ readonly properties: {
6145
+ readonly property: {
6146
+ readonly type: "string";
6147
+ };
6148
+ readonly label: {
6149
+ readonly type: "string";
6150
+ };
6151
+ readonly default: {
6152
+ readonly type: "string";
6153
+ };
6154
+ };
6155
+ };
6156
+ readonly levels: {
6157
+ readonly type: "array";
6158
+ readonly items: {
6159
+ readonly type: "object";
6160
+ readonly required: readonly ["name"];
6161
+ readonly properties: {
6162
+ readonly decorators: {
6163
+ readonly type: "object";
6164
+ readonly additionalProperties: true;
6165
+ };
6166
+ readonly oas2Decorators: {
6167
+ readonly type: "object";
6168
+ readonly additionalProperties: true;
6169
+ };
6170
+ readonly oas3_0Decorators: {
6171
+ readonly type: "object";
6172
+ readonly additionalProperties: true;
6173
+ };
6174
+ readonly oas3_1Decorators: {
6175
+ readonly type: "object";
6176
+ readonly additionalProperties: true;
6177
+ };
6178
+ readonly oas3_2Decorators: {
6179
+ readonly type: "object";
6180
+ readonly additionalProperties: true;
6181
+ };
6182
+ readonly async2Decorators: {
6183
+ readonly type: "object";
6184
+ readonly additionalProperties: true;
6185
+ };
6186
+ readonly async3Decorators: {
6187
+ readonly type: "object";
6188
+ readonly additionalProperties: true;
6189
+ };
6190
+ readonly arazzo1Decorators: {
6191
+ readonly type: "object";
6192
+ readonly additionalProperties: true;
6193
+ };
6194
+ readonly overlay1Decorators: {
6195
+ readonly type: "object";
6196
+ readonly additionalProperties: true;
6197
+ };
6198
+ readonly preprocessors: {
6199
+ readonly type: "object";
6200
+ readonly additionalProperties: true;
6201
+ };
6202
+ readonly oas2Preprocessors: {
6203
+ readonly type: "object";
6204
+ readonly additionalProperties: true;
6205
+ };
6206
+ readonly oas3_0Preprocessors: {
6207
+ readonly type: "object";
6208
+ readonly additionalProperties: true;
6209
+ };
6210
+ readonly oas3_1Preprocessors: {
6211
+ readonly type: "object";
6212
+ readonly additionalProperties: true;
6213
+ };
6214
+ readonly oas3_2Preprocessors: {
6215
+ readonly type: "object";
6216
+ readonly additionalProperties: true;
6217
+ };
6218
+ readonly async2Preprocessors: {
6219
+ readonly type: "object";
6220
+ readonly additionalProperties: true;
6221
+ };
6222
+ readonly async3Preprocessors: {
6223
+ readonly type: "object";
6224
+ readonly additionalProperties: true;
6225
+ };
6226
+ readonly arazzo1Preprocessors: {
6227
+ readonly type: "object";
6228
+ readonly additionalProperties: true;
6229
+ };
6230
+ readonly overlay1Preprocessors: {
6231
+ readonly type: "object";
6232
+ readonly additionalProperties: true;
6233
+ };
6234
+ readonly rules: {
6235
+ readonly type: "object";
6236
+ readonly additionalProperties: {
6237
+ readonly oneOf: readonly [{
6238
+ readonly type: "string";
6239
+ }, {
6240
+ readonly type: "object";
6241
+ }];
6242
+ };
6243
+ };
6244
+ readonly oas2Rules: {
6245
+ readonly type: "object";
6246
+ readonly additionalProperties: {
6247
+ readonly oneOf: readonly [{
6248
+ readonly type: "string";
6249
+ }, {
6250
+ readonly type: "object";
6251
+ }];
6252
+ };
6253
+ };
6254
+ readonly oas3_0Rules: {
6255
+ readonly type: "object";
6256
+ readonly additionalProperties: {
6257
+ readonly oneOf: readonly [{
6258
+ readonly type: "string";
6259
+ }, {
6260
+ readonly type: "object";
6261
+ }];
6262
+ };
6263
+ };
6264
+ readonly oas3_1Rules: {
6265
+ readonly type: "object";
6266
+ readonly additionalProperties: {
6267
+ readonly oneOf: readonly [{
6268
+ readonly type: "string";
6269
+ }, {
6270
+ readonly type: "object";
6271
+ }];
6272
+ };
6273
+ };
6274
+ readonly oas3_2Rules: {
6275
+ readonly type: "object";
6276
+ readonly additionalProperties: {
6277
+ readonly oneOf: readonly [{
6278
+ readonly type: "string";
6279
+ }, {
6280
+ readonly type: "object";
6281
+ }];
6282
+ };
6283
+ };
6284
+ readonly async2Rules: {
6285
+ readonly type: "object";
6286
+ readonly additionalProperties: {
6287
+ readonly oneOf: readonly [{
6288
+ readonly type: "string";
6289
+ }, {
6290
+ readonly type: "object";
6291
+ }];
6292
+ };
6293
+ };
6294
+ readonly async3Rules: {
6295
+ readonly type: "object";
6296
+ readonly additionalProperties: {
6297
+ readonly oneOf: readonly [{
6298
+ readonly type: "string";
6299
+ }, {
6300
+ readonly type: "object";
6301
+ }];
6302
+ };
6303
+ };
6304
+ readonly arazzo1Rules: {
6305
+ readonly type: "object";
6306
+ readonly additionalProperties: {
6307
+ readonly oneOf: readonly [{
6308
+ readonly type: "string";
6309
+ }, {
6310
+ readonly type: "object";
6311
+ }];
6312
+ };
6313
+ };
6314
+ readonly overlay1Rules: {
6315
+ readonly type: "object";
6316
+ readonly additionalProperties: {
6317
+ readonly oneOf: readonly [{
6318
+ readonly type: "string";
6319
+ }, {
6320
+ readonly type: "object";
6321
+ }];
6322
+ };
6323
+ };
6324
+ readonly name: {
6325
+ readonly type: "string";
6326
+ };
6327
+ readonly color: {
6328
+ readonly type: "string";
6329
+ };
6330
+ readonly extends: {
6331
+ readonly type: "array";
6332
+ readonly items: {
6333
+ readonly type: "string";
6334
+ };
6335
+ };
6336
+ };
6337
+ readonly additionalProperties: false;
6338
+ };
6339
+ };
6340
+ readonly targets: {
6341
+ readonly type: "array";
6342
+ readonly items: {
6343
+ readonly type: "object";
6344
+ readonly required: readonly ["where"];
6345
+ readonly properties: {
6346
+ readonly minimumLevel: {
6347
+ readonly type: "string";
6348
+ };
6349
+ readonly rules: {
6350
+ readonly type: "object";
6351
+ readonly additionalProperties: true;
6352
+ };
6353
+ readonly where: {
6354
+ readonly type: "object";
6355
+ readonly required: readonly ["metadata"];
6356
+ readonly properties: {
6357
+ readonly metadata: {
6358
+ readonly type: "object";
6359
+ readonly additionalProperties: {
6360
+ readonly type: "string";
6361
+ };
6362
+ };
6363
+ };
6364
+ readonly additionalProperties: false;
6365
+ };
6366
+ };
6367
+ readonly additionalProperties: false;
6368
+ };
6369
+ };
6370
+ readonly ignore: {
6371
+ readonly type: "array";
6372
+ readonly items: {
6373
+ readonly type: "string";
6374
+ };
6375
+ };
6376
+ readonly fromProjectUrl: {
6377
+ readonly type: "string";
6378
+ readonly format: "uri";
5545
6379
  };
5546
6380
  };
5547
6381
  };