@redocly/config 0.14.0 → 0.16.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 +728 -0
- package/lib/ex-theme-config-schemas.d.ts +124 -0
- package/lib/ex-theme-config-schemas.js +1 -0
- package/lib/feedback-config-schema.d.ts +144 -0
- package/lib/feedback-config-schema.js +20 -14
- package/lib/graphql-config-schema.d.ts +120 -0
- package/lib/portal-shared-types.d.ts +2 -0
- package/lib/product-override-schema.d.ts +1200 -0
- package/lib/redoc-config-schema.d.ts +120 -0
- package/lib/root-config-schema.d.ts +4004 -0
- package/lib/types.d.ts +2 -0
- package/lib-esm/default-theme-config-schema.d.ts +728 -0
- package/lib-esm/ex-theme-config-schemas.d.ts +124 -0
- package/lib-esm/ex-theme-config-schemas.js +1 -0
- package/lib-esm/feedback-config-schema.d.ts +144 -0
- package/lib-esm/feedback-config-schema.js +19 -13
- package/lib-esm/graphql-config-schema.d.ts +120 -0
- package/lib-esm/portal-shared-types.d.ts +2 -0
- package/lib-esm/product-override-schema.d.ts +1200 -0
- package/lib-esm/redoc-config-schema.d.ts +120 -0
- package/lib-esm/root-config-schema.d.ts +4004 -0
- package/lib-esm/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -58,6 +58,126 @@ export declare const redocConfigSchema: {
|
|
|
58
58
|
readonly reasons: {
|
|
59
59
|
readonly type: "object";
|
|
60
60
|
readonly properties: {
|
|
61
|
+
readonly like: {
|
|
62
|
+
readonly type: "object";
|
|
63
|
+
readonly properties: {
|
|
64
|
+
readonly hide: {
|
|
65
|
+
readonly type: "boolean";
|
|
66
|
+
readonly default: false;
|
|
67
|
+
};
|
|
68
|
+
readonly component: {
|
|
69
|
+
readonly type: "string";
|
|
70
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
71
|
+
readonly default: "checkbox";
|
|
72
|
+
};
|
|
73
|
+
readonly label: {
|
|
74
|
+
readonly type: "string";
|
|
75
|
+
};
|
|
76
|
+
readonly items: {
|
|
77
|
+
readonly type: "array";
|
|
78
|
+
readonly items: {
|
|
79
|
+
readonly type: "string";
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
readonly additionalProperties: false;
|
|
84
|
+
};
|
|
85
|
+
readonly dislike: {
|
|
86
|
+
readonly type: "object";
|
|
87
|
+
readonly properties: {
|
|
88
|
+
readonly hide: {
|
|
89
|
+
readonly type: "boolean";
|
|
90
|
+
readonly default: false;
|
|
91
|
+
};
|
|
92
|
+
readonly component: {
|
|
93
|
+
readonly type: "string";
|
|
94
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
95
|
+
readonly default: "checkbox";
|
|
96
|
+
};
|
|
97
|
+
readonly label: {
|
|
98
|
+
readonly type: "string";
|
|
99
|
+
};
|
|
100
|
+
readonly items: {
|
|
101
|
+
readonly type: "array";
|
|
102
|
+
readonly items: {
|
|
103
|
+
readonly type: "string";
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
readonly additionalProperties: false;
|
|
108
|
+
};
|
|
109
|
+
readonly satisfied: {
|
|
110
|
+
readonly type: "object";
|
|
111
|
+
readonly properties: {
|
|
112
|
+
readonly hide: {
|
|
113
|
+
readonly type: "boolean";
|
|
114
|
+
readonly default: false;
|
|
115
|
+
};
|
|
116
|
+
readonly component: {
|
|
117
|
+
readonly type: "string";
|
|
118
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
119
|
+
readonly default: "checkbox";
|
|
120
|
+
};
|
|
121
|
+
readonly label: {
|
|
122
|
+
readonly type: "string";
|
|
123
|
+
};
|
|
124
|
+
readonly items: {
|
|
125
|
+
readonly type: "array";
|
|
126
|
+
readonly items: {
|
|
127
|
+
readonly type: "string";
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
readonly additionalProperties: false;
|
|
132
|
+
};
|
|
133
|
+
readonly neutral: {
|
|
134
|
+
readonly type: "object";
|
|
135
|
+
readonly properties: {
|
|
136
|
+
readonly hide: {
|
|
137
|
+
readonly type: "boolean";
|
|
138
|
+
readonly default: false;
|
|
139
|
+
};
|
|
140
|
+
readonly component: {
|
|
141
|
+
readonly type: "string";
|
|
142
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
143
|
+
readonly default: "checkbox";
|
|
144
|
+
};
|
|
145
|
+
readonly label: {
|
|
146
|
+
readonly type: "string";
|
|
147
|
+
};
|
|
148
|
+
readonly items: {
|
|
149
|
+
readonly type: "array";
|
|
150
|
+
readonly items: {
|
|
151
|
+
readonly type: "string";
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
readonly additionalProperties: false;
|
|
156
|
+
};
|
|
157
|
+
readonly dissatisfied: {
|
|
158
|
+
readonly type: "object";
|
|
159
|
+
readonly properties: {
|
|
160
|
+
readonly hide: {
|
|
161
|
+
readonly type: "boolean";
|
|
162
|
+
readonly default: false;
|
|
163
|
+
};
|
|
164
|
+
readonly component: {
|
|
165
|
+
readonly type: "string";
|
|
166
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
167
|
+
readonly default: "checkbox";
|
|
168
|
+
};
|
|
169
|
+
readonly label: {
|
|
170
|
+
readonly type: "string";
|
|
171
|
+
};
|
|
172
|
+
readonly items: {
|
|
173
|
+
readonly type: "array";
|
|
174
|
+
readonly items: {
|
|
175
|
+
readonly type: "string";
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
readonly additionalProperties: false;
|
|
180
|
+
};
|
|
61
181
|
readonly hide: {
|
|
62
182
|
readonly type: "boolean";
|
|
63
183
|
readonly default: false;
|