@aws-sdk/client-personalize-events 3.297.0 → 3.299.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.
@@ -31,7 +31,7 @@ class PutEventsCommand extends smithy_client_1.Command {
31
31
  clientName,
32
32
  commandName,
33
33
  inputFilterSensitiveLog: models_0_1.PutEventsRequestFilterSensitiveLog,
34
- outputFilterSensitiveLog: (output) => output,
34
+ outputFilterSensitiveLog: (_) => _,
35
35
  };
36
36
  const { requestHandler } = configuration;
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -31,7 +31,7 @@ class PutItemsCommand extends smithy_client_1.Command {
31
31
  clientName,
32
32
  commandName,
33
33
  inputFilterSensitiveLog: models_0_1.PutItemsRequestFilterSensitiveLog,
34
- outputFilterSensitiveLog: (output) => output,
34
+ outputFilterSensitiveLog: (_) => _,
35
35
  };
36
36
  const { requestHandler } = configuration;
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -31,7 +31,7 @@ class PutUsersCommand extends smithy_client_1.Command {
31
31
  clientName,
32
32
  commandName,
33
33
  inputFilterSensitiveLog: models_0_1.PutUsersRequestFilterSensitiveLog,
34
- outputFilterSensitiveLog: (output) => output,
34
+ outputFilterSensitiveLog: (_) => _,
35
35
  };
36
36
  const { requestHandler } = configuration;
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutUsersRequestFilterSensitiveLog = exports.UserFilterSensitiveLog = exports.PutItemsRequestFilterSensitiveLog = exports.ItemFilterSensitiveLog = exports.PutEventsRequestFilterSensitiveLog = exports.EventFilterSensitiveLog = exports.MetricAttributionFilterSensitiveLog = exports.ResourceNotFoundException = exports.ResourceInUseException = exports.InvalidInputException = void 0;
3
+ exports.PutUsersRequestFilterSensitiveLog = exports.UserFilterSensitiveLog = exports.PutItemsRequestFilterSensitiveLog = exports.ItemFilterSensitiveLog = exports.PutEventsRequestFilterSensitiveLog = exports.EventFilterSensitiveLog = exports.ResourceNotFoundException = exports.ResourceInUseException = exports.InvalidInputException = void 0;
4
4
  const smithy_client_1 = require("@aws-sdk/smithy-client");
5
5
  const PersonalizeEventsServiceException_1 = require("./PersonalizeEventsServiceException");
6
6
  class InvalidInputException extends PersonalizeEventsServiceException_1.PersonalizeEventsServiceException {
@@ -42,10 +42,6 @@ class ResourceNotFoundException extends PersonalizeEventsServiceException_1.Pers
42
42
  }
43
43
  }
44
44
  exports.ResourceNotFoundException = ResourceNotFoundException;
45
- const MetricAttributionFilterSensitiveLog = (obj) => ({
46
- ...obj,
47
- });
48
- exports.MetricAttributionFilterSensitiveLog = MetricAttributionFilterSensitiveLog;
49
45
  const EventFilterSensitiveLog = (obj) => ({
50
46
  ...obj,
51
47
  ...(obj.itemId && { itemId: smithy_client_1.SENSITIVE_STRING }),
@@ -28,7 +28,7 @@ export class PutEventsCommand extends $Command {
28
28
  clientName,
29
29
  commandName,
30
30
  inputFilterSensitiveLog: PutEventsRequestFilterSensitiveLog,
31
- outputFilterSensitiveLog: (output) => output,
31
+ outputFilterSensitiveLog: (_) => _,
32
32
  };
33
33
  const { requestHandler } = configuration;
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -28,7 +28,7 @@ export class PutItemsCommand extends $Command {
28
28
  clientName,
29
29
  commandName,
30
30
  inputFilterSensitiveLog: PutItemsRequestFilterSensitiveLog,
31
- outputFilterSensitiveLog: (output) => output,
31
+ outputFilterSensitiveLog: (_) => _,
32
32
  };
33
33
  const { requestHandler } = configuration;
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -28,7 +28,7 @@ export class PutUsersCommand extends $Command {
28
28
  clientName,
29
29
  commandName,
30
30
  inputFilterSensitiveLog: PutUsersRequestFilterSensitiveLog,
31
- outputFilterSensitiveLog: (output) => output,
31
+ outputFilterSensitiveLog: (_) => _,
32
32
  };
33
33
  const { requestHandler } = configuration;
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -36,9 +36,6 @@ export class ResourceNotFoundException extends __BaseException {
36
36
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
37
37
  }
38
38
  }
39
- export const MetricAttributionFilterSensitiveLog = (obj) => ({
40
- ...obj,
41
- });
42
39
  export const EventFilterSensitiveLog = (obj) => ({
43
40
  ...obj,
44
41
  ...(obj.itemId && { itemId: SENSITIVE_STRING }),
@@ -206,10 +206,6 @@ export interface PutUsersRequest {
206
206
  */
207
207
  users: User[] | undefined;
208
208
  }
209
- /**
210
- * @internal
211
- */
212
- export declare const MetricAttributionFilterSensitiveLog: (obj: MetricAttribution) => any;
213
209
  /**
214
210
  * @internal
215
211
  */
@@ -60,9 +60,6 @@ export interface PutUsersRequest {
60
60
  datasetArn: string | undefined;
61
61
  users: User[] | undefined;
62
62
  }
63
- export declare const MetricAttributionFilterSensitiveLog: (
64
- obj: MetricAttribution
65
- ) => any;
66
63
  export declare const EventFilterSensitiveLog: (obj: Event) => any;
67
64
  export declare const PutEventsRequestFilterSensitiveLog: (
68
65
  obj: PutEventsRequest
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-personalize-events",
3
3
  "description": "AWS SDK for JavaScript Personalize Events Client for Node.js, Browser and React Native",
4
- "version": "3.297.0",
4
+ "version": "3.299.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -11,6 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
14
15
  "generate:client": "node ../../scripts/generate-clients/single-service --solo personalize-events"
15
16
  },
16
17
  "main": "./dist-cjs/index.js",
@@ -20,22 +21,22 @@
20
21
  "dependencies": {
21
22
  "@aws-crypto/sha256-browser": "3.0.0",
22
23
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.297.0",
24
- "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.297.0",
24
+ "@aws-sdk/client-sts": "3.299.0",
25
+ "@aws-sdk/config-resolver": "3.299.0",
26
+ "@aws-sdk/credential-provider-node": "3.299.0",
26
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
28
  "@aws-sdk/hash-node": "3.296.0",
28
29
  "@aws-sdk/invalid-dependency": "3.296.0",
29
30
  "@aws-sdk/middleware-content-length": "3.296.0",
30
- "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-endpoint": "3.299.0",
31
32
  "@aws-sdk/middleware-host-header": "3.296.0",
32
33
  "@aws-sdk/middleware-logger": "3.296.0",
33
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
34
35
  "@aws-sdk/middleware-retry": "3.296.0",
35
36
  "@aws-sdk/middleware-serde": "3.296.0",
36
- "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-signing": "3.299.0",
37
38
  "@aws-sdk/middleware-stack": "3.296.0",
38
- "@aws-sdk/middleware-user-agent": "3.296.0",
39
+ "@aws-sdk/middleware-user-agent": "3.299.0",
39
40
  "@aws-sdk/node-config-provider": "3.296.0",
40
41
  "@aws-sdk/node-http-handler": "3.296.0",
41
42
  "@aws-sdk/protocol-http": "3.296.0",
@@ -46,11 +47,11 @@
46
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
47
48
  "@aws-sdk/util-body-length-node": "3.295.0",
48
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.296.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
51
  "@aws-sdk/util-endpoints": "3.296.0",
51
52
  "@aws-sdk/util-retry": "3.296.0",
52
- "@aws-sdk/util-user-agent-browser": "3.296.0",
53
- "@aws-sdk/util-user-agent-node": "3.296.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.299.0",
54
55
  "@aws-sdk/util-utf8": "3.295.0",
55
56
  "tslib": "^2.5.0"
56
57
  },