@aws-sdk/client-personalize-events 3.590.0 → 3.592.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 +0 -5
- package/dist-types/commands/PutActionInteractionsCommand.d.ts +2 -1
- package/dist-types/commands/PutActionsCommand.d.ts +2 -1
- package/dist-types/commands/PutEventsCommand.d.ts +2 -1
- package/dist-types/commands/PutItemsCommand.d.ts +2 -1
- package/dist-types/commands/PutUsersCommand.d.ts +2 -1
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/PersonalizeEventsServiceException.d.ts +2 -1
- package/dist-types/ts3.4/commands/PutActionInteractionsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/PutActionsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/PutEventsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/PutItemsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/PutUsersCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/PersonalizeEventsServiceException.d.ts +2 -1
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -196,7 +196,6 @@ var PersonalizeEventsClient = _PersonalizeEventsClient;
|
|
|
196
196
|
|
|
197
197
|
var import_middleware_serde = require("@smithy/middleware-serde");
|
|
198
198
|
|
|
199
|
-
var import_types = require("@smithy/types");
|
|
200
199
|
|
|
201
200
|
// src/models/models_0.ts
|
|
202
201
|
|
|
@@ -610,7 +609,6 @@ var PutActionInteractionsCommand = _PutActionInteractionsCommand;
|
|
|
610
609
|
|
|
611
610
|
|
|
612
611
|
|
|
613
|
-
|
|
614
612
|
var _PutActionsCommand = class _PutActionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
615
613
|
...commonParams
|
|
616
614
|
}).m(function(Command, cs, config, o) {
|
|
@@ -627,7 +625,6 @@ var PutActionsCommand = _PutActionsCommand;
|
|
|
627
625
|
|
|
628
626
|
|
|
629
627
|
|
|
630
|
-
|
|
631
628
|
var _PutEventsCommand = class _PutEventsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
632
629
|
...commonParams
|
|
633
630
|
}).m(function(Command, cs, config, o) {
|
|
@@ -644,7 +641,6 @@ var PutEventsCommand = _PutEventsCommand;
|
|
|
644
641
|
|
|
645
642
|
|
|
646
643
|
|
|
647
|
-
|
|
648
644
|
var _PutItemsCommand = class _PutItemsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
649
645
|
...commonParams
|
|
650
646
|
}).m(function(Command, cs, config, o) {
|
|
@@ -661,7 +657,6 @@ var PutItemsCommand = _PutItemsCommand;
|
|
|
661
657
|
|
|
662
658
|
|
|
663
659
|
|
|
664
|
-
|
|
665
660
|
var _PutUsersCommand = class _PutUsersCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
666
661
|
...commonParams
|
|
667
662
|
}).m(function(Command, cs, config, o) {
|
package/dist-types/index.d.ts
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
export * from "./PersonalizeEventsClient";
|
|
9
9
|
export * from "./PersonalizeEvents";
|
|
10
10
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
11
|
-
export { RuntimeExtension } from "./runtimeExtensions";
|
|
12
|
-
export { PersonalizeEventsExtensionConfiguration } from "./extensionConfiguration";
|
|
11
|
+
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
12
|
+
export type { PersonalizeEventsExtensionConfiguration } from "./extensionConfiguration";
|
|
13
13
|
export * from "./commands";
|
|
14
14
|
export * from "./models";
|
|
15
15
|
export { PersonalizeEventsServiceException } from "./models/PersonalizeEventsServiceException";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
-
export {
|
|
2
|
+
export type { __ServiceExceptionOptions };
|
|
3
|
+
export { __ServiceException };
|
|
3
4
|
/**
|
|
4
5
|
* @public
|
|
5
6
|
*
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceInputTypes,
|
|
7
7
|
ServiceOutputTypes,
|
|
8
8
|
} from "../PersonalizeEventsClient";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface PutActionInteractionsCommandInput
|
|
11
12
|
extends PutActionInteractionsRequest {}
|
|
12
13
|
export interface PutActionInteractionsCommandOutput extends __MetadataBearer {}
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceInputTypes,
|
|
7
7
|
ServiceOutputTypes,
|
|
8
8
|
} from "../PersonalizeEventsClient";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface PutActionsCommandInput extends PutActionsRequest {}
|
|
11
12
|
export interface PutActionsCommandOutput extends __MetadataBearer {}
|
|
12
13
|
declare const PutActionsCommand_base: {
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceInputTypes,
|
|
7
7
|
ServiceOutputTypes,
|
|
8
8
|
} from "../PersonalizeEventsClient";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface PutEventsCommandInput extends PutEventsRequest {}
|
|
11
12
|
export interface PutEventsCommandOutput extends __MetadataBearer {}
|
|
12
13
|
declare const PutEventsCommand_base: {
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceInputTypes,
|
|
7
7
|
ServiceOutputTypes,
|
|
8
8
|
} from "../PersonalizeEventsClient";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface PutItemsCommandInput extends PutItemsRequest {}
|
|
11
12
|
export interface PutItemsCommandOutput extends __MetadataBearer {}
|
|
12
13
|
declare const PutItemsCommand_base: {
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceInputTypes,
|
|
7
7
|
ServiceOutputTypes,
|
|
8
8
|
} from "../PersonalizeEventsClient";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface PutUsersCommandInput extends PutUsersRequest {}
|
|
11
12
|
export interface PutUsersCommandOutput extends __MetadataBearer {}
|
|
12
13
|
declare const PutUsersCommand_base: {
|
|
@@ -2,7 +2,8 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@smithy/smithy-client";
|
|
5
|
-
export {
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
6
7
|
export declare class PersonalizeEventsServiceException extends __ServiceException {
|
|
7
8
|
constructor(options: __ServiceExceptionOptions);
|
|
8
9
|
}
|
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.
|
|
4
|
+
"version": "3.592.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-personalize-events",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.592.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.592.0",
|
|
25
|
+
"@aws-sdk/core": "3.592.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.592.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.587.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.1",
|
|
37
|
-
"@smithy/core": "^2.
|
|
37
|
+
"@smithy/core": "^2.2.0",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.0.1",
|
|
39
39
|
"@smithy/hash-node": "^3.0.0",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.0",
|