@wildix/wda-history-client 1.2.29 → 3.1.29
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/WdaHistory.js +3 -3
- package/dist-cjs/WdaHistoryClient.js +34 -26
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
- package/dist-cjs/commands/GetCallAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetCallCommand.js +10 -11
- package/dist-cjs/commands/GetCallTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetCallTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/GetChatAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetChatCommand.js +10 -11
- package/dist-cjs/commands/GetChatTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetChatTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/QueryConversationsCommand.js +10 -11
- package/dist-cjs/commands/QueryUserCallsCommand.js +10 -11
- package/dist-cjs/commands/UpdateCallCommand.js +10 -11
- package/dist-cjs/commands/index.js +3 -3
- package/dist-cjs/endpoint/EndpointParameters.js +16 -0
- package/dist-cjs/endpoint/bdd.js +25 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +4 -1
- package/dist-cjs/models/WdaHistoryServiceException.js +3 -3
- package/dist-cjs/models/enums.js +204 -0
- package/dist-cjs/models/errors.js +147 -0
- package/dist-cjs/models/models_0.js +0 -413
- 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 +1047 -0
- package/dist-es/WdaHistory.js +4 -4
- package/dist-es/WdaHistoryClient.js +30 -22
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
- package/dist-es/commands/GetCallAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetCallCommand.js +9 -10
- package/dist-es/commands/GetCallTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetCallTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/GetChatAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetChatCommand.js +9 -10
- package/dist-es/commands/GetChatTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetChatTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/GetConferenceAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetConferenceCommand.js +9 -10
- package/dist-es/commands/GetConferenceTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetConferenceTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/QueryConversationsCommand.js +9 -10
- package/dist-es/commands/QueryUserCallsCommand.js +9 -10
- package/dist-es/commands/UpdateCallCommand.js +9 -10
- package/dist-es/commands/index.js +3 -3
- package/dist-es/endpoint/EndpointParameters.js +12 -0
- package/dist-es/endpoint/bdd.js +22 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +4 -1
- package/dist-es/models/WdaHistoryServiceException.js +1 -1
- package/dist-es/models/enums.js +201 -0
- package/dist-es/models/errors.js +133 -0
- package/dist-es/models/models_0.js +1 -400
- 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 +1042 -0
- package/dist-types/WdaHistory.d.ts +16 -16
- package/dist-types/WdaHistoryClient.d.ts +45 -27
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/GetCallAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetCallCommand.d.ts +11 -7
- package/dist-types/commands/GetCallTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetCallTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/GetChatAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetChatCommand.d.ts +11 -7
- package/dist-types/commands/GetChatTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetChatTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/QueryConversationsCommand.d.ts +11 -7
- package/dist-types/commands/QueryUserCallsCommand.d.ts +11 -7
- package/dist-types/commands/UpdateCallCommand.d.ts +11 -7
- package/dist-types/commands/index.d.ts +3 -3
- 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/WdaHistoryServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +505 -0
- package/dist-types/models/errors.d.ts +123 -0
- package/dist-types/models/models_0.d.ts +83 -692
- 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 +127 -0
- package/package.json +14 -40
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -868
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -835
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -137
|
@@ -1,36 +1,55 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
-
import { WdaHistoryClientConfig } from "./WdaHistoryClient";
|
|
2
|
+
import type { WdaHistoryClientConfig } from "./WdaHistoryClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: WdaHistoryClientConfig) => {
|
|
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").WdaHistoryHttpAuthSchemeProvider;
|
|
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 { WdaHistoryClientConfig } from "./WdaHistoryClient";
|
|
2
|
+
import type { WdaHistoryClientConfig } from "./WdaHistoryClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: WdaHistoryClientConfig) => {
|
|
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").WdaHistoryHttpAuthSchemeProvider;
|
|
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 { WdaHistoryClientConfig } from "./WdaHistoryClient";
|
|
1
|
+
import type { WdaHistoryClientConfig } from "./WdaHistoryClient";
|
|
2
2
|
/**
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: WdaHistoryClientConfig) => {
|
|
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").WdaHistoryHttpAuthSchemeProvider;
|
|
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 { WdaHistoryClientConfig } from "./WdaHistoryClient";
|
|
2
5
|
/**
|
|
3
6
|
* @internal
|
|
4
7
|
*/
|
|
5
8
|
export declare const getRuntimeConfig: (config: WdaHistoryClientConfig) => {
|
|
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").WdaHistoryHttpAuthSchemeProvider;
|
|
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,127 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var WdaHistoryServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
5
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
6
|
+
export declare var CallAnnotationsNotFoundException$: StaticErrorSchema;
|
|
7
|
+
export declare var CallNotFoundException$: StaticErrorSchema;
|
|
8
|
+
export declare var CallTranscriptionNotFoundException$: StaticErrorSchema;
|
|
9
|
+
export declare var ChatAnnotationsNotFoundException$: StaticErrorSchema;
|
|
10
|
+
export declare var ChatNotFoundException$: StaticErrorSchema;
|
|
11
|
+
export declare var ChatTranscriptionNotFoundException$: StaticErrorSchema;
|
|
12
|
+
export declare var ConferenceAnnotationsNotFoundException$: StaticErrorSchema;
|
|
13
|
+
export declare var ConferenceNotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var ConferenceTranscriptionNotFoundException$: StaticErrorSchema;
|
|
15
|
+
/**
|
|
16
|
+
* TypeRegistry instances containing modeled errors.
|
|
17
|
+
* @internal
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
21
|
+
export declare var TemplateParameter$: StaticStructureSchema;
|
|
22
|
+
export declare var TemplateWithParameters$: StaticStructureSchema;
|
|
23
|
+
export declare var CallAnnotationsRecord$: StaticStructureSchema;
|
|
24
|
+
export declare var CallRecord$: StaticStructureSchema;
|
|
25
|
+
export declare var CallTranscriptionInteractionParticipantRecord$: StaticStructureSchema;
|
|
26
|
+
export declare var CallTranscriptionInteractionRecord$: StaticStructureSchema;
|
|
27
|
+
export declare var CallTranscriptionInterruption$: StaticStructureSchema;
|
|
28
|
+
export declare var CallTranscriptionRecord$: StaticStructureSchema;
|
|
29
|
+
export declare var ChatAnnotationsRecord$: StaticStructureSchema;
|
|
30
|
+
export declare var ChatRecord$: StaticStructureSchema;
|
|
31
|
+
export declare var ChatTranscriptionRecord$: StaticStructureSchema;
|
|
32
|
+
export declare var ConferenceAnnotationsRecord$: StaticStructureSchema;
|
|
33
|
+
export declare var ConferenceRecord$: StaticStructureSchema;
|
|
34
|
+
export declare var ConferenceTranscription$: StaticStructureSchema;
|
|
35
|
+
export declare var ConferenceTranscriptionInteractionParticipantRecord$: StaticStructureSchema;
|
|
36
|
+
export declare var ConferenceTranscriptionInteractionRecord$: StaticStructureSchema;
|
|
37
|
+
export declare var ConferenceTranscriptionInterruption$: StaticStructureSchema;
|
|
38
|
+
export declare var ConferenceTranscriptionRecord$: StaticStructureSchema;
|
|
39
|
+
export declare var GetCallAnnotationsInput$: StaticStructureSchema;
|
|
40
|
+
export declare var GetCallAnnotationsOutput$: StaticStructureSchema;
|
|
41
|
+
export declare var GetCallInput$: StaticStructureSchema;
|
|
42
|
+
export declare var GetCallOutput$: StaticStructureSchema;
|
|
43
|
+
export declare var GetCallTranscriptionInput$: StaticStructureSchema;
|
|
44
|
+
export declare var GetCallTranscriptionOutput$: StaticStructureSchema;
|
|
45
|
+
export declare var GetCallTranscriptionTextInput$: StaticStructureSchema;
|
|
46
|
+
export declare var GetCallTranscriptionTextOutput$: StaticStructureSchema;
|
|
47
|
+
export declare var GetChatAnnotationsInput$: StaticStructureSchema;
|
|
48
|
+
export declare var GetChatAnnotationsOutput$: StaticStructureSchema;
|
|
49
|
+
export declare var GetChatInput$: StaticStructureSchema;
|
|
50
|
+
export declare var GetChatOutput$: StaticStructureSchema;
|
|
51
|
+
export declare var GetChatTranscriptionInput$: StaticStructureSchema;
|
|
52
|
+
export declare var GetChatTranscriptionOutput$: StaticStructureSchema;
|
|
53
|
+
export declare var GetChatTranscriptionTextInput$: StaticStructureSchema;
|
|
54
|
+
export declare var GetChatTranscriptionTextOutput$: StaticStructureSchema;
|
|
55
|
+
export declare var GetConferenceAnnotationsInput$: StaticStructureSchema;
|
|
56
|
+
export declare var GetConferenceAnnotationsOutput$: StaticStructureSchema;
|
|
57
|
+
export declare var GetConferenceInput$: StaticStructureSchema;
|
|
58
|
+
export declare var GetConferenceOutput$: StaticStructureSchema;
|
|
59
|
+
export declare var GetConferenceTranscriptionInput$: StaticStructureSchema;
|
|
60
|
+
export declare var GetConferenceTranscriptionOutput$: StaticStructureSchema;
|
|
61
|
+
export declare var GetConferenceTranscriptionTextInput$: StaticStructureSchema;
|
|
62
|
+
export declare var GetConferenceTranscriptionTextOutput$: StaticStructureSchema;
|
|
63
|
+
export declare var QueryConversationsFilter$: StaticStructureSchema;
|
|
64
|
+
export declare var QueryConversationsInput$: StaticStructureSchema;
|
|
65
|
+
export declare var QueryConversationsOutput$: StaticStructureSchema;
|
|
66
|
+
export declare var QueryUserCallsFilter$: StaticStructureSchema;
|
|
67
|
+
export declare var QueryUserCallsInput$: StaticStructureSchema;
|
|
68
|
+
export declare var QueryUserCallsOutput$: StaticStructureSchema;
|
|
69
|
+
export declare var TranscriptionTextChunk$: StaticStructureSchema;
|
|
70
|
+
export declare var UpdateCallInput$: StaticStructureSchema;
|
|
71
|
+
export declare var UpdateCallOutput$: StaticStructureSchema;
|
|
72
|
+
export declare var Annotation$: StaticStructureSchema;
|
|
73
|
+
export declare var AnnotationResultValue$: StaticStructureSchema;
|
|
74
|
+
export declare var AnnotationSource$: StaticStructureSchema;
|
|
75
|
+
export declare var AnnotationVariablesValue$: StaticStructureSchema;
|
|
76
|
+
export declare var CallFlowAttachmentDestination$: StaticStructureSchema;
|
|
77
|
+
export declare var CallFlowFax$: StaticStructureSchema;
|
|
78
|
+
export declare var CallFlowNotifications$: StaticStructureSchema;
|
|
79
|
+
export declare var CallFlowRecording$: StaticStructureSchema;
|
|
80
|
+
export declare var CallFlowVoicemail$: StaticStructureSchema;
|
|
81
|
+
export declare var CallParticipant$: StaticStructureSchema;
|
|
82
|
+
export declare var CallRecordPause$: StaticStructureSchema;
|
|
83
|
+
export declare var CallTranscriptionChunk$: StaticStructureSchema;
|
|
84
|
+
export declare var ChatParticipant$: StaticStructureSchema;
|
|
85
|
+
export declare var ChatParticipantInfo$: StaticStructureSchema;
|
|
86
|
+
export declare var ConferenceAnalyticsRecordParticipant$: StaticStructureSchema;
|
|
87
|
+
export declare var ConferenceParticipant$: StaticStructureSchema;
|
|
88
|
+
export declare var ConferenceRecording$: StaticStructureSchema;
|
|
89
|
+
export declare var ConferenceTranscriptionChunk$: StaticStructureSchema;
|
|
90
|
+
export declare var ButtonActionHandler$: StaticStructureSchema;
|
|
91
|
+
export declare var ButtonElement$: StaticStructureSchema;
|
|
92
|
+
export declare var ButtonLinkHandler$: StaticStructureSchema;
|
|
93
|
+
export declare var ButtonReplyHandler$: StaticStructureSchema;
|
|
94
|
+
export declare var Channel$: StaticStructureSchema;
|
|
95
|
+
export declare var ChannelContext$: StaticStructureSchema;
|
|
96
|
+
export declare var ChannelContextEvent$: StaticStructureSchema;
|
|
97
|
+
export declare var ChannelContextEventAttendee$: StaticStructureSchema;
|
|
98
|
+
export declare var ChannelContextPushToTalk$: StaticStructureSchema;
|
|
99
|
+
export declare var Message$: StaticStructureSchema;
|
|
100
|
+
export declare var MessageAttachment$: StaticStructureSchema;
|
|
101
|
+
export declare var MessageForward$: StaticStructureSchema;
|
|
102
|
+
export declare var MessageGiphy$: StaticStructureSchema;
|
|
103
|
+
export declare var MessageQuote$: StaticStructureSchema;
|
|
104
|
+
export declare var MessageTemplateConfig$: StaticStructureSchema;
|
|
105
|
+
export declare var Reaction$: StaticStructureSchema;
|
|
106
|
+
export declare var User$: StaticStructureSchema;
|
|
107
|
+
export declare var Conversation$: StaticUnionSchema;
|
|
108
|
+
export declare var AnnotationPayload$: StaticUnionSchema;
|
|
109
|
+
export declare var CallFlowAttachment$: StaticUnionSchema;
|
|
110
|
+
export declare var ActionElement$: StaticUnionSchema;
|
|
111
|
+
export declare var ButtonHandler$: StaticUnionSchema;
|
|
112
|
+
export declare var Element$: StaticUnionSchema;
|
|
113
|
+
export declare var GetCall$: StaticOperationSchema;
|
|
114
|
+
export declare var GetCallAnnotations$: StaticOperationSchema;
|
|
115
|
+
export declare var GetCallTranscription$: StaticOperationSchema;
|
|
116
|
+
export declare var GetCallTranscriptionText$: StaticOperationSchema;
|
|
117
|
+
export declare var GetChat$: StaticOperationSchema;
|
|
118
|
+
export declare var GetChatAnnotations$: StaticOperationSchema;
|
|
119
|
+
export declare var GetChatTranscription$: StaticOperationSchema;
|
|
120
|
+
export declare var GetChatTranscriptionText$: StaticOperationSchema;
|
|
121
|
+
export declare var GetConference$: StaticOperationSchema;
|
|
122
|
+
export declare var GetConferenceAnnotations$: StaticOperationSchema;
|
|
123
|
+
export declare var GetConferenceTranscription$: StaticOperationSchema;
|
|
124
|
+
export declare var GetConferenceTranscriptionText$: StaticOperationSchema;
|
|
125
|
+
export declare var QueryConversations$: StaticOperationSchema;
|
|
126
|
+
export declare var QueryUserCalls$: StaticOperationSchema;
|
|
127
|
+
export declare var UpdateCall$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-history-client",
|
|
3
3
|
"description": "@wildix/wda-history-client client",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "3.1.29",
|
|
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