@sebspark/openapi-client 1.5.1 → 1.6.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.
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
  );
@@ -157,7 +159,9 @@ var mergeArgs = (baseUrl, url, method, requestArgs, extras, global) => {
157
159
  headers,
158
160
  body,
159
161
  retry: retry2,
160
- 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
161
165
  };
162
166
  return merged;
163
167
  };
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
  );
@@ -122,7 +124,9 @@ var mergeArgs = (baseUrl, url, method, requestArgs, extras, global) => {
122
124
  headers,
123
125
  body,
124
126
  retry: retry2,
125
- 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
126
130
  };
127
131
  return merged;
128
132
  };
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.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",