videomail-client 11.0.8 → 11.1.1
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/index.cjs +434 -450
- package/dist/esm/client.d.ts +1 -1
- package/dist/esm/index.d.ts +10 -17
- package/dist/esm/index.js +301 -313
- package/dist/esm/resource.d.ts +1 -1
- package/dist/esm/types/Videomail.d.ts +2 -2
- package/dist/esm/types/events/index.d.ts +1 -1
- package/dist/esm/wrappers/container.d.ts +1 -1
- package/dist/esm/wrappers/form.d.ts +1 -1
- package/dist/esm/wrappers/visuals/replay.d.ts +1 -1
- package/dist/umd/index.js +172 -186
- package/package.json +16 -16
package/dist/esm/client.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PartialVideomailClientOptions } from "./types/options";
|
|
2
|
-
import Videomail from "./types/Videomail";
|
|
2
|
+
import type { Videomail } from "./types/Videomail";
|
|
3
3
|
import Despot from "./util/Despot";
|
|
4
4
|
export interface StartOverParams {
|
|
5
5
|
keepHidden?: boolean | undefined;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
import VideomailClient from "./client";
|
|
2
|
-
import { Command, CommandArgs } from "./types/command";
|
|
3
|
-
import DeliveryRecord from "./types/DeliveryRecord";
|
|
4
|
-
import { EmailAddress, EmailAddresses } from "./types/EmailAddress";
|
|
5
|
-
import { FullVideomailErrorData, VideomailErrorData } from "./types/error";
|
|
6
|
-
import VideomailEvents from "./types/events";
|
|
7
|
-
import { VideomailClientOptions } from "./types/options";
|
|
8
|
-
import RecordingStats from "./types/RecordingStats";
|
|
9
|
-
import
|
|
2
|
+
import type { Command, CommandArgs } from "./types/command";
|
|
3
|
+
import type DeliveryRecord from "./types/DeliveryRecord";
|
|
4
|
+
import type { EmailAddress, EmailAddresses } from "./types/EmailAddress";
|
|
5
|
+
import type { FullVideomailErrorData, VideomailErrorData } from "./types/error";
|
|
6
|
+
import type VideomailEvents from "./types/events";
|
|
7
|
+
import type { VideomailClientOptions } from "./types/options";
|
|
8
|
+
import type RecordingStats from "./types/RecordingStats";
|
|
9
|
+
import type { PartialVideomail, Videomail } from "./types/Videomail";
|
|
10
10
|
import { VideoType } from "./types/VideoType";
|
|
11
|
-
export type { Videomail };
|
|
12
|
-
export
|
|
13
|
-
export type { RecordingStats };
|
|
14
|
-
export type { VideomailClientOptions };
|
|
15
|
-
export { VideomailClient, VideoType };
|
|
16
|
-
export type { FullVideomailErrorData, PartialVideomail, VideomailErrorData };
|
|
17
|
-
export type { Command, CommandArgs };
|
|
18
|
-
export type { DeliveryRecord };
|
|
19
|
-
export type { EmailAddress, EmailAddresses };
|
|
11
|
+
export type { Command, CommandArgs, DeliveryRecord, EmailAddress, EmailAddresses, FullVideomailErrorData, PartialVideomail, RecordingStats, Videomail, VideomailClientOptions, VideomailErrorData, VideomailEvents, VideoType, };
|
|
12
|
+
export { VideomailClient };
|