@redocly/config 0.15.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 +738 -18
- package/lib/ex-theme-config-schemas.d.ts +120 -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 +3980 -0
- package/lib/types.d.ts +2 -0
- package/lib-esm/default-theme-config-schema.d.ts +738 -18
- package/lib-esm/ex-theme-config-schemas.d.ts +120 -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 +3980 -0
- package/lib-esm/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1934,6 +1934,126 @@ export declare const apiConfigSchema: {
|
|
|
1934
1934
|
readonly reasons: {
|
|
1935
1935
|
readonly type: "object";
|
|
1936
1936
|
readonly properties: {
|
|
1937
|
+
readonly like: {
|
|
1938
|
+
readonly type: "object";
|
|
1939
|
+
readonly properties: {
|
|
1940
|
+
readonly hide: {
|
|
1941
|
+
readonly type: "boolean";
|
|
1942
|
+
readonly default: false;
|
|
1943
|
+
};
|
|
1944
|
+
readonly component: {
|
|
1945
|
+
readonly type: "string";
|
|
1946
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
1947
|
+
readonly default: "checkbox";
|
|
1948
|
+
};
|
|
1949
|
+
readonly label: {
|
|
1950
|
+
readonly type: "string";
|
|
1951
|
+
};
|
|
1952
|
+
readonly items: {
|
|
1953
|
+
readonly type: "array";
|
|
1954
|
+
readonly items: {
|
|
1955
|
+
readonly type: "string";
|
|
1956
|
+
};
|
|
1957
|
+
};
|
|
1958
|
+
};
|
|
1959
|
+
readonly additionalProperties: false;
|
|
1960
|
+
};
|
|
1961
|
+
readonly dislike: {
|
|
1962
|
+
readonly type: "object";
|
|
1963
|
+
readonly properties: {
|
|
1964
|
+
readonly hide: {
|
|
1965
|
+
readonly type: "boolean";
|
|
1966
|
+
readonly default: false;
|
|
1967
|
+
};
|
|
1968
|
+
readonly component: {
|
|
1969
|
+
readonly type: "string";
|
|
1970
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
1971
|
+
readonly default: "checkbox";
|
|
1972
|
+
};
|
|
1973
|
+
readonly label: {
|
|
1974
|
+
readonly type: "string";
|
|
1975
|
+
};
|
|
1976
|
+
readonly items: {
|
|
1977
|
+
readonly type: "array";
|
|
1978
|
+
readonly items: {
|
|
1979
|
+
readonly type: "string";
|
|
1980
|
+
};
|
|
1981
|
+
};
|
|
1982
|
+
};
|
|
1983
|
+
readonly additionalProperties: false;
|
|
1984
|
+
};
|
|
1985
|
+
readonly satisfied: {
|
|
1986
|
+
readonly type: "object";
|
|
1987
|
+
readonly properties: {
|
|
1988
|
+
readonly hide: {
|
|
1989
|
+
readonly type: "boolean";
|
|
1990
|
+
readonly default: false;
|
|
1991
|
+
};
|
|
1992
|
+
readonly component: {
|
|
1993
|
+
readonly type: "string";
|
|
1994
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
1995
|
+
readonly default: "checkbox";
|
|
1996
|
+
};
|
|
1997
|
+
readonly label: {
|
|
1998
|
+
readonly type: "string";
|
|
1999
|
+
};
|
|
2000
|
+
readonly items: {
|
|
2001
|
+
readonly type: "array";
|
|
2002
|
+
readonly items: {
|
|
2003
|
+
readonly type: "string";
|
|
2004
|
+
};
|
|
2005
|
+
};
|
|
2006
|
+
};
|
|
2007
|
+
readonly additionalProperties: false;
|
|
2008
|
+
};
|
|
2009
|
+
readonly neutral: {
|
|
2010
|
+
readonly type: "object";
|
|
2011
|
+
readonly properties: {
|
|
2012
|
+
readonly hide: {
|
|
2013
|
+
readonly type: "boolean";
|
|
2014
|
+
readonly default: false;
|
|
2015
|
+
};
|
|
2016
|
+
readonly component: {
|
|
2017
|
+
readonly type: "string";
|
|
2018
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2019
|
+
readonly default: "checkbox";
|
|
2020
|
+
};
|
|
2021
|
+
readonly label: {
|
|
2022
|
+
readonly type: "string";
|
|
2023
|
+
};
|
|
2024
|
+
readonly items: {
|
|
2025
|
+
readonly type: "array";
|
|
2026
|
+
readonly items: {
|
|
2027
|
+
readonly type: "string";
|
|
2028
|
+
};
|
|
2029
|
+
};
|
|
2030
|
+
};
|
|
2031
|
+
readonly additionalProperties: false;
|
|
2032
|
+
};
|
|
2033
|
+
readonly dissatisfied: {
|
|
2034
|
+
readonly type: "object";
|
|
2035
|
+
readonly properties: {
|
|
2036
|
+
readonly hide: {
|
|
2037
|
+
readonly type: "boolean";
|
|
2038
|
+
readonly default: false;
|
|
2039
|
+
};
|
|
2040
|
+
readonly component: {
|
|
2041
|
+
readonly type: "string";
|
|
2042
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2043
|
+
readonly default: "checkbox";
|
|
2044
|
+
};
|
|
2045
|
+
readonly label: {
|
|
2046
|
+
readonly type: "string";
|
|
2047
|
+
};
|
|
2048
|
+
readonly items: {
|
|
2049
|
+
readonly type: "array";
|
|
2050
|
+
readonly items: {
|
|
2051
|
+
readonly type: "string";
|
|
2052
|
+
};
|
|
2053
|
+
};
|
|
2054
|
+
};
|
|
2055
|
+
readonly additionalProperties: false;
|
|
2056
|
+
};
|
|
1937
2057
|
readonly hide: {
|
|
1938
2058
|
readonly type: "boolean";
|
|
1939
2059
|
readonly default: false;
|
|
@@ -2396,6 +2516,126 @@ export declare const apiConfigSchema: {
|
|
|
2396
2516
|
readonly reasons: {
|
|
2397
2517
|
readonly type: "object";
|
|
2398
2518
|
readonly properties: {
|
|
2519
|
+
readonly like: {
|
|
2520
|
+
readonly type: "object";
|
|
2521
|
+
readonly properties: {
|
|
2522
|
+
readonly hide: {
|
|
2523
|
+
readonly type: "boolean";
|
|
2524
|
+
readonly default: false;
|
|
2525
|
+
};
|
|
2526
|
+
readonly component: {
|
|
2527
|
+
readonly type: "string";
|
|
2528
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2529
|
+
readonly default: "checkbox";
|
|
2530
|
+
};
|
|
2531
|
+
readonly label: {
|
|
2532
|
+
readonly type: "string";
|
|
2533
|
+
};
|
|
2534
|
+
readonly items: {
|
|
2535
|
+
readonly type: "array";
|
|
2536
|
+
readonly items: {
|
|
2537
|
+
readonly type: "string";
|
|
2538
|
+
};
|
|
2539
|
+
};
|
|
2540
|
+
};
|
|
2541
|
+
readonly additionalProperties: false;
|
|
2542
|
+
};
|
|
2543
|
+
readonly dislike: {
|
|
2544
|
+
readonly type: "object";
|
|
2545
|
+
readonly properties: {
|
|
2546
|
+
readonly hide: {
|
|
2547
|
+
readonly type: "boolean";
|
|
2548
|
+
readonly default: false;
|
|
2549
|
+
};
|
|
2550
|
+
readonly component: {
|
|
2551
|
+
readonly type: "string";
|
|
2552
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2553
|
+
readonly default: "checkbox";
|
|
2554
|
+
};
|
|
2555
|
+
readonly label: {
|
|
2556
|
+
readonly type: "string";
|
|
2557
|
+
};
|
|
2558
|
+
readonly items: {
|
|
2559
|
+
readonly type: "array";
|
|
2560
|
+
readonly items: {
|
|
2561
|
+
readonly type: "string";
|
|
2562
|
+
};
|
|
2563
|
+
};
|
|
2564
|
+
};
|
|
2565
|
+
readonly additionalProperties: false;
|
|
2566
|
+
};
|
|
2567
|
+
readonly satisfied: {
|
|
2568
|
+
readonly type: "object";
|
|
2569
|
+
readonly properties: {
|
|
2570
|
+
readonly hide: {
|
|
2571
|
+
readonly type: "boolean";
|
|
2572
|
+
readonly default: false;
|
|
2573
|
+
};
|
|
2574
|
+
readonly component: {
|
|
2575
|
+
readonly type: "string";
|
|
2576
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2577
|
+
readonly default: "checkbox";
|
|
2578
|
+
};
|
|
2579
|
+
readonly label: {
|
|
2580
|
+
readonly type: "string";
|
|
2581
|
+
};
|
|
2582
|
+
readonly items: {
|
|
2583
|
+
readonly type: "array";
|
|
2584
|
+
readonly items: {
|
|
2585
|
+
readonly type: "string";
|
|
2586
|
+
};
|
|
2587
|
+
};
|
|
2588
|
+
};
|
|
2589
|
+
readonly additionalProperties: false;
|
|
2590
|
+
};
|
|
2591
|
+
readonly neutral: {
|
|
2592
|
+
readonly type: "object";
|
|
2593
|
+
readonly properties: {
|
|
2594
|
+
readonly hide: {
|
|
2595
|
+
readonly type: "boolean";
|
|
2596
|
+
readonly default: false;
|
|
2597
|
+
};
|
|
2598
|
+
readonly component: {
|
|
2599
|
+
readonly type: "string";
|
|
2600
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2601
|
+
readonly default: "checkbox";
|
|
2602
|
+
};
|
|
2603
|
+
readonly label: {
|
|
2604
|
+
readonly type: "string";
|
|
2605
|
+
};
|
|
2606
|
+
readonly items: {
|
|
2607
|
+
readonly type: "array";
|
|
2608
|
+
readonly items: {
|
|
2609
|
+
readonly type: "string";
|
|
2610
|
+
};
|
|
2611
|
+
};
|
|
2612
|
+
};
|
|
2613
|
+
readonly additionalProperties: false;
|
|
2614
|
+
};
|
|
2615
|
+
readonly dissatisfied: {
|
|
2616
|
+
readonly type: "object";
|
|
2617
|
+
readonly properties: {
|
|
2618
|
+
readonly hide: {
|
|
2619
|
+
readonly type: "boolean";
|
|
2620
|
+
readonly default: false;
|
|
2621
|
+
};
|
|
2622
|
+
readonly component: {
|
|
2623
|
+
readonly type: "string";
|
|
2624
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2625
|
+
readonly default: "checkbox";
|
|
2626
|
+
};
|
|
2627
|
+
readonly label: {
|
|
2628
|
+
readonly type: "string";
|
|
2629
|
+
};
|
|
2630
|
+
readonly items: {
|
|
2631
|
+
readonly type: "array";
|
|
2632
|
+
readonly items: {
|
|
2633
|
+
readonly type: "string";
|
|
2634
|
+
};
|
|
2635
|
+
};
|
|
2636
|
+
};
|
|
2637
|
+
readonly additionalProperties: false;
|
|
2638
|
+
};
|
|
2399
2639
|
readonly hide: {
|
|
2400
2640
|
readonly type: "boolean";
|
|
2401
2641
|
readonly default: false;
|
|
@@ -3894,6 +4134,126 @@ export declare const apiConfigSchema: {
|
|
|
3894
4134
|
readonly reasons: {
|
|
3895
4135
|
readonly type: "object";
|
|
3896
4136
|
readonly properties: {
|
|
4137
|
+
readonly like: {
|
|
4138
|
+
readonly type: "object";
|
|
4139
|
+
readonly properties: {
|
|
4140
|
+
readonly hide: {
|
|
4141
|
+
readonly type: "boolean";
|
|
4142
|
+
readonly default: false;
|
|
4143
|
+
};
|
|
4144
|
+
readonly component: {
|
|
4145
|
+
readonly type: "string";
|
|
4146
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4147
|
+
readonly default: "checkbox";
|
|
4148
|
+
};
|
|
4149
|
+
readonly label: {
|
|
4150
|
+
readonly type: "string";
|
|
4151
|
+
};
|
|
4152
|
+
readonly items: {
|
|
4153
|
+
readonly type: "array";
|
|
4154
|
+
readonly items: {
|
|
4155
|
+
readonly type: "string";
|
|
4156
|
+
};
|
|
4157
|
+
};
|
|
4158
|
+
};
|
|
4159
|
+
readonly additionalProperties: false;
|
|
4160
|
+
};
|
|
4161
|
+
readonly dislike: {
|
|
4162
|
+
readonly type: "object";
|
|
4163
|
+
readonly properties: {
|
|
4164
|
+
readonly hide: {
|
|
4165
|
+
readonly type: "boolean";
|
|
4166
|
+
readonly default: false;
|
|
4167
|
+
};
|
|
4168
|
+
readonly component: {
|
|
4169
|
+
readonly type: "string";
|
|
4170
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4171
|
+
readonly default: "checkbox";
|
|
4172
|
+
};
|
|
4173
|
+
readonly label: {
|
|
4174
|
+
readonly type: "string";
|
|
4175
|
+
};
|
|
4176
|
+
readonly items: {
|
|
4177
|
+
readonly type: "array";
|
|
4178
|
+
readonly items: {
|
|
4179
|
+
readonly type: "string";
|
|
4180
|
+
};
|
|
4181
|
+
};
|
|
4182
|
+
};
|
|
4183
|
+
readonly additionalProperties: false;
|
|
4184
|
+
};
|
|
4185
|
+
readonly satisfied: {
|
|
4186
|
+
readonly type: "object";
|
|
4187
|
+
readonly properties: {
|
|
4188
|
+
readonly hide: {
|
|
4189
|
+
readonly type: "boolean";
|
|
4190
|
+
readonly default: false;
|
|
4191
|
+
};
|
|
4192
|
+
readonly component: {
|
|
4193
|
+
readonly type: "string";
|
|
4194
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4195
|
+
readonly default: "checkbox";
|
|
4196
|
+
};
|
|
4197
|
+
readonly label: {
|
|
4198
|
+
readonly type: "string";
|
|
4199
|
+
};
|
|
4200
|
+
readonly items: {
|
|
4201
|
+
readonly type: "array";
|
|
4202
|
+
readonly items: {
|
|
4203
|
+
readonly type: "string";
|
|
4204
|
+
};
|
|
4205
|
+
};
|
|
4206
|
+
};
|
|
4207
|
+
readonly additionalProperties: false;
|
|
4208
|
+
};
|
|
4209
|
+
readonly neutral: {
|
|
4210
|
+
readonly type: "object";
|
|
4211
|
+
readonly properties: {
|
|
4212
|
+
readonly hide: {
|
|
4213
|
+
readonly type: "boolean";
|
|
4214
|
+
readonly default: false;
|
|
4215
|
+
};
|
|
4216
|
+
readonly component: {
|
|
4217
|
+
readonly type: "string";
|
|
4218
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4219
|
+
readonly default: "checkbox";
|
|
4220
|
+
};
|
|
4221
|
+
readonly label: {
|
|
4222
|
+
readonly type: "string";
|
|
4223
|
+
};
|
|
4224
|
+
readonly items: {
|
|
4225
|
+
readonly type: "array";
|
|
4226
|
+
readonly items: {
|
|
4227
|
+
readonly type: "string";
|
|
4228
|
+
};
|
|
4229
|
+
};
|
|
4230
|
+
};
|
|
4231
|
+
readonly additionalProperties: false;
|
|
4232
|
+
};
|
|
4233
|
+
readonly dissatisfied: {
|
|
4234
|
+
readonly type: "object";
|
|
4235
|
+
readonly properties: {
|
|
4236
|
+
readonly hide: {
|
|
4237
|
+
readonly type: "boolean";
|
|
4238
|
+
readonly default: false;
|
|
4239
|
+
};
|
|
4240
|
+
readonly component: {
|
|
4241
|
+
readonly type: "string";
|
|
4242
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4243
|
+
readonly default: "checkbox";
|
|
4244
|
+
};
|
|
4245
|
+
readonly label: {
|
|
4246
|
+
readonly type: "string";
|
|
4247
|
+
};
|
|
4248
|
+
readonly items: {
|
|
4249
|
+
readonly type: "array";
|
|
4250
|
+
readonly items: {
|
|
4251
|
+
readonly type: "string";
|
|
4252
|
+
};
|
|
4253
|
+
};
|
|
4254
|
+
};
|
|
4255
|
+
readonly additionalProperties: false;
|
|
4256
|
+
};
|
|
3897
4257
|
readonly hide: {
|
|
3898
4258
|
readonly type: "boolean";
|
|
3899
4259
|
readonly default: false;
|
|
@@ -4356,6 +4716,126 @@ export declare const apiConfigSchema: {
|
|
|
4356
4716
|
readonly reasons: {
|
|
4357
4717
|
readonly type: "object";
|
|
4358
4718
|
readonly properties: {
|
|
4719
|
+
readonly like: {
|
|
4720
|
+
readonly type: "object";
|
|
4721
|
+
readonly properties: {
|
|
4722
|
+
readonly hide: {
|
|
4723
|
+
readonly type: "boolean";
|
|
4724
|
+
readonly default: false;
|
|
4725
|
+
};
|
|
4726
|
+
readonly component: {
|
|
4727
|
+
readonly type: "string";
|
|
4728
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4729
|
+
readonly default: "checkbox";
|
|
4730
|
+
};
|
|
4731
|
+
readonly label: {
|
|
4732
|
+
readonly type: "string";
|
|
4733
|
+
};
|
|
4734
|
+
readonly items: {
|
|
4735
|
+
readonly type: "array";
|
|
4736
|
+
readonly items: {
|
|
4737
|
+
readonly type: "string";
|
|
4738
|
+
};
|
|
4739
|
+
};
|
|
4740
|
+
};
|
|
4741
|
+
readonly additionalProperties: false;
|
|
4742
|
+
};
|
|
4743
|
+
readonly dislike: {
|
|
4744
|
+
readonly type: "object";
|
|
4745
|
+
readonly properties: {
|
|
4746
|
+
readonly hide: {
|
|
4747
|
+
readonly type: "boolean";
|
|
4748
|
+
readonly default: false;
|
|
4749
|
+
};
|
|
4750
|
+
readonly component: {
|
|
4751
|
+
readonly type: "string";
|
|
4752
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4753
|
+
readonly default: "checkbox";
|
|
4754
|
+
};
|
|
4755
|
+
readonly label: {
|
|
4756
|
+
readonly type: "string";
|
|
4757
|
+
};
|
|
4758
|
+
readonly items: {
|
|
4759
|
+
readonly type: "array";
|
|
4760
|
+
readonly items: {
|
|
4761
|
+
readonly type: "string";
|
|
4762
|
+
};
|
|
4763
|
+
};
|
|
4764
|
+
};
|
|
4765
|
+
readonly additionalProperties: false;
|
|
4766
|
+
};
|
|
4767
|
+
readonly satisfied: {
|
|
4768
|
+
readonly type: "object";
|
|
4769
|
+
readonly properties: {
|
|
4770
|
+
readonly hide: {
|
|
4771
|
+
readonly type: "boolean";
|
|
4772
|
+
readonly default: false;
|
|
4773
|
+
};
|
|
4774
|
+
readonly component: {
|
|
4775
|
+
readonly type: "string";
|
|
4776
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4777
|
+
readonly default: "checkbox";
|
|
4778
|
+
};
|
|
4779
|
+
readonly label: {
|
|
4780
|
+
readonly type: "string";
|
|
4781
|
+
};
|
|
4782
|
+
readonly items: {
|
|
4783
|
+
readonly type: "array";
|
|
4784
|
+
readonly items: {
|
|
4785
|
+
readonly type: "string";
|
|
4786
|
+
};
|
|
4787
|
+
};
|
|
4788
|
+
};
|
|
4789
|
+
readonly additionalProperties: false;
|
|
4790
|
+
};
|
|
4791
|
+
readonly neutral: {
|
|
4792
|
+
readonly type: "object";
|
|
4793
|
+
readonly properties: {
|
|
4794
|
+
readonly hide: {
|
|
4795
|
+
readonly type: "boolean";
|
|
4796
|
+
readonly default: false;
|
|
4797
|
+
};
|
|
4798
|
+
readonly component: {
|
|
4799
|
+
readonly type: "string";
|
|
4800
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4801
|
+
readonly default: "checkbox";
|
|
4802
|
+
};
|
|
4803
|
+
readonly label: {
|
|
4804
|
+
readonly type: "string";
|
|
4805
|
+
};
|
|
4806
|
+
readonly items: {
|
|
4807
|
+
readonly type: "array";
|
|
4808
|
+
readonly items: {
|
|
4809
|
+
readonly type: "string";
|
|
4810
|
+
};
|
|
4811
|
+
};
|
|
4812
|
+
};
|
|
4813
|
+
readonly additionalProperties: false;
|
|
4814
|
+
};
|
|
4815
|
+
readonly dissatisfied: {
|
|
4816
|
+
readonly type: "object";
|
|
4817
|
+
readonly properties: {
|
|
4818
|
+
readonly hide: {
|
|
4819
|
+
readonly type: "boolean";
|
|
4820
|
+
readonly default: false;
|
|
4821
|
+
};
|
|
4822
|
+
readonly component: {
|
|
4823
|
+
readonly type: "string";
|
|
4824
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4825
|
+
readonly default: "checkbox";
|
|
4826
|
+
};
|
|
4827
|
+
readonly label: {
|
|
4828
|
+
readonly type: "string";
|
|
4829
|
+
};
|
|
4830
|
+
readonly items: {
|
|
4831
|
+
readonly type: "array";
|
|
4832
|
+
readonly items: {
|
|
4833
|
+
readonly type: "string";
|
|
4834
|
+
};
|
|
4835
|
+
};
|
|
4836
|
+
};
|
|
4837
|
+
readonly additionalProperties: false;
|
|
4838
|
+
};
|
|
4359
4839
|
readonly hide: {
|
|
4360
4840
|
readonly type: "boolean";
|
|
4361
4841
|
readonly default: false;
|
|
@@ -6666,6 +7146,126 @@ export declare const redoclyConfigSchema: {
|
|
|
6666
7146
|
readonly reasons: {
|
|
6667
7147
|
readonly type: "object";
|
|
6668
7148
|
readonly properties: {
|
|
7149
|
+
readonly like: {
|
|
7150
|
+
readonly type: "object";
|
|
7151
|
+
readonly properties: {
|
|
7152
|
+
readonly hide: {
|
|
7153
|
+
readonly type: "boolean";
|
|
7154
|
+
readonly default: false;
|
|
7155
|
+
};
|
|
7156
|
+
readonly component: {
|
|
7157
|
+
readonly type: "string";
|
|
7158
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
7159
|
+
readonly default: "checkbox";
|
|
7160
|
+
};
|
|
7161
|
+
readonly label: {
|
|
7162
|
+
readonly type: "string";
|
|
7163
|
+
};
|
|
7164
|
+
readonly items: {
|
|
7165
|
+
readonly type: "array";
|
|
7166
|
+
readonly items: {
|
|
7167
|
+
readonly type: "string";
|
|
7168
|
+
};
|
|
7169
|
+
};
|
|
7170
|
+
};
|
|
7171
|
+
readonly additionalProperties: false;
|
|
7172
|
+
};
|
|
7173
|
+
readonly dislike: {
|
|
7174
|
+
readonly type: "object";
|
|
7175
|
+
readonly properties: {
|
|
7176
|
+
readonly hide: {
|
|
7177
|
+
readonly type: "boolean";
|
|
7178
|
+
readonly default: false;
|
|
7179
|
+
};
|
|
7180
|
+
readonly component: {
|
|
7181
|
+
readonly type: "string";
|
|
7182
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
7183
|
+
readonly default: "checkbox";
|
|
7184
|
+
};
|
|
7185
|
+
readonly label: {
|
|
7186
|
+
readonly type: "string";
|
|
7187
|
+
};
|
|
7188
|
+
readonly items: {
|
|
7189
|
+
readonly type: "array";
|
|
7190
|
+
readonly items: {
|
|
7191
|
+
readonly type: "string";
|
|
7192
|
+
};
|
|
7193
|
+
};
|
|
7194
|
+
};
|
|
7195
|
+
readonly additionalProperties: false;
|
|
7196
|
+
};
|
|
7197
|
+
readonly satisfied: {
|
|
7198
|
+
readonly type: "object";
|
|
7199
|
+
readonly properties: {
|
|
7200
|
+
readonly hide: {
|
|
7201
|
+
readonly type: "boolean";
|
|
7202
|
+
readonly default: false;
|
|
7203
|
+
};
|
|
7204
|
+
readonly component: {
|
|
7205
|
+
readonly type: "string";
|
|
7206
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
7207
|
+
readonly default: "checkbox";
|
|
7208
|
+
};
|
|
7209
|
+
readonly label: {
|
|
7210
|
+
readonly type: "string";
|
|
7211
|
+
};
|
|
7212
|
+
readonly items: {
|
|
7213
|
+
readonly type: "array";
|
|
7214
|
+
readonly items: {
|
|
7215
|
+
readonly type: "string";
|
|
7216
|
+
};
|
|
7217
|
+
};
|
|
7218
|
+
};
|
|
7219
|
+
readonly additionalProperties: false;
|
|
7220
|
+
};
|
|
7221
|
+
readonly neutral: {
|
|
7222
|
+
readonly type: "object";
|
|
7223
|
+
readonly properties: {
|
|
7224
|
+
readonly hide: {
|
|
7225
|
+
readonly type: "boolean";
|
|
7226
|
+
readonly default: false;
|
|
7227
|
+
};
|
|
7228
|
+
readonly component: {
|
|
7229
|
+
readonly type: "string";
|
|
7230
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
7231
|
+
readonly default: "checkbox";
|
|
7232
|
+
};
|
|
7233
|
+
readonly label: {
|
|
7234
|
+
readonly type: "string";
|
|
7235
|
+
};
|
|
7236
|
+
readonly items: {
|
|
7237
|
+
readonly type: "array";
|
|
7238
|
+
readonly items: {
|
|
7239
|
+
readonly type: "string";
|
|
7240
|
+
};
|
|
7241
|
+
};
|
|
7242
|
+
};
|
|
7243
|
+
readonly additionalProperties: false;
|
|
7244
|
+
};
|
|
7245
|
+
readonly dissatisfied: {
|
|
7246
|
+
readonly type: "object";
|
|
7247
|
+
readonly properties: {
|
|
7248
|
+
readonly hide: {
|
|
7249
|
+
readonly type: "boolean";
|
|
7250
|
+
readonly default: false;
|
|
7251
|
+
};
|
|
7252
|
+
readonly component: {
|
|
7253
|
+
readonly type: "string";
|
|
7254
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
7255
|
+
readonly default: "checkbox";
|
|
7256
|
+
};
|
|
7257
|
+
readonly label: {
|
|
7258
|
+
readonly type: "string";
|
|
7259
|
+
};
|
|
7260
|
+
readonly items: {
|
|
7261
|
+
readonly type: "array";
|
|
7262
|
+
readonly items: {
|
|
7263
|
+
readonly type: "string";
|
|
7264
|
+
};
|
|
7265
|
+
};
|
|
7266
|
+
};
|
|
7267
|
+
readonly additionalProperties: false;
|
|
7268
|
+
};
|
|
6669
7269
|
readonly hide: {
|
|
6670
7270
|
readonly type: "boolean";
|
|
6671
7271
|
readonly default: false;
|
|
@@ -7128,6 +7728,126 @@ export declare const redoclyConfigSchema: {
|
|
|
7128
7728
|
readonly reasons: {
|
|
7129
7729
|
readonly type: "object";
|
|
7130
7730
|
readonly properties: {
|
|
7731
|
+
readonly like: {
|
|
7732
|
+
readonly type: "object";
|
|
7733
|
+
readonly properties: {
|
|
7734
|
+
readonly hide: {
|
|
7735
|
+
readonly type: "boolean";
|
|
7736
|
+
readonly default: false;
|
|
7737
|
+
};
|
|
7738
|
+
readonly component: {
|
|
7739
|
+
readonly type: "string";
|
|
7740
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
7741
|
+
readonly default: "checkbox";
|
|
7742
|
+
};
|
|
7743
|
+
readonly label: {
|
|
7744
|
+
readonly type: "string";
|
|
7745
|
+
};
|
|
7746
|
+
readonly items: {
|
|
7747
|
+
readonly type: "array";
|
|
7748
|
+
readonly items: {
|
|
7749
|
+
readonly type: "string";
|
|
7750
|
+
};
|
|
7751
|
+
};
|
|
7752
|
+
};
|
|
7753
|
+
readonly additionalProperties: false;
|
|
7754
|
+
};
|
|
7755
|
+
readonly dislike: {
|
|
7756
|
+
readonly type: "object";
|
|
7757
|
+
readonly properties: {
|
|
7758
|
+
readonly hide: {
|
|
7759
|
+
readonly type: "boolean";
|
|
7760
|
+
readonly default: false;
|
|
7761
|
+
};
|
|
7762
|
+
readonly component: {
|
|
7763
|
+
readonly type: "string";
|
|
7764
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
7765
|
+
readonly default: "checkbox";
|
|
7766
|
+
};
|
|
7767
|
+
readonly label: {
|
|
7768
|
+
readonly type: "string";
|
|
7769
|
+
};
|
|
7770
|
+
readonly items: {
|
|
7771
|
+
readonly type: "array";
|
|
7772
|
+
readonly items: {
|
|
7773
|
+
readonly type: "string";
|
|
7774
|
+
};
|
|
7775
|
+
};
|
|
7776
|
+
};
|
|
7777
|
+
readonly additionalProperties: false;
|
|
7778
|
+
};
|
|
7779
|
+
readonly satisfied: {
|
|
7780
|
+
readonly type: "object";
|
|
7781
|
+
readonly properties: {
|
|
7782
|
+
readonly hide: {
|
|
7783
|
+
readonly type: "boolean";
|
|
7784
|
+
readonly default: false;
|
|
7785
|
+
};
|
|
7786
|
+
readonly component: {
|
|
7787
|
+
readonly type: "string";
|
|
7788
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
7789
|
+
readonly default: "checkbox";
|
|
7790
|
+
};
|
|
7791
|
+
readonly label: {
|
|
7792
|
+
readonly type: "string";
|
|
7793
|
+
};
|
|
7794
|
+
readonly items: {
|
|
7795
|
+
readonly type: "array";
|
|
7796
|
+
readonly items: {
|
|
7797
|
+
readonly type: "string";
|
|
7798
|
+
};
|
|
7799
|
+
};
|
|
7800
|
+
};
|
|
7801
|
+
readonly additionalProperties: false;
|
|
7802
|
+
};
|
|
7803
|
+
readonly neutral: {
|
|
7804
|
+
readonly type: "object";
|
|
7805
|
+
readonly properties: {
|
|
7806
|
+
readonly hide: {
|
|
7807
|
+
readonly type: "boolean";
|
|
7808
|
+
readonly default: false;
|
|
7809
|
+
};
|
|
7810
|
+
readonly component: {
|
|
7811
|
+
readonly type: "string";
|
|
7812
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
7813
|
+
readonly default: "checkbox";
|
|
7814
|
+
};
|
|
7815
|
+
readonly label: {
|
|
7816
|
+
readonly type: "string";
|
|
7817
|
+
};
|
|
7818
|
+
readonly items: {
|
|
7819
|
+
readonly type: "array";
|
|
7820
|
+
readonly items: {
|
|
7821
|
+
readonly type: "string";
|
|
7822
|
+
};
|
|
7823
|
+
};
|
|
7824
|
+
};
|
|
7825
|
+
readonly additionalProperties: false;
|
|
7826
|
+
};
|
|
7827
|
+
readonly dissatisfied: {
|
|
7828
|
+
readonly type: "object";
|
|
7829
|
+
readonly properties: {
|
|
7830
|
+
readonly hide: {
|
|
7831
|
+
readonly type: "boolean";
|
|
7832
|
+
readonly default: false;
|
|
7833
|
+
};
|
|
7834
|
+
readonly component: {
|
|
7835
|
+
readonly type: "string";
|
|
7836
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
7837
|
+
readonly default: "checkbox";
|
|
7838
|
+
};
|
|
7839
|
+
readonly label: {
|
|
7840
|
+
readonly type: "string";
|
|
7841
|
+
};
|
|
7842
|
+
readonly items: {
|
|
7843
|
+
readonly type: "array";
|
|
7844
|
+
readonly items: {
|
|
7845
|
+
readonly type: "string";
|
|
7846
|
+
};
|
|
7847
|
+
};
|
|
7848
|
+
};
|
|
7849
|
+
readonly additionalProperties: false;
|
|
7850
|
+
};
|
|
7131
7851
|
readonly hide: {
|
|
7132
7852
|
readonly type: "boolean";
|
|
7133
7853
|
readonly default: false;
|
|
@@ -8626,6 +9346,126 @@ export declare const redoclyConfigSchema: {
|
|
|
8626
9346
|
readonly reasons: {
|
|
8627
9347
|
readonly type: "object";
|
|
8628
9348
|
readonly properties: {
|
|
9349
|
+
readonly like: {
|
|
9350
|
+
readonly type: "object";
|
|
9351
|
+
readonly properties: {
|
|
9352
|
+
readonly hide: {
|
|
9353
|
+
readonly type: "boolean";
|
|
9354
|
+
readonly default: false;
|
|
9355
|
+
};
|
|
9356
|
+
readonly component: {
|
|
9357
|
+
readonly type: "string";
|
|
9358
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9359
|
+
readonly default: "checkbox";
|
|
9360
|
+
};
|
|
9361
|
+
readonly label: {
|
|
9362
|
+
readonly type: "string";
|
|
9363
|
+
};
|
|
9364
|
+
readonly items: {
|
|
9365
|
+
readonly type: "array";
|
|
9366
|
+
readonly items: {
|
|
9367
|
+
readonly type: "string";
|
|
9368
|
+
};
|
|
9369
|
+
};
|
|
9370
|
+
};
|
|
9371
|
+
readonly additionalProperties: false;
|
|
9372
|
+
};
|
|
9373
|
+
readonly dislike: {
|
|
9374
|
+
readonly type: "object";
|
|
9375
|
+
readonly properties: {
|
|
9376
|
+
readonly hide: {
|
|
9377
|
+
readonly type: "boolean";
|
|
9378
|
+
readonly default: false;
|
|
9379
|
+
};
|
|
9380
|
+
readonly component: {
|
|
9381
|
+
readonly type: "string";
|
|
9382
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9383
|
+
readonly default: "checkbox";
|
|
9384
|
+
};
|
|
9385
|
+
readonly label: {
|
|
9386
|
+
readonly type: "string";
|
|
9387
|
+
};
|
|
9388
|
+
readonly items: {
|
|
9389
|
+
readonly type: "array";
|
|
9390
|
+
readonly items: {
|
|
9391
|
+
readonly type: "string";
|
|
9392
|
+
};
|
|
9393
|
+
};
|
|
9394
|
+
};
|
|
9395
|
+
readonly additionalProperties: false;
|
|
9396
|
+
};
|
|
9397
|
+
readonly satisfied: {
|
|
9398
|
+
readonly type: "object";
|
|
9399
|
+
readonly properties: {
|
|
9400
|
+
readonly hide: {
|
|
9401
|
+
readonly type: "boolean";
|
|
9402
|
+
readonly default: false;
|
|
9403
|
+
};
|
|
9404
|
+
readonly component: {
|
|
9405
|
+
readonly type: "string";
|
|
9406
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9407
|
+
readonly default: "checkbox";
|
|
9408
|
+
};
|
|
9409
|
+
readonly label: {
|
|
9410
|
+
readonly type: "string";
|
|
9411
|
+
};
|
|
9412
|
+
readonly items: {
|
|
9413
|
+
readonly type: "array";
|
|
9414
|
+
readonly items: {
|
|
9415
|
+
readonly type: "string";
|
|
9416
|
+
};
|
|
9417
|
+
};
|
|
9418
|
+
};
|
|
9419
|
+
readonly additionalProperties: false;
|
|
9420
|
+
};
|
|
9421
|
+
readonly neutral: {
|
|
9422
|
+
readonly type: "object";
|
|
9423
|
+
readonly properties: {
|
|
9424
|
+
readonly hide: {
|
|
9425
|
+
readonly type: "boolean";
|
|
9426
|
+
readonly default: false;
|
|
9427
|
+
};
|
|
9428
|
+
readonly component: {
|
|
9429
|
+
readonly type: "string";
|
|
9430
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9431
|
+
readonly default: "checkbox";
|
|
9432
|
+
};
|
|
9433
|
+
readonly label: {
|
|
9434
|
+
readonly type: "string";
|
|
9435
|
+
};
|
|
9436
|
+
readonly items: {
|
|
9437
|
+
readonly type: "array";
|
|
9438
|
+
readonly items: {
|
|
9439
|
+
readonly type: "string";
|
|
9440
|
+
};
|
|
9441
|
+
};
|
|
9442
|
+
};
|
|
9443
|
+
readonly additionalProperties: false;
|
|
9444
|
+
};
|
|
9445
|
+
readonly dissatisfied: {
|
|
9446
|
+
readonly type: "object";
|
|
9447
|
+
readonly properties: {
|
|
9448
|
+
readonly hide: {
|
|
9449
|
+
readonly type: "boolean";
|
|
9450
|
+
readonly default: false;
|
|
9451
|
+
};
|
|
9452
|
+
readonly component: {
|
|
9453
|
+
readonly type: "string";
|
|
9454
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9455
|
+
readonly default: "checkbox";
|
|
9456
|
+
};
|
|
9457
|
+
readonly label: {
|
|
9458
|
+
readonly type: "string";
|
|
9459
|
+
};
|
|
9460
|
+
readonly items: {
|
|
9461
|
+
readonly type: "array";
|
|
9462
|
+
readonly items: {
|
|
9463
|
+
readonly type: "string";
|
|
9464
|
+
};
|
|
9465
|
+
};
|
|
9466
|
+
};
|
|
9467
|
+
readonly additionalProperties: false;
|
|
9468
|
+
};
|
|
8629
9469
|
readonly hide: {
|
|
8630
9470
|
readonly type: "boolean";
|
|
8631
9471
|
readonly default: false;
|
|
@@ -9088,6 +9928,126 @@ export declare const redoclyConfigSchema: {
|
|
|
9088
9928
|
readonly reasons: {
|
|
9089
9929
|
readonly type: "object";
|
|
9090
9930
|
readonly properties: {
|
|
9931
|
+
readonly like: {
|
|
9932
|
+
readonly type: "object";
|
|
9933
|
+
readonly properties: {
|
|
9934
|
+
readonly hide: {
|
|
9935
|
+
readonly type: "boolean";
|
|
9936
|
+
readonly default: false;
|
|
9937
|
+
};
|
|
9938
|
+
readonly component: {
|
|
9939
|
+
readonly type: "string";
|
|
9940
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9941
|
+
readonly default: "checkbox";
|
|
9942
|
+
};
|
|
9943
|
+
readonly label: {
|
|
9944
|
+
readonly type: "string";
|
|
9945
|
+
};
|
|
9946
|
+
readonly items: {
|
|
9947
|
+
readonly type: "array";
|
|
9948
|
+
readonly items: {
|
|
9949
|
+
readonly type: "string";
|
|
9950
|
+
};
|
|
9951
|
+
};
|
|
9952
|
+
};
|
|
9953
|
+
readonly additionalProperties: false;
|
|
9954
|
+
};
|
|
9955
|
+
readonly dislike: {
|
|
9956
|
+
readonly type: "object";
|
|
9957
|
+
readonly properties: {
|
|
9958
|
+
readonly hide: {
|
|
9959
|
+
readonly type: "boolean";
|
|
9960
|
+
readonly default: false;
|
|
9961
|
+
};
|
|
9962
|
+
readonly component: {
|
|
9963
|
+
readonly type: "string";
|
|
9964
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9965
|
+
readonly default: "checkbox";
|
|
9966
|
+
};
|
|
9967
|
+
readonly label: {
|
|
9968
|
+
readonly type: "string";
|
|
9969
|
+
};
|
|
9970
|
+
readonly items: {
|
|
9971
|
+
readonly type: "array";
|
|
9972
|
+
readonly items: {
|
|
9973
|
+
readonly type: "string";
|
|
9974
|
+
};
|
|
9975
|
+
};
|
|
9976
|
+
};
|
|
9977
|
+
readonly additionalProperties: false;
|
|
9978
|
+
};
|
|
9979
|
+
readonly satisfied: {
|
|
9980
|
+
readonly type: "object";
|
|
9981
|
+
readonly properties: {
|
|
9982
|
+
readonly hide: {
|
|
9983
|
+
readonly type: "boolean";
|
|
9984
|
+
readonly default: false;
|
|
9985
|
+
};
|
|
9986
|
+
readonly component: {
|
|
9987
|
+
readonly type: "string";
|
|
9988
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9989
|
+
readonly default: "checkbox";
|
|
9990
|
+
};
|
|
9991
|
+
readonly label: {
|
|
9992
|
+
readonly type: "string";
|
|
9993
|
+
};
|
|
9994
|
+
readonly items: {
|
|
9995
|
+
readonly type: "array";
|
|
9996
|
+
readonly items: {
|
|
9997
|
+
readonly type: "string";
|
|
9998
|
+
};
|
|
9999
|
+
};
|
|
10000
|
+
};
|
|
10001
|
+
readonly additionalProperties: false;
|
|
10002
|
+
};
|
|
10003
|
+
readonly neutral: {
|
|
10004
|
+
readonly type: "object";
|
|
10005
|
+
readonly properties: {
|
|
10006
|
+
readonly hide: {
|
|
10007
|
+
readonly type: "boolean";
|
|
10008
|
+
readonly default: false;
|
|
10009
|
+
};
|
|
10010
|
+
readonly component: {
|
|
10011
|
+
readonly type: "string";
|
|
10012
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10013
|
+
readonly default: "checkbox";
|
|
10014
|
+
};
|
|
10015
|
+
readonly label: {
|
|
10016
|
+
readonly type: "string";
|
|
10017
|
+
};
|
|
10018
|
+
readonly items: {
|
|
10019
|
+
readonly type: "array";
|
|
10020
|
+
readonly items: {
|
|
10021
|
+
readonly type: "string";
|
|
10022
|
+
};
|
|
10023
|
+
};
|
|
10024
|
+
};
|
|
10025
|
+
readonly additionalProperties: false;
|
|
10026
|
+
};
|
|
10027
|
+
readonly dissatisfied: {
|
|
10028
|
+
readonly type: "object";
|
|
10029
|
+
readonly properties: {
|
|
10030
|
+
readonly hide: {
|
|
10031
|
+
readonly type: "boolean";
|
|
10032
|
+
readonly default: false;
|
|
10033
|
+
};
|
|
10034
|
+
readonly component: {
|
|
10035
|
+
readonly type: "string";
|
|
10036
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10037
|
+
readonly default: "checkbox";
|
|
10038
|
+
};
|
|
10039
|
+
readonly label: {
|
|
10040
|
+
readonly type: "string";
|
|
10041
|
+
};
|
|
10042
|
+
readonly items: {
|
|
10043
|
+
readonly type: "array";
|
|
10044
|
+
readonly items: {
|
|
10045
|
+
readonly type: "string";
|
|
10046
|
+
};
|
|
10047
|
+
};
|
|
10048
|
+
};
|
|
10049
|
+
readonly additionalProperties: false;
|
|
10050
|
+
};
|
|
9091
10051
|
readonly hide: {
|
|
9092
10052
|
readonly type: "boolean";
|
|
9093
10053
|
readonly default: false;
|
|
@@ -10270,6 +11230,126 @@ export declare const redoclyConfigSchema: {
|
|
|
10270
11230
|
readonly reasons: {
|
|
10271
11231
|
readonly type: "object";
|
|
10272
11232
|
readonly properties: {
|
|
11233
|
+
readonly like: {
|
|
11234
|
+
readonly type: "object";
|
|
11235
|
+
readonly properties: {
|
|
11236
|
+
readonly hide: {
|
|
11237
|
+
readonly type: "boolean";
|
|
11238
|
+
readonly default: false;
|
|
11239
|
+
};
|
|
11240
|
+
readonly component: {
|
|
11241
|
+
readonly type: "string";
|
|
11242
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
11243
|
+
readonly default: "checkbox";
|
|
11244
|
+
};
|
|
11245
|
+
readonly label: {
|
|
11246
|
+
readonly type: "string";
|
|
11247
|
+
};
|
|
11248
|
+
readonly items: {
|
|
11249
|
+
readonly type: "array";
|
|
11250
|
+
readonly items: {
|
|
11251
|
+
readonly type: "string";
|
|
11252
|
+
};
|
|
11253
|
+
};
|
|
11254
|
+
};
|
|
11255
|
+
readonly additionalProperties: false;
|
|
11256
|
+
};
|
|
11257
|
+
readonly dislike: {
|
|
11258
|
+
readonly type: "object";
|
|
11259
|
+
readonly properties: {
|
|
11260
|
+
readonly hide: {
|
|
11261
|
+
readonly type: "boolean";
|
|
11262
|
+
readonly default: false;
|
|
11263
|
+
};
|
|
11264
|
+
readonly component: {
|
|
11265
|
+
readonly type: "string";
|
|
11266
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
11267
|
+
readonly default: "checkbox";
|
|
11268
|
+
};
|
|
11269
|
+
readonly label: {
|
|
11270
|
+
readonly type: "string";
|
|
11271
|
+
};
|
|
11272
|
+
readonly items: {
|
|
11273
|
+
readonly type: "array";
|
|
11274
|
+
readonly items: {
|
|
11275
|
+
readonly type: "string";
|
|
11276
|
+
};
|
|
11277
|
+
};
|
|
11278
|
+
};
|
|
11279
|
+
readonly additionalProperties: false;
|
|
11280
|
+
};
|
|
11281
|
+
readonly satisfied: {
|
|
11282
|
+
readonly type: "object";
|
|
11283
|
+
readonly properties: {
|
|
11284
|
+
readonly hide: {
|
|
11285
|
+
readonly type: "boolean";
|
|
11286
|
+
readonly default: false;
|
|
11287
|
+
};
|
|
11288
|
+
readonly component: {
|
|
11289
|
+
readonly type: "string";
|
|
11290
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
11291
|
+
readonly default: "checkbox";
|
|
11292
|
+
};
|
|
11293
|
+
readonly label: {
|
|
11294
|
+
readonly type: "string";
|
|
11295
|
+
};
|
|
11296
|
+
readonly items: {
|
|
11297
|
+
readonly type: "array";
|
|
11298
|
+
readonly items: {
|
|
11299
|
+
readonly type: "string";
|
|
11300
|
+
};
|
|
11301
|
+
};
|
|
11302
|
+
};
|
|
11303
|
+
readonly additionalProperties: false;
|
|
11304
|
+
};
|
|
11305
|
+
readonly neutral: {
|
|
11306
|
+
readonly type: "object";
|
|
11307
|
+
readonly properties: {
|
|
11308
|
+
readonly hide: {
|
|
11309
|
+
readonly type: "boolean";
|
|
11310
|
+
readonly default: false;
|
|
11311
|
+
};
|
|
11312
|
+
readonly component: {
|
|
11313
|
+
readonly type: "string";
|
|
11314
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
11315
|
+
readonly default: "checkbox";
|
|
11316
|
+
};
|
|
11317
|
+
readonly label: {
|
|
11318
|
+
readonly type: "string";
|
|
11319
|
+
};
|
|
11320
|
+
readonly items: {
|
|
11321
|
+
readonly type: "array";
|
|
11322
|
+
readonly items: {
|
|
11323
|
+
readonly type: "string";
|
|
11324
|
+
};
|
|
11325
|
+
};
|
|
11326
|
+
};
|
|
11327
|
+
readonly additionalProperties: false;
|
|
11328
|
+
};
|
|
11329
|
+
readonly dissatisfied: {
|
|
11330
|
+
readonly type: "object";
|
|
11331
|
+
readonly properties: {
|
|
11332
|
+
readonly hide: {
|
|
11333
|
+
readonly type: "boolean";
|
|
11334
|
+
readonly default: false;
|
|
11335
|
+
};
|
|
11336
|
+
readonly component: {
|
|
11337
|
+
readonly type: "string";
|
|
11338
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
11339
|
+
readonly default: "checkbox";
|
|
11340
|
+
};
|
|
11341
|
+
readonly label: {
|
|
11342
|
+
readonly type: "string";
|
|
11343
|
+
};
|
|
11344
|
+
readonly items: {
|
|
11345
|
+
readonly type: "array";
|
|
11346
|
+
readonly items: {
|
|
11347
|
+
readonly type: "string";
|
|
11348
|
+
};
|
|
11349
|
+
};
|
|
11350
|
+
};
|
|
11351
|
+
readonly additionalProperties: false;
|
|
11352
|
+
};
|
|
10273
11353
|
readonly hide: {
|
|
10274
11354
|
readonly type: "boolean";
|
|
10275
11355
|
readonly default: false;
|
|
@@ -12019,6 +13099,126 @@ export declare const redoclyConfigSchema: {
|
|
|
12019
13099
|
readonly reasons: {
|
|
12020
13100
|
readonly type: "object";
|
|
12021
13101
|
readonly properties: {
|
|
13102
|
+
readonly like: {
|
|
13103
|
+
readonly type: "object";
|
|
13104
|
+
readonly properties: {
|
|
13105
|
+
readonly hide: {
|
|
13106
|
+
readonly type: "boolean";
|
|
13107
|
+
readonly default: false;
|
|
13108
|
+
};
|
|
13109
|
+
readonly component: {
|
|
13110
|
+
readonly type: "string";
|
|
13111
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
13112
|
+
readonly default: "checkbox";
|
|
13113
|
+
};
|
|
13114
|
+
readonly label: {
|
|
13115
|
+
readonly type: "string";
|
|
13116
|
+
};
|
|
13117
|
+
readonly items: {
|
|
13118
|
+
readonly type: "array";
|
|
13119
|
+
readonly items: {
|
|
13120
|
+
readonly type: "string";
|
|
13121
|
+
};
|
|
13122
|
+
};
|
|
13123
|
+
};
|
|
13124
|
+
readonly additionalProperties: false;
|
|
13125
|
+
};
|
|
13126
|
+
readonly dislike: {
|
|
13127
|
+
readonly type: "object";
|
|
13128
|
+
readonly properties: {
|
|
13129
|
+
readonly hide: {
|
|
13130
|
+
readonly type: "boolean";
|
|
13131
|
+
readonly default: false;
|
|
13132
|
+
};
|
|
13133
|
+
readonly component: {
|
|
13134
|
+
readonly type: "string";
|
|
13135
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
13136
|
+
readonly default: "checkbox";
|
|
13137
|
+
};
|
|
13138
|
+
readonly label: {
|
|
13139
|
+
readonly type: "string";
|
|
13140
|
+
};
|
|
13141
|
+
readonly items: {
|
|
13142
|
+
readonly type: "array";
|
|
13143
|
+
readonly items: {
|
|
13144
|
+
readonly type: "string";
|
|
13145
|
+
};
|
|
13146
|
+
};
|
|
13147
|
+
};
|
|
13148
|
+
readonly additionalProperties: false;
|
|
13149
|
+
};
|
|
13150
|
+
readonly satisfied: {
|
|
13151
|
+
readonly type: "object";
|
|
13152
|
+
readonly properties: {
|
|
13153
|
+
readonly hide: {
|
|
13154
|
+
readonly type: "boolean";
|
|
13155
|
+
readonly default: false;
|
|
13156
|
+
};
|
|
13157
|
+
readonly component: {
|
|
13158
|
+
readonly type: "string";
|
|
13159
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
13160
|
+
readonly default: "checkbox";
|
|
13161
|
+
};
|
|
13162
|
+
readonly label: {
|
|
13163
|
+
readonly type: "string";
|
|
13164
|
+
};
|
|
13165
|
+
readonly items: {
|
|
13166
|
+
readonly type: "array";
|
|
13167
|
+
readonly items: {
|
|
13168
|
+
readonly type: "string";
|
|
13169
|
+
};
|
|
13170
|
+
};
|
|
13171
|
+
};
|
|
13172
|
+
readonly additionalProperties: false;
|
|
13173
|
+
};
|
|
13174
|
+
readonly neutral: {
|
|
13175
|
+
readonly type: "object";
|
|
13176
|
+
readonly properties: {
|
|
13177
|
+
readonly hide: {
|
|
13178
|
+
readonly type: "boolean";
|
|
13179
|
+
readonly default: false;
|
|
13180
|
+
};
|
|
13181
|
+
readonly component: {
|
|
13182
|
+
readonly type: "string";
|
|
13183
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
13184
|
+
readonly default: "checkbox";
|
|
13185
|
+
};
|
|
13186
|
+
readonly label: {
|
|
13187
|
+
readonly type: "string";
|
|
13188
|
+
};
|
|
13189
|
+
readonly items: {
|
|
13190
|
+
readonly type: "array";
|
|
13191
|
+
readonly items: {
|
|
13192
|
+
readonly type: "string";
|
|
13193
|
+
};
|
|
13194
|
+
};
|
|
13195
|
+
};
|
|
13196
|
+
readonly additionalProperties: false;
|
|
13197
|
+
};
|
|
13198
|
+
readonly dissatisfied: {
|
|
13199
|
+
readonly type: "object";
|
|
13200
|
+
readonly properties: {
|
|
13201
|
+
readonly hide: {
|
|
13202
|
+
readonly type: "boolean";
|
|
13203
|
+
readonly default: false;
|
|
13204
|
+
};
|
|
13205
|
+
readonly component: {
|
|
13206
|
+
readonly type: "string";
|
|
13207
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
13208
|
+
readonly default: "checkbox";
|
|
13209
|
+
};
|
|
13210
|
+
readonly label: {
|
|
13211
|
+
readonly type: "string";
|
|
13212
|
+
};
|
|
13213
|
+
readonly items: {
|
|
13214
|
+
readonly type: "array";
|
|
13215
|
+
readonly items: {
|
|
13216
|
+
readonly type: "string";
|
|
13217
|
+
};
|
|
13218
|
+
};
|
|
13219
|
+
};
|
|
13220
|
+
readonly additionalProperties: false;
|
|
13221
|
+
};
|
|
12022
13222
|
readonly hide: {
|
|
12023
13223
|
readonly type: "boolean";
|
|
12024
13224
|
readonly default: false;
|
|
@@ -12481,6 +13681,126 @@ export declare const redoclyConfigSchema: {
|
|
|
12481
13681
|
readonly reasons: {
|
|
12482
13682
|
readonly type: "object";
|
|
12483
13683
|
readonly properties: {
|
|
13684
|
+
readonly like: {
|
|
13685
|
+
readonly type: "object";
|
|
13686
|
+
readonly properties: {
|
|
13687
|
+
readonly hide: {
|
|
13688
|
+
readonly type: "boolean";
|
|
13689
|
+
readonly default: false;
|
|
13690
|
+
};
|
|
13691
|
+
readonly component: {
|
|
13692
|
+
readonly type: "string";
|
|
13693
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
13694
|
+
readonly default: "checkbox";
|
|
13695
|
+
};
|
|
13696
|
+
readonly label: {
|
|
13697
|
+
readonly type: "string";
|
|
13698
|
+
};
|
|
13699
|
+
readonly items: {
|
|
13700
|
+
readonly type: "array";
|
|
13701
|
+
readonly items: {
|
|
13702
|
+
readonly type: "string";
|
|
13703
|
+
};
|
|
13704
|
+
};
|
|
13705
|
+
};
|
|
13706
|
+
readonly additionalProperties: false;
|
|
13707
|
+
};
|
|
13708
|
+
readonly dislike: {
|
|
13709
|
+
readonly type: "object";
|
|
13710
|
+
readonly properties: {
|
|
13711
|
+
readonly hide: {
|
|
13712
|
+
readonly type: "boolean";
|
|
13713
|
+
readonly default: false;
|
|
13714
|
+
};
|
|
13715
|
+
readonly component: {
|
|
13716
|
+
readonly type: "string";
|
|
13717
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
13718
|
+
readonly default: "checkbox";
|
|
13719
|
+
};
|
|
13720
|
+
readonly label: {
|
|
13721
|
+
readonly type: "string";
|
|
13722
|
+
};
|
|
13723
|
+
readonly items: {
|
|
13724
|
+
readonly type: "array";
|
|
13725
|
+
readonly items: {
|
|
13726
|
+
readonly type: "string";
|
|
13727
|
+
};
|
|
13728
|
+
};
|
|
13729
|
+
};
|
|
13730
|
+
readonly additionalProperties: false;
|
|
13731
|
+
};
|
|
13732
|
+
readonly satisfied: {
|
|
13733
|
+
readonly type: "object";
|
|
13734
|
+
readonly properties: {
|
|
13735
|
+
readonly hide: {
|
|
13736
|
+
readonly type: "boolean";
|
|
13737
|
+
readonly default: false;
|
|
13738
|
+
};
|
|
13739
|
+
readonly component: {
|
|
13740
|
+
readonly type: "string";
|
|
13741
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
13742
|
+
readonly default: "checkbox";
|
|
13743
|
+
};
|
|
13744
|
+
readonly label: {
|
|
13745
|
+
readonly type: "string";
|
|
13746
|
+
};
|
|
13747
|
+
readonly items: {
|
|
13748
|
+
readonly type: "array";
|
|
13749
|
+
readonly items: {
|
|
13750
|
+
readonly type: "string";
|
|
13751
|
+
};
|
|
13752
|
+
};
|
|
13753
|
+
};
|
|
13754
|
+
readonly additionalProperties: false;
|
|
13755
|
+
};
|
|
13756
|
+
readonly neutral: {
|
|
13757
|
+
readonly type: "object";
|
|
13758
|
+
readonly properties: {
|
|
13759
|
+
readonly hide: {
|
|
13760
|
+
readonly type: "boolean";
|
|
13761
|
+
readonly default: false;
|
|
13762
|
+
};
|
|
13763
|
+
readonly component: {
|
|
13764
|
+
readonly type: "string";
|
|
13765
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
13766
|
+
readonly default: "checkbox";
|
|
13767
|
+
};
|
|
13768
|
+
readonly label: {
|
|
13769
|
+
readonly type: "string";
|
|
13770
|
+
};
|
|
13771
|
+
readonly items: {
|
|
13772
|
+
readonly type: "array";
|
|
13773
|
+
readonly items: {
|
|
13774
|
+
readonly type: "string";
|
|
13775
|
+
};
|
|
13776
|
+
};
|
|
13777
|
+
};
|
|
13778
|
+
readonly additionalProperties: false;
|
|
13779
|
+
};
|
|
13780
|
+
readonly dissatisfied: {
|
|
13781
|
+
readonly type: "object";
|
|
13782
|
+
readonly properties: {
|
|
13783
|
+
readonly hide: {
|
|
13784
|
+
readonly type: "boolean";
|
|
13785
|
+
readonly default: false;
|
|
13786
|
+
};
|
|
13787
|
+
readonly component: {
|
|
13788
|
+
readonly type: "string";
|
|
13789
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
13790
|
+
readonly default: "checkbox";
|
|
13791
|
+
};
|
|
13792
|
+
readonly label: {
|
|
13793
|
+
readonly type: "string";
|
|
13794
|
+
};
|
|
13795
|
+
readonly items: {
|
|
13796
|
+
readonly type: "array";
|
|
13797
|
+
readonly items: {
|
|
13798
|
+
readonly type: "string";
|
|
13799
|
+
};
|
|
13800
|
+
};
|
|
13801
|
+
};
|
|
13802
|
+
readonly additionalProperties: false;
|
|
13803
|
+
};
|
|
12484
13804
|
readonly hide: {
|
|
12485
13805
|
readonly type: "boolean";
|
|
12486
13806
|
readonly default: false;
|
|
@@ -13839,6 +15159,126 @@ export declare const redoclyConfigSchema: {
|
|
|
13839
15159
|
readonly reasons: {
|
|
13840
15160
|
readonly type: "object";
|
|
13841
15161
|
readonly properties: {
|
|
15162
|
+
readonly like: {
|
|
15163
|
+
readonly type: "object";
|
|
15164
|
+
readonly properties: {
|
|
15165
|
+
readonly hide: {
|
|
15166
|
+
readonly type: "boolean";
|
|
15167
|
+
readonly default: false;
|
|
15168
|
+
};
|
|
15169
|
+
readonly component: {
|
|
15170
|
+
readonly type: "string";
|
|
15171
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
15172
|
+
readonly default: "checkbox";
|
|
15173
|
+
};
|
|
15174
|
+
readonly label: {
|
|
15175
|
+
readonly type: "string";
|
|
15176
|
+
};
|
|
15177
|
+
readonly items: {
|
|
15178
|
+
readonly type: "array";
|
|
15179
|
+
readonly items: {
|
|
15180
|
+
readonly type: "string";
|
|
15181
|
+
};
|
|
15182
|
+
};
|
|
15183
|
+
};
|
|
15184
|
+
readonly additionalProperties: false;
|
|
15185
|
+
};
|
|
15186
|
+
readonly dislike: {
|
|
15187
|
+
readonly type: "object";
|
|
15188
|
+
readonly properties: {
|
|
15189
|
+
readonly hide: {
|
|
15190
|
+
readonly type: "boolean";
|
|
15191
|
+
readonly default: false;
|
|
15192
|
+
};
|
|
15193
|
+
readonly component: {
|
|
15194
|
+
readonly type: "string";
|
|
15195
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
15196
|
+
readonly default: "checkbox";
|
|
15197
|
+
};
|
|
15198
|
+
readonly label: {
|
|
15199
|
+
readonly type: "string";
|
|
15200
|
+
};
|
|
15201
|
+
readonly items: {
|
|
15202
|
+
readonly type: "array";
|
|
15203
|
+
readonly items: {
|
|
15204
|
+
readonly type: "string";
|
|
15205
|
+
};
|
|
15206
|
+
};
|
|
15207
|
+
};
|
|
15208
|
+
readonly additionalProperties: false;
|
|
15209
|
+
};
|
|
15210
|
+
readonly satisfied: {
|
|
15211
|
+
readonly type: "object";
|
|
15212
|
+
readonly properties: {
|
|
15213
|
+
readonly hide: {
|
|
15214
|
+
readonly type: "boolean";
|
|
15215
|
+
readonly default: false;
|
|
15216
|
+
};
|
|
15217
|
+
readonly component: {
|
|
15218
|
+
readonly type: "string";
|
|
15219
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
15220
|
+
readonly default: "checkbox";
|
|
15221
|
+
};
|
|
15222
|
+
readonly label: {
|
|
15223
|
+
readonly type: "string";
|
|
15224
|
+
};
|
|
15225
|
+
readonly items: {
|
|
15226
|
+
readonly type: "array";
|
|
15227
|
+
readonly items: {
|
|
15228
|
+
readonly type: "string";
|
|
15229
|
+
};
|
|
15230
|
+
};
|
|
15231
|
+
};
|
|
15232
|
+
readonly additionalProperties: false;
|
|
15233
|
+
};
|
|
15234
|
+
readonly neutral: {
|
|
15235
|
+
readonly type: "object";
|
|
15236
|
+
readonly properties: {
|
|
15237
|
+
readonly hide: {
|
|
15238
|
+
readonly type: "boolean";
|
|
15239
|
+
readonly default: false;
|
|
15240
|
+
};
|
|
15241
|
+
readonly component: {
|
|
15242
|
+
readonly type: "string";
|
|
15243
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
15244
|
+
readonly default: "checkbox";
|
|
15245
|
+
};
|
|
15246
|
+
readonly label: {
|
|
15247
|
+
readonly type: "string";
|
|
15248
|
+
};
|
|
15249
|
+
readonly items: {
|
|
15250
|
+
readonly type: "array";
|
|
15251
|
+
readonly items: {
|
|
15252
|
+
readonly type: "string";
|
|
15253
|
+
};
|
|
15254
|
+
};
|
|
15255
|
+
};
|
|
15256
|
+
readonly additionalProperties: false;
|
|
15257
|
+
};
|
|
15258
|
+
readonly dissatisfied: {
|
|
15259
|
+
readonly type: "object";
|
|
15260
|
+
readonly properties: {
|
|
15261
|
+
readonly hide: {
|
|
15262
|
+
readonly type: "boolean";
|
|
15263
|
+
readonly default: false;
|
|
15264
|
+
};
|
|
15265
|
+
readonly component: {
|
|
15266
|
+
readonly type: "string";
|
|
15267
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
15268
|
+
readonly default: "checkbox";
|
|
15269
|
+
};
|
|
15270
|
+
readonly label: {
|
|
15271
|
+
readonly type: "string";
|
|
15272
|
+
};
|
|
15273
|
+
readonly items: {
|
|
15274
|
+
readonly type: "array";
|
|
15275
|
+
readonly items: {
|
|
15276
|
+
readonly type: "string";
|
|
15277
|
+
};
|
|
15278
|
+
};
|
|
15279
|
+
};
|
|
15280
|
+
readonly additionalProperties: false;
|
|
15281
|
+
};
|
|
13842
15282
|
readonly hide: {
|
|
13843
15283
|
readonly type: "boolean";
|
|
13844
15284
|
readonly default: false;
|
|
@@ -15588,6 +17028,126 @@ export declare const redoclyConfigSchema: {
|
|
|
15588
17028
|
readonly reasons: {
|
|
15589
17029
|
readonly type: "object";
|
|
15590
17030
|
readonly properties: {
|
|
17031
|
+
readonly like: {
|
|
17032
|
+
readonly type: "object";
|
|
17033
|
+
readonly properties: {
|
|
17034
|
+
readonly hide: {
|
|
17035
|
+
readonly type: "boolean";
|
|
17036
|
+
readonly default: false;
|
|
17037
|
+
};
|
|
17038
|
+
readonly component: {
|
|
17039
|
+
readonly type: "string";
|
|
17040
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
17041
|
+
readonly default: "checkbox";
|
|
17042
|
+
};
|
|
17043
|
+
readonly label: {
|
|
17044
|
+
readonly type: "string";
|
|
17045
|
+
};
|
|
17046
|
+
readonly items: {
|
|
17047
|
+
readonly type: "array";
|
|
17048
|
+
readonly items: {
|
|
17049
|
+
readonly type: "string";
|
|
17050
|
+
};
|
|
17051
|
+
};
|
|
17052
|
+
};
|
|
17053
|
+
readonly additionalProperties: false;
|
|
17054
|
+
};
|
|
17055
|
+
readonly dislike: {
|
|
17056
|
+
readonly type: "object";
|
|
17057
|
+
readonly properties: {
|
|
17058
|
+
readonly hide: {
|
|
17059
|
+
readonly type: "boolean";
|
|
17060
|
+
readonly default: false;
|
|
17061
|
+
};
|
|
17062
|
+
readonly component: {
|
|
17063
|
+
readonly type: "string";
|
|
17064
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
17065
|
+
readonly default: "checkbox";
|
|
17066
|
+
};
|
|
17067
|
+
readonly label: {
|
|
17068
|
+
readonly type: "string";
|
|
17069
|
+
};
|
|
17070
|
+
readonly items: {
|
|
17071
|
+
readonly type: "array";
|
|
17072
|
+
readonly items: {
|
|
17073
|
+
readonly type: "string";
|
|
17074
|
+
};
|
|
17075
|
+
};
|
|
17076
|
+
};
|
|
17077
|
+
readonly additionalProperties: false;
|
|
17078
|
+
};
|
|
17079
|
+
readonly satisfied: {
|
|
17080
|
+
readonly type: "object";
|
|
17081
|
+
readonly properties: {
|
|
17082
|
+
readonly hide: {
|
|
17083
|
+
readonly type: "boolean";
|
|
17084
|
+
readonly default: false;
|
|
17085
|
+
};
|
|
17086
|
+
readonly component: {
|
|
17087
|
+
readonly type: "string";
|
|
17088
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
17089
|
+
readonly default: "checkbox";
|
|
17090
|
+
};
|
|
17091
|
+
readonly label: {
|
|
17092
|
+
readonly type: "string";
|
|
17093
|
+
};
|
|
17094
|
+
readonly items: {
|
|
17095
|
+
readonly type: "array";
|
|
17096
|
+
readonly items: {
|
|
17097
|
+
readonly type: "string";
|
|
17098
|
+
};
|
|
17099
|
+
};
|
|
17100
|
+
};
|
|
17101
|
+
readonly additionalProperties: false;
|
|
17102
|
+
};
|
|
17103
|
+
readonly neutral: {
|
|
17104
|
+
readonly type: "object";
|
|
17105
|
+
readonly properties: {
|
|
17106
|
+
readonly hide: {
|
|
17107
|
+
readonly type: "boolean";
|
|
17108
|
+
readonly default: false;
|
|
17109
|
+
};
|
|
17110
|
+
readonly component: {
|
|
17111
|
+
readonly type: "string";
|
|
17112
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
17113
|
+
readonly default: "checkbox";
|
|
17114
|
+
};
|
|
17115
|
+
readonly label: {
|
|
17116
|
+
readonly type: "string";
|
|
17117
|
+
};
|
|
17118
|
+
readonly items: {
|
|
17119
|
+
readonly type: "array";
|
|
17120
|
+
readonly items: {
|
|
17121
|
+
readonly type: "string";
|
|
17122
|
+
};
|
|
17123
|
+
};
|
|
17124
|
+
};
|
|
17125
|
+
readonly additionalProperties: false;
|
|
17126
|
+
};
|
|
17127
|
+
readonly dissatisfied: {
|
|
17128
|
+
readonly type: "object";
|
|
17129
|
+
readonly properties: {
|
|
17130
|
+
readonly hide: {
|
|
17131
|
+
readonly type: "boolean";
|
|
17132
|
+
readonly default: false;
|
|
17133
|
+
};
|
|
17134
|
+
readonly component: {
|
|
17135
|
+
readonly type: "string";
|
|
17136
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
17137
|
+
readonly default: "checkbox";
|
|
17138
|
+
};
|
|
17139
|
+
readonly label: {
|
|
17140
|
+
readonly type: "string";
|
|
17141
|
+
};
|
|
17142
|
+
readonly items: {
|
|
17143
|
+
readonly type: "array";
|
|
17144
|
+
readonly items: {
|
|
17145
|
+
readonly type: "string";
|
|
17146
|
+
};
|
|
17147
|
+
};
|
|
17148
|
+
};
|
|
17149
|
+
readonly additionalProperties: false;
|
|
17150
|
+
};
|
|
15591
17151
|
readonly hide: {
|
|
15592
17152
|
readonly type: "boolean";
|
|
15593
17153
|
readonly default: false;
|
|
@@ -16050,6 +17610,126 @@ export declare const redoclyConfigSchema: {
|
|
|
16050
17610
|
readonly reasons: {
|
|
16051
17611
|
readonly type: "object";
|
|
16052
17612
|
readonly properties: {
|
|
17613
|
+
readonly like: {
|
|
17614
|
+
readonly type: "object";
|
|
17615
|
+
readonly properties: {
|
|
17616
|
+
readonly hide: {
|
|
17617
|
+
readonly type: "boolean";
|
|
17618
|
+
readonly default: false;
|
|
17619
|
+
};
|
|
17620
|
+
readonly component: {
|
|
17621
|
+
readonly type: "string";
|
|
17622
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
17623
|
+
readonly default: "checkbox";
|
|
17624
|
+
};
|
|
17625
|
+
readonly label: {
|
|
17626
|
+
readonly type: "string";
|
|
17627
|
+
};
|
|
17628
|
+
readonly items: {
|
|
17629
|
+
readonly type: "array";
|
|
17630
|
+
readonly items: {
|
|
17631
|
+
readonly type: "string";
|
|
17632
|
+
};
|
|
17633
|
+
};
|
|
17634
|
+
};
|
|
17635
|
+
readonly additionalProperties: false;
|
|
17636
|
+
};
|
|
17637
|
+
readonly dislike: {
|
|
17638
|
+
readonly type: "object";
|
|
17639
|
+
readonly properties: {
|
|
17640
|
+
readonly hide: {
|
|
17641
|
+
readonly type: "boolean";
|
|
17642
|
+
readonly default: false;
|
|
17643
|
+
};
|
|
17644
|
+
readonly component: {
|
|
17645
|
+
readonly type: "string";
|
|
17646
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
17647
|
+
readonly default: "checkbox";
|
|
17648
|
+
};
|
|
17649
|
+
readonly label: {
|
|
17650
|
+
readonly type: "string";
|
|
17651
|
+
};
|
|
17652
|
+
readonly items: {
|
|
17653
|
+
readonly type: "array";
|
|
17654
|
+
readonly items: {
|
|
17655
|
+
readonly type: "string";
|
|
17656
|
+
};
|
|
17657
|
+
};
|
|
17658
|
+
};
|
|
17659
|
+
readonly additionalProperties: false;
|
|
17660
|
+
};
|
|
17661
|
+
readonly satisfied: {
|
|
17662
|
+
readonly type: "object";
|
|
17663
|
+
readonly properties: {
|
|
17664
|
+
readonly hide: {
|
|
17665
|
+
readonly type: "boolean";
|
|
17666
|
+
readonly default: false;
|
|
17667
|
+
};
|
|
17668
|
+
readonly component: {
|
|
17669
|
+
readonly type: "string";
|
|
17670
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
17671
|
+
readonly default: "checkbox";
|
|
17672
|
+
};
|
|
17673
|
+
readonly label: {
|
|
17674
|
+
readonly type: "string";
|
|
17675
|
+
};
|
|
17676
|
+
readonly items: {
|
|
17677
|
+
readonly type: "array";
|
|
17678
|
+
readonly items: {
|
|
17679
|
+
readonly type: "string";
|
|
17680
|
+
};
|
|
17681
|
+
};
|
|
17682
|
+
};
|
|
17683
|
+
readonly additionalProperties: false;
|
|
17684
|
+
};
|
|
17685
|
+
readonly neutral: {
|
|
17686
|
+
readonly type: "object";
|
|
17687
|
+
readonly properties: {
|
|
17688
|
+
readonly hide: {
|
|
17689
|
+
readonly type: "boolean";
|
|
17690
|
+
readonly default: false;
|
|
17691
|
+
};
|
|
17692
|
+
readonly component: {
|
|
17693
|
+
readonly type: "string";
|
|
17694
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
17695
|
+
readonly default: "checkbox";
|
|
17696
|
+
};
|
|
17697
|
+
readonly label: {
|
|
17698
|
+
readonly type: "string";
|
|
17699
|
+
};
|
|
17700
|
+
readonly items: {
|
|
17701
|
+
readonly type: "array";
|
|
17702
|
+
readonly items: {
|
|
17703
|
+
readonly type: "string";
|
|
17704
|
+
};
|
|
17705
|
+
};
|
|
17706
|
+
};
|
|
17707
|
+
readonly additionalProperties: false;
|
|
17708
|
+
};
|
|
17709
|
+
readonly dissatisfied: {
|
|
17710
|
+
readonly type: "object";
|
|
17711
|
+
readonly properties: {
|
|
17712
|
+
readonly hide: {
|
|
17713
|
+
readonly type: "boolean";
|
|
17714
|
+
readonly default: false;
|
|
17715
|
+
};
|
|
17716
|
+
readonly component: {
|
|
17717
|
+
readonly type: "string";
|
|
17718
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
17719
|
+
readonly default: "checkbox";
|
|
17720
|
+
};
|
|
17721
|
+
readonly label: {
|
|
17722
|
+
readonly type: "string";
|
|
17723
|
+
};
|
|
17724
|
+
readonly items: {
|
|
17725
|
+
readonly type: "array";
|
|
17726
|
+
readonly items: {
|
|
17727
|
+
readonly type: "string";
|
|
17728
|
+
};
|
|
17729
|
+
};
|
|
17730
|
+
};
|
|
17731
|
+
readonly additionalProperties: false;
|
|
17732
|
+
};
|
|
16053
17733
|
readonly hide: {
|
|
16054
17734
|
readonly type: "boolean";
|
|
16055
17735
|
readonly default: false;
|
|
@@ -17045,6 +18725,116 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
17045
18725
|
enum: ("radio" | "checkbox")[];
|
|
17046
18726
|
type: "string";
|
|
17047
18727
|
};
|
|
18728
|
+
like: {
|
|
18729
|
+
properties: {
|
|
18730
|
+
label: {
|
|
18731
|
+
type: "string";
|
|
18732
|
+
};
|
|
18733
|
+
items: {
|
|
18734
|
+
items: {
|
|
18735
|
+
type: "string";
|
|
18736
|
+
};
|
|
18737
|
+
type: "array";
|
|
18738
|
+
};
|
|
18739
|
+
hide: {
|
|
18740
|
+
type: "boolean";
|
|
18741
|
+
};
|
|
18742
|
+
component: {
|
|
18743
|
+
enum: ("radio" | "checkbox")[];
|
|
18744
|
+
type: "string";
|
|
18745
|
+
};
|
|
18746
|
+
};
|
|
18747
|
+
additionalProperties: false;
|
|
18748
|
+
type: "object";
|
|
18749
|
+
};
|
|
18750
|
+
dislike: {
|
|
18751
|
+
properties: {
|
|
18752
|
+
label: {
|
|
18753
|
+
type: "string";
|
|
18754
|
+
};
|
|
18755
|
+
items: {
|
|
18756
|
+
items: {
|
|
18757
|
+
type: "string";
|
|
18758
|
+
};
|
|
18759
|
+
type: "array";
|
|
18760
|
+
};
|
|
18761
|
+
hide: {
|
|
18762
|
+
type: "boolean";
|
|
18763
|
+
};
|
|
18764
|
+
component: {
|
|
18765
|
+
enum: ("radio" | "checkbox")[];
|
|
18766
|
+
type: "string";
|
|
18767
|
+
};
|
|
18768
|
+
};
|
|
18769
|
+
additionalProperties: false;
|
|
18770
|
+
type: "object";
|
|
18771
|
+
};
|
|
18772
|
+
satisfied: {
|
|
18773
|
+
properties: {
|
|
18774
|
+
label: {
|
|
18775
|
+
type: "string";
|
|
18776
|
+
};
|
|
18777
|
+
items: {
|
|
18778
|
+
items: {
|
|
18779
|
+
type: "string";
|
|
18780
|
+
};
|
|
18781
|
+
type: "array";
|
|
18782
|
+
};
|
|
18783
|
+
hide: {
|
|
18784
|
+
type: "boolean";
|
|
18785
|
+
};
|
|
18786
|
+
component: {
|
|
18787
|
+
enum: ("radio" | "checkbox")[];
|
|
18788
|
+
type: "string";
|
|
18789
|
+
};
|
|
18790
|
+
};
|
|
18791
|
+
additionalProperties: false;
|
|
18792
|
+
type: "object";
|
|
18793
|
+
};
|
|
18794
|
+
neutral: {
|
|
18795
|
+
properties: {
|
|
18796
|
+
label: {
|
|
18797
|
+
type: "string";
|
|
18798
|
+
};
|
|
18799
|
+
items: {
|
|
18800
|
+
items: {
|
|
18801
|
+
type: "string";
|
|
18802
|
+
};
|
|
18803
|
+
type: "array";
|
|
18804
|
+
};
|
|
18805
|
+
hide: {
|
|
18806
|
+
type: "boolean";
|
|
18807
|
+
};
|
|
18808
|
+
component: {
|
|
18809
|
+
enum: ("radio" | "checkbox")[];
|
|
18810
|
+
type: "string";
|
|
18811
|
+
};
|
|
18812
|
+
};
|
|
18813
|
+
additionalProperties: false;
|
|
18814
|
+
type: "object";
|
|
18815
|
+
};
|
|
18816
|
+
dissatisfied: {
|
|
18817
|
+
properties: {
|
|
18818
|
+
label: {
|
|
18819
|
+
type: "string";
|
|
18820
|
+
};
|
|
18821
|
+
items: {
|
|
18822
|
+
items: {
|
|
18823
|
+
type: "string";
|
|
18824
|
+
};
|
|
18825
|
+
type: "array";
|
|
18826
|
+
};
|
|
18827
|
+
hide: {
|
|
18828
|
+
type: "boolean";
|
|
18829
|
+
};
|
|
18830
|
+
component: {
|
|
18831
|
+
enum: ("radio" | "checkbox")[];
|
|
18832
|
+
type: "string";
|
|
18833
|
+
};
|
|
18834
|
+
};
|
|
18835
|
+
additionalProperties: false;
|
|
18836
|
+
type: "object";
|
|
18837
|
+
};
|
|
17048
18838
|
};
|
|
17049
18839
|
additionalProperties: false;
|
|
17050
18840
|
type: "object";
|
|
@@ -18632,6 +20422,116 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
18632
20422
|
enum: ("radio" | "checkbox")[];
|
|
18633
20423
|
type: "string";
|
|
18634
20424
|
};
|
|
20425
|
+
like: {
|
|
20426
|
+
properties: {
|
|
20427
|
+
label: {
|
|
20428
|
+
type: "string";
|
|
20429
|
+
};
|
|
20430
|
+
items: {
|
|
20431
|
+
items: {
|
|
20432
|
+
type: "string";
|
|
20433
|
+
};
|
|
20434
|
+
type: "array";
|
|
20435
|
+
};
|
|
20436
|
+
hide: {
|
|
20437
|
+
type: "boolean";
|
|
20438
|
+
};
|
|
20439
|
+
component: {
|
|
20440
|
+
enum: ("radio" | "checkbox")[];
|
|
20441
|
+
type: "string";
|
|
20442
|
+
};
|
|
20443
|
+
};
|
|
20444
|
+
additionalProperties: false;
|
|
20445
|
+
type: "object";
|
|
20446
|
+
};
|
|
20447
|
+
dislike: {
|
|
20448
|
+
properties: {
|
|
20449
|
+
label: {
|
|
20450
|
+
type: "string";
|
|
20451
|
+
};
|
|
20452
|
+
items: {
|
|
20453
|
+
items: {
|
|
20454
|
+
type: "string";
|
|
20455
|
+
};
|
|
20456
|
+
type: "array";
|
|
20457
|
+
};
|
|
20458
|
+
hide: {
|
|
20459
|
+
type: "boolean";
|
|
20460
|
+
};
|
|
20461
|
+
component: {
|
|
20462
|
+
enum: ("radio" | "checkbox")[];
|
|
20463
|
+
type: "string";
|
|
20464
|
+
};
|
|
20465
|
+
};
|
|
20466
|
+
additionalProperties: false;
|
|
20467
|
+
type: "object";
|
|
20468
|
+
};
|
|
20469
|
+
satisfied: {
|
|
20470
|
+
properties: {
|
|
20471
|
+
label: {
|
|
20472
|
+
type: "string";
|
|
20473
|
+
};
|
|
20474
|
+
items: {
|
|
20475
|
+
items: {
|
|
20476
|
+
type: "string";
|
|
20477
|
+
};
|
|
20478
|
+
type: "array";
|
|
20479
|
+
};
|
|
20480
|
+
hide: {
|
|
20481
|
+
type: "boolean";
|
|
20482
|
+
};
|
|
20483
|
+
component: {
|
|
20484
|
+
enum: ("radio" | "checkbox")[];
|
|
20485
|
+
type: "string";
|
|
20486
|
+
};
|
|
20487
|
+
};
|
|
20488
|
+
additionalProperties: false;
|
|
20489
|
+
type: "object";
|
|
20490
|
+
};
|
|
20491
|
+
neutral: {
|
|
20492
|
+
properties: {
|
|
20493
|
+
label: {
|
|
20494
|
+
type: "string";
|
|
20495
|
+
};
|
|
20496
|
+
items: {
|
|
20497
|
+
items: {
|
|
20498
|
+
type: "string";
|
|
20499
|
+
};
|
|
20500
|
+
type: "array";
|
|
20501
|
+
};
|
|
20502
|
+
hide: {
|
|
20503
|
+
type: "boolean";
|
|
20504
|
+
};
|
|
20505
|
+
component: {
|
|
20506
|
+
enum: ("radio" | "checkbox")[];
|
|
20507
|
+
type: "string";
|
|
20508
|
+
};
|
|
20509
|
+
};
|
|
20510
|
+
additionalProperties: false;
|
|
20511
|
+
type: "object";
|
|
20512
|
+
};
|
|
20513
|
+
dissatisfied: {
|
|
20514
|
+
properties: {
|
|
20515
|
+
label: {
|
|
20516
|
+
type: "string";
|
|
20517
|
+
};
|
|
20518
|
+
items: {
|
|
20519
|
+
items: {
|
|
20520
|
+
type: "string";
|
|
20521
|
+
};
|
|
20522
|
+
type: "array";
|
|
20523
|
+
};
|
|
20524
|
+
hide: {
|
|
20525
|
+
type: "boolean";
|
|
20526
|
+
};
|
|
20527
|
+
component: {
|
|
20528
|
+
enum: ("radio" | "checkbox")[];
|
|
20529
|
+
type: "string";
|
|
20530
|
+
};
|
|
20531
|
+
};
|
|
20532
|
+
additionalProperties: false;
|
|
20533
|
+
type: "object";
|
|
20534
|
+
};
|
|
18635
20535
|
};
|
|
18636
20536
|
additionalProperties: false;
|
|
18637
20537
|
type: "object";
|
|
@@ -18997,6 +20897,116 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
18997
20897
|
enum: ("radio" | "checkbox")[];
|
|
18998
20898
|
type: "string";
|
|
18999
20899
|
};
|
|
20900
|
+
like: {
|
|
20901
|
+
properties: {
|
|
20902
|
+
label: {
|
|
20903
|
+
type: "string";
|
|
20904
|
+
};
|
|
20905
|
+
items: {
|
|
20906
|
+
items: {
|
|
20907
|
+
type: "string";
|
|
20908
|
+
};
|
|
20909
|
+
type: "array";
|
|
20910
|
+
};
|
|
20911
|
+
hide: {
|
|
20912
|
+
type: "boolean";
|
|
20913
|
+
};
|
|
20914
|
+
component: {
|
|
20915
|
+
enum: ("radio" | "checkbox")[];
|
|
20916
|
+
type: "string";
|
|
20917
|
+
};
|
|
20918
|
+
};
|
|
20919
|
+
additionalProperties: false;
|
|
20920
|
+
type: "object";
|
|
20921
|
+
};
|
|
20922
|
+
dislike: {
|
|
20923
|
+
properties: {
|
|
20924
|
+
label: {
|
|
20925
|
+
type: "string";
|
|
20926
|
+
};
|
|
20927
|
+
items: {
|
|
20928
|
+
items: {
|
|
20929
|
+
type: "string";
|
|
20930
|
+
};
|
|
20931
|
+
type: "array";
|
|
20932
|
+
};
|
|
20933
|
+
hide: {
|
|
20934
|
+
type: "boolean";
|
|
20935
|
+
};
|
|
20936
|
+
component: {
|
|
20937
|
+
enum: ("radio" | "checkbox")[];
|
|
20938
|
+
type: "string";
|
|
20939
|
+
};
|
|
20940
|
+
};
|
|
20941
|
+
additionalProperties: false;
|
|
20942
|
+
type: "object";
|
|
20943
|
+
};
|
|
20944
|
+
satisfied: {
|
|
20945
|
+
properties: {
|
|
20946
|
+
label: {
|
|
20947
|
+
type: "string";
|
|
20948
|
+
};
|
|
20949
|
+
items: {
|
|
20950
|
+
items: {
|
|
20951
|
+
type: "string";
|
|
20952
|
+
};
|
|
20953
|
+
type: "array";
|
|
20954
|
+
};
|
|
20955
|
+
hide: {
|
|
20956
|
+
type: "boolean";
|
|
20957
|
+
};
|
|
20958
|
+
component: {
|
|
20959
|
+
enum: ("radio" | "checkbox")[];
|
|
20960
|
+
type: "string";
|
|
20961
|
+
};
|
|
20962
|
+
};
|
|
20963
|
+
additionalProperties: false;
|
|
20964
|
+
type: "object";
|
|
20965
|
+
};
|
|
20966
|
+
neutral: {
|
|
20967
|
+
properties: {
|
|
20968
|
+
label: {
|
|
20969
|
+
type: "string";
|
|
20970
|
+
};
|
|
20971
|
+
items: {
|
|
20972
|
+
items: {
|
|
20973
|
+
type: "string";
|
|
20974
|
+
};
|
|
20975
|
+
type: "array";
|
|
20976
|
+
};
|
|
20977
|
+
hide: {
|
|
20978
|
+
type: "boolean";
|
|
20979
|
+
};
|
|
20980
|
+
component: {
|
|
20981
|
+
enum: ("radio" | "checkbox")[];
|
|
20982
|
+
type: "string";
|
|
20983
|
+
};
|
|
20984
|
+
};
|
|
20985
|
+
additionalProperties: false;
|
|
20986
|
+
type: "object";
|
|
20987
|
+
};
|
|
20988
|
+
dissatisfied: {
|
|
20989
|
+
properties: {
|
|
20990
|
+
label: {
|
|
20991
|
+
type: "string";
|
|
20992
|
+
};
|
|
20993
|
+
items: {
|
|
20994
|
+
items: {
|
|
20995
|
+
type: "string";
|
|
20996
|
+
};
|
|
20997
|
+
type: "array";
|
|
20998
|
+
};
|
|
20999
|
+
hide: {
|
|
21000
|
+
type: "boolean";
|
|
21001
|
+
};
|
|
21002
|
+
component: {
|
|
21003
|
+
enum: ("radio" | "checkbox")[];
|
|
21004
|
+
type: "string";
|
|
21005
|
+
};
|
|
21006
|
+
};
|
|
21007
|
+
additionalProperties: false;
|
|
21008
|
+
type: "object";
|
|
21009
|
+
};
|
|
19000
21010
|
};
|
|
19001
21011
|
additionalProperties: false;
|
|
19002
21012
|
type: "object";
|
|
@@ -19893,6 +21903,116 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
19893
21903
|
enum: ("radio" | "checkbox")[];
|
|
19894
21904
|
type: "string";
|
|
19895
21905
|
};
|
|
21906
|
+
like: {
|
|
21907
|
+
properties: {
|
|
21908
|
+
label: {
|
|
21909
|
+
type: "string";
|
|
21910
|
+
};
|
|
21911
|
+
items: {
|
|
21912
|
+
items: {
|
|
21913
|
+
type: "string";
|
|
21914
|
+
};
|
|
21915
|
+
type: "array";
|
|
21916
|
+
};
|
|
21917
|
+
hide: {
|
|
21918
|
+
type: "boolean";
|
|
21919
|
+
};
|
|
21920
|
+
component: {
|
|
21921
|
+
enum: ("radio" | "checkbox")[];
|
|
21922
|
+
type: "string";
|
|
21923
|
+
};
|
|
21924
|
+
};
|
|
21925
|
+
additionalProperties: false;
|
|
21926
|
+
type: "object";
|
|
21927
|
+
};
|
|
21928
|
+
dislike: {
|
|
21929
|
+
properties: {
|
|
21930
|
+
label: {
|
|
21931
|
+
type: "string";
|
|
21932
|
+
};
|
|
21933
|
+
items: {
|
|
21934
|
+
items: {
|
|
21935
|
+
type: "string";
|
|
21936
|
+
};
|
|
21937
|
+
type: "array";
|
|
21938
|
+
};
|
|
21939
|
+
hide: {
|
|
21940
|
+
type: "boolean";
|
|
21941
|
+
};
|
|
21942
|
+
component: {
|
|
21943
|
+
enum: ("radio" | "checkbox")[];
|
|
21944
|
+
type: "string";
|
|
21945
|
+
};
|
|
21946
|
+
};
|
|
21947
|
+
additionalProperties: false;
|
|
21948
|
+
type: "object";
|
|
21949
|
+
};
|
|
21950
|
+
satisfied: {
|
|
21951
|
+
properties: {
|
|
21952
|
+
label: {
|
|
21953
|
+
type: "string";
|
|
21954
|
+
};
|
|
21955
|
+
items: {
|
|
21956
|
+
items: {
|
|
21957
|
+
type: "string";
|
|
21958
|
+
};
|
|
21959
|
+
type: "array";
|
|
21960
|
+
};
|
|
21961
|
+
hide: {
|
|
21962
|
+
type: "boolean";
|
|
21963
|
+
};
|
|
21964
|
+
component: {
|
|
21965
|
+
enum: ("radio" | "checkbox")[];
|
|
21966
|
+
type: "string";
|
|
21967
|
+
};
|
|
21968
|
+
};
|
|
21969
|
+
additionalProperties: false;
|
|
21970
|
+
type: "object";
|
|
21971
|
+
};
|
|
21972
|
+
neutral: {
|
|
21973
|
+
properties: {
|
|
21974
|
+
label: {
|
|
21975
|
+
type: "string";
|
|
21976
|
+
};
|
|
21977
|
+
items: {
|
|
21978
|
+
items: {
|
|
21979
|
+
type: "string";
|
|
21980
|
+
};
|
|
21981
|
+
type: "array";
|
|
21982
|
+
};
|
|
21983
|
+
hide: {
|
|
21984
|
+
type: "boolean";
|
|
21985
|
+
};
|
|
21986
|
+
component: {
|
|
21987
|
+
enum: ("radio" | "checkbox")[];
|
|
21988
|
+
type: "string";
|
|
21989
|
+
};
|
|
21990
|
+
};
|
|
21991
|
+
additionalProperties: false;
|
|
21992
|
+
type: "object";
|
|
21993
|
+
};
|
|
21994
|
+
dissatisfied: {
|
|
21995
|
+
properties: {
|
|
21996
|
+
label: {
|
|
21997
|
+
type: "string";
|
|
21998
|
+
};
|
|
21999
|
+
items: {
|
|
22000
|
+
items: {
|
|
22001
|
+
type: "string";
|
|
22002
|
+
};
|
|
22003
|
+
type: "array";
|
|
22004
|
+
};
|
|
22005
|
+
hide: {
|
|
22006
|
+
type: "boolean";
|
|
22007
|
+
};
|
|
22008
|
+
component: {
|
|
22009
|
+
enum: ("radio" | "checkbox")[];
|
|
22010
|
+
type: "string";
|
|
22011
|
+
};
|
|
22012
|
+
};
|
|
22013
|
+
additionalProperties: false;
|
|
22014
|
+
type: "object";
|
|
22015
|
+
};
|
|
19896
22016
|
};
|
|
19897
22017
|
additionalProperties: false;
|
|
19898
22018
|
type: "object";
|
|
@@ -21183,6 +23303,116 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
21183
23303
|
enum: ("radio" | "checkbox")[];
|
|
21184
23304
|
type: "string";
|
|
21185
23305
|
};
|
|
23306
|
+
like: {
|
|
23307
|
+
properties: {
|
|
23308
|
+
label: {
|
|
23309
|
+
type: "string";
|
|
23310
|
+
};
|
|
23311
|
+
items: {
|
|
23312
|
+
items: {
|
|
23313
|
+
type: "string";
|
|
23314
|
+
};
|
|
23315
|
+
type: "array";
|
|
23316
|
+
};
|
|
23317
|
+
hide: {
|
|
23318
|
+
type: "boolean";
|
|
23319
|
+
};
|
|
23320
|
+
component: {
|
|
23321
|
+
enum: ("radio" | "checkbox")[];
|
|
23322
|
+
type: "string";
|
|
23323
|
+
};
|
|
23324
|
+
};
|
|
23325
|
+
additionalProperties: false;
|
|
23326
|
+
type: "object";
|
|
23327
|
+
};
|
|
23328
|
+
dislike: {
|
|
23329
|
+
properties: {
|
|
23330
|
+
label: {
|
|
23331
|
+
type: "string";
|
|
23332
|
+
};
|
|
23333
|
+
items: {
|
|
23334
|
+
items: {
|
|
23335
|
+
type: "string";
|
|
23336
|
+
};
|
|
23337
|
+
type: "array";
|
|
23338
|
+
};
|
|
23339
|
+
hide: {
|
|
23340
|
+
type: "boolean";
|
|
23341
|
+
};
|
|
23342
|
+
component: {
|
|
23343
|
+
enum: ("radio" | "checkbox")[];
|
|
23344
|
+
type: "string";
|
|
23345
|
+
};
|
|
23346
|
+
};
|
|
23347
|
+
additionalProperties: false;
|
|
23348
|
+
type: "object";
|
|
23349
|
+
};
|
|
23350
|
+
satisfied: {
|
|
23351
|
+
properties: {
|
|
23352
|
+
label: {
|
|
23353
|
+
type: "string";
|
|
23354
|
+
};
|
|
23355
|
+
items: {
|
|
23356
|
+
items: {
|
|
23357
|
+
type: "string";
|
|
23358
|
+
};
|
|
23359
|
+
type: "array";
|
|
23360
|
+
};
|
|
23361
|
+
hide: {
|
|
23362
|
+
type: "boolean";
|
|
23363
|
+
};
|
|
23364
|
+
component: {
|
|
23365
|
+
enum: ("radio" | "checkbox")[];
|
|
23366
|
+
type: "string";
|
|
23367
|
+
};
|
|
23368
|
+
};
|
|
23369
|
+
additionalProperties: false;
|
|
23370
|
+
type: "object";
|
|
23371
|
+
};
|
|
23372
|
+
neutral: {
|
|
23373
|
+
properties: {
|
|
23374
|
+
label: {
|
|
23375
|
+
type: "string";
|
|
23376
|
+
};
|
|
23377
|
+
items: {
|
|
23378
|
+
items: {
|
|
23379
|
+
type: "string";
|
|
23380
|
+
};
|
|
23381
|
+
type: "array";
|
|
23382
|
+
};
|
|
23383
|
+
hide: {
|
|
23384
|
+
type: "boolean";
|
|
23385
|
+
};
|
|
23386
|
+
component: {
|
|
23387
|
+
enum: ("radio" | "checkbox")[];
|
|
23388
|
+
type: "string";
|
|
23389
|
+
};
|
|
23390
|
+
};
|
|
23391
|
+
additionalProperties: false;
|
|
23392
|
+
type: "object";
|
|
23393
|
+
};
|
|
23394
|
+
dissatisfied: {
|
|
23395
|
+
properties: {
|
|
23396
|
+
label: {
|
|
23397
|
+
type: "string";
|
|
23398
|
+
};
|
|
23399
|
+
items: {
|
|
23400
|
+
items: {
|
|
23401
|
+
type: "string";
|
|
23402
|
+
};
|
|
23403
|
+
type: "array";
|
|
23404
|
+
};
|
|
23405
|
+
hide: {
|
|
23406
|
+
type: "boolean";
|
|
23407
|
+
};
|
|
23408
|
+
component: {
|
|
23409
|
+
enum: ("radio" | "checkbox")[];
|
|
23410
|
+
type: "string";
|
|
23411
|
+
};
|
|
23412
|
+
};
|
|
23413
|
+
additionalProperties: false;
|
|
23414
|
+
type: "object";
|
|
23415
|
+
};
|
|
21186
23416
|
};
|
|
21187
23417
|
additionalProperties: false;
|
|
21188
23418
|
type: "object";
|
|
@@ -21548,6 +23778,116 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
21548
23778
|
enum: ("radio" | "checkbox")[];
|
|
21549
23779
|
type: "string";
|
|
21550
23780
|
};
|
|
23781
|
+
like: {
|
|
23782
|
+
properties: {
|
|
23783
|
+
label: {
|
|
23784
|
+
type: "string";
|
|
23785
|
+
};
|
|
23786
|
+
items: {
|
|
23787
|
+
items: {
|
|
23788
|
+
type: "string";
|
|
23789
|
+
};
|
|
23790
|
+
type: "array";
|
|
23791
|
+
};
|
|
23792
|
+
hide: {
|
|
23793
|
+
type: "boolean";
|
|
23794
|
+
};
|
|
23795
|
+
component: {
|
|
23796
|
+
enum: ("radio" | "checkbox")[];
|
|
23797
|
+
type: "string";
|
|
23798
|
+
};
|
|
23799
|
+
};
|
|
23800
|
+
additionalProperties: false;
|
|
23801
|
+
type: "object";
|
|
23802
|
+
};
|
|
23803
|
+
dislike: {
|
|
23804
|
+
properties: {
|
|
23805
|
+
label: {
|
|
23806
|
+
type: "string";
|
|
23807
|
+
};
|
|
23808
|
+
items: {
|
|
23809
|
+
items: {
|
|
23810
|
+
type: "string";
|
|
23811
|
+
};
|
|
23812
|
+
type: "array";
|
|
23813
|
+
};
|
|
23814
|
+
hide: {
|
|
23815
|
+
type: "boolean";
|
|
23816
|
+
};
|
|
23817
|
+
component: {
|
|
23818
|
+
enum: ("radio" | "checkbox")[];
|
|
23819
|
+
type: "string";
|
|
23820
|
+
};
|
|
23821
|
+
};
|
|
23822
|
+
additionalProperties: false;
|
|
23823
|
+
type: "object";
|
|
23824
|
+
};
|
|
23825
|
+
satisfied: {
|
|
23826
|
+
properties: {
|
|
23827
|
+
label: {
|
|
23828
|
+
type: "string";
|
|
23829
|
+
};
|
|
23830
|
+
items: {
|
|
23831
|
+
items: {
|
|
23832
|
+
type: "string";
|
|
23833
|
+
};
|
|
23834
|
+
type: "array";
|
|
23835
|
+
};
|
|
23836
|
+
hide: {
|
|
23837
|
+
type: "boolean";
|
|
23838
|
+
};
|
|
23839
|
+
component: {
|
|
23840
|
+
enum: ("radio" | "checkbox")[];
|
|
23841
|
+
type: "string";
|
|
23842
|
+
};
|
|
23843
|
+
};
|
|
23844
|
+
additionalProperties: false;
|
|
23845
|
+
type: "object";
|
|
23846
|
+
};
|
|
23847
|
+
neutral: {
|
|
23848
|
+
properties: {
|
|
23849
|
+
label: {
|
|
23850
|
+
type: "string";
|
|
23851
|
+
};
|
|
23852
|
+
items: {
|
|
23853
|
+
items: {
|
|
23854
|
+
type: "string";
|
|
23855
|
+
};
|
|
23856
|
+
type: "array";
|
|
23857
|
+
};
|
|
23858
|
+
hide: {
|
|
23859
|
+
type: "boolean";
|
|
23860
|
+
};
|
|
23861
|
+
component: {
|
|
23862
|
+
enum: ("radio" | "checkbox")[];
|
|
23863
|
+
type: "string";
|
|
23864
|
+
};
|
|
23865
|
+
};
|
|
23866
|
+
additionalProperties: false;
|
|
23867
|
+
type: "object";
|
|
23868
|
+
};
|
|
23869
|
+
dissatisfied: {
|
|
23870
|
+
properties: {
|
|
23871
|
+
label: {
|
|
23872
|
+
type: "string";
|
|
23873
|
+
};
|
|
23874
|
+
items: {
|
|
23875
|
+
items: {
|
|
23876
|
+
type: "string";
|
|
23877
|
+
};
|
|
23878
|
+
type: "array";
|
|
23879
|
+
};
|
|
23880
|
+
hide: {
|
|
23881
|
+
type: "boolean";
|
|
23882
|
+
};
|
|
23883
|
+
component: {
|
|
23884
|
+
enum: ("radio" | "checkbox")[];
|
|
23885
|
+
type: "string";
|
|
23886
|
+
};
|
|
23887
|
+
};
|
|
23888
|
+
additionalProperties: false;
|
|
23889
|
+
type: "object";
|
|
23890
|
+
};
|
|
21551
23891
|
};
|
|
21552
23892
|
additionalProperties: false;
|
|
21553
23893
|
type: "object";
|
|
@@ -22695,6 +25035,116 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22695
25035
|
enum: ("radio" | "checkbox")[];
|
|
22696
25036
|
type: "string";
|
|
22697
25037
|
};
|
|
25038
|
+
like: {
|
|
25039
|
+
properties: {
|
|
25040
|
+
label: {
|
|
25041
|
+
type: "string";
|
|
25042
|
+
};
|
|
25043
|
+
items: {
|
|
25044
|
+
items: {
|
|
25045
|
+
type: "string";
|
|
25046
|
+
};
|
|
25047
|
+
type: "array";
|
|
25048
|
+
};
|
|
25049
|
+
hide: {
|
|
25050
|
+
type: "boolean";
|
|
25051
|
+
};
|
|
25052
|
+
component: {
|
|
25053
|
+
enum: ("radio" | "checkbox")[];
|
|
25054
|
+
type: "string";
|
|
25055
|
+
};
|
|
25056
|
+
};
|
|
25057
|
+
additionalProperties: false;
|
|
25058
|
+
type: "object";
|
|
25059
|
+
};
|
|
25060
|
+
dislike: {
|
|
25061
|
+
properties: {
|
|
25062
|
+
label: {
|
|
25063
|
+
type: "string";
|
|
25064
|
+
};
|
|
25065
|
+
items: {
|
|
25066
|
+
items: {
|
|
25067
|
+
type: "string";
|
|
25068
|
+
};
|
|
25069
|
+
type: "array";
|
|
25070
|
+
};
|
|
25071
|
+
hide: {
|
|
25072
|
+
type: "boolean";
|
|
25073
|
+
};
|
|
25074
|
+
component: {
|
|
25075
|
+
enum: ("radio" | "checkbox")[];
|
|
25076
|
+
type: "string";
|
|
25077
|
+
};
|
|
25078
|
+
};
|
|
25079
|
+
additionalProperties: false;
|
|
25080
|
+
type: "object";
|
|
25081
|
+
};
|
|
25082
|
+
satisfied: {
|
|
25083
|
+
properties: {
|
|
25084
|
+
label: {
|
|
25085
|
+
type: "string";
|
|
25086
|
+
};
|
|
25087
|
+
items: {
|
|
25088
|
+
items: {
|
|
25089
|
+
type: "string";
|
|
25090
|
+
};
|
|
25091
|
+
type: "array";
|
|
25092
|
+
};
|
|
25093
|
+
hide: {
|
|
25094
|
+
type: "boolean";
|
|
25095
|
+
};
|
|
25096
|
+
component: {
|
|
25097
|
+
enum: ("radio" | "checkbox")[];
|
|
25098
|
+
type: "string";
|
|
25099
|
+
};
|
|
25100
|
+
};
|
|
25101
|
+
additionalProperties: false;
|
|
25102
|
+
type: "object";
|
|
25103
|
+
};
|
|
25104
|
+
neutral: {
|
|
25105
|
+
properties: {
|
|
25106
|
+
label: {
|
|
25107
|
+
type: "string";
|
|
25108
|
+
};
|
|
25109
|
+
items: {
|
|
25110
|
+
items: {
|
|
25111
|
+
type: "string";
|
|
25112
|
+
};
|
|
25113
|
+
type: "array";
|
|
25114
|
+
};
|
|
25115
|
+
hide: {
|
|
25116
|
+
type: "boolean";
|
|
25117
|
+
};
|
|
25118
|
+
component: {
|
|
25119
|
+
enum: ("radio" | "checkbox")[];
|
|
25120
|
+
type: "string";
|
|
25121
|
+
};
|
|
25122
|
+
};
|
|
25123
|
+
additionalProperties: false;
|
|
25124
|
+
type: "object";
|
|
25125
|
+
};
|
|
25126
|
+
dissatisfied: {
|
|
25127
|
+
properties: {
|
|
25128
|
+
label: {
|
|
25129
|
+
type: "string";
|
|
25130
|
+
};
|
|
25131
|
+
items: {
|
|
25132
|
+
items: {
|
|
25133
|
+
type: "string";
|
|
25134
|
+
};
|
|
25135
|
+
type: "array";
|
|
25136
|
+
};
|
|
25137
|
+
hide: {
|
|
25138
|
+
type: "boolean";
|
|
25139
|
+
};
|
|
25140
|
+
component: {
|
|
25141
|
+
enum: ("radio" | "checkbox")[];
|
|
25142
|
+
type: "string";
|
|
25143
|
+
};
|
|
25144
|
+
};
|
|
25145
|
+
additionalProperties: false;
|
|
25146
|
+
type: "object";
|
|
25147
|
+
};
|
|
22698
25148
|
};
|
|
22699
25149
|
additionalProperties: false;
|
|
22700
25150
|
type: "object";
|
|
@@ -23060,6 +25510,116 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23060
25510
|
enum: ("radio" | "checkbox")[];
|
|
23061
25511
|
type: "string";
|
|
23062
25512
|
};
|
|
25513
|
+
like: {
|
|
25514
|
+
properties: {
|
|
25515
|
+
label: {
|
|
25516
|
+
type: "string";
|
|
25517
|
+
};
|
|
25518
|
+
items: {
|
|
25519
|
+
items: {
|
|
25520
|
+
type: "string";
|
|
25521
|
+
};
|
|
25522
|
+
type: "array";
|
|
25523
|
+
};
|
|
25524
|
+
hide: {
|
|
25525
|
+
type: "boolean";
|
|
25526
|
+
};
|
|
25527
|
+
component: {
|
|
25528
|
+
enum: ("radio" | "checkbox")[];
|
|
25529
|
+
type: "string";
|
|
25530
|
+
};
|
|
25531
|
+
};
|
|
25532
|
+
additionalProperties: false;
|
|
25533
|
+
type: "object";
|
|
25534
|
+
};
|
|
25535
|
+
dislike: {
|
|
25536
|
+
properties: {
|
|
25537
|
+
label: {
|
|
25538
|
+
type: "string";
|
|
25539
|
+
};
|
|
25540
|
+
items: {
|
|
25541
|
+
items: {
|
|
25542
|
+
type: "string";
|
|
25543
|
+
};
|
|
25544
|
+
type: "array";
|
|
25545
|
+
};
|
|
25546
|
+
hide: {
|
|
25547
|
+
type: "boolean";
|
|
25548
|
+
};
|
|
25549
|
+
component: {
|
|
25550
|
+
enum: ("radio" | "checkbox")[];
|
|
25551
|
+
type: "string";
|
|
25552
|
+
};
|
|
25553
|
+
};
|
|
25554
|
+
additionalProperties: false;
|
|
25555
|
+
type: "object";
|
|
25556
|
+
};
|
|
25557
|
+
satisfied: {
|
|
25558
|
+
properties: {
|
|
25559
|
+
label: {
|
|
25560
|
+
type: "string";
|
|
25561
|
+
};
|
|
25562
|
+
items: {
|
|
25563
|
+
items: {
|
|
25564
|
+
type: "string";
|
|
25565
|
+
};
|
|
25566
|
+
type: "array";
|
|
25567
|
+
};
|
|
25568
|
+
hide: {
|
|
25569
|
+
type: "boolean";
|
|
25570
|
+
};
|
|
25571
|
+
component: {
|
|
25572
|
+
enum: ("radio" | "checkbox")[];
|
|
25573
|
+
type: "string";
|
|
25574
|
+
};
|
|
25575
|
+
};
|
|
25576
|
+
additionalProperties: false;
|
|
25577
|
+
type: "object";
|
|
25578
|
+
};
|
|
25579
|
+
neutral: {
|
|
25580
|
+
properties: {
|
|
25581
|
+
label: {
|
|
25582
|
+
type: "string";
|
|
25583
|
+
};
|
|
25584
|
+
items: {
|
|
25585
|
+
items: {
|
|
25586
|
+
type: "string";
|
|
25587
|
+
};
|
|
25588
|
+
type: "array";
|
|
25589
|
+
};
|
|
25590
|
+
hide: {
|
|
25591
|
+
type: "boolean";
|
|
25592
|
+
};
|
|
25593
|
+
component: {
|
|
25594
|
+
enum: ("radio" | "checkbox")[];
|
|
25595
|
+
type: "string";
|
|
25596
|
+
};
|
|
25597
|
+
};
|
|
25598
|
+
additionalProperties: false;
|
|
25599
|
+
type: "object";
|
|
25600
|
+
};
|
|
25601
|
+
dissatisfied: {
|
|
25602
|
+
properties: {
|
|
25603
|
+
label: {
|
|
25604
|
+
type: "string";
|
|
25605
|
+
};
|
|
25606
|
+
items: {
|
|
25607
|
+
items: {
|
|
25608
|
+
type: "string";
|
|
25609
|
+
};
|
|
25610
|
+
type: "array";
|
|
25611
|
+
};
|
|
25612
|
+
hide: {
|
|
25613
|
+
type: "boolean";
|
|
25614
|
+
};
|
|
25615
|
+
component: {
|
|
25616
|
+
enum: ("radio" | "checkbox")[];
|
|
25617
|
+
type: "string";
|
|
25618
|
+
};
|
|
25619
|
+
};
|
|
25620
|
+
additionalProperties: false;
|
|
25621
|
+
type: "object";
|
|
25622
|
+
};
|
|
23063
25623
|
};
|
|
23064
25624
|
additionalProperties: false;
|
|
23065
25625
|
type: "object";
|
|
@@ -25113,6 +27673,116 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25113
27673
|
enum: ("radio" | "checkbox")[];
|
|
25114
27674
|
type: "string";
|
|
25115
27675
|
};
|
|
27676
|
+
like: {
|
|
27677
|
+
properties: {
|
|
27678
|
+
label: {
|
|
27679
|
+
type: "string";
|
|
27680
|
+
};
|
|
27681
|
+
items: {
|
|
27682
|
+
items: {
|
|
27683
|
+
type: "string";
|
|
27684
|
+
};
|
|
27685
|
+
type: "array";
|
|
27686
|
+
};
|
|
27687
|
+
hide: {
|
|
27688
|
+
type: "boolean";
|
|
27689
|
+
};
|
|
27690
|
+
component: {
|
|
27691
|
+
enum: ("radio" | "checkbox")[];
|
|
27692
|
+
type: "string";
|
|
27693
|
+
};
|
|
27694
|
+
};
|
|
27695
|
+
additionalProperties: false;
|
|
27696
|
+
type: "object";
|
|
27697
|
+
};
|
|
27698
|
+
dislike: {
|
|
27699
|
+
properties: {
|
|
27700
|
+
label: {
|
|
27701
|
+
type: "string";
|
|
27702
|
+
};
|
|
27703
|
+
items: {
|
|
27704
|
+
items: {
|
|
27705
|
+
type: "string";
|
|
27706
|
+
};
|
|
27707
|
+
type: "array";
|
|
27708
|
+
};
|
|
27709
|
+
hide: {
|
|
27710
|
+
type: "boolean";
|
|
27711
|
+
};
|
|
27712
|
+
component: {
|
|
27713
|
+
enum: ("radio" | "checkbox")[];
|
|
27714
|
+
type: "string";
|
|
27715
|
+
};
|
|
27716
|
+
};
|
|
27717
|
+
additionalProperties: false;
|
|
27718
|
+
type: "object";
|
|
27719
|
+
};
|
|
27720
|
+
satisfied: {
|
|
27721
|
+
properties: {
|
|
27722
|
+
label: {
|
|
27723
|
+
type: "string";
|
|
27724
|
+
};
|
|
27725
|
+
items: {
|
|
27726
|
+
items: {
|
|
27727
|
+
type: "string";
|
|
27728
|
+
};
|
|
27729
|
+
type: "array";
|
|
27730
|
+
};
|
|
27731
|
+
hide: {
|
|
27732
|
+
type: "boolean";
|
|
27733
|
+
};
|
|
27734
|
+
component: {
|
|
27735
|
+
enum: ("radio" | "checkbox")[];
|
|
27736
|
+
type: "string";
|
|
27737
|
+
};
|
|
27738
|
+
};
|
|
27739
|
+
additionalProperties: false;
|
|
27740
|
+
type: "object";
|
|
27741
|
+
};
|
|
27742
|
+
neutral: {
|
|
27743
|
+
properties: {
|
|
27744
|
+
label: {
|
|
27745
|
+
type: "string";
|
|
27746
|
+
};
|
|
27747
|
+
items: {
|
|
27748
|
+
items: {
|
|
27749
|
+
type: "string";
|
|
27750
|
+
};
|
|
27751
|
+
type: "array";
|
|
27752
|
+
};
|
|
27753
|
+
hide: {
|
|
27754
|
+
type: "boolean";
|
|
27755
|
+
};
|
|
27756
|
+
component: {
|
|
27757
|
+
enum: ("radio" | "checkbox")[];
|
|
27758
|
+
type: "string";
|
|
27759
|
+
};
|
|
27760
|
+
};
|
|
27761
|
+
additionalProperties: false;
|
|
27762
|
+
type: "object";
|
|
27763
|
+
};
|
|
27764
|
+
dissatisfied: {
|
|
27765
|
+
properties: {
|
|
27766
|
+
label: {
|
|
27767
|
+
type: "string";
|
|
27768
|
+
};
|
|
27769
|
+
items: {
|
|
27770
|
+
items: {
|
|
27771
|
+
type: "string";
|
|
27772
|
+
};
|
|
27773
|
+
type: "array";
|
|
27774
|
+
};
|
|
27775
|
+
hide: {
|
|
27776
|
+
type: "boolean";
|
|
27777
|
+
};
|
|
27778
|
+
component: {
|
|
27779
|
+
enum: ("radio" | "checkbox")[];
|
|
27780
|
+
type: "string";
|
|
27781
|
+
};
|
|
27782
|
+
};
|
|
27783
|
+
additionalProperties: false;
|
|
27784
|
+
type: "object";
|
|
27785
|
+
};
|
|
25116
27786
|
};
|
|
25117
27787
|
additionalProperties: false;
|
|
25118
27788
|
type: "object";
|
|
@@ -25478,6 +28148,116 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25478
28148
|
enum: ("radio" | "checkbox")[];
|
|
25479
28149
|
type: "string";
|
|
25480
28150
|
};
|
|
28151
|
+
like: {
|
|
28152
|
+
properties: {
|
|
28153
|
+
label: {
|
|
28154
|
+
type: "string";
|
|
28155
|
+
};
|
|
28156
|
+
items: {
|
|
28157
|
+
items: {
|
|
28158
|
+
type: "string";
|
|
28159
|
+
};
|
|
28160
|
+
type: "array";
|
|
28161
|
+
};
|
|
28162
|
+
hide: {
|
|
28163
|
+
type: "boolean";
|
|
28164
|
+
};
|
|
28165
|
+
component: {
|
|
28166
|
+
enum: ("radio" | "checkbox")[];
|
|
28167
|
+
type: "string";
|
|
28168
|
+
};
|
|
28169
|
+
};
|
|
28170
|
+
additionalProperties: false;
|
|
28171
|
+
type: "object";
|
|
28172
|
+
};
|
|
28173
|
+
dislike: {
|
|
28174
|
+
properties: {
|
|
28175
|
+
label: {
|
|
28176
|
+
type: "string";
|
|
28177
|
+
};
|
|
28178
|
+
items: {
|
|
28179
|
+
items: {
|
|
28180
|
+
type: "string";
|
|
28181
|
+
};
|
|
28182
|
+
type: "array";
|
|
28183
|
+
};
|
|
28184
|
+
hide: {
|
|
28185
|
+
type: "boolean";
|
|
28186
|
+
};
|
|
28187
|
+
component: {
|
|
28188
|
+
enum: ("radio" | "checkbox")[];
|
|
28189
|
+
type: "string";
|
|
28190
|
+
};
|
|
28191
|
+
};
|
|
28192
|
+
additionalProperties: false;
|
|
28193
|
+
type: "object";
|
|
28194
|
+
};
|
|
28195
|
+
satisfied: {
|
|
28196
|
+
properties: {
|
|
28197
|
+
label: {
|
|
28198
|
+
type: "string";
|
|
28199
|
+
};
|
|
28200
|
+
items: {
|
|
28201
|
+
items: {
|
|
28202
|
+
type: "string";
|
|
28203
|
+
};
|
|
28204
|
+
type: "array";
|
|
28205
|
+
};
|
|
28206
|
+
hide: {
|
|
28207
|
+
type: "boolean";
|
|
28208
|
+
};
|
|
28209
|
+
component: {
|
|
28210
|
+
enum: ("radio" | "checkbox")[];
|
|
28211
|
+
type: "string";
|
|
28212
|
+
};
|
|
28213
|
+
};
|
|
28214
|
+
additionalProperties: false;
|
|
28215
|
+
type: "object";
|
|
28216
|
+
};
|
|
28217
|
+
neutral: {
|
|
28218
|
+
properties: {
|
|
28219
|
+
label: {
|
|
28220
|
+
type: "string";
|
|
28221
|
+
};
|
|
28222
|
+
items: {
|
|
28223
|
+
items: {
|
|
28224
|
+
type: "string";
|
|
28225
|
+
};
|
|
28226
|
+
type: "array";
|
|
28227
|
+
};
|
|
28228
|
+
hide: {
|
|
28229
|
+
type: "boolean";
|
|
28230
|
+
};
|
|
28231
|
+
component: {
|
|
28232
|
+
enum: ("radio" | "checkbox")[];
|
|
28233
|
+
type: "string";
|
|
28234
|
+
};
|
|
28235
|
+
};
|
|
28236
|
+
additionalProperties: false;
|
|
28237
|
+
type: "object";
|
|
28238
|
+
};
|
|
28239
|
+
dissatisfied: {
|
|
28240
|
+
properties: {
|
|
28241
|
+
label: {
|
|
28242
|
+
type: "string";
|
|
28243
|
+
};
|
|
28244
|
+
items: {
|
|
28245
|
+
items: {
|
|
28246
|
+
type: "string";
|
|
28247
|
+
};
|
|
28248
|
+
type: "array";
|
|
28249
|
+
};
|
|
28250
|
+
hide: {
|
|
28251
|
+
type: "boolean";
|
|
28252
|
+
};
|
|
28253
|
+
component: {
|
|
28254
|
+
enum: ("radio" | "checkbox")[];
|
|
28255
|
+
type: "string";
|
|
28256
|
+
};
|
|
28257
|
+
};
|
|
28258
|
+
additionalProperties: false;
|
|
28259
|
+
type: "object";
|
|
28260
|
+
};
|
|
25481
28261
|
};
|
|
25482
28262
|
additionalProperties: false;
|
|
25483
28263
|
type: "object";
|
|
@@ -27735,6 +30515,126 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27735
30515
|
readonly reasons: {
|
|
27736
30516
|
readonly type: "object";
|
|
27737
30517
|
readonly properties: {
|
|
30518
|
+
readonly like: {
|
|
30519
|
+
readonly type: "object";
|
|
30520
|
+
readonly properties: {
|
|
30521
|
+
readonly hide: {
|
|
30522
|
+
readonly type: "boolean";
|
|
30523
|
+
readonly default: false;
|
|
30524
|
+
};
|
|
30525
|
+
readonly component: {
|
|
30526
|
+
readonly type: "string";
|
|
30527
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
30528
|
+
readonly default: "checkbox";
|
|
30529
|
+
};
|
|
30530
|
+
readonly label: {
|
|
30531
|
+
readonly type: "string";
|
|
30532
|
+
};
|
|
30533
|
+
readonly items: {
|
|
30534
|
+
readonly type: "array";
|
|
30535
|
+
readonly items: {
|
|
30536
|
+
readonly type: "string";
|
|
30537
|
+
};
|
|
30538
|
+
};
|
|
30539
|
+
};
|
|
30540
|
+
readonly additionalProperties: false;
|
|
30541
|
+
};
|
|
30542
|
+
readonly dislike: {
|
|
30543
|
+
readonly type: "object";
|
|
30544
|
+
readonly properties: {
|
|
30545
|
+
readonly hide: {
|
|
30546
|
+
readonly type: "boolean";
|
|
30547
|
+
readonly default: false;
|
|
30548
|
+
};
|
|
30549
|
+
readonly component: {
|
|
30550
|
+
readonly type: "string";
|
|
30551
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
30552
|
+
readonly default: "checkbox";
|
|
30553
|
+
};
|
|
30554
|
+
readonly label: {
|
|
30555
|
+
readonly type: "string";
|
|
30556
|
+
};
|
|
30557
|
+
readonly items: {
|
|
30558
|
+
readonly type: "array";
|
|
30559
|
+
readonly items: {
|
|
30560
|
+
readonly type: "string";
|
|
30561
|
+
};
|
|
30562
|
+
};
|
|
30563
|
+
};
|
|
30564
|
+
readonly additionalProperties: false;
|
|
30565
|
+
};
|
|
30566
|
+
readonly satisfied: {
|
|
30567
|
+
readonly type: "object";
|
|
30568
|
+
readonly properties: {
|
|
30569
|
+
readonly hide: {
|
|
30570
|
+
readonly type: "boolean";
|
|
30571
|
+
readonly default: false;
|
|
30572
|
+
};
|
|
30573
|
+
readonly component: {
|
|
30574
|
+
readonly type: "string";
|
|
30575
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
30576
|
+
readonly default: "checkbox";
|
|
30577
|
+
};
|
|
30578
|
+
readonly label: {
|
|
30579
|
+
readonly type: "string";
|
|
30580
|
+
};
|
|
30581
|
+
readonly items: {
|
|
30582
|
+
readonly type: "array";
|
|
30583
|
+
readonly items: {
|
|
30584
|
+
readonly type: "string";
|
|
30585
|
+
};
|
|
30586
|
+
};
|
|
30587
|
+
};
|
|
30588
|
+
readonly additionalProperties: false;
|
|
30589
|
+
};
|
|
30590
|
+
readonly neutral: {
|
|
30591
|
+
readonly type: "object";
|
|
30592
|
+
readonly properties: {
|
|
30593
|
+
readonly hide: {
|
|
30594
|
+
readonly type: "boolean";
|
|
30595
|
+
readonly default: false;
|
|
30596
|
+
};
|
|
30597
|
+
readonly component: {
|
|
30598
|
+
readonly type: "string";
|
|
30599
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
30600
|
+
readonly default: "checkbox";
|
|
30601
|
+
};
|
|
30602
|
+
readonly label: {
|
|
30603
|
+
readonly type: "string";
|
|
30604
|
+
};
|
|
30605
|
+
readonly items: {
|
|
30606
|
+
readonly type: "array";
|
|
30607
|
+
readonly items: {
|
|
30608
|
+
readonly type: "string";
|
|
30609
|
+
};
|
|
30610
|
+
};
|
|
30611
|
+
};
|
|
30612
|
+
readonly additionalProperties: false;
|
|
30613
|
+
};
|
|
30614
|
+
readonly dissatisfied: {
|
|
30615
|
+
readonly type: "object";
|
|
30616
|
+
readonly properties: {
|
|
30617
|
+
readonly hide: {
|
|
30618
|
+
readonly type: "boolean";
|
|
30619
|
+
readonly default: false;
|
|
30620
|
+
};
|
|
30621
|
+
readonly component: {
|
|
30622
|
+
readonly type: "string";
|
|
30623
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
30624
|
+
readonly default: "checkbox";
|
|
30625
|
+
};
|
|
30626
|
+
readonly label: {
|
|
30627
|
+
readonly type: "string";
|
|
30628
|
+
};
|
|
30629
|
+
readonly items: {
|
|
30630
|
+
readonly type: "array";
|
|
30631
|
+
readonly items: {
|
|
30632
|
+
readonly type: "string";
|
|
30633
|
+
};
|
|
30634
|
+
};
|
|
30635
|
+
};
|
|
30636
|
+
readonly additionalProperties: false;
|
|
30637
|
+
};
|
|
27738
30638
|
readonly hide: {
|
|
27739
30639
|
readonly type: "boolean";
|
|
27740
30640
|
readonly default: false;
|
|
@@ -28197,6 +31097,126 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28197
31097
|
readonly reasons: {
|
|
28198
31098
|
readonly type: "object";
|
|
28199
31099
|
readonly properties: {
|
|
31100
|
+
readonly like: {
|
|
31101
|
+
readonly type: "object";
|
|
31102
|
+
readonly properties: {
|
|
31103
|
+
readonly hide: {
|
|
31104
|
+
readonly type: "boolean";
|
|
31105
|
+
readonly default: false;
|
|
31106
|
+
};
|
|
31107
|
+
readonly component: {
|
|
31108
|
+
readonly type: "string";
|
|
31109
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
31110
|
+
readonly default: "checkbox";
|
|
31111
|
+
};
|
|
31112
|
+
readonly label: {
|
|
31113
|
+
readonly type: "string";
|
|
31114
|
+
};
|
|
31115
|
+
readonly items: {
|
|
31116
|
+
readonly type: "array";
|
|
31117
|
+
readonly items: {
|
|
31118
|
+
readonly type: "string";
|
|
31119
|
+
};
|
|
31120
|
+
};
|
|
31121
|
+
};
|
|
31122
|
+
readonly additionalProperties: false;
|
|
31123
|
+
};
|
|
31124
|
+
readonly dislike: {
|
|
31125
|
+
readonly type: "object";
|
|
31126
|
+
readonly properties: {
|
|
31127
|
+
readonly hide: {
|
|
31128
|
+
readonly type: "boolean";
|
|
31129
|
+
readonly default: false;
|
|
31130
|
+
};
|
|
31131
|
+
readonly component: {
|
|
31132
|
+
readonly type: "string";
|
|
31133
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
31134
|
+
readonly default: "checkbox";
|
|
31135
|
+
};
|
|
31136
|
+
readonly label: {
|
|
31137
|
+
readonly type: "string";
|
|
31138
|
+
};
|
|
31139
|
+
readonly items: {
|
|
31140
|
+
readonly type: "array";
|
|
31141
|
+
readonly items: {
|
|
31142
|
+
readonly type: "string";
|
|
31143
|
+
};
|
|
31144
|
+
};
|
|
31145
|
+
};
|
|
31146
|
+
readonly additionalProperties: false;
|
|
31147
|
+
};
|
|
31148
|
+
readonly satisfied: {
|
|
31149
|
+
readonly type: "object";
|
|
31150
|
+
readonly properties: {
|
|
31151
|
+
readonly hide: {
|
|
31152
|
+
readonly type: "boolean";
|
|
31153
|
+
readonly default: false;
|
|
31154
|
+
};
|
|
31155
|
+
readonly component: {
|
|
31156
|
+
readonly type: "string";
|
|
31157
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
31158
|
+
readonly default: "checkbox";
|
|
31159
|
+
};
|
|
31160
|
+
readonly label: {
|
|
31161
|
+
readonly type: "string";
|
|
31162
|
+
};
|
|
31163
|
+
readonly items: {
|
|
31164
|
+
readonly type: "array";
|
|
31165
|
+
readonly items: {
|
|
31166
|
+
readonly type: "string";
|
|
31167
|
+
};
|
|
31168
|
+
};
|
|
31169
|
+
};
|
|
31170
|
+
readonly additionalProperties: false;
|
|
31171
|
+
};
|
|
31172
|
+
readonly neutral: {
|
|
31173
|
+
readonly type: "object";
|
|
31174
|
+
readonly properties: {
|
|
31175
|
+
readonly hide: {
|
|
31176
|
+
readonly type: "boolean";
|
|
31177
|
+
readonly default: false;
|
|
31178
|
+
};
|
|
31179
|
+
readonly component: {
|
|
31180
|
+
readonly type: "string";
|
|
31181
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
31182
|
+
readonly default: "checkbox";
|
|
31183
|
+
};
|
|
31184
|
+
readonly label: {
|
|
31185
|
+
readonly type: "string";
|
|
31186
|
+
};
|
|
31187
|
+
readonly items: {
|
|
31188
|
+
readonly type: "array";
|
|
31189
|
+
readonly items: {
|
|
31190
|
+
readonly type: "string";
|
|
31191
|
+
};
|
|
31192
|
+
};
|
|
31193
|
+
};
|
|
31194
|
+
readonly additionalProperties: false;
|
|
31195
|
+
};
|
|
31196
|
+
readonly dissatisfied: {
|
|
31197
|
+
readonly type: "object";
|
|
31198
|
+
readonly properties: {
|
|
31199
|
+
readonly hide: {
|
|
31200
|
+
readonly type: "boolean";
|
|
31201
|
+
readonly default: false;
|
|
31202
|
+
};
|
|
31203
|
+
readonly component: {
|
|
31204
|
+
readonly type: "string";
|
|
31205
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
31206
|
+
readonly default: "checkbox";
|
|
31207
|
+
};
|
|
31208
|
+
readonly label: {
|
|
31209
|
+
readonly type: "string";
|
|
31210
|
+
};
|
|
31211
|
+
readonly items: {
|
|
31212
|
+
readonly type: "array";
|
|
31213
|
+
readonly items: {
|
|
31214
|
+
readonly type: "string";
|
|
31215
|
+
};
|
|
31216
|
+
};
|
|
31217
|
+
};
|
|
31218
|
+
readonly additionalProperties: false;
|
|
31219
|
+
};
|
|
28200
31220
|
readonly hide: {
|
|
28201
31221
|
readonly type: "boolean";
|
|
28202
31222
|
readonly default: false;
|
|
@@ -29695,6 +32715,126 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29695
32715
|
readonly reasons: {
|
|
29696
32716
|
readonly type: "object";
|
|
29697
32717
|
readonly properties: {
|
|
32718
|
+
readonly like: {
|
|
32719
|
+
readonly type: "object";
|
|
32720
|
+
readonly properties: {
|
|
32721
|
+
readonly hide: {
|
|
32722
|
+
readonly type: "boolean";
|
|
32723
|
+
readonly default: false;
|
|
32724
|
+
};
|
|
32725
|
+
readonly component: {
|
|
32726
|
+
readonly type: "string";
|
|
32727
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
32728
|
+
readonly default: "checkbox";
|
|
32729
|
+
};
|
|
32730
|
+
readonly label: {
|
|
32731
|
+
readonly type: "string";
|
|
32732
|
+
};
|
|
32733
|
+
readonly items: {
|
|
32734
|
+
readonly type: "array";
|
|
32735
|
+
readonly items: {
|
|
32736
|
+
readonly type: "string";
|
|
32737
|
+
};
|
|
32738
|
+
};
|
|
32739
|
+
};
|
|
32740
|
+
readonly additionalProperties: false;
|
|
32741
|
+
};
|
|
32742
|
+
readonly dislike: {
|
|
32743
|
+
readonly type: "object";
|
|
32744
|
+
readonly properties: {
|
|
32745
|
+
readonly hide: {
|
|
32746
|
+
readonly type: "boolean";
|
|
32747
|
+
readonly default: false;
|
|
32748
|
+
};
|
|
32749
|
+
readonly component: {
|
|
32750
|
+
readonly type: "string";
|
|
32751
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
32752
|
+
readonly default: "checkbox";
|
|
32753
|
+
};
|
|
32754
|
+
readonly label: {
|
|
32755
|
+
readonly type: "string";
|
|
32756
|
+
};
|
|
32757
|
+
readonly items: {
|
|
32758
|
+
readonly type: "array";
|
|
32759
|
+
readonly items: {
|
|
32760
|
+
readonly type: "string";
|
|
32761
|
+
};
|
|
32762
|
+
};
|
|
32763
|
+
};
|
|
32764
|
+
readonly additionalProperties: false;
|
|
32765
|
+
};
|
|
32766
|
+
readonly satisfied: {
|
|
32767
|
+
readonly type: "object";
|
|
32768
|
+
readonly properties: {
|
|
32769
|
+
readonly hide: {
|
|
32770
|
+
readonly type: "boolean";
|
|
32771
|
+
readonly default: false;
|
|
32772
|
+
};
|
|
32773
|
+
readonly component: {
|
|
32774
|
+
readonly type: "string";
|
|
32775
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
32776
|
+
readonly default: "checkbox";
|
|
32777
|
+
};
|
|
32778
|
+
readonly label: {
|
|
32779
|
+
readonly type: "string";
|
|
32780
|
+
};
|
|
32781
|
+
readonly items: {
|
|
32782
|
+
readonly type: "array";
|
|
32783
|
+
readonly items: {
|
|
32784
|
+
readonly type: "string";
|
|
32785
|
+
};
|
|
32786
|
+
};
|
|
32787
|
+
};
|
|
32788
|
+
readonly additionalProperties: false;
|
|
32789
|
+
};
|
|
32790
|
+
readonly neutral: {
|
|
32791
|
+
readonly type: "object";
|
|
32792
|
+
readonly properties: {
|
|
32793
|
+
readonly hide: {
|
|
32794
|
+
readonly type: "boolean";
|
|
32795
|
+
readonly default: false;
|
|
32796
|
+
};
|
|
32797
|
+
readonly component: {
|
|
32798
|
+
readonly type: "string";
|
|
32799
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
32800
|
+
readonly default: "checkbox";
|
|
32801
|
+
};
|
|
32802
|
+
readonly label: {
|
|
32803
|
+
readonly type: "string";
|
|
32804
|
+
};
|
|
32805
|
+
readonly items: {
|
|
32806
|
+
readonly type: "array";
|
|
32807
|
+
readonly items: {
|
|
32808
|
+
readonly type: "string";
|
|
32809
|
+
};
|
|
32810
|
+
};
|
|
32811
|
+
};
|
|
32812
|
+
readonly additionalProperties: false;
|
|
32813
|
+
};
|
|
32814
|
+
readonly dissatisfied: {
|
|
32815
|
+
readonly type: "object";
|
|
32816
|
+
readonly properties: {
|
|
32817
|
+
readonly hide: {
|
|
32818
|
+
readonly type: "boolean";
|
|
32819
|
+
readonly default: false;
|
|
32820
|
+
};
|
|
32821
|
+
readonly component: {
|
|
32822
|
+
readonly type: "string";
|
|
32823
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
32824
|
+
readonly default: "checkbox";
|
|
32825
|
+
};
|
|
32826
|
+
readonly label: {
|
|
32827
|
+
readonly type: "string";
|
|
32828
|
+
};
|
|
32829
|
+
readonly items: {
|
|
32830
|
+
readonly type: "array";
|
|
32831
|
+
readonly items: {
|
|
32832
|
+
readonly type: "string";
|
|
32833
|
+
};
|
|
32834
|
+
};
|
|
32835
|
+
};
|
|
32836
|
+
readonly additionalProperties: false;
|
|
32837
|
+
};
|
|
29698
32838
|
readonly hide: {
|
|
29699
32839
|
readonly type: "boolean";
|
|
29700
32840
|
readonly default: false;
|
|
@@ -30157,6 +33297,126 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30157
33297
|
readonly reasons: {
|
|
30158
33298
|
readonly type: "object";
|
|
30159
33299
|
readonly properties: {
|
|
33300
|
+
readonly like: {
|
|
33301
|
+
readonly type: "object";
|
|
33302
|
+
readonly properties: {
|
|
33303
|
+
readonly hide: {
|
|
33304
|
+
readonly type: "boolean";
|
|
33305
|
+
readonly default: false;
|
|
33306
|
+
};
|
|
33307
|
+
readonly component: {
|
|
33308
|
+
readonly type: "string";
|
|
33309
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
33310
|
+
readonly default: "checkbox";
|
|
33311
|
+
};
|
|
33312
|
+
readonly label: {
|
|
33313
|
+
readonly type: "string";
|
|
33314
|
+
};
|
|
33315
|
+
readonly items: {
|
|
33316
|
+
readonly type: "array";
|
|
33317
|
+
readonly items: {
|
|
33318
|
+
readonly type: "string";
|
|
33319
|
+
};
|
|
33320
|
+
};
|
|
33321
|
+
};
|
|
33322
|
+
readonly additionalProperties: false;
|
|
33323
|
+
};
|
|
33324
|
+
readonly dislike: {
|
|
33325
|
+
readonly type: "object";
|
|
33326
|
+
readonly properties: {
|
|
33327
|
+
readonly hide: {
|
|
33328
|
+
readonly type: "boolean";
|
|
33329
|
+
readonly default: false;
|
|
33330
|
+
};
|
|
33331
|
+
readonly component: {
|
|
33332
|
+
readonly type: "string";
|
|
33333
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
33334
|
+
readonly default: "checkbox";
|
|
33335
|
+
};
|
|
33336
|
+
readonly label: {
|
|
33337
|
+
readonly type: "string";
|
|
33338
|
+
};
|
|
33339
|
+
readonly items: {
|
|
33340
|
+
readonly type: "array";
|
|
33341
|
+
readonly items: {
|
|
33342
|
+
readonly type: "string";
|
|
33343
|
+
};
|
|
33344
|
+
};
|
|
33345
|
+
};
|
|
33346
|
+
readonly additionalProperties: false;
|
|
33347
|
+
};
|
|
33348
|
+
readonly satisfied: {
|
|
33349
|
+
readonly type: "object";
|
|
33350
|
+
readonly properties: {
|
|
33351
|
+
readonly hide: {
|
|
33352
|
+
readonly type: "boolean";
|
|
33353
|
+
readonly default: false;
|
|
33354
|
+
};
|
|
33355
|
+
readonly component: {
|
|
33356
|
+
readonly type: "string";
|
|
33357
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
33358
|
+
readonly default: "checkbox";
|
|
33359
|
+
};
|
|
33360
|
+
readonly label: {
|
|
33361
|
+
readonly type: "string";
|
|
33362
|
+
};
|
|
33363
|
+
readonly items: {
|
|
33364
|
+
readonly type: "array";
|
|
33365
|
+
readonly items: {
|
|
33366
|
+
readonly type: "string";
|
|
33367
|
+
};
|
|
33368
|
+
};
|
|
33369
|
+
};
|
|
33370
|
+
readonly additionalProperties: false;
|
|
33371
|
+
};
|
|
33372
|
+
readonly neutral: {
|
|
33373
|
+
readonly type: "object";
|
|
33374
|
+
readonly properties: {
|
|
33375
|
+
readonly hide: {
|
|
33376
|
+
readonly type: "boolean";
|
|
33377
|
+
readonly default: false;
|
|
33378
|
+
};
|
|
33379
|
+
readonly component: {
|
|
33380
|
+
readonly type: "string";
|
|
33381
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
33382
|
+
readonly default: "checkbox";
|
|
33383
|
+
};
|
|
33384
|
+
readonly label: {
|
|
33385
|
+
readonly type: "string";
|
|
33386
|
+
};
|
|
33387
|
+
readonly items: {
|
|
33388
|
+
readonly type: "array";
|
|
33389
|
+
readonly items: {
|
|
33390
|
+
readonly type: "string";
|
|
33391
|
+
};
|
|
33392
|
+
};
|
|
33393
|
+
};
|
|
33394
|
+
readonly additionalProperties: false;
|
|
33395
|
+
};
|
|
33396
|
+
readonly dissatisfied: {
|
|
33397
|
+
readonly type: "object";
|
|
33398
|
+
readonly properties: {
|
|
33399
|
+
readonly hide: {
|
|
33400
|
+
readonly type: "boolean";
|
|
33401
|
+
readonly default: false;
|
|
33402
|
+
};
|
|
33403
|
+
readonly component: {
|
|
33404
|
+
readonly type: "string";
|
|
33405
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
33406
|
+
readonly default: "checkbox";
|
|
33407
|
+
};
|
|
33408
|
+
readonly label: {
|
|
33409
|
+
readonly type: "string";
|
|
33410
|
+
};
|
|
33411
|
+
readonly items: {
|
|
33412
|
+
readonly type: "array";
|
|
33413
|
+
readonly items: {
|
|
33414
|
+
readonly type: "string";
|
|
33415
|
+
};
|
|
33416
|
+
};
|
|
33417
|
+
};
|
|
33418
|
+
readonly additionalProperties: false;
|
|
33419
|
+
};
|
|
30160
33420
|
readonly hide: {
|
|
30161
33421
|
readonly type: "boolean";
|
|
30162
33422
|
readonly default: false;
|
|
@@ -31339,6 +34599,126 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
31339
34599
|
readonly reasons: {
|
|
31340
34600
|
readonly type: "object";
|
|
31341
34601
|
readonly properties: {
|
|
34602
|
+
readonly like: {
|
|
34603
|
+
readonly type: "object";
|
|
34604
|
+
readonly properties: {
|
|
34605
|
+
readonly hide: {
|
|
34606
|
+
readonly type: "boolean";
|
|
34607
|
+
readonly default: false;
|
|
34608
|
+
};
|
|
34609
|
+
readonly component: {
|
|
34610
|
+
readonly type: "string";
|
|
34611
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
34612
|
+
readonly default: "checkbox";
|
|
34613
|
+
};
|
|
34614
|
+
readonly label: {
|
|
34615
|
+
readonly type: "string";
|
|
34616
|
+
};
|
|
34617
|
+
readonly items: {
|
|
34618
|
+
readonly type: "array";
|
|
34619
|
+
readonly items: {
|
|
34620
|
+
readonly type: "string";
|
|
34621
|
+
};
|
|
34622
|
+
};
|
|
34623
|
+
};
|
|
34624
|
+
readonly additionalProperties: false;
|
|
34625
|
+
};
|
|
34626
|
+
readonly dislike: {
|
|
34627
|
+
readonly type: "object";
|
|
34628
|
+
readonly properties: {
|
|
34629
|
+
readonly hide: {
|
|
34630
|
+
readonly type: "boolean";
|
|
34631
|
+
readonly default: false;
|
|
34632
|
+
};
|
|
34633
|
+
readonly component: {
|
|
34634
|
+
readonly type: "string";
|
|
34635
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
34636
|
+
readonly default: "checkbox";
|
|
34637
|
+
};
|
|
34638
|
+
readonly label: {
|
|
34639
|
+
readonly type: "string";
|
|
34640
|
+
};
|
|
34641
|
+
readonly items: {
|
|
34642
|
+
readonly type: "array";
|
|
34643
|
+
readonly items: {
|
|
34644
|
+
readonly type: "string";
|
|
34645
|
+
};
|
|
34646
|
+
};
|
|
34647
|
+
};
|
|
34648
|
+
readonly additionalProperties: false;
|
|
34649
|
+
};
|
|
34650
|
+
readonly satisfied: {
|
|
34651
|
+
readonly type: "object";
|
|
34652
|
+
readonly properties: {
|
|
34653
|
+
readonly hide: {
|
|
34654
|
+
readonly type: "boolean";
|
|
34655
|
+
readonly default: false;
|
|
34656
|
+
};
|
|
34657
|
+
readonly component: {
|
|
34658
|
+
readonly type: "string";
|
|
34659
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
34660
|
+
readonly default: "checkbox";
|
|
34661
|
+
};
|
|
34662
|
+
readonly label: {
|
|
34663
|
+
readonly type: "string";
|
|
34664
|
+
};
|
|
34665
|
+
readonly items: {
|
|
34666
|
+
readonly type: "array";
|
|
34667
|
+
readonly items: {
|
|
34668
|
+
readonly type: "string";
|
|
34669
|
+
};
|
|
34670
|
+
};
|
|
34671
|
+
};
|
|
34672
|
+
readonly additionalProperties: false;
|
|
34673
|
+
};
|
|
34674
|
+
readonly neutral: {
|
|
34675
|
+
readonly type: "object";
|
|
34676
|
+
readonly properties: {
|
|
34677
|
+
readonly hide: {
|
|
34678
|
+
readonly type: "boolean";
|
|
34679
|
+
readonly default: false;
|
|
34680
|
+
};
|
|
34681
|
+
readonly component: {
|
|
34682
|
+
readonly type: "string";
|
|
34683
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
34684
|
+
readonly default: "checkbox";
|
|
34685
|
+
};
|
|
34686
|
+
readonly label: {
|
|
34687
|
+
readonly type: "string";
|
|
34688
|
+
};
|
|
34689
|
+
readonly items: {
|
|
34690
|
+
readonly type: "array";
|
|
34691
|
+
readonly items: {
|
|
34692
|
+
readonly type: "string";
|
|
34693
|
+
};
|
|
34694
|
+
};
|
|
34695
|
+
};
|
|
34696
|
+
readonly additionalProperties: false;
|
|
34697
|
+
};
|
|
34698
|
+
readonly dissatisfied: {
|
|
34699
|
+
readonly type: "object";
|
|
34700
|
+
readonly properties: {
|
|
34701
|
+
readonly hide: {
|
|
34702
|
+
readonly type: "boolean";
|
|
34703
|
+
readonly default: false;
|
|
34704
|
+
};
|
|
34705
|
+
readonly component: {
|
|
34706
|
+
readonly type: "string";
|
|
34707
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
34708
|
+
readonly default: "checkbox";
|
|
34709
|
+
};
|
|
34710
|
+
readonly label: {
|
|
34711
|
+
readonly type: "string";
|
|
34712
|
+
};
|
|
34713
|
+
readonly items: {
|
|
34714
|
+
readonly type: "array";
|
|
34715
|
+
readonly items: {
|
|
34716
|
+
readonly type: "string";
|
|
34717
|
+
};
|
|
34718
|
+
};
|
|
34719
|
+
};
|
|
34720
|
+
readonly additionalProperties: false;
|
|
34721
|
+
};
|
|
31342
34722
|
readonly hide: {
|
|
31343
34723
|
readonly type: "boolean";
|
|
31344
34724
|
readonly default: false;
|
|
@@ -33088,6 +36468,126 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
33088
36468
|
readonly reasons: {
|
|
33089
36469
|
readonly type: "object";
|
|
33090
36470
|
readonly properties: {
|
|
36471
|
+
readonly like: {
|
|
36472
|
+
readonly type: "object";
|
|
36473
|
+
readonly properties: {
|
|
36474
|
+
readonly hide: {
|
|
36475
|
+
readonly type: "boolean";
|
|
36476
|
+
readonly default: false;
|
|
36477
|
+
};
|
|
36478
|
+
readonly component: {
|
|
36479
|
+
readonly type: "string";
|
|
36480
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
36481
|
+
readonly default: "checkbox";
|
|
36482
|
+
};
|
|
36483
|
+
readonly label: {
|
|
36484
|
+
readonly type: "string";
|
|
36485
|
+
};
|
|
36486
|
+
readonly items: {
|
|
36487
|
+
readonly type: "array";
|
|
36488
|
+
readonly items: {
|
|
36489
|
+
readonly type: "string";
|
|
36490
|
+
};
|
|
36491
|
+
};
|
|
36492
|
+
};
|
|
36493
|
+
readonly additionalProperties: false;
|
|
36494
|
+
};
|
|
36495
|
+
readonly dislike: {
|
|
36496
|
+
readonly type: "object";
|
|
36497
|
+
readonly properties: {
|
|
36498
|
+
readonly hide: {
|
|
36499
|
+
readonly type: "boolean";
|
|
36500
|
+
readonly default: false;
|
|
36501
|
+
};
|
|
36502
|
+
readonly component: {
|
|
36503
|
+
readonly type: "string";
|
|
36504
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
36505
|
+
readonly default: "checkbox";
|
|
36506
|
+
};
|
|
36507
|
+
readonly label: {
|
|
36508
|
+
readonly type: "string";
|
|
36509
|
+
};
|
|
36510
|
+
readonly items: {
|
|
36511
|
+
readonly type: "array";
|
|
36512
|
+
readonly items: {
|
|
36513
|
+
readonly type: "string";
|
|
36514
|
+
};
|
|
36515
|
+
};
|
|
36516
|
+
};
|
|
36517
|
+
readonly additionalProperties: false;
|
|
36518
|
+
};
|
|
36519
|
+
readonly satisfied: {
|
|
36520
|
+
readonly type: "object";
|
|
36521
|
+
readonly properties: {
|
|
36522
|
+
readonly hide: {
|
|
36523
|
+
readonly type: "boolean";
|
|
36524
|
+
readonly default: false;
|
|
36525
|
+
};
|
|
36526
|
+
readonly component: {
|
|
36527
|
+
readonly type: "string";
|
|
36528
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
36529
|
+
readonly default: "checkbox";
|
|
36530
|
+
};
|
|
36531
|
+
readonly label: {
|
|
36532
|
+
readonly type: "string";
|
|
36533
|
+
};
|
|
36534
|
+
readonly items: {
|
|
36535
|
+
readonly type: "array";
|
|
36536
|
+
readonly items: {
|
|
36537
|
+
readonly type: "string";
|
|
36538
|
+
};
|
|
36539
|
+
};
|
|
36540
|
+
};
|
|
36541
|
+
readonly additionalProperties: false;
|
|
36542
|
+
};
|
|
36543
|
+
readonly neutral: {
|
|
36544
|
+
readonly type: "object";
|
|
36545
|
+
readonly properties: {
|
|
36546
|
+
readonly hide: {
|
|
36547
|
+
readonly type: "boolean";
|
|
36548
|
+
readonly default: false;
|
|
36549
|
+
};
|
|
36550
|
+
readonly component: {
|
|
36551
|
+
readonly type: "string";
|
|
36552
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
36553
|
+
readonly default: "checkbox";
|
|
36554
|
+
};
|
|
36555
|
+
readonly label: {
|
|
36556
|
+
readonly type: "string";
|
|
36557
|
+
};
|
|
36558
|
+
readonly items: {
|
|
36559
|
+
readonly type: "array";
|
|
36560
|
+
readonly items: {
|
|
36561
|
+
readonly type: "string";
|
|
36562
|
+
};
|
|
36563
|
+
};
|
|
36564
|
+
};
|
|
36565
|
+
readonly additionalProperties: false;
|
|
36566
|
+
};
|
|
36567
|
+
readonly dissatisfied: {
|
|
36568
|
+
readonly type: "object";
|
|
36569
|
+
readonly properties: {
|
|
36570
|
+
readonly hide: {
|
|
36571
|
+
readonly type: "boolean";
|
|
36572
|
+
readonly default: false;
|
|
36573
|
+
};
|
|
36574
|
+
readonly component: {
|
|
36575
|
+
readonly type: "string";
|
|
36576
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
36577
|
+
readonly default: "checkbox";
|
|
36578
|
+
};
|
|
36579
|
+
readonly label: {
|
|
36580
|
+
readonly type: "string";
|
|
36581
|
+
};
|
|
36582
|
+
readonly items: {
|
|
36583
|
+
readonly type: "array";
|
|
36584
|
+
readonly items: {
|
|
36585
|
+
readonly type: "string";
|
|
36586
|
+
};
|
|
36587
|
+
};
|
|
36588
|
+
};
|
|
36589
|
+
readonly additionalProperties: false;
|
|
36590
|
+
};
|
|
33091
36591
|
readonly hide: {
|
|
33092
36592
|
readonly type: "boolean";
|
|
33093
36593
|
readonly default: false;
|
|
@@ -33550,6 +37050,126 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
33550
37050
|
readonly reasons: {
|
|
33551
37051
|
readonly type: "object";
|
|
33552
37052
|
readonly properties: {
|
|
37053
|
+
readonly like: {
|
|
37054
|
+
readonly type: "object";
|
|
37055
|
+
readonly properties: {
|
|
37056
|
+
readonly hide: {
|
|
37057
|
+
readonly type: "boolean";
|
|
37058
|
+
readonly default: false;
|
|
37059
|
+
};
|
|
37060
|
+
readonly component: {
|
|
37061
|
+
readonly type: "string";
|
|
37062
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
37063
|
+
readonly default: "checkbox";
|
|
37064
|
+
};
|
|
37065
|
+
readonly label: {
|
|
37066
|
+
readonly type: "string";
|
|
37067
|
+
};
|
|
37068
|
+
readonly items: {
|
|
37069
|
+
readonly type: "array";
|
|
37070
|
+
readonly items: {
|
|
37071
|
+
readonly type: "string";
|
|
37072
|
+
};
|
|
37073
|
+
};
|
|
37074
|
+
};
|
|
37075
|
+
readonly additionalProperties: false;
|
|
37076
|
+
};
|
|
37077
|
+
readonly dislike: {
|
|
37078
|
+
readonly type: "object";
|
|
37079
|
+
readonly properties: {
|
|
37080
|
+
readonly hide: {
|
|
37081
|
+
readonly type: "boolean";
|
|
37082
|
+
readonly default: false;
|
|
37083
|
+
};
|
|
37084
|
+
readonly component: {
|
|
37085
|
+
readonly type: "string";
|
|
37086
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
37087
|
+
readonly default: "checkbox";
|
|
37088
|
+
};
|
|
37089
|
+
readonly label: {
|
|
37090
|
+
readonly type: "string";
|
|
37091
|
+
};
|
|
37092
|
+
readonly items: {
|
|
37093
|
+
readonly type: "array";
|
|
37094
|
+
readonly items: {
|
|
37095
|
+
readonly type: "string";
|
|
37096
|
+
};
|
|
37097
|
+
};
|
|
37098
|
+
};
|
|
37099
|
+
readonly additionalProperties: false;
|
|
37100
|
+
};
|
|
37101
|
+
readonly satisfied: {
|
|
37102
|
+
readonly type: "object";
|
|
37103
|
+
readonly properties: {
|
|
37104
|
+
readonly hide: {
|
|
37105
|
+
readonly type: "boolean";
|
|
37106
|
+
readonly default: false;
|
|
37107
|
+
};
|
|
37108
|
+
readonly component: {
|
|
37109
|
+
readonly type: "string";
|
|
37110
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
37111
|
+
readonly default: "checkbox";
|
|
37112
|
+
};
|
|
37113
|
+
readonly label: {
|
|
37114
|
+
readonly type: "string";
|
|
37115
|
+
};
|
|
37116
|
+
readonly items: {
|
|
37117
|
+
readonly type: "array";
|
|
37118
|
+
readonly items: {
|
|
37119
|
+
readonly type: "string";
|
|
37120
|
+
};
|
|
37121
|
+
};
|
|
37122
|
+
};
|
|
37123
|
+
readonly additionalProperties: false;
|
|
37124
|
+
};
|
|
37125
|
+
readonly neutral: {
|
|
37126
|
+
readonly type: "object";
|
|
37127
|
+
readonly properties: {
|
|
37128
|
+
readonly hide: {
|
|
37129
|
+
readonly type: "boolean";
|
|
37130
|
+
readonly default: false;
|
|
37131
|
+
};
|
|
37132
|
+
readonly component: {
|
|
37133
|
+
readonly type: "string";
|
|
37134
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
37135
|
+
readonly default: "checkbox";
|
|
37136
|
+
};
|
|
37137
|
+
readonly label: {
|
|
37138
|
+
readonly type: "string";
|
|
37139
|
+
};
|
|
37140
|
+
readonly items: {
|
|
37141
|
+
readonly type: "array";
|
|
37142
|
+
readonly items: {
|
|
37143
|
+
readonly type: "string";
|
|
37144
|
+
};
|
|
37145
|
+
};
|
|
37146
|
+
};
|
|
37147
|
+
readonly additionalProperties: false;
|
|
37148
|
+
};
|
|
37149
|
+
readonly dissatisfied: {
|
|
37150
|
+
readonly type: "object";
|
|
37151
|
+
readonly properties: {
|
|
37152
|
+
readonly hide: {
|
|
37153
|
+
readonly type: "boolean";
|
|
37154
|
+
readonly default: false;
|
|
37155
|
+
};
|
|
37156
|
+
readonly component: {
|
|
37157
|
+
readonly type: "string";
|
|
37158
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
37159
|
+
readonly default: "checkbox";
|
|
37160
|
+
};
|
|
37161
|
+
readonly label: {
|
|
37162
|
+
readonly type: "string";
|
|
37163
|
+
};
|
|
37164
|
+
readonly items: {
|
|
37165
|
+
readonly type: "array";
|
|
37166
|
+
readonly items: {
|
|
37167
|
+
readonly type: "string";
|
|
37168
|
+
};
|
|
37169
|
+
};
|
|
37170
|
+
};
|
|
37171
|
+
readonly additionalProperties: false;
|
|
37172
|
+
};
|
|
33553
37173
|
readonly hide: {
|
|
33554
37174
|
readonly type: "boolean";
|
|
33555
37175
|
readonly default: false;
|
|
@@ -34908,6 +38528,126 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
34908
38528
|
readonly reasons: {
|
|
34909
38529
|
readonly type: "object";
|
|
34910
38530
|
readonly properties: {
|
|
38531
|
+
readonly like: {
|
|
38532
|
+
readonly type: "object";
|
|
38533
|
+
readonly properties: {
|
|
38534
|
+
readonly hide: {
|
|
38535
|
+
readonly type: "boolean";
|
|
38536
|
+
readonly default: false;
|
|
38537
|
+
};
|
|
38538
|
+
readonly component: {
|
|
38539
|
+
readonly type: "string";
|
|
38540
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
38541
|
+
readonly default: "checkbox";
|
|
38542
|
+
};
|
|
38543
|
+
readonly label: {
|
|
38544
|
+
readonly type: "string";
|
|
38545
|
+
};
|
|
38546
|
+
readonly items: {
|
|
38547
|
+
readonly type: "array";
|
|
38548
|
+
readonly items: {
|
|
38549
|
+
readonly type: "string";
|
|
38550
|
+
};
|
|
38551
|
+
};
|
|
38552
|
+
};
|
|
38553
|
+
readonly additionalProperties: false;
|
|
38554
|
+
};
|
|
38555
|
+
readonly dislike: {
|
|
38556
|
+
readonly type: "object";
|
|
38557
|
+
readonly properties: {
|
|
38558
|
+
readonly hide: {
|
|
38559
|
+
readonly type: "boolean";
|
|
38560
|
+
readonly default: false;
|
|
38561
|
+
};
|
|
38562
|
+
readonly component: {
|
|
38563
|
+
readonly type: "string";
|
|
38564
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
38565
|
+
readonly default: "checkbox";
|
|
38566
|
+
};
|
|
38567
|
+
readonly label: {
|
|
38568
|
+
readonly type: "string";
|
|
38569
|
+
};
|
|
38570
|
+
readonly items: {
|
|
38571
|
+
readonly type: "array";
|
|
38572
|
+
readonly items: {
|
|
38573
|
+
readonly type: "string";
|
|
38574
|
+
};
|
|
38575
|
+
};
|
|
38576
|
+
};
|
|
38577
|
+
readonly additionalProperties: false;
|
|
38578
|
+
};
|
|
38579
|
+
readonly satisfied: {
|
|
38580
|
+
readonly type: "object";
|
|
38581
|
+
readonly properties: {
|
|
38582
|
+
readonly hide: {
|
|
38583
|
+
readonly type: "boolean";
|
|
38584
|
+
readonly default: false;
|
|
38585
|
+
};
|
|
38586
|
+
readonly component: {
|
|
38587
|
+
readonly type: "string";
|
|
38588
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
38589
|
+
readonly default: "checkbox";
|
|
38590
|
+
};
|
|
38591
|
+
readonly label: {
|
|
38592
|
+
readonly type: "string";
|
|
38593
|
+
};
|
|
38594
|
+
readonly items: {
|
|
38595
|
+
readonly type: "array";
|
|
38596
|
+
readonly items: {
|
|
38597
|
+
readonly type: "string";
|
|
38598
|
+
};
|
|
38599
|
+
};
|
|
38600
|
+
};
|
|
38601
|
+
readonly additionalProperties: false;
|
|
38602
|
+
};
|
|
38603
|
+
readonly neutral: {
|
|
38604
|
+
readonly type: "object";
|
|
38605
|
+
readonly properties: {
|
|
38606
|
+
readonly hide: {
|
|
38607
|
+
readonly type: "boolean";
|
|
38608
|
+
readonly default: false;
|
|
38609
|
+
};
|
|
38610
|
+
readonly component: {
|
|
38611
|
+
readonly type: "string";
|
|
38612
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
38613
|
+
readonly default: "checkbox";
|
|
38614
|
+
};
|
|
38615
|
+
readonly label: {
|
|
38616
|
+
readonly type: "string";
|
|
38617
|
+
};
|
|
38618
|
+
readonly items: {
|
|
38619
|
+
readonly type: "array";
|
|
38620
|
+
readonly items: {
|
|
38621
|
+
readonly type: "string";
|
|
38622
|
+
};
|
|
38623
|
+
};
|
|
38624
|
+
};
|
|
38625
|
+
readonly additionalProperties: false;
|
|
38626
|
+
};
|
|
38627
|
+
readonly dissatisfied: {
|
|
38628
|
+
readonly type: "object";
|
|
38629
|
+
readonly properties: {
|
|
38630
|
+
readonly hide: {
|
|
38631
|
+
readonly type: "boolean";
|
|
38632
|
+
readonly default: false;
|
|
38633
|
+
};
|
|
38634
|
+
readonly component: {
|
|
38635
|
+
readonly type: "string";
|
|
38636
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
38637
|
+
readonly default: "checkbox";
|
|
38638
|
+
};
|
|
38639
|
+
readonly label: {
|
|
38640
|
+
readonly type: "string";
|
|
38641
|
+
};
|
|
38642
|
+
readonly items: {
|
|
38643
|
+
readonly type: "array";
|
|
38644
|
+
readonly items: {
|
|
38645
|
+
readonly type: "string";
|
|
38646
|
+
};
|
|
38647
|
+
};
|
|
38648
|
+
};
|
|
38649
|
+
readonly additionalProperties: false;
|
|
38650
|
+
};
|
|
34911
38651
|
readonly hide: {
|
|
34912
38652
|
readonly type: "boolean";
|
|
34913
38653
|
readonly default: false;
|
|
@@ -36657,6 +40397,126 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
36657
40397
|
readonly reasons: {
|
|
36658
40398
|
readonly type: "object";
|
|
36659
40399
|
readonly properties: {
|
|
40400
|
+
readonly like: {
|
|
40401
|
+
readonly type: "object";
|
|
40402
|
+
readonly properties: {
|
|
40403
|
+
readonly hide: {
|
|
40404
|
+
readonly type: "boolean";
|
|
40405
|
+
readonly default: false;
|
|
40406
|
+
};
|
|
40407
|
+
readonly component: {
|
|
40408
|
+
readonly type: "string";
|
|
40409
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
40410
|
+
readonly default: "checkbox";
|
|
40411
|
+
};
|
|
40412
|
+
readonly label: {
|
|
40413
|
+
readonly type: "string";
|
|
40414
|
+
};
|
|
40415
|
+
readonly items: {
|
|
40416
|
+
readonly type: "array";
|
|
40417
|
+
readonly items: {
|
|
40418
|
+
readonly type: "string";
|
|
40419
|
+
};
|
|
40420
|
+
};
|
|
40421
|
+
};
|
|
40422
|
+
readonly additionalProperties: false;
|
|
40423
|
+
};
|
|
40424
|
+
readonly dislike: {
|
|
40425
|
+
readonly type: "object";
|
|
40426
|
+
readonly properties: {
|
|
40427
|
+
readonly hide: {
|
|
40428
|
+
readonly type: "boolean";
|
|
40429
|
+
readonly default: false;
|
|
40430
|
+
};
|
|
40431
|
+
readonly component: {
|
|
40432
|
+
readonly type: "string";
|
|
40433
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
40434
|
+
readonly default: "checkbox";
|
|
40435
|
+
};
|
|
40436
|
+
readonly label: {
|
|
40437
|
+
readonly type: "string";
|
|
40438
|
+
};
|
|
40439
|
+
readonly items: {
|
|
40440
|
+
readonly type: "array";
|
|
40441
|
+
readonly items: {
|
|
40442
|
+
readonly type: "string";
|
|
40443
|
+
};
|
|
40444
|
+
};
|
|
40445
|
+
};
|
|
40446
|
+
readonly additionalProperties: false;
|
|
40447
|
+
};
|
|
40448
|
+
readonly satisfied: {
|
|
40449
|
+
readonly type: "object";
|
|
40450
|
+
readonly properties: {
|
|
40451
|
+
readonly hide: {
|
|
40452
|
+
readonly type: "boolean";
|
|
40453
|
+
readonly default: false;
|
|
40454
|
+
};
|
|
40455
|
+
readonly component: {
|
|
40456
|
+
readonly type: "string";
|
|
40457
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
40458
|
+
readonly default: "checkbox";
|
|
40459
|
+
};
|
|
40460
|
+
readonly label: {
|
|
40461
|
+
readonly type: "string";
|
|
40462
|
+
};
|
|
40463
|
+
readonly items: {
|
|
40464
|
+
readonly type: "array";
|
|
40465
|
+
readonly items: {
|
|
40466
|
+
readonly type: "string";
|
|
40467
|
+
};
|
|
40468
|
+
};
|
|
40469
|
+
};
|
|
40470
|
+
readonly additionalProperties: false;
|
|
40471
|
+
};
|
|
40472
|
+
readonly neutral: {
|
|
40473
|
+
readonly type: "object";
|
|
40474
|
+
readonly properties: {
|
|
40475
|
+
readonly hide: {
|
|
40476
|
+
readonly type: "boolean";
|
|
40477
|
+
readonly default: false;
|
|
40478
|
+
};
|
|
40479
|
+
readonly component: {
|
|
40480
|
+
readonly type: "string";
|
|
40481
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
40482
|
+
readonly default: "checkbox";
|
|
40483
|
+
};
|
|
40484
|
+
readonly label: {
|
|
40485
|
+
readonly type: "string";
|
|
40486
|
+
};
|
|
40487
|
+
readonly items: {
|
|
40488
|
+
readonly type: "array";
|
|
40489
|
+
readonly items: {
|
|
40490
|
+
readonly type: "string";
|
|
40491
|
+
};
|
|
40492
|
+
};
|
|
40493
|
+
};
|
|
40494
|
+
readonly additionalProperties: false;
|
|
40495
|
+
};
|
|
40496
|
+
readonly dissatisfied: {
|
|
40497
|
+
readonly type: "object";
|
|
40498
|
+
readonly properties: {
|
|
40499
|
+
readonly hide: {
|
|
40500
|
+
readonly type: "boolean";
|
|
40501
|
+
readonly default: false;
|
|
40502
|
+
};
|
|
40503
|
+
readonly component: {
|
|
40504
|
+
readonly type: "string";
|
|
40505
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
40506
|
+
readonly default: "checkbox";
|
|
40507
|
+
};
|
|
40508
|
+
readonly label: {
|
|
40509
|
+
readonly type: "string";
|
|
40510
|
+
};
|
|
40511
|
+
readonly items: {
|
|
40512
|
+
readonly type: "array";
|
|
40513
|
+
readonly items: {
|
|
40514
|
+
readonly type: "string";
|
|
40515
|
+
};
|
|
40516
|
+
};
|
|
40517
|
+
};
|
|
40518
|
+
readonly additionalProperties: false;
|
|
40519
|
+
};
|
|
36660
40520
|
readonly hide: {
|
|
36661
40521
|
readonly type: "boolean";
|
|
36662
40522
|
readonly default: false;
|
|
@@ -37119,6 +40979,126 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
37119
40979
|
readonly reasons: {
|
|
37120
40980
|
readonly type: "object";
|
|
37121
40981
|
readonly properties: {
|
|
40982
|
+
readonly like: {
|
|
40983
|
+
readonly type: "object";
|
|
40984
|
+
readonly properties: {
|
|
40985
|
+
readonly hide: {
|
|
40986
|
+
readonly type: "boolean";
|
|
40987
|
+
readonly default: false;
|
|
40988
|
+
};
|
|
40989
|
+
readonly component: {
|
|
40990
|
+
readonly type: "string";
|
|
40991
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
40992
|
+
readonly default: "checkbox";
|
|
40993
|
+
};
|
|
40994
|
+
readonly label: {
|
|
40995
|
+
readonly type: "string";
|
|
40996
|
+
};
|
|
40997
|
+
readonly items: {
|
|
40998
|
+
readonly type: "array";
|
|
40999
|
+
readonly items: {
|
|
41000
|
+
readonly type: "string";
|
|
41001
|
+
};
|
|
41002
|
+
};
|
|
41003
|
+
};
|
|
41004
|
+
readonly additionalProperties: false;
|
|
41005
|
+
};
|
|
41006
|
+
readonly dislike: {
|
|
41007
|
+
readonly type: "object";
|
|
41008
|
+
readonly properties: {
|
|
41009
|
+
readonly hide: {
|
|
41010
|
+
readonly type: "boolean";
|
|
41011
|
+
readonly default: false;
|
|
41012
|
+
};
|
|
41013
|
+
readonly component: {
|
|
41014
|
+
readonly type: "string";
|
|
41015
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
41016
|
+
readonly default: "checkbox";
|
|
41017
|
+
};
|
|
41018
|
+
readonly label: {
|
|
41019
|
+
readonly type: "string";
|
|
41020
|
+
};
|
|
41021
|
+
readonly items: {
|
|
41022
|
+
readonly type: "array";
|
|
41023
|
+
readonly items: {
|
|
41024
|
+
readonly type: "string";
|
|
41025
|
+
};
|
|
41026
|
+
};
|
|
41027
|
+
};
|
|
41028
|
+
readonly additionalProperties: false;
|
|
41029
|
+
};
|
|
41030
|
+
readonly satisfied: {
|
|
41031
|
+
readonly type: "object";
|
|
41032
|
+
readonly properties: {
|
|
41033
|
+
readonly hide: {
|
|
41034
|
+
readonly type: "boolean";
|
|
41035
|
+
readonly default: false;
|
|
41036
|
+
};
|
|
41037
|
+
readonly component: {
|
|
41038
|
+
readonly type: "string";
|
|
41039
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
41040
|
+
readonly default: "checkbox";
|
|
41041
|
+
};
|
|
41042
|
+
readonly label: {
|
|
41043
|
+
readonly type: "string";
|
|
41044
|
+
};
|
|
41045
|
+
readonly items: {
|
|
41046
|
+
readonly type: "array";
|
|
41047
|
+
readonly items: {
|
|
41048
|
+
readonly type: "string";
|
|
41049
|
+
};
|
|
41050
|
+
};
|
|
41051
|
+
};
|
|
41052
|
+
readonly additionalProperties: false;
|
|
41053
|
+
};
|
|
41054
|
+
readonly neutral: {
|
|
41055
|
+
readonly type: "object";
|
|
41056
|
+
readonly properties: {
|
|
41057
|
+
readonly hide: {
|
|
41058
|
+
readonly type: "boolean";
|
|
41059
|
+
readonly default: false;
|
|
41060
|
+
};
|
|
41061
|
+
readonly component: {
|
|
41062
|
+
readonly type: "string";
|
|
41063
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
41064
|
+
readonly default: "checkbox";
|
|
41065
|
+
};
|
|
41066
|
+
readonly label: {
|
|
41067
|
+
readonly type: "string";
|
|
41068
|
+
};
|
|
41069
|
+
readonly items: {
|
|
41070
|
+
readonly type: "array";
|
|
41071
|
+
readonly items: {
|
|
41072
|
+
readonly type: "string";
|
|
41073
|
+
};
|
|
41074
|
+
};
|
|
41075
|
+
};
|
|
41076
|
+
readonly additionalProperties: false;
|
|
41077
|
+
};
|
|
41078
|
+
readonly dissatisfied: {
|
|
41079
|
+
readonly type: "object";
|
|
41080
|
+
readonly properties: {
|
|
41081
|
+
readonly hide: {
|
|
41082
|
+
readonly type: "boolean";
|
|
41083
|
+
readonly default: false;
|
|
41084
|
+
};
|
|
41085
|
+
readonly component: {
|
|
41086
|
+
readonly type: "string";
|
|
41087
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
41088
|
+
readonly default: "checkbox";
|
|
41089
|
+
};
|
|
41090
|
+
readonly label: {
|
|
41091
|
+
readonly type: "string";
|
|
41092
|
+
};
|
|
41093
|
+
readonly items: {
|
|
41094
|
+
readonly type: "array";
|
|
41095
|
+
readonly items: {
|
|
41096
|
+
readonly type: "string";
|
|
41097
|
+
};
|
|
41098
|
+
};
|
|
41099
|
+
};
|
|
41100
|
+
readonly additionalProperties: false;
|
|
41101
|
+
};
|
|
37122
41102
|
readonly hide: {
|
|
37123
41103
|
readonly type: "boolean";
|
|
37124
41104
|
readonly default: false;
|