@aws-sdk/client-support 3.995.0 → 3.997.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.
Files changed (2) hide show
  1. package/dist-cjs/index.js +17 -18
  2. package/package.json +37 -37
package/dist-cjs/index.js CHANGED
@@ -335,18 +335,9 @@ class Support extends SupportClient {
335
335
  }
336
336
  smithyClient.createAggregatedClient(commands, Support, { paginators });
337
337
 
338
- Object.defineProperty(exports, "$Command", {
339
- enumerable: true,
340
- get: function () { return smithyClient.Command; }
341
- });
342
- Object.defineProperty(exports, "__Client", {
343
- enumerable: true,
344
- get: function () { return smithyClient.Client; }
345
- });
346
- Object.defineProperty(exports, "SupportServiceException", {
347
- enumerable: true,
348
- get: function () { return SupportServiceException.SupportServiceException; }
349
- });
338
+ exports.$Command = smithyClient.Command;
339
+ exports.__Client = smithyClient.Client;
340
+ exports.SupportServiceException = SupportServiceException.SupportServiceException;
350
341
  exports.AddAttachmentsToSetCommand = AddAttachmentsToSetCommand;
351
342
  exports.AddCommunicationToCaseCommand = AddCommunicationToCaseCommand;
352
343
  exports.CreateCaseCommand = CreateCaseCommand;
@@ -367,15 +358,23 @@ exports.Support = Support;
367
358
  exports.SupportClient = SupportClient;
368
359
  exports.paginateDescribeCases = paginateDescribeCases;
369
360
  exports.paginateDescribeCommunications = paginateDescribeCommunications;
370
- Object.keys(schemas_0).forEach(function (k) {
371
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
361
+ Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
362
+ !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
363
+ Object.defineProperty(exports, '__proto__', {
372
364
  enumerable: true,
373
- get: function () { return schemas_0[k]; }
365
+ value: schemas_0['__proto__']
374
366
  });
367
+
368
+ Object.keys(schemas_0).forEach(function (k) {
369
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
375
370
  });
376
- Object.keys(errors).forEach(function (k) {
377
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
371
+ Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
372
+ !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
373
+ Object.defineProperty(exports, '__proto__', {
378
374
  enumerable: true,
379
- get: function () { return errors[k]; }
375
+ value: errors['__proto__']
380
376
  });
377
+
378
+ Object.keys(errors).forEach(function (k) {
379
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
381
380
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-support",
3
3
  "description": "AWS SDK for JavaScript Support Client for Node.js, Browser and React Native",
4
- "version": "3.995.0",
4
+ "version": "3.997.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-support",
@@ -21,42 +21,42 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.11",
25
- "@aws-sdk/credential-provider-node": "^3.972.10",
26
- "@aws-sdk/middleware-host-header": "^3.972.3",
27
- "@aws-sdk/middleware-logger": "^3.972.3",
28
- "@aws-sdk/middleware-recursion-detection": "^3.972.3",
29
- "@aws-sdk/middleware-user-agent": "^3.972.11",
30
- "@aws-sdk/region-config-resolver": "^3.972.3",
31
- "@aws-sdk/types": "^3.973.1",
32
- "@aws-sdk/util-endpoints": "3.995.0",
33
- "@aws-sdk/util-user-agent-browser": "^3.972.3",
34
- "@aws-sdk/util-user-agent-node": "^3.972.10",
35
- "@smithy/config-resolver": "^4.4.6",
36
- "@smithy/core": "^3.23.2",
37
- "@smithy/fetch-http-handler": "^5.3.9",
38
- "@smithy/hash-node": "^4.2.8",
39
- "@smithy/invalid-dependency": "^4.2.8",
40
- "@smithy/middleware-content-length": "^4.2.8",
41
- "@smithy/middleware-endpoint": "^4.4.16",
42
- "@smithy/middleware-retry": "^4.4.33",
43
- "@smithy/middleware-serde": "^4.2.9",
44
- "@smithy/middleware-stack": "^4.2.8",
45
- "@smithy/node-config-provider": "^4.3.8",
46
- "@smithy/node-http-handler": "^4.4.10",
47
- "@smithy/protocol-http": "^5.3.8",
48
- "@smithy/smithy-client": "^4.11.5",
49
- "@smithy/types": "^4.12.0",
50
- "@smithy/url-parser": "^4.2.8",
51
- "@smithy/util-base64": "^4.3.0",
52
- "@smithy/util-body-length-browser": "^4.2.0",
53
- "@smithy/util-body-length-node": "^4.2.1",
54
- "@smithy/util-defaults-mode-browser": "^4.3.32",
55
- "@smithy/util-defaults-mode-node": "^4.2.35",
56
- "@smithy/util-endpoints": "^3.2.8",
57
- "@smithy/util-middleware": "^4.2.8",
58
- "@smithy/util-retry": "^4.2.8",
59
- "@smithy/util-utf8": "^4.2.0",
24
+ "@aws-sdk/core": "^3.973.13",
25
+ "@aws-sdk/credential-provider-node": "^3.972.12",
26
+ "@aws-sdk/middleware-host-header": "^3.972.4",
27
+ "@aws-sdk/middleware-logger": "^3.972.4",
28
+ "@aws-sdk/middleware-recursion-detection": "^3.972.4",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.13",
30
+ "@aws-sdk/region-config-resolver": "^3.972.4",
31
+ "@aws-sdk/types": "^3.973.2",
32
+ "@aws-sdk/util-endpoints": "^3.996.1",
33
+ "@aws-sdk/util-user-agent-browser": "^3.972.4",
34
+ "@aws-sdk/util-user-agent-node": "^3.972.12",
35
+ "@smithy/config-resolver": "^4.4.7",
36
+ "@smithy/core": "^3.23.4",
37
+ "@smithy/fetch-http-handler": "^5.3.10",
38
+ "@smithy/hash-node": "^4.2.9",
39
+ "@smithy/invalid-dependency": "^4.2.9",
40
+ "@smithy/middleware-content-length": "^4.2.9",
41
+ "@smithy/middleware-endpoint": "^4.4.18",
42
+ "@smithy/middleware-retry": "^4.4.35",
43
+ "@smithy/middleware-serde": "^4.2.10",
44
+ "@smithy/middleware-stack": "^4.2.9",
45
+ "@smithy/node-config-provider": "^4.3.9",
46
+ "@smithy/node-http-handler": "^4.4.11",
47
+ "@smithy/protocol-http": "^5.3.9",
48
+ "@smithy/smithy-client": "^4.11.7",
49
+ "@smithy/types": "^4.12.1",
50
+ "@smithy/url-parser": "^4.2.9",
51
+ "@smithy/util-base64": "^4.3.1",
52
+ "@smithy/util-body-length-browser": "^4.2.1",
53
+ "@smithy/util-body-length-node": "^4.2.2",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.34",
55
+ "@smithy/util-defaults-mode-node": "^4.2.37",
56
+ "@smithy/util-endpoints": "^3.2.9",
57
+ "@smithy/util-middleware": "^4.2.9",
58
+ "@smithy/util-retry": "^4.2.9",
59
+ "@smithy/util-utf8": "^4.2.1",
60
60
  "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {