videomail-client 11.5.5 → 12.0.0
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 +5 -3
- package/dist/esm/client.d.ts +1 -1
- package/dist/esm/index.d.ts +3 -2
- package/dist/esm/index.js +2 -3
- package/dist/umd/index.js +3 -3
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -10496,7 +10496,8 @@ var __webpack_exports__ = {};
|
|
|
10496
10496
|
"use strict";
|
|
10497
10497
|
__webpack_require__.r(__webpack_exports__);
|
|
10498
10498
|
__webpack_require__.d(__webpack_exports__, {
|
|
10499
|
-
VideomailClient: ()=>
|
|
10499
|
+
VideomailClient: ()=>VideomailClient,
|
|
10500
|
+
VideoType: ()=>VideoType
|
|
10500
10501
|
});
|
|
10501
10502
|
const constants = {
|
|
10502
10503
|
SITE_NAME_LABEL: "x-videomail-site-name",
|
|
@@ -10659,7 +10660,7 @@ var __webpack_exports__ = {};
|
|
|
10659
10660
|
var client = __webpack_require__("./node_modules/superagent/lib/client.js");
|
|
10660
10661
|
var client_default = /*#__PURE__*/ __webpack_require__.n(client);
|
|
10661
10662
|
var package_namespaceObject = {
|
|
10662
|
-
rE: "
|
|
10663
|
+
rE: "12.0.0"
|
|
10663
10664
|
};
|
|
10664
10665
|
var defined = __webpack_require__("./node_modules/defined/index.js");
|
|
10665
10666
|
var defined_default = /*#__PURE__*/ __webpack_require__.n(defined);
|
|
@@ -18882,10 +18883,11 @@ var __webpack_exports__ = {};
|
|
|
18882
18883
|
}
|
|
18883
18884
|
client_define_property(VideomailClient, "ENC_TYPE_APP_JSON", constants["public"].ENC_TYPE_APP_JSON);
|
|
18884
18885
|
client_define_property(VideomailClient, "ENC_TYPE_FORM", constants["public"].ENC_TYPE_FORM);
|
|
18885
|
-
const src_client = VideomailClient;
|
|
18886
18886
|
})();
|
|
18887
|
+
exports.VideoType = __webpack_exports__.VideoType;
|
|
18887
18888
|
exports.VideomailClient = __webpack_exports__.VideomailClient;
|
|
18888
18889
|
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
18890
|
+
"VideoType",
|
|
18889
18891
|
"VideomailClient"
|
|
18890
18892
|
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
18891
18893
|
Object.defineProperty(exports, '__esModule', {
|
package/dist/esm/client.d.ts
CHANGED
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import VideomailClient from "./client";
|
|
2
1
|
export type { Command } from "./types/command";
|
|
3
2
|
export type { VideomailCommandArgs } from "./types/command";
|
|
4
3
|
export type { DeliveryRecord } from "./types/Delivery";
|
|
@@ -7,5 +6,7 @@ export type { FullVideomailErrorData, VideomailErrorData } from "./types/error";
|
|
|
7
6
|
export type { VideomailEvents, VideomailPreviewParams } from "./types/events";
|
|
8
7
|
export type { VideomailClientOptions } from "./types/options";
|
|
9
8
|
export type RecordingStats = "./types/RecordingStats";
|
|
9
|
+
export { VideomailClient } from "./client";
|
|
10
10
|
export type { PartialVideomail, Videomail } from "./types/Videomail";
|
|
11
|
-
export {
|
|
11
|
+
export type { VideoTypeType } from "./types/VideoType";
|
|
12
|
+
export { VideoType } from "./types/VideoType";
|
package/dist/esm/index.js
CHANGED
|
@@ -3602,7 +3602,7 @@ const constants = {
|
|
|
3602
3602
|
}
|
|
3603
3603
|
};
|
|
3604
3604
|
var package_namespaceObject = {
|
|
3605
|
-
rE: "
|
|
3605
|
+
rE: "12.0.0"
|
|
3606
3606
|
};
|
|
3607
3607
|
const VideoType = {
|
|
3608
3608
|
WebM: "webm",
|
|
@@ -8214,5 +8214,4 @@ class VideomailClient extends util_Despot {
|
|
|
8214
8214
|
if (this.options.logger.getLines) return this.options.logger.getLines();
|
|
8215
8215
|
}
|
|
8216
8216
|
}
|
|
8217
|
-
|
|
8218
|
-
export { client as VideomailClient };
|
|
8217
|
+
export { VideoType, VideomailClient };
|
package/dist/umd/index.js
CHANGED
|
@@ -10502,7 +10502,8 @@
|
|
|
10502
10502
|
"use strict";
|
|
10503
10503
|
__webpack_require__.r(__webpack_exports__);
|
|
10504
10504
|
__webpack_require__.d(__webpack_exports__, {
|
|
10505
|
-
VideomailClient: ()=>
|
|
10505
|
+
VideomailClient: ()=>VideomailClient,
|
|
10506
|
+
VideoType: ()=>VideoType
|
|
10506
10507
|
});
|
|
10507
10508
|
const constants = {
|
|
10508
10509
|
SITE_NAME_LABEL: "x-videomail-site-name",
|
|
@@ -10665,7 +10666,7 @@
|
|
|
10665
10666
|
var client = __webpack_require__("./node_modules/superagent/lib/client.js");
|
|
10666
10667
|
var client_default = /*#__PURE__*/ __webpack_require__.n(client);
|
|
10667
10668
|
var package_namespaceObject = {
|
|
10668
|
-
rE: "
|
|
10669
|
+
rE: "12.0.0"
|
|
10669
10670
|
};
|
|
10670
10671
|
var defined = __webpack_require__("./node_modules/defined/index.js");
|
|
10671
10672
|
var defined_default = /*#__PURE__*/ __webpack_require__.n(defined);
|
|
@@ -18628,7 +18629,6 @@
|
|
|
18628
18629
|
if (this.options.logger.getLines) return this.options.logger.getLines();
|
|
18629
18630
|
}
|
|
18630
18631
|
}
|
|
18631
|
-
const src_client = VideomailClient;
|
|
18632
18632
|
})();
|
|
18633
18633
|
return __webpack_exports__;
|
|
18634
18634
|
})());
|