@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { NovaActClient } from "../NovaActClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface NovaActPaginationConfiguration extends PaginationConfiguration {
7
+ client: NovaActClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListActsCommandInput, ListActsCommandOutput } from "../commands/ListActsCommand";
3
+ import { NovaActPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListActs: (config: NovaActPaginationConfiguration, input: ListActsCommandInput, ...rest: any[]) => Paginator<ListActsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListSessionsCommandInput, ListSessionsCommandOutput } from "../commands/ListSessionsCommand";
3
+ import { NovaActPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListSessions: (config: NovaActPaginationConfiguration, input: ListSessionsCommandInput, ...rest: any[]) => Paginator<ListSessionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListWorkflowDefinitionsCommandInput, ListWorkflowDefinitionsCommandOutput } from "../commands/ListWorkflowDefinitionsCommand";
3
+ import { NovaActPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListWorkflowDefinitions: (config: NovaActPaginationConfiguration, input: ListWorkflowDefinitionsCommandInput, ...rest: any[]) => Paginator<ListWorkflowDefinitionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListWorkflowRunsCommandInput, ListWorkflowRunsCommandOutput } from "../commands/ListWorkflowRunsCommand";
3
+ import { NovaActPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListWorkflowRuns: (config: NovaActPaginationConfiguration, input: ListWorkflowRunsCommandInput, ...rest: any[]) => Paginator<ListWorkflowRunsCommandOutput>;
@@ -0,0 +1,5 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListActsPaginator";
3
+ export * from "./ListSessionsPaginator";
4
+ export * from "./ListWorkflowDefinitionsPaginator";
5
+ export * from "./ListWorkflowRunsPaginator";
@@ -0,0 +1,51 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { NovaActClientConfig } from "./NovaActClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: NovaActClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: Uint8Array | string) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: Uint8Array | string) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ profile?: string;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
33
+ customUserAgent?: string | import("@smithy/types").UserAgent;
34
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
37
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
38
+ logger?: import("@smithy/types").Logger;
39
+ }) => import("@smithy/types").EndpointV2;
40
+ tls?: boolean;
41
+ serviceConfiguredEndpoint?: never;
42
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
43
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
44
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").NovaActHttpAuthSchemeProvider;
45
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
46
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
47
+ signingEscapePath?: boolean;
48
+ systemClockOffset?: number;
49
+ signingRegion?: string;
50
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
51
+ };
@@ -0,0 +1,51 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { NovaActClientConfig } from "./NovaActClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: NovaActClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
+ maxAttempts: number | import("@smithy/types").Provider<number>;
14
+ region: string | import("@smithy/types").Provider<string>;
15
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
16
+ retryMode: string | import("@smithy/types").Provider<string>;
17
+ sha256: import("@smithy/types").HashConstructor;
18
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
+ apiVersion: string;
23
+ cacheMiddleware?: boolean | undefined;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: (_input: Uint8Array | string) => string;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: (input: Uint8Array | string) => string;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ profile?: string;
32
+ logger: import("@smithy/types").Logger;
33
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
35
+ customUserAgent?: string | import("@smithy/types").UserAgent;
36
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
37
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
38
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
39
+ logger?: import("@smithy/types").Logger;
40
+ }) => import("@smithy/types").EndpointV2;
41
+ tls?: boolean;
42
+ serviceConfiguredEndpoint?: never;
43
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
44
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").NovaActHttpAuthSchemeProvider;
45
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
46
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
47
+ signingEscapePath?: boolean;
48
+ systemClockOffset?: number;
49
+ signingRegion?: string;
50
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
51
+ };
@@ -0,0 +1,50 @@
1
+ import { NovaActClientConfig } from "./NovaActClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: NovaActClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: Uint8Array | string) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: Uint8Array | string) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
21
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
+ maxAttempts: number | import("@smithy/types").Provider<number>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
31
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
32
+ customUserAgent?: string | import("@smithy/types").UserAgent;
33
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
35
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean;
40
+ serviceConfiguredEndpoint?: never;
41
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").NovaActHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
46
+ signingEscapePath?: boolean;
47
+ systemClockOffset?: number;
48
+ signingRegion?: string;
49
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
50
+ };
@@ -0,0 +1,22 @@
1
+ import { NovaActClientConfig } from "./NovaActClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: NovaActClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: Uint8Array | string) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").NovaActHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
18
+ serviceId: string;
19
+ urlParser: import("@smithy/types").UrlParser;
20
+ utf8Decoder: import("@smithy/types").Decoder;
21
+ utf8Encoder: (input: Uint8Array | string) => string;
22
+ };
@@ -0,0 +1,17 @@
1
+ import { NovaActExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: NovaActExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,93 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var SensitiveDocument: StaticSimpleSchema;
3
+ export declare var SensitiveString: StaticSimpleSchema;
4
+ export declare var Task: StaticSimpleSchema;
5
+ export declare var ToolDescription: StaticSimpleSchema;
6
+ export declare var WorkflowDescription: StaticSimpleSchema;
7
+ export declare var AccessDeniedException: StaticErrorSchema;
8
+ export declare var ActError: StaticStructureSchema;
9
+ export declare var ActSummary: StaticStructureSchema;
10
+ export declare var Call: StaticStructureSchema;
11
+ export declare var CallResult: StaticStructureSchema;
12
+ export declare var ClientInfo: StaticStructureSchema;
13
+ export declare var CompatibilityInformation: StaticStructureSchema;
14
+ export declare var ConflictException: StaticErrorSchema;
15
+ export declare var CreateActRequest: StaticStructureSchema;
16
+ export declare var CreateActResponse: StaticStructureSchema;
17
+ export declare var CreateSessionRequest: StaticStructureSchema;
18
+ export declare var CreateSessionResponse: StaticStructureSchema;
19
+ export declare var CreateWorkflowDefinitionRequest: StaticStructureSchema;
20
+ export declare var CreateWorkflowDefinitionResponse: StaticStructureSchema;
21
+ export declare var CreateWorkflowRunRequest: StaticStructureSchema;
22
+ export declare var CreateWorkflowRunResponse: StaticStructureSchema;
23
+ export declare var DeleteWorkflowDefinitionRequest: StaticStructureSchema;
24
+ export declare var DeleteWorkflowDefinitionResponse: StaticStructureSchema;
25
+ export declare var DeleteWorkflowRunRequest: StaticStructureSchema;
26
+ export declare var DeleteWorkflowRunResponse: StaticStructureSchema;
27
+ export declare var GetWorkflowDefinitionRequest: StaticStructureSchema;
28
+ export declare var GetWorkflowDefinitionResponse: StaticStructureSchema;
29
+ export declare var GetWorkflowRunRequest: StaticStructureSchema;
30
+ export declare var GetWorkflowRunResponse: StaticStructureSchema;
31
+ export declare var InternalServerException: StaticErrorSchema;
32
+ export declare var InvokeActStepRequest: StaticStructureSchema;
33
+ export declare var InvokeActStepResponse: StaticStructureSchema;
34
+ export declare var ListActsRequest: StaticStructureSchema;
35
+ export declare var ListActsResponse: StaticStructureSchema;
36
+ export declare var ListModelsRequest: StaticStructureSchema;
37
+ export declare var ListModelsResponse: StaticStructureSchema;
38
+ export declare var ListSessionsRequest: StaticStructureSchema;
39
+ export declare var ListSessionsResponse: StaticStructureSchema;
40
+ export declare var ListWorkflowDefinitionsRequest: StaticStructureSchema;
41
+ export declare var ListWorkflowDefinitionsResponse: StaticStructureSchema;
42
+ export declare var ListWorkflowRunsRequest: StaticStructureSchema;
43
+ export declare var ListWorkflowRunsResponse: StaticStructureSchema;
44
+ export declare var ModelAlias: StaticStructureSchema;
45
+ export declare var ModelLifecycle: StaticStructureSchema;
46
+ export declare var ModelSummary: StaticStructureSchema;
47
+ export declare var ResourceNotFoundException: StaticErrorSchema;
48
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
49
+ export declare var SessionSummary: StaticStructureSchema;
50
+ export declare var ThrottlingException: StaticErrorSchema;
51
+ export declare var ToolSpec: StaticStructureSchema;
52
+ export declare var TraceLocation: StaticStructureSchema;
53
+ export declare var UpdateActRequest: StaticStructureSchema;
54
+ export declare var UpdateActResponse: StaticStructureSchema;
55
+ export declare var UpdateWorkflowRunRequest: StaticStructureSchema;
56
+ export declare var UpdateWorkflowRunResponse: StaticStructureSchema;
57
+ export declare var ValidationException: StaticErrorSchema;
58
+ export declare var ValidationExceptionField: StaticStructureSchema;
59
+ export declare var WorkflowDefinitionSummary: StaticStructureSchema;
60
+ export declare var WorkflowExportConfig: StaticStructureSchema;
61
+ export declare var WorkflowRunSummary: StaticStructureSchema;
62
+ export declare var __Unit: "unit";
63
+ export declare var NovaActServiceException: StaticErrorSchema;
64
+ export declare var ActSummaries: StaticListSchema;
65
+ export declare var CallResultContents: StaticListSchema;
66
+ export declare var CallResults: StaticListSchema;
67
+ export declare var Calls: StaticListSchema;
68
+ export declare var ModelAliases: StaticListSchema;
69
+ export declare var ModelIdList: number;
70
+ export declare var ModelSummaries: StaticListSchema;
71
+ export declare var SessionSummaries: StaticListSchema;
72
+ export declare var ToolSpecs: StaticListSchema;
73
+ export declare var ValidationExceptionFieldList: StaticListSchema;
74
+ export declare var WorkflowDefinitionSummaries: StaticListSchema;
75
+ export declare var WorkflowRunSummaries: StaticListSchema;
76
+ export declare var CallResultContent: StaticStructureSchema;
77
+ export declare var ToolInputSchema: StaticStructureSchema;
78
+ export declare var CreateAct: StaticOperationSchema;
79
+ export declare var CreateSession: StaticOperationSchema;
80
+ export declare var CreateWorkflowDefinition: StaticOperationSchema;
81
+ export declare var CreateWorkflowRun: StaticOperationSchema;
82
+ export declare var DeleteWorkflowDefinition: StaticOperationSchema;
83
+ export declare var DeleteWorkflowRun: StaticOperationSchema;
84
+ export declare var GetWorkflowDefinition: StaticOperationSchema;
85
+ export declare var GetWorkflowRun: StaticOperationSchema;
86
+ export declare var InvokeActStep: StaticOperationSchema;
87
+ export declare var ListActs: StaticOperationSchema;
88
+ export declare var ListModels: StaticOperationSchema;
89
+ export declare var ListSessions: StaticOperationSchema;
90
+ export declare var ListWorkflowDefinitions: StaticOperationSchema;
91
+ export declare var ListWorkflowRuns: StaticOperationSchema;
92
+ export declare var UpdateAct: StaticOperationSchema;
93
+ export declare var UpdateWorkflowRun: StaticOperationSchema;
@@ -0,0 +1,278 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateActCommandInput,
4
+ CreateActCommandOutput,
5
+ } from "./commands/CreateActCommand";
6
+ import {
7
+ CreateSessionCommandInput,
8
+ CreateSessionCommandOutput,
9
+ } from "./commands/CreateSessionCommand";
10
+ import {
11
+ CreateWorkflowDefinitionCommandInput,
12
+ CreateWorkflowDefinitionCommandOutput,
13
+ } from "./commands/CreateWorkflowDefinitionCommand";
14
+ import {
15
+ CreateWorkflowRunCommandInput,
16
+ CreateWorkflowRunCommandOutput,
17
+ } from "./commands/CreateWorkflowRunCommand";
18
+ import {
19
+ DeleteWorkflowDefinitionCommandInput,
20
+ DeleteWorkflowDefinitionCommandOutput,
21
+ } from "./commands/DeleteWorkflowDefinitionCommand";
22
+ import {
23
+ DeleteWorkflowRunCommandInput,
24
+ DeleteWorkflowRunCommandOutput,
25
+ } from "./commands/DeleteWorkflowRunCommand";
26
+ import {
27
+ GetWorkflowDefinitionCommandInput,
28
+ GetWorkflowDefinitionCommandOutput,
29
+ } from "./commands/GetWorkflowDefinitionCommand";
30
+ import {
31
+ GetWorkflowRunCommandInput,
32
+ GetWorkflowRunCommandOutput,
33
+ } from "./commands/GetWorkflowRunCommand";
34
+ import {
35
+ InvokeActStepCommandInput,
36
+ InvokeActStepCommandOutput,
37
+ } from "./commands/InvokeActStepCommand";
38
+ import {
39
+ ListActsCommandInput,
40
+ ListActsCommandOutput,
41
+ } from "./commands/ListActsCommand";
42
+ import {
43
+ ListModelsCommandInput,
44
+ ListModelsCommandOutput,
45
+ } from "./commands/ListModelsCommand";
46
+ import {
47
+ ListSessionsCommandInput,
48
+ ListSessionsCommandOutput,
49
+ } from "./commands/ListSessionsCommand";
50
+ import {
51
+ ListWorkflowDefinitionsCommandInput,
52
+ ListWorkflowDefinitionsCommandOutput,
53
+ } from "./commands/ListWorkflowDefinitionsCommand";
54
+ import {
55
+ ListWorkflowRunsCommandInput,
56
+ ListWorkflowRunsCommandOutput,
57
+ } from "./commands/ListWorkflowRunsCommand";
58
+ import {
59
+ UpdateActCommandInput,
60
+ UpdateActCommandOutput,
61
+ } from "./commands/UpdateActCommand";
62
+ import {
63
+ UpdateWorkflowRunCommandInput,
64
+ UpdateWorkflowRunCommandOutput,
65
+ } from "./commands/UpdateWorkflowRunCommand";
66
+ import { NovaActClient } from "./NovaActClient";
67
+ export interface NovaAct {
68
+ createAct(
69
+ args: CreateActCommandInput,
70
+ options?: __HttpHandlerOptions
71
+ ): Promise<CreateActCommandOutput>;
72
+ createAct(
73
+ args: CreateActCommandInput,
74
+ cb: (err: any, data?: CreateActCommandOutput) => void
75
+ ): void;
76
+ createAct(
77
+ args: CreateActCommandInput,
78
+ options: __HttpHandlerOptions,
79
+ cb: (err: any, data?: CreateActCommandOutput) => void
80
+ ): void;
81
+ createSession(
82
+ args: CreateSessionCommandInput,
83
+ options?: __HttpHandlerOptions
84
+ ): Promise<CreateSessionCommandOutput>;
85
+ createSession(
86
+ args: CreateSessionCommandInput,
87
+ cb: (err: any, data?: CreateSessionCommandOutput) => void
88
+ ): void;
89
+ createSession(
90
+ args: CreateSessionCommandInput,
91
+ options: __HttpHandlerOptions,
92
+ cb: (err: any, data?: CreateSessionCommandOutput) => void
93
+ ): void;
94
+ createWorkflowDefinition(
95
+ args: CreateWorkflowDefinitionCommandInput,
96
+ options?: __HttpHandlerOptions
97
+ ): Promise<CreateWorkflowDefinitionCommandOutput>;
98
+ createWorkflowDefinition(
99
+ args: CreateWorkflowDefinitionCommandInput,
100
+ cb: (err: any, data?: CreateWorkflowDefinitionCommandOutput) => void
101
+ ): void;
102
+ createWorkflowDefinition(
103
+ args: CreateWorkflowDefinitionCommandInput,
104
+ options: __HttpHandlerOptions,
105
+ cb: (err: any, data?: CreateWorkflowDefinitionCommandOutput) => void
106
+ ): void;
107
+ createWorkflowRun(
108
+ args: CreateWorkflowRunCommandInput,
109
+ options?: __HttpHandlerOptions
110
+ ): Promise<CreateWorkflowRunCommandOutput>;
111
+ createWorkflowRun(
112
+ args: CreateWorkflowRunCommandInput,
113
+ cb: (err: any, data?: CreateWorkflowRunCommandOutput) => void
114
+ ): void;
115
+ createWorkflowRun(
116
+ args: CreateWorkflowRunCommandInput,
117
+ options: __HttpHandlerOptions,
118
+ cb: (err: any, data?: CreateWorkflowRunCommandOutput) => void
119
+ ): void;
120
+ deleteWorkflowDefinition(
121
+ args: DeleteWorkflowDefinitionCommandInput,
122
+ options?: __HttpHandlerOptions
123
+ ): Promise<DeleteWorkflowDefinitionCommandOutput>;
124
+ deleteWorkflowDefinition(
125
+ args: DeleteWorkflowDefinitionCommandInput,
126
+ cb: (err: any, data?: DeleteWorkflowDefinitionCommandOutput) => void
127
+ ): void;
128
+ deleteWorkflowDefinition(
129
+ args: DeleteWorkflowDefinitionCommandInput,
130
+ options: __HttpHandlerOptions,
131
+ cb: (err: any, data?: DeleteWorkflowDefinitionCommandOutput) => void
132
+ ): void;
133
+ deleteWorkflowRun(
134
+ args: DeleteWorkflowRunCommandInput,
135
+ options?: __HttpHandlerOptions
136
+ ): Promise<DeleteWorkflowRunCommandOutput>;
137
+ deleteWorkflowRun(
138
+ args: DeleteWorkflowRunCommandInput,
139
+ cb: (err: any, data?: DeleteWorkflowRunCommandOutput) => void
140
+ ): void;
141
+ deleteWorkflowRun(
142
+ args: DeleteWorkflowRunCommandInput,
143
+ options: __HttpHandlerOptions,
144
+ cb: (err: any, data?: DeleteWorkflowRunCommandOutput) => void
145
+ ): void;
146
+ getWorkflowDefinition(
147
+ args: GetWorkflowDefinitionCommandInput,
148
+ options?: __HttpHandlerOptions
149
+ ): Promise<GetWorkflowDefinitionCommandOutput>;
150
+ getWorkflowDefinition(
151
+ args: GetWorkflowDefinitionCommandInput,
152
+ cb: (err: any, data?: GetWorkflowDefinitionCommandOutput) => void
153
+ ): void;
154
+ getWorkflowDefinition(
155
+ args: GetWorkflowDefinitionCommandInput,
156
+ options: __HttpHandlerOptions,
157
+ cb: (err: any, data?: GetWorkflowDefinitionCommandOutput) => void
158
+ ): void;
159
+ getWorkflowRun(
160
+ args: GetWorkflowRunCommandInput,
161
+ options?: __HttpHandlerOptions
162
+ ): Promise<GetWorkflowRunCommandOutput>;
163
+ getWorkflowRun(
164
+ args: GetWorkflowRunCommandInput,
165
+ cb: (err: any, data?: GetWorkflowRunCommandOutput) => void
166
+ ): void;
167
+ getWorkflowRun(
168
+ args: GetWorkflowRunCommandInput,
169
+ options: __HttpHandlerOptions,
170
+ cb: (err: any, data?: GetWorkflowRunCommandOutput) => void
171
+ ): void;
172
+ invokeActStep(
173
+ args: InvokeActStepCommandInput,
174
+ options?: __HttpHandlerOptions
175
+ ): Promise<InvokeActStepCommandOutput>;
176
+ invokeActStep(
177
+ args: InvokeActStepCommandInput,
178
+ cb: (err: any, data?: InvokeActStepCommandOutput) => void
179
+ ): void;
180
+ invokeActStep(
181
+ args: InvokeActStepCommandInput,
182
+ options: __HttpHandlerOptions,
183
+ cb: (err: any, data?: InvokeActStepCommandOutput) => void
184
+ ): void;
185
+ listActs(
186
+ args: ListActsCommandInput,
187
+ options?: __HttpHandlerOptions
188
+ ): Promise<ListActsCommandOutput>;
189
+ listActs(
190
+ args: ListActsCommandInput,
191
+ cb: (err: any, data?: ListActsCommandOutput) => void
192
+ ): void;
193
+ listActs(
194
+ args: ListActsCommandInput,
195
+ options: __HttpHandlerOptions,
196
+ cb: (err: any, data?: ListActsCommandOutput) => void
197
+ ): void;
198
+ listModels(
199
+ args: ListModelsCommandInput,
200
+ options?: __HttpHandlerOptions
201
+ ): Promise<ListModelsCommandOutput>;
202
+ listModels(
203
+ args: ListModelsCommandInput,
204
+ cb: (err: any, data?: ListModelsCommandOutput) => void
205
+ ): void;
206
+ listModels(
207
+ args: ListModelsCommandInput,
208
+ options: __HttpHandlerOptions,
209
+ cb: (err: any, data?: ListModelsCommandOutput) => void
210
+ ): void;
211
+ listSessions(
212
+ args: ListSessionsCommandInput,
213
+ options?: __HttpHandlerOptions
214
+ ): Promise<ListSessionsCommandOutput>;
215
+ listSessions(
216
+ args: ListSessionsCommandInput,
217
+ cb: (err: any, data?: ListSessionsCommandOutput) => void
218
+ ): void;
219
+ listSessions(
220
+ args: ListSessionsCommandInput,
221
+ options: __HttpHandlerOptions,
222
+ cb: (err: any, data?: ListSessionsCommandOutput) => void
223
+ ): void;
224
+ listWorkflowDefinitions(): Promise<ListWorkflowDefinitionsCommandOutput>;
225
+ listWorkflowDefinitions(
226
+ args: ListWorkflowDefinitionsCommandInput,
227
+ options?: __HttpHandlerOptions
228
+ ): Promise<ListWorkflowDefinitionsCommandOutput>;
229
+ listWorkflowDefinitions(
230
+ args: ListWorkflowDefinitionsCommandInput,
231
+ cb: (err: any, data?: ListWorkflowDefinitionsCommandOutput) => void
232
+ ): void;
233
+ listWorkflowDefinitions(
234
+ args: ListWorkflowDefinitionsCommandInput,
235
+ options: __HttpHandlerOptions,
236
+ cb: (err: any, data?: ListWorkflowDefinitionsCommandOutput) => void
237
+ ): void;
238
+ listWorkflowRuns(
239
+ args: ListWorkflowRunsCommandInput,
240
+ options?: __HttpHandlerOptions
241
+ ): Promise<ListWorkflowRunsCommandOutput>;
242
+ listWorkflowRuns(
243
+ args: ListWorkflowRunsCommandInput,
244
+ cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void
245
+ ): void;
246
+ listWorkflowRuns(
247
+ args: ListWorkflowRunsCommandInput,
248
+ options: __HttpHandlerOptions,
249
+ cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void
250
+ ): void;
251
+ updateAct(
252
+ args: UpdateActCommandInput,
253
+ options?: __HttpHandlerOptions
254
+ ): Promise<UpdateActCommandOutput>;
255
+ updateAct(
256
+ args: UpdateActCommandInput,
257
+ cb: (err: any, data?: UpdateActCommandOutput) => void
258
+ ): void;
259
+ updateAct(
260
+ args: UpdateActCommandInput,
261
+ options: __HttpHandlerOptions,
262
+ cb: (err: any, data?: UpdateActCommandOutput) => void
263
+ ): void;
264
+ updateWorkflowRun(
265
+ args: UpdateWorkflowRunCommandInput,
266
+ options?: __HttpHandlerOptions
267
+ ): Promise<UpdateWorkflowRunCommandOutput>;
268
+ updateWorkflowRun(
269
+ args: UpdateWorkflowRunCommandInput,
270
+ cb: (err: any, data?: UpdateWorkflowRunCommandOutput) => void
271
+ ): void;
272
+ updateWorkflowRun(
273
+ args: UpdateWorkflowRunCommandInput,
274
+ options: __HttpHandlerOptions,
275
+ cb: (err: any, data?: UpdateWorkflowRunCommandOutput) => void
276
+ ): void;
277
+ }
278
+ export declare class NovaAct extends NovaActClient implements NovaAct {}