@sebspark/openapi-client 1.5.1 → 1.6.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
@@ -134,7 +134,9 @@ var callServer = async (args) => {
134
134
  headers: args.headers,
135
135
  params: args.params,
136
136
  paramsSerializer: serializer,
137
- data: body
137
+ data: body,
138
+ httpsAgent: args.httpsAgent,
139
+ httpAgent: args.httpAgent
138
140
  }),
139
141
  args.retry
140
142
  );
package/dist/index.mjs CHANGED
@@ -99,7 +99,9 @@ var callServer = async (args) => {
99
99
  headers: args.headers,
100
100
  params: args.params,
101
101
  paramsSerializer: serializer,
102
- data: body
102
+ data: body,
103
+ httpsAgent: args.httpsAgent,
104
+ httpAgent: args.httpAgent
103
105
  }),
104
106
  args.retry
105
107
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sebspark/openapi-client",
3
- "version": "1.5.1",
3
+ "version": "1.6.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",