@sebspark/openapi-core 2.1.2 → 2.2.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -182,6 +182,7 @@ type RequestOptions = {
182
182
  headers?: OutgoingHttpHeaders & Record<string, string>;
183
183
  httpsAgent?: any;
184
184
  httpAgent?: any;
185
+ timeout?: number;
185
186
  };
186
187
  type ArrayFormat = 'indices' | 'brackets' | 'repeat' | 'comma';
187
188
  type ClientOptions = RequestOptions & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sebspark/openapi-core",
3
- "version": "2.1.2",
3
+ "version": "2.2.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -24,6 +24,6 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@sebspark/retry": "*",
27
- "axios": "1.8.1"
27
+ "axios": "1.8.2"
28
28
  }
29
29
  }