@aws-sdk/client-pinpoint 3.437.0 → 3.438.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/endpoint/endpointResolver.js +1 -1
- package/dist-cjs/index.js +1 -0
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +6 -5
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@smithy/util-endpoints");
|
|
5
5
|
const ruleset_1 = require("./ruleset");
|
|
6
6
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
7
|
return (0, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
|
package/dist-cjs/index.js
CHANGED
|
@@ -6,5 +6,6 @@ tslib_1.__exportStar(require("./PinpointClient"), exports);
|
|
|
6
6
|
tslib_1.__exportStar(require("./Pinpoint"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
9
|
+
require("@aws-sdk/util-endpoints");
|
|
9
10
|
var PinpointServiceException_1 = require("./models/PinpointServiceException");
|
|
10
11
|
Object.defineProperty(exports, "PinpointServiceException", { enumerable: true, get: function () { return PinpointServiceException_1.PinpointServiceException; } });
|
package/dist-es/index.js
CHANGED
package/dist-types/index.d.ts
CHANGED
|
@@ -8,4 +8,5 @@ export * from "./Pinpoint";
|
|
|
8
8
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
9
|
export * from "./commands";
|
|
10
10
|
export * from "./models";
|
|
11
|
+
import "@aws-sdk/util-endpoints";
|
|
11
12
|
export { PinpointServiceException } from "./models/PinpointServiceException";
|
|
@@ -5501,7 +5501,7 @@ export interface DeleteEndpointRequest {
|
|
|
5501
5501
|
ApplicationId: string | undefined;
|
|
5502
5502
|
/**
|
|
5503
5503
|
* @public
|
|
5504
|
-
* <p>The unique identifier for the endpoint
|
|
5504
|
+
* <p>The case insensitive unique identifier for the endpoint. The identifier can't contain <code>$</code>, <code>\{</code> or <code>\}</code>.</p>
|
|
5505
5505
|
*/
|
|
5506
5506
|
EndpointId: string | undefined;
|
|
5507
5507
|
}
|
|
@@ -120,7 +120,7 @@ export interface GetEndpointRequest {
|
|
|
120
120
|
ApplicationId: string | undefined;
|
|
121
121
|
/**
|
|
122
122
|
* @public
|
|
123
|
-
* <p>The unique identifier for the endpoint
|
|
123
|
+
* <p>The case insensitive unique identifier for the endpoint. The identifier can't contain <code>$</code>, <code>\{</code> or <code>\}</code>.</p>
|
|
124
124
|
*/
|
|
125
125
|
EndpointId: string | undefined;
|
|
126
126
|
}
|
|
@@ -2759,7 +2759,7 @@ export interface UpdateEndpointRequest {
|
|
|
2759
2759
|
ApplicationId: string | undefined;
|
|
2760
2760
|
/**
|
|
2761
2761
|
* @public
|
|
2762
|
-
* <p>The unique identifier for the endpoint
|
|
2762
|
+
* <p>The case insensitive unique identifier for the endpoint. The identifier can't contain <code>$</code>, <code>\{</code> or <code>\}</code>.</p>
|
|
2763
2763
|
*/
|
|
2764
2764
|
EndpointId: string | undefined;
|
|
2765
2765
|
/**
|
|
@@ -3,4 +3,5 @@ export * from "./Pinpoint";
|
|
|
3
3
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
4
|
export * from "./commands";
|
|
5
5
|
export * from "./models";
|
|
6
|
+
import "@aws-sdk/util-endpoints";
|
|
6
7
|
export { PinpointServiceException } from "./models/PinpointServiceException";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pinpoint",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pinpoint Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.438.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",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.438.0",
|
|
25
25
|
"@aws-sdk/core": "3.436.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.438.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.433.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|
|
30
30
|
"@aws-sdk/middleware-signing": "3.433.0",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.438.0",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "3.433.0",
|
|
33
33
|
"@aws-sdk/types": "3.433.0",
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.438.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "3.433.0",
|
|
36
36
|
"@aws-sdk/util-user-agent-node": "3.437.0",
|
|
37
37
|
"@smithy/config-resolver": "^2.0.16",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
55
|
"@smithy/util-defaults-mode-browser": "^2.0.16",
|
|
56
56
|
"@smithy/util-defaults-mode-node": "^2.0.21",
|
|
57
|
+
"@smithy/util-endpoints": "^1.0.2",
|
|
57
58
|
"@smithy/util-retry": "^2.0.5",
|
|
58
59
|
"@smithy/util-utf8": "^2.0.0",
|
|
59
60
|
"tslib": "^2.5.0"
|