@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.
- package/LICENSE +201 -0
- package/README.md +333 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1297 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +36 -0
- package/dist-es/NovaAct.js +39 -0
- package/dist-es/NovaActClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateActCommand.js +16 -0
- package/dist-es/commands/CreateSessionCommand.js +16 -0
- package/dist-es/commands/CreateWorkflowDefinitionCommand.js +16 -0
- package/dist-es/commands/CreateWorkflowRunCommand.js +16 -0
- package/dist-es/commands/DeleteWorkflowDefinitionCommand.js +16 -0
- package/dist-es/commands/DeleteWorkflowRunCommand.js +16 -0
- package/dist-es/commands/GetWorkflowDefinitionCommand.js +16 -0
- package/dist-es/commands/GetWorkflowRunCommand.js +16 -0
- package/dist-es/commands/InvokeActStepCommand.js +16 -0
- package/dist-es/commands/ListActsCommand.js +16 -0
- package/dist-es/commands/ListModelsCommand.js +16 -0
- package/dist-es/commands/ListSessionsCommand.js +16 -0
- package/dist-es/commands/ListWorkflowDefinitionsCommand.js +16 -0
- package/dist-es/commands/ListWorkflowRunsCommand.js +16 -0
- package/dist-es/commands/UpdateActCommand.js +16 -0
- package/dist-es/commands/UpdateWorkflowRunCommand.js +16 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +13 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/NovaActServiceException.js +8 -0
- package/dist-es/models/enums.js +41 -0
- package/dist-es/models/errors.js +119 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListActsPaginator.js +4 -0
- package/dist-es/pagination/ListSessionsPaginator.js +4 -0
- package/dist-es/pagination/ListWorkflowDefinitionsPaginator.js +4 -0
- package/dist-es/pagination/ListWorkflowRunsPaginator.js +4 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +32 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +753 -0
- package/dist-types/NovaAct.d.ts +123 -0
- package/dist-types/NovaActClient.d.ts +212 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CreateActCommand.d.ts +109 -0
- package/dist-types/commands/CreateSessionCommand.d.ts +97 -0
- package/dist-types/commands/CreateWorkflowDefinitionCommand.d.ts +98 -0
- package/dist-types/commands/CreateWorkflowRunCommand.d.ts +100 -0
- package/dist-types/commands/DeleteWorkflowDefinitionCommand.d.ts +92 -0
- package/dist-types/commands/DeleteWorkflowRunCommand.d.ts +93 -0
- package/dist-types/commands/GetWorkflowDefinitionCommand.d.ts +97 -0
- package/dist-types/commands/GetWorkflowRunCommand.d.ts +99 -0
- package/dist-types/commands/InvokeActStepCommand.d.ts +116 -0
- package/dist-types/commands/ListActsCommand.d.ts +111 -0
- package/dist-types/commands/ListModelsCommand.d.ts +105 -0
- package/dist-types/commands/ListSessionsCommand.d.ts +101 -0
- package/dist-types/commands/ListWorkflowDefinitionsCommand.d.ts +96 -0
- package/dist-types/commands/ListWorkflowRunsCommand.d.ts +108 -0
- package/dist-types/commands/UpdateActCommand.d.ts +98 -0
- package/dist-types/commands/UpdateWorkflowRunCommand.d.ts +92 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/NovaActServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +105 -0
- package/dist-types/models/errors.d.ts +167 -0
- package/dist-types/models/models_0.d.ts +1014 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListActsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSessionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowDefinitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/runtimeConfig.browser.d.ts +51 -0
- package/dist-types/runtimeConfig.d.ts +51 -0
- package/dist-types/runtimeConfig.native.d.ts +50 -0
- package/dist-types/runtimeConfig.shared.d.ts +22 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +93 -0
- package/dist-types/ts3.4/NovaAct.d.ts +278 -0
- package/dist-types/ts3.4/NovaActClient.d.ts +219 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateActCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateWorkflowDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateWorkflowRunCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkflowDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkflowRunCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetWorkflowDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/InvokeActStepCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListActsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListModelsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListWorkflowDefinitionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateActCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateWorkflowRunCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +11 -0
- package/dist-types/ts3.4/models/NovaActServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +54 -0
- package/dist-types/ts3.4/models/errors.d.ts +73 -0
- package/dist-types/ts3.4/models/models_0.d.ts +275 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListActsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSessionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowDefinitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowRunsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +100 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +25 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +99 -0
- package/package.json +99 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { NovaActClientConfig } from "./NovaActClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: NovaActClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
5
|
+
requestHandler:
|
|
6
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
8
|
+
| Record<string, unknown>
|
|
9
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
+
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean;
|
|
13
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
14
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
18
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
20
|
+
disableHostPrefix: boolean;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
23
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
24
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
25
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
27
|
+
profile?: string;
|
|
28
|
+
defaultUserAgentProvider: (
|
|
29
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
30
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
|
+
logger: import("@smithy/types").Logger;
|
|
39
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
44
|
+
defaultsMode:
|
|
45
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
46
|
+
| import("@smithy/types").Provider<
|
|
47
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
48
|
+
>;
|
|
49
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
50
|
+
userAgentAppId?:
|
|
51
|
+
| string
|
|
52
|
+
| undefined
|
|
53
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
54
|
+
retryStrategy?:
|
|
55
|
+
| import("@smithy/types").RetryStrategy
|
|
56
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
57
|
+
endpoint?:
|
|
58
|
+
| ((
|
|
59
|
+
| string
|
|
60
|
+
| import("@smithy/types").Endpoint
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
+
| import("@smithy/types").EndpointV2
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
+
) &
|
|
65
|
+
(
|
|
66
|
+
| string
|
|
67
|
+
| import("@smithy/types").Provider<string>
|
|
68
|
+
| import("@smithy/types").Endpoint
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
70
|
+
| import("@smithy/types").EndpointV2
|
|
71
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
72
|
+
))
|
|
73
|
+
| undefined;
|
|
74
|
+
endpointProvider: (
|
|
75
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
76
|
+
context?: {
|
|
77
|
+
logger?: import("@smithy/types").Logger;
|
|
78
|
+
}
|
|
79
|
+
) => import("@smithy/types").EndpointV2;
|
|
80
|
+
tls?: boolean;
|
|
81
|
+
serviceConfiguredEndpoint?: never;
|
|
82
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
83
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
84
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").NovaActHttpAuthSchemeProvider;
|
|
85
|
+
credentials?:
|
|
86
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
87
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
88
|
+
signer?:
|
|
89
|
+
| import("@smithy/types").RequestSigner
|
|
90
|
+
| ((
|
|
91
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
92
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
93
|
+
signingEscapePath?: boolean;
|
|
94
|
+
systemClockOffset?: number;
|
|
95
|
+
signingRegion?: string;
|
|
96
|
+
signerConstructor?: new (
|
|
97
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
98
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
99
|
+
) => import("@smithy/types").RequestSigner;
|
|
100
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { NovaActClientConfig } from "./NovaActClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: NovaActClientConfig) => {
|
|
3
|
+
apiVersion: string;
|
|
4
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
endpointProvider: (
|
|
8
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
9
|
+
context?: {
|
|
10
|
+
logger?: import("@smithy/types").Logger;
|
|
11
|
+
}
|
|
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<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
23
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
25
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { NovaActExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(extensionConfiguration: NovaActExtensionConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[]
|
|
11
|
+
) => any;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticSimpleSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var SensitiveDocument: StaticSimpleSchema;
|
|
9
|
+
export declare var SensitiveString: StaticSimpleSchema;
|
|
10
|
+
export declare var Task: StaticSimpleSchema;
|
|
11
|
+
export declare var ToolDescription: StaticSimpleSchema;
|
|
12
|
+
export declare var WorkflowDescription: StaticSimpleSchema;
|
|
13
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
14
|
+
export declare var ActError: StaticStructureSchema;
|
|
15
|
+
export declare var ActSummary: StaticStructureSchema;
|
|
16
|
+
export declare var Call: StaticStructureSchema;
|
|
17
|
+
export declare var CallResult: StaticStructureSchema;
|
|
18
|
+
export declare var ClientInfo: StaticStructureSchema;
|
|
19
|
+
export declare var CompatibilityInformation: StaticStructureSchema;
|
|
20
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
21
|
+
export declare var CreateActRequest: StaticStructureSchema;
|
|
22
|
+
export declare var CreateActResponse: StaticStructureSchema;
|
|
23
|
+
export declare var CreateSessionRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateSessionResponse: StaticStructureSchema;
|
|
25
|
+
export declare var CreateWorkflowDefinitionRequest: StaticStructureSchema;
|
|
26
|
+
export declare var CreateWorkflowDefinitionResponse: StaticStructureSchema;
|
|
27
|
+
export declare var CreateWorkflowRunRequest: StaticStructureSchema;
|
|
28
|
+
export declare var CreateWorkflowRunResponse: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteWorkflowDefinitionRequest: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteWorkflowDefinitionResponse: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteWorkflowRunRequest: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteWorkflowRunResponse: StaticStructureSchema;
|
|
33
|
+
export declare var GetWorkflowDefinitionRequest: StaticStructureSchema;
|
|
34
|
+
export declare var GetWorkflowDefinitionResponse: StaticStructureSchema;
|
|
35
|
+
export declare var GetWorkflowRunRequest: StaticStructureSchema;
|
|
36
|
+
export declare var GetWorkflowRunResponse: StaticStructureSchema;
|
|
37
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
38
|
+
export declare var InvokeActStepRequest: StaticStructureSchema;
|
|
39
|
+
export declare var InvokeActStepResponse: StaticStructureSchema;
|
|
40
|
+
export declare var ListActsRequest: StaticStructureSchema;
|
|
41
|
+
export declare var ListActsResponse: StaticStructureSchema;
|
|
42
|
+
export declare var ListModelsRequest: StaticStructureSchema;
|
|
43
|
+
export declare var ListModelsResponse: StaticStructureSchema;
|
|
44
|
+
export declare var ListSessionsRequest: StaticStructureSchema;
|
|
45
|
+
export declare var ListSessionsResponse: StaticStructureSchema;
|
|
46
|
+
export declare var ListWorkflowDefinitionsRequest: StaticStructureSchema;
|
|
47
|
+
export declare var ListWorkflowDefinitionsResponse: StaticStructureSchema;
|
|
48
|
+
export declare var ListWorkflowRunsRequest: StaticStructureSchema;
|
|
49
|
+
export declare var ListWorkflowRunsResponse: StaticStructureSchema;
|
|
50
|
+
export declare var ModelAlias: StaticStructureSchema;
|
|
51
|
+
export declare var ModelLifecycle: StaticStructureSchema;
|
|
52
|
+
export declare var ModelSummary: StaticStructureSchema;
|
|
53
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
54
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
55
|
+
export declare var SessionSummary: StaticStructureSchema;
|
|
56
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
57
|
+
export declare var ToolSpec: StaticStructureSchema;
|
|
58
|
+
export declare var TraceLocation: StaticStructureSchema;
|
|
59
|
+
export declare var UpdateActRequest: StaticStructureSchema;
|
|
60
|
+
export declare var UpdateActResponse: StaticStructureSchema;
|
|
61
|
+
export declare var UpdateWorkflowRunRequest: StaticStructureSchema;
|
|
62
|
+
export declare var UpdateWorkflowRunResponse: StaticStructureSchema;
|
|
63
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
64
|
+
export declare var ValidationExceptionField: StaticStructureSchema;
|
|
65
|
+
export declare var WorkflowDefinitionSummary: StaticStructureSchema;
|
|
66
|
+
export declare var WorkflowExportConfig: StaticStructureSchema;
|
|
67
|
+
export declare var WorkflowRunSummary: StaticStructureSchema;
|
|
68
|
+
export declare var __Unit: "unit";
|
|
69
|
+
export declare var NovaActServiceException: StaticErrorSchema;
|
|
70
|
+
export declare var ActSummaries: StaticListSchema;
|
|
71
|
+
export declare var CallResultContents: StaticListSchema;
|
|
72
|
+
export declare var CallResults: StaticListSchema;
|
|
73
|
+
export declare var Calls: StaticListSchema;
|
|
74
|
+
export declare var ModelAliases: StaticListSchema;
|
|
75
|
+
export declare var ModelIdList: number;
|
|
76
|
+
export declare var ModelSummaries: StaticListSchema;
|
|
77
|
+
export declare var SessionSummaries: StaticListSchema;
|
|
78
|
+
export declare var ToolSpecs: StaticListSchema;
|
|
79
|
+
export declare var ValidationExceptionFieldList: StaticListSchema;
|
|
80
|
+
export declare var WorkflowDefinitionSummaries: StaticListSchema;
|
|
81
|
+
export declare var WorkflowRunSummaries: StaticListSchema;
|
|
82
|
+
export declare var CallResultContent: StaticStructureSchema;
|
|
83
|
+
export declare var ToolInputSchema: StaticStructureSchema;
|
|
84
|
+
export declare var CreateAct: StaticOperationSchema;
|
|
85
|
+
export declare var CreateSession: StaticOperationSchema;
|
|
86
|
+
export declare var CreateWorkflowDefinition: StaticOperationSchema;
|
|
87
|
+
export declare var CreateWorkflowRun: StaticOperationSchema;
|
|
88
|
+
export declare var DeleteWorkflowDefinition: StaticOperationSchema;
|
|
89
|
+
export declare var DeleteWorkflowRun: StaticOperationSchema;
|
|
90
|
+
export declare var GetWorkflowDefinition: StaticOperationSchema;
|
|
91
|
+
export declare var GetWorkflowRun: StaticOperationSchema;
|
|
92
|
+
export declare var InvokeActStep: StaticOperationSchema;
|
|
93
|
+
export declare var ListActs: StaticOperationSchema;
|
|
94
|
+
export declare var ListModels: StaticOperationSchema;
|
|
95
|
+
export declare var ListSessions: StaticOperationSchema;
|
|
96
|
+
export declare var ListWorkflowDefinitions: StaticOperationSchema;
|
|
97
|
+
export declare var ListWorkflowRuns: StaticOperationSchema;
|
|
98
|
+
export declare var UpdateAct: StaticOperationSchema;
|
|
99
|
+
export declare var UpdateWorkflowRun: StaticOperationSchema;
|
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-sdk/client-nova-act",
|
|
3
|
+
"description": "AWS SDK for JavaScript Nova Act Client for Node.js, Browser and React Native",
|
|
4
|
+
"version": "3.943.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "node ../../scripts/compilation/inline client-nova-act",
|
|
8
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
9
|
+
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
10
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
|
|
13
|
+
"extract:docs": "api-extractor run --local",
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service --solo nova-act"
|
|
15
|
+
},
|
|
16
|
+
"main": "./dist-cjs/index.js",
|
|
17
|
+
"types": "./dist-types/index.d.ts",
|
|
18
|
+
"module": "./dist-es/index.js",
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
|
+
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
+
"@aws-sdk/core": "3.943.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.943.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.943.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.943.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
|
+
"@smithy/util-base64": "^4.3.0",
|
|
51
|
+
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
|
+
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
|
+
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
+
"tslib": "^2.6.2"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@tsconfig/node18": "18.2.4",
|
|
63
|
+
"@types/node": "^18.19.69",
|
|
64
|
+
"concurrently": "7.0.0",
|
|
65
|
+
"downlevel-dts": "0.10.1",
|
|
66
|
+
"rimraf": "3.0.2",
|
|
67
|
+
"typescript": "~5.8.3"
|
|
68
|
+
},
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">=18.0.0"
|
|
71
|
+
},
|
|
72
|
+
"typesVersions": {
|
|
73
|
+
"<4.0": {
|
|
74
|
+
"dist-types/*": [
|
|
75
|
+
"dist-types/ts3.4/*"
|
|
76
|
+
]
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"files": [
|
|
80
|
+
"dist-*/**"
|
|
81
|
+
],
|
|
82
|
+
"author": {
|
|
83
|
+
"name": "AWS SDK for JavaScript Team",
|
|
84
|
+
"url": "https://aws.amazon.com/javascript/"
|
|
85
|
+
},
|
|
86
|
+
"license": "Apache-2.0",
|
|
87
|
+
"browser": {
|
|
88
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
89
|
+
},
|
|
90
|
+
"react-native": {
|
|
91
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
92
|
+
},
|
|
93
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-nova-act",
|
|
94
|
+
"repository": {
|
|
95
|
+
"type": "git",
|
|
96
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
97
|
+
"directory": "clients/client-nova-act"
|
|
98
|
+
}
|
|
99
|
+
}
|