@aws-sdk/client-outposts 3.839.0 → 3.840.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.
@@ -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?: string | undefined;
25
+ ContactName: string | undefined;
26
26
  /**
27
27
  * <p>The phone number of the contact.</p>
28
28
  * @public
29
29
  */
30
- ContactPhoneNumber?: string | undefined;
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?: string | undefined;
13
- ContactPhoneNumber?: string | undefined;
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.839.0",
4
+ "version": "3.840.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,17 +20,17 @@
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.839.0",
24
- "@aws-sdk/credential-provider-node": "3.839.0",
25
- "@aws-sdk/middleware-host-header": "3.821.0",
26
- "@aws-sdk/middleware-logger": "3.821.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.821.0",
28
- "@aws-sdk/middleware-user-agent": "3.839.0",
29
- "@aws-sdk/region-config-resolver": "3.821.0",
30
- "@aws-sdk/types": "3.821.0",
31
- "@aws-sdk/util-endpoints": "3.828.0",
32
- "@aws-sdk/util-user-agent-browser": "3.821.0",
33
- "@aws-sdk/util-user-agent-node": "3.839.0",
23
+ "@aws-sdk/core": "3.840.0",
24
+ "@aws-sdk/credential-provider-node": "3.840.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.840.0",
29
+ "@aws-sdk/region-config-resolver": "3.840.0",
30
+ "@aws-sdk/types": "3.840.0",
31
+ "@aws-sdk/util-endpoints": "3.840.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.840.0",
33
+ "@aws-sdk/util-user-agent-node": "3.840.0",
34
34
  "@smithy/config-resolver": "^4.1.4",
35
35
  "@smithy/core": "^3.6.0",
36
36
  "@smithy/fetch-http-handler": "^5.0.4",