@aws-sdk/client-outposts 3.839.0 → 3.844.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-types/commands/CreateSiteCommand.d.ts +4 -4
- package/dist-types/commands/GetSiteAddressCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +2 -2
- package/package.json +20 -20
|
@@ -42,8 +42,8 @@ declare const CreateSiteCommand_base: {
|
|
|
42
42
|
* "<keys>": "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* OperatingAddress: { // Address
|
|
45
|
-
* ContactName: "STRING_VALUE",
|
|
46
|
-
* ContactPhoneNumber: "STRING_VALUE",
|
|
45
|
+
* ContactName: "STRING_VALUE", // required
|
|
46
|
+
* ContactPhoneNumber: "STRING_VALUE", // required
|
|
47
47
|
* AddressLine1: "STRING_VALUE", // required
|
|
48
48
|
* AddressLine2: "STRING_VALUE",
|
|
49
49
|
* AddressLine3: "STRING_VALUE",
|
|
@@ -55,8 +55,8 @@ declare const CreateSiteCommand_base: {
|
|
|
55
55
|
* Municipality: "STRING_VALUE",
|
|
56
56
|
* },
|
|
57
57
|
* ShippingAddress: {
|
|
58
|
-
* ContactName: "STRING_VALUE",
|
|
59
|
-
* ContactPhoneNumber: "STRING_VALUE",
|
|
58
|
+
* ContactName: "STRING_VALUE", // required
|
|
59
|
+
* ContactPhoneNumber: "STRING_VALUE", // required
|
|
60
60
|
* AddressLine1: "STRING_VALUE", // required
|
|
61
61
|
* AddressLine2: "STRING_VALUE",
|
|
62
62
|
* AddressLine3: "STRING_VALUE",
|
|
@@ -44,8 +44,8 @@ declare const GetSiteAddressCommand_base: {
|
|
|
44
44
|
* // SiteId: "STRING_VALUE",
|
|
45
45
|
* // AddressType: "SHIPPING_ADDRESS" || "OPERATING_ADDRESS",
|
|
46
46
|
* // Address: { // Address
|
|
47
|
-
* // ContactName: "STRING_VALUE",
|
|
48
|
-
* // ContactPhoneNumber: "STRING_VALUE",
|
|
47
|
+
* // ContactName: "STRING_VALUE", // required
|
|
48
|
+
* // ContactPhoneNumber: "STRING_VALUE", // required
|
|
49
49
|
* // AddressLine1: "STRING_VALUE", // required
|
|
50
50
|
* // AddressLine2: "STRING_VALUE",
|
|
51
51
|
* // AddressLine3: "STRING_VALUE",
|
|
@@ -42,8 +42,8 @@ declare const UpdateSiteAddressCommand_base: {
|
|
|
42
42
|
* SiteId: "STRING_VALUE", // required
|
|
43
43
|
* AddressType: "SHIPPING_ADDRESS" || "OPERATING_ADDRESS", // required
|
|
44
44
|
* Address: { // Address
|
|
45
|
-
* ContactName: "STRING_VALUE",
|
|
46
|
-
* ContactPhoneNumber: "STRING_VALUE",
|
|
45
|
+
* ContactName: "STRING_VALUE", // required
|
|
46
|
+
* ContactPhoneNumber: "STRING_VALUE", // required
|
|
47
47
|
* AddressLine1: "STRING_VALUE", // required
|
|
48
48
|
* AddressLine2: "STRING_VALUE",
|
|
49
49
|
* AddressLine3: "STRING_VALUE",
|
|
@@ -60,8 +60,8 @@ declare const UpdateSiteAddressCommand_base: {
|
|
|
60
60
|
* // { // UpdateSiteAddressOutput
|
|
61
61
|
* // AddressType: "SHIPPING_ADDRESS" || "OPERATING_ADDRESS",
|
|
62
62
|
* // Address: { // Address
|
|
63
|
-
* // ContactName: "STRING_VALUE",
|
|
64
|
-
* // ContactPhoneNumber: "STRING_VALUE",
|
|
63
|
+
* // ContactName: "STRING_VALUE", // required
|
|
64
|
+
* // ContactPhoneNumber: "STRING_VALUE", // required
|
|
65
65
|
* // AddressLine1: "STRING_VALUE", // required
|
|
66
66
|
* // AddressLine2: "STRING_VALUE",
|
|
67
67
|
* // AddressLine3: "STRING_VALUE",
|
|
@@ -22,12 +22,12 @@ export interface Address {
|
|
|
22
22
|
* <p>The name of the contact.</p>
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
ContactName
|
|
25
|
+
ContactName: string | undefined;
|
|
26
26
|
/**
|
|
27
27
|
* <p>The phone number of the contact.</p>
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
ContactPhoneNumber
|
|
30
|
+
ContactPhoneNumber: string | undefined;
|
|
31
31
|
/**
|
|
32
32
|
* <p>The first line of the address.</p>
|
|
33
33
|
* @public
|
|
@@ -9,8 +9,8 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
11
|
export interface Address {
|
|
12
|
-
ContactName
|
|
13
|
-
ContactPhoneNumber
|
|
12
|
+
ContactName: string | undefined;
|
|
13
|
+
ContactPhoneNumber: string | undefined;
|
|
14
14
|
AddressLine1: string | undefined;
|
|
15
15
|
AddressLine2?: string | undefined;
|
|
16
16
|
AddressLine3?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-outposts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.844.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-outposts",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.844.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.844.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.844.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
30
|
+
"@aws-sdk/types": "3.840.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.844.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.844.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0
|
|
35
|
+
"@smithy/core": "^3.7.0",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.1.0",
|
|
37
37
|
"@smithy/hash-node": "^4.0.4",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.14",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.15",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.8",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.4",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.3",
|
|
45
|
-
"@smithy/node-http-handler": "^4.0
|
|
45
|
+
"@smithy/node-http-handler": "^4.1.0",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.6",
|
|
48
48
|
"@smithy/types": "^4.3.1",
|
|
49
49
|
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.22",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.22",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
57
|
"@smithy/util-retry": "^4.0.6",
|