@sebspark/openapi-client 1.6.0 → 2.0.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/dist/index.js CHANGED
@@ -159,7 +159,9 @@ var mergeArgs = (baseUrl, url, method, requestArgs, extras, global) => {
159
159
  headers,
160
160
  body,
161
161
  retry: retry2,
162
- arrayFormat: global == null ? void 0 : global.arrayFormat
162
+ arrayFormat: global == null ? void 0 : global.arrayFormat,
163
+ httpsAgent: extras == null ? void 0 : extras.httpsAgent,
164
+ httpAgent: extras == null ? void 0 : extras.httpAgent
163
165
  };
164
166
  return merged;
165
167
  };
package/dist/index.mjs CHANGED
@@ -124,7 +124,9 @@ var mergeArgs = (baseUrl, url, method, requestArgs, extras, global) => {
124
124
  headers,
125
125
  body,
126
126
  retry: retry2,
127
- arrayFormat: global == null ? void 0 : global.arrayFormat
127
+ arrayFormat: global == null ? void 0 : global.arrayFormat,
128
+ httpsAgent: extras == null ? void 0 : extras.httpsAgent,
129
+ httpAgent: extras == null ? void 0 : extras.httpAgent
128
130
  };
129
131
  return merged;
130
132
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sebspark/openapi-client",
3
- "version": "1.6.0",
3
+ "version": "2.0.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",