@wildix/wim-voicebots-client 1.1.9 → 3.1.10
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/VoiceBots.js +3 -3
- package/dist-cjs/VoiceBotsClient.js +34 -26
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +65 -0
- package/dist-cjs/commands/CreateVoiceBotCommand.js +10 -11
- package/dist-cjs/commands/DeleteVoiceBotCommand.js +10 -11
- package/dist-cjs/commands/DescribeEventCommand.js +10 -11
- package/dist-cjs/commands/GetTraceCommand.js +10 -11
- package/dist-cjs/commands/GetVoiceBotCommand.js +10 -11
- package/dist-cjs/commands/ListTracesCommand.js +10 -11
- package/dist-cjs/commands/ListVoiceBotsCommand.js +10 -11
- package/dist-cjs/commands/ListVoiceBotsNamesCommand.js +10 -11
- package/dist-cjs/commands/SendHangupCommand.js +10 -11
- package/dist-cjs/commands/SendPlayCommand.js +10 -11
- package/dist-cjs/commands/SendSayCommand.js +10 -11
- package/dist-cjs/commands/SendStopCommand.js +10 -11
- package/dist-cjs/commands/SendTransferCommand.js +10 -11
- package/dist-cjs/commands/UpdateVoiceBotCommand.js +10 -11
- 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/VoiceBotsServiceException.js +3 -3
- package/dist-cjs/models/enums.js +64 -0
- package/dist-cjs/models/errors.js +75 -0
- package/dist-cjs/models/models_0.js +0 -350
- 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 +1247 -0
- package/dist-es/VoiceBots.js +6 -6
- package/dist-es/VoiceBotsClient.js +30 -22
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +59 -0
- package/dist-es/commands/CreateVoiceBotCommand.js +9 -10
- package/dist-es/commands/DeleteVoiceBotCommand.js +9 -10
- package/dist-es/commands/DescribeEventCommand.js +9 -10
- package/dist-es/commands/GetTraceCommand.js +9 -10
- package/dist-es/commands/GetVoiceBotCommand.js +9 -10
- package/dist-es/commands/ListTracesCommand.js +9 -10
- package/dist-es/commands/ListVoiceBotsCommand.js +9 -10
- package/dist-es/commands/ListVoiceBotsNamesCommand.js +9 -10
- package/dist-es/commands/SendHangupCommand.js +9 -10
- package/dist-es/commands/SendPlayCommand.js +9 -10
- package/dist-es/commands/SendSayCommand.js +9 -10
- package/dist-es/commands/SendStopCommand.js +9 -10
- package/dist-es/commands/SendTransferCommand.js +9 -10
- package/dist-es/commands/UpdateVoiceBotCommand.js +9 -10
- 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/VoiceBotsServiceException.js +1 -1
- package/dist-es/models/enums.js +61 -0
- package/dist-es/models/errors.js +67 -0
- package/dist-es/models/models_0.js +1 -344
- 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 +1241 -0
- package/dist-types/VoiceBots.d.ts +15 -15
- package/dist-types/VoiceBotsClient.d.ts +44 -26
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/CreateVoiceBotCommand.d.ts +11 -7
- package/dist-types/commands/DeleteVoiceBotCommand.d.ts +11 -7
- package/dist-types/commands/DescribeEventCommand.d.ts +11 -7
- package/dist-types/commands/GetTraceCommand.d.ts +11 -7
- package/dist-types/commands/GetVoiceBotCommand.d.ts +11 -7
- package/dist-types/commands/ListTracesCommand.d.ts +11 -7
- package/dist-types/commands/ListVoiceBotsCommand.d.ts +11 -7
- package/dist-types/commands/ListVoiceBotsNamesCommand.d.ts +11 -7
- package/dist-types/commands/SendHangupCommand.d.ts +11 -7
- package/dist-types/commands/SendPlayCommand.d.ts +11 -7
- package/dist-types/commands/SendSayCommand.d.ts +11 -7
- package/dist-types/commands/SendStopCommand.d.ts +11 -7
- package/dist-types/commands/SendTransferCommand.d.ts +11 -7
- package/dist-types/commands/UpdateVoiceBotCommand.d.ts +11 -7
- 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/VoiceBotsServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +141 -0
- package/dist-types/models/errors.d.ts +60 -0
- package/dist-types/models/models_0.d.ts +92 -244
- package/dist-types/runtimeConfig.browser.d.ts +34 -15
- package/dist-types/runtimeConfig.d.ts +33 -14
- package/dist-types/runtimeConfig.native.d.ts +35 -16
- 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 +175 -0
- package/package.json +14 -40
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -1106
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -1075
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -128
|
@@ -1,36 +1,55 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
-
import { VoiceBotsClientConfig } from "./VoiceBotsClient";
|
|
2
|
+
import type { VoiceBotsClientConfig } from "./VoiceBotsClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: VoiceBotsClientConfig) => {
|
|
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
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").VoiceBotsHttpAuthSchemeProvider;
|
|
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 { VoiceBotsClientConfig } from "./VoiceBotsClient";
|
|
2
|
+
import type { VoiceBotsClientConfig } from "./VoiceBotsClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: VoiceBotsClientConfig) => {
|
|
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
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").VoiceBotsHttpAuthSchemeProvider;
|
|
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 { VoiceBotsClientConfig } from "./VoiceBotsClient";
|
|
1
|
+
import type { VoiceBotsClientConfig } from "./VoiceBotsClient";
|
|
2
2
|
/**
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: VoiceBotsClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
-
env?: "stage" | "stable" | "prod" | undefined;
|
|
9
|
-
token: import("@wildix/smithy-utils").TokenProvider;
|
|
10
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;
|
|
11
|
-
cacheMiddleware?: boolean
|
|
12
|
-
protocol
|
|
13
|
-
protocolSettings
|
|
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").VoiceBotsHttpAuthSchemeProvider;
|
|
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 { VoiceBotsClientConfig } from "./VoiceBotsClient";
|
|
2
5
|
/**
|
|
3
6
|
* @internal
|
|
4
7
|
*/
|
|
5
8
|
export declare const getRuntimeConfig: (config: VoiceBotsClientConfig) => {
|
|
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").VoiceBotsHttpAuthSchemeProvider;
|
|
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,175 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var VoiceBotsServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
5
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
6
|
+
export declare var VoiceBotNonUniqueNameException$: StaticErrorSchema;
|
|
7
|
+
export declare var VoiceBotNotFoundException$: StaticErrorSchema;
|
|
8
|
+
export declare var VoiceSessionNotFoundException$: StaticErrorSchema;
|
|
9
|
+
/**
|
|
10
|
+
* TypeRegistry instances containing modeled errors.
|
|
11
|
+
* @internal
|
|
12
|
+
*
|
|
13
|
+
*/
|
|
14
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
15
|
+
export declare var Annotation$: StaticStructureSchema;
|
|
16
|
+
export declare var AnnotationResultValue$: StaticStructureSchema;
|
|
17
|
+
export declare var AnnotationSource$: StaticStructureSchema;
|
|
18
|
+
export declare var AnnotationVariablesValue$: StaticStructureSchema;
|
|
19
|
+
export declare var AudioEvent$: StaticStructureSchema;
|
|
20
|
+
export declare var AudioWebhookEvent$: StaticStructureSchema;
|
|
21
|
+
export declare var CompleteEvent$: StaticStructureSchema;
|
|
22
|
+
export declare var CompleteWebhookEvent$: StaticStructureSchema;
|
|
23
|
+
export declare var CompleteWebsocketEvent$: StaticStructureSchema;
|
|
24
|
+
export declare var CreateVoiceBotInput$: StaticStructureSchema;
|
|
25
|
+
export declare var CreateVoiceBotOutput$: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteVoiceBotInput$: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteVoiceBotOutput$: StaticStructureSchema;
|
|
28
|
+
export declare var DescribeEventInput$: StaticStructureSchema;
|
|
29
|
+
export declare var DescribeEventOutput$: StaticStructureSchema;
|
|
30
|
+
export declare var GetTraceInput$: StaticStructureSchema;
|
|
31
|
+
export declare var GetTraceOutput$: StaticStructureSchema;
|
|
32
|
+
export declare var GetVoiceBotInput$: StaticStructureSchema;
|
|
33
|
+
export declare var GetVoiceBotOutput$: StaticStructureSchema;
|
|
34
|
+
export declare var HangupWebsocketCommand$: StaticStructureSchema;
|
|
35
|
+
export declare var HangupWebsocketCommandData$: StaticStructureSchema;
|
|
36
|
+
export declare var InterruptionEvent$: StaticStructureSchema;
|
|
37
|
+
export declare var InterruptionWebhookEvent$: StaticStructureSchema;
|
|
38
|
+
export declare var InterruptionWebsocketEvent$: StaticStructureSchema;
|
|
39
|
+
export declare var ListTracesInput$: StaticStructureSchema;
|
|
40
|
+
export declare var ListTracesOutput$: StaticStructureSchema;
|
|
41
|
+
export declare var ListVoiceBotsInput$: StaticStructureSchema;
|
|
42
|
+
export declare var ListVoiceBotsNamesInput$: StaticStructureSchema;
|
|
43
|
+
export declare var ListVoiceBotsNamesOutput$: StaticStructureSchema;
|
|
44
|
+
export declare var ListVoiceBotsOutput$: StaticStructureSchema;
|
|
45
|
+
export declare var PlaybackEvent$: StaticStructureSchema;
|
|
46
|
+
export declare var PlaybackWebhookEvent$: StaticStructureSchema;
|
|
47
|
+
export declare var PlaybackWebsocketEvent$: StaticStructureSchema;
|
|
48
|
+
export declare var PlayWebsocketCommand$: StaticStructureSchema;
|
|
49
|
+
export declare var PlayWebsocketCommandData$: StaticStructureSchema;
|
|
50
|
+
export declare var PubSubBroadcastItem$: StaticStructureSchema;
|
|
51
|
+
export declare var PubSubBroadcastWebsocketEvent$: StaticStructureSchema;
|
|
52
|
+
export declare var PubSubSubscribedWebsocketEvent$: StaticStructureSchema;
|
|
53
|
+
export declare var PubSubSubscribeWebsocketCommand$: StaticStructureSchema;
|
|
54
|
+
export declare var PubSubUnsubscribedWebsocketEvent$: StaticStructureSchema;
|
|
55
|
+
export declare var PubSubUnsubscribeWebsocketCommand$: StaticStructureSchema;
|
|
56
|
+
export declare var ReplyEvent$: StaticStructureSchema;
|
|
57
|
+
export declare var ReplyWebhookEvent$: StaticStructureSchema;
|
|
58
|
+
export declare var ReplyWebsocketEvent$: StaticStructureSchema;
|
|
59
|
+
export declare var SayCommandAudioOptions$: StaticStructureSchema;
|
|
60
|
+
export declare var SayWebsocketCommand$: StaticStructureSchema;
|
|
61
|
+
export declare var SayWebsocketCommandData$: StaticStructureSchema;
|
|
62
|
+
export declare var SendHangupInput$: StaticStructureSchema;
|
|
63
|
+
export declare var SendHangupOutput$: StaticStructureSchema;
|
|
64
|
+
export declare var SendPlayInput$: StaticStructureSchema;
|
|
65
|
+
export declare var SendPlayOutput$: StaticStructureSchema;
|
|
66
|
+
export declare var SendSayInput$: StaticStructureSchema;
|
|
67
|
+
export declare var SendSayOutput$: StaticStructureSchema;
|
|
68
|
+
export declare var SendStopInput$: StaticStructureSchema;
|
|
69
|
+
export declare var SendStopOutput$: StaticStructureSchema;
|
|
70
|
+
export declare var SendTransferInput$: StaticStructureSchema;
|
|
71
|
+
export declare var SendTransferOutput$: StaticStructureSchema;
|
|
72
|
+
export declare var SessionEndedEvent$: StaticStructureSchema;
|
|
73
|
+
export declare var SessionEndedWebhookEvent$: StaticStructureSchema;
|
|
74
|
+
export declare var SessionStartedEvent$: StaticStructureSchema;
|
|
75
|
+
export declare var SessionStartedWebhookEvent$: StaticStructureSchema;
|
|
76
|
+
export declare var StopWebsocketCommand$: StaticStructureSchema;
|
|
77
|
+
export declare var StopWebsocketCommandData$: StaticStructureSchema;
|
|
78
|
+
export declare var Trace$: StaticStructureSchema;
|
|
79
|
+
export declare var TraceActivity$: StaticStructureSchema;
|
|
80
|
+
export declare var TraceAnnotationCommand$: StaticStructureSchema;
|
|
81
|
+
export declare var TraceCapabilityKbCall$: StaticStructureSchema;
|
|
82
|
+
export declare var TraceCapabilityToolCall$: StaticStructureSchema;
|
|
83
|
+
export declare var TraceConnectEventTrigger$: StaticStructureSchema;
|
|
84
|
+
export declare var TraceDelegationToolCall$: StaticStructureSchema;
|
|
85
|
+
export declare var TraceDisconnectEventTrigger$: StaticStructureSchema;
|
|
86
|
+
export declare var TraceDurationTimeoutTaskTrigger$: StaticStructureSchema;
|
|
87
|
+
export declare var TraceErrorResult$: StaticStructureSchema;
|
|
88
|
+
export declare var TraceFunctionToolCall$: StaticStructureSchema;
|
|
89
|
+
export declare var TraceFunctionToolCallRequest$: StaticStructureSchema;
|
|
90
|
+
export declare var TraceGenerationUsage$: StaticStructureSchema;
|
|
91
|
+
export declare var TraceGenericInput$: StaticStructureSchema;
|
|
92
|
+
export declare var TraceGenericInputBlock$: StaticStructureSchema;
|
|
93
|
+
export declare var TraceHangupToolCall$: StaticStructureSchema;
|
|
94
|
+
export declare var TraceOAuthInput$: StaticStructureSchema;
|
|
95
|
+
export declare var TracePlaybackUsage$: StaticStructureSchema;
|
|
96
|
+
export declare var TraceSegment$: StaticStructureSchema;
|
|
97
|
+
export declare var TraceSegmentCompletionInput$: StaticStructureSchema;
|
|
98
|
+
export declare var TraceSegmentCompletionToolMessage$: StaticStructureSchema;
|
|
99
|
+
export declare var TraceSession$: StaticStructureSchema;
|
|
100
|
+
export declare var TraceSilenceTimeoutTaskTrigger$: StaticStructureSchema;
|
|
101
|
+
export declare var TraceTranscribeUsage$: StaticStructureSchema;
|
|
102
|
+
export declare var TraceTransferToolCall$: StaticStructureSchema;
|
|
103
|
+
export declare var TraceUsage$: StaticStructureSchema;
|
|
104
|
+
export declare var TraceWaitToolCall$: StaticStructureSchema;
|
|
105
|
+
export declare var TranscriptionEvent$: StaticStructureSchema;
|
|
106
|
+
export declare var TranscriptionWebhookEvent$: StaticStructureSchema;
|
|
107
|
+
export declare var TranscriptionWebsocketEvent$: StaticStructureSchema;
|
|
108
|
+
export declare var TransferWebsocketCommand$: StaticStructureSchema;
|
|
109
|
+
export declare var TransferWebsocketCommandData$: StaticStructureSchema;
|
|
110
|
+
export declare var UpdateVoiceBotInput$: StaticStructureSchema;
|
|
111
|
+
export declare var UpdateVoiceBotOutput$: StaticStructureSchema;
|
|
112
|
+
export declare var VoiceBot$: StaticStructureSchema;
|
|
113
|
+
export declare var VoiceBotCapabilityTool$: StaticStructureSchema;
|
|
114
|
+
export declare var VoiceBotCapabilityToolPipeline$: StaticStructureSchema;
|
|
115
|
+
export declare var VoiceBotEmbeddedTool$: StaticStructureSchema;
|
|
116
|
+
export declare var VoiceBotFunctionDefinition$: StaticStructureSchema;
|
|
117
|
+
export declare var VoiceBotFunctionIntegrationWebhook$: StaticStructureSchema;
|
|
118
|
+
export declare var VoiceBotFunctionIntegrationWebhookAuthorizationBasic$: StaticStructureSchema;
|
|
119
|
+
export declare var VoiceBotFunctionIntegrationWebhookAuthorizationBearer$: StaticStructureSchema;
|
|
120
|
+
export declare var VoiceBotFunctionIntegrationWebhookAuthorizationOAuth$: StaticStructureSchema;
|
|
121
|
+
export declare var VoiceBotFunctionIntegrationWebhookHeader$: StaticStructureSchema;
|
|
122
|
+
export declare var VoiceBotInfo$: StaticStructureSchema;
|
|
123
|
+
export declare var VoiceBotKnowledgeBase$: StaticStructureSchema;
|
|
124
|
+
export declare var VoiceBotLlmEndpoint$: StaticStructureSchema;
|
|
125
|
+
export declare var VoiceBotPipelineSettings$: StaticStructureSchema;
|
|
126
|
+
export declare var VoiceBotPromptMetadata$: StaticStructureSchema;
|
|
127
|
+
export declare var VoiceBotPromptMetadataDisabled$: StaticStructureSchema;
|
|
128
|
+
export declare var VoiceBotPromptMetadataEnabled$: StaticStructureSchema;
|
|
129
|
+
export declare var VoiceBotPromptMetadataTime$: StaticStructureSchema;
|
|
130
|
+
export declare var VoiceBotTerminateHangupAction$: StaticStructureSchema;
|
|
131
|
+
export declare var VoiceBotTerminateTransferAction$: StaticStructureSchema;
|
|
132
|
+
export declare var VoiceBotTool$: StaticStructureSchema;
|
|
133
|
+
export declare var VoiceBotToolCommentAnnotation$: StaticStructureSchema;
|
|
134
|
+
export declare var VoiceBotToolResultAnnotation$: StaticStructureSchema;
|
|
135
|
+
export declare var VoiceBotToolTagAnnotation$: StaticStructureSchema;
|
|
136
|
+
export declare var VoiceBotToolVariable$: StaticStructureSchema;
|
|
137
|
+
export declare var VoiceBotToolVariableAutoHandler$: StaticStructureSchema;
|
|
138
|
+
export declare var VoiceBotToolVariableGuidedHandler$: StaticStructureSchema;
|
|
139
|
+
export declare var VoiceBotToolVariablePredefinedHandler$: StaticStructureSchema;
|
|
140
|
+
export declare var VoiceBotToolVariablesAnnotation$: StaticStructureSchema;
|
|
141
|
+
export declare var VoiceBotVariable$: StaticStructureSchema;
|
|
142
|
+
export declare var BotDialogflowCxEndpoint$: StaticStructureSchema;
|
|
143
|
+
export declare var BotOpenAiAssistantEndpoint$: StaticStructureSchema;
|
|
144
|
+
export declare var BotSqsEndpoint$: StaticStructureSchema;
|
|
145
|
+
export declare var BotWebhookEndpoint$: StaticStructureSchema;
|
|
146
|
+
export declare var AnnotationPayload$: StaticUnionSchema;
|
|
147
|
+
export declare var TraceActivityResult$: StaticUnionSchema;
|
|
148
|
+
export declare var TraceActivityTrigger$: StaticUnionSchema;
|
|
149
|
+
export declare var TraceGenericInputBlockContent$: StaticUnionSchema;
|
|
150
|
+
export declare var TraceSegmentCompletionMessage$: StaticUnionSchema;
|
|
151
|
+
export declare var TraceSegmentCompletionMessageItem$: StaticUnionSchema;
|
|
152
|
+
export declare var TraceSegmentInput$: StaticUnionSchema;
|
|
153
|
+
export declare var TraceSegmentResult$: StaticUnionSchema;
|
|
154
|
+
export declare var TraceToolCall$: StaticUnionSchema;
|
|
155
|
+
export declare var VoiceBotCapability$: StaticUnionSchema;
|
|
156
|
+
export declare var VoiceBotEndpoint$: StaticUnionSchema;
|
|
157
|
+
export declare var VoiceBotFunctionIntegration$: StaticUnionSchema;
|
|
158
|
+
export declare var VoiceBotFunctionIntegrationWebhookAuthorization$: StaticUnionSchema;
|
|
159
|
+
export declare var VoiceBotPipelineTerminateAction$: StaticUnionSchema;
|
|
160
|
+
export declare var VoiceBotToolAnnotation$: StaticUnionSchema;
|
|
161
|
+
export declare var VoiceBotToolVariableHandler$: StaticUnionSchema;
|
|
162
|
+
export declare var CreateVoiceBot$: StaticOperationSchema;
|
|
163
|
+
export declare var DeleteVoiceBot$: StaticOperationSchema;
|
|
164
|
+
export declare var DescribeEvent$: StaticOperationSchema;
|
|
165
|
+
export declare var GetTrace$: StaticOperationSchema;
|
|
166
|
+
export declare var GetVoiceBot$: StaticOperationSchema;
|
|
167
|
+
export declare var ListTraces$: StaticOperationSchema;
|
|
168
|
+
export declare var ListVoiceBots$: StaticOperationSchema;
|
|
169
|
+
export declare var ListVoiceBotsNames$: StaticOperationSchema;
|
|
170
|
+
export declare var SendHangup$: StaticOperationSchema;
|
|
171
|
+
export declare var SendPlay$: StaticOperationSchema;
|
|
172
|
+
export declare var SendSay$: StaticOperationSchema;
|
|
173
|
+
export declare var SendStop$: StaticOperationSchema;
|
|
174
|
+
export declare var SendTransfer$: StaticOperationSchema;
|
|
175
|
+
export declare var UpdateVoiceBot$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wim-voicebots-client",
|
|
3
3
|
"description": "@wildix/wim-voicebots-client client",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.1.10",
|
|
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