@wildix/wim-wilma-client 0.0.12 → 3.1.12
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/dist-cjs/Wilma.js +25 -3
- package/dist-cjs/WilmaClient.js +34 -26
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +52 -0
- package/dist-cjs/commands/CreateAgentCommand.js +10 -11
- package/dist-cjs/commands/CreateGuidelineCommand.js +10 -11
- package/dist-cjs/commands/CreateGuidelinesDirectoryCommand.js +10 -11
- package/dist-cjs/commands/CreateSkillCommand.js +20 -0
- package/dist-cjs/commands/CreateSkillFileUploadCommand.js +20 -0
- package/dist-cjs/commands/DeleteAgentCommand.js +10 -11
- package/dist-cjs/commands/DeleteChatCommand.js +10 -11
- package/dist-cjs/commands/DeleteFileCommand.js +20 -0
- package/dist-cjs/commands/DeleteGuidelineCommand.js +10 -11
- package/dist-cjs/commands/DeleteGuidelinesDirectoryCommand.js +10 -11
- package/dist-cjs/commands/DeleteSkillCommand.js +20 -0
- package/dist-cjs/commands/DeleteSkillFileCommand.js +20 -0
- package/dist-cjs/commands/DislikeAnswerCommand.js +10 -11
- package/dist-cjs/commands/DownloadFileCommand.js +20 -0
- package/dist-cjs/commands/ExecuteAgentCommand.js +10 -11
- package/dist-cjs/commands/GetAgentCommand.js +10 -11
- package/dist-cjs/commands/GetChatCommand.js +10 -11
- package/dist-cjs/commands/GetFileCommand.js +20 -0
- package/dist-cjs/commands/GetGuidelineCommand.js +10 -11
- package/dist-cjs/commands/GetOrganizationSettingsCommand.js +10 -11
- package/dist-cjs/commands/GetSettingsCommand.js +10 -11
- package/dist-cjs/commands/GetSkillCommand.js +20 -0
- package/dist-cjs/commands/GetSkillFileDownloadCommand.js +20 -0
- package/dist-cjs/commands/LikeAnswerCommand.js +10 -11
- package/dist-cjs/commands/ListAgentFeedbacksCommand.js +10 -11
- package/dist-cjs/commands/ListAgentsCommand.js +10 -11
- package/dist-cjs/commands/ListAgentsNamesCommand.js +10 -11
- package/dist-cjs/commands/ListChatsCommand.js +10 -11
- package/dist-cjs/commands/ListFeedbacksCommand.js +10 -11
- package/dist-cjs/commands/ListGuidelinesCommand.js +10 -11
- package/dist-cjs/commands/ListGuidelinesDirectoriesCommand.js +10 -11
- package/dist-cjs/commands/ListGuidelinesNamesCommand.js +10 -11
- package/dist-cjs/commands/ListSkillsCommand.js +20 -0
- package/dist-cjs/commands/PatchOrganizationSettingsCommand.js +10 -11
- package/dist-cjs/commands/PatchSettingsCommand.js +10 -11
- package/dist-cjs/commands/UpdateAgentCommand.js +10 -11
- package/dist-cjs/commands/UpdateGuidelineAccessCommand.js +10 -11
- package/dist-cjs/commands/UpdateGuidelineCommand.js +10 -11
- package/dist-cjs/commands/UpdateGuidelinesDirectoryCommand.js +10 -11
- package/dist-cjs/commands/UpdateSkillCommand.js +20 -0
- package/dist-cjs/commands/index.js +12 -1
- package/dist-cjs/endpoint/EndpointParameters.js +16 -0
- package/dist-cjs/endpoint/bdd.js +28 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +4 -1
- package/dist-cjs/models/WilmaServiceException.js +3 -3
- package/dist-cjs/models/enums.js +45 -0
- package/dist-cjs/models/errors.js +43 -0
- package/dist-cjs/models/models_0.js +0 -96
- package/dist-cjs/runtimeConfig.browser.js +11 -11
- package/dist-cjs/runtimeConfig.js +22 -18
- package/dist-cjs/runtimeConfig.shared.js +30 -10
- package/dist-cjs/runtimeExtensions.js +6 -5
- package/dist-cjs/schemas/schemas_0.js +1110 -0
- package/dist-es/Wilma.js +27 -5
- package/dist-es/WilmaClient.js +30 -22
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-es/commands/CreateAgentCommand.js +9 -10
- package/dist-es/commands/CreateGuidelineCommand.js +9 -10
- package/dist-es/commands/CreateGuidelinesDirectoryCommand.js +9 -10
- package/dist-es/commands/CreateSkillCommand.js +16 -0
- package/dist-es/commands/CreateSkillFileUploadCommand.js +16 -0
- package/dist-es/commands/DeleteAgentCommand.js +9 -10
- package/dist-es/commands/DeleteChatCommand.js +9 -10
- package/dist-es/commands/DeleteFileCommand.js +16 -0
- package/dist-es/commands/DeleteGuidelineCommand.js +9 -10
- package/dist-es/commands/DeleteGuidelinesDirectoryCommand.js +9 -10
- package/dist-es/commands/DeleteSkillCommand.js +16 -0
- package/dist-es/commands/DeleteSkillFileCommand.js +16 -0
- package/dist-es/commands/DislikeAnswerCommand.js +9 -10
- package/dist-es/commands/DownloadFileCommand.js +16 -0
- package/dist-es/commands/ExecuteAgentCommand.js +9 -10
- package/dist-es/commands/GetAgentCommand.js +9 -10
- package/dist-es/commands/GetChatCommand.js +9 -10
- package/dist-es/commands/GetFileCommand.js +16 -0
- package/dist-es/commands/GetGuidelineCommand.js +9 -10
- package/dist-es/commands/GetOrganizationSettingsCommand.js +9 -10
- package/dist-es/commands/GetSettingsCommand.js +9 -10
- package/dist-es/commands/GetSkillCommand.js +16 -0
- package/dist-es/commands/GetSkillFileDownloadCommand.js +16 -0
- package/dist-es/commands/LikeAnswerCommand.js +9 -10
- package/dist-es/commands/ListAgentFeedbacksCommand.js +9 -10
- package/dist-es/commands/ListAgentsCommand.js +9 -10
- package/dist-es/commands/ListAgentsNamesCommand.js +9 -10
- package/dist-es/commands/ListChatsCommand.js +9 -10
- package/dist-es/commands/ListFeedbacksCommand.js +9 -10
- package/dist-es/commands/ListGuidelinesCommand.js +9 -10
- package/dist-es/commands/ListGuidelinesDirectoriesCommand.js +9 -10
- package/dist-es/commands/ListGuidelinesNamesCommand.js +9 -10
- package/dist-es/commands/ListSkillsCommand.js +16 -0
- package/dist-es/commands/PatchOrganizationSettingsCommand.js +9 -10
- package/dist-es/commands/PatchSettingsCommand.js +9 -10
- package/dist-es/commands/UpdateAgentCommand.js +9 -10
- package/dist-es/commands/UpdateGuidelineAccessCommand.js +9 -10
- package/dist-es/commands/UpdateGuidelineCommand.js +9 -10
- package/dist-es/commands/UpdateGuidelinesDirectoryCommand.js +9 -10
- package/dist-es/commands/UpdateSkillCommand.js +16 -0
- package/dist-es/commands/index.js +12 -1
- package/dist-es/endpoint/EndpointParameters.js +12 -0
- package/dist-es/endpoint/bdd.js +25 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +4 -1
- package/dist-es/models/WilmaServiceException.js +1 -1
- package/dist-es/models/enums.js +42 -0
- package/dist-es/models/errors.js +37 -0
- package/dist-es/models/models_0.js +1 -92
- package/dist-es/runtimeConfig.browser.js +7 -7
- package/dist-es/runtimeConfig.js +17 -13
- package/dist-es/runtimeConfig.shared.js +24 -4
- package/dist-es/runtimeExtensions.js +6 -5
- package/dist-es/schemas/schemas_0.js +1104 -0
- package/dist-types/Wilma.d.ts +108 -30
- package/dist-types/WilmaClient.d.ts +72 -43
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/CreateAgentCommand.d.ts +103 -7
- package/dist-types/commands/CreateGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/CreateGuidelinesDirectoryCommand.d.ts +11 -7
- package/dist-types/commands/CreateSkillCommand.d.ts +103 -0
- package/dist-types/commands/CreateSkillFileUploadCommand.d.ts +99 -0
- package/dist-types/commands/DeleteAgentCommand.d.ts +11 -7
- package/dist-types/commands/DeleteChatCommand.d.ts +11 -7
- package/dist-types/commands/DeleteFileCommand.d.ts +80 -0
- package/dist-types/commands/DeleteGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/DeleteGuidelinesDirectoryCommand.d.ts +11 -7
- package/dist-types/commands/DeleteSkillCommand.d.ts +80 -0
- package/dist-types/commands/DeleteSkillFileCommand.d.ts +83 -0
- package/dist-types/commands/DislikeAnswerCommand.d.ts +11 -7
- package/dist-types/commands/DownloadFileCommand.d.ts +95 -0
- package/dist-types/commands/ExecuteAgentCommand.d.ts +28 -7
- package/dist-types/commands/GetAgentCommand.d.ts +57 -7
- package/dist-types/commands/GetChatCommand.d.ts +11 -7
- package/dist-types/commands/GetFileCommand.d.ts +93 -0
- package/dist-types/commands/GetGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/GetOrganizationSettingsCommand.d.ts +11 -7
- package/dist-types/commands/GetSettingsCommand.d.ts +11 -7
- package/dist-types/commands/GetSkillCommand.d.ts +103 -0
- package/dist-types/commands/GetSkillFileDownloadCommand.d.ts +86 -0
- package/dist-types/commands/LikeAnswerCommand.d.ts +11 -7
- package/dist-types/commands/ListAgentFeedbacksCommand.d.ts +11 -7
- package/dist-types/commands/ListAgentsCommand.d.ts +57 -7
- package/dist-types/commands/ListAgentsNamesCommand.d.ts +11 -7
- package/dist-types/commands/ListChatsCommand.d.ts +11 -7
- package/dist-types/commands/ListFeedbacksCommand.d.ts +11 -7
- package/dist-types/commands/ListGuidelinesCommand.d.ts +11 -7
- package/dist-types/commands/ListGuidelinesDirectoriesCommand.d.ts +11 -7
- package/dist-types/commands/ListGuidelinesNamesCommand.d.ts +11 -7
- package/dist-types/commands/ListSkillsCommand.d.ts +92 -0
- package/dist-types/commands/PatchOrganizationSettingsCommand.d.ts +11 -7
- package/dist-types/commands/PatchSettingsCommand.d.ts +11 -7
- package/dist-types/commands/UpdateAgentCommand.d.ts +103 -7
- package/dist-types/commands/UpdateGuidelineAccessCommand.d.ts +11 -7
- package/dist-types/commands/UpdateGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/UpdateGuidelinesDirectoryCommand.d.ts +11 -7
- package/dist-types/commands/UpdateSkillCommand.d.ts +106 -0
- package/dist-types/commands/index.d.ts +12 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +4 -3
- package/dist-types/index.d.ts +5 -1
- package/dist-types/models/WilmaServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +129 -0
- package/dist-types/models/errors.d.ts +35 -0
- package/dist-types/models/models_0.d.ts +628 -153
- package/dist-types/runtimeConfig.browser.d.ts +35 -16
- package/dist-types/runtimeConfig.d.ts +34 -15
- package/dist-types/runtimeConfig.native.d.ts +36 -17
- package/dist-types/runtimeConfig.shared.d.ts +20 -3
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +172 -0
- package/package.json +14 -40
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -1127
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -1065
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -263
|
@@ -1,36 +1,55 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
-
import { WilmaClientConfig } from "./WilmaClient";
|
|
2
|
+
import type { WilmaClientConfig } from "./WilmaClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: WilmaClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/
|
|
10
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
11
11
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
12
|
-
requestHandler: import("@smithy/
|
|
12
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
13
13
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
sha256: import("@smithy/types").HashConstructor;
|
|
15
|
-
streamCollector: import("
|
|
16
|
-
env?: "stage" | "stable" | "prod" | undefined;
|
|
17
|
-
token: import("@wildix/smithy-utils").TokenProvider;
|
|
15
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
18
16
|
cacheMiddleware?: boolean | undefined;
|
|
19
|
-
protocol
|
|
20
|
-
protocolSettings
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
18
|
+
protocolSettings: {
|
|
19
|
+
defaultNamespace?: string;
|
|
21
20
|
[setting: string]: unknown;
|
|
22
|
-
|
|
23
|
-
} | undefined;
|
|
21
|
+
};
|
|
24
22
|
apiVersion: string;
|
|
25
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
26
24
|
base64Decoder: import("@smithy/types").Decoder;
|
|
27
|
-
base64Encoder: (_input:
|
|
25
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
28
26
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
-
utf8Encoder: (input:
|
|
27
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
30
28
|
disableHostPrefix: boolean;
|
|
29
|
+
profile?: string;
|
|
31
30
|
logger: import("@smithy/types").Logger;
|
|
32
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
33
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
34
|
-
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
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
|
+
useDualstackEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
41
|
+
useFipsEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
42
|
+
serviceConfiguredEndpoint?: never;
|
|
43
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
44
|
+
httpAuthSchemes: {
|
|
45
|
+
schemeId: string;
|
|
46
|
+
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
47
|
+
signer: import("@smithy/core").HttpBearerAuthSigner;
|
|
48
|
+
}[];
|
|
49
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WilmaHttpAuthSchemeProvider;
|
|
50
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
51
|
+
clientContextParams?: {
|
|
52
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
};
|
|
54
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
36
55
|
};
|
|
@@ -1,36 +1,55 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
-
import { WilmaClientConfig } from "./WilmaClient";
|
|
2
|
+
import type { WilmaClientConfig } from "./WilmaClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: WilmaClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/
|
|
10
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
11
11
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
12
|
-
requestHandler: RequestHandler | import("@smithy/
|
|
12
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
13
13
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
sha256: import("@smithy/types").HashConstructor;
|
|
15
|
-
streamCollector: import("
|
|
15
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
16
16
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
17
|
-
env?: "stage" | "stable" | "prod" | undefined;
|
|
18
|
-
token: import("@wildix/smithy-utils").TokenProvider;
|
|
19
17
|
cacheMiddleware?: boolean | undefined;
|
|
20
|
-
protocol
|
|
21
|
-
protocolSettings
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
defaultNamespace?: string;
|
|
22
21
|
[setting: string]: unknown;
|
|
23
|
-
|
|
24
|
-
} | undefined;
|
|
22
|
+
};
|
|
25
23
|
apiVersion: string;
|
|
26
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
25
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
|
-
base64Encoder: (_input:
|
|
26
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
29
27
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
utf8Encoder: (input:
|
|
28
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
31
29
|
disableHostPrefix: boolean;
|
|
30
|
+
profile?: string;
|
|
32
31
|
logger: import("@smithy/types").Logger;
|
|
33
32
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
33
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
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
|
+
useDualstackEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
41
|
+
useFipsEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
42
|
+
serviceConfiguredEndpoint?: never;
|
|
43
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
44
|
+
httpAuthSchemes: {
|
|
45
|
+
schemeId: string;
|
|
46
|
+
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
47
|
+
signer: import("@smithy/core").HttpBearerAuthSigner;
|
|
48
|
+
}[];
|
|
49
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WilmaHttpAuthSchemeProvider;
|
|
50
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
51
|
+
clientContextParams?: {
|
|
52
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
};
|
|
54
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
36
55
|
};
|
|
@@ -1,35 +1,54 @@
|
|
|
1
|
-
import { WilmaClientConfig } from "./WilmaClient";
|
|
1
|
+
import type { WilmaClientConfig } from "./WilmaClient";
|
|
2
2
|
/**
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: WilmaClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
protocolSettings?: {
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
14
13
|
[setting: string]: unknown;
|
|
15
|
-
|
|
16
|
-
} | undefined;
|
|
14
|
+
};
|
|
17
15
|
apiVersion: string;
|
|
18
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
20
|
-
streamCollector: import("
|
|
18
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
21
19
|
base64Decoder: import("@smithy/types").Decoder;
|
|
22
|
-
base64Encoder: (_input:
|
|
20
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
23
21
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
24
|
-
utf8Encoder: (input:
|
|
22
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
25
23
|
disableHostPrefix: boolean;
|
|
26
|
-
|
|
24
|
+
profile?: string;
|
|
25
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
27
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
28
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
29
28
|
logger: import("@smithy/types").Logger;
|
|
30
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
-
defaultsMode: import("@smithy/
|
|
32
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
33
|
-
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined
|
|
34
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
30
|
+
defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
31
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
34
|
+
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;
|
|
35
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
|
+
logger?: import("@smithy/types").Logger;
|
|
37
|
+
}) => import("@smithy/types").EndpointV2;
|
|
38
|
+
tls?: boolean;
|
|
39
|
+
useDualstackEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
40
|
+
useFipsEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
41
|
+
serviceConfiguredEndpoint?: never;
|
|
42
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
43
|
+
httpAuthSchemes: {
|
|
44
|
+
schemeId: string;
|
|
45
|
+
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
46
|
+
signer: import("@smithy/core").HttpBearerAuthSigner;
|
|
47
|
+
}[];
|
|
48
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WilmaHttpAuthSchemeProvider;
|
|
49
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
50
|
+
clientContextParams?: {
|
|
51
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
52
|
+
};
|
|
53
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
54
|
};
|
|
@@ -1,15 +1,32 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
|
+
import { HttpBearerAuthSigner } from "@smithy/core";
|
|
3
|
+
import type { IdentityProviderConfig } from "@smithy/types";
|
|
4
|
+
import type { WilmaClientConfig } from "./WilmaClient";
|
|
2
5
|
/**
|
|
3
6
|
* @internal
|
|
4
7
|
*/
|
|
5
8
|
export declare const getRuntimeConfig: (config: WilmaClientConfig) => {
|
|
6
9
|
apiVersion: string;
|
|
7
10
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder: (_input:
|
|
11
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
12
|
disableHostPrefix: boolean;
|
|
13
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
14
|
+
logger?: import("@smithy/types").Logger;
|
|
15
|
+
}) => import("@smithy/types").EndpointV2;
|
|
10
16
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WilmaHttpAuthSchemeProvider;
|
|
18
|
+
httpAuthSchemes: {
|
|
19
|
+
schemeId: string;
|
|
20
|
+
identityProvider: (ipc: IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
21
|
+
signer: HttpBearerAuthSigner;
|
|
22
|
+
}[];
|
|
11
23
|
logger: import("@smithy/types").Logger;
|
|
24
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
25
|
+
protocolSettings: {
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
defaultNamespace?: string;
|
|
28
|
+
};
|
|
12
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
13
30
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
14
|
-
utf8Encoder: (input:
|
|
31
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
15
32
|
};
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var WilmaServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
5
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
6
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
7
|
+
/**
|
|
8
|
+
* TypeRegistry instances containing modeled errors.
|
|
9
|
+
* @internal
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
13
|
+
export declare var Agent$: StaticStructureSchema;
|
|
14
|
+
export declare var AgentCallCapability$: StaticStructureSchema;
|
|
15
|
+
export declare var AgentExecutionError$: StaticStructureSchema;
|
|
16
|
+
export declare var AgentExecutionResult$: StaticStructureSchema;
|
|
17
|
+
export declare var AgentInfo$: StaticStructureSchema;
|
|
18
|
+
export declare var AgentKnowledgeBase$: StaticStructureSchema;
|
|
19
|
+
export declare var AgentTool$: StaticStructureSchema;
|
|
20
|
+
export declare var AgentToolVariable$: StaticStructureSchema;
|
|
21
|
+
export declare var AgentToolVariableAutoHandler$: StaticStructureSchema;
|
|
22
|
+
export declare var AgentToolVariableGuidedHandler$: StaticStructureSchema;
|
|
23
|
+
export declare var AgentToolVariablePredefinedHandler$: StaticStructureSchema;
|
|
24
|
+
export declare var AgentVariable$: StaticStructureSchema;
|
|
25
|
+
export declare var AgentVercelSandboxOptions$: StaticStructureSchema;
|
|
26
|
+
export declare var AgentWebFetchCapability$: StaticStructureSchema;
|
|
27
|
+
export declare var AgentWebSearchCapability$: StaticStructureSchema;
|
|
28
|
+
export declare var Chat$: StaticStructureSchema;
|
|
29
|
+
export declare var ChatFeedback$: StaticStructureSchema;
|
|
30
|
+
export declare var ChatHistory$: StaticStructureSchema;
|
|
31
|
+
export declare var CreateAgentInput$: StaticStructureSchema;
|
|
32
|
+
export declare var CreateAgentOutput$: StaticStructureSchema;
|
|
33
|
+
export declare var CreateGuidelineInput$: StaticStructureSchema;
|
|
34
|
+
export declare var CreateGuidelineOutput$: StaticStructureSchema;
|
|
35
|
+
export declare var CreateGuidelinesDirectoryInput$: StaticStructureSchema;
|
|
36
|
+
export declare var CreateGuidelinesDirectoryOutput$: StaticStructureSchema;
|
|
37
|
+
export declare var CreateSkillFileUploadInput$: StaticStructureSchema;
|
|
38
|
+
export declare var CreateSkillFileUploadOutput$: StaticStructureSchema;
|
|
39
|
+
export declare var CreateSkillInput$: StaticStructureSchema;
|
|
40
|
+
export declare var CreateSkillOutput$: StaticStructureSchema;
|
|
41
|
+
export declare var DeleteAgentInput$: StaticStructureSchema;
|
|
42
|
+
export declare var DeleteAgentOutput$: StaticStructureSchema;
|
|
43
|
+
export declare var DeleteChatInput$: StaticStructureSchema;
|
|
44
|
+
export declare var DeleteChatOutput$: StaticStructureSchema;
|
|
45
|
+
export declare var DeleteFileInput$: StaticStructureSchema;
|
|
46
|
+
export declare var DeleteFileOutput$: StaticStructureSchema;
|
|
47
|
+
export declare var DeleteGuidelineInput$: StaticStructureSchema;
|
|
48
|
+
export declare var DeleteGuidelineOutput$: StaticStructureSchema;
|
|
49
|
+
export declare var DeleteGuidelinesDirectoryInput$: StaticStructureSchema;
|
|
50
|
+
export declare var DeleteGuidelinesDirectoryOutput$: StaticStructureSchema;
|
|
51
|
+
export declare var DeleteSkillFileInput$: StaticStructureSchema;
|
|
52
|
+
export declare var DeleteSkillFileOutput$: StaticStructureSchema;
|
|
53
|
+
export declare var DeleteSkillInput$: StaticStructureSchema;
|
|
54
|
+
export declare var DeleteSkillOutput$: StaticStructureSchema;
|
|
55
|
+
export declare var DislikeAnswerInput$: StaticStructureSchema;
|
|
56
|
+
export declare var DislikeAnswerOutput$: StaticStructureSchema;
|
|
57
|
+
export declare var DownloadFileInput$: StaticStructureSchema;
|
|
58
|
+
export declare var DownloadFileOutput$: StaticStructureSchema;
|
|
59
|
+
export declare var ExecuteAgentInput$: StaticStructureSchema;
|
|
60
|
+
export declare var ExecuteAgentOutput$: StaticStructureSchema;
|
|
61
|
+
export declare var GetAgentInput$: StaticStructureSchema;
|
|
62
|
+
export declare var GetAgentOutput$: StaticStructureSchema;
|
|
63
|
+
export declare var GetChatInput$: StaticStructureSchema;
|
|
64
|
+
export declare var GetChatOutput$: StaticStructureSchema;
|
|
65
|
+
export declare var GetFileInput$: StaticStructureSchema;
|
|
66
|
+
export declare var GetFileOutput$: StaticStructureSchema;
|
|
67
|
+
export declare var GetGuidelineInput$: StaticStructureSchema;
|
|
68
|
+
export declare var GetGuidelineOutput$: StaticStructureSchema;
|
|
69
|
+
export declare var GetOrganizationSettingsInput$: StaticStructureSchema;
|
|
70
|
+
export declare var GetOrganizationSettingsOutput$: StaticStructureSchema;
|
|
71
|
+
export declare var GetSettingsInput$: StaticStructureSchema;
|
|
72
|
+
export declare var GetSettingsOutput$: StaticStructureSchema;
|
|
73
|
+
export declare var GetSkillFileDownloadInput$: StaticStructureSchema;
|
|
74
|
+
export declare var GetSkillFileDownloadOutput$: StaticStructureSchema;
|
|
75
|
+
export declare var GetSkillInput$: StaticStructureSchema;
|
|
76
|
+
export declare var GetSkillOutput$: StaticStructureSchema;
|
|
77
|
+
export declare var Guideline$: StaticStructureSchema;
|
|
78
|
+
export declare var GuidelineDirectoryInfo$: StaticStructureSchema;
|
|
79
|
+
export declare var GuidelineInfo$: StaticStructureSchema;
|
|
80
|
+
export declare var LikeAnswerInput$: StaticStructureSchema;
|
|
81
|
+
export declare var LikeAnswerOutput$: StaticStructureSchema;
|
|
82
|
+
export declare var ListAgentFeedbacksInput$: StaticStructureSchema;
|
|
83
|
+
export declare var ListAgentFeedbacksOutput$: StaticStructureSchema;
|
|
84
|
+
export declare var ListAgentsInput$: StaticStructureSchema;
|
|
85
|
+
export declare var ListAgentsNamesInput$: StaticStructureSchema;
|
|
86
|
+
export declare var ListAgentsNamesOutput$: StaticStructureSchema;
|
|
87
|
+
export declare var ListAgentsOutput$: StaticStructureSchema;
|
|
88
|
+
export declare var ListChatsInput$: StaticStructureSchema;
|
|
89
|
+
export declare var ListChatsOutput$: StaticStructureSchema;
|
|
90
|
+
export declare var ListFeedbacksInput$: StaticStructureSchema;
|
|
91
|
+
export declare var ListFeedbacksOutput$: StaticStructureSchema;
|
|
92
|
+
export declare var ListGuidelinesDirectoriesInput$: StaticStructureSchema;
|
|
93
|
+
export declare var ListGuidelinesDirectoriesOutput$: StaticStructureSchema;
|
|
94
|
+
export declare var ListGuidelinesInput$: StaticStructureSchema;
|
|
95
|
+
export declare var ListGuidelinesNamesInput$: StaticStructureSchema;
|
|
96
|
+
export declare var ListGuidelinesNamesOutput$: StaticStructureSchema;
|
|
97
|
+
export declare var ListGuidelinesOutput$: StaticStructureSchema;
|
|
98
|
+
export declare var ListSkillsInput$: StaticStructureSchema;
|
|
99
|
+
export declare var ListSkillsOutput$: StaticStructureSchema;
|
|
100
|
+
export declare var OrganizationAgentIntegration$: StaticStructureSchema;
|
|
101
|
+
export declare var OrganizationGuidelineIntegration$: StaticStructureSchema;
|
|
102
|
+
export declare var OrganizationKnowledgeBaseIntegration$: StaticStructureSchema;
|
|
103
|
+
export declare var OrganizationToolIntegration$: StaticStructureSchema;
|
|
104
|
+
export declare var PatchOrganizationSettingsInput$: StaticStructureSchema;
|
|
105
|
+
export declare var PatchOrganizationSettingsOutput$: StaticStructureSchema;
|
|
106
|
+
export declare var PatchSettingsInput$: StaticStructureSchema;
|
|
107
|
+
export declare var PatchSettingsOutput$: StaticStructureSchema;
|
|
108
|
+
export declare var Skill$: StaticStructureSchema;
|
|
109
|
+
export declare var SkillFile$: StaticStructureSchema;
|
|
110
|
+
export declare var SkillInfo$: StaticStructureSchema;
|
|
111
|
+
export declare var UpdateAgentInput$: StaticStructureSchema;
|
|
112
|
+
export declare var UpdateAgentOutput$: StaticStructureSchema;
|
|
113
|
+
export declare var UpdateGuidelineAccessInput$: StaticStructureSchema;
|
|
114
|
+
export declare var UpdateGuidelineAccessOutput$: StaticStructureSchema;
|
|
115
|
+
export declare var UpdateGuidelineInput$: StaticStructureSchema;
|
|
116
|
+
export declare var UpdateGuidelineOutput$: StaticStructureSchema;
|
|
117
|
+
export declare var UpdateGuidelinesDirectoryInput$: StaticStructureSchema;
|
|
118
|
+
export declare var UpdateGuidelinesDirectoryOutput$: StaticStructureSchema;
|
|
119
|
+
export declare var UpdateSkillInput$: StaticStructureSchema;
|
|
120
|
+
export declare var UpdateSkillOutput$: StaticStructureSchema;
|
|
121
|
+
export declare var UserAboutSettings$: StaticStructureSchema;
|
|
122
|
+
export declare var UserGuidelinesSettings$: StaticStructureSchema;
|
|
123
|
+
export declare var UserIntegrationsSettings$: StaticStructureSchema;
|
|
124
|
+
export declare var UserStyleSettings$: StaticStructureSchema;
|
|
125
|
+
export declare var WebSearchUserLocation$: StaticStructureSchema;
|
|
126
|
+
export declare var WilmaAccess$: StaticStructureSchema;
|
|
127
|
+
export declare var WilmaFile$: StaticStructureSchema;
|
|
128
|
+
export declare var WilmaGrant$: StaticStructureSchema;
|
|
129
|
+
export declare var AgentCapability$: StaticUnionSchema;
|
|
130
|
+
export declare var AgentSandboxCapability$: StaticUnionSchema;
|
|
131
|
+
export declare var AgentToolVariableHandler$: StaticUnionSchema;
|
|
132
|
+
export declare var WilmaGrantPrincipal$: StaticUnionSchema;
|
|
133
|
+
export declare var CreateAgent$: StaticOperationSchema;
|
|
134
|
+
export declare var CreateGuideline$: StaticOperationSchema;
|
|
135
|
+
export declare var CreateGuidelinesDirectory$: StaticOperationSchema;
|
|
136
|
+
export declare var CreateSkill$: StaticOperationSchema;
|
|
137
|
+
export declare var CreateSkillFileUpload$: StaticOperationSchema;
|
|
138
|
+
export declare var DeleteAgent$: StaticOperationSchema;
|
|
139
|
+
export declare var DeleteChat$: StaticOperationSchema;
|
|
140
|
+
export declare var DeleteFile$: StaticOperationSchema;
|
|
141
|
+
export declare var DeleteGuideline$: StaticOperationSchema;
|
|
142
|
+
export declare var DeleteGuidelinesDirectory$: StaticOperationSchema;
|
|
143
|
+
export declare var DeleteSkill$: StaticOperationSchema;
|
|
144
|
+
export declare var DeleteSkillFile$: StaticOperationSchema;
|
|
145
|
+
export declare var DislikeAnswer$: StaticOperationSchema;
|
|
146
|
+
export declare var DownloadFile$: StaticOperationSchema;
|
|
147
|
+
export declare var ExecuteAgent$: StaticOperationSchema;
|
|
148
|
+
export declare var GetAgent$: StaticOperationSchema;
|
|
149
|
+
export declare var GetChat$: StaticOperationSchema;
|
|
150
|
+
export declare var GetFile$: StaticOperationSchema;
|
|
151
|
+
export declare var GetGuideline$: StaticOperationSchema;
|
|
152
|
+
export declare var GetOrganizationSettings$: StaticOperationSchema;
|
|
153
|
+
export declare var GetSettings$: StaticOperationSchema;
|
|
154
|
+
export declare var GetSkill$: StaticOperationSchema;
|
|
155
|
+
export declare var GetSkillFileDownload$: StaticOperationSchema;
|
|
156
|
+
export declare var LikeAnswer$: StaticOperationSchema;
|
|
157
|
+
export declare var ListAgentFeedbacks$: StaticOperationSchema;
|
|
158
|
+
export declare var ListAgents$: StaticOperationSchema;
|
|
159
|
+
export declare var ListAgentsNames$: StaticOperationSchema;
|
|
160
|
+
export declare var ListChats$: StaticOperationSchema;
|
|
161
|
+
export declare var ListFeedbacks$: StaticOperationSchema;
|
|
162
|
+
export declare var ListGuidelines$: StaticOperationSchema;
|
|
163
|
+
export declare var ListGuidelinesDirectories$: StaticOperationSchema;
|
|
164
|
+
export declare var ListGuidelinesNames$: StaticOperationSchema;
|
|
165
|
+
export declare var ListSkills$: StaticOperationSchema;
|
|
166
|
+
export declare var PatchOrganizationSettings$: StaticOperationSchema;
|
|
167
|
+
export declare var PatchSettings$: StaticOperationSchema;
|
|
168
|
+
export declare var UpdateAgent$: StaticOperationSchema;
|
|
169
|
+
export declare var UpdateGuideline$: StaticOperationSchema;
|
|
170
|
+
export declare var UpdateGuidelineAccess$: StaticOperationSchema;
|
|
171
|
+
export declare var UpdateGuidelinesDirectory$: StaticOperationSchema;
|
|
172
|
+
export declare var UpdateSkill$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wim-wilma-client",
|
|
3
3
|
"description": "@wildix/wim-wilma-client client",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.1.12",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
9
9
|
"build:types": "tsc -p tsconfig.types.json",
|
|
10
10
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
11
|
-
"clean": "
|
|
11
|
+
"clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
|
|
12
12
|
"prepack": "yarn run clean && yarn run build",
|
|
13
13
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
14
14
|
},
|
|
@@ -20,51 +20,25 @@
|
|
|
20
20
|
"tslib": "^2.6.2",
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@
|
|
25
|
-
"@
|
|
26
|
-
"@
|
|
27
|
-
"@
|
|
28
|
-
"@aws-sdk/types": "latest",
|
|
29
|
-
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
30
|
-
"@aws-sdk/util-user-agent-node": "3.775.0",
|
|
31
|
-
"@smithy/config-resolver": "^4.1.0",
|
|
32
|
-
"@smithy/core": "^3.2.0",
|
|
33
|
-
"@smithy/fetch-http-handler": "^5.0.2",
|
|
34
|
-
"@smithy/hash-node": "^4.0.2",
|
|
35
|
-
"@smithy/invalid-dependency": "^4.0.2",
|
|
36
|
-
"@smithy/middleware-content-length": "^4.0.2",
|
|
37
|
-
"@smithy/middleware-retry": "^4.1.0",
|
|
38
|
-
"@smithy/middleware-serde": "^4.0.3",
|
|
39
|
-
"@smithy/middleware-stack": "^4.0.2",
|
|
40
|
-
"@smithy/node-config-provider": "^4.0.2",
|
|
41
|
-
"@smithy/node-http-handler": "^4.0.4",
|
|
42
|
-
"@smithy/protocol-http": "^5.1.0",
|
|
43
|
-
"@smithy/smithy-client": "^4.2.0",
|
|
44
|
-
"@smithy/types": "^4.2.0",
|
|
45
|
-
"@smithy/url-parser": "^4.0.2",
|
|
46
|
-
"@smithy/util-base64": "^4.0.0",
|
|
47
|
-
"@smithy/util-body-length-browser": "^4.0.0",
|
|
48
|
-
"@smithy/util-body-length-node": "^4.0.0",
|
|
49
|
-
"@smithy/util-defaults-mode-browser": "^4.0.8",
|
|
50
|
-
"@smithy/util-defaults-mode-node": "^4.0.8",
|
|
51
|
-
"@smithy/util-retry": "^4.0.2",
|
|
52
|
-
"@smithy/util-utf8": "^4.0.0",
|
|
53
|
-
"@wildix/smithy-utils": "^1.0.3"
|
|
23
|
+
"@aws-sdk/core": "^3.974.15",
|
|
24
|
+
"@smithy/core": "^3.24.5",
|
|
25
|
+
"@smithy/fetch-http-handler": "^5.4.5",
|
|
26
|
+
"@smithy/node-http-handler": "^4.7.5",
|
|
27
|
+
"@smithy/types": "^4.14.2"
|
|
54
28
|
},
|
|
55
29
|
"devDependencies": {
|
|
56
|
-
"@tsconfig/
|
|
30
|
+
"@tsconfig/node20": "20.1.8",
|
|
57
31
|
"concurrently": "7.0.0",
|
|
58
32
|
"downlevel-dts": "0.10.1",
|
|
59
|
-
"
|
|
60
|
-
"typescript": "~5.
|
|
61
|
-
"@types/node": "^
|
|
33
|
+
"premove": "4.0.0",
|
|
34
|
+
"typescript": "~5.8.3",
|
|
35
|
+
"@types/node": "^20.14.8"
|
|
62
36
|
},
|
|
63
37
|
"engines": {
|
|
64
|
-
"node": ">=
|
|
38
|
+
"node": ">=20.0.0"
|
|
65
39
|
},
|
|
66
40
|
"typesVersions": {
|
|
67
|
-
"<4.
|
|
41
|
+
"<4.5": {
|
|
68
42
|
"dist-types/*": [
|
|
69
43
|
"dist-types/ts3.4/*"
|
|
70
44
|
]
|
|
@@ -80,4 +54,4 @@
|
|
|
80
54
|
"react-native": {
|
|
81
55
|
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
82
56
|
}
|
|
83
|
-
}
|
|
57
|
+
}
|
package/dist-cjs/models/index.js
DELETED