videomail-client 13.8.18 → 13.8.20

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.
@@ -1554,8 +1554,8 @@ var __webpack_modules__ = {
1554
1554
  var applyBind = __webpack_require__("./node_modules/call-bind-apply-helpers/applyBind.js");
1555
1555
  module.exports = function(originalFunction) {
1556
1556
  var func = callBindBasic(arguments);
1557
- var adjustedLength = originalFunction.length - (arguments.length - 1);
1558
- return setFunctionLength(func, 1 + (adjustedLength > 0 ? adjustedLength : 0), true);
1557
+ var adjustedLength = 1 + originalFunction.length - (arguments.length - 1);
1558
+ return setFunctionLength(func, adjustedLength > 0 ? adjustedLength : 0, true);
1559
1559
  };
1560
1560
  if ($defineProperty) $defineProperty(module.exports, 'apply', {
1561
1561
  value: applyBind
@@ -6023,8 +6023,8 @@ var __webpack_modules__ = {
6023
6023
  var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, '') : str;
6024
6024
  cleanStr = cleanStr.replace(/%5B/gi, '[').replace(/%5D/gi, ']');
6025
6025
  var limit = options.parameterLimit === 1 / 0 ? void 0 : options.parameterLimit;
6026
- var parts = cleanStr.split(options.delimiter, options.throwOnLimitExceeded ? limit + 1 : limit);
6027
- if (options.throwOnLimitExceeded && parts.length > limit) throw new RangeError('Parameter limit exceeded. Only ' + limit + ' parameter' + (1 === limit ? '' : 's') + ' allowed.');
6026
+ var parts = cleanStr.split(options.delimiter, options.throwOnLimitExceeded && void 0 !== limit ? limit + 1 : limit);
6027
+ if (options.throwOnLimitExceeded && void 0 !== limit && parts.length > limit) throw new RangeError('Parameter limit exceeded. Only ' + limit + ' parameter' + (1 === limit ? '' : 's') + ' allowed.');
6028
6028
  var skipIndex = -1;
6029
6029
  var i;
6030
6030
  var charset = options.charset;
@@ -6757,9 +6757,8 @@ var __webpack_modules__ = {
6757
6757
  if (!channel.has(key)) throw new $TypeError('Side channel does not contain ' + inspect(key));
6758
6758
  },
6759
6759
  delete: function(key) {
6760
- var root = $o && $o.next;
6761
6760
  var deletedNode = listDelete($o, key);
6762
- if (deletedNode && root && root === deletedNode) $o = void 0;
6761
+ if (deletedNode && $o && !$o.next) $o = void 0;
6763
6762
  return !!deletedNode;
6764
6763
  },
6765
6764
  get: function(key) {
@@ -10853,7 +10852,7 @@ var __webpack_exports__ = {};
10853
10852
  var client = __webpack_require__("./node_modules/superagent/lib/client.js");
10854
10853
  var client_default = /*#__PURE__*/ __webpack_require__.n(client);
10855
10854
  var package_namespaceObject = {
10856
- rE: "13.8.18"
10855
+ rE: "13.8.20"
10857
10856
  };
10858
10857
  function isAudioEnabled(options) {
10859
10858
  return Boolean(options.audio.enabled);
@@ -19380,17 +19379,13 @@ var __webpack_exports__ = {};
19380
19379
  key: "applause",
19381
19380
  label: "Applause"
19382
19381
  },
19383
- FOLDED_HANDS: {
19384
- key: "foldedHands",
19385
- label: "Pray / Beg"
19386
- },
19387
19382
  GRINNING_SWEAT: {
19388
19383
  key: "grinningSweat",
19389
- label: "Smile / Grinning Sweat"
19384
+ label: "Whew!"
19390
19385
  },
19391
- ANGER: {
19392
- key: "anger",
19393
- label: "Angry"
19386
+ FIRE: {
19387
+ key: "fire",
19388
+ label: "Fire"
19394
19389
  }
19395
19390
  };
19396
19391
  })();
package/dist/esm/index.js CHANGED
@@ -1422,8 +1422,8 @@ __webpack_require__.add({
1422
1422
  var applyBind = __webpack_require__("./node_modules/call-bind-apply-helpers/applyBind.js");
1423
1423
  module.exports = function(originalFunction) {
1424
1424
  var func = callBindBasic(arguments);
1425
- var adjustedLength = originalFunction.length - (arguments.length - 1);
1426
- return setFunctionLength(func, 1 + (adjustedLength > 0 ? adjustedLength : 0), true);
1425
+ var adjustedLength = 1 + originalFunction.length - (arguments.length - 1);
1426
+ return setFunctionLength(func, adjustedLength > 0 ? adjustedLength : 0, true);
1427
1427
  };
1428
1428
  if ($defineProperty) $defineProperty(module.exports, 'apply', {
1429
1429
  value: applyBind
@@ -3613,7 +3613,7 @@ const constants = {
3613
3613
  }
3614
3614
  };
3615
3615
  var package_namespaceObject = {
3616
- rE: "13.8.18"
3616
+ rE: "13.8.20"
3617
3617
  };
3618
3618
  function isAudioEnabled(options) {
3619
3619
  return Boolean(options.audio.enabled);
@@ -8485,17 +8485,13 @@ const Reactions = {
8485
8485
  key: "applause",
8486
8486
  label: "Applause"
8487
8487
  },
8488
- FOLDED_HANDS: {
8489
- key: "foldedHands",
8490
- label: "Pray / Beg"
8491
- },
8492
8488
  GRINNING_SWEAT: {
8493
8489
  key: "grinningSweat",
8494
- label: "Smile / Grinning Sweat"
8490
+ label: "Whew!"
8495
8491
  },
8496
- ANGER: {
8497
- key: "anger",
8498
- label: "Angry"
8492
+ FIRE: {
8493
+ key: "fire",
8494
+ label: "Fire"
8499
8495
  }
8500
8496
  };
8501
8497
  export { Reactions, VideoType, VideomailClient };
@@ -7,17 +7,13 @@ export declare const Reactions: {
7
7
  readonly key: "applause";
8
8
  readonly label: "Applause";
9
9
  };
10
- readonly FOLDED_HANDS: {
11
- readonly key: "foldedHands";
12
- readonly label: "Pray / Beg";
13
- };
14
10
  readonly GRINNING_SWEAT: {
15
11
  readonly key: "grinningSweat";
16
- readonly label: "Smile / Grinning Sweat";
12
+ readonly label: "Whew!";
17
13
  };
18
- readonly ANGER: {
19
- readonly key: "anger";
20
- readonly label: "Angry";
14
+ readonly FIRE: {
15
+ readonly key: "fire";
16
+ readonly label: "Fire";
21
17
  };
22
18
  };
23
19
  export type ReactionType = (typeof Reactions)[keyof typeof Reactions];
@@ -109,9 +109,8 @@ declare class Form extends Despot {
109
109
  reactions?: {
110
110
  love?: readonly string[];
111
111
  applause?: readonly string[];
112
- foldedHands?: readonly string[];
113
112
  grinningSweat?: readonly string[];
114
- anger?: readonly string[];
113
+ fire?: readonly string[];
115
114
  } | undefined;
116
115
  reactionsPretty?: {
117
116
  love?: {
@@ -126,19 +125,13 @@ declare class Form extends Despot {
126
125
  maskedEmailAddress?: string | undefined | undefined;
127
126
  } | undefined;
128
127
  };
129
- foldedHands?: {
130
- [x: string]: {
131
- nickName?: string | undefined | undefined;
132
- maskedEmailAddress?: string | undefined | undefined;
133
- } | undefined;
134
- };
135
128
  grinningSweat?: {
136
129
  [x: string]: {
137
130
  nickName?: string | undefined | undefined;
138
131
  maskedEmailAddress?: string | undefined | undefined;
139
132
  } | undefined;
140
133
  };
141
- anger?: {
134
+ fire?: {
142
135
  [x: string]: {
143
136
  nickName?: string | undefined | undefined;
144
137
  maskedEmailAddress?: string | undefined | undefined;
@@ -291,9 +284,8 @@ declare class Form extends Despot {
291
284
  reactions?: {
292
285
  love?: readonly string[];
293
286
  applause?: readonly string[];
294
- foldedHands?: readonly string[];
295
287
  grinningSweat?: readonly string[];
296
- anger?: readonly string[];
288
+ fire?: readonly string[];
297
289
  } | undefined;
298
290
  reactionsPretty?: {
299
291
  love?: {
@@ -308,19 +300,13 @@ declare class Form extends Despot {
308
300
  maskedEmailAddress?: string | undefined | undefined;
309
301
  } | undefined;
310
302
  };
311
- foldedHands?: {
312
- [x: string]: {
313
- nickName?: string | undefined | undefined;
314
- maskedEmailAddress?: string | undefined | undefined;
315
- } | undefined;
316
- };
317
303
  grinningSweat?: {
318
304
  [x: string]: {
319
305
  nickName?: string | undefined | undefined;
320
306
  maskedEmailAddress?: string | undefined | undefined;
321
307
  } | undefined;
322
308
  };
323
- anger?: {
309
+ fire?: {
324
310
  [x: string]: {
325
311
  nickName?: string | undefined | undefined;
326
312
  maskedEmailAddress?: string | undefined | undefined;
package/dist/umd/index.js CHANGED
@@ -1560,8 +1560,8 @@
1560
1560
  var applyBind = __webpack_require__("./node_modules/call-bind-apply-helpers/applyBind.js");
1561
1561
  module1.exports = function(originalFunction) {
1562
1562
  var func = callBindBasic(arguments);
1563
- var adjustedLength = originalFunction.length - (arguments.length - 1);
1564
- return setFunctionLength(func, 1 + (adjustedLength > 0 ? adjustedLength : 0), true);
1563
+ var adjustedLength = 1 + originalFunction.length - (arguments.length - 1);
1564
+ return setFunctionLength(func, adjustedLength > 0 ? adjustedLength : 0, true);
1565
1565
  };
1566
1566
  if ($defineProperty) $defineProperty(module1.exports, 'apply', {
1567
1567
  value: applyBind
@@ -6029,8 +6029,8 @@
6029
6029
  var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, '') : str;
6030
6030
  cleanStr = cleanStr.replace(/%5B/gi, '[').replace(/%5D/gi, ']');
6031
6031
  var limit = options.parameterLimit === 1 / 0 ? void 0 : options.parameterLimit;
6032
- var parts = cleanStr.split(options.delimiter, options.throwOnLimitExceeded ? limit + 1 : limit);
6033
- if (options.throwOnLimitExceeded && parts.length > limit) throw new RangeError('Parameter limit exceeded. Only ' + limit + ' parameter' + (1 === limit ? '' : 's') + ' allowed.');
6032
+ var parts = cleanStr.split(options.delimiter, options.throwOnLimitExceeded && void 0 !== limit ? limit + 1 : limit);
6033
+ if (options.throwOnLimitExceeded && void 0 !== limit && parts.length > limit) throw new RangeError('Parameter limit exceeded. Only ' + limit + ' parameter' + (1 === limit ? '' : 's') + ' allowed.');
6034
6034
  var skipIndex = -1;
6035
6035
  var i;
6036
6036
  var charset = options.charset;
@@ -6763,9 +6763,8 @@
6763
6763
  if (!channel.has(key)) throw new $TypeError('Side channel does not contain ' + inspect(key));
6764
6764
  },
6765
6765
  delete: function(key) {
6766
- var root = $o && $o.next;
6767
6766
  var deletedNode = listDelete($o, key);
6768
- if (deletedNode && root && root === deletedNode) $o = void 0;
6767
+ if (deletedNode && $o && !$o.next) $o = void 0;
6769
6768
  return !!deletedNode;
6770
6769
  },
6771
6770
  get: function(key) {
@@ -10859,7 +10858,7 @@
10859
10858
  var client = __webpack_require__("./node_modules/superagent/lib/client.js");
10860
10859
  var client_default = /*#__PURE__*/ __webpack_require__.n(client);
10861
10860
  var package_namespaceObject = {
10862
- rE: "13.8.18"
10861
+ rE: "13.8.20"
10863
10862
  };
10864
10863
  function isAudioEnabled(options) {
10865
10864
  return Boolean(options.audio.enabled);
@@ -19009,17 +19008,13 @@
19009
19008
  key: "applause",
19010
19009
  label: "Applause"
19011
19010
  },
19012
- FOLDED_HANDS: {
19013
- key: "foldedHands",
19014
- label: "Pray / Beg"
19015
- },
19016
19011
  GRINNING_SWEAT: {
19017
19012
  key: "grinningSweat",
19018
- label: "Smile / Grinning Sweat"
19013
+ label: "Whew!"
19019
19014
  },
19020
- ANGER: {
19021
- key: "anger",
19022
- label: "Angry"
19015
+ FIRE: {
19016
+ key: "fire",
19017
+ label: "Fire"
19023
19018
  }
19024
19019
  };
19025
19020
  })();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "videomail-client",
3
- "version": "13.8.18",
3
+ "version": "13.8.20",
4
4
  "description": "A wicked npm package to record videos directly in the browser, wohooo!",
5
5
  "keywords": [
6
6
  "webcam",
@@ -80,7 +80,7 @@
80
80
  "@eslint/js": "9.39.2",
81
81
  "@rsbuild/plugin-node-polyfill": "1.4.4",
82
82
  "@rsbuild/plugin-stylus": "1.3.1",
83
- "@rsdoctor/rspack-plugin": "1.5.8",
83
+ "@rsdoctor/rspack-plugin": "1.5.9",
84
84
  "@rslib/core": "0.21.2",
85
85
  "@storybook/addon-a11y": "10.3.5",
86
86
  "@storybook/addon-docs": "10.3.5",
@@ -109,7 +109,7 @@
109
109
  "eslint-plugin-simple-import-sort": "13.0.0",
110
110
  "globals": "17.5.0",
111
111
  "jsdom": "29.0.2",
112
- "msw": "2.13.3",
112
+ "msw": "2.13.4",
113
113
  "msw-storybook-addon": "2.0.7",
114
114
  "prettier": "3.8.3",
115
115
  "prettier-plugin-curly": "0.4.1",
@@ -119,7 +119,7 @@
119
119
  "release-it": "20.0.0",
120
120
  "storybook": "10.3.5",
121
121
  "storybook-html-rsbuild": "3.3.3",
122
- "type-fest": "5.5.0",
122
+ "type-fest": "5.6.0",
123
123
  "typescript": "5.9.3",
124
124
  "typescript-eslint": "8.58.2",
125
125
  "vitest": "4.1.4"