@aws-sdk/client-outposts 3.693.0 → 3.694.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 CHANGED
@@ -425,6 +425,7 @@ var PaymentOption = {
425
425
  PARTIAL_UPFRONT: "PARTIAL_UPFRONT"
426
426
  };
427
427
  var PaymentTerm = {
428
+ FIVE_YEARS: "FIVE_YEARS",
428
429
  ONE_YEAR: "ONE_YEAR",
429
430
  THREE_YEARS: "THREE_YEARS"
430
431
  };
@@ -129,6 +129,7 @@ export const PaymentOption = {
129
129
  PARTIAL_UPFRONT: "PARTIAL_UPFRONT",
130
130
  };
131
131
  export const PaymentTerm = {
132
+ FIVE_YEARS: "FIVE_YEARS",
132
133
  ONE_YEAR: "ONE_YEAR",
133
134
  THREE_YEARS: "THREE_YEARS",
134
135
  };
@@ -43,7 +43,7 @@ declare const CreateOrderCommand_base: {
43
43
  * },
44
44
  * ],
45
45
  * PaymentOption: "ALL_UPFRONT" || "NO_UPFRONT" || "PARTIAL_UPFRONT", // required
46
- * PaymentTerm: "THREE_YEARS" || "ONE_YEAR",
46
+ * PaymentTerm: "THREE_YEARS" || "ONE_YEAR" || "FIVE_YEARS",
47
47
  * };
48
48
  * const command = new CreateOrderCommand(input);
49
49
  * const response = await client.send(command);
@@ -77,7 +77,7 @@ declare const CreateOrderCommand_base: {
77
77
  * // PaymentOption: "ALL_UPFRONT" || "NO_UPFRONT" || "PARTIAL_UPFRONT",
78
78
  * // OrderSubmissionDate: new Date("TIMESTAMP"),
79
79
  * // OrderFulfilledDate: new Date("TIMESTAMP"),
80
- * // PaymentTerm: "THREE_YEARS" || "ONE_YEAR",
80
+ * // PaymentTerm: "THREE_YEARS" || "ONE_YEAR" || "FIVE_YEARS",
81
81
  * // OrderType: "OUTPOST" || "REPLACEMENT",
82
82
  * // },
83
83
  * // };
@@ -69,7 +69,7 @@ declare const GetOrderCommand_base: {
69
69
  * // PaymentOption: "ALL_UPFRONT" || "NO_UPFRONT" || "PARTIAL_UPFRONT",
70
70
  * // OrderSubmissionDate: new Date("TIMESTAMP"),
71
71
  * // OrderFulfilledDate: new Date("TIMESTAMP"),
72
- * // PaymentTerm: "THREE_YEARS" || "ONE_YEAR",
72
+ * // PaymentTerm: "THREE_YEARS" || "ONE_YEAR" || "FIVE_YEARS",
73
73
  * // OrderType: "OUTPOST" || "REPLACEMENT",
74
74
  * // },
75
75
  * // };
@@ -664,6 +664,7 @@ export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
664
664
  * @enum
665
665
  */
666
666
  export declare const PaymentTerm: {
667
+ readonly FIVE_YEARS: "FIVE_YEARS";
667
668
  readonly ONE_YEAR: "ONE_YEAR";
668
669
  readonly THREE_YEARS: "THREE_YEARS";
669
670
  };
@@ -214,6 +214,7 @@ export declare const PaymentOption: {
214
214
  };
215
215
  export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
216
216
  export declare const PaymentTerm: {
217
+ readonly FIVE_YEARS: "FIVE_YEARS";
217
218
  readonly ONE_YEAR: "ONE_YEAR";
218
219
  readonly THREE_YEARS: "THREE_YEARS";
219
220
  };
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.693.0",
4
+ "version": "3.694.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",