@redocly/config 0.30.0 → 0.32.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 +195 -1
- package/lib/entities-catalog-config-schema.d.ts +518 -1
- package/lib/entities-catalog-config-schema.js +101 -2
- package/lib/reunite-config-schema.d.ts +0 -7
- package/lib/reunite-config-schema.js +0 -4
- package/lib/root-config-schema.d.ts +1246 -275
- package/lib/root-config-schema.js +1 -1
- package/lib/types/api-functions-types.d.ts +1 -1
- package/lib/types/catalog-entity-types.d.ts +18 -0
- package/lib/types/config-types.d.ts +0 -2
- package/lib/types/portal-shared-types.d.ts +1 -1
- package/lib-esm/default-theme-config-schema.d.ts +195 -1
- package/lib-esm/entities-catalog-config-schema.d.ts +518 -1
- package/lib-esm/entities-catalog-config-schema.js +100 -1
- package/lib-esm/reunite-config-schema.d.ts +0 -7
- package/lib-esm/reunite-config-schema.js +0 -4
- package/lib-esm/root-config-schema.d.ts +1246 -275
- package/lib-esm/root-config-schema.js +1 -1
- package/lib-esm/types/api-functions-types.d.ts +1 -1
- package/lib-esm/types/catalog-entity-types.d.ts +18 -0
- package/lib-esm/types/config-types.d.ts +0 -2
- package/lib-esm/types/portal-shared-types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3982,6 +3982,109 @@ export declare const themeConfigSchema: {
|
|
|
3982
3982
|
readonly entitiesCatalog: {
|
|
3983
3983
|
readonly type: "object";
|
|
3984
3984
|
readonly properties: {
|
|
3985
|
+
readonly entityTypes: {
|
|
3986
|
+
readonly type: "object";
|
|
3987
|
+
readonly additionalProperties: {
|
|
3988
|
+
readonly type: "object";
|
|
3989
|
+
readonly required: readonly ["name", "description", "metadataSchema"];
|
|
3990
|
+
readonly properties: {
|
|
3991
|
+
readonly name: {
|
|
3992
|
+
readonly type: "string";
|
|
3993
|
+
readonly description: "Display name of the entity type";
|
|
3994
|
+
};
|
|
3995
|
+
readonly description: {
|
|
3996
|
+
readonly type: "string";
|
|
3997
|
+
readonly description: "Description of the entity type";
|
|
3998
|
+
};
|
|
3999
|
+
readonly metadataSchema: {
|
|
4000
|
+
readonly type: "object";
|
|
4001
|
+
readonly required: readonly ["type", "properties"];
|
|
4002
|
+
readonly properties: {
|
|
4003
|
+
readonly type: {
|
|
4004
|
+
readonly type: "string";
|
|
4005
|
+
readonly enum: readonly ["object"];
|
|
4006
|
+
};
|
|
4007
|
+
readonly description: {
|
|
4008
|
+
readonly type: "string";
|
|
4009
|
+
};
|
|
4010
|
+
readonly properties: {
|
|
4011
|
+
readonly type: "object";
|
|
4012
|
+
readonly additionalProperties: {
|
|
4013
|
+
readonly type: "object";
|
|
4014
|
+
readonly properties: {
|
|
4015
|
+
readonly type: {
|
|
4016
|
+
readonly type: "string";
|
|
4017
|
+
readonly enum: readonly ["string", "number", "boolean", "array", "object"];
|
|
4018
|
+
};
|
|
4019
|
+
readonly description: {
|
|
4020
|
+
readonly type: "string";
|
|
4021
|
+
};
|
|
4022
|
+
readonly example: {
|
|
4023
|
+
readonly oneOf: readonly [{
|
|
4024
|
+
readonly type: "string";
|
|
4025
|
+
}, {
|
|
4026
|
+
readonly type: "number";
|
|
4027
|
+
}, {
|
|
4028
|
+
readonly type: "boolean";
|
|
4029
|
+
}, {
|
|
4030
|
+
readonly type: "array";
|
|
4031
|
+
}, {
|
|
4032
|
+
readonly type: "object";
|
|
4033
|
+
}];
|
|
4034
|
+
};
|
|
4035
|
+
readonly enum: {
|
|
4036
|
+
readonly type: "array";
|
|
4037
|
+
readonly items: {
|
|
4038
|
+
readonly type: "string";
|
|
4039
|
+
};
|
|
4040
|
+
};
|
|
4041
|
+
readonly pattern: {
|
|
4042
|
+
readonly type: "string";
|
|
4043
|
+
};
|
|
4044
|
+
readonly format: {
|
|
4045
|
+
readonly type: "string";
|
|
4046
|
+
};
|
|
4047
|
+
readonly minimum: {
|
|
4048
|
+
readonly type: "number";
|
|
4049
|
+
};
|
|
4050
|
+
readonly maximum: {
|
|
4051
|
+
readonly type: "number";
|
|
4052
|
+
};
|
|
4053
|
+
readonly items: {
|
|
4054
|
+
readonly type: "object";
|
|
4055
|
+
};
|
|
4056
|
+
};
|
|
4057
|
+
readonly additionalProperties: true;
|
|
4058
|
+
};
|
|
4059
|
+
};
|
|
4060
|
+
readonly required: {
|
|
4061
|
+
readonly type: "array";
|
|
4062
|
+
readonly items: {
|
|
4063
|
+
readonly type: "string";
|
|
4064
|
+
};
|
|
4065
|
+
};
|
|
4066
|
+
readonly additionalProperties: {
|
|
4067
|
+
readonly type: "boolean";
|
|
4068
|
+
};
|
|
4069
|
+
};
|
|
4070
|
+
readonly additionalProperties: true;
|
|
4071
|
+
};
|
|
4072
|
+
readonly icon: {
|
|
4073
|
+
readonly type: "object";
|
|
4074
|
+
readonly properties: {
|
|
4075
|
+
readonly src: {
|
|
4076
|
+
readonly type: "string";
|
|
4077
|
+
};
|
|
4078
|
+
readonly srcSet: {
|
|
4079
|
+
readonly type: "string";
|
|
4080
|
+
};
|
|
4081
|
+
};
|
|
4082
|
+
readonly additionalProperties: false;
|
|
4083
|
+
};
|
|
4084
|
+
};
|
|
4085
|
+
readonly additionalProperties: false;
|
|
4086
|
+
};
|
|
4087
|
+
};
|
|
3985
4088
|
readonly catalogs: {
|
|
3986
4089
|
readonly type: "object";
|
|
3987
4090
|
readonly properties: {
|
|
@@ -4722,7 +4825,98 @@ export declare const themeConfigSchema: {
|
|
|
4722
4825
|
readonly additionalProperties: false;
|
|
4723
4826
|
};
|
|
4724
4827
|
};
|
|
4725
|
-
readonly additionalProperties:
|
|
4828
|
+
readonly additionalProperties: {
|
|
4829
|
+
readonly type: "object";
|
|
4830
|
+
readonly properties: {
|
|
4831
|
+
readonly slug: {
|
|
4832
|
+
readonly type: "string";
|
|
4833
|
+
};
|
|
4834
|
+
readonly hide: {
|
|
4835
|
+
readonly type: "boolean";
|
|
4836
|
+
};
|
|
4837
|
+
readonly includes: {
|
|
4838
|
+
readonly type: "array";
|
|
4839
|
+
readonly items: {
|
|
4840
|
+
readonly type: "object";
|
|
4841
|
+
readonly required: readonly ["type"];
|
|
4842
|
+
readonly properties: {
|
|
4843
|
+
readonly type: {
|
|
4844
|
+
readonly type: "string";
|
|
4845
|
+
};
|
|
4846
|
+
};
|
|
4847
|
+
readonly additionalProperties: false;
|
|
4848
|
+
};
|
|
4849
|
+
};
|
|
4850
|
+
readonly excludes: {
|
|
4851
|
+
readonly type: "array";
|
|
4852
|
+
readonly items: {
|
|
4853
|
+
readonly type: "object";
|
|
4854
|
+
readonly required: readonly ["key"];
|
|
4855
|
+
readonly properties: {
|
|
4856
|
+
readonly key: {
|
|
4857
|
+
readonly type: "string";
|
|
4858
|
+
};
|
|
4859
|
+
};
|
|
4860
|
+
readonly additionalProperties: false;
|
|
4861
|
+
};
|
|
4862
|
+
};
|
|
4863
|
+
readonly filters: {
|
|
4864
|
+
readonly type: "array";
|
|
4865
|
+
readonly items: {
|
|
4866
|
+
readonly type: "object";
|
|
4867
|
+
readonly required: readonly ["property", "title"];
|
|
4868
|
+
readonly properties: {
|
|
4869
|
+
readonly property: {
|
|
4870
|
+
readonly type: "string";
|
|
4871
|
+
};
|
|
4872
|
+
readonly hide: {
|
|
4873
|
+
readonly type: "boolean";
|
|
4874
|
+
};
|
|
4875
|
+
readonly label: {
|
|
4876
|
+
readonly type: "string";
|
|
4877
|
+
};
|
|
4878
|
+
readonly options: {
|
|
4879
|
+
readonly type: "array";
|
|
4880
|
+
readonly items: {
|
|
4881
|
+
readonly type: "string";
|
|
4882
|
+
};
|
|
4883
|
+
};
|
|
4884
|
+
readonly type: {
|
|
4885
|
+
readonly type: "string";
|
|
4886
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
4887
|
+
readonly default: "checkboxes";
|
|
4888
|
+
};
|
|
4889
|
+
readonly title: {
|
|
4890
|
+
readonly type: "string";
|
|
4891
|
+
};
|
|
4892
|
+
readonly titleTranslationKey: {
|
|
4893
|
+
readonly type: "string";
|
|
4894
|
+
};
|
|
4895
|
+
readonly parentFilter: {
|
|
4896
|
+
readonly type: "string";
|
|
4897
|
+
};
|
|
4898
|
+
readonly valuesMapping: {
|
|
4899
|
+
readonly type: "object";
|
|
4900
|
+
readonly additionalProperties: {
|
|
4901
|
+
readonly type: "string";
|
|
4902
|
+
};
|
|
4903
|
+
};
|
|
4904
|
+
};
|
|
4905
|
+
readonly additionalProperties: false;
|
|
4906
|
+
};
|
|
4907
|
+
};
|
|
4908
|
+
readonly titleTranslationKey: {
|
|
4909
|
+
readonly type: "string";
|
|
4910
|
+
};
|
|
4911
|
+
readonly descriptionTranslationKey: {
|
|
4912
|
+
readonly type: "string";
|
|
4913
|
+
};
|
|
4914
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
4915
|
+
readonly type: "string";
|
|
4916
|
+
};
|
|
4917
|
+
};
|
|
4918
|
+
readonly additionalProperties: false;
|
|
4919
|
+
};
|
|
4726
4920
|
};
|
|
4727
4921
|
};
|
|
4728
4922
|
readonly additionalProperties: false;
|