@etainabl/nodejs-sdk 1.3.170 → 1.3.174
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/esm/{chunk-KR5LXISF.js → chunk-4G647IUM.js} +2 -2
- package/dist/esm/{chunk-6AFRW6DM.js → chunk-HR3W7R4B.js} +66 -66
- package/dist/esm/{chunk-6AFRW6DM.js.map → chunk-HR3W7R4B.js.map} +1 -1
- package/dist/esm/{chunk-HP5O34C3.js → chunk-UR6FJOYI.js} +2 -2
- package/dist/esm/{dist-es-UZVIZZYV.js → dist-es-JA6GH4HX.js} +2 -2
- package/dist/esm/{dist-es-KG7JV3KL.js → dist-es-QWNQVMYC.js} +4 -4
- package/dist/esm/{dist-es-7A5AP37F.js → dist-es-XOZGODLE.js} +4 -4
- package/dist/esm/index.js +2733 -2762
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/{loadSso-WTBVK2SM.js → loadSso-66ZTLICD.js} +5 -5
- package/dist/esm/{loadSso-WTBVK2SM.js.map → loadSso-66ZTLICD.js.map} +1 -1
- package/dist/esm/{sso-oidc-3AEK6OAH.js → sso-oidc-Z2X56STB.js} +5 -5
- package/dist/esm/{sso-oidc-3AEK6OAH.js.map → sso-oidc-Z2X56STB.js.map} +1 -1
- package/dist/esm/{sts-AUUXBNVW.js → sts-XINKL27T.js} +5 -5
- package/dist/esm/{sts-AUUXBNVW.js.map → sts-XINKL27T.js.map} +1 -1
- package/dist/index.d.cts +166 -242
- package/dist/index.d.ts +166 -242
- package/dist/index.js +73651 -73672
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
- /package/dist/esm/{chunk-KR5LXISF.js.map → chunk-4G647IUM.js.map} +0 -0
- /package/dist/esm/{chunk-HP5O34C3.js.map → chunk-UR6FJOYI.js.map} +0 -0
- /package/dist/esm/{dist-es-UZVIZZYV.js.map → dist-es-JA6GH4HX.js.map} +0 -0
- /package/dist/esm/{dist-es-KG7JV3KL.js.map → dist-es-QWNQVMYC.js.map} +0 -0
- /package/dist/esm/{dist-es-7A5AP37F.js.map → dist-es-XOZGODLE.js.map} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
collectBodyString
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-HR3W7R4B.js";
|
|
4
4
|
|
|
5
5
|
// node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js
|
|
6
6
|
var getValueFromTextNode = (obj) => {
|
|
@@ -1421,4 +1421,4 @@ export {
|
|
|
1421
1421
|
parseXmlErrorBody,
|
|
1422
1422
|
loadRestXmlErrorCode
|
|
1423
1423
|
};
|
|
1424
|
-
//# sourceMappingURL=chunk-
|
|
1424
|
+
//# sourceMappingURL=chunk-4G647IUM.js.map
|
|
@@ -925,6 +925,56 @@ var getRecursionDetectionPlugin = (options) => ({
|
|
|
925
925
|
}
|
|
926
926
|
});
|
|
927
927
|
|
|
928
|
+
// node_modules/@smithy/smithy-client/dist-es/constants.js
|
|
929
|
+
var SENSITIVE_STRING2 = "***SensitiveInformation***";
|
|
930
|
+
|
|
931
|
+
// node_modules/@smithy/smithy-client/dist-es/exceptions.js
|
|
932
|
+
var ServiceException = class _ServiceException extends Error {
|
|
933
|
+
$fault;
|
|
934
|
+
$response;
|
|
935
|
+
$retryable;
|
|
936
|
+
$metadata;
|
|
937
|
+
constructor(options) {
|
|
938
|
+
super(options.message);
|
|
939
|
+
Object.setPrototypeOf(this, Object.getPrototypeOf(this).constructor.prototype);
|
|
940
|
+
this.name = options.name;
|
|
941
|
+
this.$fault = options.$fault;
|
|
942
|
+
this.$metadata = options.$metadata;
|
|
943
|
+
}
|
|
944
|
+
static isInstance(value) {
|
|
945
|
+
if (!value)
|
|
946
|
+
return false;
|
|
947
|
+
const candidate = value;
|
|
948
|
+
return _ServiceException.prototype.isPrototypeOf(candidate) || Boolean(candidate.$fault) && Boolean(candidate.$metadata) && (candidate.$fault === "client" || candidate.$fault === "server");
|
|
949
|
+
}
|
|
950
|
+
static [Symbol.hasInstance](instance) {
|
|
951
|
+
if (!instance)
|
|
952
|
+
return false;
|
|
953
|
+
const candidate = instance;
|
|
954
|
+
if (this === _ServiceException) {
|
|
955
|
+
return _ServiceException.isInstance(instance);
|
|
956
|
+
}
|
|
957
|
+
if (_ServiceException.isInstance(instance)) {
|
|
958
|
+
if (candidate.name && this.name) {
|
|
959
|
+
return this.prototype.isPrototypeOf(instance) || candidate.name === this.name;
|
|
960
|
+
}
|
|
961
|
+
return this.prototype.isPrototypeOf(instance);
|
|
962
|
+
}
|
|
963
|
+
return false;
|
|
964
|
+
}
|
|
965
|
+
};
|
|
966
|
+
var decorateServiceException = (exception, additions = {}) => {
|
|
967
|
+
Object.entries(additions).filter(([, v]) => v !== void 0).forEach(([k, v]) => {
|
|
968
|
+
if (exception[k] == void 0 || exception[k] === "") {
|
|
969
|
+
exception[k] = v;
|
|
970
|
+
}
|
|
971
|
+
});
|
|
972
|
+
const message = exception.message || exception.Message || "UnknownError";
|
|
973
|
+
exception.message = message;
|
|
974
|
+
delete exception.Message;
|
|
975
|
+
return exception;
|
|
976
|
+
};
|
|
977
|
+
|
|
928
978
|
// node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/resolveAuthOptions.js
|
|
929
979
|
var resolveAuthOptions = (candidateAuthOptions, authSchemePreference) => {
|
|
930
980
|
if (!authSchemePreference || authSchemePreference.length === 0) {
|
|
@@ -1327,56 +1377,6 @@ function resolveUserAgentConfig(input) {
|
|
|
1327
1377
|
});
|
|
1328
1378
|
}
|
|
1329
1379
|
|
|
1330
|
-
// node_modules/@smithy/smithy-client/dist-es/constants.js
|
|
1331
|
-
var SENSITIVE_STRING2 = "***SensitiveInformation***";
|
|
1332
|
-
|
|
1333
|
-
// node_modules/@smithy/smithy-client/dist-es/exceptions.js
|
|
1334
|
-
var ServiceException = class _ServiceException extends Error {
|
|
1335
|
-
$fault;
|
|
1336
|
-
$response;
|
|
1337
|
-
$retryable;
|
|
1338
|
-
$metadata;
|
|
1339
|
-
constructor(options) {
|
|
1340
|
-
super(options.message);
|
|
1341
|
-
Object.setPrototypeOf(this, Object.getPrototypeOf(this).constructor.prototype);
|
|
1342
|
-
this.name = options.name;
|
|
1343
|
-
this.$fault = options.$fault;
|
|
1344
|
-
this.$metadata = options.$metadata;
|
|
1345
|
-
}
|
|
1346
|
-
static isInstance(value) {
|
|
1347
|
-
if (!value)
|
|
1348
|
-
return false;
|
|
1349
|
-
const candidate = value;
|
|
1350
|
-
return _ServiceException.prototype.isPrototypeOf(candidate) || Boolean(candidate.$fault) && Boolean(candidate.$metadata) && (candidate.$fault === "client" || candidate.$fault === "server");
|
|
1351
|
-
}
|
|
1352
|
-
static [Symbol.hasInstance](instance) {
|
|
1353
|
-
if (!instance)
|
|
1354
|
-
return false;
|
|
1355
|
-
const candidate = instance;
|
|
1356
|
-
if (this === _ServiceException) {
|
|
1357
|
-
return _ServiceException.isInstance(instance);
|
|
1358
|
-
}
|
|
1359
|
-
if (_ServiceException.isInstance(instance)) {
|
|
1360
|
-
if (candidate.name && this.name) {
|
|
1361
|
-
return this.prototype.isPrototypeOf(instance) || candidate.name === this.name;
|
|
1362
|
-
}
|
|
1363
|
-
return this.prototype.isPrototypeOf(instance);
|
|
1364
|
-
}
|
|
1365
|
-
return false;
|
|
1366
|
-
}
|
|
1367
|
-
};
|
|
1368
|
-
var decorateServiceException = (exception, additions = {}) => {
|
|
1369
|
-
Object.entries(additions).filter(([, v]) => v !== void 0).forEach(([k, v]) => {
|
|
1370
|
-
if (exception[k] == void 0 || exception[k] === "") {
|
|
1371
|
-
exception[k] = v;
|
|
1372
|
-
}
|
|
1373
|
-
});
|
|
1374
|
-
const message = exception.message || exception.Message || "UnknownError";
|
|
1375
|
-
exception.message = message;
|
|
1376
|
-
delete exception.Message;
|
|
1377
|
-
return exception;
|
|
1378
|
-
};
|
|
1379
|
-
|
|
1380
1380
|
// node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js
|
|
1381
1381
|
var EndpointCache = class {
|
|
1382
1382
|
capacity;
|
|
@@ -4326,22 +4326,33 @@ export {
|
|
|
4326
4326
|
getHostHeaderPlugin,
|
|
4327
4327
|
getLoggerPlugin,
|
|
4328
4328
|
getRecursionDetectionPlugin,
|
|
4329
|
+
Client,
|
|
4330
|
+
toUint8Array,
|
|
4331
|
+
collectBody,
|
|
4332
|
+
extendedEncodeURIComponent,
|
|
4329
4333
|
getSmithyContext,
|
|
4330
4334
|
normalizeProvider,
|
|
4335
|
+
Command,
|
|
4336
|
+
SENSITIVE_STRING2 as SENSITIVE_STRING,
|
|
4337
|
+
ServiceException,
|
|
4338
|
+
decorateServiceException,
|
|
4339
|
+
withBaseException,
|
|
4340
|
+
loadConfigsForDefaultMode,
|
|
4341
|
+
emitWarningIfUnsupportedVersion2 as emitWarningIfUnsupportedVersion,
|
|
4342
|
+
getDefaultExtensionConfiguration,
|
|
4343
|
+
resolveDefaultRuntimeConfig,
|
|
4344
|
+
NoOpLogger,
|
|
4331
4345
|
getHttpAuthSchemeEndpointRuleSetPlugin,
|
|
4332
4346
|
getSerdePlugin,
|
|
4333
4347
|
httpSigningMiddlewareOptions,
|
|
4334
4348
|
getHttpSigningPlugin,
|
|
4335
|
-
toUint8Array,
|
|
4336
|
-
collectBody,
|
|
4337
|
-
extendedEncodeURIComponent,
|
|
4338
4349
|
DefaultIdentityProviderConfig,
|
|
4339
4350
|
resolveUserAgentConfig,
|
|
4340
4351
|
EndpointCache,
|
|
4341
4352
|
customEndpointFunctions,
|
|
4342
4353
|
resolveEndpoint,
|
|
4343
4354
|
awsEndpointFunctions,
|
|
4344
|
-
emitWarningIfUnsupportedVersion,
|
|
4355
|
+
emitWarningIfUnsupportedVersion as emitWarningIfUnsupportedVersion2,
|
|
4345
4356
|
setFeature2 as setFeature,
|
|
4346
4357
|
AwsSdkSigV4Signer,
|
|
4347
4358
|
AwsSdkSigV4ASigner,
|
|
@@ -4350,17 +4361,6 @@ export {
|
|
|
4350
4361
|
NODE_SIGV4A_CONFIG_OPTIONS,
|
|
4351
4362
|
SignatureV4,
|
|
4352
4363
|
resolveAwsSdkSigV4Config,
|
|
4353
|
-
Client,
|
|
4354
|
-
Command,
|
|
4355
|
-
SENSITIVE_STRING2 as SENSITIVE_STRING,
|
|
4356
|
-
ServiceException,
|
|
4357
|
-
decorateServiceException,
|
|
4358
|
-
withBaseException,
|
|
4359
|
-
loadConfigsForDefaultMode,
|
|
4360
|
-
emitWarningIfUnsupportedVersion2,
|
|
4361
|
-
getDefaultExtensionConfiguration,
|
|
4362
|
-
resolveDefaultRuntimeConfig,
|
|
4363
|
-
NoOpLogger,
|
|
4364
4364
|
collectBodyString,
|
|
4365
4365
|
getUserAgentPlugin,
|
|
4366
4366
|
booleanSelector,
|
|
@@ -4387,4 +4387,4 @@ export {
|
|
|
4387
4387
|
getAwsRegionExtensionConfiguration,
|
|
4388
4388
|
resolveAwsRegionExtensionConfiguration
|
|
4389
4389
|
};
|
|
4390
|
-
//# sourceMappingURL=chunk-
|
|
4390
|
+
//# sourceMappingURL=chunk-HR3W7R4B.js.map
|