@wildix/wda-insights-client 1.1.36 → 1.1.38
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-types/commands/ListConversationsCommand.d.ts +6 -0
- package/dist-types/commands/ListPlaylistItemsCommand.d.ts +6 -0
- package/dist-types/commands/ListWatchHistoryCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +8 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -1
- package/dist-types/runtimeConfig.d.ts +6 -1
- package/dist-types/runtimeConfig.native.d.ts +6 -1
- package/package.json +1 -1
|
@@ -379,6 +379,12 @@ declare const ListConversationsCommand_base: {
|
|
|
379
379
|
* // },
|
|
380
380
|
* // },
|
|
381
381
|
* // ],
|
|
382
|
+
* // notifications: { // CallFlowNotifications
|
|
383
|
+
* // destinations: "<CallFlowAttachmentDestinationList>",
|
|
384
|
+
* // type: [ // NotificationsType
|
|
385
|
+
* // "STRING_VALUE",
|
|
386
|
+
* // ],
|
|
387
|
+
* // },
|
|
382
388
|
* // id: "STRING_VALUE", // required
|
|
383
389
|
* // pbx: "STRING_VALUE", // required
|
|
384
390
|
* // time: Number("long"), // required
|
|
@@ -205,6 +205,12 @@ declare const ListPlaylistItemsCommand_base: {
|
|
|
205
205
|
* // },
|
|
206
206
|
* // },
|
|
207
207
|
* // ],
|
|
208
|
+
* // notifications: { // CallFlowNotifications
|
|
209
|
+
* // destinations: "<CallFlowAttachmentDestinationList>",
|
|
210
|
+
* // type: [ // NotificationsType
|
|
211
|
+
* // "STRING_VALUE",
|
|
212
|
+
* // ],
|
|
213
|
+
* // },
|
|
208
214
|
* // id: "STRING_VALUE", // required
|
|
209
215
|
* // pbx: "STRING_VALUE", // required
|
|
210
216
|
* // time: Number("long"), // required
|
|
@@ -203,6 +203,12 @@ declare const ListWatchHistoryCommand_base: {
|
|
|
203
203
|
* // },
|
|
204
204
|
* // },
|
|
205
205
|
* // ],
|
|
206
|
+
* // notifications: { // CallFlowNotifications
|
|
207
|
+
* // destinations: "<CallFlowAttachmentDestinationList>",
|
|
208
|
+
* // type: [ // NotificationsType
|
|
209
|
+
* // "STRING_VALUE",
|
|
210
|
+
* // ],
|
|
211
|
+
* // },
|
|
206
212
|
* // id: "STRING_VALUE", // required
|
|
207
213
|
* // pbx: "STRING_VALUE", // required
|
|
208
214
|
* // time: Number("long"), // required
|
|
@@ -343,6 +343,13 @@ export declare const License: {
|
|
|
343
343
|
* @public
|
|
344
344
|
*/
|
|
345
345
|
export type License = typeof License[keyof typeof License];
|
|
346
|
+
/**
|
|
347
|
+
* @public
|
|
348
|
+
*/
|
|
349
|
+
export interface CallFlowNotifications {
|
|
350
|
+
destinations?: (CallFlowAttachmentDestination)[] | undefined;
|
|
351
|
+
type?: (string)[] | undefined;
|
|
352
|
+
}
|
|
346
353
|
/**
|
|
347
354
|
* @public
|
|
348
355
|
* @enum
|
|
@@ -476,6 +483,7 @@ export interface CallRecord {
|
|
|
476
483
|
*/
|
|
477
484
|
attachmentDestinations?: (CallFlowAttachmentDestination)[] | undefined;
|
|
478
485
|
attachments?: (CallFlowAttachment)[] | undefined;
|
|
486
|
+
notifications?: CallFlowNotifications | undefined;
|
|
479
487
|
id: string;
|
|
480
488
|
pbx: string;
|
|
481
489
|
time: number;
|
|
@@ -15,8 +15,13 @@ export declare const getRuntimeConfig: (config: WdaInsightsClientConfig) => {
|
|
|
15
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
16
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
17
17
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
18
|
-
apiVersion: string;
|
|
19
18
|
cacheMiddleware?: boolean | undefined;
|
|
19
|
+
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
20
|
+
protocolSettings?: {
|
|
21
|
+
[setting: string]: unknown;
|
|
22
|
+
defaultNamespace?: string | undefined;
|
|
23
|
+
} | undefined;
|
|
24
|
+
apiVersion: string;
|
|
20
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
22
27
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -16,8 +16,13 @@ export declare const getRuntimeConfig: (config: WdaInsightsClientConfig) => {
|
|
|
16
16
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
17
17
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
18
18
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
19
|
-
apiVersion: string;
|
|
20
19
|
cacheMiddleware?: boolean | undefined;
|
|
20
|
+
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
21
|
+
protocolSettings?: {
|
|
22
|
+
[setting: string]: unknown;
|
|
23
|
+
defaultNamespace?: string | undefined;
|
|
24
|
+
} | undefined;
|
|
25
|
+
apiVersion: string;
|
|
21
26
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
27
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
28
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -8,8 +8,13 @@ export declare const getRuntimeConfig: (config: WdaInsightsClientConfig) => {
|
|
|
8
8
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
9
9
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
10
10
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
-
apiVersion: string;
|
|
12
11
|
cacheMiddleware?: boolean | undefined;
|
|
12
|
+
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
13
|
+
protocolSettings?: {
|
|
14
|
+
[setting: string]: unknown;
|
|
15
|
+
defaultNamespace?: string | undefined;
|
|
16
|
+
} | undefined;
|
|
17
|
+
apiVersion: string;
|
|
13
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
19
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
20
|
streamCollector: import("@smithy/types").StreamCollector;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-insights-client",
|
|
3
3
|
"description": "@wildix/wda-insights-client client",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.38",
|
|
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",
|