@aws-sdk/client-nova-act 3.943.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.
Files changed (137) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +333 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1297 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +36 -0
  11. package/dist-es/NovaAct.js +39 -0
  12. package/dist-es/NovaActClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/CreateActCommand.js +16 -0
  16. package/dist-es/commands/CreateSessionCommand.js +16 -0
  17. package/dist-es/commands/CreateWorkflowDefinitionCommand.js +16 -0
  18. package/dist-es/commands/CreateWorkflowRunCommand.js +16 -0
  19. package/dist-es/commands/DeleteWorkflowDefinitionCommand.js +16 -0
  20. package/dist-es/commands/DeleteWorkflowRunCommand.js +16 -0
  21. package/dist-es/commands/GetWorkflowDefinitionCommand.js +16 -0
  22. package/dist-es/commands/GetWorkflowRunCommand.js +16 -0
  23. package/dist-es/commands/InvokeActStepCommand.js +16 -0
  24. package/dist-es/commands/ListActsCommand.js +16 -0
  25. package/dist-es/commands/ListModelsCommand.js +16 -0
  26. package/dist-es/commands/ListSessionsCommand.js +16 -0
  27. package/dist-es/commands/ListWorkflowDefinitionsCommand.js +16 -0
  28. package/dist-es/commands/ListWorkflowRunsCommand.js +16 -0
  29. package/dist-es/commands/UpdateActCommand.js +16 -0
  30. package/dist-es/commands/UpdateWorkflowRunCommand.js +16 -0
  31. package/dist-es/commands/index.js +16 -0
  32. package/dist-es/endpoint/EndpointParameters.js +13 -0
  33. package/dist-es/endpoint/endpointResolver.js +14 -0
  34. package/dist-es/endpoint/ruleset.js +4 -0
  35. package/dist-es/extensionConfiguration.js +1 -0
  36. package/dist-es/index.js +7 -0
  37. package/dist-es/models/NovaActServiceException.js +8 -0
  38. package/dist-es/models/enums.js +41 -0
  39. package/dist-es/models/errors.js +119 -0
  40. package/dist-es/models/models_0.js +1 -0
  41. package/dist-es/pagination/Interfaces.js +1 -0
  42. package/dist-es/pagination/ListActsPaginator.js +4 -0
  43. package/dist-es/pagination/ListSessionsPaginator.js +4 -0
  44. package/dist-es/pagination/ListWorkflowDefinitionsPaginator.js +4 -0
  45. package/dist-es/pagination/ListWorkflowRunsPaginator.js +4 -0
  46. package/dist-es/pagination/index.js +5 -0
  47. package/dist-es/runtimeConfig.browser.js +34 -0
  48. package/dist-es/runtimeConfig.js +51 -0
  49. package/dist-es/runtimeConfig.native.js +11 -0
  50. package/dist-es/runtimeConfig.shared.js +32 -0
  51. package/dist-es/runtimeExtensions.js +9 -0
  52. package/dist-es/schemas/schemas_0.js +753 -0
  53. package/dist-types/NovaAct.d.ts +123 -0
  54. package/dist-types/NovaActClient.d.ts +212 -0
  55. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  56. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  57. package/dist-types/commands/CreateActCommand.d.ts +109 -0
  58. package/dist-types/commands/CreateSessionCommand.d.ts +97 -0
  59. package/dist-types/commands/CreateWorkflowDefinitionCommand.d.ts +98 -0
  60. package/dist-types/commands/CreateWorkflowRunCommand.d.ts +100 -0
  61. package/dist-types/commands/DeleteWorkflowDefinitionCommand.d.ts +92 -0
  62. package/dist-types/commands/DeleteWorkflowRunCommand.d.ts +93 -0
  63. package/dist-types/commands/GetWorkflowDefinitionCommand.d.ts +97 -0
  64. package/dist-types/commands/GetWorkflowRunCommand.d.ts +99 -0
  65. package/dist-types/commands/InvokeActStepCommand.d.ts +116 -0
  66. package/dist-types/commands/ListActsCommand.d.ts +111 -0
  67. package/dist-types/commands/ListModelsCommand.d.ts +105 -0
  68. package/dist-types/commands/ListSessionsCommand.d.ts +101 -0
  69. package/dist-types/commands/ListWorkflowDefinitionsCommand.d.ts +96 -0
  70. package/dist-types/commands/ListWorkflowRunsCommand.d.ts +108 -0
  71. package/dist-types/commands/UpdateActCommand.d.ts +98 -0
  72. package/dist-types/commands/UpdateWorkflowRunCommand.d.ts +92 -0
  73. package/dist-types/commands/index.d.ts +16 -0
  74. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  75. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  76. package/dist-types/endpoint/ruleset.d.ts +2 -0
  77. package/dist-types/extensionConfiguration.d.ts +9 -0
  78. package/dist-types/index.d.ts +16 -0
  79. package/dist-types/models/NovaActServiceException.d.ts +14 -0
  80. package/dist-types/models/enums.d.ts +105 -0
  81. package/dist-types/models/errors.d.ts +167 -0
  82. package/dist-types/models/models_0.d.ts +1014 -0
  83. package/dist-types/pagination/Interfaces.d.ts +8 -0
  84. package/dist-types/pagination/ListActsPaginator.d.ts +7 -0
  85. package/dist-types/pagination/ListSessionsPaginator.d.ts +7 -0
  86. package/dist-types/pagination/ListWorkflowDefinitionsPaginator.d.ts +7 -0
  87. package/dist-types/pagination/ListWorkflowRunsPaginator.d.ts +7 -0
  88. package/dist-types/pagination/index.d.ts +5 -0
  89. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  90. package/dist-types/runtimeConfig.d.ts +51 -0
  91. package/dist-types/runtimeConfig.native.d.ts +50 -0
  92. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  93. package/dist-types/runtimeExtensions.d.ts +17 -0
  94. package/dist-types/schemas/schemas_0.d.ts +93 -0
  95. package/dist-types/ts3.4/NovaAct.d.ts +278 -0
  96. package/dist-types/ts3.4/NovaActClient.d.ts +219 -0
  97. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  98. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  99. package/dist-types/ts3.4/commands/CreateActCommand.d.ts +47 -0
  100. package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +50 -0
  101. package/dist-types/ts3.4/commands/CreateWorkflowDefinitionCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/CreateWorkflowRunCommand.d.ts +51 -0
  103. package/dist-types/ts3.4/commands/DeleteWorkflowDefinitionCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/DeleteWorkflowRunCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/GetWorkflowDefinitionCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +50 -0
  107. package/dist-types/ts3.4/commands/InvokeActStepCommand.d.ts +50 -0
  108. package/dist-types/ts3.4/commands/ListActsCommand.d.ts +47 -0
  109. package/dist-types/ts3.4/commands/ListModelsCommand.d.ts +47 -0
  110. package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +47 -0
  111. package/dist-types/ts3.4/commands/ListWorkflowDefinitionsCommand.d.ts +51 -0
  112. package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +50 -0
  113. package/dist-types/ts3.4/commands/UpdateActCommand.d.ts +47 -0
  114. package/dist-types/ts3.4/commands/UpdateWorkflowRunCommand.d.ts +51 -0
  115. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  116. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  117. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  118. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  119. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  120. package/dist-types/ts3.4/index.d.ts +11 -0
  121. package/dist-types/ts3.4/models/NovaActServiceException.d.ts +9 -0
  122. package/dist-types/ts3.4/models/enums.d.ts +54 -0
  123. package/dist-types/ts3.4/models/errors.d.ts +73 -0
  124. package/dist-types/ts3.4/models/models_0.d.ts +275 -0
  125. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  126. package/dist-types/ts3.4/pagination/ListActsPaginator.d.ts +11 -0
  127. package/dist-types/ts3.4/pagination/ListSessionsPaginator.d.ts +11 -0
  128. package/dist-types/ts3.4/pagination/ListWorkflowDefinitionsPaginator.d.ts +11 -0
  129. package/dist-types/ts3.4/pagination/ListWorkflowRunsPaginator.d.ts +11 -0
  130. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  131. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +96 -0
  132. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  133. package/dist-types/ts3.4/runtimeConfig.native.d.ts +100 -0
  134. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +25 -0
  135. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  136. package/dist-types/ts3.4/schemas/schemas_0.d.ts +99 -0
  137. package/package.json +99 -0
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetWorkflowRunRequest,
5
+ GetWorkflowRunResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetWorkflowRunCommandInput extends GetWorkflowRunRequest {}
15
+ export interface GetWorkflowRunCommandOutput
16
+ extends GetWorkflowRunResponse,
17
+ __MetadataBearer {}
18
+ declare const GetWorkflowRunCommand_base: {
19
+ new (
20
+ input: GetWorkflowRunCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetWorkflowRunCommandInput,
23
+ GetWorkflowRunCommandOutput,
24
+ NovaActClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetWorkflowRunCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetWorkflowRunCommandInput,
32
+ GetWorkflowRunCommandOutput,
33
+ NovaActClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetWorkflowRunCommand extends GetWorkflowRunCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetWorkflowRunRequest;
43
+ output: GetWorkflowRunResponse;
44
+ };
45
+ sdk: {
46
+ input: GetWorkflowRunCommandInput;
47
+ output: GetWorkflowRunCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ InvokeActStepRequest,
5
+ InvokeActStepResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface InvokeActStepCommandInput extends InvokeActStepRequest {}
15
+ export interface InvokeActStepCommandOutput
16
+ extends InvokeActStepResponse,
17
+ __MetadataBearer {}
18
+ declare const InvokeActStepCommand_base: {
19
+ new (
20
+ input: InvokeActStepCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ InvokeActStepCommandInput,
23
+ InvokeActStepCommandOutput,
24
+ NovaActClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: InvokeActStepCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ InvokeActStepCommandInput,
32
+ InvokeActStepCommandOutput,
33
+ NovaActClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class InvokeActStepCommand extends InvokeActStepCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: InvokeActStepRequest;
43
+ output: InvokeActStepResponse;
44
+ };
45
+ sdk: {
46
+ input: InvokeActStepCommandInput;
47
+ output: InvokeActStepCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListActsRequest, ListActsResponse } from "../models/models_0";
4
+ import {
5
+ NovaActClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../NovaActClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListActsCommandInput extends ListActsRequest {}
12
+ export interface ListActsCommandOutput
13
+ extends ListActsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListActsCommand_base: {
16
+ new (
17
+ input: ListActsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListActsCommandInput,
20
+ ListActsCommandOutput,
21
+ NovaActClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: ListActsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListActsCommandInput,
29
+ ListActsCommandOutput,
30
+ NovaActClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListActsCommand extends ListActsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListActsRequest;
40
+ output: ListActsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListActsCommandInput;
44
+ output: ListActsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListModelsRequest, ListModelsResponse } from "../models/models_0";
4
+ import {
5
+ NovaActClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../NovaActClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListModelsCommandInput extends ListModelsRequest {}
12
+ export interface ListModelsCommandOutput
13
+ extends ListModelsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListModelsCommand_base: {
16
+ new (
17
+ input: ListModelsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListModelsCommandInput,
20
+ ListModelsCommandOutput,
21
+ NovaActClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: ListModelsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListModelsCommandInput,
29
+ ListModelsCommandOutput,
30
+ NovaActClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListModelsCommand extends ListModelsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListModelsRequest;
40
+ output: ListModelsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListModelsCommandInput;
44
+ output: ListModelsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListSessionsRequest, ListSessionsResponse } from "../models/models_0";
4
+ import {
5
+ NovaActClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../NovaActClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListSessionsCommandInput extends ListSessionsRequest {}
12
+ export interface ListSessionsCommandOutput
13
+ extends ListSessionsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListSessionsCommand_base: {
16
+ new (
17
+ input: ListSessionsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListSessionsCommandInput,
20
+ ListSessionsCommandOutput,
21
+ NovaActClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: ListSessionsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListSessionsCommandInput,
29
+ ListSessionsCommandOutput,
30
+ NovaActClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListSessionsCommand extends ListSessionsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListSessionsRequest;
40
+ output: ListSessionsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListSessionsCommandInput;
44
+ output: ListSessionsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListWorkflowDefinitionsRequest,
5
+ ListWorkflowDefinitionsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListWorkflowDefinitionsCommandInput
15
+ extends ListWorkflowDefinitionsRequest {}
16
+ export interface ListWorkflowDefinitionsCommandOutput
17
+ extends ListWorkflowDefinitionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListWorkflowDefinitionsCommand_base: {
20
+ new (
21
+ input: ListWorkflowDefinitionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListWorkflowDefinitionsCommandInput,
24
+ ListWorkflowDefinitionsCommandOutput,
25
+ NovaActClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListWorkflowDefinitionsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListWorkflowDefinitionsCommandInput,
33
+ ListWorkflowDefinitionsCommandOutput,
34
+ NovaActClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListWorkflowDefinitionsCommand extends ListWorkflowDefinitionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListWorkflowDefinitionsRequest;
44
+ output: ListWorkflowDefinitionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListWorkflowDefinitionsCommandInput;
48
+ output: ListWorkflowDefinitionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListWorkflowRunsRequest,
5
+ ListWorkflowRunsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListWorkflowRunsCommandInput extends ListWorkflowRunsRequest {}
15
+ export interface ListWorkflowRunsCommandOutput
16
+ extends ListWorkflowRunsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListWorkflowRunsCommand_base: {
19
+ new (
20
+ input: ListWorkflowRunsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListWorkflowRunsCommandInput,
23
+ ListWorkflowRunsCommandOutput,
24
+ NovaActClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: ListWorkflowRunsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListWorkflowRunsCommandInput,
32
+ ListWorkflowRunsCommandOutput,
33
+ NovaActClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListWorkflowRunsCommand extends ListWorkflowRunsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListWorkflowRunsRequest;
43
+ output: ListWorkflowRunsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListWorkflowRunsCommandInput;
47
+ output: ListWorkflowRunsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateActRequest, UpdateActResponse } from "../models/models_0";
4
+ import {
5
+ NovaActClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../NovaActClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateActCommandInput extends UpdateActRequest {}
12
+ export interface UpdateActCommandOutput
13
+ extends UpdateActResponse,
14
+ __MetadataBearer {}
15
+ declare const UpdateActCommand_base: {
16
+ new (
17
+ input: UpdateActCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ UpdateActCommandInput,
20
+ UpdateActCommandOutput,
21
+ NovaActClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: UpdateActCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ UpdateActCommandInput,
29
+ UpdateActCommandOutput,
30
+ NovaActClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class UpdateActCommand extends UpdateActCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UpdateActRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: UpdateActCommandInput;
44
+ output: UpdateActCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateWorkflowRunRequest,
5
+ UpdateWorkflowRunResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NovaActClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NovaActClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateWorkflowRunCommandInput
15
+ extends UpdateWorkflowRunRequest {}
16
+ export interface UpdateWorkflowRunCommandOutput
17
+ extends UpdateWorkflowRunResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateWorkflowRunCommand_base: {
20
+ new (
21
+ input: UpdateWorkflowRunCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateWorkflowRunCommandInput,
24
+ UpdateWorkflowRunCommandOutput,
25
+ NovaActClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateWorkflowRunCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateWorkflowRunCommandInput,
33
+ UpdateWorkflowRunCommandOutput,
34
+ NovaActClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateWorkflowRunCommand extends UpdateWorkflowRunCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateWorkflowRunRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: UpdateWorkflowRunCommandInput;
48
+ output: UpdateWorkflowRunCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,16 @@
1
+ export * from "./CreateActCommand";
2
+ export * from "./CreateSessionCommand";
3
+ export * from "./CreateWorkflowDefinitionCommand";
4
+ export * from "./CreateWorkflowRunCommand";
5
+ export * from "./DeleteWorkflowDefinitionCommand";
6
+ export * from "./DeleteWorkflowRunCommand";
7
+ export * from "./GetWorkflowDefinitionCommand";
8
+ export * from "./GetWorkflowRunCommand";
9
+ export * from "./InvokeActStepCommand";
10
+ export * from "./ListActsCommand";
11
+ export * from "./ListModelsCommand";
12
+ export * from "./ListSessionsCommand";
13
+ export * from "./ListWorkflowDefinitionsCommand";
14
+ export * from "./ListWorkflowRunsCommand";
15
+ export * from "./UpdateActCommand";
16
+ export * from "./UpdateWorkflowRunCommand";
@@ -0,0 +1,51 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
9
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
10
+ endpoint?:
11
+ | string
12
+ | Provider<string>
13
+ | Endpoint
14
+ | Provider<Endpoint>
15
+ | EndpointV2
16
+ | Provider<EndpointV2>;
17
+ region?: string | undefined | Provider<string | undefined>;
18
+ }
19
+ export type ClientResolvedEndpointParameters = Pick<
20
+ ClientInputEndpointParameters,
21
+ Exclude<keyof ClientInputEndpointParameters, "endpoint">
22
+ > & {
23
+ defaultSigningName: string;
24
+ };
25
+ export declare const resolveClientEndpointParameters: <T>(
26
+ options: T & ClientInputEndpointParameters
27
+ ) => T & ClientResolvedEndpointParameters;
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
46
+ export interface EndpointParameters extends __EndpointParameters {
47
+ UseDualStack?: boolean | undefined;
48
+ UseFIPS?: boolean | undefined;
49
+ Endpoint?: string | undefined;
50
+ Region?: string | undefined;
51
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface NovaActExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,11 @@
1
+ export * from "./NovaActClient";
2
+ export * from "./NovaAct";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { NovaActExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
11
+ export { NovaActServiceException } from "./models/NovaActServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class NovaActServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }
@@ -0,0 +1,54 @@
1
+ export declare const ActStatus: {
2
+ readonly FAILED: "FAILED";
3
+ readonly PENDING_CLIENT_ACTION: "PENDING_CLIENT_ACTION";
4
+ readonly PENDING_HUMAN_ACTION: "PENDING_HUMAN_ACTION";
5
+ readonly RUNNING: "RUNNING";
6
+ readonly SUCCEEDED: "SUCCEEDED";
7
+ readonly TIMED_OUT: "TIMED_OUT";
8
+ };
9
+ export type ActStatus = (typeof ActStatus)[keyof typeof ActStatus];
10
+ export declare const InternalServerExceptionReason: {
11
+ readonly INVALID_MODEL_GENERATION: "InvalidModelGeneration";
12
+ readonly TOKEN_LIMIT_EXCEEDED: "RequestTokenLimitExceeded";
13
+ };
14
+ export type InternalServerExceptionReason =
15
+ (typeof InternalServerExceptionReason)[keyof typeof InternalServerExceptionReason];
16
+ export declare const ValidationExceptionReason: {
17
+ readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
18
+ readonly GUARDRAIL_INTERVENED: "GuardrailIntervened";
19
+ readonly INVALID_STATUS: "InvalidStatus";
20
+ };
21
+ export type ValidationExceptionReason =
22
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
23
+ export declare const SortOrder: {
24
+ readonly ASC: "Ascending";
25
+ readonly DESC: "Descending";
26
+ };
27
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
28
+ export declare const TraceLocationType: {
29
+ readonly S3: "S3";
30
+ };
31
+ export type TraceLocationType =
32
+ (typeof TraceLocationType)[keyof typeof TraceLocationType];
33
+ export declare const ModelStatus: {
34
+ readonly ACTIVE: "ACTIVE";
35
+ readonly DEPRECATED: "DEPRECATED";
36
+ readonly LEGACY: "LEGACY";
37
+ readonly PREVIEW: "PREVIEW";
38
+ };
39
+ export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
40
+ export declare const WorkflowDefinitionStatus: {
41
+ readonly ACTIVE: "ACTIVE";
42
+ readonly DELETING: "DELETING";
43
+ };
44
+ export type WorkflowDefinitionStatus =
45
+ (typeof WorkflowDefinitionStatus)[keyof typeof WorkflowDefinitionStatus];
46
+ export declare const WorkflowRunStatus: {
47
+ readonly DELETING: "DELETING";
48
+ readonly FAILED: "FAILED";
49
+ readonly RUNNING: "RUNNING";
50
+ readonly SUCCEEDED: "SUCCEEDED";
51
+ readonly TIMED_OUT: "TIMED_OUT";
52
+ };
53
+ export type WorkflowRunStatus =
54
+ (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];