@aws-sdk/client-braket 3.863.0 → 3.867.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.
@@ -10,6 +10,11 @@ export declare class AccessDeniedException extends __BaseException {
10
10
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
11
  );
12
12
  }
13
+ export interface ActionMetadata {
14
+ actionType: string | undefined;
15
+ programCount?: number | undefined;
16
+ executableCount?: number | undefined;
17
+ }
13
18
  export interface ContainerImage {
14
19
  uri: string | undefined;
15
20
  }
@@ -96,9 +101,21 @@ export declare class ThrottlingException extends __BaseException {
96
101
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
97
102
  );
98
103
  }
104
+ export interface ProgramSetValidationFailure {
105
+ programIndex: number | undefined;
106
+ inputsIndex?: number | undefined;
107
+ errors?: string[] | undefined;
108
+ }
109
+ export declare const ValidationExceptionReason: {
110
+ readonly PROGRAM_SET_VALIDATION_FAILED: "ProgramSetValidationFailed";
111
+ };
112
+ export type ValidationExceptionReason =
113
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
99
114
  export declare class ValidationException extends __BaseException {
100
115
  readonly name: "ValidationException";
101
116
  readonly $fault: "client";
117
+ reason?: ValidationExceptionReason | undefined;
118
+ programSetValidationFailures?: ProgramSetValidationFailure[] | undefined;
102
119
  constructor(
103
120
  opts: __ExceptionOptionType<ValidationException, __BaseException>
104
121
  );
@@ -423,6 +440,8 @@ export interface GetQuantumTaskResponse {
423
440
  jobArn?: string | undefined;
424
441
  queueInfo?: QuantumTaskQueueInfo | undefined;
425
442
  associations?: Association[] | undefined;
443
+ numSuccessfulShots?: number | undefined;
444
+ actionMetadata?: ActionMetadata | undefined;
426
445
  }
427
446
  export declare const SearchQuantumTasksFilterOperator: {
428
447
  readonly BETWEEN: "BETWEEN";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-braket",
3
3
  "description": "AWS SDK for JavaScript Braket Client for Node.js, Browser and React Native",
4
- "version": "3.863.0",
4
+ "version": "3.867.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-braket",
@@ -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.863.0",
24
- "@aws-sdk/credential-provider-node": "3.863.0",
23
+ "@aws-sdk/core": "3.864.0",
24
+ "@aws-sdk/credential-provider-node": "3.864.0",
25
25
  "@aws-sdk/middleware-host-header": "3.862.0",
26
26
  "@aws-sdk/middleware-logger": "3.862.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.862.0",
28
- "@aws-sdk/middleware-user-agent": "3.863.0",
28
+ "@aws-sdk/middleware-user-agent": "3.864.0",
29
29
  "@aws-sdk/region-config-resolver": "3.862.0",
30
30
  "@aws-sdk/types": "3.862.0",
31
31
  "@aws-sdk/util-endpoints": "3.862.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.862.0",
33
- "@aws-sdk/util-user-agent-node": "3.863.0",
33
+ "@aws-sdk/util-user-agent-node": "3.864.0",
34
34
  "@smithy/config-resolver": "^4.1.5",
35
35
  "@smithy/core": "^3.8.0",
36
36
  "@smithy/fetch-http-handler": "^5.1.1",