@redocly/config 0.41.0 → 0.41.2
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/common.d.ts +3 -3
- package/lib/common.js +6 -0
- package/lib/default-theme-config-schema.d.ts +36 -0
- package/lib/ex-theme-config-schemas.d.ts +18 -0
- package/lib/product-override-schema.d.ts +18 -0
- package/lib/root-config-schema.d.ts +754 -0
- package/lib/root-config-schema.js +17 -3
- package/lib/types/api-functions-types.d.ts +10 -11
- package/lib/types/catalog-entity-types.d.ts +1 -1
- package/lib/types/portal-shared-types.d.ts +2 -1
- package/lib-esm/common.d.ts +3 -3
- package/lib-esm/common.js +6 -0
- package/lib-esm/default-theme-config-schema.d.ts +36 -0
- package/lib-esm/ex-theme-config-schemas.d.ts +18 -0
- package/lib-esm/product-override-schema.d.ts +18 -0
- package/lib-esm/root-config-schema.d.ts +754 -0
- package/lib-esm/root-config-schema.js +16 -2
- package/lib-esm/types/api-functions-types.d.ts +10 -11
- package/lib-esm/types/catalog-entity-types.d.ts +1 -1
- package/lib-esm/types/portal-shared-types.d.ts +2 -1
- package/package.json +7 -3
|
@@ -593,6 +593,10 @@ export declare const apiConfigSchema: {
|
|
|
593
593
|
readonly type: "object";
|
|
594
594
|
readonly additionalProperties: true;
|
|
595
595
|
};
|
|
596
|
+
readonly openrpc1Decorators: {
|
|
597
|
+
readonly type: "object";
|
|
598
|
+
readonly additionalProperties: true;
|
|
599
|
+
};
|
|
596
600
|
readonly preprocessors: {
|
|
597
601
|
readonly type: "object";
|
|
598
602
|
readonly additionalProperties: true;
|
|
@@ -629,6 +633,10 @@ export declare const apiConfigSchema: {
|
|
|
629
633
|
readonly type: "object";
|
|
630
634
|
readonly additionalProperties: true;
|
|
631
635
|
};
|
|
636
|
+
readonly openrpc1Preprocessors: {
|
|
637
|
+
readonly type: "object";
|
|
638
|
+
readonly additionalProperties: true;
|
|
639
|
+
};
|
|
632
640
|
readonly rules: {
|
|
633
641
|
readonly type: "object";
|
|
634
642
|
readonly additionalProperties: {
|
|
@@ -719,6 +727,16 @@ export declare const apiConfigSchema: {
|
|
|
719
727
|
}];
|
|
720
728
|
};
|
|
721
729
|
};
|
|
730
|
+
readonly openrpc1Rules: {
|
|
731
|
+
readonly type: "object";
|
|
732
|
+
readonly additionalProperties: {
|
|
733
|
+
readonly oneOf: readonly [{
|
|
734
|
+
readonly type: "string";
|
|
735
|
+
}, {
|
|
736
|
+
readonly type: "object";
|
|
737
|
+
}];
|
|
738
|
+
};
|
|
739
|
+
};
|
|
722
740
|
readonly root: {
|
|
723
741
|
readonly type: "string";
|
|
724
742
|
};
|
|
@@ -6067,6 +6085,106 @@ export declare const l10nConfigSchema: {
|
|
|
6067
6085
|
readonly additionalProperties: false;
|
|
6068
6086
|
readonly required: readonly ["defaultLocale"];
|
|
6069
6087
|
};
|
|
6088
|
+
export declare const accessConfigSchema: {
|
|
6089
|
+
readonly type: "object";
|
|
6090
|
+
readonly properties: {
|
|
6091
|
+
readonly requiresLogin: {
|
|
6092
|
+
readonly type: "boolean";
|
|
6093
|
+
};
|
|
6094
|
+
readonly logoutReturnUrl: {
|
|
6095
|
+
readonly type: "string";
|
|
6096
|
+
readonly pattern: "^https?://.*";
|
|
6097
|
+
};
|
|
6098
|
+
readonly residency: {
|
|
6099
|
+
readonly type: "string";
|
|
6100
|
+
readonly pattern: "^https?://.*";
|
|
6101
|
+
};
|
|
6102
|
+
readonly sso: {
|
|
6103
|
+
readonly oneOf: readonly [{
|
|
6104
|
+
readonly type: "array";
|
|
6105
|
+
readonly items: {
|
|
6106
|
+
readonly type: "string";
|
|
6107
|
+
readonly enum: readonly ["REDOCLY", "CORPORATE", "GUEST"];
|
|
6108
|
+
};
|
|
6109
|
+
readonly uniqueItems: true;
|
|
6110
|
+
}, {
|
|
6111
|
+
readonly type: "string";
|
|
6112
|
+
readonly enum: readonly ["REDOCLY", "CORPORATE", "GUEST"];
|
|
6113
|
+
}];
|
|
6114
|
+
};
|
|
6115
|
+
readonly rbac: {
|
|
6116
|
+
readonly type: "object";
|
|
6117
|
+
readonly properties: {
|
|
6118
|
+
readonly teamNamePatterns: {
|
|
6119
|
+
readonly type: "array";
|
|
6120
|
+
readonly items: {
|
|
6121
|
+
readonly type: "string";
|
|
6122
|
+
};
|
|
6123
|
+
};
|
|
6124
|
+
readonly teamFolders: {
|
|
6125
|
+
readonly type: "array";
|
|
6126
|
+
readonly items: {
|
|
6127
|
+
readonly type: "string";
|
|
6128
|
+
};
|
|
6129
|
+
};
|
|
6130
|
+
readonly teamFoldersBaseRoles: {
|
|
6131
|
+
readonly type: "object";
|
|
6132
|
+
readonly additionalProperties: {
|
|
6133
|
+
readonly type: "string";
|
|
6134
|
+
};
|
|
6135
|
+
};
|
|
6136
|
+
readonly cms: {
|
|
6137
|
+
readonly type: "object";
|
|
6138
|
+
readonly additionalProperties: {
|
|
6139
|
+
readonly type: "string";
|
|
6140
|
+
};
|
|
6141
|
+
};
|
|
6142
|
+
readonly reunite: {
|
|
6143
|
+
readonly type: "object";
|
|
6144
|
+
readonly additionalProperties: {
|
|
6145
|
+
readonly type: "string";
|
|
6146
|
+
};
|
|
6147
|
+
};
|
|
6148
|
+
readonly features: {
|
|
6149
|
+
readonly type: "object";
|
|
6150
|
+
readonly properties: {
|
|
6151
|
+
readonly aiSearch: {
|
|
6152
|
+
readonly type: "object";
|
|
6153
|
+
readonly additionalProperties: {
|
|
6154
|
+
readonly type: "string";
|
|
6155
|
+
};
|
|
6156
|
+
};
|
|
6157
|
+
};
|
|
6158
|
+
readonly additionalProperties: false;
|
|
6159
|
+
};
|
|
6160
|
+
readonly content: {
|
|
6161
|
+
readonly type: "object";
|
|
6162
|
+
readonly properties: {
|
|
6163
|
+
readonly '**': {
|
|
6164
|
+
readonly type: "object";
|
|
6165
|
+
readonly additionalProperties: {
|
|
6166
|
+
readonly type: "string";
|
|
6167
|
+
};
|
|
6168
|
+
};
|
|
6169
|
+
};
|
|
6170
|
+
readonly additionalProperties: {
|
|
6171
|
+
readonly type: "object";
|
|
6172
|
+
readonly additionalProperties: {
|
|
6173
|
+
readonly type: "string";
|
|
6174
|
+
};
|
|
6175
|
+
};
|
|
6176
|
+
};
|
|
6177
|
+
};
|
|
6178
|
+
readonly additionalProperties: {
|
|
6179
|
+
readonly type: "object";
|
|
6180
|
+
readonly additionalProperties: {
|
|
6181
|
+
readonly type: "string";
|
|
6182
|
+
};
|
|
6183
|
+
};
|
|
6184
|
+
};
|
|
6185
|
+
};
|
|
6186
|
+
readonly additionalProperties: false;
|
|
6187
|
+
};
|
|
6070
6188
|
export declare const redoclyConfigSchema: {
|
|
6071
6189
|
readonly type: "object";
|
|
6072
6190
|
readonly properties: {
|
|
@@ -6235,6 +6353,110 @@ export declare const redoclyConfigSchema: {
|
|
|
6235
6353
|
readonly type: "string";
|
|
6236
6354
|
readonly pattern: "^https?://.*";
|
|
6237
6355
|
};
|
|
6356
|
+
readonly logoutReturnUrl: {
|
|
6357
|
+
readonly type: "string";
|
|
6358
|
+
readonly pattern: "^https?://.*";
|
|
6359
|
+
};
|
|
6360
|
+
readonly access: {
|
|
6361
|
+
readonly type: "object";
|
|
6362
|
+
readonly properties: {
|
|
6363
|
+
readonly requiresLogin: {
|
|
6364
|
+
readonly type: "boolean";
|
|
6365
|
+
};
|
|
6366
|
+
readonly logoutReturnUrl: {
|
|
6367
|
+
readonly type: "string";
|
|
6368
|
+
readonly pattern: "^https?://.*";
|
|
6369
|
+
};
|
|
6370
|
+
readonly residency: {
|
|
6371
|
+
readonly type: "string";
|
|
6372
|
+
readonly pattern: "^https?://.*";
|
|
6373
|
+
};
|
|
6374
|
+
readonly sso: {
|
|
6375
|
+
readonly oneOf: readonly [{
|
|
6376
|
+
readonly type: "array";
|
|
6377
|
+
readonly items: {
|
|
6378
|
+
readonly type: "string";
|
|
6379
|
+
readonly enum: readonly ["REDOCLY", "CORPORATE", "GUEST"];
|
|
6380
|
+
};
|
|
6381
|
+
readonly uniqueItems: true;
|
|
6382
|
+
}, {
|
|
6383
|
+
readonly type: "string";
|
|
6384
|
+
readonly enum: readonly ["REDOCLY", "CORPORATE", "GUEST"];
|
|
6385
|
+
}];
|
|
6386
|
+
};
|
|
6387
|
+
readonly rbac: {
|
|
6388
|
+
readonly type: "object";
|
|
6389
|
+
readonly properties: {
|
|
6390
|
+
readonly teamNamePatterns: {
|
|
6391
|
+
readonly type: "array";
|
|
6392
|
+
readonly items: {
|
|
6393
|
+
readonly type: "string";
|
|
6394
|
+
};
|
|
6395
|
+
};
|
|
6396
|
+
readonly teamFolders: {
|
|
6397
|
+
readonly type: "array";
|
|
6398
|
+
readonly items: {
|
|
6399
|
+
readonly type: "string";
|
|
6400
|
+
};
|
|
6401
|
+
};
|
|
6402
|
+
readonly teamFoldersBaseRoles: {
|
|
6403
|
+
readonly type: "object";
|
|
6404
|
+
readonly additionalProperties: {
|
|
6405
|
+
readonly type: "string";
|
|
6406
|
+
};
|
|
6407
|
+
};
|
|
6408
|
+
readonly cms: {
|
|
6409
|
+
readonly type: "object";
|
|
6410
|
+
readonly additionalProperties: {
|
|
6411
|
+
readonly type: "string";
|
|
6412
|
+
};
|
|
6413
|
+
};
|
|
6414
|
+
readonly reunite: {
|
|
6415
|
+
readonly type: "object";
|
|
6416
|
+
readonly additionalProperties: {
|
|
6417
|
+
readonly type: "string";
|
|
6418
|
+
};
|
|
6419
|
+
};
|
|
6420
|
+
readonly features: {
|
|
6421
|
+
readonly type: "object";
|
|
6422
|
+
readonly properties: {
|
|
6423
|
+
readonly aiSearch: {
|
|
6424
|
+
readonly type: "object";
|
|
6425
|
+
readonly additionalProperties: {
|
|
6426
|
+
readonly type: "string";
|
|
6427
|
+
};
|
|
6428
|
+
};
|
|
6429
|
+
};
|
|
6430
|
+
readonly additionalProperties: false;
|
|
6431
|
+
};
|
|
6432
|
+
readonly content: {
|
|
6433
|
+
readonly type: "object";
|
|
6434
|
+
readonly properties: {
|
|
6435
|
+
readonly '**': {
|
|
6436
|
+
readonly type: "object";
|
|
6437
|
+
readonly additionalProperties: {
|
|
6438
|
+
readonly type: "string";
|
|
6439
|
+
};
|
|
6440
|
+
};
|
|
6441
|
+
};
|
|
6442
|
+
readonly additionalProperties: {
|
|
6443
|
+
readonly type: "object";
|
|
6444
|
+
readonly additionalProperties: {
|
|
6445
|
+
readonly type: "string";
|
|
6446
|
+
};
|
|
6447
|
+
};
|
|
6448
|
+
};
|
|
6449
|
+
};
|
|
6450
|
+
readonly additionalProperties: {
|
|
6451
|
+
readonly type: "object";
|
|
6452
|
+
readonly additionalProperties: {
|
|
6453
|
+
readonly type: "string";
|
|
6454
|
+
};
|
|
6455
|
+
};
|
|
6456
|
+
};
|
|
6457
|
+
};
|
|
6458
|
+
readonly additionalProperties: false;
|
|
6459
|
+
};
|
|
6238
6460
|
readonly developerOnboarding: {
|
|
6239
6461
|
readonly type: "object";
|
|
6240
6462
|
readonly required: readonly ["adapters"];
|
|
@@ -11912,6 +12134,10 @@ export declare const redoclyConfigSchema: {
|
|
|
11912
12134
|
readonly type: "object";
|
|
11913
12135
|
readonly additionalProperties: true;
|
|
11914
12136
|
};
|
|
12137
|
+
readonly openrpc1Decorators: {
|
|
12138
|
+
readonly type: "object";
|
|
12139
|
+
readonly additionalProperties: true;
|
|
12140
|
+
};
|
|
11915
12141
|
readonly preprocessors: {
|
|
11916
12142
|
readonly type: "object";
|
|
11917
12143
|
readonly additionalProperties: true;
|
|
@@ -11948,6 +12174,10 @@ export declare const redoclyConfigSchema: {
|
|
|
11948
12174
|
readonly type: "object";
|
|
11949
12175
|
readonly additionalProperties: true;
|
|
11950
12176
|
};
|
|
12177
|
+
readonly openrpc1Preprocessors: {
|
|
12178
|
+
readonly type: "object";
|
|
12179
|
+
readonly additionalProperties: true;
|
|
12180
|
+
};
|
|
11951
12181
|
readonly rules: {
|
|
11952
12182
|
readonly type: "object";
|
|
11953
12183
|
readonly additionalProperties: {
|
|
@@ -12038,6 +12268,16 @@ export declare const redoclyConfigSchema: {
|
|
|
12038
12268
|
}];
|
|
12039
12269
|
};
|
|
12040
12270
|
};
|
|
12271
|
+
readonly openrpc1Rules: {
|
|
12272
|
+
readonly type: "object";
|
|
12273
|
+
readonly additionalProperties: {
|
|
12274
|
+
readonly oneOf: readonly [{
|
|
12275
|
+
readonly type: "string";
|
|
12276
|
+
}, {
|
|
12277
|
+
readonly type: "object";
|
|
12278
|
+
}];
|
|
12279
|
+
};
|
|
12280
|
+
};
|
|
12041
12281
|
readonly name: {
|
|
12042
12282
|
readonly type: "string";
|
|
12043
12283
|
};
|
|
@@ -12702,6 +12942,10 @@ export declare const redoclyConfigSchema: {
|
|
|
12702
12942
|
readonly type: "object";
|
|
12703
12943
|
readonly additionalProperties: true;
|
|
12704
12944
|
};
|
|
12945
|
+
readonly openrpc1Decorators: {
|
|
12946
|
+
readonly type: "object";
|
|
12947
|
+
readonly additionalProperties: true;
|
|
12948
|
+
};
|
|
12705
12949
|
readonly preprocessors: {
|
|
12706
12950
|
readonly type: "object";
|
|
12707
12951
|
readonly additionalProperties: true;
|
|
@@ -12738,6 +12982,10 @@ export declare const redoclyConfigSchema: {
|
|
|
12738
12982
|
readonly type: "object";
|
|
12739
12983
|
readonly additionalProperties: true;
|
|
12740
12984
|
};
|
|
12985
|
+
readonly openrpc1Preprocessors: {
|
|
12986
|
+
readonly type: "object";
|
|
12987
|
+
readonly additionalProperties: true;
|
|
12988
|
+
};
|
|
12741
12989
|
readonly rules: {
|
|
12742
12990
|
readonly type: "object";
|
|
12743
12991
|
readonly additionalProperties: {
|
|
@@ -12828,6 +13076,16 @@ export declare const redoclyConfigSchema: {
|
|
|
12828
13076
|
}];
|
|
12829
13077
|
};
|
|
12830
13078
|
};
|
|
13079
|
+
readonly openrpc1Rules: {
|
|
13080
|
+
readonly type: "object";
|
|
13081
|
+
readonly additionalProperties: {
|
|
13082
|
+
readonly oneOf: readonly [{
|
|
13083
|
+
readonly type: "string";
|
|
13084
|
+
}, {
|
|
13085
|
+
readonly type: "object";
|
|
13086
|
+
}];
|
|
13087
|
+
};
|
|
13088
|
+
};
|
|
12831
13089
|
readonly name: {
|
|
12832
13090
|
readonly type: "string";
|
|
12833
13091
|
};
|
|
@@ -18405,6 +18663,10 @@ export declare const redoclyConfigSchema: {
|
|
|
18405
18663
|
readonly type: "object";
|
|
18406
18664
|
readonly additionalProperties: true;
|
|
18407
18665
|
};
|
|
18666
|
+
readonly openrpc1Decorators: {
|
|
18667
|
+
readonly type: "object";
|
|
18668
|
+
readonly additionalProperties: true;
|
|
18669
|
+
};
|
|
18408
18670
|
readonly preprocessors: {
|
|
18409
18671
|
readonly type: "object";
|
|
18410
18672
|
readonly additionalProperties: true;
|
|
@@ -18441,6 +18703,10 @@ export declare const redoclyConfigSchema: {
|
|
|
18441
18703
|
readonly type: "object";
|
|
18442
18704
|
readonly additionalProperties: true;
|
|
18443
18705
|
};
|
|
18706
|
+
readonly openrpc1Preprocessors: {
|
|
18707
|
+
readonly type: "object";
|
|
18708
|
+
readonly additionalProperties: true;
|
|
18709
|
+
};
|
|
18444
18710
|
readonly rules: {
|
|
18445
18711
|
readonly type: "object";
|
|
18446
18712
|
readonly additionalProperties: {
|
|
@@ -18531,6 +18797,16 @@ export declare const redoclyConfigSchema: {
|
|
|
18531
18797
|
}];
|
|
18532
18798
|
};
|
|
18533
18799
|
};
|
|
18800
|
+
readonly openrpc1Rules: {
|
|
18801
|
+
readonly type: "object";
|
|
18802
|
+
readonly additionalProperties: {
|
|
18803
|
+
readonly oneOf: readonly [{
|
|
18804
|
+
readonly type: "string";
|
|
18805
|
+
}, {
|
|
18806
|
+
readonly type: "object";
|
|
18807
|
+
}];
|
|
18808
|
+
};
|
|
18809
|
+
};
|
|
18534
18810
|
readonly name: {
|
|
18535
18811
|
readonly type: "string";
|
|
18536
18812
|
};
|
|
@@ -19195,6 +19471,10 @@ export declare const redoclyConfigSchema: {
|
|
|
19195
19471
|
readonly type: "object";
|
|
19196
19472
|
readonly additionalProperties: true;
|
|
19197
19473
|
};
|
|
19474
|
+
readonly openrpc1Decorators: {
|
|
19475
|
+
readonly type: "object";
|
|
19476
|
+
readonly additionalProperties: true;
|
|
19477
|
+
};
|
|
19198
19478
|
readonly preprocessors: {
|
|
19199
19479
|
readonly type: "object";
|
|
19200
19480
|
readonly additionalProperties: true;
|
|
@@ -19231,6 +19511,10 @@ export declare const redoclyConfigSchema: {
|
|
|
19231
19511
|
readonly type: "object";
|
|
19232
19512
|
readonly additionalProperties: true;
|
|
19233
19513
|
};
|
|
19514
|
+
readonly openrpc1Preprocessors: {
|
|
19515
|
+
readonly type: "object";
|
|
19516
|
+
readonly additionalProperties: true;
|
|
19517
|
+
};
|
|
19234
19518
|
readonly rules: {
|
|
19235
19519
|
readonly type: "object";
|
|
19236
19520
|
readonly additionalProperties: {
|
|
@@ -19321,6 +19605,16 @@ export declare const redoclyConfigSchema: {
|
|
|
19321
19605
|
}];
|
|
19322
19606
|
};
|
|
19323
19607
|
};
|
|
19608
|
+
readonly openrpc1Rules: {
|
|
19609
|
+
readonly type: "object";
|
|
19610
|
+
readonly additionalProperties: {
|
|
19611
|
+
readonly oneOf: readonly [{
|
|
19612
|
+
readonly type: "string";
|
|
19613
|
+
}, {
|
|
19614
|
+
readonly type: "object";
|
|
19615
|
+
}];
|
|
19616
|
+
};
|
|
19617
|
+
};
|
|
19324
19618
|
readonly name: {
|
|
19325
19619
|
readonly type: "string";
|
|
19326
19620
|
};
|
|
@@ -19480,6 +19774,10 @@ export declare const redoclyConfigSchema: {
|
|
|
19480
19774
|
readonly type: "object";
|
|
19481
19775
|
readonly additionalProperties: true;
|
|
19482
19776
|
};
|
|
19777
|
+
readonly openrpc1Preprocessors: {
|
|
19778
|
+
readonly type: "object";
|
|
19779
|
+
readonly additionalProperties: true;
|
|
19780
|
+
};
|
|
19483
19781
|
readonly decorators: {
|
|
19484
19782
|
readonly type: "object";
|
|
19485
19783
|
readonly additionalProperties: true;
|
|
@@ -19516,6 +19814,10 @@ export declare const redoclyConfigSchema: {
|
|
|
19516
19814
|
readonly type: "object";
|
|
19517
19815
|
readonly additionalProperties: true;
|
|
19518
19816
|
};
|
|
19817
|
+
readonly openrpc1Decorators: {
|
|
19818
|
+
readonly type: "object";
|
|
19819
|
+
readonly additionalProperties: true;
|
|
19820
|
+
};
|
|
19519
19821
|
readonly rules: {
|
|
19520
19822
|
readonly type: "object";
|
|
19521
19823
|
readonly additionalProperties: {
|
|
@@ -19606,6 +19908,16 @@ export declare const redoclyConfigSchema: {
|
|
|
19606
19908
|
}];
|
|
19607
19909
|
};
|
|
19608
19910
|
};
|
|
19911
|
+
readonly openrpc1Rules: {
|
|
19912
|
+
readonly type: "object";
|
|
19913
|
+
readonly additionalProperties: {
|
|
19914
|
+
readonly oneOf: readonly [{
|
|
19915
|
+
readonly type: "string";
|
|
19916
|
+
}, {
|
|
19917
|
+
readonly type: "object";
|
|
19918
|
+
}];
|
|
19919
|
+
};
|
|
19920
|
+
};
|
|
19609
19921
|
/**
|
|
19610
19922
|
* @deprecated Should use `plugins` instead
|
|
19611
19923
|
*/
|
|
@@ -19953,6 +20265,10 @@ export declare const redoclyConfigSchema: {
|
|
|
19953
20265
|
readonly type: "object";
|
|
19954
20266
|
readonly additionalProperties: true;
|
|
19955
20267
|
};
|
|
20268
|
+
readonly openrpc1Decorators: {
|
|
20269
|
+
readonly type: "object";
|
|
20270
|
+
readonly additionalProperties: true;
|
|
20271
|
+
};
|
|
19956
20272
|
readonly preprocessors: {
|
|
19957
20273
|
readonly type: "object";
|
|
19958
20274
|
readonly additionalProperties: true;
|
|
@@ -19989,6 +20305,10 @@ export declare const redoclyConfigSchema: {
|
|
|
19989
20305
|
readonly type: "object";
|
|
19990
20306
|
readonly additionalProperties: true;
|
|
19991
20307
|
};
|
|
20308
|
+
readonly openrpc1Preprocessors: {
|
|
20309
|
+
readonly type: "object";
|
|
20310
|
+
readonly additionalProperties: true;
|
|
20311
|
+
};
|
|
19992
20312
|
readonly rules: {
|
|
19993
20313
|
readonly type: "object";
|
|
19994
20314
|
readonly additionalProperties: {
|
|
@@ -20079,6 +20399,16 @@ export declare const redoclyConfigSchema: {
|
|
|
20079
20399
|
}];
|
|
20080
20400
|
};
|
|
20081
20401
|
};
|
|
20402
|
+
readonly openrpc1Rules: {
|
|
20403
|
+
readonly type: "object";
|
|
20404
|
+
readonly additionalProperties: {
|
|
20405
|
+
readonly oneOf: readonly [{
|
|
20406
|
+
readonly type: "string";
|
|
20407
|
+
}, {
|
|
20408
|
+
readonly type: "object";
|
|
20409
|
+
}];
|
|
20410
|
+
};
|
|
20411
|
+
};
|
|
20082
20412
|
readonly root: {
|
|
20083
20413
|
readonly type: "string";
|
|
20084
20414
|
};
|
|
@@ -24850,6 +25180,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24850
25180
|
};
|
|
24851
25181
|
type: "object";
|
|
24852
25182
|
};
|
|
25183
|
+
openrpc1Rules: {
|
|
25184
|
+
additionalProperties: {
|
|
25185
|
+
oneOf: ({
|
|
25186
|
+
type: "string";
|
|
25187
|
+
} | {
|
|
25188
|
+
type: "object";
|
|
25189
|
+
})[];
|
|
25190
|
+
};
|
|
25191
|
+
type: "object";
|
|
25192
|
+
};
|
|
24853
25193
|
preprocessors: {
|
|
24854
25194
|
additionalProperties: true;
|
|
24855
25195
|
type: "object";
|
|
@@ -24886,6 +25226,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24886
25226
|
additionalProperties: true;
|
|
24887
25227
|
type: "object";
|
|
24888
25228
|
};
|
|
25229
|
+
openrpc1Preprocessors: {
|
|
25230
|
+
additionalProperties: true;
|
|
25231
|
+
type: "object";
|
|
25232
|
+
};
|
|
24889
25233
|
decorators: {
|
|
24890
25234
|
additionalProperties: true;
|
|
24891
25235
|
type: "object";
|
|
@@ -24922,6 +25266,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24922
25266
|
additionalProperties: true;
|
|
24923
25267
|
type: "object";
|
|
24924
25268
|
};
|
|
25269
|
+
openrpc1Decorators: {
|
|
25270
|
+
additionalProperties: true;
|
|
25271
|
+
type: "object";
|
|
25272
|
+
};
|
|
24925
25273
|
extends: {
|
|
24926
25274
|
items: {
|
|
24927
25275
|
type: "string";
|
|
@@ -28553,6 +28901,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28553
28901
|
};
|
|
28554
28902
|
type: "object";
|
|
28555
28903
|
};
|
|
28904
|
+
openrpc1Rules: {
|
|
28905
|
+
additionalProperties: {
|
|
28906
|
+
oneOf: ({
|
|
28907
|
+
type: "string";
|
|
28908
|
+
} | {
|
|
28909
|
+
type: "object";
|
|
28910
|
+
})[];
|
|
28911
|
+
};
|
|
28912
|
+
type: "object";
|
|
28913
|
+
};
|
|
28556
28914
|
preprocessors: {
|
|
28557
28915
|
additionalProperties: true;
|
|
28558
28916
|
type: "object";
|
|
@@ -28589,6 +28947,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28589
28947
|
additionalProperties: true;
|
|
28590
28948
|
type: "object";
|
|
28591
28949
|
};
|
|
28950
|
+
openrpc1Preprocessors: {
|
|
28951
|
+
additionalProperties: true;
|
|
28952
|
+
type: "object";
|
|
28953
|
+
};
|
|
28592
28954
|
decorators: {
|
|
28593
28955
|
additionalProperties: true;
|
|
28594
28956
|
type: "object";
|
|
@@ -28625,6 +28987,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28625
28987
|
additionalProperties: true;
|
|
28626
28988
|
type: "object";
|
|
28627
28989
|
};
|
|
28990
|
+
openrpc1Decorators: {
|
|
28991
|
+
additionalProperties: true;
|
|
28992
|
+
type: "object";
|
|
28993
|
+
};
|
|
28628
28994
|
extends: {
|
|
28629
28995
|
items: {
|
|
28630
28996
|
type: "string";
|
|
@@ -28904,6 +29270,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28904
29270
|
};
|
|
28905
29271
|
type: "object";
|
|
28906
29272
|
};
|
|
29273
|
+
openrpc1Rules: {
|
|
29274
|
+
additionalProperties: {
|
|
29275
|
+
oneOf: ({
|
|
29276
|
+
type: "string";
|
|
29277
|
+
} | {
|
|
29278
|
+
type: "object";
|
|
29279
|
+
})[];
|
|
29280
|
+
};
|
|
29281
|
+
type: "object";
|
|
29282
|
+
};
|
|
28907
29283
|
preprocessors: {
|
|
28908
29284
|
additionalProperties: true;
|
|
28909
29285
|
type: "object";
|
|
@@ -28940,6 +29316,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28940
29316
|
additionalProperties: true;
|
|
28941
29317
|
type: "object";
|
|
28942
29318
|
};
|
|
29319
|
+
openrpc1Preprocessors: {
|
|
29320
|
+
additionalProperties: true;
|
|
29321
|
+
type: "object";
|
|
29322
|
+
};
|
|
28943
29323
|
decorators: {
|
|
28944
29324
|
additionalProperties: true;
|
|
28945
29325
|
type: "object";
|
|
@@ -28976,6 +29356,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28976
29356
|
additionalProperties: true;
|
|
28977
29357
|
type: "object";
|
|
28978
29358
|
};
|
|
29359
|
+
openrpc1Decorators: {
|
|
29360
|
+
additionalProperties: true;
|
|
29361
|
+
type: "object";
|
|
29362
|
+
};
|
|
28979
29363
|
extends: {
|
|
28980
29364
|
items: {
|
|
28981
29365
|
type: "string";
|
|
@@ -31509,6 +31893,110 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
31509
31893
|
type: "string";
|
|
31510
31894
|
pattern: "^https?://.*";
|
|
31511
31895
|
};
|
|
31896
|
+
logoutReturnUrl: {
|
|
31897
|
+
type: "string";
|
|
31898
|
+
pattern: "^https?://.*";
|
|
31899
|
+
};
|
|
31900
|
+
access: {
|
|
31901
|
+
properties: {
|
|
31902
|
+
sso: {
|
|
31903
|
+
oneOf: ({
|
|
31904
|
+
items: {
|
|
31905
|
+
enum: ("REDOCLY" | "CORPORATE" | "GUEST")[];
|
|
31906
|
+
type: "string";
|
|
31907
|
+
};
|
|
31908
|
+
type: "array";
|
|
31909
|
+
uniqueItems: true;
|
|
31910
|
+
} | {
|
|
31911
|
+
enum: ("REDOCLY" | "CORPORATE" | "GUEST")[];
|
|
31912
|
+
type: "string";
|
|
31913
|
+
})[];
|
|
31914
|
+
};
|
|
31915
|
+
residency: {
|
|
31916
|
+
type: "string";
|
|
31917
|
+
pattern: "^https?://.*";
|
|
31918
|
+
};
|
|
31919
|
+
logoutReturnUrl: {
|
|
31920
|
+
type: "string";
|
|
31921
|
+
pattern: "^https?://.*";
|
|
31922
|
+
};
|
|
31923
|
+
rbac: {
|
|
31924
|
+
properties: {
|
|
31925
|
+
content: {
|
|
31926
|
+
properties: {
|
|
31927
|
+
"**": {
|
|
31928
|
+
additionalProperties: {
|
|
31929
|
+
type: "string";
|
|
31930
|
+
};
|
|
31931
|
+
type: "object";
|
|
31932
|
+
};
|
|
31933
|
+
};
|
|
31934
|
+
additionalProperties: {
|
|
31935
|
+
additionalProperties: {
|
|
31936
|
+
type: "string";
|
|
31937
|
+
};
|
|
31938
|
+
type: "object";
|
|
31939
|
+
};
|
|
31940
|
+
type: "object";
|
|
31941
|
+
};
|
|
31942
|
+
reunite: {
|
|
31943
|
+
additionalProperties: {
|
|
31944
|
+
type: "string";
|
|
31945
|
+
};
|
|
31946
|
+
type: "object";
|
|
31947
|
+
};
|
|
31948
|
+
teamNamePatterns: {
|
|
31949
|
+
items: {
|
|
31950
|
+
type: "string";
|
|
31951
|
+
};
|
|
31952
|
+
type: "array";
|
|
31953
|
+
};
|
|
31954
|
+
teamFolders: {
|
|
31955
|
+
items: {
|
|
31956
|
+
type: "string";
|
|
31957
|
+
};
|
|
31958
|
+
type: "array";
|
|
31959
|
+
};
|
|
31960
|
+
teamFoldersBaseRoles: {
|
|
31961
|
+
additionalProperties: {
|
|
31962
|
+
type: "string";
|
|
31963
|
+
};
|
|
31964
|
+
type: "object";
|
|
31965
|
+
};
|
|
31966
|
+
cms: {
|
|
31967
|
+
additionalProperties: {
|
|
31968
|
+
type: "string";
|
|
31969
|
+
};
|
|
31970
|
+
type: "object";
|
|
31971
|
+
};
|
|
31972
|
+
features: {
|
|
31973
|
+
properties: {
|
|
31974
|
+
aiSearch: {
|
|
31975
|
+
additionalProperties: {
|
|
31976
|
+
type: "string";
|
|
31977
|
+
};
|
|
31978
|
+
type: "object";
|
|
31979
|
+
};
|
|
31980
|
+
};
|
|
31981
|
+
additionalProperties: false;
|
|
31982
|
+
type: "object";
|
|
31983
|
+
};
|
|
31984
|
+
};
|
|
31985
|
+
additionalProperties: {
|
|
31986
|
+
additionalProperties: {
|
|
31987
|
+
type: "string";
|
|
31988
|
+
};
|
|
31989
|
+
type: "object";
|
|
31990
|
+
};
|
|
31991
|
+
type: "object";
|
|
31992
|
+
};
|
|
31993
|
+
requiresLogin: {
|
|
31994
|
+
type: "boolean";
|
|
31995
|
+
};
|
|
31996
|
+
};
|
|
31997
|
+
additionalProperties: false;
|
|
31998
|
+
type: "object";
|
|
31999
|
+
};
|
|
31512
32000
|
developerOnboarding: {
|
|
31513
32001
|
properties: {
|
|
31514
32002
|
adapters: {
|
|
@@ -34424,6 +34912,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
34424
34912
|
};
|
|
34425
34913
|
type: "object";
|
|
34426
34914
|
};
|
|
34915
|
+
openrpc1Rules: {
|
|
34916
|
+
additionalProperties: {
|
|
34917
|
+
oneOf: ({
|
|
34918
|
+
type: "string";
|
|
34919
|
+
} | {
|
|
34920
|
+
type: "object";
|
|
34921
|
+
})[];
|
|
34922
|
+
};
|
|
34923
|
+
type: "object";
|
|
34924
|
+
};
|
|
34427
34925
|
preprocessors: {
|
|
34428
34926
|
additionalProperties: true;
|
|
34429
34927
|
type: "object";
|
|
@@ -34460,6 +34958,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
34460
34958
|
additionalProperties: true;
|
|
34461
34959
|
type: "object";
|
|
34462
34960
|
};
|
|
34961
|
+
openrpc1Preprocessors: {
|
|
34962
|
+
additionalProperties: true;
|
|
34963
|
+
type: "object";
|
|
34964
|
+
};
|
|
34463
34965
|
decorators: {
|
|
34464
34966
|
additionalProperties: true;
|
|
34465
34967
|
type: "object";
|
|
@@ -34496,6 +34998,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
34496
34998
|
additionalProperties: true;
|
|
34497
34999
|
type: "object";
|
|
34498
35000
|
};
|
|
35001
|
+
openrpc1Decorators: {
|
|
35002
|
+
additionalProperties: true;
|
|
35003
|
+
type: "object";
|
|
35004
|
+
};
|
|
34499
35005
|
extends: {
|
|
34500
35006
|
items: {
|
|
34501
35007
|
type: "string";
|
|
@@ -34842,6 +35348,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
34842
35348
|
};
|
|
34843
35349
|
type: "object";
|
|
34844
35350
|
};
|
|
35351
|
+
openrpc1Rules: {
|
|
35352
|
+
additionalProperties: {
|
|
35353
|
+
oneOf: ({
|
|
35354
|
+
type: "string";
|
|
35355
|
+
} | {
|
|
35356
|
+
type: "object";
|
|
35357
|
+
})[];
|
|
35358
|
+
};
|
|
35359
|
+
type: "object";
|
|
35360
|
+
};
|
|
34845
35361
|
preprocessors: {
|
|
34846
35362
|
additionalProperties: true;
|
|
34847
35363
|
type: "object";
|
|
@@ -34878,6 +35394,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
34878
35394
|
additionalProperties: true;
|
|
34879
35395
|
type: "object";
|
|
34880
35396
|
};
|
|
35397
|
+
openrpc1Preprocessors: {
|
|
35398
|
+
additionalProperties: true;
|
|
35399
|
+
type: "object";
|
|
35400
|
+
};
|
|
34881
35401
|
decorators: {
|
|
34882
35402
|
additionalProperties: true;
|
|
34883
35403
|
type: "object";
|
|
@@ -34914,6 +35434,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
34914
35434
|
additionalProperties: true;
|
|
34915
35435
|
type: "object";
|
|
34916
35436
|
};
|
|
35437
|
+
openrpc1Decorators: {
|
|
35438
|
+
additionalProperties: true;
|
|
35439
|
+
type: "object";
|
|
35440
|
+
};
|
|
34917
35441
|
extends: {
|
|
34918
35442
|
items: {
|
|
34919
35443
|
type: "string";
|
|
@@ -35398,6 +35922,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
35398
35922
|
};
|
|
35399
35923
|
type: "object";
|
|
35400
35924
|
};
|
|
35925
|
+
openrpc1Rules: {
|
|
35926
|
+
additionalProperties: {
|
|
35927
|
+
oneOf: ({
|
|
35928
|
+
type: "string";
|
|
35929
|
+
} | {
|
|
35930
|
+
type: "object";
|
|
35931
|
+
})[];
|
|
35932
|
+
};
|
|
35933
|
+
type: "object";
|
|
35934
|
+
};
|
|
35401
35935
|
preprocessors: {
|
|
35402
35936
|
additionalProperties: true;
|
|
35403
35937
|
type: "object";
|
|
@@ -35434,6 +35968,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
35434
35968
|
additionalProperties: true;
|
|
35435
35969
|
type: "object";
|
|
35436
35970
|
};
|
|
35971
|
+
openrpc1Preprocessors: {
|
|
35972
|
+
additionalProperties: true;
|
|
35973
|
+
type: "object";
|
|
35974
|
+
};
|
|
35437
35975
|
decorators: {
|
|
35438
35976
|
additionalProperties: true;
|
|
35439
35977
|
type: "object";
|
|
@@ -35470,6 +36008,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
35470
36008
|
additionalProperties: true;
|
|
35471
36009
|
type: "object";
|
|
35472
36010
|
};
|
|
36011
|
+
openrpc1Decorators: {
|
|
36012
|
+
additionalProperties: true;
|
|
36013
|
+
type: "object";
|
|
36014
|
+
};
|
|
35473
36015
|
extends: {
|
|
35474
36016
|
items: {
|
|
35475
36017
|
type: "string";
|
|
@@ -37530,6 +38072,110 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
37530
38072
|
readonly type: "string";
|
|
37531
38073
|
readonly pattern: "^https?://.*";
|
|
37532
38074
|
};
|
|
38075
|
+
readonly logoutReturnUrl: {
|
|
38076
|
+
readonly type: "string";
|
|
38077
|
+
readonly pattern: "^https?://.*";
|
|
38078
|
+
};
|
|
38079
|
+
readonly access: {
|
|
38080
|
+
readonly type: "object";
|
|
38081
|
+
readonly properties: {
|
|
38082
|
+
readonly requiresLogin: {
|
|
38083
|
+
readonly type: "boolean";
|
|
38084
|
+
};
|
|
38085
|
+
readonly logoutReturnUrl: {
|
|
38086
|
+
readonly type: "string";
|
|
38087
|
+
readonly pattern: "^https?://.*";
|
|
38088
|
+
};
|
|
38089
|
+
readonly residency: {
|
|
38090
|
+
readonly type: "string";
|
|
38091
|
+
readonly pattern: "^https?://.*";
|
|
38092
|
+
};
|
|
38093
|
+
readonly sso: {
|
|
38094
|
+
readonly oneOf: readonly [{
|
|
38095
|
+
readonly type: "array";
|
|
38096
|
+
readonly items: {
|
|
38097
|
+
readonly type: "string";
|
|
38098
|
+
readonly enum: readonly ["REDOCLY", "CORPORATE", "GUEST"];
|
|
38099
|
+
};
|
|
38100
|
+
readonly uniqueItems: true;
|
|
38101
|
+
}, {
|
|
38102
|
+
readonly type: "string";
|
|
38103
|
+
readonly enum: readonly ["REDOCLY", "CORPORATE", "GUEST"];
|
|
38104
|
+
}];
|
|
38105
|
+
};
|
|
38106
|
+
readonly rbac: {
|
|
38107
|
+
readonly type: "object";
|
|
38108
|
+
readonly properties: {
|
|
38109
|
+
readonly teamNamePatterns: {
|
|
38110
|
+
readonly type: "array";
|
|
38111
|
+
readonly items: {
|
|
38112
|
+
readonly type: "string";
|
|
38113
|
+
};
|
|
38114
|
+
};
|
|
38115
|
+
readonly teamFolders: {
|
|
38116
|
+
readonly type: "array";
|
|
38117
|
+
readonly items: {
|
|
38118
|
+
readonly type: "string";
|
|
38119
|
+
};
|
|
38120
|
+
};
|
|
38121
|
+
readonly teamFoldersBaseRoles: {
|
|
38122
|
+
readonly type: "object";
|
|
38123
|
+
readonly additionalProperties: {
|
|
38124
|
+
readonly type: "string";
|
|
38125
|
+
};
|
|
38126
|
+
};
|
|
38127
|
+
readonly cms: {
|
|
38128
|
+
readonly type: "object";
|
|
38129
|
+
readonly additionalProperties: {
|
|
38130
|
+
readonly type: "string";
|
|
38131
|
+
};
|
|
38132
|
+
};
|
|
38133
|
+
readonly reunite: {
|
|
38134
|
+
readonly type: "object";
|
|
38135
|
+
readonly additionalProperties: {
|
|
38136
|
+
readonly type: "string";
|
|
38137
|
+
};
|
|
38138
|
+
};
|
|
38139
|
+
readonly features: {
|
|
38140
|
+
readonly type: "object";
|
|
38141
|
+
readonly properties: {
|
|
38142
|
+
readonly aiSearch: {
|
|
38143
|
+
readonly type: "object";
|
|
38144
|
+
readonly additionalProperties: {
|
|
38145
|
+
readonly type: "string";
|
|
38146
|
+
};
|
|
38147
|
+
};
|
|
38148
|
+
};
|
|
38149
|
+
readonly additionalProperties: false;
|
|
38150
|
+
};
|
|
38151
|
+
readonly content: {
|
|
38152
|
+
readonly type: "object";
|
|
38153
|
+
readonly properties: {
|
|
38154
|
+
readonly '**': {
|
|
38155
|
+
readonly type: "object";
|
|
38156
|
+
readonly additionalProperties: {
|
|
38157
|
+
readonly type: "string";
|
|
38158
|
+
};
|
|
38159
|
+
};
|
|
38160
|
+
};
|
|
38161
|
+
readonly additionalProperties: {
|
|
38162
|
+
readonly type: "object";
|
|
38163
|
+
readonly additionalProperties: {
|
|
38164
|
+
readonly type: "string";
|
|
38165
|
+
};
|
|
38166
|
+
};
|
|
38167
|
+
};
|
|
38168
|
+
};
|
|
38169
|
+
readonly additionalProperties: {
|
|
38170
|
+
readonly type: "object";
|
|
38171
|
+
readonly additionalProperties: {
|
|
38172
|
+
readonly type: "string";
|
|
38173
|
+
};
|
|
38174
|
+
};
|
|
38175
|
+
};
|
|
38176
|
+
};
|
|
38177
|
+
readonly additionalProperties: false;
|
|
38178
|
+
};
|
|
37533
38179
|
readonly developerOnboarding: {
|
|
37534
38180
|
readonly type: "object";
|
|
37535
38181
|
readonly required: readonly ["adapters"];
|
|
@@ -43207,6 +43853,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
43207
43853
|
readonly type: "object";
|
|
43208
43854
|
readonly additionalProperties: true;
|
|
43209
43855
|
};
|
|
43856
|
+
readonly openrpc1Decorators: {
|
|
43857
|
+
readonly type: "object";
|
|
43858
|
+
readonly additionalProperties: true;
|
|
43859
|
+
};
|
|
43210
43860
|
readonly preprocessors: {
|
|
43211
43861
|
readonly type: "object";
|
|
43212
43862
|
readonly additionalProperties: true;
|
|
@@ -43243,6 +43893,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
43243
43893
|
readonly type: "object";
|
|
43244
43894
|
readonly additionalProperties: true;
|
|
43245
43895
|
};
|
|
43896
|
+
readonly openrpc1Preprocessors: {
|
|
43897
|
+
readonly type: "object";
|
|
43898
|
+
readonly additionalProperties: true;
|
|
43899
|
+
};
|
|
43246
43900
|
readonly rules: {
|
|
43247
43901
|
readonly type: "object";
|
|
43248
43902
|
readonly additionalProperties: {
|
|
@@ -43333,6 +43987,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
43333
43987
|
}];
|
|
43334
43988
|
};
|
|
43335
43989
|
};
|
|
43990
|
+
readonly openrpc1Rules: {
|
|
43991
|
+
readonly type: "object";
|
|
43992
|
+
readonly additionalProperties: {
|
|
43993
|
+
readonly oneOf: readonly [{
|
|
43994
|
+
readonly type: "string";
|
|
43995
|
+
}, {
|
|
43996
|
+
readonly type: "object";
|
|
43997
|
+
}];
|
|
43998
|
+
};
|
|
43999
|
+
};
|
|
43336
44000
|
readonly name: {
|
|
43337
44001
|
readonly type: "string";
|
|
43338
44002
|
};
|
|
@@ -43997,6 +44661,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
43997
44661
|
readonly type: "object";
|
|
43998
44662
|
readonly additionalProperties: true;
|
|
43999
44663
|
};
|
|
44664
|
+
readonly openrpc1Decorators: {
|
|
44665
|
+
readonly type: "object";
|
|
44666
|
+
readonly additionalProperties: true;
|
|
44667
|
+
};
|
|
44000
44668
|
readonly preprocessors: {
|
|
44001
44669
|
readonly type: "object";
|
|
44002
44670
|
readonly additionalProperties: true;
|
|
@@ -44033,6 +44701,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
44033
44701
|
readonly type: "object";
|
|
44034
44702
|
readonly additionalProperties: true;
|
|
44035
44703
|
};
|
|
44704
|
+
readonly openrpc1Preprocessors: {
|
|
44705
|
+
readonly type: "object";
|
|
44706
|
+
readonly additionalProperties: true;
|
|
44707
|
+
};
|
|
44036
44708
|
readonly rules: {
|
|
44037
44709
|
readonly type: "object";
|
|
44038
44710
|
readonly additionalProperties: {
|
|
@@ -44123,6 +44795,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
44123
44795
|
}];
|
|
44124
44796
|
};
|
|
44125
44797
|
};
|
|
44798
|
+
readonly openrpc1Rules: {
|
|
44799
|
+
readonly type: "object";
|
|
44800
|
+
readonly additionalProperties: {
|
|
44801
|
+
readonly oneOf: readonly [{
|
|
44802
|
+
readonly type: "string";
|
|
44803
|
+
}, {
|
|
44804
|
+
readonly type: "object";
|
|
44805
|
+
}];
|
|
44806
|
+
};
|
|
44807
|
+
};
|
|
44126
44808
|
readonly name: {
|
|
44127
44809
|
readonly type: "string";
|
|
44128
44810
|
};
|
|
@@ -49700,6 +50382,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
49700
50382
|
readonly type: "object";
|
|
49701
50383
|
readonly additionalProperties: true;
|
|
49702
50384
|
};
|
|
50385
|
+
readonly openrpc1Decorators: {
|
|
50386
|
+
readonly type: "object";
|
|
50387
|
+
readonly additionalProperties: true;
|
|
50388
|
+
};
|
|
49703
50389
|
readonly preprocessors: {
|
|
49704
50390
|
readonly type: "object";
|
|
49705
50391
|
readonly additionalProperties: true;
|
|
@@ -49736,6 +50422,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
49736
50422
|
readonly type: "object";
|
|
49737
50423
|
readonly additionalProperties: true;
|
|
49738
50424
|
};
|
|
50425
|
+
readonly openrpc1Preprocessors: {
|
|
50426
|
+
readonly type: "object";
|
|
50427
|
+
readonly additionalProperties: true;
|
|
50428
|
+
};
|
|
49739
50429
|
readonly rules: {
|
|
49740
50430
|
readonly type: "object";
|
|
49741
50431
|
readonly additionalProperties: {
|
|
@@ -49826,6 +50516,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
49826
50516
|
}];
|
|
49827
50517
|
};
|
|
49828
50518
|
};
|
|
50519
|
+
readonly openrpc1Rules: {
|
|
50520
|
+
readonly type: "object";
|
|
50521
|
+
readonly additionalProperties: {
|
|
50522
|
+
readonly oneOf: readonly [{
|
|
50523
|
+
readonly type: "string";
|
|
50524
|
+
}, {
|
|
50525
|
+
readonly type: "object";
|
|
50526
|
+
}];
|
|
50527
|
+
};
|
|
50528
|
+
};
|
|
49829
50529
|
readonly name: {
|
|
49830
50530
|
readonly type: "string";
|
|
49831
50531
|
};
|
|
@@ -50490,6 +51190,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
50490
51190
|
readonly type: "object";
|
|
50491
51191
|
readonly additionalProperties: true;
|
|
50492
51192
|
};
|
|
51193
|
+
readonly openrpc1Decorators: {
|
|
51194
|
+
readonly type: "object";
|
|
51195
|
+
readonly additionalProperties: true;
|
|
51196
|
+
};
|
|
50493
51197
|
readonly preprocessors: {
|
|
50494
51198
|
readonly type: "object";
|
|
50495
51199
|
readonly additionalProperties: true;
|
|
@@ -50526,6 +51230,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
50526
51230
|
readonly type: "object";
|
|
50527
51231
|
readonly additionalProperties: true;
|
|
50528
51232
|
};
|
|
51233
|
+
readonly openrpc1Preprocessors: {
|
|
51234
|
+
readonly type: "object";
|
|
51235
|
+
readonly additionalProperties: true;
|
|
51236
|
+
};
|
|
50529
51237
|
readonly rules: {
|
|
50530
51238
|
readonly type: "object";
|
|
50531
51239
|
readonly additionalProperties: {
|
|
@@ -50616,6 +51324,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
50616
51324
|
}];
|
|
50617
51325
|
};
|
|
50618
51326
|
};
|
|
51327
|
+
readonly openrpc1Rules: {
|
|
51328
|
+
readonly type: "object";
|
|
51329
|
+
readonly additionalProperties: {
|
|
51330
|
+
readonly oneOf: readonly [{
|
|
51331
|
+
readonly type: "string";
|
|
51332
|
+
}, {
|
|
51333
|
+
readonly type: "object";
|
|
51334
|
+
}];
|
|
51335
|
+
};
|
|
51336
|
+
};
|
|
50619
51337
|
readonly name: {
|
|
50620
51338
|
readonly type: "string";
|
|
50621
51339
|
};
|
|
@@ -50775,6 +51493,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
50775
51493
|
readonly type: "object";
|
|
50776
51494
|
readonly additionalProperties: true;
|
|
50777
51495
|
};
|
|
51496
|
+
readonly openrpc1Preprocessors: {
|
|
51497
|
+
readonly type: "object";
|
|
51498
|
+
readonly additionalProperties: true;
|
|
51499
|
+
};
|
|
50778
51500
|
readonly decorators: {
|
|
50779
51501
|
readonly type: "object";
|
|
50780
51502
|
readonly additionalProperties: true;
|
|
@@ -50811,6 +51533,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
50811
51533
|
readonly type: "object";
|
|
50812
51534
|
readonly additionalProperties: true;
|
|
50813
51535
|
};
|
|
51536
|
+
readonly openrpc1Decorators: {
|
|
51537
|
+
readonly type: "object";
|
|
51538
|
+
readonly additionalProperties: true;
|
|
51539
|
+
};
|
|
50814
51540
|
readonly rules: {
|
|
50815
51541
|
readonly type: "object";
|
|
50816
51542
|
readonly additionalProperties: {
|
|
@@ -50901,6 +51627,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
50901
51627
|
}];
|
|
50902
51628
|
};
|
|
50903
51629
|
};
|
|
51630
|
+
readonly openrpc1Rules: {
|
|
51631
|
+
readonly type: "object";
|
|
51632
|
+
readonly additionalProperties: {
|
|
51633
|
+
readonly oneOf: readonly [{
|
|
51634
|
+
readonly type: "string";
|
|
51635
|
+
}, {
|
|
51636
|
+
readonly type: "object";
|
|
51637
|
+
}];
|
|
51638
|
+
};
|
|
51639
|
+
};
|
|
50904
51640
|
/**
|
|
50905
51641
|
* @deprecated Should use `plugins` instead
|
|
50906
51642
|
*/
|
|
@@ -51248,6 +51984,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
51248
51984
|
readonly type: "object";
|
|
51249
51985
|
readonly additionalProperties: true;
|
|
51250
51986
|
};
|
|
51987
|
+
readonly openrpc1Decorators: {
|
|
51988
|
+
readonly type: "object";
|
|
51989
|
+
readonly additionalProperties: true;
|
|
51990
|
+
};
|
|
51251
51991
|
readonly preprocessors: {
|
|
51252
51992
|
readonly type: "object";
|
|
51253
51993
|
readonly additionalProperties: true;
|
|
@@ -51284,6 +52024,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
51284
52024
|
readonly type: "object";
|
|
51285
52025
|
readonly additionalProperties: true;
|
|
51286
52026
|
};
|
|
52027
|
+
readonly openrpc1Preprocessors: {
|
|
52028
|
+
readonly type: "object";
|
|
52029
|
+
readonly additionalProperties: true;
|
|
52030
|
+
};
|
|
51287
52031
|
readonly rules: {
|
|
51288
52032
|
readonly type: "object";
|
|
51289
52033
|
readonly additionalProperties: {
|
|
@@ -51374,6 +52118,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
51374
52118
|
}];
|
|
51375
52119
|
};
|
|
51376
52120
|
};
|
|
52121
|
+
readonly openrpc1Rules: {
|
|
52122
|
+
readonly type: "object";
|
|
52123
|
+
readonly additionalProperties: {
|
|
52124
|
+
readonly oneOf: readonly [{
|
|
52125
|
+
readonly type: "string";
|
|
52126
|
+
}, {
|
|
52127
|
+
readonly type: "object";
|
|
52128
|
+
}];
|
|
52129
|
+
};
|
|
52130
|
+
};
|
|
51377
52131
|
readonly root: {
|
|
51378
52132
|
readonly type: "string";
|
|
51379
52133
|
};
|