@redocly/config 0.41.3 → 0.42.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.
@@ -500,6 +500,12 @@ export declare const bannerColorSchema: {
500
500
  readonly enum: readonly ["info", "success", "warning", "error"];
501
501
  readonly default: "info";
502
502
  };
503
+ export declare const rbacScopeItemsSchema: {
504
+ readonly type: "object";
505
+ readonly additionalProperties: {
506
+ readonly type: "string";
507
+ };
508
+ };
503
509
  export declare const bannerConfigSchema: {
504
510
  readonly type: "object";
505
511
  readonly properties: {
@@ -518,6 +524,12 @@ export declare const bannerConfigSchema: {
518
524
  readonly enum: readonly ["info", "success", "warning", "error"];
519
525
  readonly default: "info";
520
526
  };
527
+ readonly rbac: {
528
+ readonly type: "object";
529
+ readonly additionalProperties: {
530
+ readonly type: "string";
531
+ };
532
+ };
521
533
  };
522
534
  readonly required: readonly ["content"];
523
535
  readonly additionalProperties: false;
@@ -542,6 +554,12 @@ export declare const bannersConfigSchema: {
542
554
  readonly enum: readonly ["info", "success", "warning", "error"];
543
555
  readonly default: "info";
544
556
  };
557
+ readonly rbac: {
558
+ readonly type: "object";
559
+ readonly additionalProperties: {
560
+ readonly type: "string";
561
+ };
562
+ };
545
563
  };
546
564
  readonly required: readonly ["content"];
547
565
  readonly additionalProperties: false;
@@ -5539,11 +5557,161 @@ export declare const apiFunctionsConfigSchema: {
5539
5557
  };
5540
5558
  readonly additionalProperties: false;
5541
5559
  };
5542
- export declare const rbacScopeItemsSchema: {
5560
+ export declare const rbacEntitiesCatalogConfigSchema: {
5543
5561
  readonly type: "object";
5544
- readonly additionalProperties: {
5545
- readonly type: "string";
5562
+ readonly properties: {
5563
+ readonly catalogs: {
5564
+ readonly type: "object";
5565
+ readonly properties: {
5566
+ readonly all: {
5567
+ readonly type: "object";
5568
+ readonly additionalProperties: {
5569
+ readonly type: "string";
5570
+ };
5571
+ };
5572
+ readonly services: {
5573
+ readonly type: "object";
5574
+ readonly additionalProperties: {
5575
+ readonly type: "string";
5576
+ };
5577
+ };
5578
+ readonly domains: {
5579
+ readonly type: "object";
5580
+ readonly additionalProperties: {
5581
+ readonly type: "string";
5582
+ };
5583
+ };
5584
+ readonly teams: {
5585
+ readonly type: "object";
5586
+ readonly additionalProperties: {
5587
+ readonly type: "string";
5588
+ };
5589
+ };
5590
+ readonly users: {
5591
+ readonly type: "object";
5592
+ readonly additionalProperties: {
5593
+ readonly type: "string";
5594
+ };
5595
+ };
5596
+ readonly apiDescriptions: {
5597
+ readonly type: "object";
5598
+ readonly additionalProperties: {
5599
+ readonly type: "string";
5600
+ };
5601
+ };
5602
+ readonly dataSchemas: {
5603
+ readonly type: "object";
5604
+ readonly additionalProperties: {
5605
+ readonly type: "string";
5606
+ };
5607
+ };
5608
+ readonly apiOperations: {
5609
+ readonly type: "object";
5610
+ readonly additionalProperties: {
5611
+ readonly type: "string";
5612
+ };
5613
+ };
5614
+ };
5615
+ readonly additionalProperties: {
5616
+ readonly type: "object";
5617
+ readonly additionalProperties: {
5618
+ readonly type: "string";
5619
+ };
5620
+ };
5621
+ };
5622
+ readonly entitiesTypes: {
5623
+ readonly type: "object";
5624
+ readonly properties: {
5625
+ readonly service: {
5626
+ readonly type: "object";
5627
+ readonly additionalProperties: {
5628
+ readonly type: "string";
5629
+ };
5630
+ };
5631
+ readonly domain: {
5632
+ readonly type: "object";
5633
+ readonly additionalProperties: {
5634
+ readonly type: "string";
5635
+ };
5636
+ };
5637
+ readonly team: {
5638
+ readonly type: "object";
5639
+ readonly additionalProperties: {
5640
+ readonly type: "string";
5641
+ };
5642
+ };
5643
+ readonly user: {
5644
+ readonly type: "object";
5645
+ readonly additionalProperties: {
5646
+ readonly type: "string";
5647
+ };
5648
+ };
5649
+ readonly apiDescription: {
5650
+ readonly type: "object";
5651
+ readonly additionalProperties: {
5652
+ readonly type: "string";
5653
+ };
5654
+ };
5655
+ readonly apiOperation: {
5656
+ readonly type: "object";
5657
+ readonly additionalProperties: {
5658
+ readonly type: "string";
5659
+ };
5660
+ };
5661
+ readonly dataSchema: {
5662
+ readonly type: "object";
5663
+ readonly additionalProperties: {
5664
+ readonly type: "string";
5665
+ };
5666
+ };
5667
+ };
5668
+ readonly additionalProperties: {
5669
+ readonly type: "object";
5670
+ readonly additionalProperties: {
5671
+ readonly type: "string";
5672
+ };
5673
+ };
5674
+ };
5675
+ readonly entitiesGroups: {
5676
+ readonly type: "array";
5677
+ readonly items: {
5678
+ readonly type: "object";
5679
+ readonly properties: {
5680
+ readonly entities: {
5681
+ readonly type: "array";
5682
+ readonly items: {
5683
+ readonly type: "string";
5684
+ };
5685
+ };
5686
+ readonly config: {
5687
+ readonly type: "object";
5688
+ readonly additionalProperties: {
5689
+ readonly type: "string";
5690
+ };
5691
+ };
5692
+ };
5693
+ readonly additionalProperties: false;
5694
+ };
5695
+ };
5696
+ readonly entities: {
5697
+ readonly type: "object";
5698
+ readonly properties: {
5699
+ readonly '**': {
5700
+ readonly type: "object";
5701
+ readonly additionalProperties: {
5702
+ readonly type: "string";
5703
+ };
5704
+ };
5705
+ };
5706
+ readonly additionalProperties: {
5707
+ readonly type: "object";
5708
+ readonly additionalProperties: {
5709
+ readonly type: "string";
5710
+ };
5711
+ };
5712
+ };
5546
5713
  };
5714
+ readonly additionalProperties: false;
5547
5715
  };
5548
5716
  export declare const rbacConfigSchema: {
5549
5717
  readonly type: "object";
@@ -5607,6 +5775,162 @@ export declare const rbacConfigSchema: {
5607
5775
  };
5608
5776
  };
5609
5777
  };
5778
+ readonly entitiesCatalog: {
5779
+ readonly type: "object";
5780
+ readonly properties: {
5781
+ readonly catalogs: {
5782
+ readonly type: "object";
5783
+ readonly properties: {
5784
+ readonly all: {
5785
+ readonly type: "object";
5786
+ readonly additionalProperties: {
5787
+ readonly type: "string";
5788
+ };
5789
+ };
5790
+ readonly services: {
5791
+ readonly type: "object";
5792
+ readonly additionalProperties: {
5793
+ readonly type: "string";
5794
+ };
5795
+ };
5796
+ readonly domains: {
5797
+ readonly type: "object";
5798
+ readonly additionalProperties: {
5799
+ readonly type: "string";
5800
+ };
5801
+ };
5802
+ readonly teams: {
5803
+ readonly type: "object";
5804
+ readonly additionalProperties: {
5805
+ readonly type: "string";
5806
+ };
5807
+ };
5808
+ readonly users: {
5809
+ readonly type: "object";
5810
+ readonly additionalProperties: {
5811
+ readonly type: "string";
5812
+ };
5813
+ };
5814
+ readonly apiDescriptions: {
5815
+ readonly type: "object";
5816
+ readonly additionalProperties: {
5817
+ readonly type: "string";
5818
+ };
5819
+ };
5820
+ readonly dataSchemas: {
5821
+ readonly type: "object";
5822
+ readonly additionalProperties: {
5823
+ readonly type: "string";
5824
+ };
5825
+ };
5826
+ readonly apiOperations: {
5827
+ readonly type: "object";
5828
+ readonly additionalProperties: {
5829
+ readonly type: "string";
5830
+ };
5831
+ };
5832
+ };
5833
+ readonly additionalProperties: {
5834
+ readonly type: "object";
5835
+ readonly additionalProperties: {
5836
+ readonly type: "string";
5837
+ };
5838
+ };
5839
+ };
5840
+ readonly entitiesTypes: {
5841
+ readonly type: "object";
5842
+ readonly properties: {
5843
+ readonly service: {
5844
+ readonly type: "object";
5845
+ readonly additionalProperties: {
5846
+ readonly type: "string";
5847
+ };
5848
+ };
5849
+ readonly domain: {
5850
+ readonly type: "object";
5851
+ readonly additionalProperties: {
5852
+ readonly type: "string";
5853
+ };
5854
+ };
5855
+ readonly team: {
5856
+ readonly type: "object";
5857
+ readonly additionalProperties: {
5858
+ readonly type: "string";
5859
+ };
5860
+ };
5861
+ readonly user: {
5862
+ readonly type: "object";
5863
+ readonly additionalProperties: {
5864
+ readonly type: "string";
5865
+ };
5866
+ };
5867
+ readonly apiDescription: {
5868
+ readonly type: "object";
5869
+ readonly additionalProperties: {
5870
+ readonly type: "string";
5871
+ };
5872
+ };
5873
+ readonly apiOperation: {
5874
+ readonly type: "object";
5875
+ readonly additionalProperties: {
5876
+ readonly type: "string";
5877
+ };
5878
+ };
5879
+ readonly dataSchema: {
5880
+ readonly type: "object";
5881
+ readonly additionalProperties: {
5882
+ readonly type: "string";
5883
+ };
5884
+ };
5885
+ };
5886
+ readonly additionalProperties: {
5887
+ readonly type: "object";
5888
+ readonly additionalProperties: {
5889
+ readonly type: "string";
5890
+ };
5891
+ };
5892
+ };
5893
+ readonly entitiesGroups: {
5894
+ readonly type: "array";
5895
+ readonly items: {
5896
+ readonly type: "object";
5897
+ readonly properties: {
5898
+ readonly entities: {
5899
+ readonly type: "array";
5900
+ readonly items: {
5901
+ readonly type: "string";
5902
+ };
5903
+ };
5904
+ readonly config: {
5905
+ readonly type: "object";
5906
+ readonly additionalProperties: {
5907
+ readonly type: "string";
5908
+ };
5909
+ };
5910
+ };
5911
+ readonly additionalProperties: false;
5912
+ };
5913
+ };
5914
+ readonly entities: {
5915
+ readonly type: "object";
5916
+ readonly properties: {
5917
+ readonly '**': {
5918
+ readonly type: "object";
5919
+ readonly additionalProperties: {
5920
+ readonly type: "string";
5921
+ };
5922
+ };
5923
+ };
5924
+ readonly additionalProperties: {
5925
+ readonly type: "object";
5926
+ readonly additionalProperties: {
5927
+ readonly type: "string";
5928
+ };
5929
+ };
5930
+ };
5931
+ };
5932
+ readonly additionalProperties: false;
5933
+ };
5610
5934
  };
5611
5935
  readonly additionalProperties: {
5612
5936
  readonly type: "object";
@@ -6174,6 +6498,162 @@ export declare const accessConfigSchema: {
6174
6498
  };
6175
6499
  };
6176
6500
  };
6501
+ readonly entitiesCatalog: {
6502
+ readonly type: "object";
6503
+ readonly properties: {
6504
+ readonly catalogs: {
6505
+ readonly type: "object";
6506
+ readonly properties: {
6507
+ readonly all: {
6508
+ readonly type: "object";
6509
+ readonly additionalProperties: {
6510
+ readonly type: "string";
6511
+ };
6512
+ };
6513
+ readonly services: {
6514
+ readonly type: "object";
6515
+ readonly additionalProperties: {
6516
+ readonly type: "string";
6517
+ };
6518
+ };
6519
+ readonly domains: {
6520
+ readonly type: "object";
6521
+ readonly additionalProperties: {
6522
+ readonly type: "string";
6523
+ };
6524
+ };
6525
+ readonly teams: {
6526
+ readonly type: "object";
6527
+ readonly additionalProperties: {
6528
+ readonly type: "string";
6529
+ };
6530
+ };
6531
+ readonly users: {
6532
+ readonly type: "object";
6533
+ readonly additionalProperties: {
6534
+ readonly type: "string";
6535
+ };
6536
+ };
6537
+ readonly apiDescriptions: {
6538
+ readonly type: "object";
6539
+ readonly additionalProperties: {
6540
+ readonly type: "string";
6541
+ };
6542
+ };
6543
+ readonly dataSchemas: {
6544
+ readonly type: "object";
6545
+ readonly additionalProperties: {
6546
+ readonly type: "string";
6547
+ };
6548
+ };
6549
+ readonly apiOperations: {
6550
+ readonly type: "object";
6551
+ readonly additionalProperties: {
6552
+ readonly type: "string";
6553
+ };
6554
+ };
6555
+ };
6556
+ readonly additionalProperties: {
6557
+ readonly type: "object";
6558
+ readonly additionalProperties: {
6559
+ readonly type: "string";
6560
+ };
6561
+ };
6562
+ };
6563
+ readonly entitiesTypes: {
6564
+ readonly type: "object";
6565
+ readonly properties: {
6566
+ readonly service: {
6567
+ readonly type: "object";
6568
+ readonly additionalProperties: {
6569
+ readonly type: "string";
6570
+ };
6571
+ };
6572
+ readonly domain: {
6573
+ readonly type: "object";
6574
+ readonly additionalProperties: {
6575
+ readonly type: "string";
6576
+ };
6577
+ };
6578
+ readonly team: {
6579
+ readonly type: "object";
6580
+ readonly additionalProperties: {
6581
+ readonly type: "string";
6582
+ };
6583
+ };
6584
+ readonly user: {
6585
+ readonly type: "object";
6586
+ readonly additionalProperties: {
6587
+ readonly type: "string";
6588
+ };
6589
+ };
6590
+ readonly apiDescription: {
6591
+ readonly type: "object";
6592
+ readonly additionalProperties: {
6593
+ readonly type: "string";
6594
+ };
6595
+ };
6596
+ readonly apiOperation: {
6597
+ readonly type: "object";
6598
+ readonly additionalProperties: {
6599
+ readonly type: "string";
6600
+ };
6601
+ };
6602
+ readonly dataSchema: {
6603
+ readonly type: "object";
6604
+ readonly additionalProperties: {
6605
+ readonly type: "string";
6606
+ };
6607
+ };
6608
+ };
6609
+ readonly additionalProperties: {
6610
+ readonly type: "object";
6611
+ readonly additionalProperties: {
6612
+ readonly type: "string";
6613
+ };
6614
+ };
6615
+ };
6616
+ readonly entitiesGroups: {
6617
+ readonly type: "array";
6618
+ readonly items: {
6619
+ readonly type: "object";
6620
+ readonly properties: {
6621
+ readonly entities: {
6622
+ readonly type: "array";
6623
+ readonly items: {
6624
+ readonly type: "string";
6625
+ };
6626
+ };
6627
+ readonly config: {
6628
+ readonly type: "object";
6629
+ readonly additionalProperties: {
6630
+ readonly type: "string";
6631
+ };
6632
+ };
6633
+ };
6634
+ readonly additionalProperties: false;
6635
+ };
6636
+ };
6637
+ readonly entities: {
6638
+ readonly type: "object";
6639
+ readonly properties: {
6640
+ readonly '**': {
6641
+ readonly type: "object";
6642
+ readonly additionalProperties: {
6643
+ readonly type: "string";
6644
+ };
6645
+ };
6646
+ };
6647
+ readonly additionalProperties: {
6648
+ readonly type: "object";
6649
+ readonly additionalProperties: {
6650
+ readonly type: "string";
6651
+ };
6652
+ };
6653
+ };
6654
+ };
6655
+ readonly additionalProperties: false;
6656
+ };
6177
6657
  };
6178
6658
  readonly additionalProperties: {
6179
6659
  readonly type: "object";
@@ -6446,6 +6926,162 @@ export declare const redoclyConfigSchema: {
6446
6926
  };
6447
6927
  };
6448
6928
  };
6929
+ readonly entitiesCatalog: {
6930
+ readonly type: "object";
6931
+ readonly properties: {
6932
+ readonly catalogs: {
6933
+ readonly type: "object";
6934
+ readonly properties: {
6935
+ readonly all: {
6936
+ readonly type: "object";
6937
+ readonly additionalProperties: {
6938
+ readonly type: "string";
6939
+ };
6940
+ };
6941
+ readonly services: {
6942
+ readonly type: "object";
6943
+ readonly additionalProperties: {
6944
+ readonly type: "string";
6945
+ };
6946
+ };
6947
+ readonly domains: {
6948
+ readonly type: "object";
6949
+ readonly additionalProperties: {
6950
+ readonly type: "string";
6951
+ };
6952
+ };
6953
+ readonly teams: {
6954
+ readonly type: "object";
6955
+ readonly additionalProperties: {
6956
+ readonly type: "string";
6957
+ };
6958
+ };
6959
+ readonly users: {
6960
+ readonly type: "object";
6961
+ readonly additionalProperties: {
6962
+ readonly type: "string";
6963
+ };
6964
+ };
6965
+ readonly apiDescriptions: {
6966
+ readonly type: "object";
6967
+ readonly additionalProperties: {
6968
+ readonly type: "string";
6969
+ };
6970
+ };
6971
+ readonly dataSchemas: {
6972
+ readonly type: "object";
6973
+ readonly additionalProperties: {
6974
+ readonly type: "string";
6975
+ };
6976
+ };
6977
+ readonly apiOperations: {
6978
+ readonly type: "object";
6979
+ readonly additionalProperties: {
6980
+ readonly type: "string";
6981
+ };
6982
+ };
6983
+ };
6984
+ readonly additionalProperties: {
6985
+ readonly type: "object";
6986
+ readonly additionalProperties: {
6987
+ readonly type: "string";
6988
+ };
6989
+ };
6990
+ };
6991
+ readonly entitiesTypes: {
6992
+ readonly type: "object";
6993
+ readonly properties: {
6994
+ readonly service: {
6995
+ readonly type: "object";
6996
+ readonly additionalProperties: {
6997
+ readonly type: "string";
6998
+ };
6999
+ };
7000
+ readonly domain: {
7001
+ readonly type: "object";
7002
+ readonly additionalProperties: {
7003
+ readonly type: "string";
7004
+ };
7005
+ };
7006
+ readonly team: {
7007
+ readonly type: "object";
7008
+ readonly additionalProperties: {
7009
+ readonly type: "string";
7010
+ };
7011
+ };
7012
+ readonly user: {
7013
+ readonly type: "object";
7014
+ readonly additionalProperties: {
7015
+ readonly type: "string";
7016
+ };
7017
+ };
7018
+ readonly apiDescription: {
7019
+ readonly type: "object";
7020
+ readonly additionalProperties: {
7021
+ readonly type: "string";
7022
+ };
7023
+ };
7024
+ readonly apiOperation: {
7025
+ readonly type: "object";
7026
+ readonly additionalProperties: {
7027
+ readonly type: "string";
7028
+ };
7029
+ };
7030
+ readonly dataSchema: {
7031
+ readonly type: "object";
7032
+ readonly additionalProperties: {
7033
+ readonly type: "string";
7034
+ };
7035
+ };
7036
+ };
7037
+ readonly additionalProperties: {
7038
+ readonly type: "object";
7039
+ readonly additionalProperties: {
7040
+ readonly type: "string";
7041
+ };
7042
+ };
7043
+ };
7044
+ readonly entitiesGroups: {
7045
+ readonly type: "array";
7046
+ readonly items: {
7047
+ readonly type: "object";
7048
+ readonly properties: {
7049
+ readonly entities: {
7050
+ readonly type: "array";
7051
+ readonly items: {
7052
+ readonly type: "string";
7053
+ };
7054
+ };
7055
+ readonly config: {
7056
+ readonly type: "object";
7057
+ readonly additionalProperties: {
7058
+ readonly type: "string";
7059
+ };
7060
+ };
7061
+ };
7062
+ readonly additionalProperties: false;
7063
+ };
7064
+ };
7065
+ readonly entities: {
7066
+ readonly type: "object";
7067
+ readonly properties: {
7068
+ readonly '**': {
7069
+ readonly type: "object";
7070
+ readonly additionalProperties: {
7071
+ readonly type: "string";
7072
+ };
7073
+ };
7074
+ };
7075
+ readonly additionalProperties: {
7076
+ readonly type: "object";
7077
+ readonly additionalProperties: {
7078
+ readonly type: "string";
7079
+ };
7080
+ };
7081
+ };
7082
+ };
7083
+ readonly additionalProperties: false;
7084
+ };
6449
7085
  };
6450
7086
  readonly additionalProperties: {
6451
7087
  readonly type: "object";
@@ -12362,7 +12998,7 @@ export declare const redoclyConfigSchema: {
12362
12998
  };
12363
12999
  readonly operator: {
12364
13000
  readonly type: "string";
12365
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13001
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12366
13002
  };
12367
13003
  readonly value: {
12368
13004
  readonly oneOf: readonly [{
@@ -12373,6 +13009,10 @@ export declare const redoclyConfigSchema: {
12373
13009
  readonly type: "number";
12374
13010
  }];
12375
13011
  };
13012
+ readonly modifier: {
13013
+ readonly type: "string";
13014
+ readonly enum: readonly ["not"];
13015
+ };
12376
13016
  readonly match: {
12377
13017
  readonly type: "array";
12378
13018
  readonly items: {
@@ -12383,7 +13023,7 @@ export declare const redoclyConfigSchema: {
12383
13023
  };
12384
13024
  readonly operator: {
12385
13025
  readonly type: "string";
12386
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13026
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12387
13027
  };
12388
13028
  readonly value: {
12389
13029
  readonly oneOf: readonly [{
@@ -12394,6 +13034,10 @@ export declare const redoclyConfigSchema: {
12394
13034
  readonly type: "number";
12395
13035
  }];
12396
13036
  };
13037
+ readonly modifier: {
13038
+ readonly type: "string";
13039
+ readonly enum: readonly ["not"];
13040
+ };
12397
13041
  };
12398
13042
  };
12399
13043
  };
@@ -12403,7 +13047,7 @@ export declare const redoclyConfigSchema: {
12403
13047
  readonly properties: {
12404
13048
  readonly operator: {
12405
13049
  readonly type: "string";
12406
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13050
+ readonly enum: readonly ["and", "or"];
12407
13051
  };
12408
13052
  readonly conditions: {
12409
13053
  readonly type: "array";
@@ -12416,7 +13060,7 @@ export declare const redoclyConfigSchema: {
12416
13060
  };
12417
13061
  readonly operator: {
12418
13062
  readonly type: "string";
12419
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13063
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12420
13064
  };
12421
13065
  readonly value: {
12422
13066
  readonly oneOf: readonly [{
@@ -12427,6 +13071,10 @@ export declare const redoclyConfigSchema: {
12427
13071
  readonly type: "number";
12428
13072
  }];
12429
13073
  };
13074
+ readonly modifier: {
13075
+ readonly type: "string";
13076
+ readonly enum: readonly ["not"];
13077
+ };
12430
13078
  readonly match: {
12431
13079
  readonly type: "array";
12432
13080
  readonly items: {
@@ -12437,7 +13085,7 @@ export declare const redoclyConfigSchema: {
12437
13085
  };
12438
13086
  readonly operator: {
12439
13087
  readonly type: "string";
12440
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13088
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12441
13089
  };
12442
13090
  readonly value: {
12443
13091
  readonly oneOf: readonly [{
@@ -12448,6 +13096,10 @@ export declare const redoclyConfigSchema: {
12448
13096
  readonly type: "number";
12449
13097
  }];
12450
13098
  };
13099
+ readonly modifier: {
13100
+ readonly type: "string";
13101
+ readonly enum: readonly ["not"];
13102
+ };
12451
13103
  };
12452
13104
  };
12453
13105
  };
@@ -12457,7 +13109,7 @@ export declare const redoclyConfigSchema: {
12457
13109
  readonly properties: {
12458
13110
  readonly operator: {
12459
13111
  readonly type: "string";
12460
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13112
+ readonly enum: readonly ["and", "or"];
12461
13113
  };
12462
13114
  readonly conditions: {
12463
13115
  readonly type: "array";
@@ -12469,7 +13121,7 @@ export declare const redoclyConfigSchema: {
12469
13121
  };
12470
13122
  readonly operator: {
12471
13123
  readonly type: "string";
12472
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13124
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12473
13125
  };
12474
13126
  readonly value: {
12475
13127
  readonly oneOf: readonly [{
@@ -12480,6 +13132,10 @@ export declare const redoclyConfigSchema: {
12480
13132
  readonly type: "number";
12481
13133
  }];
12482
13134
  };
13135
+ readonly modifier: {
13136
+ readonly type: "string";
13137
+ readonly enum: readonly ["not"];
13138
+ };
12483
13139
  readonly match: {
12484
13140
  readonly type: "array";
12485
13141
  readonly items: {
@@ -12490,7 +13146,7 @@ export declare const redoclyConfigSchema: {
12490
13146
  };
12491
13147
  readonly operator: {
12492
13148
  readonly type: "string";
12493
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13149
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12494
13150
  };
12495
13151
  readonly value: {
12496
13152
  readonly oneOf: readonly [{
@@ -12501,6 +13157,10 @@ export declare const redoclyConfigSchema: {
12501
13157
  readonly type: "number";
12502
13158
  }];
12503
13159
  };
13160
+ readonly modifier: {
13161
+ readonly type: "string";
13162
+ readonly enum: readonly ["not"];
13163
+ };
12504
13164
  };
12505
13165
  };
12506
13166
  };
@@ -12523,7 +13183,7 @@ export declare const redoclyConfigSchema: {
12523
13183
  readonly properties: {
12524
13184
  readonly operator: {
12525
13185
  readonly type: "string";
12526
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13186
+ readonly enum: readonly ["and", "or"];
12527
13187
  };
12528
13188
  readonly conditions: {
12529
13189
  readonly type: "array";
@@ -12536,7 +13196,7 @@ export declare const redoclyConfigSchema: {
12536
13196
  };
12537
13197
  readonly operator: {
12538
13198
  readonly type: "string";
12539
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13199
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12540
13200
  };
12541
13201
  readonly value: {
12542
13202
  readonly oneOf: readonly [{
@@ -12547,6 +13207,10 @@ export declare const redoclyConfigSchema: {
12547
13207
  readonly type: "number";
12548
13208
  }];
12549
13209
  };
13210
+ readonly modifier: {
13211
+ readonly type: "string";
13212
+ readonly enum: readonly ["not"];
13213
+ };
12550
13214
  readonly match: {
12551
13215
  readonly type: "array";
12552
13216
  readonly items: {
@@ -12557,7 +13221,7 @@ export declare const redoclyConfigSchema: {
12557
13221
  };
12558
13222
  readonly operator: {
12559
13223
  readonly type: "string";
12560
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13224
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12561
13225
  };
12562
13226
  readonly value: {
12563
13227
  readonly oneOf: readonly [{
@@ -12568,6 +13232,10 @@ export declare const redoclyConfigSchema: {
12568
13232
  readonly type: "number";
12569
13233
  }];
12570
13234
  };
13235
+ readonly modifier: {
13236
+ readonly type: "string";
13237
+ readonly enum: readonly ["not"];
13238
+ };
12571
13239
  };
12572
13240
  };
12573
13241
  };
@@ -12577,7 +13245,7 @@ export declare const redoclyConfigSchema: {
12577
13245
  readonly properties: {
12578
13246
  readonly operator: {
12579
13247
  readonly type: "string";
12580
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13248
+ readonly enum: readonly ["and", "or"];
12581
13249
  };
12582
13250
  readonly conditions: {
12583
13251
  readonly type: "array";
@@ -12590,7 +13258,7 @@ export declare const redoclyConfigSchema: {
12590
13258
  };
12591
13259
  readonly operator: {
12592
13260
  readonly type: "string";
12593
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13261
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12594
13262
  };
12595
13263
  readonly value: {
12596
13264
  readonly oneOf: readonly [{
@@ -12601,6 +13269,10 @@ export declare const redoclyConfigSchema: {
12601
13269
  readonly type: "number";
12602
13270
  }];
12603
13271
  };
13272
+ readonly modifier: {
13273
+ readonly type: "string";
13274
+ readonly enum: readonly ["not"];
13275
+ };
12604
13276
  readonly match: {
12605
13277
  readonly type: "array";
12606
13278
  readonly items: {
@@ -12611,7 +13283,7 @@ export declare const redoclyConfigSchema: {
12611
13283
  };
12612
13284
  readonly operator: {
12613
13285
  readonly type: "string";
12614
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13286
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12615
13287
  };
12616
13288
  readonly value: {
12617
13289
  readonly oneOf: readonly [{
@@ -12622,6 +13294,10 @@ export declare const redoclyConfigSchema: {
12622
13294
  readonly type: "number";
12623
13295
  }];
12624
13296
  };
13297
+ readonly modifier: {
13298
+ readonly type: "string";
13299
+ readonly enum: readonly ["not"];
13300
+ };
12625
13301
  };
12626
13302
  };
12627
13303
  };
@@ -12631,7 +13307,7 @@ export declare const redoclyConfigSchema: {
12631
13307
  readonly properties: {
12632
13308
  readonly operator: {
12633
13309
  readonly type: "string";
12634
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13310
+ readonly enum: readonly ["and", "or"];
12635
13311
  };
12636
13312
  readonly conditions: {
12637
13313
  readonly type: "array";
@@ -12643,7 +13319,7 @@ export declare const redoclyConfigSchema: {
12643
13319
  };
12644
13320
  readonly operator: {
12645
13321
  readonly type: "string";
12646
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13322
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12647
13323
  };
12648
13324
  readonly value: {
12649
13325
  readonly oneOf: readonly [{
@@ -12654,6 +13330,10 @@ export declare const redoclyConfigSchema: {
12654
13330
  readonly type: "number";
12655
13331
  }];
12656
13332
  };
13333
+ readonly modifier: {
13334
+ readonly type: "string";
13335
+ readonly enum: readonly ["not"];
13336
+ };
12657
13337
  readonly match: {
12658
13338
  readonly type: "array";
12659
13339
  readonly items: {
@@ -12664,7 +13344,7 @@ export declare const redoclyConfigSchema: {
12664
13344
  };
12665
13345
  readonly operator: {
12666
13346
  readonly type: "string";
12667
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
13347
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
12668
13348
  };
12669
13349
  readonly value: {
12670
13350
  readonly oneOf: readonly [{
@@ -12675,6 +13355,10 @@ export declare const redoclyConfigSchema: {
12675
13355
  readonly type: "number";
12676
13356
  }];
12677
13357
  };
13358
+ readonly modifier: {
13359
+ readonly type: "string";
13360
+ readonly enum: readonly ["not"];
13361
+ };
12678
13362
  };
12679
13363
  };
12680
13364
  };
@@ -18894,7 +19578,7 @@ export declare const redoclyConfigSchema: {
18894
19578
  };
18895
19579
  readonly operator: {
18896
19580
  readonly type: "string";
18897
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19581
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
18898
19582
  };
18899
19583
  readonly value: {
18900
19584
  readonly oneOf: readonly [{
@@ -18905,6 +19589,10 @@ export declare const redoclyConfigSchema: {
18905
19589
  readonly type: "number";
18906
19590
  }];
18907
19591
  };
19592
+ readonly modifier: {
19593
+ readonly type: "string";
19594
+ readonly enum: readonly ["not"];
19595
+ };
18908
19596
  readonly match: {
18909
19597
  readonly type: "array";
18910
19598
  readonly items: {
@@ -18915,7 +19603,7 @@ export declare const redoclyConfigSchema: {
18915
19603
  };
18916
19604
  readonly operator: {
18917
19605
  readonly type: "string";
18918
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19606
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
18919
19607
  };
18920
19608
  readonly value: {
18921
19609
  readonly oneOf: readonly [{
@@ -18926,6 +19614,10 @@ export declare const redoclyConfigSchema: {
18926
19614
  readonly type: "number";
18927
19615
  }];
18928
19616
  };
19617
+ readonly modifier: {
19618
+ readonly type: "string";
19619
+ readonly enum: readonly ["not"];
19620
+ };
18929
19621
  };
18930
19622
  };
18931
19623
  };
@@ -18935,7 +19627,7 @@ export declare const redoclyConfigSchema: {
18935
19627
  readonly properties: {
18936
19628
  readonly operator: {
18937
19629
  readonly type: "string";
18938
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19630
+ readonly enum: readonly ["and", "or"];
18939
19631
  };
18940
19632
  readonly conditions: {
18941
19633
  readonly type: "array";
@@ -18948,7 +19640,7 @@ export declare const redoclyConfigSchema: {
18948
19640
  };
18949
19641
  readonly operator: {
18950
19642
  readonly type: "string";
18951
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19643
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
18952
19644
  };
18953
19645
  readonly value: {
18954
19646
  readonly oneOf: readonly [{
@@ -18959,6 +19651,10 @@ export declare const redoclyConfigSchema: {
18959
19651
  readonly type: "number";
18960
19652
  }];
18961
19653
  };
19654
+ readonly modifier: {
19655
+ readonly type: "string";
19656
+ readonly enum: readonly ["not"];
19657
+ };
18962
19658
  readonly match: {
18963
19659
  readonly type: "array";
18964
19660
  readonly items: {
@@ -18969,7 +19665,7 @@ export declare const redoclyConfigSchema: {
18969
19665
  };
18970
19666
  readonly operator: {
18971
19667
  readonly type: "string";
18972
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19668
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
18973
19669
  };
18974
19670
  readonly value: {
18975
19671
  readonly oneOf: readonly [{
@@ -18980,6 +19676,10 @@ export declare const redoclyConfigSchema: {
18980
19676
  readonly type: "number";
18981
19677
  }];
18982
19678
  };
19679
+ readonly modifier: {
19680
+ readonly type: "string";
19681
+ readonly enum: readonly ["not"];
19682
+ };
18983
19683
  };
18984
19684
  };
18985
19685
  };
@@ -18989,7 +19689,7 @@ export declare const redoclyConfigSchema: {
18989
19689
  readonly properties: {
18990
19690
  readonly operator: {
18991
19691
  readonly type: "string";
18992
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19692
+ readonly enum: readonly ["and", "or"];
18993
19693
  };
18994
19694
  readonly conditions: {
18995
19695
  readonly type: "array";
@@ -19001,7 +19701,7 @@ export declare const redoclyConfigSchema: {
19001
19701
  };
19002
19702
  readonly operator: {
19003
19703
  readonly type: "string";
19004
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19704
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
19005
19705
  };
19006
19706
  readonly value: {
19007
19707
  readonly oneOf: readonly [{
@@ -19012,6 +19712,10 @@ export declare const redoclyConfigSchema: {
19012
19712
  readonly type: "number";
19013
19713
  }];
19014
19714
  };
19715
+ readonly modifier: {
19716
+ readonly type: "string";
19717
+ readonly enum: readonly ["not"];
19718
+ };
19015
19719
  readonly match: {
19016
19720
  readonly type: "array";
19017
19721
  readonly items: {
@@ -19022,7 +19726,7 @@ export declare const redoclyConfigSchema: {
19022
19726
  };
19023
19727
  readonly operator: {
19024
19728
  readonly type: "string";
19025
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19729
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
19026
19730
  };
19027
19731
  readonly value: {
19028
19732
  readonly oneOf: readonly [{
@@ -19033,6 +19737,10 @@ export declare const redoclyConfigSchema: {
19033
19737
  readonly type: "number";
19034
19738
  }];
19035
19739
  };
19740
+ readonly modifier: {
19741
+ readonly type: "string";
19742
+ readonly enum: readonly ["not"];
19743
+ };
19036
19744
  };
19037
19745
  };
19038
19746
  };
@@ -19055,7 +19763,7 @@ export declare const redoclyConfigSchema: {
19055
19763
  readonly properties: {
19056
19764
  readonly operator: {
19057
19765
  readonly type: "string";
19058
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19766
+ readonly enum: readonly ["and", "or"];
19059
19767
  };
19060
19768
  readonly conditions: {
19061
19769
  readonly type: "array";
@@ -19068,7 +19776,7 @@ export declare const redoclyConfigSchema: {
19068
19776
  };
19069
19777
  readonly operator: {
19070
19778
  readonly type: "string";
19071
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19779
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
19072
19780
  };
19073
19781
  readonly value: {
19074
19782
  readonly oneOf: readonly [{
@@ -19079,6 +19787,10 @@ export declare const redoclyConfigSchema: {
19079
19787
  readonly type: "number";
19080
19788
  }];
19081
19789
  };
19790
+ readonly modifier: {
19791
+ readonly type: "string";
19792
+ readonly enum: readonly ["not"];
19793
+ };
19082
19794
  readonly match: {
19083
19795
  readonly type: "array";
19084
19796
  readonly items: {
@@ -19089,7 +19801,7 @@ export declare const redoclyConfigSchema: {
19089
19801
  };
19090
19802
  readonly operator: {
19091
19803
  readonly type: "string";
19092
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19804
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
19093
19805
  };
19094
19806
  readonly value: {
19095
19807
  readonly oneOf: readonly [{
@@ -19100,6 +19812,10 @@ export declare const redoclyConfigSchema: {
19100
19812
  readonly type: "number";
19101
19813
  }];
19102
19814
  };
19815
+ readonly modifier: {
19816
+ readonly type: "string";
19817
+ readonly enum: readonly ["not"];
19818
+ };
19103
19819
  };
19104
19820
  };
19105
19821
  };
@@ -19109,7 +19825,7 @@ export declare const redoclyConfigSchema: {
19109
19825
  readonly properties: {
19110
19826
  readonly operator: {
19111
19827
  readonly type: "string";
19112
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19828
+ readonly enum: readonly ["and", "or"];
19113
19829
  };
19114
19830
  readonly conditions: {
19115
19831
  readonly type: "array";
@@ -19122,7 +19838,7 @@ export declare const redoclyConfigSchema: {
19122
19838
  };
19123
19839
  readonly operator: {
19124
19840
  readonly type: "string";
19125
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19841
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
19126
19842
  };
19127
19843
  readonly value: {
19128
19844
  readonly oneOf: readonly [{
@@ -19133,6 +19849,10 @@ export declare const redoclyConfigSchema: {
19133
19849
  readonly type: "number";
19134
19850
  }];
19135
19851
  };
19852
+ readonly modifier: {
19853
+ readonly type: "string";
19854
+ readonly enum: readonly ["not"];
19855
+ };
19136
19856
  readonly match: {
19137
19857
  readonly type: "array";
19138
19858
  readonly items: {
@@ -19143,7 +19863,7 @@ export declare const redoclyConfigSchema: {
19143
19863
  };
19144
19864
  readonly operator: {
19145
19865
  readonly type: "string";
19146
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19866
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
19147
19867
  };
19148
19868
  readonly value: {
19149
19869
  readonly oneOf: readonly [{
@@ -19154,6 +19874,10 @@ export declare const redoclyConfigSchema: {
19154
19874
  readonly type: "number";
19155
19875
  }];
19156
19876
  };
19877
+ readonly modifier: {
19878
+ readonly type: "string";
19879
+ readonly enum: readonly ["not"];
19880
+ };
19157
19881
  };
19158
19882
  };
19159
19883
  };
@@ -19163,7 +19887,7 @@ export declare const redoclyConfigSchema: {
19163
19887
  readonly properties: {
19164
19888
  readonly operator: {
19165
19889
  readonly type: "string";
19166
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19890
+ readonly enum: readonly ["and", "or"];
19167
19891
  };
19168
19892
  readonly conditions: {
19169
19893
  readonly type: "array";
@@ -19175,7 +19899,7 @@ export declare const redoclyConfigSchema: {
19175
19899
  };
19176
19900
  readonly operator: {
19177
19901
  readonly type: "string";
19178
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19902
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
19179
19903
  };
19180
19904
  readonly value: {
19181
19905
  readonly oneOf: readonly [{
@@ -19186,6 +19910,10 @@ export declare const redoclyConfigSchema: {
19186
19910
  readonly type: "number";
19187
19911
  }];
19188
19912
  };
19913
+ readonly modifier: {
19914
+ readonly type: "string";
19915
+ readonly enum: readonly ["not"];
19916
+ };
19189
19917
  readonly match: {
19190
19918
  readonly type: "array";
19191
19919
  readonly items: {
@@ -19196,7 +19924,7 @@ export declare const redoclyConfigSchema: {
19196
19924
  };
19197
19925
  readonly operator: {
19198
19926
  readonly type: "string";
19199
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
19927
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
19200
19928
  };
19201
19929
  readonly value: {
19202
19930
  readonly oneOf: readonly [{
@@ -19207,6 +19935,10 @@ export declare const redoclyConfigSchema: {
19207
19935
  readonly type: "number";
19208
19936
  }];
19209
19937
  };
19938
+ readonly modifier: {
19939
+ readonly type: "string";
19940
+ readonly enum: readonly ["not"];
19941
+ };
19210
19942
  };
19211
19943
  };
19212
19944
  };
@@ -19738,6 +20470,12 @@ export declare const redoclyConfigSchema: {
19738
20470
  readonly enum: readonly ["info", "success", "warning", "error"];
19739
20471
  readonly default: "info";
19740
20472
  };
20473
+ readonly rbac: {
20474
+ readonly type: "object";
20475
+ readonly additionalProperties: {
20476
+ readonly type: "string";
20477
+ };
20478
+ };
19741
20479
  };
19742
20480
  readonly required: readonly ["content"];
19743
20481
  readonly additionalProperties: false;
@@ -20157,6 +20895,162 @@ export declare const redoclyConfigSchema: {
20157
20895
  };
20158
20896
  };
20159
20897
  };
20898
+ readonly entitiesCatalog: {
20899
+ readonly type: "object";
20900
+ readonly properties: {
20901
+ readonly catalogs: {
20902
+ readonly type: "object";
20903
+ readonly properties: {
20904
+ readonly all: {
20905
+ readonly type: "object";
20906
+ readonly additionalProperties: {
20907
+ readonly type: "string";
20908
+ };
20909
+ };
20910
+ readonly services: {
20911
+ readonly type: "object";
20912
+ readonly additionalProperties: {
20913
+ readonly type: "string";
20914
+ };
20915
+ };
20916
+ readonly domains: {
20917
+ readonly type: "object";
20918
+ readonly additionalProperties: {
20919
+ readonly type: "string";
20920
+ };
20921
+ };
20922
+ readonly teams: {
20923
+ readonly type: "object";
20924
+ readonly additionalProperties: {
20925
+ readonly type: "string";
20926
+ };
20927
+ };
20928
+ readonly users: {
20929
+ readonly type: "object";
20930
+ readonly additionalProperties: {
20931
+ readonly type: "string";
20932
+ };
20933
+ };
20934
+ readonly apiDescriptions: {
20935
+ readonly type: "object";
20936
+ readonly additionalProperties: {
20937
+ readonly type: "string";
20938
+ };
20939
+ };
20940
+ readonly dataSchemas: {
20941
+ readonly type: "object";
20942
+ readonly additionalProperties: {
20943
+ readonly type: "string";
20944
+ };
20945
+ };
20946
+ readonly apiOperations: {
20947
+ readonly type: "object";
20948
+ readonly additionalProperties: {
20949
+ readonly type: "string";
20950
+ };
20951
+ };
20952
+ };
20953
+ readonly additionalProperties: {
20954
+ readonly type: "object";
20955
+ readonly additionalProperties: {
20956
+ readonly type: "string";
20957
+ };
20958
+ };
20959
+ };
20960
+ readonly entitiesTypes: {
20961
+ readonly type: "object";
20962
+ readonly properties: {
20963
+ readonly service: {
20964
+ readonly type: "object";
20965
+ readonly additionalProperties: {
20966
+ readonly type: "string";
20967
+ };
20968
+ };
20969
+ readonly domain: {
20970
+ readonly type: "object";
20971
+ readonly additionalProperties: {
20972
+ readonly type: "string";
20973
+ };
20974
+ };
20975
+ readonly team: {
20976
+ readonly type: "object";
20977
+ readonly additionalProperties: {
20978
+ readonly type: "string";
20979
+ };
20980
+ };
20981
+ readonly user: {
20982
+ readonly type: "object";
20983
+ readonly additionalProperties: {
20984
+ readonly type: "string";
20985
+ };
20986
+ };
20987
+ readonly apiDescription: {
20988
+ readonly type: "object";
20989
+ readonly additionalProperties: {
20990
+ readonly type: "string";
20991
+ };
20992
+ };
20993
+ readonly apiOperation: {
20994
+ readonly type: "object";
20995
+ readonly additionalProperties: {
20996
+ readonly type: "string";
20997
+ };
20998
+ };
20999
+ readonly dataSchema: {
21000
+ readonly type: "object";
21001
+ readonly additionalProperties: {
21002
+ readonly type: "string";
21003
+ };
21004
+ };
21005
+ };
21006
+ readonly additionalProperties: {
21007
+ readonly type: "object";
21008
+ readonly additionalProperties: {
21009
+ readonly type: "string";
21010
+ };
21011
+ };
21012
+ };
21013
+ readonly entitiesGroups: {
21014
+ readonly type: "array";
21015
+ readonly items: {
21016
+ readonly type: "object";
21017
+ readonly properties: {
21018
+ readonly entities: {
21019
+ readonly type: "array";
21020
+ readonly items: {
21021
+ readonly type: "string";
21022
+ };
21023
+ };
21024
+ readonly config: {
21025
+ readonly type: "object";
21026
+ readonly additionalProperties: {
21027
+ readonly type: "string";
21028
+ };
21029
+ };
21030
+ };
21031
+ readonly additionalProperties: false;
21032
+ };
21033
+ };
21034
+ readonly entities: {
21035
+ readonly type: "object";
21036
+ readonly properties: {
21037
+ readonly '**': {
21038
+ readonly type: "object";
21039
+ readonly additionalProperties: {
21040
+ readonly type: "string";
21041
+ };
21042
+ };
21043
+ };
21044
+ readonly additionalProperties: {
21045
+ readonly type: "object";
21046
+ readonly additionalProperties: {
21047
+ readonly type: "string";
21048
+ };
21049
+ };
21050
+ };
21051
+ };
21052
+ readonly additionalProperties: false;
21053
+ };
20160
21054
  };
20161
21055
  readonly additionalProperties: {
20162
21056
  readonly type: "object";
@@ -29093,6 +29987,7 @@ export declare const rootRedoclyConfigSchema: {
29093
29987
  value: /*elided*/ any;
29094
29988
  field: /*elided*/ any;
29095
29989
  operator: /*elided*/ any;
29990
+ modifier: /*elided*/ any;
29096
29991
  match: /*elided*/ any;
29097
29992
  };
29098
29993
  type: "object";
@@ -29110,7 +30005,7 @@ export declare const rootRedoclyConfigSchema: {
29110
30005
  } | {
29111
30006
  properties: {
29112
30007
  operator: {
29113
- enum: ("none" | "contains" | "not" | "every" | "some" | "eq" | "in" | "gt" | "gte" | "lt" | "lte" | "startsWith" | "endsWith" | "exists" | "isEmpty" | "between" | "matches" | "and" | "or")[];
30008
+ enum: ("and" | "or")[];
29114
30009
  type: "string";
29115
30010
  };
29116
30011
  conditions: {
@@ -31954,6 +32849,158 @@ export declare const rootRedoclyConfigSchema: {
31954
32849
  };
31955
32850
  type: "object";
31956
32851
  };
32852
+ entitiesCatalog: {
32853
+ properties: {
32854
+ entities: {
32855
+ properties: {
32856
+ "**": {
32857
+ additionalProperties: {
32858
+ type: "string";
32859
+ };
32860
+ type: "object";
32861
+ };
32862
+ };
32863
+ additionalProperties: {
32864
+ additionalProperties: {
32865
+ type: "string";
32866
+ };
32867
+ type: "object";
32868
+ };
32869
+ type: "object";
32870
+ };
32871
+ catalogs: {
32872
+ properties: {
32873
+ all: {
32874
+ additionalProperties: {
32875
+ type: "string";
32876
+ };
32877
+ type: "object";
32878
+ };
32879
+ services: {
32880
+ additionalProperties: {
32881
+ type: "string";
32882
+ };
32883
+ type: "object";
32884
+ };
32885
+ domains: {
32886
+ additionalProperties: {
32887
+ type: "string";
32888
+ };
32889
+ type: "object";
32890
+ };
32891
+ teams: {
32892
+ additionalProperties: {
32893
+ type: "string";
32894
+ };
32895
+ type: "object";
32896
+ };
32897
+ users: {
32898
+ additionalProperties: {
32899
+ type: "string";
32900
+ };
32901
+ type: "object";
32902
+ };
32903
+ apiDescriptions: {
32904
+ additionalProperties: {
32905
+ type: "string";
32906
+ };
32907
+ type: "object";
32908
+ };
32909
+ dataSchemas: {
32910
+ additionalProperties: {
32911
+ type: "string";
32912
+ };
32913
+ type: "object";
32914
+ };
32915
+ apiOperations: {
32916
+ additionalProperties: {
32917
+ type: "string";
32918
+ };
32919
+ type: "object";
32920
+ };
32921
+ };
32922
+ additionalProperties: {
32923
+ additionalProperties: {
32924
+ type: "string";
32925
+ };
32926
+ type: "object";
32927
+ };
32928
+ type: "object";
32929
+ };
32930
+ entitiesTypes: {
32931
+ properties: {
32932
+ user: {
32933
+ additionalProperties: {
32934
+ type: "string";
32935
+ };
32936
+ type: "object";
32937
+ };
32938
+ service: {
32939
+ additionalProperties: {
32940
+ type: "string";
32941
+ };
32942
+ type: "object";
32943
+ };
32944
+ domain: {
32945
+ additionalProperties: {
32946
+ type: "string";
32947
+ };
32948
+ type: "object";
32949
+ };
32950
+ team: {
32951
+ additionalProperties: {
32952
+ type: "string";
32953
+ };
32954
+ type: "object";
32955
+ };
32956
+ apiDescription: {
32957
+ additionalProperties: {
32958
+ type: "string";
32959
+ };
32960
+ type: "object";
32961
+ };
32962
+ apiOperation: {
32963
+ additionalProperties: {
32964
+ type: "string";
32965
+ };
32966
+ type: "object";
32967
+ };
32968
+ dataSchema: {
32969
+ additionalProperties: {
32970
+ type: "string";
32971
+ };
32972
+ type: "object";
32973
+ };
32974
+ };
32975
+ additionalProperties: {
32976
+ additionalProperties: {
32977
+ type: "string";
32978
+ };
32979
+ type: "object";
32980
+ };
32981
+ type: "object";
32982
+ };
32983
+ entitiesGroups: {
32984
+ items: {
32985
+ properties: {
32986
+ entities: {
32987
+ items: /*elided*/ any;
32988
+ type: "array";
32989
+ };
32990
+ config: {
32991
+ additionalProperties: /*elided*/ any;
32992
+ type: "object";
32993
+ };
32994
+ };
32995
+ additionalProperties: false;
32996
+ type: "object";
32997
+ };
32998
+ type: "array";
32999
+ };
33000
+ };
33001
+ additionalProperties: false;
33002
+ type: "object";
33003
+ };
31957
33004
  teamNamePatterns: {
31958
33005
  items: {
31959
33006
  type: "string";
@@ -35119,7 +36166,11 @@ export declare const rootRedoclyConfigSchema: {
35119
36166
  type: "string";
35120
36167
  };
35121
36168
  operator: {
35122
- enum: ("none" | "contains" | "not" | "every" | "some" | "eq" | "in" | "gt" | "gte" | "lt" | "lte" | "startsWith" | "endsWith" | "exists" | "isEmpty" | "between" | "matches" | "and" | "or")[];
36169
+ enum: ("none" | "contains" | "every" | "some" | "eq" | "in" | "gt" | "gte" | "lt" | "lte" | "startsWith" | "endsWith" | "exists" | "isEmpty" | "between" | "matches")[];
36170
+ type: "string";
36171
+ };
36172
+ modifier: {
36173
+ enum: "not"[];
35123
36174
  type: "string";
35124
36175
  };
35125
36176
  match: {
@@ -35134,7 +36185,7 @@ export declare const rootRedoclyConfigSchema: {
35134
36185
  } | {
35135
36186
  properties: {
35136
36187
  operator: {
35137
- enum: ("none" | "contains" | "not" | "every" | "some" | "eq" | "in" | "gt" | "gte" | "lt" | "lte" | "startsWith" | "endsWith" | "exists" | "isEmpty" | "between" | "matches" | "and" | "or")[];
36188
+ enum: ("and" | "or")[];
35138
36189
  type: "string";
35139
36190
  };
35140
36191
  conditions: {
@@ -35153,7 +36204,7 @@ export declare const rootRedoclyConfigSchema: {
35153
36204
  } | {
35154
36205
  properties: {
35155
36206
  operator: {
35156
- enum: ("none" | "contains" | "not" | "every" | "some" | "eq" | "in" | "gt" | "gte" | "lt" | "lte" | "startsWith" | "endsWith" | "exists" | "isEmpty" | "between" | "matches" | "and" | "or")[];
36207
+ enum: ("and" | "or")[];
35157
36208
  type: "string";
35158
36209
  };
35159
36210
  conditions: {
@@ -35163,6 +36214,7 @@ export declare const rootRedoclyConfigSchema: {
35163
36214
  value: /*elided*/ any;
35164
36215
  field: /*elided*/ any;
35165
36216
  operator: /*elided*/ any;
36217
+ modifier: /*elided*/ any;
35166
36218
  match: /*elided*/ any;
35167
36219
  };
35168
36220
  type: "object";
@@ -35568,6 +36620,12 @@ export declare const rootRedoclyConfigSchema: {
35568
36620
  content: {
35569
36621
  type: "string";
35570
36622
  };
36623
+ rbac: {
36624
+ additionalProperties: {
36625
+ type: "string";
36626
+ };
36627
+ type: "object";
36628
+ };
35571
36629
  dismissible: {
35572
36630
  type: "boolean";
35573
36631
  };
@@ -35741,6 +36799,162 @@ export declare const rootRedoclyConfigSchema: {
35741
36799
  };
35742
36800
  type: "object";
35743
36801
  };
36802
+ entitiesCatalog: {
36803
+ properties: {
36804
+ entities: {
36805
+ properties: {
36806
+ "**": {
36807
+ additionalProperties: {
36808
+ type: "string";
36809
+ };
36810
+ type: "object";
36811
+ };
36812
+ };
36813
+ additionalProperties: {
36814
+ additionalProperties: {
36815
+ type: "string";
36816
+ };
36817
+ type: "object";
36818
+ };
36819
+ type: "object";
36820
+ };
36821
+ catalogs: {
36822
+ properties: {
36823
+ all: {
36824
+ additionalProperties: {
36825
+ type: "string";
36826
+ };
36827
+ type: "object";
36828
+ };
36829
+ services: {
36830
+ additionalProperties: {
36831
+ type: "string";
36832
+ };
36833
+ type: "object";
36834
+ };
36835
+ domains: {
36836
+ additionalProperties: {
36837
+ type: "string";
36838
+ };
36839
+ type: "object";
36840
+ };
36841
+ teams: {
36842
+ additionalProperties: {
36843
+ type: "string";
36844
+ };
36845
+ type: "object";
36846
+ };
36847
+ users: {
36848
+ additionalProperties: {
36849
+ type: "string";
36850
+ };
36851
+ type: "object";
36852
+ };
36853
+ apiDescriptions: {
36854
+ additionalProperties: {
36855
+ type: "string";
36856
+ };
36857
+ type: "object";
36858
+ };
36859
+ dataSchemas: {
36860
+ additionalProperties: {
36861
+ type: "string";
36862
+ };
36863
+ type: "object";
36864
+ };
36865
+ apiOperations: {
36866
+ additionalProperties: {
36867
+ type: "string";
36868
+ };
36869
+ type: "object";
36870
+ };
36871
+ };
36872
+ additionalProperties: {
36873
+ additionalProperties: {
36874
+ type: "string";
36875
+ };
36876
+ type: "object";
36877
+ };
36878
+ type: "object";
36879
+ };
36880
+ entitiesTypes: {
36881
+ properties: {
36882
+ user: {
36883
+ additionalProperties: {
36884
+ type: "string";
36885
+ };
36886
+ type: "object";
36887
+ };
36888
+ service: {
36889
+ additionalProperties: {
36890
+ type: "string";
36891
+ };
36892
+ type: "object";
36893
+ };
36894
+ domain: {
36895
+ additionalProperties: {
36896
+ type: "string";
36897
+ };
36898
+ type: "object";
36899
+ };
36900
+ team: {
36901
+ additionalProperties: {
36902
+ type: "string";
36903
+ };
36904
+ type: "object";
36905
+ };
36906
+ apiDescription: {
36907
+ additionalProperties: {
36908
+ type: "string";
36909
+ };
36910
+ type: "object";
36911
+ };
36912
+ apiOperation: {
36913
+ additionalProperties: {
36914
+ type: "string";
36915
+ };
36916
+ type: "object";
36917
+ };
36918
+ dataSchema: {
36919
+ additionalProperties: {
36920
+ type: "string";
36921
+ };
36922
+ type: "object";
36923
+ };
36924
+ };
36925
+ additionalProperties: {
36926
+ additionalProperties: {
36927
+ type: "string";
36928
+ };
36929
+ type: "object";
36930
+ };
36931
+ type: "object";
36932
+ };
36933
+ entitiesGroups: {
36934
+ items: {
36935
+ properties: {
36936
+ entities: {
36937
+ items: {
36938
+ type: "string";
36939
+ };
36940
+ type: "array";
36941
+ };
36942
+ config: {
36943
+ additionalProperties: {
36944
+ type: "string";
36945
+ };
36946
+ type: "object";
36947
+ };
36948
+ };
36949
+ additionalProperties: false;
36950
+ type: "object";
36951
+ };
36952
+ type: "array";
36953
+ };
36954
+ };
36955
+ additionalProperties: false;
36956
+ type: "object";
36957
+ };
35744
36958
  teamNamePatterns: {
35745
36959
  items: {
35746
36960
  type: "string";
@@ -38177,6 +39391,162 @@ export declare const rootRedoclyConfigSchema: {
38177
39391
  };
38178
39392
  };
38179
39393
  };
39394
+ readonly entitiesCatalog: {
39395
+ readonly type: "object";
39396
+ readonly properties: {
39397
+ readonly catalogs: {
39398
+ readonly type: "object";
39399
+ readonly properties: {
39400
+ readonly all: {
39401
+ readonly type: "object";
39402
+ readonly additionalProperties: {
39403
+ readonly type: "string";
39404
+ };
39405
+ };
39406
+ readonly services: {
39407
+ readonly type: "object";
39408
+ readonly additionalProperties: {
39409
+ readonly type: "string";
39410
+ };
39411
+ };
39412
+ readonly domains: {
39413
+ readonly type: "object";
39414
+ readonly additionalProperties: {
39415
+ readonly type: "string";
39416
+ };
39417
+ };
39418
+ readonly teams: {
39419
+ readonly type: "object";
39420
+ readonly additionalProperties: {
39421
+ readonly type: "string";
39422
+ };
39423
+ };
39424
+ readonly users: {
39425
+ readonly type: "object";
39426
+ readonly additionalProperties: {
39427
+ readonly type: "string";
39428
+ };
39429
+ };
39430
+ readonly apiDescriptions: {
39431
+ readonly type: "object";
39432
+ readonly additionalProperties: {
39433
+ readonly type: "string";
39434
+ };
39435
+ };
39436
+ readonly dataSchemas: {
39437
+ readonly type: "object";
39438
+ readonly additionalProperties: {
39439
+ readonly type: "string";
39440
+ };
39441
+ };
39442
+ readonly apiOperations: {
39443
+ readonly type: "object";
39444
+ readonly additionalProperties: {
39445
+ readonly type: "string";
39446
+ };
39447
+ };
39448
+ };
39449
+ readonly additionalProperties: {
39450
+ readonly type: "object";
39451
+ readonly additionalProperties: {
39452
+ readonly type: "string";
39453
+ };
39454
+ };
39455
+ };
39456
+ readonly entitiesTypes: {
39457
+ readonly type: "object";
39458
+ readonly properties: {
39459
+ readonly service: {
39460
+ readonly type: "object";
39461
+ readonly additionalProperties: {
39462
+ readonly type: "string";
39463
+ };
39464
+ };
39465
+ readonly domain: {
39466
+ readonly type: "object";
39467
+ readonly additionalProperties: {
39468
+ readonly type: "string";
39469
+ };
39470
+ };
39471
+ readonly team: {
39472
+ readonly type: "object";
39473
+ readonly additionalProperties: {
39474
+ readonly type: "string";
39475
+ };
39476
+ };
39477
+ readonly user: {
39478
+ readonly type: "object";
39479
+ readonly additionalProperties: {
39480
+ readonly type: "string";
39481
+ };
39482
+ };
39483
+ readonly apiDescription: {
39484
+ readonly type: "object";
39485
+ readonly additionalProperties: {
39486
+ readonly type: "string";
39487
+ };
39488
+ };
39489
+ readonly apiOperation: {
39490
+ readonly type: "object";
39491
+ readonly additionalProperties: {
39492
+ readonly type: "string";
39493
+ };
39494
+ };
39495
+ readonly dataSchema: {
39496
+ readonly type: "object";
39497
+ readonly additionalProperties: {
39498
+ readonly type: "string";
39499
+ };
39500
+ };
39501
+ };
39502
+ readonly additionalProperties: {
39503
+ readonly type: "object";
39504
+ readonly additionalProperties: {
39505
+ readonly type: "string";
39506
+ };
39507
+ };
39508
+ };
39509
+ readonly entitiesGroups: {
39510
+ readonly type: "array";
39511
+ readonly items: {
39512
+ readonly type: "object";
39513
+ readonly properties: {
39514
+ readonly entities: {
39515
+ readonly type: "array";
39516
+ readonly items: {
39517
+ readonly type: "string";
39518
+ };
39519
+ };
39520
+ readonly config: {
39521
+ readonly type: "object";
39522
+ readonly additionalProperties: {
39523
+ readonly type: "string";
39524
+ };
39525
+ };
39526
+ };
39527
+ readonly additionalProperties: false;
39528
+ };
39529
+ };
39530
+ readonly entities: {
39531
+ readonly type: "object";
39532
+ readonly properties: {
39533
+ readonly '**': {
39534
+ readonly type: "object";
39535
+ readonly additionalProperties: {
39536
+ readonly type: "string";
39537
+ };
39538
+ };
39539
+ };
39540
+ readonly additionalProperties: {
39541
+ readonly type: "object";
39542
+ readonly additionalProperties: {
39543
+ readonly type: "string";
39544
+ };
39545
+ };
39546
+ };
39547
+ };
39548
+ readonly additionalProperties: false;
39549
+ };
38180
39550
  };
38181
39551
  readonly additionalProperties: {
38182
39552
  readonly type: "object";
@@ -44093,7 +45463,7 @@ export declare const rootRedoclyConfigSchema: {
44093
45463
  };
44094
45464
  readonly operator: {
44095
45465
  readonly type: "string";
44096
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45466
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44097
45467
  };
44098
45468
  readonly value: {
44099
45469
  readonly oneOf: readonly [{
@@ -44104,6 +45474,10 @@ export declare const rootRedoclyConfigSchema: {
44104
45474
  readonly type: "number";
44105
45475
  }];
44106
45476
  };
45477
+ readonly modifier: {
45478
+ readonly type: "string";
45479
+ readonly enum: readonly ["not"];
45480
+ };
44107
45481
  readonly match: {
44108
45482
  readonly type: "array";
44109
45483
  readonly items: {
@@ -44114,7 +45488,7 @@ export declare const rootRedoclyConfigSchema: {
44114
45488
  };
44115
45489
  readonly operator: {
44116
45490
  readonly type: "string";
44117
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45491
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44118
45492
  };
44119
45493
  readonly value: {
44120
45494
  readonly oneOf: readonly [{
@@ -44125,6 +45499,10 @@ export declare const rootRedoclyConfigSchema: {
44125
45499
  readonly type: "number";
44126
45500
  }];
44127
45501
  };
45502
+ readonly modifier: {
45503
+ readonly type: "string";
45504
+ readonly enum: readonly ["not"];
45505
+ };
44128
45506
  };
44129
45507
  };
44130
45508
  };
@@ -44134,7 +45512,7 @@ export declare const rootRedoclyConfigSchema: {
44134
45512
  readonly properties: {
44135
45513
  readonly operator: {
44136
45514
  readonly type: "string";
44137
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45515
+ readonly enum: readonly ["and", "or"];
44138
45516
  };
44139
45517
  readonly conditions: {
44140
45518
  readonly type: "array";
@@ -44147,7 +45525,7 @@ export declare const rootRedoclyConfigSchema: {
44147
45525
  };
44148
45526
  readonly operator: {
44149
45527
  readonly type: "string";
44150
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45528
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44151
45529
  };
44152
45530
  readonly value: {
44153
45531
  readonly oneOf: readonly [{
@@ -44158,6 +45536,10 @@ export declare const rootRedoclyConfigSchema: {
44158
45536
  readonly type: "number";
44159
45537
  }];
44160
45538
  };
45539
+ readonly modifier: {
45540
+ readonly type: "string";
45541
+ readonly enum: readonly ["not"];
45542
+ };
44161
45543
  readonly match: {
44162
45544
  readonly type: "array";
44163
45545
  readonly items: {
@@ -44168,7 +45550,7 @@ export declare const rootRedoclyConfigSchema: {
44168
45550
  };
44169
45551
  readonly operator: {
44170
45552
  readonly type: "string";
44171
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45553
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44172
45554
  };
44173
45555
  readonly value: {
44174
45556
  readonly oneOf: readonly [{
@@ -44179,6 +45561,10 @@ export declare const rootRedoclyConfigSchema: {
44179
45561
  readonly type: "number";
44180
45562
  }];
44181
45563
  };
45564
+ readonly modifier: {
45565
+ readonly type: "string";
45566
+ readonly enum: readonly ["not"];
45567
+ };
44182
45568
  };
44183
45569
  };
44184
45570
  };
@@ -44188,7 +45574,7 @@ export declare const rootRedoclyConfigSchema: {
44188
45574
  readonly properties: {
44189
45575
  readonly operator: {
44190
45576
  readonly type: "string";
44191
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45577
+ readonly enum: readonly ["and", "or"];
44192
45578
  };
44193
45579
  readonly conditions: {
44194
45580
  readonly type: "array";
@@ -44200,7 +45586,7 @@ export declare const rootRedoclyConfigSchema: {
44200
45586
  };
44201
45587
  readonly operator: {
44202
45588
  readonly type: "string";
44203
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45589
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44204
45590
  };
44205
45591
  readonly value: {
44206
45592
  readonly oneOf: readonly [{
@@ -44211,6 +45597,10 @@ export declare const rootRedoclyConfigSchema: {
44211
45597
  readonly type: "number";
44212
45598
  }];
44213
45599
  };
45600
+ readonly modifier: {
45601
+ readonly type: "string";
45602
+ readonly enum: readonly ["not"];
45603
+ };
44214
45604
  readonly match: {
44215
45605
  readonly type: "array";
44216
45606
  readonly items: {
@@ -44221,7 +45611,7 @@ export declare const rootRedoclyConfigSchema: {
44221
45611
  };
44222
45612
  readonly operator: {
44223
45613
  readonly type: "string";
44224
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45614
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44225
45615
  };
44226
45616
  readonly value: {
44227
45617
  readonly oneOf: readonly [{
@@ -44232,6 +45622,10 @@ export declare const rootRedoclyConfigSchema: {
44232
45622
  readonly type: "number";
44233
45623
  }];
44234
45624
  };
45625
+ readonly modifier: {
45626
+ readonly type: "string";
45627
+ readonly enum: readonly ["not"];
45628
+ };
44235
45629
  };
44236
45630
  };
44237
45631
  };
@@ -44254,7 +45648,7 @@ export declare const rootRedoclyConfigSchema: {
44254
45648
  readonly properties: {
44255
45649
  readonly operator: {
44256
45650
  readonly type: "string";
44257
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45651
+ readonly enum: readonly ["and", "or"];
44258
45652
  };
44259
45653
  readonly conditions: {
44260
45654
  readonly type: "array";
@@ -44267,7 +45661,7 @@ export declare const rootRedoclyConfigSchema: {
44267
45661
  };
44268
45662
  readonly operator: {
44269
45663
  readonly type: "string";
44270
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45664
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44271
45665
  };
44272
45666
  readonly value: {
44273
45667
  readonly oneOf: readonly [{
@@ -44278,6 +45672,10 @@ export declare const rootRedoclyConfigSchema: {
44278
45672
  readonly type: "number";
44279
45673
  }];
44280
45674
  };
45675
+ readonly modifier: {
45676
+ readonly type: "string";
45677
+ readonly enum: readonly ["not"];
45678
+ };
44281
45679
  readonly match: {
44282
45680
  readonly type: "array";
44283
45681
  readonly items: {
@@ -44288,7 +45686,7 @@ export declare const rootRedoclyConfigSchema: {
44288
45686
  };
44289
45687
  readonly operator: {
44290
45688
  readonly type: "string";
44291
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45689
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44292
45690
  };
44293
45691
  readonly value: {
44294
45692
  readonly oneOf: readonly [{
@@ -44299,6 +45697,10 @@ export declare const rootRedoclyConfigSchema: {
44299
45697
  readonly type: "number";
44300
45698
  }];
44301
45699
  };
45700
+ readonly modifier: {
45701
+ readonly type: "string";
45702
+ readonly enum: readonly ["not"];
45703
+ };
44302
45704
  };
44303
45705
  };
44304
45706
  };
@@ -44308,7 +45710,7 @@ export declare const rootRedoclyConfigSchema: {
44308
45710
  readonly properties: {
44309
45711
  readonly operator: {
44310
45712
  readonly type: "string";
44311
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45713
+ readonly enum: readonly ["and", "or"];
44312
45714
  };
44313
45715
  readonly conditions: {
44314
45716
  readonly type: "array";
@@ -44321,7 +45723,7 @@ export declare const rootRedoclyConfigSchema: {
44321
45723
  };
44322
45724
  readonly operator: {
44323
45725
  readonly type: "string";
44324
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45726
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44325
45727
  };
44326
45728
  readonly value: {
44327
45729
  readonly oneOf: readonly [{
@@ -44332,6 +45734,10 @@ export declare const rootRedoclyConfigSchema: {
44332
45734
  readonly type: "number";
44333
45735
  }];
44334
45736
  };
45737
+ readonly modifier: {
45738
+ readonly type: "string";
45739
+ readonly enum: readonly ["not"];
45740
+ };
44335
45741
  readonly match: {
44336
45742
  readonly type: "array";
44337
45743
  readonly items: {
@@ -44342,7 +45748,7 @@ export declare const rootRedoclyConfigSchema: {
44342
45748
  };
44343
45749
  readonly operator: {
44344
45750
  readonly type: "string";
44345
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45751
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44346
45752
  };
44347
45753
  readonly value: {
44348
45754
  readonly oneOf: readonly [{
@@ -44353,6 +45759,10 @@ export declare const rootRedoclyConfigSchema: {
44353
45759
  readonly type: "number";
44354
45760
  }];
44355
45761
  };
45762
+ readonly modifier: {
45763
+ readonly type: "string";
45764
+ readonly enum: readonly ["not"];
45765
+ };
44356
45766
  };
44357
45767
  };
44358
45768
  };
@@ -44362,7 +45772,7 @@ export declare const rootRedoclyConfigSchema: {
44362
45772
  readonly properties: {
44363
45773
  readonly operator: {
44364
45774
  readonly type: "string";
44365
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45775
+ readonly enum: readonly ["and", "or"];
44366
45776
  };
44367
45777
  readonly conditions: {
44368
45778
  readonly type: "array";
@@ -44374,7 +45784,7 @@ export declare const rootRedoclyConfigSchema: {
44374
45784
  };
44375
45785
  readonly operator: {
44376
45786
  readonly type: "string";
44377
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45787
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44378
45788
  };
44379
45789
  readonly value: {
44380
45790
  readonly oneOf: readonly [{
@@ -44385,6 +45795,10 @@ export declare const rootRedoclyConfigSchema: {
44385
45795
  readonly type: "number";
44386
45796
  }];
44387
45797
  };
45798
+ readonly modifier: {
45799
+ readonly type: "string";
45800
+ readonly enum: readonly ["not"];
45801
+ };
44388
45802
  readonly match: {
44389
45803
  readonly type: "array";
44390
45804
  readonly items: {
@@ -44395,7 +45809,7 @@ export declare const rootRedoclyConfigSchema: {
44395
45809
  };
44396
45810
  readonly operator: {
44397
45811
  readonly type: "string";
44398
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
45812
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
44399
45813
  };
44400
45814
  readonly value: {
44401
45815
  readonly oneOf: readonly [{
@@ -44406,6 +45820,10 @@ export declare const rootRedoclyConfigSchema: {
44406
45820
  readonly type: "number";
44407
45821
  }];
44408
45822
  };
45823
+ readonly modifier: {
45824
+ readonly type: "string";
45825
+ readonly enum: readonly ["not"];
45826
+ };
44409
45827
  };
44410
45828
  };
44411
45829
  };
@@ -50625,7 +52043,7 @@ export declare const rootRedoclyConfigSchema: {
50625
52043
  };
50626
52044
  readonly operator: {
50627
52045
  readonly type: "string";
50628
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52046
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50629
52047
  };
50630
52048
  readonly value: {
50631
52049
  readonly oneOf: readonly [{
@@ -50636,6 +52054,10 @@ export declare const rootRedoclyConfigSchema: {
50636
52054
  readonly type: "number";
50637
52055
  }];
50638
52056
  };
52057
+ readonly modifier: {
52058
+ readonly type: "string";
52059
+ readonly enum: readonly ["not"];
52060
+ };
50639
52061
  readonly match: {
50640
52062
  readonly type: "array";
50641
52063
  readonly items: {
@@ -50646,7 +52068,7 @@ export declare const rootRedoclyConfigSchema: {
50646
52068
  };
50647
52069
  readonly operator: {
50648
52070
  readonly type: "string";
50649
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52071
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50650
52072
  };
50651
52073
  readonly value: {
50652
52074
  readonly oneOf: readonly [{
@@ -50657,6 +52079,10 @@ export declare const rootRedoclyConfigSchema: {
50657
52079
  readonly type: "number";
50658
52080
  }];
50659
52081
  };
52082
+ readonly modifier: {
52083
+ readonly type: "string";
52084
+ readonly enum: readonly ["not"];
52085
+ };
50660
52086
  };
50661
52087
  };
50662
52088
  };
@@ -50666,7 +52092,7 @@ export declare const rootRedoclyConfigSchema: {
50666
52092
  readonly properties: {
50667
52093
  readonly operator: {
50668
52094
  readonly type: "string";
50669
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52095
+ readonly enum: readonly ["and", "or"];
50670
52096
  };
50671
52097
  readonly conditions: {
50672
52098
  readonly type: "array";
@@ -50679,7 +52105,7 @@ export declare const rootRedoclyConfigSchema: {
50679
52105
  };
50680
52106
  readonly operator: {
50681
52107
  readonly type: "string";
50682
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52108
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50683
52109
  };
50684
52110
  readonly value: {
50685
52111
  readonly oneOf: readonly [{
@@ -50690,6 +52116,10 @@ export declare const rootRedoclyConfigSchema: {
50690
52116
  readonly type: "number";
50691
52117
  }];
50692
52118
  };
52119
+ readonly modifier: {
52120
+ readonly type: "string";
52121
+ readonly enum: readonly ["not"];
52122
+ };
50693
52123
  readonly match: {
50694
52124
  readonly type: "array";
50695
52125
  readonly items: {
@@ -50700,7 +52130,7 @@ export declare const rootRedoclyConfigSchema: {
50700
52130
  };
50701
52131
  readonly operator: {
50702
52132
  readonly type: "string";
50703
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52133
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50704
52134
  };
50705
52135
  readonly value: {
50706
52136
  readonly oneOf: readonly [{
@@ -50711,6 +52141,10 @@ export declare const rootRedoclyConfigSchema: {
50711
52141
  readonly type: "number";
50712
52142
  }];
50713
52143
  };
52144
+ readonly modifier: {
52145
+ readonly type: "string";
52146
+ readonly enum: readonly ["not"];
52147
+ };
50714
52148
  };
50715
52149
  };
50716
52150
  };
@@ -50720,7 +52154,7 @@ export declare const rootRedoclyConfigSchema: {
50720
52154
  readonly properties: {
50721
52155
  readonly operator: {
50722
52156
  readonly type: "string";
50723
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52157
+ readonly enum: readonly ["and", "or"];
50724
52158
  };
50725
52159
  readonly conditions: {
50726
52160
  readonly type: "array";
@@ -50732,7 +52166,7 @@ export declare const rootRedoclyConfigSchema: {
50732
52166
  };
50733
52167
  readonly operator: {
50734
52168
  readonly type: "string";
50735
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52169
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50736
52170
  };
50737
52171
  readonly value: {
50738
52172
  readonly oneOf: readonly [{
@@ -50743,6 +52177,10 @@ export declare const rootRedoclyConfigSchema: {
50743
52177
  readonly type: "number";
50744
52178
  }];
50745
52179
  };
52180
+ readonly modifier: {
52181
+ readonly type: "string";
52182
+ readonly enum: readonly ["not"];
52183
+ };
50746
52184
  readonly match: {
50747
52185
  readonly type: "array";
50748
52186
  readonly items: {
@@ -50753,7 +52191,7 @@ export declare const rootRedoclyConfigSchema: {
50753
52191
  };
50754
52192
  readonly operator: {
50755
52193
  readonly type: "string";
50756
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52194
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50757
52195
  };
50758
52196
  readonly value: {
50759
52197
  readonly oneOf: readonly [{
@@ -50764,6 +52202,10 @@ export declare const rootRedoclyConfigSchema: {
50764
52202
  readonly type: "number";
50765
52203
  }];
50766
52204
  };
52205
+ readonly modifier: {
52206
+ readonly type: "string";
52207
+ readonly enum: readonly ["not"];
52208
+ };
50767
52209
  };
50768
52210
  };
50769
52211
  };
@@ -50786,7 +52228,7 @@ export declare const rootRedoclyConfigSchema: {
50786
52228
  readonly properties: {
50787
52229
  readonly operator: {
50788
52230
  readonly type: "string";
50789
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52231
+ readonly enum: readonly ["and", "or"];
50790
52232
  };
50791
52233
  readonly conditions: {
50792
52234
  readonly type: "array";
@@ -50799,7 +52241,7 @@ export declare const rootRedoclyConfigSchema: {
50799
52241
  };
50800
52242
  readonly operator: {
50801
52243
  readonly type: "string";
50802
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52244
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50803
52245
  };
50804
52246
  readonly value: {
50805
52247
  readonly oneOf: readonly [{
@@ -50810,6 +52252,10 @@ export declare const rootRedoclyConfigSchema: {
50810
52252
  readonly type: "number";
50811
52253
  }];
50812
52254
  };
52255
+ readonly modifier: {
52256
+ readonly type: "string";
52257
+ readonly enum: readonly ["not"];
52258
+ };
50813
52259
  readonly match: {
50814
52260
  readonly type: "array";
50815
52261
  readonly items: {
@@ -50820,7 +52266,7 @@ export declare const rootRedoclyConfigSchema: {
50820
52266
  };
50821
52267
  readonly operator: {
50822
52268
  readonly type: "string";
50823
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52269
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50824
52270
  };
50825
52271
  readonly value: {
50826
52272
  readonly oneOf: readonly [{
@@ -50831,6 +52277,10 @@ export declare const rootRedoclyConfigSchema: {
50831
52277
  readonly type: "number";
50832
52278
  }];
50833
52279
  };
52280
+ readonly modifier: {
52281
+ readonly type: "string";
52282
+ readonly enum: readonly ["not"];
52283
+ };
50834
52284
  };
50835
52285
  };
50836
52286
  };
@@ -50840,7 +52290,7 @@ export declare const rootRedoclyConfigSchema: {
50840
52290
  readonly properties: {
50841
52291
  readonly operator: {
50842
52292
  readonly type: "string";
50843
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52293
+ readonly enum: readonly ["and", "or"];
50844
52294
  };
50845
52295
  readonly conditions: {
50846
52296
  readonly type: "array";
@@ -50853,7 +52303,7 @@ export declare const rootRedoclyConfigSchema: {
50853
52303
  };
50854
52304
  readonly operator: {
50855
52305
  readonly type: "string";
50856
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52306
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50857
52307
  };
50858
52308
  readonly value: {
50859
52309
  readonly oneOf: readonly [{
@@ -50864,6 +52314,10 @@ export declare const rootRedoclyConfigSchema: {
50864
52314
  readonly type: "number";
50865
52315
  }];
50866
52316
  };
52317
+ readonly modifier: {
52318
+ readonly type: "string";
52319
+ readonly enum: readonly ["not"];
52320
+ };
50867
52321
  readonly match: {
50868
52322
  readonly type: "array";
50869
52323
  readonly items: {
@@ -50874,7 +52328,7 @@ export declare const rootRedoclyConfigSchema: {
50874
52328
  };
50875
52329
  readonly operator: {
50876
52330
  readonly type: "string";
50877
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52331
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50878
52332
  };
50879
52333
  readonly value: {
50880
52334
  readonly oneOf: readonly [{
@@ -50885,6 +52339,10 @@ export declare const rootRedoclyConfigSchema: {
50885
52339
  readonly type: "number";
50886
52340
  }];
50887
52341
  };
52342
+ readonly modifier: {
52343
+ readonly type: "string";
52344
+ readonly enum: readonly ["not"];
52345
+ };
50888
52346
  };
50889
52347
  };
50890
52348
  };
@@ -50894,7 +52352,7 @@ export declare const rootRedoclyConfigSchema: {
50894
52352
  readonly properties: {
50895
52353
  readonly operator: {
50896
52354
  readonly type: "string";
50897
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52355
+ readonly enum: readonly ["and", "or"];
50898
52356
  };
50899
52357
  readonly conditions: {
50900
52358
  readonly type: "array";
@@ -50906,7 +52364,7 @@ export declare const rootRedoclyConfigSchema: {
50906
52364
  };
50907
52365
  readonly operator: {
50908
52366
  readonly type: "string";
50909
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52367
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50910
52368
  };
50911
52369
  readonly value: {
50912
52370
  readonly oneOf: readonly [{
@@ -50917,6 +52375,10 @@ export declare const rootRedoclyConfigSchema: {
50917
52375
  readonly type: "number";
50918
52376
  }];
50919
52377
  };
52378
+ readonly modifier: {
52379
+ readonly type: "string";
52380
+ readonly enum: readonly ["not"];
52381
+ };
50920
52382
  readonly match: {
50921
52383
  readonly type: "array";
50922
52384
  readonly items: {
@@ -50927,7 +52389,7 @@ export declare const rootRedoclyConfigSchema: {
50927
52389
  };
50928
52390
  readonly operator: {
50929
52391
  readonly type: "string";
50930
- readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none", "and", "or", "not"];
52392
+ readonly enum: readonly ["eq", "in", "gt", "gte", "lt", "lte", "contains", "startsWith", "endsWith", "exists", "isEmpty", "between", "matches", "some", "every", "none"];
50931
52393
  };
50932
52394
  readonly value: {
50933
52395
  readonly oneOf: readonly [{
@@ -50938,6 +52400,10 @@ export declare const rootRedoclyConfigSchema: {
50938
52400
  readonly type: "number";
50939
52401
  }];
50940
52402
  };
52403
+ readonly modifier: {
52404
+ readonly type: "string";
52405
+ readonly enum: readonly ["not"];
52406
+ };
50941
52407
  };
50942
52408
  };
50943
52409
  };
@@ -51469,6 +52935,12 @@ export declare const rootRedoclyConfigSchema: {
51469
52935
  readonly enum: readonly ["info", "success", "warning", "error"];
51470
52936
  readonly default: "info";
51471
52937
  };
52938
+ readonly rbac: {
52939
+ readonly type: "object";
52940
+ readonly additionalProperties: {
52941
+ readonly type: "string";
52942
+ };
52943
+ };
51472
52944
  };
51473
52945
  readonly required: readonly ["content"];
51474
52946
  readonly additionalProperties: false;
@@ -51888,6 +53360,162 @@ export declare const rootRedoclyConfigSchema: {
51888
53360
  };
51889
53361
  };
51890
53362
  };
53363
+ readonly entitiesCatalog: {
53364
+ readonly type: "object";
53365
+ readonly properties: {
53366
+ readonly catalogs: {
53367
+ readonly type: "object";
53368
+ readonly properties: {
53369
+ readonly all: {
53370
+ readonly type: "object";
53371
+ readonly additionalProperties: {
53372
+ readonly type: "string";
53373
+ };
53374
+ };
53375
+ readonly services: {
53376
+ readonly type: "object";
53377
+ readonly additionalProperties: {
53378
+ readonly type: "string";
53379
+ };
53380
+ };
53381
+ readonly domains: {
53382
+ readonly type: "object";
53383
+ readonly additionalProperties: {
53384
+ readonly type: "string";
53385
+ };
53386
+ };
53387
+ readonly teams: {
53388
+ readonly type: "object";
53389
+ readonly additionalProperties: {
53390
+ readonly type: "string";
53391
+ };
53392
+ };
53393
+ readonly users: {
53394
+ readonly type: "object";
53395
+ readonly additionalProperties: {
53396
+ readonly type: "string";
53397
+ };
53398
+ };
53399
+ readonly apiDescriptions: {
53400
+ readonly type: "object";
53401
+ readonly additionalProperties: {
53402
+ readonly type: "string";
53403
+ };
53404
+ };
53405
+ readonly dataSchemas: {
53406
+ readonly type: "object";
53407
+ readonly additionalProperties: {
53408
+ readonly type: "string";
53409
+ };
53410
+ };
53411
+ readonly apiOperations: {
53412
+ readonly type: "object";
53413
+ readonly additionalProperties: {
53414
+ readonly type: "string";
53415
+ };
53416
+ };
53417
+ };
53418
+ readonly additionalProperties: {
53419
+ readonly type: "object";
53420
+ readonly additionalProperties: {
53421
+ readonly type: "string";
53422
+ };
53423
+ };
53424
+ };
53425
+ readonly entitiesTypes: {
53426
+ readonly type: "object";
53427
+ readonly properties: {
53428
+ readonly service: {
53429
+ readonly type: "object";
53430
+ readonly additionalProperties: {
53431
+ readonly type: "string";
53432
+ };
53433
+ };
53434
+ readonly domain: {
53435
+ readonly type: "object";
53436
+ readonly additionalProperties: {
53437
+ readonly type: "string";
53438
+ };
53439
+ };
53440
+ readonly team: {
53441
+ readonly type: "object";
53442
+ readonly additionalProperties: {
53443
+ readonly type: "string";
53444
+ };
53445
+ };
53446
+ readonly user: {
53447
+ readonly type: "object";
53448
+ readonly additionalProperties: {
53449
+ readonly type: "string";
53450
+ };
53451
+ };
53452
+ readonly apiDescription: {
53453
+ readonly type: "object";
53454
+ readonly additionalProperties: {
53455
+ readonly type: "string";
53456
+ };
53457
+ };
53458
+ readonly apiOperation: {
53459
+ readonly type: "object";
53460
+ readonly additionalProperties: {
53461
+ readonly type: "string";
53462
+ };
53463
+ };
53464
+ readonly dataSchema: {
53465
+ readonly type: "object";
53466
+ readonly additionalProperties: {
53467
+ readonly type: "string";
53468
+ };
53469
+ };
53470
+ };
53471
+ readonly additionalProperties: {
53472
+ readonly type: "object";
53473
+ readonly additionalProperties: {
53474
+ readonly type: "string";
53475
+ };
53476
+ };
53477
+ };
53478
+ readonly entitiesGroups: {
53479
+ readonly type: "array";
53480
+ readonly items: {
53481
+ readonly type: "object";
53482
+ readonly properties: {
53483
+ readonly entities: {
53484
+ readonly type: "array";
53485
+ readonly items: {
53486
+ readonly type: "string";
53487
+ };
53488
+ };
53489
+ readonly config: {
53490
+ readonly type: "object";
53491
+ readonly additionalProperties: {
53492
+ readonly type: "string";
53493
+ };
53494
+ };
53495
+ };
53496
+ readonly additionalProperties: false;
53497
+ };
53498
+ };
53499
+ readonly entities: {
53500
+ readonly type: "object";
53501
+ readonly properties: {
53502
+ readonly '**': {
53503
+ readonly type: "object";
53504
+ readonly additionalProperties: {
53505
+ readonly type: "string";
53506
+ };
53507
+ };
53508
+ };
53509
+ readonly additionalProperties: {
53510
+ readonly type: "object";
53511
+ readonly additionalProperties: {
53512
+ readonly type: "string";
53513
+ };
53514
+ };
53515
+ };
53516
+ };
53517
+ readonly additionalProperties: false;
53518
+ };
51891
53519
  };
51892
53520
  readonly additionalProperties: {
51893
53521
  readonly type: "object";