@redocly/config 0.15.0 → 0.17.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/reunite-config-schema.d.ts +9 -2
- package/lib/reunite-config-schema.js +9 -1
- package/lib/root-config-schema.d.ts +4006 -5
- package/lib/types.d.ts +4 -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/reunite-config-schema.d.ts +9 -2
- package/lib-esm/reunite-config-schema.js +9 -1
- package/lib-esm/root-config-schema.d.ts +4176 -175
- package/lib-esm/types.d.ts +4 -0
- package/package.json +1 -1
|
@@ -2013,6 +2013,126 @@ export declare const productThemeOverrideSchema: {
|
|
|
2013
2013
|
readonly reasons: {
|
|
2014
2014
|
readonly type: "object";
|
|
2015
2015
|
readonly properties: {
|
|
2016
|
+
readonly like: {
|
|
2017
|
+
readonly type: "object";
|
|
2018
|
+
readonly properties: {
|
|
2019
|
+
readonly hide: {
|
|
2020
|
+
readonly type: "boolean";
|
|
2021
|
+
readonly default: false;
|
|
2022
|
+
};
|
|
2023
|
+
readonly component: {
|
|
2024
|
+
readonly type: "string";
|
|
2025
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2026
|
+
readonly default: "checkbox";
|
|
2027
|
+
};
|
|
2028
|
+
readonly label: {
|
|
2029
|
+
readonly type: "string";
|
|
2030
|
+
};
|
|
2031
|
+
readonly items: {
|
|
2032
|
+
readonly type: "array";
|
|
2033
|
+
readonly items: {
|
|
2034
|
+
readonly type: "string";
|
|
2035
|
+
};
|
|
2036
|
+
};
|
|
2037
|
+
};
|
|
2038
|
+
readonly additionalProperties: false;
|
|
2039
|
+
};
|
|
2040
|
+
readonly dislike: {
|
|
2041
|
+
readonly type: "object";
|
|
2042
|
+
readonly properties: {
|
|
2043
|
+
readonly hide: {
|
|
2044
|
+
readonly type: "boolean";
|
|
2045
|
+
readonly default: false;
|
|
2046
|
+
};
|
|
2047
|
+
readonly component: {
|
|
2048
|
+
readonly type: "string";
|
|
2049
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2050
|
+
readonly default: "checkbox";
|
|
2051
|
+
};
|
|
2052
|
+
readonly label: {
|
|
2053
|
+
readonly type: "string";
|
|
2054
|
+
};
|
|
2055
|
+
readonly items: {
|
|
2056
|
+
readonly type: "array";
|
|
2057
|
+
readonly items: {
|
|
2058
|
+
readonly type: "string";
|
|
2059
|
+
};
|
|
2060
|
+
};
|
|
2061
|
+
};
|
|
2062
|
+
readonly additionalProperties: false;
|
|
2063
|
+
};
|
|
2064
|
+
readonly satisfied: {
|
|
2065
|
+
readonly type: "object";
|
|
2066
|
+
readonly properties: {
|
|
2067
|
+
readonly hide: {
|
|
2068
|
+
readonly type: "boolean";
|
|
2069
|
+
readonly default: false;
|
|
2070
|
+
};
|
|
2071
|
+
readonly component: {
|
|
2072
|
+
readonly type: "string";
|
|
2073
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2074
|
+
readonly default: "checkbox";
|
|
2075
|
+
};
|
|
2076
|
+
readonly label: {
|
|
2077
|
+
readonly type: "string";
|
|
2078
|
+
};
|
|
2079
|
+
readonly items: {
|
|
2080
|
+
readonly type: "array";
|
|
2081
|
+
readonly items: {
|
|
2082
|
+
readonly type: "string";
|
|
2083
|
+
};
|
|
2084
|
+
};
|
|
2085
|
+
};
|
|
2086
|
+
readonly additionalProperties: false;
|
|
2087
|
+
};
|
|
2088
|
+
readonly neutral: {
|
|
2089
|
+
readonly type: "object";
|
|
2090
|
+
readonly properties: {
|
|
2091
|
+
readonly hide: {
|
|
2092
|
+
readonly type: "boolean";
|
|
2093
|
+
readonly default: false;
|
|
2094
|
+
};
|
|
2095
|
+
readonly component: {
|
|
2096
|
+
readonly type: "string";
|
|
2097
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2098
|
+
readonly default: "checkbox";
|
|
2099
|
+
};
|
|
2100
|
+
readonly label: {
|
|
2101
|
+
readonly type: "string";
|
|
2102
|
+
};
|
|
2103
|
+
readonly items: {
|
|
2104
|
+
readonly type: "array";
|
|
2105
|
+
readonly items: {
|
|
2106
|
+
readonly type: "string";
|
|
2107
|
+
};
|
|
2108
|
+
};
|
|
2109
|
+
};
|
|
2110
|
+
readonly additionalProperties: false;
|
|
2111
|
+
};
|
|
2112
|
+
readonly dissatisfied: {
|
|
2113
|
+
readonly type: "object";
|
|
2114
|
+
readonly properties: {
|
|
2115
|
+
readonly hide: {
|
|
2116
|
+
readonly type: "boolean";
|
|
2117
|
+
readonly default: false;
|
|
2118
|
+
};
|
|
2119
|
+
readonly component: {
|
|
2120
|
+
readonly type: "string";
|
|
2121
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2122
|
+
readonly default: "checkbox";
|
|
2123
|
+
};
|
|
2124
|
+
readonly label: {
|
|
2125
|
+
readonly type: "string";
|
|
2126
|
+
};
|
|
2127
|
+
readonly items: {
|
|
2128
|
+
readonly type: "array";
|
|
2129
|
+
readonly items: {
|
|
2130
|
+
readonly type: "string";
|
|
2131
|
+
};
|
|
2132
|
+
};
|
|
2133
|
+
};
|
|
2134
|
+
readonly additionalProperties: false;
|
|
2135
|
+
};
|
|
2016
2136
|
readonly hide: {
|
|
2017
2137
|
readonly type: "boolean";
|
|
2018
2138
|
readonly default: false;
|
|
@@ -2296,6 +2416,126 @@ export declare const productThemeOverrideSchema: {
|
|
|
2296
2416
|
readonly reasons: {
|
|
2297
2417
|
readonly type: "object";
|
|
2298
2418
|
readonly properties: {
|
|
2419
|
+
readonly like: {
|
|
2420
|
+
readonly type: "object";
|
|
2421
|
+
readonly properties: {
|
|
2422
|
+
readonly hide: {
|
|
2423
|
+
readonly type: "boolean";
|
|
2424
|
+
readonly default: false;
|
|
2425
|
+
};
|
|
2426
|
+
readonly component: {
|
|
2427
|
+
readonly type: "string";
|
|
2428
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2429
|
+
readonly default: "checkbox";
|
|
2430
|
+
};
|
|
2431
|
+
readonly label: {
|
|
2432
|
+
readonly type: "string";
|
|
2433
|
+
};
|
|
2434
|
+
readonly items: {
|
|
2435
|
+
readonly type: "array";
|
|
2436
|
+
readonly items: {
|
|
2437
|
+
readonly type: "string";
|
|
2438
|
+
};
|
|
2439
|
+
};
|
|
2440
|
+
};
|
|
2441
|
+
readonly additionalProperties: false;
|
|
2442
|
+
};
|
|
2443
|
+
readonly dislike: {
|
|
2444
|
+
readonly type: "object";
|
|
2445
|
+
readonly properties: {
|
|
2446
|
+
readonly hide: {
|
|
2447
|
+
readonly type: "boolean";
|
|
2448
|
+
readonly default: false;
|
|
2449
|
+
};
|
|
2450
|
+
readonly component: {
|
|
2451
|
+
readonly type: "string";
|
|
2452
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2453
|
+
readonly default: "checkbox";
|
|
2454
|
+
};
|
|
2455
|
+
readonly label: {
|
|
2456
|
+
readonly type: "string";
|
|
2457
|
+
};
|
|
2458
|
+
readonly items: {
|
|
2459
|
+
readonly type: "array";
|
|
2460
|
+
readonly items: {
|
|
2461
|
+
readonly type: "string";
|
|
2462
|
+
};
|
|
2463
|
+
};
|
|
2464
|
+
};
|
|
2465
|
+
readonly additionalProperties: false;
|
|
2466
|
+
};
|
|
2467
|
+
readonly satisfied: {
|
|
2468
|
+
readonly type: "object";
|
|
2469
|
+
readonly properties: {
|
|
2470
|
+
readonly hide: {
|
|
2471
|
+
readonly type: "boolean";
|
|
2472
|
+
readonly default: false;
|
|
2473
|
+
};
|
|
2474
|
+
readonly component: {
|
|
2475
|
+
readonly type: "string";
|
|
2476
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2477
|
+
readonly default: "checkbox";
|
|
2478
|
+
};
|
|
2479
|
+
readonly label: {
|
|
2480
|
+
readonly type: "string";
|
|
2481
|
+
};
|
|
2482
|
+
readonly items: {
|
|
2483
|
+
readonly type: "array";
|
|
2484
|
+
readonly items: {
|
|
2485
|
+
readonly type: "string";
|
|
2486
|
+
};
|
|
2487
|
+
};
|
|
2488
|
+
};
|
|
2489
|
+
readonly additionalProperties: false;
|
|
2490
|
+
};
|
|
2491
|
+
readonly neutral: {
|
|
2492
|
+
readonly type: "object";
|
|
2493
|
+
readonly properties: {
|
|
2494
|
+
readonly hide: {
|
|
2495
|
+
readonly type: "boolean";
|
|
2496
|
+
readonly default: false;
|
|
2497
|
+
};
|
|
2498
|
+
readonly component: {
|
|
2499
|
+
readonly type: "string";
|
|
2500
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2501
|
+
readonly default: "checkbox";
|
|
2502
|
+
};
|
|
2503
|
+
readonly label: {
|
|
2504
|
+
readonly type: "string";
|
|
2505
|
+
};
|
|
2506
|
+
readonly items: {
|
|
2507
|
+
readonly type: "array";
|
|
2508
|
+
readonly items: {
|
|
2509
|
+
readonly type: "string";
|
|
2510
|
+
};
|
|
2511
|
+
};
|
|
2512
|
+
};
|
|
2513
|
+
readonly additionalProperties: false;
|
|
2514
|
+
};
|
|
2515
|
+
readonly dissatisfied: {
|
|
2516
|
+
readonly type: "object";
|
|
2517
|
+
readonly properties: {
|
|
2518
|
+
readonly hide: {
|
|
2519
|
+
readonly type: "boolean";
|
|
2520
|
+
readonly default: false;
|
|
2521
|
+
};
|
|
2522
|
+
readonly component: {
|
|
2523
|
+
readonly type: "string";
|
|
2524
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2525
|
+
readonly default: "checkbox";
|
|
2526
|
+
};
|
|
2527
|
+
readonly label: {
|
|
2528
|
+
readonly type: "string";
|
|
2529
|
+
};
|
|
2530
|
+
readonly items: {
|
|
2531
|
+
readonly type: "array";
|
|
2532
|
+
readonly items: {
|
|
2533
|
+
readonly type: "string";
|
|
2534
|
+
};
|
|
2535
|
+
};
|
|
2536
|
+
};
|
|
2537
|
+
readonly additionalProperties: false;
|
|
2538
|
+
};
|
|
2299
2539
|
readonly hide: {
|
|
2300
2540
|
readonly type: "boolean";
|
|
2301
2541
|
readonly default: false;
|
|
@@ -3842,6 +4082,126 @@ export declare const productConfigOverrideSchema: {
|
|
|
3842
4082
|
readonly reasons: {
|
|
3843
4083
|
readonly type: "object";
|
|
3844
4084
|
readonly properties: {
|
|
4085
|
+
readonly like: {
|
|
4086
|
+
readonly type: "object";
|
|
4087
|
+
readonly properties: {
|
|
4088
|
+
readonly hide: {
|
|
4089
|
+
readonly type: "boolean";
|
|
4090
|
+
readonly default: false;
|
|
4091
|
+
};
|
|
4092
|
+
readonly component: {
|
|
4093
|
+
readonly type: "string";
|
|
4094
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4095
|
+
readonly default: "checkbox";
|
|
4096
|
+
};
|
|
4097
|
+
readonly label: {
|
|
4098
|
+
readonly type: "string";
|
|
4099
|
+
};
|
|
4100
|
+
readonly items: {
|
|
4101
|
+
readonly type: "array";
|
|
4102
|
+
readonly items: {
|
|
4103
|
+
readonly type: "string";
|
|
4104
|
+
};
|
|
4105
|
+
};
|
|
4106
|
+
};
|
|
4107
|
+
readonly additionalProperties: false;
|
|
4108
|
+
};
|
|
4109
|
+
readonly dislike: {
|
|
4110
|
+
readonly type: "object";
|
|
4111
|
+
readonly properties: {
|
|
4112
|
+
readonly hide: {
|
|
4113
|
+
readonly type: "boolean";
|
|
4114
|
+
readonly default: false;
|
|
4115
|
+
};
|
|
4116
|
+
readonly component: {
|
|
4117
|
+
readonly type: "string";
|
|
4118
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4119
|
+
readonly default: "checkbox";
|
|
4120
|
+
};
|
|
4121
|
+
readonly label: {
|
|
4122
|
+
readonly type: "string";
|
|
4123
|
+
};
|
|
4124
|
+
readonly items: {
|
|
4125
|
+
readonly type: "array";
|
|
4126
|
+
readonly items: {
|
|
4127
|
+
readonly type: "string";
|
|
4128
|
+
};
|
|
4129
|
+
};
|
|
4130
|
+
};
|
|
4131
|
+
readonly additionalProperties: false;
|
|
4132
|
+
};
|
|
4133
|
+
readonly satisfied: {
|
|
4134
|
+
readonly type: "object";
|
|
4135
|
+
readonly properties: {
|
|
4136
|
+
readonly hide: {
|
|
4137
|
+
readonly type: "boolean";
|
|
4138
|
+
readonly default: false;
|
|
4139
|
+
};
|
|
4140
|
+
readonly component: {
|
|
4141
|
+
readonly type: "string";
|
|
4142
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4143
|
+
readonly default: "checkbox";
|
|
4144
|
+
};
|
|
4145
|
+
readonly label: {
|
|
4146
|
+
readonly type: "string";
|
|
4147
|
+
};
|
|
4148
|
+
readonly items: {
|
|
4149
|
+
readonly type: "array";
|
|
4150
|
+
readonly items: {
|
|
4151
|
+
readonly type: "string";
|
|
4152
|
+
};
|
|
4153
|
+
};
|
|
4154
|
+
};
|
|
4155
|
+
readonly additionalProperties: false;
|
|
4156
|
+
};
|
|
4157
|
+
readonly neutral: {
|
|
4158
|
+
readonly type: "object";
|
|
4159
|
+
readonly properties: {
|
|
4160
|
+
readonly hide: {
|
|
4161
|
+
readonly type: "boolean";
|
|
4162
|
+
readonly default: false;
|
|
4163
|
+
};
|
|
4164
|
+
readonly component: {
|
|
4165
|
+
readonly type: "string";
|
|
4166
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4167
|
+
readonly default: "checkbox";
|
|
4168
|
+
};
|
|
4169
|
+
readonly label: {
|
|
4170
|
+
readonly type: "string";
|
|
4171
|
+
};
|
|
4172
|
+
readonly items: {
|
|
4173
|
+
readonly type: "array";
|
|
4174
|
+
readonly items: {
|
|
4175
|
+
readonly type: "string";
|
|
4176
|
+
};
|
|
4177
|
+
};
|
|
4178
|
+
};
|
|
4179
|
+
readonly additionalProperties: false;
|
|
4180
|
+
};
|
|
4181
|
+
readonly dissatisfied: {
|
|
4182
|
+
readonly type: "object";
|
|
4183
|
+
readonly properties: {
|
|
4184
|
+
readonly hide: {
|
|
4185
|
+
readonly type: "boolean";
|
|
4186
|
+
readonly default: false;
|
|
4187
|
+
};
|
|
4188
|
+
readonly component: {
|
|
4189
|
+
readonly type: "string";
|
|
4190
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4191
|
+
readonly default: "checkbox";
|
|
4192
|
+
};
|
|
4193
|
+
readonly label: {
|
|
4194
|
+
readonly type: "string";
|
|
4195
|
+
};
|
|
4196
|
+
readonly items: {
|
|
4197
|
+
readonly type: "array";
|
|
4198
|
+
readonly items: {
|
|
4199
|
+
readonly type: "string";
|
|
4200
|
+
};
|
|
4201
|
+
};
|
|
4202
|
+
};
|
|
4203
|
+
readonly additionalProperties: false;
|
|
4204
|
+
};
|
|
3845
4205
|
readonly hide: {
|
|
3846
4206
|
readonly type: "boolean";
|
|
3847
4207
|
readonly default: false;
|
|
@@ -4304,6 +4664,126 @@ export declare const productConfigOverrideSchema: {
|
|
|
4304
4664
|
readonly reasons: {
|
|
4305
4665
|
readonly type: "object";
|
|
4306
4666
|
readonly properties: {
|
|
4667
|
+
readonly like: {
|
|
4668
|
+
readonly type: "object";
|
|
4669
|
+
readonly properties: {
|
|
4670
|
+
readonly hide: {
|
|
4671
|
+
readonly type: "boolean";
|
|
4672
|
+
readonly default: false;
|
|
4673
|
+
};
|
|
4674
|
+
readonly component: {
|
|
4675
|
+
readonly type: "string";
|
|
4676
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4677
|
+
readonly default: "checkbox";
|
|
4678
|
+
};
|
|
4679
|
+
readonly label: {
|
|
4680
|
+
readonly type: "string";
|
|
4681
|
+
};
|
|
4682
|
+
readonly items: {
|
|
4683
|
+
readonly type: "array";
|
|
4684
|
+
readonly items: {
|
|
4685
|
+
readonly type: "string";
|
|
4686
|
+
};
|
|
4687
|
+
};
|
|
4688
|
+
};
|
|
4689
|
+
readonly additionalProperties: false;
|
|
4690
|
+
};
|
|
4691
|
+
readonly dislike: {
|
|
4692
|
+
readonly type: "object";
|
|
4693
|
+
readonly properties: {
|
|
4694
|
+
readonly hide: {
|
|
4695
|
+
readonly type: "boolean";
|
|
4696
|
+
readonly default: false;
|
|
4697
|
+
};
|
|
4698
|
+
readonly component: {
|
|
4699
|
+
readonly type: "string";
|
|
4700
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4701
|
+
readonly default: "checkbox";
|
|
4702
|
+
};
|
|
4703
|
+
readonly label: {
|
|
4704
|
+
readonly type: "string";
|
|
4705
|
+
};
|
|
4706
|
+
readonly items: {
|
|
4707
|
+
readonly type: "array";
|
|
4708
|
+
readonly items: {
|
|
4709
|
+
readonly type: "string";
|
|
4710
|
+
};
|
|
4711
|
+
};
|
|
4712
|
+
};
|
|
4713
|
+
readonly additionalProperties: false;
|
|
4714
|
+
};
|
|
4715
|
+
readonly satisfied: {
|
|
4716
|
+
readonly type: "object";
|
|
4717
|
+
readonly properties: {
|
|
4718
|
+
readonly hide: {
|
|
4719
|
+
readonly type: "boolean";
|
|
4720
|
+
readonly default: false;
|
|
4721
|
+
};
|
|
4722
|
+
readonly component: {
|
|
4723
|
+
readonly type: "string";
|
|
4724
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4725
|
+
readonly default: "checkbox";
|
|
4726
|
+
};
|
|
4727
|
+
readonly label: {
|
|
4728
|
+
readonly type: "string";
|
|
4729
|
+
};
|
|
4730
|
+
readonly items: {
|
|
4731
|
+
readonly type: "array";
|
|
4732
|
+
readonly items: {
|
|
4733
|
+
readonly type: "string";
|
|
4734
|
+
};
|
|
4735
|
+
};
|
|
4736
|
+
};
|
|
4737
|
+
readonly additionalProperties: false;
|
|
4738
|
+
};
|
|
4739
|
+
readonly neutral: {
|
|
4740
|
+
readonly type: "object";
|
|
4741
|
+
readonly properties: {
|
|
4742
|
+
readonly hide: {
|
|
4743
|
+
readonly type: "boolean";
|
|
4744
|
+
readonly default: false;
|
|
4745
|
+
};
|
|
4746
|
+
readonly component: {
|
|
4747
|
+
readonly type: "string";
|
|
4748
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4749
|
+
readonly default: "checkbox";
|
|
4750
|
+
};
|
|
4751
|
+
readonly label: {
|
|
4752
|
+
readonly type: "string";
|
|
4753
|
+
};
|
|
4754
|
+
readonly items: {
|
|
4755
|
+
readonly type: "array";
|
|
4756
|
+
readonly items: {
|
|
4757
|
+
readonly type: "string";
|
|
4758
|
+
};
|
|
4759
|
+
};
|
|
4760
|
+
};
|
|
4761
|
+
readonly additionalProperties: false;
|
|
4762
|
+
};
|
|
4763
|
+
readonly dissatisfied: {
|
|
4764
|
+
readonly type: "object";
|
|
4765
|
+
readonly properties: {
|
|
4766
|
+
readonly hide: {
|
|
4767
|
+
readonly type: "boolean";
|
|
4768
|
+
readonly default: false;
|
|
4769
|
+
};
|
|
4770
|
+
readonly component: {
|
|
4771
|
+
readonly type: "string";
|
|
4772
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
4773
|
+
readonly default: "checkbox";
|
|
4774
|
+
};
|
|
4775
|
+
readonly label: {
|
|
4776
|
+
readonly type: "string";
|
|
4777
|
+
};
|
|
4778
|
+
readonly items: {
|
|
4779
|
+
readonly type: "array";
|
|
4780
|
+
readonly items: {
|
|
4781
|
+
readonly type: "string";
|
|
4782
|
+
};
|
|
4783
|
+
};
|
|
4784
|
+
};
|
|
4785
|
+
readonly additionalProperties: false;
|
|
4786
|
+
};
|
|
4307
4787
|
readonly hide: {
|
|
4308
4788
|
readonly type: "boolean";
|
|
4309
4789
|
readonly default: false;
|
|
@@ -5799,6 +6279,126 @@ export declare const productConfigOverrideSchema: {
|
|
|
5799
6279
|
readonly reasons: {
|
|
5800
6280
|
readonly type: "object";
|
|
5801
6281
|
readonly properties: {
|
|
6282
|
+
readonly like: {
|
|
6283
|
+
readonly type: "object";
|
|
6284
|
+
readonly properties: {
|
|
6285
|
+
readonly hide: {
|
|
6286
|
+
readonly type: "boolean";
|
|
6287
|
+
readonly default: false;
|
|
6288
|
+
};
|
|
6289
|
+
readonly component: {
|
|
6290
|
+
readonly type: "string";
|
|
6291
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
6292
|
+
readonly default: "checkbox";
|
|
6293
|
+
};
|
|
6294
|
+
readonly label: {
|
|
6295
|
+
readonly type: "string";
|
|
6296
|
+
};
|
|
6297
|
+
readonly items: {
|
|
6298
|
+
readonly type: "array";
|
|
6299
|
+
readonly items: {
|
|
6300
|
+
readonly type: "string";
|
|
6301
|
+
};
|
|
6302
|
+
};
|
|
6303
|
+
};
|
|
6304
|
+
readonly additionalProperties: false;
|
|
6305
|
+
};
|
|
6306
|
+
readonly dislike: {
|
|
6307
|
+
readonly type: "object";
|
|
6308
|
+
readonly properties: {
|
|
6309
|
+
readonly hide: {
|
|
6310
|
+
readonly type: "boolean";
|
|
6311
|
+
readonly default: false;
|
|
6312
|
+
};
|
|
6313
|
+
readonly component: {
|
|
6314
|
+
readonly type: "string";
|
|
6315
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
6316
|
+
readonly default: "checkbox";
|
|
6317
|
+
};
|
|
6318
|
+
readonly label: {
|
|
6319
|
+
readonly type: "string";
|
|
6320
|
+
};
|
|
6321
|
+
readonly items: {
|
|
6322
|
+
readonly type: "array";
|
|
6323
|
+
readonly items: {
|
|
6324
|
+
readonly type: "string";
|
|
6325
|
+
};
|
|
6326
|
+
};
|
|
6327
|
+
};
|
|
6328
|
+
readonly additionalProperties: false;
|
|
6329
|
+
};
|
|
6330
|
+
readonly satisfied: {
|
|
6331
|
+
readonly type: "object";
|
|
6332
|
+
readonly properties: {
|
|
6333
|
+
readonly hide: {
|
|
6334
|
+
readonly type: "boolean";
|
|
6335
|
+
readonly default: false;
|
|
6336
|
+
};
|
|
6337
|
+
readonly component: {
|
|
6338
|
+
readonly type: "string";
|
|
6339
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
6340
|
+
readonly default: "checkbox";
|
|
6341
|
+
};
|
|
6342
|
+
readonly label: {
|
|
6343
|
+
readonly type: "string";
|
|
6344
|
+
};
|
|
6345
|
+
readonly items: {
|
|
6346
|
+
readonly type: "array";
|
|
6347
|
+
readonly items: {
|
|
6348
|
+
readonly type: "string";
|
|
6349
|
+
};
|
|
6350
|
+
};
|
|
6351
|
+
};
|
|
6352
|
+
readonly additionalProperties: false;
|
|
6353
|
+
};
|
|
6354
|
+
readonly neutral: {
|
|
6355
|
+
readonly type: "object";
|
|
6356
|
+
readonly properties: {
|
|
6357
|
+
readonly hide: {
|
|
6358
|
+
readonly type: "boolean";
|
|
6359
|
+
readonly default: false;
|
|
6360
|
+
};
|
|
6361
|
+
readonly component: {
|
|
6362
|
+
readonly type: "string";
|
|
6363
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
6364
|
+
readonly default: "checkbox";
|
|
6365
|
+
};
|
|
6366
|
+
readonly label: {
|
|
6367
|
+
readonly type: "string";
|
|
6368
|
+
};
|
|
6369
|
+
readonly items: {
|
|
6370
|
+
readonly type: "array";
|
|
6371
|
+
readonly items: {
|
|
6372
|
+
readonly type: "string";
|
|
6373
|
+
};
|
|
6374
|
+
};
|
|
6375
|
+
};
|
|
6376
|
+
readonly additionalProperties: false;
|
|
6377
|
+
};
|
|
6378
|
+
readonly dissatisfied: {
|
|
6379
|
+
readonly type: "object";
|
|
6380
|
+
readonly properties: {
|
|
6381
|
+
readonly hide: {
|
|
6382
|
+
readonly type: "boolean";
|
|
6383
|
+
readonly default: false;
|
|
6384
|
+
};
|
|
6385
|
+
readonly component: {
|
|
6386
|
+
readonly type: "string";
|
|
6387
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
6388
|
+
readonly default: "checkbox";
|
|
6389
|
+
};
|
|
6390
|
+
readonly label: {
|
|
6391
|
+
readonly type: "string";
|
|
6392
|
+
};
|
|
6393
|
+
readonly items: {
|
|
6394
|
+
readonly type: "array";
|
|
6395
|
+
readonly items: {
|
|
6396
|
+
readonly type: "string";
|
|
6397
|
+
};
|
|
6398
|
+
};
|
|
6399
|
+
};
|
|
6400
|
+
readonly additionalProperties: false;
|
|
6401
|
+
};
|
|
5802
6402
|
readonly hide: {
|
|
5803
6403
|
readonly type: "boolean";
|
|
5804
6404
|
readonly default: false;
|
|
@@ -6261,6 +6861,126 @@ export declare const productConfigOverrideSchema: {
|
|
|
6261
6861
|
readonly reasons: {
|
|
6262
6862
|
readonly type: "object";
|
|
6263
6863
|
readonly properties: {
|
|
6864
|
+
readonly like: {
|
|
6865
|
+
readonly type: "object";
|
|
6866
|
+
readonly properties: {
|
|
6867
|
+
readonly hide: {
|
|
6868
|
+
readonly type: "boolean";
|
|
6869
|
+
readonly default: false;
|
|
6870
|
+
};
|
|
6871
|
+
readonly component: {
|
|
6872
|
+
readonly type: "string";
|
|
6873
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
6874
|
+
readonly default: "checkbox";
|
|
6875
|
+
};
|
|
6876
|
+
readonly label: {
|
|
6877
|
+
readonly type: "string";
|
|
6878
|
+
};
|
|
6879
|
+
readonly items: {
|
|
6880
|
+
readonly type: "array";
|
|
6881
|
+
readonly items: {
|
|
6882
|
+
readonly type: "string";
|
|
6883
|
+
};
|
|
6884
|
+
};
|
|
6885
|
+
};
|
|
6886
|
+
readonly additionalProperties: false;
|
|
6887
|
+
};
|
|
6888
|
+
readonly dislike: {
|
|
6889
|
+
readonly type: "object";
|
|
6890
|
+
readonly properties: {
|
|
6891
|
+
readonly hide: {
|
|
6892
|
+
readonly type: "boolean";
|
|
6893
|
+
readonly default: false;
|
|
6894
|
+
};
|
|
6895
|
+
readonly component: {
|
|
6896
|
+
readonly type: "string";
|
|
6897
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
6898
|
+
readonly default: "checkbox";
|
|
6899
|
+
};
|
|
6900
|
+
readonly label: {
|
|
6901
|
+
readonly type: "string";
|
|
6902
|
+
};
|
|
6903
|
+
readonly items: {
|
|
6904
|
+
readonly type: "array";
|
|
6905
|
+
readonly items: {
|
|
6906
|
+
readonly type: "string";
|
|
6907
|
+
};
|
|
6908
|
+
};
|
|
6909
|
+
};
|
|
6910
|
+
readonly additionalProperties: false;
|
|
6911
|
+
};
|
|
6912
|
+
readonly satisfied: {
|
|
6913
|
+
readonly type: "object";
|
|
6914
|
+
readonly properties: {
|
|
6915
|
+
readonly hide: {
|
|
6916
|
+
readonly type: "boolean";
|
|
6917
|
+
readonly default: false;
|
|
6918
|
+
};
|
|
6919
|
+
readonly component: {
|
|
6920
|
+
readonly type: "string";
|
|
6921
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
6922
|
+
readonly default: "checkbox";
|
|
6923
|
+
};
|
|
6924
|
+
readonly label: {
|
|
6925
|
+
readonly type: "string";
|
|
6926
|
+
};
|
|
6927
|
+
readonly items: {
|
|
6928
|
+
readonly type: "array";
|
|
6929
|
+
readonly items: {
|
|
6930
|
+
readonly type: "string";
|
|
6931
|
+
};
|
|
6932
|
+
};
|
|
6933
|
+
};
|
|
6934
|
+
readonly additionalProperties: false;
|
|
6935
|
+
};
|
|
6936
|
+
readonly neutral: {
|
|
6937
|
+
readonly type: "object";
|
|
6938
|
+
readonly properties: {
|
|
6939
|
+
readonly hide: {
|
|
6940
|
+
readonly type: "boolean";
|
|
6941
|
+
readonly default: false;
|
|
6942
|
+
};
|
|
6943
|
+
readonly component: {
|
|
6944
|
+
readonly type: "string";
|
|
6945
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
6946
|
+
readonly default: "checkbox";
|
|
6947
|
+
};
|
|
6948
|
+
readonly label: {
|
|
6949
|
+
readonly type: "string";
|
|
6950
|
+
};
|
|
6951
|
+
readonly items: {
|
|
6952
|
+
readonly type: "array";
|
|
6953
|
+
readonly items: {
|
|
6954
|
+
readonly type: "string";
|
|
6955
|
+
};
|
|
6956
|
+
};
|
|
6957
|
+
};
|
|
6958
|
+
readonly additionalProperties: false;
|
|
6959
|
+
};
|
|
6960
|
+
readonly dissatisfied: {
|
|
6961
|
+
readonly type: "object";
|
|
6962
|
+
readonly properties: {
|
|
6963
|
+
readonly hide: {
|
|
6964
|
+
readonly type: "boolean";
|
|
6965
|
+
readonly default: false;
|
|
6966
|
+
};
|
|
6967
|
+
readonly component: {
|
|
6968
|
+
readonly type: "string";
|
|
6969
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
6970
|
+
readonly default: "checkbox";
|
|
6971
|
+
};
|
|
6972
|
+
readonly label: {
|
|
6973
|
+
readonly type: "string";
|
|
6974
|
+
};
|
|
6975
|
+
readonly items: {
|
|
6976
|
+
readonly type: "array";
|
|
6977
|
+
readonly items: {
|
|
6978
|
+
readonly type: "string";
|
|
6979
|
+
};
|
|
6980
|
+
};
|
|
6981
|
+
};
|
|
6982
|
+
readonly additionalProperties: false;
|
|
6983
|
+
};
|
|
6264
6984
|
readonly hide: {
|
|
6265
6985
|
readonly type: "boolean";
|
|
6266
6986
|
readonly default: false;
|
|
@@ -8369,6 +9089,126 @@ export declare const productConfigOverrideSchema: {
|
|
|
8369
9089
|
readonly reasons: {
|
|
8370
9090
|
readonly type: "object";
|
|
8371
9091
|
readonly properties: {
|
|
9092
|
+
readonly like: {
|
|
9093
|
+
readonly type: "object";
|
|
9094
|
+
readonly properties: {
|
|
9095
|
+
readonly hide: {
|
|
9096
|
+
readonly type: "boolean";
|
|
9097
|
+
readonly default: false;
|
|
9098
|
+
};
|
|
9099
|
+
readonly component: {
|
|
9100
|
+
readonly type: "string";
|
|
9101
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9102
|
+
readonly default: "checkbox";
|
|
9103
|
+
};
|
|
9104
|
+
readonly label: {
|
|
9105
|
+
readonly type: "string";
|
|
9106
|
+
};
|
|
9107
|
+
readonly items: {
|
|
9108
|
+
readonly type: "array";
|
|
9109
|
+
readonly items: {
|
|
9110
|
+
readonly type: "string";
|
|
9111
|
+
};
|
|
9112
|
+
};
|
|
9113
|
+
};
|
|
9114
|
+
readonly additionalProperties: false;
|
|
9115
|
+
};
|
|
9116
|
+
readonly dislike: {
|
|
9117
|
+
readonly type: "object";
|
|
9118
|
+
readonly properties: {
|
|
9119
|
+
readonly hide: {
|
|
9120
|
+
readonly type: "boolean";
|
|
9121
|
+
readonly default: false;
|
|
9122
|
+
};
|
|
9123
|
+
readonly component: {
|
|
9124
|
+
readonly type: "string";
|
|
9125
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9126
|
+
readonly default: "checkbox";
|
|
9127
|
+
};
|
|
9128
|
+
readonly label: {
|
|
9129
|
+
readonly type: "string";
|
|
9130
|
+
};
|
|
9131
|
+
readonly items: {
|
|
9132
|
+
readonly type: "array";
|
|
9133
|
+
readonly items: {
|
|
9134
|
+
readonly type: "string";
|
|
9135
|
+
};
|
|
9136
|
+
};
|
|
9137
|
+
};
|
|
9138
|
+
readonly additionalProperties: false;
|
|
9139
|
+
};
|
|
9140
|
+
readonly satisfied: {
|
|
9141
|
+
readonly type: "object";
|
|
9142
|
+
readonly properties: {
|
|
9143
|
+
readonly hide: {
|
|
9144
|
+
readonly type: "boolean";
|
|
9145
|
+
readonly default: false;
|
|
9146
|
+
};
|
|
9147
|
+
readonly component: {
|
|
9148
|
+
readonly type: "string";
|
|
9149
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9150
|
+
readonly default: "checkbox";
|
|
9151
|
+
};
|
|
9152
|
+
readonly label: {
|
|
9153
|
+
readonly type: "string";
|
|
9154
|
+
};
|
|
9155
|
+
readonly items: {
|
|
9156
|
+
readonly type: "array";
|
|
9157
|
+
readonly items: {
|
|
9158
|
+
readonly type: "string";
|
|
9159
|
+
};
|
|
9160
|
+
};
|
|
9161
|
+
};
|
|
9162
|
+
readonly additionalProperties: false;
|
|
9163
|
+
};
|
|
9164
|
+
readonly neutral: {
|
|
9165
|
+
readonly type: "object";
|
|
9166
|
+
readonly properties: {
|
|
9167
|
+
readonly hide: {
|
|
9168
|
+
readonly type: "boolean";
|
|
9169
|
+
readonly default: false;
|
|
9170
|
+
};
|
|
9171
|
+
readonly component: {
|
|
9172
|
+
readonly type: "string";
|
|
9173
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9174
|
+
readonly default: "checkbox";
|
|
9175
|
+
};
|
|
9176
|
+
readonly label: {
|
|
9177
|
+
readonly type: "string";
|
|
9178
|
+
};
|
|
9179
|
+
readonly items: {
|
|
9180
|
+
readonly type: "array";
|
|
9181
|
+
readonly items: {
|
|
9182
|
+
readonly type: "string";
|
|
9183
|
+
};
|
|
9184
|
+
};
|
|
9185
|
+
};
|
|
9186
|
+
readonly additionalProperties: false;
|
|
9187
|
+
};
|
|
9188
|
+
readonly dissatisfied: {
|
|
9189
|
+
readonly type: "object";
|
|
9190
|
+
readonly properties: {
|
|
9191
|
+
readonly hide: {
|
|
9192
|
+
readonly type: "boolean";
|
|
9193
|
+
readonly default: false;
|
|
9194
|
+
};
|
|
9195
|
+
readonly component: {
|
|
9196
|
+
readonly type: "string";
|
|
9197
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9198
|
+
readonly default: "checkbox";
|
|
9199
|
+
};
|
|
9200
|
+
readonly label: {
|
|
9201
|
+
readonly type: "string";
|
|
9202
|
+
};
|
|
9203
|
+
readonly items: {
|
|
9204
|
+
readonly type: "array";
|
|
9205
|
+
readonly items: {
|
|
9206
|
+
readonly type: "string";
|
|
9207
|
+
};
|
|
9208
|
+
};
|
|
9209
|
+
};
|
|
9210
|
+
readonly additionalProperties: false;
|
|
9211
|
+
};
|
|
8372
9212
|
readonly hide: {
|
|
8373
9213
|
readonly type: "boolean";
|
|
8374
9214
|
readonly default: false;
|
|
@@ -8652,6 +9492,126 @@ export declare const productConfigOverrideSchema: {
|
|
|
8652
9492
|
readonly reasons: {
|
|
8653
9493
|
readonly type: "object";
|
|
8654
9494
|
readonly properties: {
|
|
9495
|
+
readonly like: {
|
|
9496
|
+
readonly type: "object";
|
|
9497
|
+
readonly properties: {
|
|
9498
|
+
readonly hide: {
|
|
9499
|
+
readonly type: "boolean";
|
|
9500
|
+
readonly default: false;
|
|
9501
|
+
};
|
|
9502
|
+
readonly component: {
|
|
9503
|
+
readonly type: "string";
|
|
9504
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9505
|
+
readonly default: "checkbox";
|
|
9506
|
+
};
|
|
9507
|
+
readonly label: {
|
|
9508
|
+
readonly type: "string";
|
|
9509
|
+
};
|
|
9510
|
+
readonly items: {
|
|
9511
|
+
readonly type: "array";
|
|
9512
|
+
readonly items: {
|
|
9513
|
+
readonly type: "string";
|
|
9514
|
+
};
|
|
9515
|
+
};
|
|
9516
|
+
};
|
|
9517
|
+
readonly additionalProperties: false;
|
|
9518
|
+
};
|
|
9519
|
+
readonly dislike: {
|
|
9520
|
+
readonly type: "object";
|
|
9521
|
+
readonly properties: {
|
|
9522
|
+
readonly hide: {
|
|
9523
|
+
readonly type: "boolean";
|
|
9524
|
+
readonly default: false;
|
|
9525
|
+
};
|
|
9526
|
+
readonly component: {
|
|
9527
|
+
readonly type: "string";
|
|
9528
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9529
|
+
readonly default: "checkbox";
|
|
9530
|
+
};
|
|
9531
|
+
readonly label: {
|
|
9532
|
+
readonly type: "string";
|
|
9533
|
+
};
|
|
9534
|
+
readonly items: {
|
|
9535
|
+
readonly type: "array";
|
|
9536
|
+
readonly items: {
|
|
9537
|
+
readonly type: "string";
|
|
9538
|
+
};
|
|
9539
|
+
};
|
|
9540
|
+
};
|
|
9541
|
+
readonly additionalProperties: false;
|
|
9542
|
+
};
|
|
9543
|
+
readonly satisfied: {
|
|
9544
|
+
readonly type: "object";
|
|
9545
|
+
readonly properties: {
|
|
9546
|
+
readonly hide: {
|
|
9547
|
+
readonly type: "boolean";
|
|
9548
|
+
readonly default: false;
|
|
9549
|
+
};
|
|
9550
|
+
readonly component: {
|
|
9551
|
+
readonly type: "string";
|
|
9552
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9553
|
+
readonly default: "checkbox";
|
|
9554
|
+
};
|
|
9555
|
+
readonly label: {
|
|
9556
|
+
readonly type: "string";
|
|
9557
|
+
};
|
|
9558
|
+
readonly items: {
|
|
9559
|
+
readonly type: "array";
|
|
9560
|
+
readonly items: {
|
|
9561
|
+
readonly type: "string";
|
|
9562
|
+
};
|
|
9563
|
+
};
|
|
9564
|
+
};
|
|
9565
|
+
readonly additionalProperties: false;
|
|
9566
|
+
};
|
|
9567
|
+
readonly neutral: {
|
|
9568
|
+
readonly type: "object";
|
|
9569
|
+
readonly properties: {
|
|
9570
|
+
readonly hide: {
|
|
9571
|
+
readonly type: "boolean";
|
|
9572
|
+
readonly default: false;
|
|
9573
|
+
};
|
|
9574
|
+
readonly component: {
|
|
9575
|
+
readonly type: "string";
|
|
9576
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9577
|
+
readonly default: "checkbox";
|
|
9578
|
+
};
|
|
9579
|
+
readonly label: {
|
|
9580
|
+
readonly type: "string";
|
|
9581
|
+
};
|
|
9582
|
+
readonly items: {
|
|
9583
|
+
readonly type: "array";
|
|
9584
|
+
readonly items: {
|
|
9585
|
+
readonly type: "string";
|
|
9586
|
+
};
|
|
9587
|
+
};
|
|
9588
|
+
};
|
|
9589
|
+
readonly additionalProperties: false;
|
|
9590
|
+
};
|
|
9591
|
+
readonly dissatisfied: {
|
|
9592
|
+
readonly type: "object";
|
|
9593
|
+
readonly properties: {
|
|
9594
|
+
readonly hide: {
|
|
9595
|
+
readonly type: "boolean";
|
|
9596
|
+
readonly default: false;
|
|
9597
|
+
};
|
|
9598
|
+
readonly component: {
|
|
9599
|
+
readonly type: "string";
|
|
9600
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
9601
|
+
readonly default: "checkbox";
|
|
9602
|
+
};
|
|
9603
|
+
readonly label: {
|
|
9604
|
+
readonly type: "string";
|
|
9605
|
+
};
|
|
9606
|
+
readonly items: {
|
|
9607
|
+
readonly type: "array";
|
|
9608
|
+
readonly items: {
|
|
9609
|
+
readonly type: "string";
|
|
9610
|
+
};
|
|
9611
|
+
};
|
|
9612
|
+
};
|
|
9613
|
+
readonly additionalProperties: false;
|
|
9614
|
+
};
|
|
8655
9615
|
readonly hide: {
|
|
8656
9616
|
readonly type: "boolean";
|
|
8657
9617
|
readonly default: false;
|
|
@@ -10756,6 +11716,126 @@ export declare const productConfigOverrideSchema: {
|
|
|
10756
11716
|
readonly reasons: {
|
|
10757
11717
|
readonly type: "object";
|
|
10758
11718
|
readonly properties: {
|
|
11719
|
+
readonly like: {
|
|
11720
|
+
readonly type: "object";
|
|
11721
|
+
readonly properties: {
|
|
11722
|
+
readonly hide: {
|
|
11723
|
+
readonly type: "boolean";
|
|
11724
|
+
readonly default: false;
|
|
11725
|
+
};
|
|
11726
|
+
readonly component: {
|
|
11727
|
+
readonly type: "string";
|
|
11728
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
11729
|
+
readonly default: "checkbox";
|
|
11730
|
+
};
|
|
11731
|
+
readonly label: {
|
|
11732
|
+
readonly type: "string";
|
|
11733
|
+
};
|
|
11734
|
+
readonly items: {
|
|
11735
|
+
readonly type: "array";
|
|
11736
|
+
readonly items: {
|
|
11737
|
+
readonly type: "string";
|
|
11738
|
+
};
|
|
11739
|
+
};
|
|
11740
|
+
};
|
|
11741
|
+
readonly additionalProperties: false;
|
|
11742
|
+
};
|
|
11743
|
+
readonly dislike: {
|
|
11744
|
+
readonly type: "object";
|
|
11745
|
+
readonly properties: {
|
|
11746
|
+
readonly hide: {
|
|
11747
|
+
readonly type: "boolean";
|
|
11748
|
+
readonly default: false;
|
|
11749
|
+
};
|
|
11750
|
+
readonly component: {
|
|
11751
|
+
readonly type: "string";
|
|
11752
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
11753
|
+
readonly default: "checkbox";
|
|
11754
|
+
};
|
|
11755
|
+
readonly label: {
|
|
11756
|
+
readonly type: "string";
|
|
11757
|
+
};
|
|
11758
|
+
readonly items: {
|
|
11759
|
+
readonly type: "array";
|
|
11760
|
+
readonly items: {
|
|
11761
|
+
readonly type: "string";
|
|
11762
|
+
};
|
|
11763
|
+
};
|
|
11764
|
+
};
|
|
11765
|
+
readonly additionalProperties: false;
|
|
11766
|
+
};
|
|
11767
|
+
readonly satisfied: {
|
|
11768
|
+
readonly type: "object";
|
|
11769
|
+
readonly properties: {
|
|
11770
|
+
readonly hide: {
|
|
11771
|
+
readonly type: "boolean";
|
|
11772
|
+
readonly default: false;
|
|
11773
|
+
};
|
|
11774
|
+
readonly component: {
|
|
11775
|
+
readonly type: "string";
|
|
11776
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
11777
|
+
readonly default: "checkbox";
|
|
11778
|
+
};
|
|
11779
|
+
readonly label: {
|
|
11780
|
+
readonly type: "string";
|
|
11781
|
+
};
|
|
11782
|
+
readonly items: {
|
|
11783
|
+
readonly type: "array";
|
|
11784
|
+
readonly items: {
|
|
11785
|
+
readonly type: "string";
|
|
11786
|
+
};
|
|
11787
|
+
};
|
|
11788
|
+
};
|
|
11789
|
+
readonly additionalProperties: false;
|
|
11790
|
+
};
|
|
11791
|
+
readonly neutral: {
|
|
11792
|
+
readonly type: "object";
|
|
11793
|
+
readonly properties: {
|
|
11794
|
+
readonly hide: {
|
|
11795
|
+
readonly type: "boolean";
|
|
11796
|
+
readonly default: false;
|
|
11797
|
+
};
|
|
11798
|
+
readonly component: {
|
|
11799
|
+
readonly type: "string";
|
|
11800
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
11801
|
+
readonly default: "checkbox";
|
|
11802
|
+
};
|
|
11803
|
+
readonly label: {
|
|
11804
|
+
readonly type: "string";
|
|
11805
|
+
};
|
|
11806
|
+
readonly items: {
|
|
11807
|
+
readonly type: "array";
|
|
11808
|
+
readonly items: {
|
|
11809
|
+
readonly type: "string";
|
|
11810
|
+
};
|
|
11811
|
+
};
|
|
11812
|
+
};
|
|
11813
|
+
readonly additionalProperties: false;
|
|
11814
|
+
};
|
|
11815
|
+
readonly dissatisfied: {
|
|
11816
|
+
readonly type: "object";
|
|
11817
|
+
readonly properties: {
|
|
11818
|
+
readonly hide: {
|
|
11819
|
+
readonly type: "boolean";
|
|
11820
|
+
readonly default: false;
|
|
11821
|
+
};
|
|
11822
|
+
readonly component: {
|
|
11823
|
+
readonly type: "string";
|
|
11824
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
11825
|
+
readonly default: "checkbox";
|
|
11826
|
+
};
|
|
11827
|
+
readonly label: {
|
|
11828
|
+
readonly type: "string";
|
|
11829
|
+
};
|
|
11830
|
+
readonly items: {
|
|
11831
|
+
readonly type: "array";
|
|
11832
|
+
readonly items: {
|
|
11833
|
+
readonly type: "string";
|
|
11834
|
+
};
|
|
11835
|
+
};
|
|
11836
|
+
};
|
|
11837
|
+
readonly additionalProperties: false;
|
|
11838
|
+
};
|
|
10759
11839
|
readonly hide: {
|
|
10760
11840
|
readonly type: "boolean";
|
|
10761
11841
|
readonly default: false;
|
|
@@ -11039,6 +12119,126 @@ export declare const productConfigOverrideSchema: {
|
|
|
11039
12119
|
readonly reasons: {
|
|
11040
12120
|
readonly type: "object";
|
|
11041
12121
|
readonly properties: {
|
|
12122
|
+
readonly like: {
|
|
12123
|
+
readonly type: "object";
|
|
12124
|
+
readonly properties: {
|
|
12125
|
+
readonly hide: {
|
|
12126
|
+
readonly type: "boolean";
|
|
12127
|
+
readonly default: false;
|
|
12128
|
+
};
|
|
12129
|
+
readonly component: {
|
|
12130
|
+
readonly type: "string";
|
|
12131
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
12132
|
+
readonly default: "checkbox";
|
|
12133
|
+
};
|
|
12134
|
+
readonly label: {
|
|
12135
|
+
readonly type: "string";
|
|
12136
|
+
};
|
|
12137
|
+
readonly items: {
|
|
12138
|
+
readonly type: "array";
|
|
12139
|
+
readonly items: {
|
|
12140
|
+
readonly type: "string";
|
|
12141
|
+
};
|
|
12142
|
+
};
|
|
12143
|
+
};
|
|
12144
|
+
readonly additionalProperties: false;
|
|
12145
|
+
};
|
|
12146
|
+
readonly dislike: {
|
|
12147
|
+
readonly type: "object";
|
|
12148
|
+
readonly properties: {
|
|
12149
|
+
readonly hide: {
|
|
12150
|
+
readonly type: "boolean";
|
|
12151
|
+
readonly default: false;
|
|
12152
|
+
};
|
|
12153
|
+
readonly component: {
|
|
12154
|
+
readonly type: "string";
|
|
12155
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
12156
|
+
readonly default: "checkbox";
|
|
12157
|
+
};
|
|
12158
|
+
readonly label: {
|
|
12159
|
+
readonly type: "string";
|
|
12160
|
+
};
|
|
12161
|
+
readonly items: {
|
|
12162
|
+
readonly type: "array";
|
|
12163
|
+
readonly items: {
|
|
12164
|
+
readonly type: "string";
|
|
12165
|
+
};
|
|
12166
|
+
};
|
|
12167
|
+
};
|
|
12168
|
+
readonly additionalProperties: false;
|
|
12169
|
+
};
|
|
12170
|
+
readonly satisfied: {
|
|
12171
|
+
readonly type: "object";
|
|
12172
|
+
readonly properties: {
|
|
12173
|
+
readonly hide: {
|
|
12174
|
+
readonly type: "boolean";
|
|
12175
|
+
readonly default: false;
|
|
12176
|
+
};
|
|
12177
|
+
readonly component: {
|
|
12178
|
+
readonly type: "string";
|
|
12179
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
12180
|
+
readonly default: "checkbox";
|
|
12181
|
+
};
|
|
12182
|
+
readonly label: {
|
|
12183
|
+
readonly type: "string";
|
|
12184
|
+
};
|
|
12185
|
+
readonly items: {
|
|
12186
|
+
readonly type: "array";
|
|
12187
|
+
readonly items: {
|
|
12188
|
+
readonly type: "string";
|
|
12189
|
+
};
|
|
12190
|
+
};
|
|
12191
|
+
};
|
|
12192
|
+
readonly additionalProperties: false;
|
|
12193
|
+
};
|
|
12194
|
+
readonly neutral: {
|
|
12195
|
+
readonly type: "object";
|
|
12196
|
+
readonly properties: {
|
|
12197
|
+
readonly hide: {
|
|
12198
|
+
readonly type: "boolean";
|
|
12199
|
+
readonly default: false;
|
|
12200
|
+
};
|
|
12201
|
+
readonly component: {
|
|
12202
|
+
readonly type: "string";
|
|
12203
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
12204
|
+
readonly default: "checkbox";
|
|
12205
|
+
};
|
|
12206
|
+
readonly label: {
|
|
12207
|
+
readonly type: "string";
|
|
12208
|
+
};
|
|
12209
|
+
readonly items: {
|
|
12210
|
+
readonly type: "array";
|
|
12211
|
+
readonly items: {
|
|
12212
|
+
readonly type: "string";
|
|
12213
|
+
};
|
|
12214
|
+
};
|
|
12215
|
+
};
|
|
12216
|
+
readonly additionalProperties: false;
|
|
12217
|
+
};
|
|
12218
|
+
readonly dissatisfied: {
|
|
12219
|
+
readonly type: "object";
|
|
12220
|
+
readonly properties: {
|
|
12221
|
+
readonly hide: {
|
|
12222
|
+
readonly type: "boolean";
|
|
12223
|
+
readonly default: false;
|
|
12224
|
+
};
|
|
12225
|
+
readonly component: {
|
|
12226
|
+
readonly type: "string";
|
|
12227
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
12228
|
+
readonly default: "checkbox";
|
|
12229
|
+
};
|
|
12230
|
+
readonly label: {
|
|
12231
|
+
readonly type: "string";
|
|
12232
|
+
};
|
|
12233
|
+
readonly items: {
|
|
12234
|
+
readonly type: "array";
|
|
12235
|
+
readonly items: {
|
|
12236
|
+
readonly type: "string";
|
|
12237
|
+
};
|
|
12238
|
+
};
|
|
12239
|
+
};
|
|
12240
|
+
readonly additionalProperties: false;
|
|
12241
|
+
};
|
|
11042
12242
|
readonly hide: {
|
|
11043
12243
|
readonly type: "boolean";
|
|
11044
12244
|
readonly default: false;
|