@redocly/config 0.44.0 → 0.44.1
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/asyncapi-config-schema.d.ts +300 -0
- package/lib/asyncapi-config-schema.js +53 -0
- package/lib/default-theme-config-schema.d.ts +300 -0
- package/lib/default-theme-config-schema.js +2 -0
- package/lib/ex-theme-config-schemas.d.ts +1807 -0
- package/lib/ex-theme-config-schemas.js +2 -1
- package/lib/remove-property-recursively.d.ts +1 -1
- package/lib/remove-property-recursively.js +7 -4
- package/lib/root-config-schema.d.ts +746 -0
- package/lib/types/asyncapi-types.d.ts +14 -0
- package/lib/types/asyncapi-types.js +3 -0
- package/lib/types/config-types.d.ts +2 -0
- package/lib-esm/asyncapi-config-schema.d.ts +300 -0
- package/lib-esm/asyncapi-config-schema.js +50 -0
- package/lib-esm/default-theme-config-schema.d.ts +300 -0
- package/lib-esm/default-theme-config-schema.js +2 -0
- package/lib-esm/ex-theme-config-schemas.d.ts +1807 -0
- package/lib-esm/ex-theme-config-schemas.js +1 -0
- package/lib-esm/remove-property-recursively.d.ts +1 -1
- package/lib-esm/remove-property-recursively.js +7 -4
- package/lib-esm/root-config-schema.d.ts +746 -0
- package/lib-esm/types/asyncapi-types.d.ts +14 -0
- package/lib-esm/types/asyncapi-types.js +2 -0
- package/lib-esm/types/config-types.d.ts +2 -0
- package/package.json +2 -2
|
@@ -10443,6 +10443,306 @@ export declare const redoclyConfigSchema: {
|
|
|
10443
10443
|
readonly type: "object";
|
|
10444
10444
|
readonly additionalProperties: false;
|
|
10445
10445
|
};
|
|
10446
|
+
readonly asyncapi: {
|
|
10447
|
+
readonly type: "object";
|
|
10448
|
+
readonly properties: {
|
|
10449
|
+
readonly downloadUrls: {
|
|
10450
|
+
readonly type: "array";
|
|
10451
|
+
readonly items: {
|
|
10452
|
+
readonly type: "object";
|
|
10453
|
+
readonly properties: {
|
|
10454
|
+
readonly title: {
|
|
10455
|
+
readonly type: "string";
|
|
10456
|
+
};
|
|
10457
|
+
readonly url: {
|
|
10458
|
+
readonly type: "string";
|
|
10459
|
+
};
|
|
10460
|
+
};
|
|
10461
|
+
readonly required: readonly ["url"];
|
|
10462
|
+
readonly additionalProperties: false;
|
|
10463
|
+
};
|
|
10464
|
+
};
|
|
10465
|
+
readonly apiLogo: {
|
|
10466
|
+
readonly type: "object";
|
|
10467
|
+
readonly properties: {
|
|
10468
|
+
readonly imageUrl: {
|
|
10469
|
+
readonly type: "string";
|
|
10470
|
+
};
|
|
10471
|
+
readonly href: {
|
|
10472
|
+
readonly type: "string";
|
|
10473
|
+
};
|
|
10474
|
+
readonly altText: {
|
|
10475
|
+
readonly type: "string";
|
|
10476
|
+
};
|
|
10477
|
+
readonly backgroundColor: {
|
|
10478
|
+
readonly type: "string";
|
|
10479
|
+
};
|
|
10480
|
+
};
|
|
10481
|
+
};
|
|
10482
|
+
readonly jsonSamplesDepth: {
|
|
10483
|
+
readonly type: "number";
|
|
10484
|
+
};
|
|
10485
|
+
readonly samplesMaxInlineArgs: {
|
|
10486
|
+
readonly type: "number";
|
|
10487
|
+
};
|
|
10488
|
+
readonly fieldExpandLevel: {
|
|
10489
|
+
readonly type: "number";
|
|
10490
|
+
};
|
|
10491
|
+
readonly baseUrlPath: {
|
|
10492
|
+
readonly type: "string";
|
|
10493
|
+
};
|
|
10494
|
+
readonly metadata: {
|
|
10495
|
+
readonly type: "object";
|
|
10496
|
+
readonly properties: {
|
|
10497
|
+
readonly apiId: {
|
|
10498
|
+
readonly type: "string";
|
|
10499
|
+
};
|
|
10500
|
+
};
|
|
10501
|
+
readonly additionalProperties: true;
|
|
10502
|
+
};
|
|
10503
|
+
readonly feedback: {
|
|
10504
|
+
readonly type: "object";
|
|
10505
|
+
readonly properties: {
|
|
10506
|
+
readonly hide: {
|
|
10507
|
+
readonly type: "boolean";
|
|
10508
|
+
readonly default: false;
|
|
10509
|
+
};
|
|
10510
|
+
readonly type: {
|
|
10511
|
+
readonly type: "string";
|
|
10512
|
+
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
10513
|
+
readonly default: "sentiment";
|
|
10514
|
+
};
|
|
10515
|
+
readonly settings: {
|
|
10516
|
+
readonly type: "object";
|
|
10517
|
+
readonly properties: {
|
|
10518
|
+
readonly label: {
|
|
10519
|
+
readonly type: "string";
|
|
10520
|
+
};
|
|
10521
|
+
readonly submitText: {
|
|
10522
|
+
readonly type: "string";
|
|
10523
|
+
};
|
|
10524
|
+
readonly buttonText: {
|
|
10525
|
+
readonly type: "string";
|
|
10526
|
+
};
|
|
10527
|
+
readonly component: {
|
|
10528
|
+
readonly type: "string";
|
|
10529
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10530
|
+
readonly default: "checkbox";
|
|
10531
|
+
};
|
|
10532
|
+
readonly items: {
|
|
10533
|
+
readonly type: "array";
|
|
10534
|
+
readonly items: {
|
|
10535
|
+
readonly type: "string";
|
|
10536
|
+
};
|
|
10537
|
+
readonly minItems: 1;
|
|
10538
|
+
};
|
|
10539
|
+
readonly leftScaleLabel: {
|
|
10540
|
+
readonly type: "string";
|
|
10541
|
+
};
|
|
10542
|
+
readonly rightScaleLabel: {
|
|
10543
|
+
readonly type: "string";
|
|
10544
|
+
};
|
|
10545
|
+
readonly reasons: {
|
|
10546
|
+
readonly type: "object";
|
|
10547
|
+
readonly properties: {
|
|
10548
|
+
readonly like: {
|
|
10549
|
+
readonly type: "object";
|
|
10550
|
+
readonly properties: {
|
|
10551
|
+
readonly hide: {
|
|
10552
|
+
readonly type: "boolean";
|
|
10553
|
+
readonly default: false;
|
|
10554
|
+
};
|
|
10555
|
+
readonly component: {
|
|
10556
|
+
readonly type: "string";
|
|
10557
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10558
|
+
readonly default: "checkbox";
|
|
10559
|
+
};
|
|
10560
|
+
readonly label: {
|
|
10561
|
+
readonly type: "string";
|
|
10562
|
+
};
|
|
10563
|
+
readonly items: {
|
|
10564
|
+
readonly type: "array";
|
|
10565
|
+
readonly items: {
|
|
10566
|
+
readonly type: "string";
|
|
10567
|
+
};
|
|
10568
|
+
};
|
|
10569
|
+
};
|
|
10570
|
+
readonly additionalProperties: false;
|
|
10571
|
+
};
|
|
10572
|
+
readonly dislike: {
|
|
10573
|
+
readonly type: "object";
|
|
10574
|
+
readonly properties: {
|
|
10575
|
+
readonly hide: {
|
|
10576
|
+
readonly type: "boolean";
|
|
10577
|
+
readonly default: false;
|
|
10578
|
+
};
|
|
10579
|
+
readonly component: {
|
|
10580
|
+
readonly type: "string";
|
|
10581
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10582
|
+
readonly default: "checkbox";
|
|
10583
|
+
};
|
|
10584
|
+
readonly label: {
|
|
10585
|
+
readonly type: "string";
|
|
10586
|
+
};
|
|
10587
|
+
readonly items: {
|
|
10588
|
+
readonly type: "array";
|
|
10589
|
+
readonly items: {
|
|
10590
|
+
readonly type: "string";
|
|
10591
|
+
};
|
|
10592
|
+
};
|
|
10593
|
+
};
|
|
10594
|
+
readonly additionalProperties: false;
|
|
10595
|
+
};
|
|
10596
|
+
readonly satisfied: {
|
|
10597
|
+
readonly type: "object";
|
|
10598
|
+
readonly properties: {
|
|
10599
|
+
readonly hide: {
|
|
10600
|
+
readonly type: "boolean";
|
|
10601
|
+
readonly default: false;
|
|
10602
|
+
};
|
|
10603
|
+
readonly component: {
|
|
10604
|
+
readonly type: "string";
|
|
10605
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10606
|
+
readonly default: "checkbox";
|
|
10607
|
+
};
|
|
10608
|
+
readonly label: {
|
|
10609
|
+
readonly type: "string";
|
|
10610
|
+
};
|
|
10611
|
+
readonly items: {
|
|
10612
|
+
readonly type: "array";
|
|
10613
|
+
readonly items: {
|
|
10614
|
+
readonly type: "string";
|
|
10615
|
+
};
|
|
10616
|
+
};
|
|
10617
|
+
};
|
|
10618
|
+
readonly additionalProperties: false;
|
|
10619
|
+
};
|
|
10620
|
+
readonly neutral: {
|
|
10621
|
+
readonly type: "object";
|
|
10622
|
+
readonly properties: {
|
|
10623
|
+
readonly hide: {
|
|
10624
|
+
readonly type: "boolean";
|
|
10625
|
+
readonly default: false;
|
|
10626
|
+
};
|
|
10627
|
+
readonly component: {
|
|
10628
|
+
readonly type: "string";
|
|
10629
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10630
|
+
readonly default: "checkbox";
|
|
10631
|
+
};
|
|
10632
|
+
readonly label: {
|
|
10633
|
+
readonly type: "string";
|
|
10634
|
+
};
|
|
10635
|
+
readonly items: {
|
|
10636
|
+
readonly type: "array";
|
|
10637
|
+
readonly items: {
|
|
10638
|
+
readonly type: "string";
|
|
10639
|
+
};
|
|
10640
|
+
};
|
|
10641
|
+
};
|
|
10642
|
+
readonly additionalProperties: false;
|
|
10643
|
+
};
|
|
10644
|
+
readonly dissatisfied: {
|
|
10645
|
+
readonly type: "object";
|
|
10646
|
+
readonly properties: {
|
|
10647
|
+
readonly hide: {
|
|
10648
|
+
readonly type: "boolean";
|
|
10649
|
+
readonly default: false;
|
|
10650
|
+
};
|
|
10651
|
+
readonly component: {
|
|
10652
|
+
readonly type: "string";
|
|
10653
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10654
|
+
readonly default: "checkbox";
|
|
10655
|
+
};
|
|
10656
|
+
readonly label: {
|
|
10657
|
+
readonly type: "string";
|
|
10658
|
+
};
|
|
10659
|
+
readonly items: {
|
|
10660
|
+
readonly type: "array";
|
|
10661
|
+
readonly items: {
|
|
10662
|
+
readonly type: "string";
|
|
10663
|
+
};
|
|
10664
|
+
};
|
|
10665
|
+
};
|
|
10666
|
+
readonly additionalProperties: false;
|
|
10667
|
+
};
|
|
10668
|
+
readonly hide: {
|
|
10669
|
+
readonly type: "boolean";
|
|
10670
|
+
readonly default: false;
|
|
10671
|
+
};
|
|
10672
|
+
readonly component: {
|
|
10673
|
+
readonly type: "string";
|
|
10674
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10675
|
+
readonly default: "checkbox";
|
|
10676
|
+
};
|
|
10677
|
+
readonly label: {
|
|
10678
|
+
readonly type: "string";
|
|
10679
|
+
};
|
|
10680
|
+
readonly items: {
|
|
10681
|
+
readonly type: "array";
|
|
10682
|
+
readonly items: {
|
|
10683
|
+
readonly type: "string";
|
|
10684
|
+
};
|
|
10685
|
+
};
|
|
10686
|
+
};
|
|
10687
|
+
readonly additionalProperties: false;
|
|
10688
|
+
};
|
|
10689
|
+
readonly comment: {
|
|
10690
|
+
readonly type: "object";
|
|
10691
|
+
readonly properties: {
|
|
10692
|
+
readonly hide: {
|
|
10693
|
+
readonly type: "boolean";
|
|
10694
|
+
readonly default: false;
|
|
10695
|
+
};
|
|
10696
|
+
readonly label: {
|
|
10697
|
+
readonly type: "string";
|
|
10698
|
+
};
|
|
10699
|
+
readonly likeLabel: {
|
|
10700
|
+
readonly type: "string";
|
|
10701
|
+
};
|
|
10702
|
+
readonly dislikeLabel: {
|
|
10703
|
+
readonly type: "string";
|
|
10704
|
+
};
|
|
10705
|
+
readonly satisfiedLabel: {
|
|
10706
|
+
readonly type: "string";
|
|
10707
|
+
};
|
|
10708
|
+
readonly neutralLabel: {
|
|
10709
|
+
readonly type: "string";
|
|
10710
|
+
};
|
|
10711
|
+
readonly dissatisfiedLabel: {
|
|
10712
|
+
readonly type: "string";
|
|
10713
|
+
};
|
|
10714
|
+
};
|
|
10715
|
+
readonly additionalProperties: false;
|
|
10716
|
+
};
|
|
10717
|
+
readonly optionalEmail: {
|
|
10718
|
+
readonly type: "object";
|
|
10719
|
+
readonly properties: {
|
|
10720
|
+
readonly hide: {
|
|
10721
|
+
readonly type: "boolean";
|
|
10722
|
+
readonly default: false;
|
|
10723
|
+
};
|
|
10724
|
+
readonly label: {
|
|
10725
|
+
readonly type: "string";
|
|
10726
|
+
};
|
|
10727
|
+
readonly placeholder: {
|
|
10728
|
+
readonly type: "string";
|
|
10729
|
+
};
|
|
10730
|
+
};
|
|
10731
|
+
readonly additionalProperties: false;
|
|
10732
|
+
};
|
|
10733
|
+
};
|
|
10734
|
+
readonly additionalProperties: false;
|
|
10735
|
+
};
|
|
10736
|
+
};
|
|
10737
|
+
readonly additionalProperties: false;
|
|
10738
|
+
};
|
|
10739
|
+
readonly layout: {
|
|
10740
|
+
readonly type: "string";
|
|
10741
|
+
readonly enum: readonly ["stacked", "three-panel"];
|
|
10742
|
+
};
|
|
10743
|
+
};
|
|
10744
|
+
readonly additionalProperties: false;
|
|
10745
|
+
};
|
|
10446
10746
|
readonly graphql: {
|
|
10447
10747
|
readonly type: "object";
|
|
10448
10748
|
readonly properties: {
|
|
@@ -28075,6 +28375,152 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28075
28375
|
additionalProperties: false;
|
|
28076
28376
|
type: "object";
|
|
28077
28377
|
};
|
|
28378
|
+
asyncapi: {
|
|
28379
|
+
properties: {
|
|
28380
|
+
layout: {
|
|
28381
|
+
enum: ("stacked" | "three-panel")[];
|
|
28382
|
+
type: "string";
|
|
28383
|
+
};
|
|
28384
|
+
metadata: {
|
|
28385
|
+
properties: {
|
|
28386
|
+
apiId: {
|
|
28387
|
+
type: "string";
|
|
28388
|
+
};
|
|
28389
|
+
};
|
|
28390
|
+
additionalProperties: true;
|
|
28391
|
+
type: "object";
|
|
28392
|
+
};
|
|
28393
|
+
feedback: {
|
|
28394
|
+
properties: {
|
|
28395
|
+
type: {
|
|
28396
|
+
enum: ("rating" | "sentiment" | "comment" | "reasons" | "mood" | "scale")[];
|
|
28397
|
+
type: "string";
|
|
28398
|
+
};
|
|
28399
|
+
hide: {
|
|
28400
|
+
type: "boolean";
|
|
28401
|
+
};
|
|
28402
|
+
settings: {
|
|
28403
|
+
properties: {
|
|
28404
|
+
comment: {
|
|
28405
|
+
properties: {
|
|
28406
|
+
label: /*elided*/ any;
|
|
28407
|
+
hide: /*elided*/ any;
|
|
28408
|
+
likeLabel: /*elided*/ any;
|
|
28409
|
+
dislikeLabel: /*elided*/ any;
|
|
28410
|
+
satisfiedLabel: /*elided*/ any;
|
|
28411
|
+
neutralLabel: /*elided*/ any;
|
|
28412
|
+
dissatisfiedLabel: /*elided*/ any;
|
|
28413
|
+
};
|
|
28414
|
+
additionalProperties: false;
|
|
28415
|
+
type: "object";
|
|
28416
|
+
};
|
|
28417
|
+
reasons: {
|
|
28418
|
+
properties: {
|
|
28419
|
+
label: /*elided*/ any;
|
|
28420
|
+
items: /*elided*/ any;
|
|
28421
|
+
hide: /*elided*/ any;
|
|
28422
|
+
component: /*elided*/ any;
|
|
28423
|
+
like: /*elided*/ any;
|
|
28424
|
+
dislike: /*elided*/ any;
|
|
28425
|
+
satisfied: /*elided*/ any;
|
|
28426
|
+
neutral: /*elided*/ any;
|
|
28427
|
+
dissatisfied: /*elided*/ any;
|
|
28428
|
+
};
|
|
28429
|
+
additionalProperties: false;
|
|
28430
|
+
type: "object";
|
|
28431
|
+
};
|
|
28432
|
+
label: {
|
|
28433
|
+
type: "string";
|
|
28434
|
+
};
|
|
28435
|
+
items: {
|
|
28436
|
+
items: {
|
|
28437
|
+
type: "string";
|
|
28438
|
+
};
|
|
28439
|
+
type: "array";
|
|
28440
|
+
minItems: 1;
|
|
28441
|
+
};
|
|
28442
|
+
submitText: {
|
|
28443
|
+
type: "string";
|
|
28444
|
+
};
|
|
28445
|
+
buttonText: {
|
|
28446
|
+
type: "string";
|
|
28447
|
+
};
|
|
28448
|
+
component: {
|
|
28449
|
+
enum: ("radio" | "checkbox")[];
|
|
28450
|
+
type: "string";
|
|
28451
|
+
};
|
|
28452
|
+
leftScaleLabel: {
|
|
28453
|
+
type: "string";
|
|
28454
|
+
};
|
|
28455
|
+
rightScaleLabel: {
|
|
28456
|
+
type: "string";
|
|
28457
|
+
};
|
|
28458
|
+
optionalEmail: {
|
|
28459
|
+
properties: {
|
|
28460
|
+
label: /*elided*/ any;
|
|
28461
|
+
hide: /*elided*/ any;
|
|
28462
|
+
placeholder: /*elided*/ any;
|
|
28463
|
+
};
|
|
28464
|
+
additionalProperties: false;
|
|
28465
|
+
type: "object";
|
|
28466
|
+
};
|
|
28467
|
+
};
|
|
28468
|
+
additionalProperties: false;
|
|
28469
|
+
type: "object";
|
|
28470
|
+
};
|
|
28471
|
+
};
|
|
28472
|
+
additionalProperties: false;
|
|
28473
|
+
type: "object";
|
|
28474
|
+
};
|
|
28475
|
+
downloadUrls: {
|
|
28476
|
+
items: {
|
|
28477
|
+
properties: {
|
|
28478
|
+
url: {
|
|
28479
|
+
type: "string";
|
|
28480
|
+
};
|
|
28481
|
+
title: {
|
|
28482
|
+
type: "string";
|
|
28483
|
+
};
|
|
28484
|
+
};
|
|
28485
|
+
additionalProperties: false;
|
|
28486
|
+
type: "object";
|
|
28487
|
+
required: "url"[];
|
|
28488
|
+
};
|
|
28489
|
+
type: "array";
|
|
28490
|
+
};
|
|
28491
|
+
apiLogo: {
|
|
28492
|
+
properties: {
|
|
28493
|
+
backgroundColor: {
|
|
28494
|
+
type: "string";
|
|
28495
|
+
};
|
|
28496
|
+
href: {
|
|
28497
|
+
type: "string";
|
|
28498
|
+
};
|
|
28499
|
+
imageUrl: {
|
|
28500
|
+
type: "string";
|
|
28501
|
+
};
|
|
28502
|
+
altText: {
|
|
28503
|
+
type: "string";
|
|
28504
|
+
};
|
|
28505
|
+
};
|
|
28506
|
+
type: "object";
|
|
28507
|
+
};
|
|
28508
|
+
jsonSamplesDepth: {
|
|
28509
|
+
type: "number";
|
|
28510
|
+
};
|
|
28511
|
+
samplesMaxInlineArgs: {
|
|
28512
|
+
type: "number";
|
|
28513
|
+
};
|
|
28514
|
+
fieldExpandLevel: {
|
|
28515
|
+
type: "number";
|
|
28516
|
+
};
|
|
28517
|
+
baseUrlPath: {
|
|
28518
|
+
type: "string";
|
|
28519
|
+
};
|
|
28520
|
+
};
|
|
28521
|
+
additionalProperties: false;
|
|
28522
|
+
type: "object";
|
|
28523
|
+
};
|
|
28078
28524
|
graphql: {
|
|
28079
28525
|
properties: {
|
|
28080
28526
|
layout: {
|
|
@@ -43704,6 +44150,306 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
43704
44150
|
readonly type: "object";
|
|
43705
44151
|
readonly additionalProperties: false;
|
|
43706
44152
|
};
|
|
44153
|
+
readonly asyncapi: {
|
|
44154
|
+
readonly type: "object";
|
|
44155
|
+
readonly properties: {
|
|
44156
|
+
readonly downloadUrls: {
|
|
44157
|
+
readonly type: "array";
|
|
44158
|
+
readonly items: {
|
|
44159
|
+
readonly type: "object";
|
|
44160
|
+
readonly properties: {
|
|
44161
|
+
readonly title: {
|
|
44162
|
+
readonly type: "string";
|
|
44163
|
+
};
|
|
44164
|
+
readonly url: {
|
|
44165
|
+
readonly type: "string";
|
|
44166
|
+
};
|
|
44167
|
+
};
|
|
44168
|
+
readonly required: readonly ["url"];
|
|
44169
|
+
readonly additionalProperties: false;
|
|
44170
|
+
};
|
|
44171
|
+
};
|
|
44172
|
+
readonly apiLogo: {
|
|
44173
|
+
readonly type: "object";
|
|
44174
|
+
readonly properties: {
|
|
44175
|
+
readonly imageUrl: {
|
|
44176
|
+
readonly type: "string";
|
|
44177
|
+
};
|
|
44178
|
+
readonly href: {
|
|
44179
|
+
readonly type: "string";
|
|
44180
|
+
};
|
|
44181
|
+
readonly altText: {
|
|
44182
|
+
readonly type: "string";
|
|
44183
|
+
};
|
|
44184
|
+
readonly backgroundColor: {
|
|
44185
|
+
readonly type: "string";
|
|
44186
|
+
};
|
|
44187
|
+
};
|
|
44188
|
+
};
|
|
44189
|
+
readonly jsonSamplesDepth: {
|
|
44190
|
+
readonly type: "number";
|
|
44191
|
+
};
|
|
44192
|
+
readonly samplesMaxInlineArgs: {
|
|
44193
|
+
readonly type: "number";
|
|
44194
|
+
};
|
|
44195
|
+
readonly fieldExpandLevel: {
|
|
44196
|
+
readonly type: "number";
|
|
44197
|
+
};
|
|
44198
|
+
readonly baseUrlPath: {
|
|
44199
|
+
readonly type: "string";
|
|
44200
|
+
};
|
|
44201
|
+
readonly metadata: {
|
|
44202
|
+
readonly type: "object";
|
|
44203
|
+
readonly properties: {
|
|
44204
|
+
readonly apiId: {
|
|
44205
|
+
readonly type: "string";
|
|
44206
|
+
};
|
|
44207
|
+
};
|
|
44208
|
+
readonly additionalProperties: true;
|
|
44209
|
+
};
|
|
44210
|
+
readonly feedback: {
|
|
44211
|
+
readonly type: "object";
|
|
44212
|
+
readonly properties: {
|
|
44213
|
+
readonly hide: {
|
|
44214
|
+
readonly type: "boolean";
|
|
44215
|
+
readonly default: false;
|
|
44216
|
+
};
|
|
44217
|
+
readonly type: {
|
|
44218
|
+
readonly type: "string";
|
|
44219
|
+
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
44220
|
+
readonly default: "sentiment";
|
|
44221
|
+
};
|
|
44222
|
+
readonly settings: {
|
|
44223
|
+
readonly type: "object";
|
|
44224
|
+
readonly properties: {
|
|
44225
|
+
readonly label: {
|
|
44226
|
+
readonly type: "string";
|
|
44227
|
+
};
|
|
44228
|
+
readonly submitText: {
|
|
44229
|
+
readonly type: "string";
|
|
44230
|
+
};
|
|
44231
|
+
readonly buttonText: {
|
|
44232
|
+
readonly type: "string";
|
|
44233
|
+
};
|
|
44234
|
+
readonly component: {
|
|
44235
|
+
readonly type: "string";
|
|
44236
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44237
|
+
readonly default: "checkbox";
|
|
44238
|
+
};
|
|
44239
|
+
readonly items: {
|
|
44240
|
+
readonly type: "array";
|
|
44241
|
+
readonly items: {
|
|
44242
|
+
readonly type: "string";
|
|
44243
|
+
};
|
|
44244
|
+
readonly minItems: 1;
|
|
44245
|
+
};
|
|
44246
|
+
readonly leftScaleLabel: {
|
|
44247
|
+
readonly type: "string";
|
|
44248
|
+
};
|
|
44249
|
+
readonly rightScaleLabel: {
|
|
44250
|
+
readonly type: "string";
|
|
44251
|
+
};
|
|
44252
|
+
readonly reasons: {
|
|
44253
|
+
readonly type: "object";
|
|
44254
|
+
readonly properties: {
|
|
44255
|
+
readonly like: {
|
|
44256
|
+
readonly type: "object";
|
|
44257
|
+
readonly properties: {
|
|
44258
|
+
readonly hide: {
|
|
44259
|
+
readonly type: "boolean";
|
|
44260
|
+
readonly default: false;
|
|
44261
|
+
};
|
|
44262
|
+
readonly component: {
|
|
44263
|
+
readonly type: "string";
|
|
44264
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44265
|
+
readonly default: "checkbox";
|
|
44266
|
+
};
|
|
44267
|
+
readonly label: {
|
|
44268
|
+
readonly type: "string";
|
|
44269
|
+
};
|
|
44270
|
+
readonly items: {
|
|
44271
|
+
readonly type: "array";
|
|
44272
|
+
readonly items: {
|
|
44273
|
+
readonly type: "string";
|
|
44274
|
+
};
|
|
44275
|
+
};
|
|
44276
|
+
};
|
|
44277
|
+
readonly additionalProperties: false;
|
|
44278
|
+
};
|
|
44279
|
+
readonly dislike: {
|
|
44280
|
+
readonly type: "object";
|
|
44281
|
+
readonly properties: {
|
|
44282
|
+
readonly hide: {
|
|
44283
|
+
readonly type: "boolean";
|
|
44284
|
+
readonly default: false;
|
|
44285
|
+
};
|
|
44286
|
+
readonly component: {
|
|
44287
|
+
readonly type: "string";
|
|
44288
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44289
|
+
readonly default: "checkbox";
|
|
44290
|
+
};
|
|
44291
|
+
readonly label: {
|
|
44292
|
+
readonly type: "string";
|
|
44293
|
+
};
|
|
44294
|
+
readonly items: {
|
|
44295
|
+
readonly type: "array";
|
|
44296
|
+
readonly items: {
|
|
44297
|
+
readonly type: "string";
|
|
44298
|
+
};
|
|
44299
|
+
};
|
|
44300
|
+
};
|
|
44301
|
+
readonly additionalProperties: false;
|
|
44302
|
+
};
|
|
44303
|
+
readonly satisfied: {
|
|
44304
|
+
readonly type: "object";
|
|
44305
|
+
readonly properties: {
|
|
44306
|
+
readonly hide: {
|
|
44307
|
+
readonly type: "boolean";
|
|
44308
|
+
readonly default: false;
|
|
44309
|
+
};
|
|
44310
|
+
readonly component: {
|
|
44311
|
+
readonly type: "string";
|
|
44312
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44313
|
+
readonly default: "checkbox";
|
|
44314
|
+
};
|
|
44315
|
+
readonly label: {
|
|
44316
|
+
readonly type: "string";
|
|
44317
|
+
};
|
|
44318
|
+
readonly items: {
|
|
44319
|
+
readonly type: "array";
|
|
44320
|
+
readonly items: {
|
|
44321
|
+
readonly type: "string";
|
|
44322
|
+
};
|
|
44323
|
+
};
|
|
44324
|
+
};
|
|
44325
|
+
readonly additionalProperties: false;
|
|
44326
|
+
};
|
|
44327
|
+
readonly neutral: {
|
|
44328
|
+
readonly type: "object";
|
|
44329
|
+
readonly properties: {
|
|
44330
|
+
readonly hide: {
|
|
44331
|
+
readonly type: "boolean";
|
|
44332
|
+
readonly default: false;
|
|
44333
|
+
};
|
|
44334
|
+
readonly component: {
|
|
44335
|
+
readonly type: "string";
|
|
44336
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44337
|
+
readonly default: "checkbox";
|
|
44338
|
+
};
|
|
44339
|
+
readonly label: {
|
|
44340
|
+
readonly type: "string";
|
|
44341
|
+
};
|
|
44342
|
+
readonly items: {
|
|
44343
|
+
readonly type: "array";
|
|
44344
|
+
readonly items: {
|
|
44345
|
+
readonly type: "string";
|
|
44346
|
+
};
|
|
44347
|
+
};
|
|
44348
|
+
};
|
|
44349
|
+
readonly additionalProperties: false;
|
|
44350
|
+
};
|
|
44351
|
+
readonly dissatisfied: {
|
|
44352
|
+
readonly type: "object";
|
|
44353
|
+
readonly properties: {
|
|
44354
|
+
readonly hide: {
|
|
44355
|
+
readonly type: "boolean";
|
|
44356
|
+
readonly default: false;
|
|
44357
|
+
};
|
|
44358
|
+
readonly component: {
|
|
44359
|
+
readonly type: "string";
|
|
44360
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44361
|
+
readonly default: "checkbox";
|
|
44362
|
+
};
|
|
44363
|
+
readonly label: {
|
|
44364
|
+
readonly type: "string";
|
|
44365
|
+
};
|
|
44366
|
+
readonly items: {
|
|
44367
|
+
readonly type: "array";
|
|
44368
|
+
readonly items: {
|
|
44369
|
+
readonly type: "string";
|
|
44370
|
+
};
|
|
44371
|
+
};
|
|
44372
|
+
};
|
|
44373
|
+
readonly additionalProperties: false;
|
|
44374
|
+
};
|
|
44375
|
+
readonly hide: {
|
|
44376
|
+
readonly type: "boolean";
|
|
44377
|
+
readonly default: false;
|
|
44378
|
+
};
|
|
44379
|
+
readonly component: {
|
|
44380
|
+
readonly type: "string";
|
|
44381
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44382
|
+
readonly default: "checkbox";
|
|
44383
|
+
};
|
|
44384
|
+
readonly label: {
|
|
44385
|
+
readonly type: "string";
|
|
44386
|
+
};
|
|
44387
|
+
readonly items: {
|
|
44388
|
+
readonly type: "array";
|
|
44389
|
+
readonly items: {
|
|
44390
|
+
readonly type: "string";
|
|
44391
|
+
};
|
|
44392
|
+
};
|
|
44393
|
+
};
|
|
44394
|
+
readonly additionalProperties: false;
|
|
44395
|
+
};
|
|
44396
|
+
readonly comment: {
|
|
44397
|
+
readonly type: "object";
|
|
44398
|
+
readonly properties: {
|
|
44399
|
+
readonly hide: {
|
|
44400
|
+
readonly type: "boolean";
|
|
44401
|
+
readonly default: false;
|
|
44402
|
+
};
|
|
44403
|
+
readonly label: {
|
|
44404
|
+
readonly type: "string";
|
|
44405
|
+
};
|
|
44406
|
+
readonly likeLabel: {
|
|
44407
|
+
readonly type: "string";
|
|
44408
|
+
};
|
|
44409
|
+
readonly dislikeLabel: {
|
|
44410
|
+
readonly type: "string";
|
|
44411
|
+
};
|
|
44412
|
+
readonly satisfiedLabel: {
|
|
44413
|
+
readonly type: "string";
|
|
44414
|
+
};
|
|
44415
|
+
readonly neutralLabel: {
|
|
44416
|
+
readonly type: "string";
|
|
44417
|
+
};
|
|
44418
|
+
readonly dissatisfiedLabel: {
|
|
44419
|
+
readonly type: "string";
|
|
44420
|
+
};
|
|
44421
|
+
};
|
|
44422
|
+
readonly additionalProperties: false;
|
|
44423
|
+
};
|
|
44424
|
+
readonly optionalEmail: {
|
|
44425
|
+
readonly type: "object";
|
|
44426
|
+
readonly properties: {
|
|
44427
|
+
readonly hide: {
|
|
44428
|
+
readonly type: "boolean";
|
|
44429
|
+
readonly default: false;
|
|
44430
|
+
};
|
|
44431
|
+
readonly label: {
|
|
44432
|
+
readonly type: "string";
|
|
44433
|
+
};
|
|
44434
|
+
readonly placeholder: {
|
|
44435
|
+
readonly type: "string";
|
|
44436
|
+
};
|
|
44437
|
+
};
|
|
44438
|
+
readonly additionalProperties: false;
|
|
44439
|
+
};
|
|
44440
|
+
};
|
|
44441
|
+
readonly additionalProperties: false;
|
|
44442
|
+
};
|
|
44443
|
+
};
|
|
44444
|
+
readonly additionalProperties: false;
|
|
44445
|
+
};
|
|
44446
|
+
readonly layout: {
|
|
44447
|
+
readonly type: "string";
|
|
44448
|
+
readonly enum: readonly ["stacked", "three-panel"];
|
|
44449
|
+
};
|
|
44450
|
+
};
|
|
44451
|
+
readonly additionalProperties: false;
|
|
44452
|
+
};
|
|
43707
44453
|
readonly graphql: {
|
|
43708
44454
|
readonly type: "object";
|
|
43709
44455
|
readonly properties: {
|