@redocly/config 0.41.4 → 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";
@@ -19834,6 +20470,12 @@ export declare const redoclyConfigSchema: {
19834
20470
  readonly enum: readonly ["info", "success", "warning", "error"];
19835
20471
  readonly default: "info";
19836
20472
  };
20473
+ readonly rbac: {
20474
+ readonly type: "object";
20475
+ readonly additionalProperties: {
20476
+ readonly type: "string";
20477
+ };
20478
+ };
19837
20479
  };
19838
20480
  readonly required: readonly ["content"];
19839
20481
  readonly additionalProperties: false;
@@ -20253,6 +20895,162 @@ export declare const redoclyConfigSchema: {
20253
20895
  };
20254
20896
  };
20255
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
+ };
20256
21054
  };
20257
21055
  readonly additionalProperties: {
20258
21056
  readonly type: "object";
@@ -32051,6 +32849,158 @@ export declare const rootRedoclyConfigSchema: {
32051
32849
  };
32052
32850
  type: "object";
32053
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
+ };
32054
33004
  teamNamePatterns: {
32055
33005
  items: {
32056
33006
  type: "string";
@@ -35670,6 +36620,12 @@ export declare const rootRedoclyConfigSchema: {
35670
36620
  content: {
35671
36621
  type: "string";
35672
36622
  };
36623
+ rbac: {
36624
+ additionalProperties: {
36625
+ type: "string";
36626
+ };
36627
+ type: "object";
36628
+ };
35673
36629
  dismissible: {
35674
36630
  type: "boolean";
35675
36631
  };
@@ -35843,6 +36799,162 @@ export declare const rootRedoclyConfigSchema: {
35843
36799
  };
35844
36800
  type: "object";
35845
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
+ };
35846
36958
  teamNamePatterns: {
35847
36959
  items: {
35848
36960
  type: "string";
@@ -38279,6 +39391,162 @@ export declare const rootRedoclyConfigSchema: {
38279
39391
  };
38280
39392
  };
38281
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
+ };
38282
39550
  };
38283
39551
  readonly additionalProperties: {
38284
39552
  readonly type: "object";
@@ -51667,6 +52935,12 @@ export declare const rootRedoclyConfigSchema: {
51667
52935
  readonly enum: readonly ["info", "success", "warning", "error"];
51668
52936
  readonly default: "info";
51669
52937
  };
52938
+ readonly rbac: {
52939
+ readonly type: "object";
52940
+ readonly additionalProperties: {
52941
+ readonly type: "string";
52942
+ };
52943
+ };
51670
52944
  };
51671
52945
  readonly required: readonly ["content"];
51672
52946
  readonly additionalProperties: false;
@@ -52086,6 +53360,162 @@ export declare const rootRedoclyConfigSchema: {
52086
53360
  };
52087
53361
  };
52088
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
+ };
52089
53519
  };
52090
53520
  readonly additionalProperties: {
52091
53521
  readonly type: "object";