@redocly/config 0.29.1 → 0.31.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.
- package/lib/default-theme-config-schema.d.ts +96 -1
- package/lib/entities-catalog-config-schema.d.ts +92 -1
- package/lib/entities-catalog-config-schema.js +1 -1
- package/lib/ex-theme-config-schemas.d.ts +4 -0
- package/lib/ex-theme-config-schemas.js +1 -0
- package/lib/reunite-config-schema.d.ts +0 -4
- package/lib/reunite-config-schema.js +0 -1
- package/lib/root-config-schema.d.ts +700 -230
- package/lib/types/catalog-entity-types.d.ts +16 -0
- package/lib/types/config-types.d.ts +2 -2
- package/lib-esm/default-theme-config-schema.d.ts +96 -1
- package/lib-esm/entities-catalog-config-schema.d.ts +92 -1
- package/lib-esm/entities-catalog-config-schema.js +1 -1
- package/lib-esm/ex-theme-config-schemas.d.ts +4 -0
- package/lib-esm/ex-theme-config-schemas.js +1 -0
- package/lib-esm/reunite-config-schema.d.ts +0 -4
- package/lib-esm/reunite-config-schema.js +0 -1
- package/lib-esm/root-config-schema.d.ts +700 -230
- package/lib-esm/types/catalog-entity-types.d.ts +16 -0
- package/lib-esm/types/config-types.d.ts +2 -2
- package/package.json +1 -1
|
@@ -4722,7 +4722,98 @@ export declare const themeConfigSchema: {
|
|
|
4722
4722
|
readonly additionalProperties: false;
|
|
4723
4723
|
};
|
|
4724
4724
|
};
|
|
4725
|
-
readonly additionalProperties:
|
|
4725
|
+
readonly additionalProperties: {
|
|
4726
|
+
readonly type: "object";
|
|
4727
|
+
readonly properties: {
|
|
4728
|
+
readonly slug: {
|
|
4729
|
+
readonly type: "string";
|
|
4730
|
+
};
|
|
4731
|
+
readonly hide: {
|
|
4732
|
+
readonly type: "boolean";
|
|
4733
|
+
};
|
|
4734
|
+
readonly includes: {
|
|
4735
|
+
readonly type: "array";
|
|
4736
|
+
readonly items: {
|
|
4737
|
+
readonly type: "object";
|
|
4738
|
+
readonly required: readonly ["type"];
|
|
4739
|
+
readonly properties: {
|
|
4740
|
+
readonly type: {
|
|
4741
|
+
readonly type: "string";
|
|
4742
|
+
};
|
|
4743
|
+
};
|
|
4744
|
+
readonly additionalProperties: false;
|
|
4745
|
+
};
|
|
4746
|
+
};
|
|
4747
|
+
readonly excludes: {
|
|
4748
|
+
readonly type: "array";
|
|
4749
|
+
readonly items: {
|
|
4750
|
+
readonly type: "object";
|
|
4751
|
+
readonly required: readonly ["key"];
|
|
4752
|
+
readonly properties: {
|
|
4753
|
+
readonly key: {
|
|
4754
|
+
readonly type: "string";
|
|
4755
|
+
};
|
|
4756
|
+
};
|
|
4757
|
+
readonly additionalProperties: false;
|
|
4758
|
+
};
|
|
4759
|
+
};
|
|
4760
|
+
readonly filters: {
|
|
4761
|
+
readonly type: "array";
|
|
4762
|
+
readonly items: {
|
|
4763
|
+
readonly type: "object";
|
|
4764
|
+
readonly required: readonly ["property", "title"];
|
|
4765
|
+
readonly properties: {
|
|
4766
|
+
readonly property: {
|
|
4767
|
+
readonly type: "string";
|
|
4768
|
+
};
|
|
4769
|
+
readonly hide: {
|
|
4770
|
+
readonly type: "boolean";
|
|
4771
|
+
};
|
|
4772
|
+
readonly label: {
|
|
4773
|
+
readonly type: "string";
|
|
4774
|
+
};
|
|
4775
|
+
readonly options: {
|
|
4776
|
+
readonly type: "array";
|
|
4777
|
+
readonly items: {
|
|
4778
|
+
readonly type: "string";
|
|
4779
|
+
};
|
|
4780
|
+
};
|
|
4781
|
+
readonly type: {
|
|
4782
|
+
readonly type: "string";
|
|
4783
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
4784
|
+
readonly default: "checkboxes";
|
|
4785
|
+
};
|
|
4786
|
+
readonly title: {
|
|
4787
|
+
readonly type: "string";
|
|
4788
|
+
};
|
|
4789
|
+
readonly titleTranslationKey: {
|
|
4790
|
+
readonly type: "string";
|
|
4791
|
+
};
|
|
4792
|
+
readonly parentFilter: {
|
|
4793
|
+
readonly type: "string";
|
|
4794
|
+
};
|
|
4795
|
+
readonly valuesMapping: {
|
|
4796
|
+
readonly type: "object";
|
|
4797
|
+
readonly additionalProperties: {
|
|
4798
|
+
readonly type: "string";
|
|
4799
|
+
};
|
|
4800
|
+
};
|
|
4801
|
+
};
|
|
4802
|
+
readonly additionalProperties: false;
|
|
4803
|
+
};
|
|
4804
|
+
};
|
|
4805
|
+
readonly titleTranslationKey: {
|
|
4806
|
+
readonly type: "string";
|
|
4807
|
+
};
|
|
4808
|
+
readonly descriptionTranslationKey: {
|
|
4809
|
+
readonly type: "string";
|
|
4810
|
+
};
|
|
4811
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
4812
|
+
readonly type: "string";
|
|
4813
|
+
};
|
|
4814
|
+
};
|
|
4815
|
+
readonly additionalProperties: false;
|
|
4816
|
+
};
|
|
4726
4817
|
};
|
|
4727
4818
|
};
|
|
4728
4819
|
readonly additionalProperties: false;
|
|
@@ -5222,6 +5313,10 @@ export declare const themeConfigSchema: {
|
|
|
5222
5313
|
readonly type: "string";
|
|
5223
5314
|
};
|
|
5224
5315
|
};
|
|
5316
|
+
readonly fromProjectUrl: {
|
|
5317
|
+
readonly type: "string";
|
|
5318
|
+
readonly format: "uri";
|
|
5319
|
+
};
|
|
5225
5320
|
};
|
|
5226
5321
|
};
|
|
5227
5322
|
};
|
|
@@ -895,7 +895,98 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
895
895
|
readonly additionalProperties: false;
|
|
896
896
|
};
|
|
897
897
|
};
|
|
898
|
-
readonly additionalProperties:
|
|
898
|
+
readonly additionalProperties: {
|
|
899
|
+
readonly type: "object";
|
|
900
|
+
readonly properties: {
|
|
901
|
+
readonly slug: {
|
|
902
|
+
readonly type: "string";
|
|
903
|
+
};
|
|
904
|
+
readonly hide: {
|
|
905
|
+
readonly type: "boolean";
|
|
906
|
+
};
|
|
907
|
+
readonly includes: {
|
|
908
|
+
readonly type: "array";
|
|
909
|
+
readonly items: {
|
|
910
|
+
readonly type: "object";
|
|
911
|
+
readonly required: readonly ["type"];
|
|
912
|
+
readonly properties: {
|
|
913
|
+
readonly type: {
|
|
914
|
+
readonly type: "string";
|
|
915
|
+
};
|
|
916
|
+
};
|
|
917
|
+
readonly additionalProperties: false;
|
|
918
|
+
};
|
|
919
|
+
};
|
|
920
|
+
readonly excludes: {
|
|
921
|
+
readonly type: "array";
|
|
922
|
+
readonly items: {
|
|
923
|
+
readonly type: "object";
|
|
924
|
+
readonly required: readonly ["key"];
|
|
925
|
+
readonly properties: {
|
|
926
|
+
readonly key: {
|
|
927
|
+
readonly type: "string";
|
|
928
|
+
};
|
|
929
|
+
};
|
|
930
|
+
readonly additionalProperties: false;
|
|
931
|
+
};
|
|
932
|
+
};
|
|
933
|
+
readonly filters: {
|
|
934
|
+
readonly type: "array";
|
|
935
|
+
readonly items: {
|
|
936
|
+
readonly type: "object";
|
|
937
|
+
readonly required: readonly ["property", "title"];
|
|
938
|
+
readonly properties: {
|
|
939
|
+
readonly property: {
|
|
940
|
+
readonly type: "string";
|
|
941
|
+
};
|
|
942
|
+
readonly hide: {
|
|
943
|
+
readonly type: "boolean";
|
|
944
|
+
};
|
|
945
|
+
readonly label: {
|
|
946
|
+
readonly type: "string";
|
|
947
|
+
};
|
|
948
|
+
readonly options: {
|
|
949
|
+
readonly type: "array";
|
|
950
|
+
readonly items: {
|
|
951
|
+
readonly type: "string";
|
|
952
|
+
};
|
|
953
|
+
};
|
|
954
|
+
readonly type: {
|
|
955
|
+
readonly type: "string";
|
|
956
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
957
|
+
readonly default: "checkboxes";
|
|
958
|
+
};
|
|
959
|
+
readonly title: {
|
|
960
|
+
readonly type: "string";
|
|
961
|
+
};
|
|
962
|
+
readonly titleTranslationKey: {
|
|
963
|
+
readonly type: "string";
|
|
964
|
+
};
|
|
965
|
+
readonly parentFilter: {
|
|
966
|
+
readonly type: "string";
|
|
967
|
+
};
|
|
968
|
+
readonly valuesMapping: {
|
|
969
|
+
readonly type: "object";
|
|
970
|
+
readonly additionalProperties: {
|
|
971
|
+
readonly type: "string";
|
|
972
|
+
};
|
|
973
|
+
};
|
|
974
|
+
};
|
|
975
|
+
readonly additionalProperties: false;
|
|
976
|
+
};
|
|
977
|
+
};
|
|
978
|
+
readonly titleTranslationKey: {
|
|
979
|
+
readonly type: "string";
|
|
980
|
+
};
|
|
981
|
+
readonly descriptionTranslationKey: {
|
|
982
|
+
readonly type: "string";
|
|
983
|
+
};
|
|
984
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
985
|
+
readonly type: "string";
|
|
986
|
+
};
|
|
987
|
+
};
|
|
988
|
+
readonly additionalProperties: false;
|
|
989
|
+
};
|
|
899
990
|
};
|
|
900
991
|
};
|
|
901
992
|
readonly additionalProperties: false;
|
|
@@ -78,7 +78,7 @@ exports.entitiesCatalogConfigSchema = {
|
|
|
78
78
|
dataSchemas: exports.entityCatalogSpecificCatalogSchema,
|
|
79
79
|
apiOperations: exports.entityCatalogSpecificCatalogSchema,
|
|
80
80
|
},
|
|
81
|
-
additionalProperties:
|
|
81
|
+
additionalProperties: exports.entityCatalogSpecificCatalogSchema,
|
|
82
82
|
},
|
|
83
83
|
},
|
|
84
84
|
additionalProperties: false,
|
|
@@ -21,10 +21,6 @@ export declare const reuniteConfigSchema: {
|
|
|
21
21
|
readonly ignoreRespectMonitoring: {
|
|
22
22
|
readonly type: "boolean";
|
|
23
23
|
};
|
|
24
|
-
readonly projectUrl: {
|
|
25
|
-
readonly type: "string";
|
|
26
|
-
readonly format: "uri";
|
|
27
|
-
};
|
|
28
24
|
readonly jobs: {
|
|
29
25
|
readonly type: "array";
|
|
30
26
|
readonly items: {
|