@redocly/config 0.55.0 → 0.56.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/recheck-config-schema.d.ts +268 -0
- package/lib/root-config-schema.d.ts +804 -0
- package/lib/types/config-types.d.ts +2 -0
- package/lib-esm/index.d.ts +1 -0
- package/lib-esm/index.js +1 -1
- package/lib-esm/recheck-config-schema.d.ts +268 -0
- package/lib-esm/root-config-schema.d.ts +804 -0
- package/lib-esm/types/config-types.d.ts +2 -0
- package/package.json +6 -4
|
@@ -26650,6 +26650,274 @@ export declare const redoclyConfigSchema: {
|
|
|
26650
26650
|
};
|
|
26651
26651
|
readonly additionalProperties: false;
|
|
26652
26652
|
};
|
|
26653
|
+
readonly recheck: {
|
|
26654
|
+
readonly type: 'object';
|
|
26655
|
+
readonly properties: {
|
|
26656
|
+
readonly rules: {
|
|
26657
|
+
readonly type: 'object';
|
|
26658
|
+
readonly additionalProperties: {
|
|
26659
|
+
readonly oneOf: readonly [{
|
|
26660
|
+
readonly type: 'string';
|
|
26661
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
26662
|
+
}, {
|
|
26663
|
+
readonly type: 'object';
|
|
26664
|
+
readonly properties: {
|
|
26665
|
+
readonly severity: {
|
|
26666
|
+
readonly type: 'string';
|
|
26667
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
26668
|
+
};
|
|
26669
|
+
readonly message: {
|
|
26670
|
+
readonly type: 'string';
|
|
26671
|
+
readonly minLength: 1;
|
|
26672
|
+
};
|
|
26673
|
+
readonly fix: {
|
|
26674
|
+
readonly type: 'boolean';
|
|
26675
|
+
};
|
|
26676
|
+
readonly tags: {
|
|
26677
|
+
readonly type: 'array';
|
|
26678
|
+
readonly items: {
|
|
26679
|
+
readonly type: 'string';
|
|
26680
|
+
};
|
|
26681
|
+
};
|
|
26682
|
+
readonly description: {
|
|
26683
|
+
readonly type: 'string';
|
|
26684
|
+
};
|
|
26685
|
+
readonly link: {
|
|
26686
|
+
readonly type: 'string';
|
|
26687
|
+
};
|
|
26688
|
+
readonly scope: {
|
|
26689
|
+
readonly oneOf: readonly [{
|
|
26690
|
+
readonly type: 'string';
|
|
26691
|
+
readonly minLength: 1;
|
|
26692
|
+
}, {
|
|
26693
|
+
readonly type: 'array';
|
|
26694
|
+
readonly items: {
|
|
26695
|
+
readonly type: 'string';
|
|
26696
|
+
readonly minLength: 1;
|
|
26697
|
+
};
|
|
26698
|
+
readonly minItems: 1;
|
|
26699
|
+
}];
|
|
26700
|
+
};
|
|
26701
|
+
readonly appliesTo: {
|
|
26702
|
+
readonly type: 'array';
|
|
26703
|
+
readonly items: {
|
|
26704
|
+
readonly type: 'string';
|
|
26705
|
+
};
|
|
26706
|
+
};
|
|
26707
|
+
readonly excludes: {
|
|
26708
|
+
readonly type: 'array';
|
|
26709
|
+
readonly items: {
|
|
26710
|
+
readonly type: 'string';
|
|
26711
|
+
};
|
|
26712
|
+
};
|
|
26713
|
+
readonly exceptions: {
|
|
26714
|
+
readonly type: 'object';
|
|
26715
|
+
readonly properties: {
|
|
26716
|
+
readonly files: {
|
|
26717
|
+
readonly type: 'array';
|
|
26718
|
+
readonly items: {
|
|
26719
|
+
readonly type: 'string';
|
|
26720
|
+
};
|
|
26721
|
+
};
|
|
26722
|
+
readonly lines: {
|
|
26723
|
+
readonly type: 'array';
|
|
26724
|
+
readonly items: {
|
|
26725
|
+
readonly type: 'string';
|
|
26726
|
+
};
|
|
26727
|
+
};
|
|
26728
|
+
};
|
|
26729
|
+
readonly additionalProperties: false;
|
|
26730
|
+
};
|
|
26731
|
+
readonly assertions: {
|
|
26732
|
+
readonly type: 'object';
|
|
26733
|
+
readonly additionalProperties: true;
|
|
26734
|
+
};
|
|
26735
|
+
};
|
|
26736
|
+
readonly additionalProperties: false;
|
|
26737
|
+
}];
|
|
26738
|
+
};
|
|
26739
|
+
};
|
|
26740
|
+
readonly excludes: {
|
|
26741
|
+
readonly type: 'array';
|
|
26742
|
+
readonly items: {
|
|
26743
|
+
readonly type: 'string';
|
|
26744
|
+
readonly minLength: 1;
|
|
26745
|
+
};
|
|
26746
|
+
};
|
|
26747
|
+
readonly baseline: {
|
|
26748
|
+
readonly type: 'string';
|
|
26749
|
+
readonly minLength: 1;
|
|
26750
|
+
};
|
|
26751
|
+
readonly markdoc: {
|
|
26752
|
+
readonly oneOf: readonly [{
|
|
26753
|
+
readonly type: 'boolean';
|
|
26754
|
+
}, {
|
|
26755
|
+
readonly type: 'object';
|
|
26756
|
+
readonly properties: {
|
|
26757
|
+
readonly schema: {
|
|
26758
|
+
readonly oneOf: readonly [{
|
|
26759
|
+
readonly type: 'string';
|
|
26760
|
+
readonly enum: readonly ["realm"];
|
|
26761
|
+
}, {
|
|
26762
|
+
readonly type: 'boolean';
|
|
26763
|
+
}];
|
|
26764
|
+
};
|
|
26765
|
+
readonly extend: {
|
|
26766
|
+
readonly type: 'object';
|
|
26767
|
+
readonly properties: {
|
|
26768
|
+
readonly tags: {
|
|
26769
|
+
readonly type: 'object';
|
|
26770
|
+
readonly additionalProperties: {
|
|
26771
|
+
readonly type: 'object';
|
|
26772
|
+
readonly properties: {
|
|
26773
|
+
readonly selfClosing: {
|
|
26774
|
+
readonly type: 'boolean';
|
|
26775
|
+
};
|
|
26776
|
+
readonly attributes: {
|
|
26777
|
+
readonly type: 'object';
|
|
26778
|
+
readonly additionalProperties: {
|
|
26779
|
+
readonly type: 'object';
|
|
26780
|
+
readonly properties: {
|
|
26781
|
+
readonly type: {
|
|
26782
|
+
readonly type: 'string';
|
|
26783
|
+
readonly enum: readonly ["string", "number", "boolean"];
|
|
26784
|
+
};
|
|
26785
|
+
readonly required: {
|
|
26786
|
+
readonly type: 'boolean';
|
|
26787
|
+
};
|
|
26788
|
+
readonly default: {
|
|
26789
|
+
readonly oneOf: readonly [{
|
|
26790
|
+
readonly type: 'string';
|
|
26791
|
+
}, {
|
|
26792
|
+
readonly type: 'number';
|
|
26793
|
+
}, {
|
|
26794
|
+
readonly type: 'boolean';
|
|
26795
|
+
}];
|
|
26796
|
+
};
|
|
26797
|
+
readonly enum: {
|
|
26798
|
+
readonly type: 'array';
|
|
26799
|
+
readonly items: {
|
|
26800
|
+
readonly type: 'string';
|
|
26801
|
+
};
|
|
26802
|
+
readonly minItems: 1;
|
|
26803
|
+
};
|
|
26804
|
+
readonly dynamic: {
|
|
26805
|
+
readonly type: 'boolean';
|
|
26806
|
+
};
|
|
26807
|
+
};
|
|
26808
|
+
readonly required: readonly ["type"];
|
|
26809
|
+
readonly additionalProperties: false;
|
|
26810
|
+
};
|
|
26811
|
+
};
|
|
26812
|
+
};
|
|
26813
|
+
readonly additionalProperties: false;
|
|
26814
|
+
};
|
|
26815
|
+
};
|
|
26816
|
+
readonly tagsFile: {
|
|
26817
|
+
readonly type: 'string';
|
|
26818
|
+
readonly minLength: 1;
|
|
26819
|
+
};
|
|
26820
|
+
};
|
|
26821
|
+
readonly additionalProperties: false;
|
|
26822
|
+
};
|
|
26823
|
+
};
|
|
26824
|
+
readonly required: readonly ["schema"];
|
|
26825
|
+
readonly additionalProperties: false;
|
|
26826
|
+
}];
|
|
26827
|
+
};
|
|
26828
|
+
readonly apiDescriptions: {
|
|
26829
|
+
readonly type: 'object';
|
|
26830
|
+
readonly properties: {
|
|
26831
|
+
readonly rules: {
|
|
26832
|
+
readonly type: 'object';
|
|
26833
|
+
readonly additionalProperties: {
|
|
26834
|
+
readonly oneOf: readonly [{
|
|
26835
|
+
readonly type: 'string';
|
|
26836
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
26837
|
+
}, {
|
|
26838
|
+
readonly type: 'object';
|
|
26839
|
+
readonly properties: {
|
|
26840
|
+
readonly severity: {
|
|
26841
|
+
readonly type: 'string';
|
|
26842
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
26843
|
+
};
|
|
26844
|
+
readonly message: {
|
|
26845
|
+
readonly type: 'string';
|
|
26846
|
+
readonly minLength: 1;
|
|
26847
|
+
};
|
|
26848
|
+
readonly fix: {
|
|
26849
|
+
readonly type: 'boolean';
|
|
26850
|
+
};
|
|
26851
|
+
readonly tags: {
|
|
26852
|
+
readonly type: 'array';
|
|
26853
|
+
readonly items: {
|
|
26854
|
+
readonly type: 'string';
|
|
26855
|
+
};
|
|
26856
|
+
};
|
|
26857
|
+
readonly description: {
|
|
26858
|
+
readonly type: 'string';
|
|
26859
|
+
};
|
|
26860
|
+
readonly link: {
|
|
26861
|
+
readonly type: 'string';
|
|
26862
|
+
};
|
|
26863
|
+
readonly scope: {
|
|
26864
|
+
readonly oneOf: readonly [{
|
|
26865
|
+
readonly type: 'string';
|
|
26866
|
+
readonly minLength: 1;
|
|
26867
|
+
}, {
|
|
26868
|
+
readonly type: 'array';
|
|
26869
|
+
readonly items: {
|
|
26870
|
+
readonly type: 'string';
|
|
26871
|
+
readonly minLength: 1;
|
|
26872
|
+
};
|
|
26873
|
+
readonly minItems: 1;
|
|
26874
|
+
}];
|
|
26875
|
+
};
|
|
26876
|
+
readonly appliesTo: {
|
|
26877
|
+
readonly type: 'array';
|
|
26878
|
+
readonly items: {
|
|
26879
|
+
readonly type: 'string';
|
|
26880
|
+
};
|
|
26881
|
+
};
|
|
26882
|
+
readonly excludes: {
|
|
26883
|
+
readonly type: 'array';
|
|
26884
|
+
readonly items: {
|
|
26885
|
+
readonly type: 'string';
|
|
26886
|
+
};
|
|
26887
|
+
};
|
|
26888
|
+
readonly exceptions: {
|
|
26889
|
+
readonly type: 'object';
|
|
26890
|
+
readonly properties: {
|
|
26891
|
+
readonly files: {
|
|
26892
|
+
readonly type: 'array';
|
|
26893
|
+
readonly items: {
|
|
26894
|
+
readonly type: 'string';
|
|
26895
|
+
};
|
|
26896
|
+
};
|
|
26897
|
+
readonly lines: {
|
|
26898
|
+
readonly type: 'array';
|
|
26899
|
+
readonly items: {
|
|
26900
|
+
readonly type: 'string';
|
|
26901
|
+
};
|
|
26902
|
+
};
|
|
26903
|
+
};
|
|
26904
|
+
readonly additionalProperties: false;
|
|
26905
|
+
};
|
|
26906
|
+
readonly assertions: {
|
|
26907
|
+
readonly type: 'object';
|
|
26908
|
+
readonly additionalProperties: true;
|
|
26909
|
+
};
|
|
26910
|
+
};
|
|
26911
|
+
readonly additionalProperties: false;
|
|
26912
|
+
}];
|
|
26913
|
+
};
|
|
26914
|
+
};
|
|
26915
|
+
};
|
|
26916
|
+
readonly additionalProperties: false;
|
|
26917
|
+
};
|
|
26918
|
+
};
|
|
26919
|
+
readonly additionalProperties: false;
|
|
26920
|
+
};
|
|
26653
26921
|
readonly corsProxy: {
|
|
26654
26922
|
readonly type: 'object';
|
|
26655
26923
|
readonly properties: {
|
|
@@ -46650,6 +46918,274 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
46650
46918
|
};
|
|
46651
46919
|
readonly additionalProperties: false;
|
|
46652
46920
|
};
|
|
46921
|
+
readonly recheck: {
|
|
46922
|
+
readonly type: 'object';
|
|
46923
|
+
readonly properties: {
|
|
46924
|
+
readonly rules: {
|
|
46925
|
+
readonly type: 'object';
|
|
46926
|
+
readonly additionalProperties: {
|
|
46927
|
+
readonly oneOf: readonly [{
|
|
46928
|
+
readonly type: 'string';
|
|
46929
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
46930
|
+
}, {
|
|
46931
|
+
readonly type: 'object';
|
|
46932
|
+
readonly properties: {
|
|
46933
|
+
readonly severity: {
|
|
46934
|
+
readonly type: 'string';
|
|
46935
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
46936
|
+
};
|
|
46937
|
+
readonly message: {
|
|
46938
|
+
readonly type: 'string';
|
|
46939
|
+
readonly minLength: 1;
|
|
46940
|
+
};
|
|
46941
|
+
readonly fix: {
|
|
46942
|
+
readonly type: 'boolean';
|
|
46943
|
+
};
|
|
46944
|
+
readonly tags: {
|
|
46945
|
+
readonly type: 'array';
|
|
46946
|
+
readonly items: {
|
|
46947
|
+
readonly type: 'string';
|
|
46948
|
+
};
|
|
46949
|
+
};
|
|
46950
|
+
readonly description: {
|
|
46951
|
+
readonly type: 'string';
|
|
46952
|
+
};
|
|
46953
|
+
readonly link: {
|
|
46954
|
+
readonly type: 'string';
|
|
46955
|
+
};
|
|
46956
|
+
readonly scope: {
|
|
46957
|
+
readonly oneOf: readonly [{
|
|
46958
|
+
readonly type: 'string';
|
|
46959
|
+
readonly minLength: 1;
|
|
46960
|
+
}, {
|
|
46961
|
+
readonly type: 'array';
|
|
46962
|
+
readonly items: {
|
|
46963
|
+
readonly type: 'string';
|
|
46964
|
+
readonly minLength: 1;
|
|
46965
|
+
};
|
|
46966
|
+
readonly minItems: 1;
|
|
46967
|
+
}];
|
|
46968
|
+
};
|
|
46969
|
+
readonly appliesTo: {
|
|
46970
|
+
readonly type: 'array';
|
|
46971
|
+
readonly items: {
|
|
46972
|
+
readonly type: 'string';
|
|
46973
|
+
};
|
|
46974
|
+
};
|
|
46975
|
+
readonly excludes: {
|
|
46976
|
+
readonly type: 'array';
|
|
46977
|
+
readonly items: {
|
|
46978
|
+
readonly type: 'string';
|
|
46979
|
+
};
|
|
46980
|
+
};
|
|
46981
|
+
readonly exceptions: {
|
|
46982
|
+
readonly type: 'object';
|
|
46983
|
+
readonly properties: {
|
|
46984
|
+
readonly files: {
|
|
46985
|
+
readonly type: 'array';
|
|
46986
|
+
readonly items: {
|
|
46987
|
+
readonly type: 'string';
|
|
46988
|
+
};
|
|
46989
|
+
};
|
|
46990
|
+
readonly lines: {
|
|
46991
|
+
readonly type: 'array';
|
|
46992
|
+
readonly items: {
|
|
46993
|
+
readonly type: 'string';
|
|
46994
|
+
};
|
|
46995
|
+
};
|
|
46996
|
+
};
|
|
46997
|
+
readonly additionalProperties: false;
|
|
46998
|
+
};
|
|
46999
|
+
readonly assertions: {
|
|
47000
|
+
readonly type: 'object';
|
|
47001
|
+
readonly additionalProperties: true;
|
|
47002
|
+
};
|
|
47003
|
+
};
|
|
47004
|
+
readonly additionalProperties: false;
|
|
47005
|
+
}];
|
|
47006
|
+
};
|
|
47007
|
+
};
|
|
47008
|
+
readonly excludes: {
|
|
47009
|
+
readonly type: 'array';
|
|
47010
|
+
readonly items: {
|
|
47011
|
+
readonly type: 'string';
|
|
47012
|
+
readonly minLength: 1;
|
|
47013
|
+
};
|
|
47014
|
+
};
|
|
47015
|
+
readonly baseline: {
|
|
47016
|
+
readonly type: 'string';
|
|
47017
|
+
readonly minLength: 1;
|
|
47018
|
+
};
|
|
47019
|
+
readonly markdoc: {
|
|
47020
|
+
readonly oneOf: readonly [{
|
|
47021
|
+
readonly type: 'boolean';
|
|
47022
|
+
}, {
|
|
47023
|
+
readonly type: 'object';
|
|
47024
|
+
readonly properties: {
|
|
47025
|
+
readonly schema: {
|
|
47026
|
+
readonly oneOf: readonly [{
|
|
47027
|
+
readonly type: 'string';
|
|
47028
|
+
readonly enum: readonly ["realm"];
|
|
47029
|
+
}, {
|
|
47030
|
+
readonly type: 'boolean';
|
|
47031
|
+
}];
|
|
47032
|
+
};
|
|
47033
|
+
readonly extend: {
|
|
47034
|
+
readonly type: 'object';
|
|
47035
|
+
readonly properties: {
|
|
47036
|
+
readonly tags: {
|
|
47037
|
+
readonly type: 'object';
|
|
47038
|
+
readonly additionalProperties: {
|
|
47039
|
+
readonly type: 'object';
|
|
47040
|
+
readonly properties: {
|
|
47041
|
+
readonly selfClosing: {
|
|
47042
|
+
readonly type: 'boolean';
|
|
47043
|
+
};
|
|
47044
|
+
readonly attributes: {
|
|
47045
|
+
readonly type: 'object';
|
|
47046
|
+
readonly additionalProperties: {
|
|
47047
|
+
readonly type: 'object';
|
|
47048
|
+
readonly properties: {
|
|
47049
|
+
readonly type: {
|
|
47050
|
+
readonly type: 'string';
|
|
47051
|
+
readonly enum: readonly ["string", "number", "boolean"];
|
|
47052
|
+
};
|
|
47053
|
+
readonly required: {
|
|
47054
|
+
readonly type: 'boolean';
|
|
47055
|
+
};
|
|
47056
|
+
readonly default: {
|
|
47057
|
+
readonly oneOf: readonly [{
|
|
47058
|
+
readonly type: 'string';
|
|
47059
|
+
}, {
|
|
47060
|
+
readonly type: 'number';
|
|
47061
|
+
}, {
|
|
47062
|
+
readonly type: 'boolean';
|
|
47063
|
+
}];
|
|
47064
|
+
};
|
|
47065
|
+
readonly enum: {
|
|
47066
|
+
readonly type: 'array';
|
|
47067
|
+
readonly items: {
|
|
47068
|
+
readonly type: 'string';
|
|
47069
|
+
};
|
|
47070
|
+
readonly minItems: 1;
|
|
47071
|
+
};
|
|
47072
|
+
readonly dynamic: {
|
|
47073
|
+
readonly type: 'boolean';
|
|
47074
|
+
};
|
|
47075
|
+
};
|
|
47076
|
+
readonly required: readonly ["type"];
|
|
47077
|
+
readonly additionalProperties: false;
|
|
47078
|
+
};
|
|
47079
|
+
};
|
|
47080
|
+
};
|
|
47081
|
+
readonly additionalProperties: false;
|
|
47082
|
+
};
|
|
47083
|
+
};
|
|
47084
|
+
readonly tagsFile: {
|
|
47085
|
+
readonly type: 'string';
|
|
47086
|
+
readonly minLength: 1;
|
|
47087
|
+
};
|
|
47088
|
+
};
|
|
47089
|
+
readonly additionalProperties: false;
|
|
47090
|
+
};
|
|
47091
|
+
};
|
|
47092
|
+
readonly required: readonly ["schema"];
|
|
47093
|
+
readonly additionalProperties: false;
|
|
47094
|
+
}];
|
|
47095
|
+
};
|
|
47096
|
+
readonly apiDescriptions: {
|
|
47097
|
+
readonly type: 'object';
|
|
47098
|
+
readonly properties: {
|
|
47099
|
+
readonly rules: {
|
|
47100
|
+
readonly type: 'object';
|
|
47101
|
+
readonly additionalProperties: {
|
|
47102
|
+
readonly oneOf: readonly [{
|
|
47103
|
+
readonly type: 'string';
|
|
47104
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
47105
|
+
}, {
|
|
47106
|
+
readonly type: 'object';
|
|
47107
|
+
readonly properties: {
|
|
47108
|
+
readonly severity: {
|
|
47109
|
+
readonly type: 'string';
|
|
47110
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
47111
|
+
};
|
|
47112
|
+
readonly message: {
|
|
47113
|
+
readonly type: 'string';
|
|
47114
|
+
readonly minLength: 1;
|
|
47115
|
+
};
|
|
47116
|
+
readonly fix: {
|
|
47117
|
+
readonly type: 'boolean';
|
|
47118
|
+
};
|
|
47119
|
+
readonly tags: {
|
|
47120
|
+
readonly type: 'array';
|
|
47121
|
+
readonly items: {
|
|
47122
|
+
readonly type: 'string';
|
|
47123
|
+
};
|
|
47124
|
+
};
|
|
47125
|
+
readonly description: {
|
|
47126
|
+
readonly type: 'string';
|
|
47127
|
+
};
|
|
47128
|
+
readonly link: {
|
|
47129
|
+
readonly type: 'string';
|
|
47130
|
+
};
|
|
47131
|
+
readonly scope: {
|
|
47132
|
+
readonly oneOf: readonly [{
|
|
47133
|
+
readonly type: 'string';
|
|
47134
|
+
readonly minLength: 1;
|
|
47135
|
+
}, {
|
|
47136
|
+
readonly type: 'array';
|
|
47137
|
+
readonly items: {
|
|
47138
|
+
readonly type: 'string';
|
|
47139
|
+
readonly minLength: 1;
|
|
47140
|
+
};
|
|
47141
|
+
readonly minItems: 1;
|
|
47142
|
+
}];
|
|
47143
|
+
};
|
|
47144
|
+
readonly appliesTo: {
|
|
47145
|
+
readonly type: 'array';
|
|
47146
|
+
readonly items: {
|
|
47147
|
+
readonly type: 'string';
|
|
47148
|
+
};
|
|
47149
|
+
};
|
|
47150
|
+
readonly excludes: {
|
|
47151
|
+
readonly type: 'array';
|
|
47152
|
+
readonly items: {
|
|
47153
|
+
readonly type: 'string';
|
|
47154
|
+
};
|
|
47155
|
+
};
|
|
47156
|
+
readonly exceptions: {
|
|
47157
|
+
readonly type: 'object';
|
|
47158
|
+
readonly properties: {
|
|
47159
|
+
readonly files: {
|
|
47160
|
+
readonly type: 'array';
|
|
47161
|
+
readonly items: {
|
|
47162
|
+
readonly type: 'string';
|
|
47163
|
+
};
|
|
47164
|
+
};
|
|
47165
|
+
readonly lines: {
|
|
47166
|
+
readonly type: 'array';
|
|
47167
|
+
readonly items: {
|
|
47168
|
+
readonly type: 'string';
|
|
47169
|
+
};
|
|
47170
|
+
};
|
|
47171
|
+
};
|
|
47172
|
+
readonly additionalProperties: false;
|
|
47173
|
+
};
|
|
47174
|
+
readonly assertions: {
|
|
47175
|
+
readonly type: 'object';
|
|
47176
|
+
readonly additionalProperties: true;
|
|
47177
|
+
};
|
|
47178
|
+
};
|
|
47179
|
+
readonly additionalProperties: false;
|
|
47180
|
+
}];
|
|
47181
|
+
};
|
|
47182
|
+
};
|
|
47183
|
+
};
|
|
47184
|
+
readonly additionalProperties: false;
|
|
47185
|
+
};
|
|
47186
|
+
};
|
|
47187
|
+
readonly additionalProperties: false;
|
|
47188
|
+
};
|
|
46653
47189
|
readonly corsProxy: {
|
|
46654
47190
|
readonly type: 'object';
|
|
46655
47191
|
readonly properties: {
|
|
@@ -66648,6 +67184,274 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
66648
67184
|
};
|
|
66649
67185
|
readonly additionalProperties: false;
|
|
66650
67186
|
};
|
|
67187
|
+
readonly recheck: {
|
|
67188
|
+
readonly type: 'object';
|
|
67189
|
+
readonly properties: {
|
|
67190
|
+
readonly rules: {
|
|
67191
|
+
readonly type: 'object';
|
|
67192
|
+
readonly additionalProperties: {
|
|
67193
|
+
readonly oneOf: readonly [{
|
|
67194
|
+
readonly type: 'string';
|
|
67195
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
67196
|
+
}, {
|
|
67197
|
+
readonly type: 'object';
|
|
67198
|
+
readonly properties: {
|
|
67199
|
+
readonly severity: {
|
|
67200
|
+
readonly type: 'string';
|
|
67201
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
67202
|
+
};
|
|
67203
|
+
readonly message: {
|
|
67204
|
+
readonly type: 'string';
|
|
67205
|
+
readonly minLength: 1;
|
|
67206
|
+
};
|
|
67207
|
+
readonly fix: {
|
|
67208
|
+
readonly type: 'boolean';
|
|
67209
|
+
};
|
|
67210
|
+
readonly tags: {
|
|
67211
|
+
readonly type: 'array';
|
|
67212
|
+
readonly items: {
|
|
67213
|
+
readonly type: 'string';
|
|
67214
|
+
};
|
|
67215
|
+
};
|
|
67216
|
+
readonly description: {
|
|
67217
|
+
readonly type: 'string';
|
|
67218
|
+
};
|
|
67219
|
+
readonly link: {
|
|
67220
|
+
readonly type: 'string';
|
|
67221
|
+
};
|
|
67222
|
+
readonly scope: {
|
|
67223
|
+
readonly oneOf: readonly [{
|
|
67224
|
+
readonly type: 'string';
|
|
67225
|
+
readonly minLength: 1;
|
|
67226
|
+
}, {
|
|
67227
|
+
readonly type: 'array';
|
|
67228
|
+
readonly items: {
|
|
67229
|
+
readonly type: 'string';
|
|
67230
|
+
readonly minLength: 1;
|
|
67231
|
+
};
|
|
67232
|
+
readonly minItems: 1;
|
|
67233
|
+
}];
|
|
67234
|
+
};
|
|
67235
|
+
readonly appliesTo: {
|
|
67236
|
+
readonly type: 'array';
|
|
67237
|
+
readonly items: {
|
|
67238
|
+
readonly type: 'string';
|
|
67239
|
+
};
|
|
67240
|
+
};
|
|
67241
|
+
readonly excludes: {
|
|
67242
|
+
readonly type: 'array';
|
|
67243
|
+
readonly items: {
|
|
67244
|
+
readonly type: 'string';
|
|
67245
|
+
};
|
|
67246
|
+
};
|
|
67247
|
+
readonly exceptions: {
|
|
67248
|
+
readonly type: 'object';
|
|
67249
|
+
readonly properties: {
|
|
67250
|
+
readonly files: {
|
|
67251
|
+
readonly type: 'array';
|
|
67252
|
+
readonly items: {
|
|
67253
|
+
readonly type: 'string';
|
|
67254
|
+
};
|
|
67255
|
+
};
|
|
67256
|
+
readonly lines: {
|
|
67257
|
+
readonly type: 'array';
|
|
67258
|
+
readonly items: {
|
|
67259
|
+
readonly type: 'string';
|
|
67260
|
+
};
|
|
67261
|
+
};
|
|
67262
|
+
};
|
|
67263
|
+
readonly additionalProperties: false;
|
|
67264
|
+
};
|
|
67265
|
+
readonly assertions: {
|
|
67266
|
+
readonly type: 'object';
|
|
67267
|
+
readonly additionalProperties: true;
|
|
67268
|
+
};
|
|
67269
|
+
};
|
|
67270
|
+
readonly additionalProperties: false;
|
|
67271
|
+
}];
|
|
67272
|
+
};
|
|
67273
|
+
};
|
|
67274
|
+
readonly excludes: {
|
|
67275
|
+
readonly type: 'array';
|
|
67276
|
+
readonly items: {
|
|
67277
|
+
readonly type: 'string';
|
|
67278
|
+
readonly minLength: 1;
|
|
67279
|
+
};
|
|
67280
|
+
};
|
|
67281
|
+
readonly baseline: {
|
|
67282
|
+
readonly type: 'string';
|
|
67283
|
+
readonly minLength: 1;
|
|
67284
|
+
};
|
|
67285
|
+
readonly markdoc: {
|
|
67286
|
+
readonly oneOf: readonly [{
|
|
67287
|
+
readonly type: 'boolean';
|
|
67288
|
+
}, {
|
|
67289
|
+
readonly type: 'object';
|
|
67290
|
+
readonly properties: {
|
|
67291
|
+
readonly schema: {
|
|
67292
|
+
readonly oneOf: readonly [{
|
|
67293
|
+
readonly type: 'string';
|
|
67294
|
+
readonly enum: readonly ["realm"];
|
|
67295
|
+
}, {
|
|
67296
|
+
readonly type: 'boolean';
|
|
67297
|
+
}];
|
|
67298
|
+
};
|
|
67299
|
+
readonly extend: {
|
|
67300
|
+
readonly type: 'object';
|
|
67301
|
+
readonly properties: {
|
|
67302
|
+
readonly tags: {
|
|
67303
|
+
readonly type: 'object';
|
|
67304
|
+
readonly additionalProperties: {
|
|
67305
|
+
readonly type: 'object';
|
|
67306
|
+
readonly properties: {
|
|
67307
|
+
readonly selfClosing: {
|
|
67308
|
+
readonly type: 'boolean';
|
|
67309
|
+
};
|
|
67310
|
+
readonly attributes: {
|
|
67311
|
+
readonly type: 'object';
|
|
67312
|
+
readonly additionalProperties: {
|
|
67313
|
+
readonly type: 'object';
|
|
67314
|
+
readonly properties: {
|
|
67315
|
+
readonly type: {
|
|
67316
|
+
readonly type: 'string';
|
|
67317
|
+
readonly enum: readonly ["string", "number", "boolean"];
|
|
67318
|
+
};
|
|
67319
|
+
readonly required: {
|
|
67320
|
+
readonly type: 'boolean';
|
|
67321
|
+
};
|
|
67322
|
+
readonly default: {
|
|
67323
|
+
readonly oneOf: readonly [{
|
|
67324
|
+
readonly type: 'string';
|
|
67325
|
+
}, {
|
|
67326
|
+
readonly type: 'number';
|
|
67327
|
+
}, {
|
|
67328
|
+
readonly type: 'boolean';
|
|
67329
|
+
}];
|
|
67330
|
+
};
|
|
67331
|
+
readonly enum: {
|
|
67332
|
+
readonly type: 'array';
|
|
67333
|
+
readonly items: {
|
|
67334
|
+
readonly type: 'string';
|
|
67335
|
+
};
|
|
67336
|
+
readonly minItems: 1;
|
|
67337
|
+
};
|
|
67338
|
+
readonly dynamic: {
|
|
67339
|
+
readonly type: 'boolean';
|
|
67340
|
+
};
|
|
67341
|
+
};
|
|
67342
|
+
readonly required: readonly ["type"];
|
|
67343
|
+
readonly additionalProperties: false;
|
|
67344
|
+
};
|
|
67345
|
+
};
|
|
67346
|
+
};
|
|
67347
|
+
readonly additionalProperties: false;
|
|
67348
|
+
};
|
|
67349
|
+
};
|
|
67350
|
+
readonly tagsFile: {
|
|
67351
|
+
readonly type: 'string';
|
|
67352
|
+
readonly minLength: 1;
|
|
67353
|
+
};
|
|
67354
|
+
};
|
|
67355
|
+
readonly additionalProperties: false;
|
|
67356
|
+
};
|
|
67357
|
+
};
|
|
67358
|
+
readonly required: readonly ["schema"];
|
|
67359
|
+
readonly additionalProperties: false;
|
|
67360
|
+
}];
|
|
67361
|
+
};
|
|
67362
|
+
readonly apiDescriptions: {
|
|
67363
|
+
readonly type: 'object';
|
|
67364
|
+
readonly properties: {
|
|
67365
|
+
readonly rules: {
|
|
67366
|
+
readonly type: 'object';
|
|
67367
|
+
readonly additionalProperties: {
|
|
67368
|
+
readonly oneOf: readonly [{
|
|
67369
|
+
readonly type: 'string';
|
|
67370
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
67371
|
+
}, {
|
|
67372
|
+
readonly type: 'object';
|
|
67373
|
+
readonly properties: {
|
|
67374
|
+
readonly severity: {
|
|
67375
|
+
readonly type: 'string';
|
|
67376
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
67377
|
+
};
|
|
67378
|
+
readonly message: {
|
|
67379
|
+
readonly type: 'string';
|
|
67380
|
+
readonly minLength: 1;
|
|
67381
|
+
};
|
|
67382
|
+
readonly fix: {
|
|
67383
|
+
readonly type: 'boolean';
|
|
67384
|
+
};
|
|
67385
|
+
readonly tags: {
|
|
67386
|
+
readonly type: 'array';
|
|
67387
|
+
readonly items: {
|
|
67388
|
+
readonly type: 'string';
|
|
67389
|
+
};
|
|
67390
|
+
};
|
|
67391
|
+
readonly description: {
|
|
67392
|
+
readonly type: 'string';
|
|
67393
|
+
};
|
|
67394
|
+
readonly link: {
|
|
67395
|
+
readonly type: 'string';
|
|
67396
|
+
};
|
|
67397
|
+
readonly scope: {
|
|
67398
|
+
readonly oneOf: readonly [{
|
|
67399
|
+
readonly type: 'string';
|
|
67400
|
+
readonly minLength: 1;
|
|
67401
|
+
}, {
|
|
67402
|
+
readonly type: 'array';
|
|
67403
|
+
readonly items: {
|
|
67404
|
+
readonly type: 'string';
|
|
67405
|
+
readonly minLength: 1;
|
|
67406
|
+
};
|
|
67407
|
+
readonly minItems: 1;
|
|
67408
|
+
}];
|
|
67409
|
+
};
|
|
67410
|
+
readonly appliesTo: {
|
|
67411
|
+
readonly type: 'array';
|
|
67412
|
+
readonly items: {
|
|
67413
|
+
readonly type: 'string';
|
|
67414
|
+
};
|
|
67415
|
+
};
|
|
67416
|
+
readonly excludes: {
|
|
67417
|
+
readonly type: 'array';
|
|
67418
|
+
readonly items: {
|
|
67419
|
+
readonly type: 'string';
|
|
67420
|
+
};
|
|
67421
|
+
};
|
|
67422
|
+
readonly exceptions: {
|
|
67423
|
+
readonly type: 'object';
|
|
67424
|
+
readonly properties: {
|
|
67425
|
+
readonly files: {
|
|
67426
|
+
readonly type: 'array';
|
|
67427
|
+
readonly items: {
|
|
67428
|
+
readonly type: 'string';
|
|
67429
|
+
};
|
|
67430
|
+
};
|
|
67431
|
+
readonly lines: {
|
|
67432
|
+
readonly type: 'array';
|
|
67433
|
+
readonly items: {
|
|
67434
|
+
readonly type: 'string';
|
|
67435
|
+
};
|
|
67436
|
+
};
|
|
67437
|
+
};
|
|
67438
|
+
readonly additionalProperties: false;
|
|
67439
|
+
};
|
|
67440
|
+
readonly assertions: {
|
|
67441
|
+
readonly type: 'object';
|
|
67442
|
+
readonly additionalProperties: true;
|
|
67443
|
+
};
|
|
67444
|
+
};
|
|
67445
|
+
readonly additionalProperties: false;
|
|
67446
|
+
}];
|
|
67447
|
+
};
|
|
67448
|
+
};
|
|
67449
|
+
};
|
|
67450
|
+
readonly additionalProperties: false;
|
|
67451
|
+
};
|
|
67452
|
+
};
|
|
67453
|
+
readonly additionalProperties: false;
|
|
67454
|
+
};
|
|
66651
67455
|
readonly corsProxy: {
|
|
66652
67456
|
readonly type: 'object';
|
|
66653
67457
|
readonly properties: {
|