@gammarers/aws-sns-slack-message-lambda-subscription 1.0.3 → 1.0.4
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
CHANGED
|
@@ -4192,6 +4192,6 @@
|
|
|
4192
4192
|
"symbolId": "src/index:SNSSlackMessageLambdaSubscriptionProps"
|
|
4193
4193
|
}
|
|
4194
4194
|
},
|
|
4195
|
-
"version": "1.0.
|
|
4196
|
-
"fingerprint": "
|
|
4195
|
+
"version": "1.0.4",
|
|
4196
|
+
"fingerprint": "rPBx3bIGv/k+zbR3gyhia1Zzf/hXRvsKDGZdR/mo7E4="
|
|
4197
4197
|
}
|
|
@@ -12184,6 +12184,9 @@ var require_axios = __commonJS({
|
|
|
12184
12184
|
if (utils$1.isDate(value)) {
|
|
12185
12185
|
return value.toISOString();
|
|
12186
12186
|
}
|
|
12187
|
+
if (utils$1.isBoolean(value)) {
|
|
12188
|
+
return value.toString();
|
|
12189
|
+
}
|
|
12187
12190
|
if (!useBlob && utils$1.isBlob(value)) {
|
|
12188
12191
|
throw new AxiosError3("Blob is not supported. Use a Buffer instead.");
|
|
12189
12192
|
}
|
|
@@ -12909,7 +12912,7 @@ var require_axios = __commonJS({
|
|
|
12909
12912
|
}
|
|
12910
12913
|
return requestedURL;
|
|
12911
12914
|
}
|
|
12912
|
-
var VERSION3 = "1.
|
|
12915
|
+
var VERSION3 = "1.10.0";
|
|
12913
12916
|
function parseProtocol2(url3) {
|
|
12914
12917
|
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url3);
|
|
12915
12918
|
return match && match[1] || "";
|
|
@@ -14269,7 +14272,7 @@ var require_axios = __commonJS({
|
|
|
14269
14272
|
duplex: "half",
|
|
14270
14273
|
credentials: isCredentialsSupported ? withCredentials : void 0
|
|
14271
14274
|
});
|
|
14272
|
-
let response = await fetch(request);
|
|
14275
|
+
let response = await fetch(request, fetchOptions);
|
|
14273
14276
|
const isStreamResponse = supportsResponseStream2 && (responseType === "stream" || responseType === "response");
|
|
14274
14277
|
if (supportsResponseStream2 && (onDownloadProgress || isStreamResponse && unsubscribe)) {
|
|
14275
14278
|
const options = {};
|
|
@@ -15583,6 +15586,9 @@ function toFormData(obj, formData, options) {
|
|
|
15583
15586
|
if (utils_default.isDate(value)) {
|
|
15584
15587
|
return value.toISOString();
|
|
15585
15588
|
}
|
|
15589
|
+
if (utils_default.isBoolean(value)) {
|
|
15590
|
+
return value.toString();
|
|
15591
|
+
}
|
|
15586
15592
|
if (!useBlob && utils_default.isBlob(value)) {
|
|
15587
15593
|
throw new AxiosError_default("Blob is not supported. Use a Buffer instead.");
|
|
15588
15594
|
}
|
|
@@ -16366,7 +16372,7 @@ var import_follow_redirects = __toESM(require_follow_redirects(), 1);
|
|
|
16366
16372
|
var import_zlib = __toESM(require("zlib"), 1);
|
|
16367
16373
|
|
|
16368
16374
|
// node_modules/axios/lib/env/data.js
|
|
16369
|
-
var VERSION = "1.
|
|
16375
|
+
var VERSION = "1.10.0";
|
|
16370
16376
|
|
|
16371
16377
|
// node_modules/axios/lib/helpers/parseProtocol.js
|
|
16372
16378
|
function parseProtocol(url2) {
|
|
@@ -17778,7 +17784,7 @@ var fetch_default = isFetchSupported && (async (config) => {
|
|
|
17778
17784
|
duplex: "half",
|
|
17779
17785
|
credentials: isCredentialsSupported ? withCredentials : void 0
|
|
17780
17786
|
});
|
|
17781
|
-
let response = await fetch(request);
|
|
17787
|
+
let response = await fetch(request, fetchOptions);
|
|
17782
17788
|
const isStreamResponse = supportsResponseStream && (responseType === "stream" || responseType === "response");
|
|
17783
17789
|
if (supportsResponseStream && (onDownloadProgress || isStreamResponse && unsubscribe)) {
|
|
17784
17790
|
const options = {};
|
|
@@ -18460,6 +18466,6 @@ mime-types/index.js:
|
|
|
18460
18466
|
*)
|
|
18461
18467
|
|
|
18462
18468
|
axios/dist/node/axios.cjs:
|
|
18463
|
-
(*! Axios v1.
|
|
18469
|
+
(*! Axios v1.10.0 Copyright (c) 2025 Matt Zabriskie and contributors *)
|
|
18464
18470
|
*/
|
|
18465
18471
|
//# sourceMappingURL=index.js.map
|