@jjrawlins/cdk-iam-policy-builder-helper 0.0.28 → 0.0.29
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/.jsii +2 -2
- package/cdk-iam-policy-builder-helper/jsii/jsii.go +2 -2
- package/cdk-iam-policy-builder-helper/version +1 -1
- package/node_modules/axios/CHANGELOG.md +12 -0
- package/node_modules/axios/README.md +74 -0
- package/node_modules/axios/dist/axios.js +37 -40
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +2 -2
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +17 -19
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +17 -19
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +2 -2
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +17 -19
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/lib/adapters/fetch.js +13 -11
- package/node_modules/axios/lib/core/Axios.js +0 -2
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/utils.js +2 -4
- package/node_modules/axios/package.json +7 -4
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! Axios v1.12.
|
|
1
|
+
/*! Axios v1.12.2 Copyright (c) 2025 Matt Zabriskie and contributors */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
function bind(fn, thisArg) {
|
|
@@ -356,10 +356,8 @@ function merge(/* obj1, obj2, obj3, ... */) {
|
|
|
356
356
|
result[targetKey] = merge({}, val);
|
|
357
357
|
} else if (isArray(val)) {
|
|
358
358
|
result[targetKey] = val.slice();
|
|
359
|
-
} else {
|
|
360
|
-
|
|
361
|
-
result[targetKey] = val;
|
|
362
|
-
}
|
|
359
|
+
} else if (!skipUndefined || !isUndefined(val)) {
|
|
360
|
+
result[targetKey] = val;
|
|
363
361
|
}
|
|
364
362
|
};
|
|
365
363
|
|
|
@@ -2782,9 +2780,9 @@ const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
|
2782
2780
|
|
|
2783
2781
|
const {isFunction} = utils$1;
|
|
2784
2782
|
|
|
2785
|
-
const globalFetchAPI = (({
|
|
2786
|
-
|
|
2787
|
-
|
|
2783
|
+
const globalFetchAPI = (({Request, Response}) => ({
|
|
2784
|
+
Request, Response
|
|
2785
|
+
}))(utils$1.global);
|
|
2788
2786
|
|
|
2789
2787
|
const {
|
|
2790
2788
|
ReadableStream: ReadableStream$1, TextEncoder
|
|
@@ -2800,8 +2798,12 @@ const test = (fn, ...args) => {
|
|
|
2800
2798
|
};
|
|
2801
2799
|
|
|
2802
2800
|
const factory = (env) => {
|
|
2803
|
-
|
|
2804
|
-
|
|
2801
|
+
env = utils$1.merge.call({
|
|
2802
|
+
skipUndefined: true
|
|
2803
|
+
}, globalFetchAPI, env);
|
|
2804
|
+
|
|
2805
|
+
const {fetch: envFetch, Request, Response} = env;
|
|
2806
|
+
const isFetchSupported = envFetch ? isFunction(envFetch) : typeof fetch === 'function';
|
|
2805
2807
|
const isRequestSupported = isFunction(Request);
|
|
2806
2808
|
const isResponseSupported = isFunction(Response);
|
|
2807
2809
|
|
|
@@ -2904,6 +2906,8 @@ const factory = (env) => {
|
|
|
2904
2906
|
fetchOptions
|
|
2905
2907
|
} = resolveConfig(config);
|
|
2906
2908
|
|
|
2909
|
+
let _fetch = envFetch || fetch;
|
|
2910
|
+
|
|
2907
2911
|
responseType = responseType ? (responseType + '').toLowerCase() : 'text';
|
|
2908
2912
|
|
|
2909
2913
|
let composedSignal = composeSignals$1([signal, cancelToken && cancelToken.toAbortSignal()], timeout);
|
|
@@ -2963,7 +2967,7 @@ const factory = (env) => {
|
|
|
2963
2967
|
|
|
2964
2968
|
request = isRequestSupported && new Request(url, resolvedOptions);
|
|
2965
2969
|
|
|
2966
|
-
let response = await (isRequestSupported ?
|
|
2970
|
+
let response = await (isRequestSupported ? _fetch(request, fetchOptions) : _fetch(url, resolvedOptions));
|
|
2967
2971
|
|
|
2968
2972
|
const isStreamResponse = supportsResponseStream && (responseType === 'stream' || responseType === 'response');
|
|
2969
2973
|
|
|
@@ -3026,12 +3030,8 @@ const factory = (env) => {
|
|
|
3026
3030
|
const seedCache = new Map();
|
|
3027
3031
|
|
|
3028
3032
|
const getFetch = (config) => {
|
|
3029
|
-
let env =
|
|
3030
|
-
skipUndefined: true
|
|
3031
|
-
}, globalFetchAPI, config ? config.env : null);
|
|
3032
|
-
|
|
3033
|
+
let env = config ? config.env : {};
|
|
3033
3034
|
const {fetch, Request, Response} = env;
|
|
3034
|
-
|
|
3035
3035
|
const seeds = [
|
|
3036
3036
|
Request, Response, fetch
|
|
3037
3037
|
];
|
|
@@ -3202,7 +3202,7 @@ function dispatchRequest(config) {
|
|
|
3202
3202
|
});
|
|
3203
3203
|
}
|
|
3204
3204
|
|
|
3205
|
-
const VERSION = "1.12.
|
|
3205
|
+
const VERSION = "1.12.2";
|
|
3206
3206
|
|
|
3207
3207
|
const validators$1 = {};
|
|
3208
3208
|
|
|
@@ -3458,8 +3458,6 @@ class Axios {
|
|
|
3458
3458
|
|
|
3459
3459
|
let newConfig = config;
|
|
3460
3460
|
|
|
3461
|
-
i = 0;
|
|
3462
|
-
|
|
3463
3461
|
while (i < len) {
|
|
3464
3462
|
const onFulfilled = requestInterceptorChain[i++];
|
|
3465
3463
|
const onRejected = requestInterceptorChain[i++];
|