@sebspark/openapi-core 1.5.4 → 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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -180,6 +180,8 @@ type PayloadRequestArgs = RequestArgs & {
|
|
|
180
180
|
type RequestOptions = {
|
|
181
181
|
retry?: RetrySettings;
|
|
182
182
|
headers?: OutgoingHttpHeaders & Record<string, string>;
|
|
183
|
+
httpsAgent?: any;
|
|
184
|
+
httpAgent?: any;
|
|
183
185
|
};
|
|
184
186
|
type ArrayFormat = 'indices' | 'brackets' | 'repeat' | 'comma';
|
|
185
187
|
type ClientOptions = RequestOptions & {
|
package/dist/index.d.ts
CHANGED
|
@@ -180,6 +180,8 @@ type PayloadRequestArgs = RequestArgs & {
|
|
|
180
180
|
type RequestOptions = {
|
|
181
181
|
retry?: RetrySettings;
|
|
182
182
|
headers?: OutgoingHttpHeaders & Record<string, string>;
|
|
183
|
+
httpsAgent?: any;
|
|
184
|
+
httpAgent?: any;
|
|
183
185
|
};
|
|
184
186
|
type ArrayFormat = 'indices' | 'brackets' | 'repeat' | 'comma';
|
|
185
187
|
type ClientOptions = RequestOptions & {
|