@redocly/config 0.19.3 → 0.19.4

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.
@@ -58,7 +58,7 @@ export declare const reuniteConfigSchema: {
58
58
  readonly patternProperties: {
59
59
  readonly '^[a-zA-Z0-9_-]+$': {
60
60
  readonly type: "string";
61
- readonly format: "uri";
61
+ readonly pattern: "^https?://[^\\s/$.?#].[^\\s]*$";
62
62
  };
63
63
  };
64
64
  };
@@ -11,7 +11,7 @@ const jobServersSchema = {
11
11
  patternProperties: {
12
12
  '^[a-zA-Z0-9_-]+$': {
13
13
  type: 'string',
14
- format: 'uri',
14
+ pattern: '^https?://[^\\s/$.?#].[^\\s]*$',
15
15
  },
16
16
  },
17
17
  };
@@ -14794,7 +14794,7 @@ export declare const redoclyConfigSchema: {
14794
14794
  readonly patternProperties: {
14795
14795
  readonly '^[a-zA-Z0-9_-]+$': {
14796
14796
  readonly type: "string";
14797
- readonly format: "uri";
14797
+ readonly pattern: "^https?://[^\\s/$.?#].[^\\s]*$";
14798
14798
  };
14799
14799
  };
14800
14800
  };
@@ -26652,7 +26652,7 @@ export declare const rootRedoclyConfigSchema: {
26652
26652
  patternProperties: {
26653
26653
  "^[a-zA-Z0-9_-]+$": {
26654
26654
  type: "string";
26655
- format: "uri";
26655
+ pattern: "^https?://[^\\s/$.?#].[^\\s]*$";
26656
26656
  };
26657
26657
  };
26658
26658
  additionalProperties: false;
@@ -38671,7 +38671,7 @@ export declare const rootRedoclyConfigSchema: {
38671
38671
  readonly patternProperties: {
38672
38672
  readonly '^[a-zA-Z0-9_-]+$': {
38673
38673
  readonly type: "string";
38674
- readonly format: "uri";
38674
+ readonly pattern: "^https?://[^\\s/$.?#].[^\\s]*$";
38675
38675
  };
38676
38676
  };
38677
38677
  };
@@ -58,7 +58,7 @@ export declare const reuniteConfigSchema: {
58
58
  readonly patternProperties: {
59
59
  readonly '^[a-zA-Z0-9_-]+$': {
60
60
  readonly type: "string";
61
- readonly format: "uri";
61
+ readonly pattern: "^https?://[^\\s/$.?#].[^\\s]*$";
62
62
  };
63
63
  };
64
64
  };
@@ -8,7 +8,7 @@ const jobServersSchema = {
8
8
  patternProperties: {
9
9
  '^[a-zA-Z0-9_-]+$': {
10
10
  type: 'string',
11
- format: 'uri',
11
+ pattern: '^https?://[^\\s/$.?#].[^\\s]*$',
12
12
  },
13
13
  },
14
14
  };
@@ -14794,7 +14794,7 @@ export declare const redoclyConfigSchema: {
14794
14794
  readonly patternProperties: {
14795
14795
  readonly '^[a-zA-Z0-9_-]+$': {
14796
14796
  readonly type: "string";
14797
- readonly format: "uri";
14797
+ readonly pattern: "^https?://[^\\s/$.?#].[^\\s]*$";
14798
14798
  };
14799
14799
  };
14800
14800
  };
@@ -26652,7 +26652,7 @@ export declare const rootRedoclyConfigSchema: {
26652
26652
  patternProperties: {
26653
26653
  "^[a-zA-Z0-9_-]+$": {
26654
26654
  type: "string";
26655
- format: "uri";
26655
+ pattern: "^https?://[^\\s/$.?#].[^\\s]*$";
26656
26656
  };
26657
26657
  };
26658
26658
  additionalProperties: false;
@@ -38671,7 +38671,7 @@ export declare const rootRedoclyConfigSchema: {
38671
38671
  readonly patternProperties: {
38672
38672
  readonly '^[a-zA-Z0-9_-]+$': {
38673
38673
  readonly type: "string";
38674
- readonly format: "uri";
38674
+ readonly pattern: "^https?://[^\\s/$.?#].[^\\s]*$";
38675
38675
  };
38676
38676
  };
38677
38677
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redocly/config",
3
- "version": "0.19.3",
3
+ "version": "0.19.4",
4
4
  "license": "MIT",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib-esm/index.js",