@redocly/config 0.49.0 → 0.49.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/lib/asyncapi-config-schema.d.ts +106 -106
  2. package/lib/common.d.ts +158 -135
  3. package/lib/constants/config.d.ts +10 -10
  4. package/lib/constants/entities.d.ts +21 -43
  5. package/lib/default-theme-config-schema.d.ts +3534 -3488
  6. package/lib/entities-catalog-config-schema.d.ts +469 -469
  7. package/lib/entities-catalog-entity-file-schema.d.ts +441 -441
  8. package/lib/ex-theme-config-schemas.d.ts +3020 -2997
  9. package/lib/feedback-config-schema.d.ts +99 -99
  10. package/lib/graphql-config-schema.d.ts +165 -165
  11. package/lib/index.js +1 -1
  12. package/lib/product-override-schema.d.ts +11541 -11518
  13. package/lib/redoc-config-schema.d.ts +155 -155
  14. package/lib/reference-docs-config-schema.d.ts +481 -481
  15. package/lib/reunite-config-schema.d.ts +41 -41
  16. package/lib/root-config-schema.d.ts +52129 -51710
  17. package/lib/scorecards-config-schema.d.ts +405 -405
  18. package/lib-esm/asyncapi-config-schema.d.ts +106 -106
  19. package/lib-esm/common.d.ts +158 -135
  20. package/lib-esm/constants/config.d.ts +10 -10
  21. package/lib-esm/constants/entities.d.ts +21 -43
  22. package/lib-esm/default-theme-config-schema.d.ts +3534 -3488
  23. package/lib-esm/entities-catalog-config-schema.d.ts +469 -469
  24. package/lib-esm/entities-catalog-entity-file-schema.d.ts +441 -441
  25. package/lib-esm/ex-theme-config-schemas.d.ts +3020 -2997
  26. package/lib-esm/feedback-config-schema.d.ts +99 -99
  27. package/lib-esm/graphql-config-schema.d.ts +165 -165
  28. package/lib-esm/index.js +1 -1
  29. package/lib-esm/product-override-schema.d.ts +11541 -11518
  30. package/lib-esm/redoc-config-schema.d.ts +155 -155
  31. package/lib-esm/reference-docs-config-schema.d.ts +481 -481
  32. package/lib-esm/reunite-config-schema.d.ts +41 -41
  33. package/lib-esm/root-config-schema.d.ts +52129 -51710
  34. package/lib-esm/scorecards-config-schema.d.ts +405 -405
  35. package/package.json +9 -9
@@ -1,118 +1,118 @@
1
1
  export declare const reuniteConfigSchema: {
2
- readonly type: "object";
2
+ readonly type: 'object';
3
3
  readonly properties: {
4
4
  readonly ignoreLint: {
5
5
  readonly oneOf: readonly [{
6
- readonly type: "boolean";
6
+ readonly type: 'boolean';
7
7
  readonly default: false;
8
8
  }, {
9
- readonly type: "object";
9
+ readonly type: 'object';
10
10
  readonly additionalProperties: {
11
- readonly type: "boolean";
11
+ readonly type: 'boolean';
12
12
  };
13
13
  }];
14
14
  };
15
15
  readonly ignoreLinkChecker: {
16
- readonly type: "boolean";
16
+ readonly type: 'boolean';
17
17
  };
18
18
  readonly ignoreMarkdocErrors: {
19
- readonly type: "boolean";
19
+ readonly type: 'boolean';
20
20
  };
21
21
  readonly ignoreRespectMonitoring: {
22
- readonly type: "boolean";
22
+ readonly type: 'boolean';
23
23
  };
24
24
  readonly jobs: {
25
- readonly type: "array";
25
+ readonly type: 'array';
26
26
  readonly items: {
27
- readonly type: "object";
27
+ readonly type: 'object';
28
28
  readonly properties: {
29
29
  readonly path: {
30
- readonly type: "string";
31
- readonly pattern: "^(?!\\/|\\.\\./)";
30
+ readonly type: 'string';
31
+ readonly pattern: '^(?!\\/|\\.\\./)';
32
32
  };
33
33
  readonly agent: {
34
- readonly type: "string";
35
- readonly enum: readonly ["respect"];
34
+ readonly type: 'string';
35
+ readonly enum: readonly ['respect'];
36
36
  };
37
37
  readonly trigger: {
38
38
  readonly oneOf: readonly [{
39
- readonly type: "object";
39
+ readonly type: 'object';
40
40
  readonly properties: {
41
41
  readonly event: {
42
- readonly type: "string";
43
- readonly enum: readonly ["schedule"];
42
+ readonly type: 'string';
43
+ readonly enum: readonly ['schedule'];
44
44
  };
45
45
  readonly interval: {
46
- readonly type: "string";
47
- readonly enum: readonly ["1m", "2m", "5m", "10m", "15m", "30m", "1h", "3h", "6h", "12h", "1d", "7d"];
46
+ readonly type: 'string';
47
+ readonly enum: readonly ['1m', '2m', '5m', '10m', '15m', '30m', '1h', '3h', '6h', '12h', '1d', '7d'];
48
48
  };
49
49
  };
50
- readonly required: readonly ["event"];
50
+ readonly required: readonly ['event'];
51
51
  readonly additionalProperties: false;
52
52
  }, {
53
- readonly type: "object";
53
+ readonly type: 'object';
54
54
  readonly properties: {
55
55
  readonly event: {
56
- readonly type: "string";
57
- readonly enum: readonly ["build"];
56
+ readonly type: 'string';
57
+ readonly enum: readonly ['build'];
58
58
  };
59
59
  };
60
- readonly required: readonly ["event"];
60
+ readonly required: readonly ['event'];
61
61
  readonly additionalProperties: false;
62
62
  }];
63
63
  };
64
64
  readonly inputs: {
65
- readonly type: "object";
65
+ readonly type: 'object';
66
66
  readonly additionalProperties: {
67
- readonly type: "string";
67
+ readonly type: 'string';
68
68
  };
69
69
  };
70
70
  readonly servers: {
71
- readonly type: "object";
71
+ readonly type: 'object';
72
72
  readonly additionalProperties: false;
73
73
  readonly patternProperties: {
74
74
  readonly '^[a-zA-Z0-9_-]+$': {
75
- readonly type: "string";
76
- readonly pattern: "^https?://[^\\s/$.?#].[^\\s]*$";
75
+ readonly type: 'string';
76
+ readonly pattern: '^https?://[^\\s/$.?#].[^\\s]*$';
77
77
  };
78
78
  };
79
79
  };
80
80
  readonly severity: {
81
- readonly type: "object";
81
+ readonly type: 'object';
82
82
  readonly additionalProperties: false;
83
83
  readonly properties: {
84
84
  readonly schemaCheck: {
85
- readonly type: "string";
86
- readonly enum: readonly ["error", "warn", "off"];
85
+ readonly type: 'string';
86
+ readonly enum: readonly ['error', 'warn', 'off'];
87
87
  };
88
88
  readonly statusCodeCheck: {
89
- readonly type: "string";
90
- readonly enum: readonly ["error", "warn", "off"];
89
+ readonly type: 'string';
90
+ readonly enum: readonly ['error', 'warn', 'off'];
91
91
  };
92
92
  readonly contentTypeCheck: {
93
- readonly type: "string";
94
- readonly enum: readonly ["error", "warn", "off"];
93
+ readonly type: 'string';
94
+ readonly enum: readonly ['error', 'warn', 'off'];
95
95
  };
96
96
  readonly successCriteriaCheck: {
97
- readonly type: "string";
98
- readonly enum: readonly ["error", "warn", "off"];
97
+ readonly type: 'string';
98
+ readonly enum: readonly ['error', 'warn', 'off'];
99
99
  };
100
100
  };
101
101
  };
102
102
  readonly slo: {
103
- readonly type: "object";
103
+ readonly type: 'object';
104
104
  readonly properties: {
105
105
  readonly warn: {
106
- readonly type: "number";
106
+ readonly type: 'number';
107
107
  };
108
108
  readonly error: {
109
- readonly type: "number";
109
+ readonly type: 'number';
110
110
  };
111
111
  };
112
112
  readonly additionalProperties: false;
113
113
  };
114
114
  };
115
- readonly required: readonly ["path", "trigger", "agent"];
115
+ readonly required: readonly ['path', 'trigger', 'agent'];
116
116
  readonly additionalProperties: false;
117
117
  };
118
118
  };