@aws-sdk/client-emr 3.955.0 → 3.957.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-cjs/index.js CHANGED
@@ -1378,7 +1378,7 @@ var InternalServerError$ = [
1378
1378
  -3,
1379
1379
  n0,
1380
1380
  _ISE,
1381
- { [_e]: _s, [_hE]: 500, [_aQE]: [`InternalFailure`, 500] },
1381
+ { [_aQE]: [`InternalFailure`, 500], [_e]: _s, [_hE]: 500 },
1382
1382
  [],
1383
1383
  [],
1384
1384
  ];
@@ -2037,7 +2037,7 @@ var StepSummaryList = [1, n0, _SSL, 0, () => StepSummary$];
2037
2037
  var StudioSummaryList = [1, n0, _SSLt, 0, () => StudioSummary$];
2038
2038
  var SupportedInstanceTypesList = [1, n0, _SITL, 0, () => SupportedInstanceType$];
2039
2039
  var TagList = [1, n0, _TL, 0, () => Tag$];
2040
- var Credentials$ = [3, n0, _Cr, 0, [_UP], [[() => UsernamePassword$, 0]]];
2040
+ var Credentials$ = [4, n0, _Cr, 0, [_UP], [[() => UsernamePassword$, 0]]];
2041
2041
  var AddInstanceFleet$ = [
2042
2042
  9,
2043
2043
  n0,
@@ -1218,7 +1218,7 @@ export var InternalServerError$ = [
1218
1218
  -3,
1219
1219
  n0,
1220
1220
  _ISE,
1221
- { [_e]: _s, [_hE]: 500, [_aQE]: [`InternalFailure`, 500] },
1221
+ { [_aQE]: [`InternalFailure`, 500], [_e]: _s, [_hE]: 500 },
1222
1222
  [],
1223
1223
  [],
1224
1224
  ];
@@ -1897,7 +1897,7 @@ var XmlStringMaxLen256List = 64 | 0;
1897
1897
  var EnvironmentVariablesMap = 128 | 0;
1898
1898
  var LogTypesMap = [2, n0, _LTM, 0, 0, 64 | 0];
1899
1899
  var StringMap = 128 | 0;
1900
- export var Credentials$ = [3, n0, _Cr, 0, [_UP], [[() => UsernamePassword$, 0]]];
1900
+ export var Credentials$ = [4, n0, _Cr, 0, [_UP], [[() => UsernamePassword$, 0]]];
1901
1901
  export var AddInstanceFleet$ = [
1902
1902
  9,
1903
1903
  n0,
@@ -1,4 +1,4 @@
1
- import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
1
+ import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
2
2
  export declare var AddInstanceFleetInput$: StaticStructureSchema;
3
3
  export declare var AddInstanceFleetOutput$: StaticStructureSchema;
4
4
  export declare var AddInstanceGroupsInput$: StaticStructureSchema;
@@ -218,7 +218,7 @@ export declare var UpdateStudioSessionMappingInput$: StaticStructureSchema;
218
218
  export declare var UsernamePassword$: StaticStructureSchema;
219
219
  export declare var VolumeSpecification$: StaticStructureSchema;
220
220
  export declare var EMRServiceException$: StaticErrorSchema;
221
- export declare var Credentials$: StaticStructureSchema;
221
+ export declare var Credentials$: StaticUnionSchema;
222
222
  export declare var AddInstanceFleet$: StaticOperationSchema;
223
223
  export declare var AddInstanceGroups$: StaticOperationSchema;
224
224
  export declare var AddJobFlowSteps$: StaticOperationSchema;
@@ -2,6 +2,7 @@ import {
2
2
  StaticErrorSchema,
3
3
  StaticOperationSchema,
4
4
  StaticStructureSchema,
5
+ StaticUnionSchema,
5
6
  } from "@smithy/types";
6
7
  export declare var AddInstanceFleetInput$: StaticStructureSchema;
7
8
  export declare var AddInstanceFleetOutput$: StaticStructureSchema;
@@ -222,7 +223,7 @@ export declare var UpdateStudioSessionMappingInput$: StaticStructureSchema;
222
223
  export declare var UsernamePassword$: StaticStructureSchema;
223
224
  export declare var VolumeSpecification$: StaticStructureSchema;
224
225
  export declare var EMRServiceException$: StaticErrorSchema;
225
- export declare var Credentials$: StaticStructureSchema;
226
+ export declare var Credentials$: StaticUnionSchema;
226
227
  export declare var AddInstanceFleet$: StaticOperationSchema;
227
228
  export declare var AddInstanceGroups$: StaticOperationSchema;
228
229
  export declare var AddJobFlowSteps$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,17 +1,19 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-emr",
3
3
  "description": "AWS SDK for JavaScript Emr Client for Node.js, Browser and React Native",
4
- "version": "3.955.0",
4
+ "version": "3.957.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-emr",
8
8
  "build:es": "tsc -p tsconfig.es.json",
9
- "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
9
+ "build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
12
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
13
13
  "extract:docs": "api-extractor run --local",
14
14
  "generate:client": "node ../../scripts/generate-clients/single-service --solo emr",
15
+ "test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts --mode development",
16
+ "test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
15
17
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
16
18
  },
17
19
  "main": "./dist-cjs/index.js",
@@ -21,43 +23,43 @@
21
23
  "dependencies": {
22
24
  "@aws-crypto/sha256-browser": "5.2.0",
23
25
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "3.954.0",
25
- "@aws-sdk/credential-provider-node": "3.955.0",
26
- "@aws-sdk/middleware-host-header": "3.953.0",
27
- "@aws-sdk/middleware-logger": "3.953.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.953.0",
29
- "@aws-sdk/middleware-user-agent": "3.954.0",
30
- "@aws-sdk/region-config-resolver": "3.953.0",
31
- "@aws-sdk/types": "3.953.0",
32
- "@aws-sdk/util-endpoints": "3.953.0",
33
- "@aws-sdk/util-user-agent-browser": "3.953.0",
34
- "@aws-sdk/util-user-agent-node": "3.954.0",
35
- "@smithy/config-resolver": "^4.4.4",
36
- "@smithy/core": "^3.19.0",
37
- "@smithy/fetch-http-handler": "^5.3.7",
38
- "@smithy/hash-node": "^4.2.6",
39
- "@smithy/invalid-dependency": "^4.2.6",
40
- "@smithy/middleware-content-length": "^4.2.6",
41
- "@smithy/middleware-endpoint": "^4.4.0",
42
- "@smithy/middleware-retry": "^4.4.16",
43
- "@smithy/middleware-serde": "^4.2.7",
44
- "@smithy/middleware-stack": "^4.2.6",
45
- "@smithy/node-config-provider": "^4.3.6",
46
- "@smithy/node-http-handler": "^4.4.6",
47
- "@smithy/protocol-http": "^5.3.6",
48
- "@smithy/smithy-client": "^4.10.1",
49
- "@smithy/types": "^4.10.0",
50
- "@smithy/url-parser": "^4.2.6",
26
+ "@aws-sdk/core": "3.957.0",
27
+ "@aws-sdk/credential-provider-node": "3.957.0",
28
+ "@aws-sdk/middleware-host-header": "3.957.0",
29
+ "@aws-sdk/middleware-logger": "3.957.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.957.0",
31
+ "@aws-sdk/middleware-user-agent": "3.957.0",
32
+ "@aws-sdk/region-config-resolver": "3.957.0",
33
+ "@aws-sdk/types": "3.957.0",
34
+ "@aws-sdk/util-endpoints": "3.957.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.957.0",
36
+ "@aws-sdk/util-user-agent-node": "3.957.0",
37
+ "@smithy/config-resolver": "^4.4.5",
38
+ "@smithy/core": "^3.20.0",
39
+ "@smithy/fetch-http-handler": "^5.3.8",
40
+ "@smithy/hash-node": "^4.2.7",
41
+ "@smithy/invalid-dependency": "^4.2.7",
42
+ "@smithy/middleware-content-length": "^4.2.7",
43
+ "@smithy/middleware-endpoint": "^4.4.1",
44
+ "@smithy/middleware-retry": "^4.4.17",
45
+ "@smithy/middleware-serde": "^4.2.8",
46
+ "@smithy/middleware-stack": "^4.2.7",
47
+ "@smithy/node-config-provider": "^4.3.7",
48
+ "@smithy/node-http-handler": "^4.4.7",
49
+ "@smithy/protocol-http": "^5.3.7",
50
+ "@smithy/smithy-client": "^4.10.2",
51
+ "@smithy/types": "^4.11.0",
52
+ "@smithy/url-parser": "^4.2.7",
51
53
  "@smithy/util-base64": "^4.3.0",
52
54
  "@smithy/util-body-length-browser": "^4.2.0",
53
55
  "@smithy/util-body-length-node": "^4.2.1",
54
- "@smithy/util-defaults-mode-browser": "^4.3.15",
55
- "@smithy/util-defaults-mode-node": "^4.2.18",
56
- "@smithy/util-endpoints": "^3.2.6",
57
- "@smithy/util-middleware": "^4.2.6",
58
- "@smithy/util-retry": "^4.2.6",
56
+ "@smithy/util-defaults-mode-browser": "^4.3.16",
57
+ "@smithy/util-defaults-mode-node": "^4.2.19",
58
+ "@smithy/util-endpoints": "^3.2.7",
59
+ "@smithy/util-middleware": "^4.2.7",
60
+ "@smithy/util-retry": "^4.2.7",
59
61
  "@smithy/util-utf8": "^4.2.0",
60
- "@smithy/util-waiter": "^4.2.6",
62
+ "@smithy/util-waiter": "^4.2.7",
61
63
  "tslib": "^2.6.2"
62
64
  },
63
65
  "devDependencies": {