@aws-sdk/client-appconfig 3.1037.0 → 3.1039.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.
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetDeploymentCommand } from "../commands/GetDeploymentCommand";
2
+ import { GetDeploymentCommand, } from "../commands/GetDeploymentCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetEnvironmentCommand } from "../commands/GetEnvironmentCommand";
2
+ import { GetEnvironmentCommand, } from "../commands/GetEnvironmentCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -384,13 +384,13 @@ export interface AppConfig {
384
384
  * @param args - command input.
385
385
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
386
386
  */
387
- waitUntilDeploymentComplete(args: GetDeploymentCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AppConfig>, "client">): Promise<WaiterResult>;
387
+ waitUntilDeploymentComplete(args: GetDeploymentCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AppConfig>, "client">): Promise<WaiterResult<GetDeploymentCommandOutput>>;
388
388
  /**
389
389
  * @see {@link GetEnvironmentCommand}
390
390
  * @param args - command input.
391
391
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
392
392
  */
393
- waitUntilEnvironmentReadyForDeployment(args: GetEnvironmentCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AppConfig>, "client">): Promise<WaiterResult>;
393
+ waitUntilEnvironmentReadyForDeployment(args: GetEnvironmentCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AppConfig>, "client">): Promise<WaiterResult<GetEnvironmentCommandOutput>>;
394
394
  }
395
395
  /**
396
396
  * <p>AppConfig feature flags and dynamic configurations help software builders
@@ -842,7 +842,7 @@ export interface AppConfig {
842
842
  WaiterConfiguration<AppConfig>,
843
843
  Exclude<keyof WaiterConfiguration<AppConfig>, "client">
844
844
  >
845
- ): Promise<WaiterResult>;
845
+ ): Promise<WaiterResult<GetDeploymentCommandOutput>>;
846
846
  waitUntilEnvironmentReadyForDeployment(
847
847
  args: GetEnvironmentCommandInput,
848
848
  waiterConfig:
@@ -851,6 +851,6 @@ export interface AppConfig {
851
851
  WaiterConfiguration<AppConfig>,
852
852
  Exclude<keyof WaiterConfiguration<AppConfig>, "client">
853
853
  >
854
- ): Promise<WaiterResult>;
854
+ ): Promise<WaiterResult<GetEnvironmentCommandOutput>>;
855
855
  }
856
856
  export declare class AppConfig extends AppConfigClient implements AppConfig {}
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { AppConfigClient } from "../AppConfigClient";
3
- import { GetDeploymentCommandInput } from "../commands/GetDeploymentCommand";
3
+ import {
4
+ GetDeploymentCommandInput,
5
+ GetDeploymentCommandOutput,
6
+ } from "../commands/GetDeploymentCommand";
7
+ import { AppConfigServiceException } from "../models/AppConfigServiceException";
4
8
  export declare const waitForDeploymentComplete: (
5
9
  params: WaiterConfiguration<AppConfigClient>,
6
10
  input: GetDeploymentCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<GetDeploymentCommandOutput | AppConfigServiceException>
13
+ >;
8
14
  export declare const waitUntilDeploymentComplete: (
9
15
  params: WaiterConfiguration<AppConfigClient>,
10
16
  input: GetDeploymentCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<GetDeploymentCommandOutput>>;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { AppConfigClient } from "../AppConfigClient";
3
- import { GetEnvironmentCommandInput } from "../commands/GetEnvironmentCommand";
3
+ import {
4
+ GetEnvironmentCommandInput,
5
+ GetEnvironmentCommandOutput,
6
+ } from "../commands/GetEnvironmentCommand";
7
+ import { AppConfigServiceException } from "../models/AppConfigServiceException";
4
8
  export declare const waitForEnvironmentReadyForDeployment: (
5
9
  params: WaiterConfiguration<AppConfigClient>,
6
10
  input: GetEnvironmentCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<GetEnvironmentCommandOutput | AppConfigServiceException>
13
+ >;
8
14
  export declare const waitUntilEnvironmentReadyForDeployment: (
9
15
  params: WaiterConfiguration<AppConfigClient>,
10
16
  input: GetEnvironmentCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<GetEnvironmentCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
2
  import type { AppConfigClient } from "../AppConfigClient";
3
- import { type GetDeploymentCommandInput } from "../commands/GetDeploymentCommand";
3
+ import { type GetDeploymentCommandInput, type GetDeploymentCommandOutput } from "../commands/GetDeploymentCommand";
4
+ import type { AppConfigServiceException } from "../models/AppConfigServiceException";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilDeploymentComplete instead. waitForDeploymentComplete does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForDeploymentComplete: (params: WaiterConfiguration<AppConfigClient>, input: GetDeploymentCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForDeploymentComplete: (params: WaiterConfiguration<AppConfigClient>, input: GetDeploymentCommandInput) => Promise<WaiterResult<GetDeploymentCommandOutput | AppConfigServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetDeploymentCommand for polling.
13
14
  */
14
- export declare const waitUntilDeploymentComplete: (params: WaiterConfiguration<AppConfigClient>, input: GetDeploymentCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilDeploymentComplete: (params: WaiterConfiguration<AppConfigClient>, input: GetDeploymentCommandInput) => Promise<WaiterResult<GetDeploymentCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
2
  import type { AppConfigClient } from "../AppConfigClient";
3
- import { type GetEnvironmentCommandInput } from "../commands/GetEnvironmentCommand";
3
+ import { type GetEnvironmentCommandInput, type GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
4
+ import type { AppConfigServiceException } from "../models/AppConfigServiceException";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilEnvironmentReadyForDeployment instead. waitForEnvironmentReadyForDeployment does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForEnvironmentReadyForDeployment: (params: WaiterConfiguration<AppConfigClient>, input: GetEnvironmentCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForEnvironmentReadyForDeployment: (params: WaiterConfiguration<AppConfigClient>, input: GetEnvironmentCommandInput) => Promise<WaiterResult<GetEnvironmentCommandOutput | AppConfigServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetEnvironmentCommand for polling.
13
14
  */
14
- export declare const waitUntilEnvironmentReadyForDeployment: (params: WaiterConfiguration<AppConfigClient>, input: GetEnvironmentCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilEnvironmentReadyForDeployment: (params: WaiterConfiguration<AppConfigClient>, input: GetEnvironmentCommandInput) => Promise<WaiterResult<GetEnvironmentCommandOutput>>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appconfig",
3
3
  "description": "AWS SDK for JavaScript Appconfig Client for Node.js, Browser and React Native",
4
- "version": "3.1037.0",
4
+ "version": "3.1039.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-appconfig",
@@ -21,17 +21,17 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.5",
25
- "@aws-sdk/credential-provider-node": "^3.972.36",
24
+ "@aws-sdk/core": "^3.974.7",
25
+ "@aws-sdk/credential-provider-node": "^3.972.38",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.10",
27
27
  "@aws-sdk/middleware-logger": "^3.972.10",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.11",
29
- "@aws-sdk/middleware-user-agent": "^3.972.35",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.37",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.13",
31
31
  "@aws-sdk/types": "^3.973.8",
32
32
  "@aws-sdk/util-endpoints": "^3.996.8",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.10",
34
- "@aws-sdk/util-user-agent-node": "^3.973.21",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.23",
35
35
  "@smithy/config-resolver": "^4.4.17",
36
36
  "@smithy/core": "^3.23.17",
37
37
  "@smithy/fetch-http-handler": "^5.3.17",
@@ -39,7 +39,7 @@
39
39
  "@smithy/invalid-dependency": "^4.2.14",
40
40
  "@smithy/middleware-content-length": "^4.2.14",
41
41
  "@smithy/middleware-endpoint": "^4.4.32",
42
- "@smithy/middleware-retry": "^4.5.5",
42
+ "@smithy/middleware-retry": "^4.5.7",
43
43
  "@smithy/middleware-serde": "^4.2.20",
44
44
  "@smithy/middleware-stack": "^4.2.14",
45
45
  "@smithy/node-config-provider": "^4.3.14",
@@ -55,10 +55,10 @@
55
55
  "@smithy/util-defaults-mode-node": "^4.2.54",
56
56
  "@smithy/util-endpoints": "^3.4.2",
57
57
  "@smithy/util-middleware": "^4.2.14",
58
- "@smithy/util-retry": "^4.3.4",
58
+ "@smithy/util-retry": "^4.3.6",
59
59
  "@smithy/util-stream": "^4.5.25",
60
60
  "@smithy/util-utf8": "^4.2.2",
61
- "@smithy/util-waiter": "^4.2.16",
61
+ "@smithy/util-waiter": "^4.3.0",
62
62
  "tslib": "^2.6.2"
63
63
  },
64
64
  "devDependencies": {