genesys-cloud-webrtc-sdk 9.2.2-release.1 → 9.2.2-release.3
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/deploy-info.json +2 -2
- package/dist/es/index.bundle.js +248 -233
- package/package.json +1 -1
package/dist/deploy-info.json
CHANGED
package/dist/es/index.bundle.js
CHANGED
|
@@ -2622,7 +2622,7 @@ var INSPECT_MAX_BYTES = 50;
|
|
|
2622
2622
|
* We detect these buggy browsers and set `Buffer.TYPED_ARRAY_SUPPORT` to `false` so they
|
|
2623
2623
|
* get the Object implementation, which is slower but behaves correctly.
|
|
2624
2624
|
*/
|
|
2625
|
-
Buffer
|
|
2625
|
+
Buffer.TYPED_ARRAY_SUPPORT = global$1.TYPED_ARRAY_SUPPORT !== undefined
|
|
2626
2626
|
? global$1.TYPED_ARRAY_SUPPORT
|
|
2627
2627
|
: true;
|
|
2628
2628
|
|
|
@@ -2632,7 +2632,7 @@ Buffer$1.TYPED_ARRAY_SUPPORT = global$1.TYPED_ARRAY_SUPPORT !== undefined
|
|
|
2632
2632
|
kMaxLength();
|
|
2633
2633
|
|
|
2634
2634
|
function kMaxLength () {
|
|
2635
|
-
return Buffer
|
|
2635
|
+
return Buffer.TYPED_ARRAY_SUPPORT
|
|
2636
2636
|
? 0x7fffffff
|
|
2637
2637
|
: 0x3fffffff
|
|
2638
2638
|
}
|
|
@@ -2641,14 +2641,14 @@ function createBuffer (that, length) {
|
|
|
2641
2641
|
if (kMaxLength() < length) {
|
|
2642
2642
|
throw new RangeError('Invalid typed array length')
|
|
2643
2643
|
}
|
|
2644
|
-
if (Buffer
|
|
2644
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
2645
2645
|
// Return an augmented `Uint8Array` instance, for best performance
|
|
2646
2646
|
that = new Uint8Array(length);
|
|
2647
|
-
that.__proto__ = Buffer
|
|
2647
|
+
that.__proto__ = Buffer.prototype;
|
|
2648
2648
|
} else {
|
|
2649
2649
|
// Fallback: Return an object instance of the Buffer class
|
|
2650
2650
|
if (that === null) {
|
|
2651
|
-
that = new Buffer
|
|
2651
|
+
that = new Buffer(length);
|
|
2652
2652
|
}
|
|
2653
2653
|
that.length = length;
|
|
2654
2654
|
}
|
|
@@ -2666,9 +2666,9 @@ function createBuffer (that, length) {
|
|
|
2666
2666
|
* The `Uint8Array` prototype remains unmodified.
|
|
2667
2667
|
*/
|
|
2668
2668
|
|
|
2669
|
-
function Buffer
|
|
2670
|
-
if (!Buffer
|
|
2671
|
-
return new Buffer
|
|
2669
|
+
function Buffer (arg, encodingOrOffset, length) {
|
|
2670
|
+
if (!Buffer.TYPED_ARRAY_SUPPORT && !(this instanceof Buffer)) {
|
|
2671
|
+
return new Buffer(arg, encodingOrOffset, length)
|
|
2672
2672
|
}
|
|
2673
2673
|
|
|
2674
2674
|
// Common case.
|
|
@@ -2683,11 +2683,11 @@ function Buffer$1 (arg, encodingOrOffset, length) {
|
|
|
2683
2683
|
return from(this, arg, encodingOrOffset, length)
|
|
2684
2684
|
}
|
|
2685
2685
|
|
|
2686
|
-
Buffer
|
|
2686
|
+
Buffer.poolSize = 8192; // not used by this implementation
|
|
2687
2687
|
|
|
2688
2688
|
// TODO: Legacy, not needed anymore. Remove in next major version.
|
|
2689
|
-
Buffer
|
|
2690
|
-
arr.__proto__ = Buffer
|
|
2689
|
+
Buffer._augment = function (arr) {
|
|
2690
|
+
arr.__proto__ = Buffer.prototype;
|
|
2691
2691
|
return arr
|
|
2692
2692
|
};
|
|
2693
2693
|
|
|
@@ -2715,15 +2715,15 @@ function from (that, value, encodingOrOffset, length) {
|
|
|
2715
2715
|
* Buffer.from(buffer)
|
|
2716
2716
|
* Buffer.from(arrayBuffer[, byteOffset[, length]])
|
|
2717
2717
|
**/
|
|
2718
|
-
Buffer
|
|
2718
|
+
Buffer.from = function (value, encodingOrOffset, length) {
|
|
2719
2719
|
return from(null, value, encodingOrOffset, length)
|
|
2720
2720
|
};
|
|
2721
2721
|
|
|
2722
|
-
if (Buffer
|
|
2723
|
-
Buffer
|
|
2724
|
-
Buffer
|
|
2722
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
2723
|
+
Buffer.prototype.__proto__ = Uint8Array.prototype;
|
|
2724
|
+
Buffer.__proto__ = Uint8Array;
|
|
2725
2725
|
if (typeof Symbol !== 'undefined' && Symbol.species &&
|
|
2726
|
-
Buffer
|
|
2726
|
+
Buffer[Symbol.species] === Buffer) ;
|
|
2727
2727
|
}
|
|
2728
2728
|
|
|
2729
2729
|
function assertSize (size) {
|
|
@@ -2754,14 +2754,14 @@ function alloc (that, size, fill, encoding) {
|
|
|
2754
2754
|
* Creates a new filled Buffer instance.
|
|
2755
2755
|
* alloc(size[, fill[, encoding]])
|
|
2756
2756
|
**/
|
|
2757
|
-
Buffer
|
|
2757
|
+
Buffer.alloc = function (size, fill, encoding) {
|
|
2758
2758
|
return alloc(null, size, fill, encoding)
|
|
2759
2759
|
};
|
|
2760
2760
|
|
|
2761
2761
|
function allocUnsafe (that, size) {
|
|
2762
2762
|
assertSize(size);
|
|
2763
2763
|
that = createBuffer(that, size < 0 ? 0 : checked(size) | 0);
|
|
2764
|
-
if (!Buffer
|
|
2764
|
+
if (!Buffer.TYPED_ARRAY_SUPPORT) {
|
|
2765
2765
|
for (var i = 0; i < size; ++i) {
|
|
2766
2766
|
that[i] = 0;
|
|
2767
2767
|
}
|
|
@@ -2772,13 +2772,13 @@ function allocUnsafe (that, size) {
|
|
|
2772
2772
|
/**
|
|
2773
2773
|
* Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.
|
|
2774
2774
|
* */
|
|
2775
|
-
Buffer
|
|
2775
|
+
Buffer.allocUnsafe = function (size) {
|
|
2776
2776
|
return allocUnsafe(null, size)
|
|
2777
2777
|
};
|
|
2778
2778
|
/**
|
|
2779
2779
|
* Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.
|
|
2780
2780
|
*/
|
|
2781
|
-
Buffer
|
|
2781
|
+
Buffer.allocUnsafeSlow = function (size) {
|
|
2782
2782
|
return allocUnsafe(null, size)
|
|
2783
2783
|
};
|
|
2784
2784
|
|
|
@@ -2787,7 +2787,7 @@ function fromString (that, string, encoding) {
|
|
|
2787
2787
|
encoding = 'utf8';
|
|
2788
2788
|
}
|
|
2789
2789
|
|
|
2790
|
-
if (!Buffer
|
|
2790
|
+
if (!Buffer.isEncoding(encoding)) {
|
|
2791
2791
|
throw new TypeError('"encoding" must be a valid string encoding')
|
|
2792
2792
|
}
|
|
2793
2793
|
|
|
@@ -2834,10 +2834,10 @@ function fromArrayBuffer (that, array, byteOffset, length) {
|
|
|
2834
2834
|
array = new Uint8Array(array, byteOffset, length);
|
|
2835
2835
|
}
|
|
2836
2836
|
|
|
2837
|
-
if (Buffer
|
|
2837
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
2838
2838
|
// Return an augmented `Uint8Array` instance, for best performance
|
|
2839
2839
|
that = array;
|
|
2840
|
-
that.__proto__ = Buffer
|
|
2840
|
+
that.__proto__ = Buffer.prototype;
|
|
2841
2841
|
} else {
|
|
2842
2842
|
// Fallback: Return an object instance of the Buffer class
|
|
2843
2843
|
that = fromArrayLike$1(that, array);
|
|
@@ -2884,12 +2884,12 @@ function checked (length) {
|
|
|
2884
2884
|
}
|
|
2885
2885
|
return length | 0
|
|
2886
2886
|
}
|
|
2887
|
-
Buffer
|
|
2887
|
+
Buffer.isBuffer = isBuffer;
|
|
2888
2888
|
function internalIsBuffer (b) {
|
|
2889
2889
|
return !!(b != null && b._isBuffer)
|
|
2890
2890
|
}
|
|
2891
2891
|
|
|
2892
|
-
Buffer
|
|
2892
|
+
Buffer.compare = function compare (a, b) {
|
|
2893
2893
|
if (!internalIsBuffer(a) || !internalIsBuffer(b)) {
|
|
2894
2894
|
throw new TypeError('Arguments must be Buffers')
|
|
2895
2895
|
}
|
|
@@ -2912,7 +2912,7 @@ Buffer$1.compare = function compare (a, b) {
|
|
|
2912
2912
|
return 0
|
|
2913
2913
|
};
|
|
2914
2914
|
|
|
2915
|
-
Buffer
|
|
2915
|
+
Buffer.isEncoding = function isEncoding (encoding) {
|
|
2916
2916
|
switch (String(encoding).toLowerCase()) {
|
|
2917
2917
|
case 'hex':
|
|
2918
2918
|
case 'utf8':
|
|
@@ -2931,13 +2931,13 @@ Buffer$1.isEncoding = function isEncoding (encoding) {
|
|
|
2931
2931
|
}
|
|
2932
2932
|
};
|
|
2933
2933
|
|
|
2934
|
-
Buffer
|
|
2934
|
+
Buffer.concat = function concat (list, length) {
|
|
2935
2935
|
if (!isArray$1(list)) {
|
|
2936
2936
|
throw new TypeError('"list" argument must be an Array of Buffers')
|
|
2937
2937
|
}
|
|
2938
2938
|
|
|
2939
2939
|
if (list.length === 0) {
|
|
2940
|
-
return Buffer
|
|
2940
|
+
return Buffer.alloc(0)
|
|
2941
2941
|
}
|
|
2942
2942
|
|
|
2943
2943
|
var i;
|
|
@@ -2948,7 +2948,7 @@ Buffer$1.concat = function concat (list, length) {
|
|
|
2948
2948
|
}
|
|
2949
2949
|
}
|
|
2950
2950
|
|
|
2951
|
-
var buffer = Buffer
|
|
2951
|
+
var buffer = Buffer.allocUnsafe(length);
|
|
2952
2952
|
var pos = 0;
|
|
2953
2953
|
for (i = 0; i < list.length; ++i) {
|
|
2954
2954
|
var buf = list[i];
|
|
@@ -3004,7 +3004,7 @@ function byteLength$1 (string, encoding) {
|
|
|
3004
3004
|
}
|
|
3005
3005
|
}
|
|
3006
3006
|
}
|
|
3007
|
-
Buffer
|
|
3007
|
+
Buffer.byteLength = byteLength$1;
|
|
3008
3008
|
|
|
3009
3009
|
function slowToString (encoding, start, end) {
|
|
3010
3010
|
var loweredCase = false;
|
|
@@ -3078,7 +3078,7 @@ function slowToString (encoding, start, end) {
|
|
|
3078
3078
|
|
|
3079
3079
|
// The property is used by `Buffer.isBuffer` and `is-buffer` (in Safari 5-7) to detect
|
|
3080
3080
|
// Buffer instances.
|
|
3081
|
-
Buffer
|
|
3081
|
+
Buffer.prototype._isBuffer = true;
|
|
3082
3082
|
|
|
3083
3083
|
function swap (b, n, m) {
|
|
3084
3084
|
var i = b[n];
|
|
@@ -3086,7 +3086,7 @@ function swap (b, n, m) {
|
|
|
3086
3086
|
b[m] = i;
|
|
3087
3087
|
}
|
|
3088
3088
|
|
|
3089
|
-
Buffer
|
|
3089
|
+
Buffer.prototype.swap16 = function swap16 () {
|
|
3090
3090
|
var len = this.length;
|
|
3091
3091
|
if (len % 2 !== 0) {
|
|
3092
3092
|
throw new RangeError('Buffer size must be a multiple of 16-bits')
|
|
@@ -3097,7 +3097,7 @@ Buffer$1.prototype.swap16 = function swap16 () {
|
|
|
3097
3097
|
return this
|
|
3098
3098
|
};
|
|
3099
3099
|
|
|
3100
|
-
Buffer
|
|
3100
|
+
Buffer.prototype.swap32 = function swap32 () {
|
|
3101
3101
|
var len = this.length;
|
|
3102
3102
|
if (len % 4 !== 0) {
|
|
3103
3103
|
throw new RangeError('Buffer size must be a multiple of 32-bits')
|
|
@@ -3109,7 +3109,7 @@ Buffer$1.prototype.swap32 = function swap32 () {
|
|
|
3109
3109
|
return this
|
|
3110
3110
|
};
|
|
3111
3111
|
|
|
3112
|
-
Buffer
|
|
3112
|
+
Buffer.prototype.swap64 = function swap64 () {
|
|
3113
3113
|
var len = this.length;
|
|
3114
3114
|
if (len % 8 !== 0) {
|
|
3115
3115
|
throw new RangeError('Buffer size must be a multiple of 64-bits')
|
|
@@ -3123,20 +3123,20 @@ Buffer$1.prototype.swap64 = function swap64 () {
|
|
|
3123
3123
|
return this
|
|
3124
3124
|
};
|
|
3125
3125
|
|
|
3126
|
-
Buffer
|
|
3126
|
+
Buffer.prototype.toString = function toString () {
|
|
3127
3127
|
var length = this.length | 0;
|
|
3128
3128
|
if (length === 0) return ''
|
|
3129
3129
|
if (arguments.length === 0) return utf8Slice(this, 0, length)
|
|
3130
3130
|
return slowToString.apply(this, arguments)
|
|
3131
3131
|
};
|
|
3132
3132
|
|
|
3133
|
-
Buffer
|
|
3133
|
+
Buffer.prototype.equals = function equals (b) {
|
|
3134
3134
|
if (!internalIsBuffer(b)) throw new TypeError('Argument must be a Buffer')
|
|
3135
3135
|
if (this === b) return true
|
|
3136
|
-
return Buffer
|
|
3136
|
+
return Buffer.compare(this, b) === 0
|
|
3137
3137
|
};
|
|
3138
3138
|
|
|
3139
|
-
Buffer
|
|
3139
|
+
Buffer.prototype.inspect = function inspect () {
|
|
3140
3140
|
var str = '';
|
|
3141
3141
|
var max = INSPECT_MAX_BYTES;
|
|
3142
3142
|
if (this.length > 0) {
|
|
@@ -3146,7 +3146,7 @@ Buffer$1.prototype.inspect = function inspect () {
|
|
|
3146
3146
|
return '<Buffer ' + str + '>'
|
|
3147
3147
|
};
|
|
3148
3148
|
|
|
3149
|
-
Buffer
|
|
3149
|
+
Buffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) {
|
|
3150
3150
|
if (!internalIsBuffer(target)) {
|
|
3151
3151
|
throw new TypeError('Argument must be a Buffer')
|
|
3152
3152
|
}
|
|
@@ -3245,7 +3245,7 @@ function bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) {
|
|
|
3245
3245
|
|
|
3246
3246
|
// Normalize val
|
|
3247
3247
|
if (typeof val === 'string') {
|
|
3248
|
-
val = Buffer
|
|
3248
|
+
val = Buffer.from(val, encoding);
|
|
3249
3249
|
}
|
|
3250
3250
|
|
|
3251
3251
|
// Finally, search either indexOf (if dir is true) or lastIndexOf
|
|
@@ -3257,7 +3257,7 @@ function bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) {
|
|
|
3257
3257
|
return arrayIndexOf(buffer, val, byteOffset, encoding, dir)
|
|
3258
3258
|
} else if (typeof val === 'number') {
|
|
3259
3259
|
val = val & 0xFF; // Search for a byte value [0-255]
|
|
3260
|
-
if (Buffer
|
|
3260
|
+
if (Buffer.TYPED_ARRAY_SUPPORT &&
|
|
3261
3261
|
typeof Uint8Array.prototype.indexOf === 'function') {
|
|
3262
3262
|
if (dir) {
|
|
3263
3263
|
return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset)
|
|
@@ -3327,15 +3327,15 @@ function arrayIndexOf (arr, val, byteOffset, encoding, dir) {
|
|
|
3327
3327
|
return -1
|
|
3328
3328
|
}
|
|
3329
3329
|
|
|
3330
|
-
Buffer
|
|
3330
|
+
Buffer.prototype.includes = function includes (val, byteOffset, encoding) {
|
|
3331
3331
|
return this.indexOf(val, byteOffset, encoding) !== -1
|
|
3332
3332
|
};
|
|
3333
3333
|
|
|
3334
|
-
Buffer
|
|
3334
|
+
Buffer.prototype.indexOf = function indexOf (val, byteOffset, encoding) {
|
|
3335
3335
|
return bidirectionalIndexOf(this, val, byteOffset, encoding, true)
|
|
3336
3336
|
};
|
|
3337
3337
|
|
|
3338
|
-
Buffer
|
|
3338
|
+
Buffer.prototype.lastIndexOf = function lastIndexOf (val, byteOffset, encoding) {
|
|
3339
3339
|
return bidirectionalIndexOf(this, val, byteOffset, encoding, false)
|
|
3340
3340
|
};
|
|
3341
3341
|
|
|
@@ -3386,7 +3386,7 @@ function ucs2Write (buf, string, offset, length) {
|
|
|
3386
3386
|
return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length)
|
|
3387
3387
|
}
|
|
3388
3388
|
|
|
3389
|
-
Buffer
|
|
3389
|
+
Buffer.prototype.write = function write (string, offset, length, encoding) {
|
|
3390
3390
|
// Buffer#write(string)
|
|
3391
3391
|
if (offset === undefined) {
|
|
3392
3392
|
encoding = 'utf8';
|
|
@@ -3458,7 +3458,7 @@ Buffer$1.prototype.write = function write (string, offset, length, encoding) {
|
|
|
3458
3458
|
}
|
|
3459
3459
|
};
|
|
3460
3460
|
|
|
3461
|
-
Buffer
|
|
3461
|
+
Buffer.prototype.toJSON = function toJSON () {
|
|
3462
3462
|
return {
|
|
3463
3463
|
type: 'Buffer',
|
|
3464
3464
|
data: Array.prototype.slice.call(this._arr || this, 0)
|
|
@@ -3611,7 +3611,7 @@ function utf16leSlice (buf, start, end) {
|
|
|
3611
3611
|
return res
|
|
3612
3612
|
}
|
|
3613
3613
|
|
|
3614
|
-
Buffer
|
|
3614
|
+
Buffer.prototype.slice = function slice (start, end) {
|
|
3615
3615
|
var len = this.length;
|
|
3616
3616
|
start = ~~start;
|
|
3617
3617
|
end = end === undefined ? len : ~~end;
|
|
@@ -3633,12 +3633,12 @@ Buffer$1.prototype.slice = function slice (start, end) {
|
|
|
3633
3633
|
if (end < start) end = start;
|
|
3634
3634
|
|
|
3635
3635
|
var newBuf;
|
|
3636
|
-
if (Buffer
|
|
3636
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
3637
3637
|
newBuf = this.subarray(start, end);
|
|
3638
|
-
newBuf.__proto__ = Buffer
|
|
3638
|
+
newBuf.__proto__ = Buffer.prototype;
|
|
3639
3639
|
} else {
|
|
3640
3640
|
var sliceLen = end - start;
|
|
3641
|
-
newBuf = new Buffer
|
|
3641
|
+
newBuf = new Buffer(sliceLen, undefined);
|
|
3642
3642
|
for (var i = 0; i < sliceLen; ++i) {
|
|
3643
3643
|
newBuf[i] = this[i + start];
|
|
3644
3644
|
}
|
|
@@ -3655,7 +3655,7 @@ function checkOffset (offset, ext, length) {
|
|
|
3655
3655
|
if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length')
|
|
3656
3656
|
}
|
|
3657
3657
|
|
|
3658
|
-
Buffer
|
|
3658
|
+
Buffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) {
|
|
3659
3659
|
offset = offset | 0;
|
|
3660
3660
|
byteLength = byteLength | 0;
|
|
3661
3661
|
if (!noAssert) checkOffset(offset, byteLength, this.length);
|
|
@@ -3670,7 +3670,7 @@ Buffer$1.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAsser
|
|
|
3670
3670
|
return val
|
|
3671
3671
|
};
|
|
3672
3672
|
|
|
3673
|
-
Buffer
|
|
3673
|
+
Buffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) {
|
|
3674
3674
|
offset = offset | 0;
|
|
3675
3675
|
byteLength = byteLength | 0;
|
|
3676
3676
|
if (!noAssert) {
|
|
@@ -3686,22 +3686,22 @@ Buffer$1.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAsser
|
|
|
3686
3686
|
return val
|
|
3687
3687
|
};
|
|
3688
3688
|
|
|
3689
|
-
Buffer
|
|
3689
|
+
Buffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) {
|
|
3690
3690
|
if (!noAssert) checkOffset(offset, 1, this.length);
|
|
3691
3691
|
return this[offset]
|
|
3692
3692
|
};
|
|
3693
3693
|
|
|
3694
|
-
Buffer
|
|
3694
|
+
Buffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) {
|
|
3695
3695
|
if (!noAssert) checkOffset(offset, 2, this.length);
|
|
3696
3696
|
return this[offset] | (this[offset + 1] << 8)
|
|
3697
3697
|
};
|
|
3698
3698
|
|
|
3699
|
-
Buffer
|
|
3699
|
+
Buffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) {
|
|
3700
3700
|
if (!noAssert) checkOffset(offset, 2, this.length);
|
|
3701
3701
|
return (this[offset] << 8) | this[offset + 1]
|
|
3702
3702
|
};
|
|
3703
3703
|
|
|
3704
|
-
Buffer
|
|
3704
|
+
Buffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {
|
|
3705
3705
|
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
3706
3706
|
|
|
3707
3707
|
return ((this[offset]) |
|
|
@@ -3710,7 +3710,7 @@ Buffer$1.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {
|
|
|
3710
3710
|
(this[offset + 3] * 0x1000000)
|
|
3711
3711
|
};
|
|
3712
3712
|
|
|
3713
|
-
Buffer
|
|
3713
|
+
Buffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) {
|
|
3714
3714
|
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
3715
3715
|
|
|
3716
3716
|
return (this[offset] * 0x1000000) +
|
|
@@ -3719,7 +3719,7 @@ Buffer$1.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) {
|
|
|
3719
3719
|
this[offset + 3])
|
|
3720
3720
|
};
|
|
3721
3721
|
|
|
3722
|
-
Buffer
|
|
3722
|
+
Buffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) {
|
|
3723
3723
|
offset = offset | 0;
|
|
3724
3724
|
byteLength = byteLength | 0;
|
|
3725
3725
|
if (!noAssert) checkOffset(offset, byteLength, this.length);
|
|
@@ -3737,7 +3737,7 @@ Buffer$1.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert)
|
|
|
3737
3737
|
return val
|
|
3738
3738
|
};
|
|
3739
3739
|
|
|
3740
|
-
Buffer
|
|
3740
|
+
Buffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) {
|
|
3741
3741
|
offset = offset | 0;
|
|
3742
3742
|
byteLength = byteLength | 0;
|
|
3743
3743
|
if (!noAssert) checkOffset(offset, byteLength, this.length);
|
|
@@ -3755,25 +3755,25 @@ Buffer$1.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert)
|
|
|
3755
3755
|
return val
|
|
3756
3756
|
};
|
|
3757
3757
|
|
|
3758
|
-
Buffer
|
|
3758
|
+
Buffer.prototype.readInt8 = function readInt8 (offset, noAssert) {
|
|
3759
3759
|
if (!noAssert) checkOffset(offset, 1, this.length);
|
|
3760
3760
|
if (!(this[offset] & 0x80)) return (this[offset])
|
|
3761
3761
|
return ((0xff - this[offset] + 1) * -1)
|
|
3762
3762
|
};
|
|
3763
3763
|
|
|
3764
|
-
Buffer
|
|
3764
|
+
Buffer.prototype.readInt16LE = function readInt16LE (offset, noAssert) {
|
|
3765
3765
|
if (!noAssert) checkOffset(offset, 2, this.length);
|
|
3766
3766
|
var val = this[offset] | (this[offset + 1] << 8);
|
|
3767
3767
|
return (val & 0x8000) ? val | 0xFFFF0000 : val
|
|
3768
3768
|
};
|
|
3769
3769
|
|
|
3770
|
-
Buffer
|
|
3770
|
+
Buffer.prototype.readInt16BE = function readInt16BE (offset, noAssert) {
|
|
3771
3771
|
if (!noAssert) checkOffset(offset, 2, this.length);
|
|
3772
3772
|
var val = this[offset + 1] | (this[offset] << 8);
|
|
3773
3773
|
return (val & 0x8000) ? val | 0xFFFF0000 : val
|
|
3774
3774
|
};
|
|
3775
3775
|
|
|
3776
|
-
Buffer
|
|
3776
|
+
Buffer.prototype.readInt32LE = function readInt32LE (offset, noAssert) {
|
|
3777
3777
|
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
3778
3778
|
|
|
3779
3779
|
return (this[offset]) |
|
|
@@ -3782,7 +3782,7 @@ Buffer$1.prototype.readInt32LE = function readInt32LE (offset, noAssert) {
|
|
|
3782
3782
|
(this[offset + 3] << 24)
|
|
3783
3783
|
};
|
|
3784
3784
|
|
|
3785
|
-
Buffer
|
|
3785
|
+
Buffer.prototype.readInt32BE = function readInt32BE (offset, noAssert) {
|
|
3786
3786
|
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
3787
3787
|
|
|
3788
3788
|
return (this[offset] << 24) |
|
|
@@ -3791,22 +3791,22 @@ Buffer$1.prototype.readInt32BE = function readInt32BE (offset, noAssert) {
|
|
|
3791
3791
|
(this[offset + 3])
|
|
3792
3792
|
};
|
|
3793
3793
|
|
|
3794
|
-
Buffer
|
|
3794
|
+
Buffer.prototype.readFloatLE = function readFloatLE (offset, noAssert) {
|
|
3795
3795
|
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
3796
3796
|
return read(this, offset, true, 23, 4)
|
|
3797
3797
|
};
|
|
3798
3798
|
|
|
3799
|
-
Buffer
|
|
3799
|
+
Buffer.prototype.readFloatBE = function readFloatBE (offset, noAssert) {
|
|
3800
3800
|
if (!noAssert) checkOffset(offset, 4, this.length);
|
|
3801
3801
|
return read(this, offset, false, 23, 4)
|
|
3802
3802
|
};
|
|
3803
3803
|
|
|
3804
|
-
Buffer
|
|
3804
|
+
Buffer.prototype.readDoubleLE = function readDoubleLE (offset, noAssert) {
|
|
3805
3805
|
if (!noAssert) checkOffset(offset, 8, this.length);
|
|
3806
3806
|
return read(this, offset, true, 52, 8)
|
|
3807
3807
|
};
|
|
3808
3808
|
|
|
3809
|
-
Buffer
|
|
3809
|
+
Buffer.prototype.readDoubleBE = function readDoubleBE (offset, noAssert) {
|
|
3810
3810
|
if (!noAssert) checkOffset(offset, 8, this.length);
|
|
3811
3811
|
return read(this, offset, false, 52, 8)
|
|
3812
3812
|
};
|
|
@@ -3817,7 +3817,7 @@ function checkInt (buf, value, offset, ext, max, min) {
|
|
|
3817
3817
|
if (offset + ext > buf.length) throw new RangeError('Index out of range')
|
|
3818
3818
|
}
|
|
3819
3819
|
|
|
3820
|
-
Buffer
|
|
3820
|
+
Buffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) {
|
|
3821
3821
|
value = +value;
|
|
3822
3822
|
offset = offset | 0;
|
|
3823
3823
|
byteLength = byteLength | 0;
|
|
@@ -3836,7 +3836,7 @@ Buffer$1.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength
|
|
|
3836
3836
|
return offset + byteLength
|
|
3837
3837
|
};
|
|
3838
3838
|
|
|
3839
|
-
Buffer
|
|
3839
|
+
Buffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) {
|
|
3840
3840
|
value = +value;
|
|
3841
3841
|
offset = offset | 0;
|
|
3842
3842
|
byteLength = byteLength | 0;
|
|
@@ -3855,11 +3855,11 @@ Buffer$1.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength
|
|
|
3855
3855
|
return offset + byteLength
|
|
3856
3856
|
};
|
|
3857
3857
|
|
|
3858
|
-
Buffer
|
|
3858
|
+
Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) {
|
|
3859
3859
|
value = +value;
|
|
3860
3860
|
offset = offset | 0;
|
|
3861
3861
|
if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0);
|
|
3862
|
-
if (!Buffer
|
|
3862
|
+
if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value);
|
|
3863
3863
|
this[offset] = (value & 0xff);
|
|
3864
3864
|
return offset + 1
|
|
3865
3865
|
};
|
|
@@ -3872,11 +3872,11 @@ function objectWriteUInt16 (buf, value, offset, littleEndian) {
|
|
|
3872
3872
|
}
|
|
3873
3873
|
}
|
|
3874
3874
|
|
|
3875
|
-
Buffer
|
|
3875
|
+
Buffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) {
|
|
3876
3876
|
value = +value;
|
|
3877
3877
|
offset = offset | 0;
|
|
3878
3878
|
if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0);
|
|
3879
|
-
if (Buffer
|
|
3879
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
3880
3880
|
this[offset] = (value & 0xff);
|
|
3881
3881
|
this[offset + 1] = (value >>> 8);
|
|
3882
3882
|
} else {
|
|
@@ -3885,11 +3885,11 @@ Buffer$1.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAsse
|
|
|
3885
3885
|
return offset + 2
|
|
3886
3886
|
};
|
|
3887
3887
|
|
|
3888
|
-
Buffer
|
|
3888
|
+
Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) {
|
|
3889
3889
|
value = +value;
|
|
3890
3890
|
offset = offset | 0;
|
|
3891
3891
|
if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0);
|
|
3892
|
-
if (Buffer
|
|
3892
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
3893
3893
|
this[offset] = (value >>> 8);
|
|
3894
3894
|
this[offset + 1] = (value & 0xff);
|
|
3895
3895
|
} else {
|
|
@@ -3905,11 +3905,11 @@ function objectWriteUInt32 (buf, value, offset, littleEndian) {
|
|
|
3905
3905
|
}
|
|
3906
3906
|
}
|
|
3907
3907
|
|
|
3908
|
-
Buffer
|
|
3908
|
+
Buffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) {
|
|
3909
3909
|
value = +value;
|
|
3910
3910
|
offset = offset | 0;
|
|
3911
3911
|
if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0);
|
|
3912
|
-
if (Buffer
|
|
3912
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
3913
3913
|
this[offset + 3] = (value >>> 24);
|
|
3914
3914
|
this[offset + 2] = (value >>> 16);
|
|
3915
3915
|
this[offset + 1] = (value >>> 8);
|
|
@@ -3920,11 +3920,11 @@ Buffer$1.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAsse
|
|
|
3920
3920
|
return offset + 4
|
|
3921
3921
|
};
|
|
3922
3922
|
|
|
3923
|
-
Buffer
|
|
3923
|
+
Buffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) {
|
|
3924
3924
|
value = +value;
|
|
3925
3925
|
offset = offset | 0;
|
|
3926
3926
|
if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0);
|
|
3927
|
-
if (Buffer
|
|
3927
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
3928
3928
|
this[offset] = (value >>> 24);
|
|
3929
3929
|
this[offset + 1] = (value >>> 16);
|
|
3930
3930
|
this[offset + 2] = (value >>> 8);
|
|
@@ -3935,7 +3935,7 @@ Buffer$1.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAsse
|
|
|
3935
3935
|
return offset + 4
|
|
3936
3936
|
};
|
|
3937
3937
|
|
|
3938
|
-
Buffer
|
|
3938
|
+
Buffer.prototype.writeIntLE = function writeIntLE (value, offset, byteLength, noAssert) {
|
|
3939
3939
|
value = +value;
|
|
3940
3940
|
offset = offset | 0;
|
|
3941
3941
|
if (!noAssert) {
|
|
@@ -3958,7 +3958,7 @@ Buffer$1.prototype.writeIntLE = function writeIntLE (value, offset, byteLength,
|
|
|
3958
3958
|
return offset + byteLength
|
|
3959
3959
|
};
|
|
3960
3960
|
|
|
3961
|
-
Buffer
|
|
3961
|
+
Buffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) {
|
|
3962
3962
|
value = +value;
|
|
3963
3963
|
offset = offset | 0;
|
|
3964
3964
|
if (!noAssert) {
|
|
@@ -3981,21 +3981,21 @@ Buffer$1.prototype.writeIntBE = function writeIntBE (value, offset, byteLength,
|
|
|
3981
3981
|
return offset + byteLength
|
|
3982
3982
|
};
|
|
3983
3983
|
|
|
3984
|
-
Buffer
|
|
3984
|
+
Buffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) {
|
|
3985
3985
|
value = +value;
|
|
3986
3986
|
offset = offset | 0;
|
|
3987
3987
|
if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80);
|
|
3988
|
-
if (!Buffer
|
|
3988
|
+
if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value);
|
|
3989
3989
|
if (value < 0) value = 0xff + value + 1;
|
|
3990
3990
|
this[offset] = (value & 0xff);
|
|
3991
3991
|
return offset + 1
|
|
3992
3992
|
};
|
|
3993
3993
|
|
|
3994
|
-
Buffer
|
|
3994
|
+
Buffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) {
|
|
3995
3995
|
value = +value;
|
|
3996
3996
|
offset = offset | 0;
|
|
3997
3997
|
if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000);
|
|
3998
|
-
if (Buffer
|
|
3998
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
3999
3999
|
this[offset] = (value & 0xff);
|
|
4000
4000
|
this[offset + 1] = (value >>> 8);
|
|
4001
4001
|
} else {
|
|
@@ -4004,11 +4004,11 @@ Buffer$1.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert
|
|
|
4004
4004
|
return offset + 2
|
|
4005
4005
|
};
|
|
4006
4006
|
|
|
4007
|
-
Buffer
|
|
4007
|
+
Buffer.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert) {
|
|
4008
4008
|
value = +value;
|
|
4009
4009
|
offset = offset | 0;
|
|
4010
4010
|
if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000);
|
|
4011
|
-
if (Buffer
|
|
4011
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
4012
4012
|
this[offset] = (value >>> 8);
|
|
4013
4013
|
this[offset + 1] = (value & 0xff);
|
|
4014
4014
|
} else {
|
|
@@ -4017,11 +4017,11 @@ Buffer$1.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert
|
|
|
4017
4017
|
return offset + 2
|
|
4018
4018
|
};
|
|
4019
4019
|
|
|
4020
|
-
Buffer
|
|
4020
|
+
Buffer.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert) {
|
|
4021
4021
|
value = +value;
|
|
4022
4022
|
offset = offset | 0;
|
|
4023
4023
|
if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000);
|
|
4024
|
-
if (Buffer
|
|
4024
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
4025
4025
|
this[offset] = (value & 0xff);
|
|
4026
4026
|
this[offset + 1] = (value >>> 8);
|
|
4027
4027
|
this[offset + 2] = (value >>> 16);
|
|
@@ -4032,12 +4032,12 @@ Buffer$1.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert
|
|
|
4032
4032
|
return offset + 4
|
|
4033
4033
|
};
|
|
4034
4034
|
|
|
4035
|
-
Buffer
|
|
4035
|
+
Buffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) {
|
|
4036
4036
|
value = +value;
|
|
4037
4037
|
offset = offset | 0;
|
|
4038
4038
|
if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000);
|
|
4039
4039
|
if (value < 0) value = 0xffffffff + value + 1;
|
|
4040
|
-
if (Buffer
|
|
4040
|
+
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
|
4041
4041
|
this[offset] = (value >>> 24);
|
|
4042
4042
|
this[offset + 1] = (value >>> 16);
|
|
4043
4043
|
this[offset + 2] = (value >>> 8);
|
|
@@ -4061,11 +4061,11 @@ function writeFloat (buf, value, offset, littleEndian, noAssert) {
|
|
|
4061
4061
|
return offset + 4
|
|
4062
4062
|
}
|
|
4063
4063
|
|
|
4064
|
-
Buffer
|
|
4064
|
+
Buffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) {
|
|
4065
4065
|
return writeFloat(this, value, offset, true, noAssert)
|
|
4066
4066
|
};
|
|
4067
4067
|
|
|
4068
|
-
Buffer
|
|
4068
|
+
Buffer.prototype.writeFloatBE = function writeFloatBE (value, offset, noAssert) {
|
|
4069
4069
|
return writeFloat(this, value, offset, false, noAssert)
|
|
4070
4070
|
};
|
|
4071
4071
|
|
|
@@ -4077,16 +4077,16 @@ function writeDouble (buf, value, offset, littleEndian, noAssert) {
|
|
|
4077
4077
|
return offset + 8
|
|
4078
4078
|
}
|
|
4079
4079
|
|
|
4080
|
-
Buffer
|
|
4080
|
+
Buffer.prototype.writeDoubleLE = function writeDoubleLE (value, offset, noAssert) {
|
|
4081
4081
|
return writeDouble(this, value, offset, true, noAssert)
|
|
4082
4082
|
};
|
|
4083
4083
|
|
|
4084
|
-
Buffer
|
|
4084
|
+
Buffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert) {
|
|
4085
4085
|
return writeDouble(this, value, offset, false, noAssert)
|
|
4086
4086
|
};
|
|
4087
4087
|
|
|
4088
4088
|
// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)
|
|
4089
|
-
Buffer
|
|
4089
|
+
Buffer.prototype.copy = function copy (target, targetStart, start, end) {
|
|
4090
4090
|
if (!start) start = 0;
|
|
4091
4091
|
if (!end && end !== 0) end = this.length;
|
|
4092
4092
|
if (targetStart >= target.length) targetStart = target.length;
|
|
@@ -4118,7 +4118,7 @@ Buffer$1.prototype.copy = function copy (target, targetStart, start, end) {
|
|
|
4118
4118
|
for (i = len - 1; i >= 0; --i) {
|
|
4119
4119
|
target[i + targetStart] = this[i + start];
|
|
4120
4120
|
}
|
|
4121
|
-
} else if (len < 1000 || !Buffer
|
|
4121
|
+
} else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) {
|
|
4122
4122
|
// ascending copy from start
|
|
4123
4123
|
for (i = 0; i < len; ++i) {
|
|
4124
4124
|
target[i + targetStart] = this[i + start];
|
|
@@ -4138,7 +4138,7 @@ Buffer$1.prototype.copy = function copy (target, targetStart, start, end) {
|
|
|
4138
4138
|
// buffer.fill(number[, offset[, end]])
|
|
4139
4139
|
// buffer.fill(buffer[, offset[, end]])
|
|
4140
4140
|
// buffer.fill(string[, offset[, end]][, encoding])
|
|
4141
|
-
Buffer
|
|
4141
|
+
Buffer.prototype.fill = function fill (val, start, end, encoding) {
|
|
4142
4142
|
// Handle string cases:
|
|
4143
4143
|
if (typeof val === 'string') {
|
|
4144
4144
|
if (typeof start === 'string') {
|
|
@@ -4158,7 +4158,7 @@ Buffer$1.prototype.fill = function fill (val, start, end, encoding) {
|
|
|
4158
4158
|
if (encoding !== undefined && typeof encoding !== 'string') {
|
|
4159
4159
|
throw new TypeError('encoding must be a string')
|
|
4160
4160
|
}
|
|
4161
|
-
if (typeof encoding === 'string' && !Buffer
|
|
4161
|
+
if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {
|
|
4162
4162
|
throw new TypeError('Unknown encoding: ' + encoding)
|
|
4163
4163
|
}
|
|
4164
4164
|
} else if (typeof val === 'number') {
|
|
@@ -4187,7 +4187,7 @@ Buffer$1.prototype.fill = function fill (val, start, end, encoding) {
|
|
|
4187
4187
|
} else {
|
|
4188
4188
|
var bytes = internalIsBuffer(val)
|
|
4189
4189
|
? val
|
|
4190
|
-
: utf8ToBytes(new Buffer
|
|
4190
|
+
: utf8ToBytes(new Buffer(val, encoding).toString());
|
|
4191
4191
|
var len = bytes.length;
|
|
4192
4192
|
for (i = 0; i < end - start; ++i) {
|
|
4193
4193
|
this[i + start] = bytes[i % len];
|
|
@@ -4581,7 +4581,7 @@ function toFormData$1(obj, formData, options) {
|
|
|
4581
4581
|
}
|
|
4582
4582
|
|
|
4583
4583
|
if (utils$2.isArrayBuffer(value) || utils$2.isTypedArray(value)) {
|
|
4584
|
-
return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer
|
|
4584
|
+
return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value);
|
|
4585
4585
|
}
|
|
4586
4586
|
|
|
4587
4587
|
return value;
|
|
@@ -14930,135 +14930,150 @@ util$2.inherits = function inherits(ctor, superCtor) {
|
|
|
14930
14930
|
|
|
14931
14931
|
var BufferList = {};
|
|
14932
14932
|
|
|
14933
|
-
var
|
|
14934
|
-
function copyBuffer(src, target, offset) {
|
|
14935
|
-
src.copy(target, offset);
|
|
14936
|
-
}
|
|
14937
|
-
BufferList.BufferList = class BufferList {
|
|
14938
|
-
constructor() {
|
|
14939
|
-
this.head = null;
|
|
14940
|
-
this.tail = null;
|
|
14941
|
-
this.length = 0;
|
|
14942
|
-
}
|
|
14943
|
-
push(v) {
|
|
14944
|
-
var entry = { data: v, next: null };
|
|
14945
|
-
if (this.length > 0)
|
|
14946
|
-
this.tail.next = entry;
|
|
14947
|
-
else
|
|
14948
|
-
this.head = entry;
|
|
14949
|
-
this.tail = entry;
|
|
14950
|
-
++this.length;
|
|
14951
|
-
}
|
|
14952
|
-
unshift(v) {
|
|
14953
|
-
var entry = { data: v, next: this.head };
|
|
14954
|
-
if (this.length === 0)
|
|
14955
|
-
this.tail = entry;
|
|
14956
|
-
this.head = entry;
|
|
14957
|
-
++this.length;
|
|
14958
|
-
}
|
|
14959
|
-
shift() {
|
|
14960
|
-
if (this.length === 0)
|
|
14961
|
-
return;
|
|
14962
|
-
var ret = this.head.data;
|
|
14963
|
-
if (this.length === 1)
|
|
14964
|
-
this.head = this.tail = null;
|
|
14965
|
-
else
|
|
14966
|
-
this.head = this.head.next;
|
|
14967
|
-
--this.length;
|
|
14968
|
-
return ret;
|
|
14969
|
-
}
|
|
14970
|
-
clear() {
|
|
14971
|
-
this.head = this.tail = null;
|
|
14972
|
-
this.length = 0;
|
|
14973
|
-
}
|
|
14974
|
-
join(s) {
|
|
14975
|
-
if (this.length === 0)
|
|
14976
|
-
return '';
|
|
14977
|
-
var p = this.head;
|
|
14978
|
-
var ret = '' + p.data;
|
|
14979
|
-
while ((p = p.next)) {
|
|
14980
|
-
ret += s + p.data;
|
|
14981
|
-
}
|
|
14982
|
-
return ret;
|
|
14983
|
-
}
|
|
14984
|
-
concat(n) {
|
|
14985
|
-
if (this.length === 0)
|
|
14986
|
-
return Buffer.alloc(0);
|
|
14987
|
-
if (this.length === 1)
|
|
14988
|
-
return this.head.data;
|
|
14989
|
-
var ret = Buffer.allocUnsafe(n >>> 0);
|
|
14990
|
-
var p = this.head;
|
|
14991
|
-
var i = 0;
|
|
14992
|
-
while (p) {
|
|
14993
|
-
copyBuffer(p.data, ret, i);
|
|
14994
|
-
i += p.data.length;
|
|
14995
|
-
p = p.next;
|
|
14996
|
-
}
|
|
14997
|
-
return ret;
|
|
14998
|
-
}
|
|
14999
|
-
};
|
|
14933
|
+
var hasRequiredBufferList;
|
|
15000
14934
|
|
|
15001
|
-
|
|
15002
|
-
|
|
15003
|
-
|
|
15004
|
-
|
|
15005
|
-
function
|
|
15006
|
-
|
|
15007
|
-
|
|
15008
|
-
|
|
15009
|
-
|
|
15010
|
-
|
|
15011
|
-
|
|
15012
|
-
|
|
15013
|
-
|
|
15014
|
-
|
|
15015
|
-
|
|
15016
|
-
|
|
15017
|
-
|
|
15018
|
-
|
|
15019
|
-
|
|
15020
|
-
|
|
15021
|
-
|
|
15022
|
-
|
|
15023
|
-
|
|
15024
|
-
|
|
15025
|
-
|
|
15026
|
-
|
|
15027
|
-
|
|
15028
|
-
|
|
15029
|
-
|
|
15030
|
-
|
|
15031
|
-
|
|
15032
|
-
|
|
15033
|
-
|
|
15034
|
-
|
|
15035
|
-
|
|
15036
|
-
|
|
15037
|
-
|
|
15038
|
-
|
|
15039
|
-
|
|
15040
|
-
|
|
15041
|
-
|
|
15042
|
-
|
|
15043
|
-
|
|
15044
|
-
|
|
15045
|
-
|
|
15046
|
-
|
|
15047
|
-
|
|
15048
|
-
|
|
15049
|
-
|
|
15050
|
-
|
|
15051
|
-
|
|
15052
|
-
|
|
15053
|
-
|
|
14935
|
+
function requireBufferList () {
|
|
14936
|
+
if (hasRequiredBufferList) return BufferList;
|
|
14937
|
+
hasRequiredBufferList = 1;
|
|
14938
|
+
var Buffer = buffer.Buffer;
|
|
14939
|
+
function copyBuffer(src, target, offset) {
|
|
14940
|
+
src.copy(target, offset);
|
|
14941
|
+
}
|
|
14942
|
+
BufferList.BufferList = class BufferList {
|
|
14943
|
+
constructor() {
|
|
14944
|
+
this.head = null;
|
|
14945
|
+
this.tail = null;
|
|
14946
|
+
this.length = 0;
|
|
14947
|
+
}
|
|
14948
|
+
push(v) {
|
|
14949
|
+
var entry = { data: v, next: null };
|
|
14950
|
+
if (this.length > 0)
|
|
14951
|
+
this.tail.next = entry;
|
|
14952
|
+
else
|
|
14953
|
+
this.head = entry;
|
|
14954
|
+
this.tail = entry;
|
|
14955
|
+
++this.length;
|
|
14956
|
+
}
|
|
14957
|
+
unshift(v) {
|
|
14958
|
+
var entry = { data: v, next: this.head };
|
|
14959
|
+
if (this.length === 0)
|
|
14960
|
+
this.tail = entry;
|
|
14961
|
+
this.head = entry;
|
|
14962
|
+
++this.length;
|
|
14963
|
+
}
|
|
14964
|
+
shift() {
|
|
14965
|
+
if (this.length === 0)
|
|
14966
|
+
return;
|
|
14967
|
+
var ret = this.head.data;
|
|
14968
|
+
if (this.length === 1)
|
|
14969
|
+
this.head = this.tail = null;
|
|
14970
|
+
else
|
|
14971
|
+
this.head = this.head.next;
|
|
14972
|
+
--this.length;
|
|
14973
|
+
return ret;
|
|
14974
|
+
}
|
|
14975
|
+
clear() {
|
|
14976
|
+
this.head = this.tail = null;
|
|
14977
|
+
this.length = 0;
|
|
14978
|
+
}
|
|
14979
|
+
join(s) {
|
|
14980
|
+
if (this.length === 0)
|
|
14981
|
+
return '';
|
|
14982
|
+
var p = this.head;
|
|
14983
|
+
var ret = '' + p.data;
|
|
14984
|
+
while ((p = p.next)) {
|
|
14985
|
+
ret += s + p.data;
|
|
14986
|
+
}
|
|
14987
|
+
return ret;
|
|
14988
|
+
}
|
|
14989
|
+
concat(n) {
|
|
14990
|
+
if (this.length === 0)
|
|
14991
|
+
return Buffer.alloc(0);
|
|
14992
|
+
if (this.length === 1)
|
|
14993
|
+
return this.head.data;
|
|
14994
|
+
var ret = Buffer.allocUnsafe(n >>> 0);
|
|
14995
|
+
var p = this.head;
|
|
14996
|
+
var i = 0;
|
|
14997
|
+
while (p) {
|
|
14998
|
+
copyBuffer(p.data, ret, i);
|
|
14999
|
+
i += p.data.length;
|
|
15000
|
+
p = p.next;
|
|
15001
|
+
}
|
|
15002
|
+
return ret;
|
|
15003
|
+
}
|
|
15004
|
+
};
|
|
15005
|
+
return BufferList;
|
|
15054
15006
|
}
|
|
15055
|
-
|
|
15056
|
-
|
|
15007
|
+
|
|
15008
|
+
var destroy_1;
|
|
15009
|
+
var hasRequiredDestroy;
|
|
15010
|
+
|
|
15011
|
+
function requireDestroy () {
|
|
15012
|
+
if (hasRequiredDestroy) return destroy_1;
|
|
15013
|
+
hasRequiredDestroy = 1;
|
|
15014
|
+
/*<replacement>*/
|
|
15015
|
+
var pna = process$2;
|
|
15016
|
+
/*</replacement>*/
|
|
15017
|
+
// undocumented cb() API, needed for core, not for public API
|
|
15018
|
+
function destroy(err, cb) {
|
|
15019
|
+
var _this = this;
|
|
15020
|
+
var readableDestroyed = this._readableState && this._readableState.destroyed;
|
|
15021
|
+
var writableDestroyed = this._writableState && this._writableState.destroyed;
|
|
15022
|
+
if (readableDestroyed || writableDestroyed) {
|
|
15023
|
+
if (cb) {
|
|
15024
|
+
cb(err);
|
|
15025
|
+
}
|
|
15026
|
+
else if (err && (!this._writableState || !this._writableState.errorEmitted)) {
|
|
15027
|
+
pna.nextTick(emitErrorNT, this, err);
|
|
15028
|
+
}
|
|
15029
|
+
return this;
|
|
15030
|
+
}
|
|
15031
|
+
// we set destroyed to true before firing error callbacks in order
|
|
15032
|
+
// to make it re-entrance safe in case destroy() is called within callbacks
|
|
15033
|
+
if (this._readableState) {
|
|
15034
|
+
this._readableState.destroyed = true;
|
|
15035
|
+
}
|
|
15036
|
+
// if this is a duplex stream mark the writable part as destroyed as well
|
|
15037
|
+
if (this._writableState) {
|
|
15038
|
+
this._writableState.destroyed = true;
|
|
15039
|
+
}
|
|
15040
|
+
this._destroy(err || null, function (err) {
|
|
15041
|
+
if (!cb && err) {
|
|
15042
|
+
pna.nextTick(emitErrorNT, _this, err);
|
|
15043
|
+
if (_this._writableState) {
|
|
15044
|
+
_this._writableState.errorEmitted = true;
|
|
15045
|
+
}
|
|
15046
|
+
}
|
|
15047
|
+
else if (cb) {
|
|
15048
|
+
cb(err);
|
|
15049
|
+
}
|
|
15050
|
+
});
|
|
15051
|
+
return this;
|
|
15052
|
+
}
|
|
15053
|
+
function undestroy() {
|
|
15054
|
+
if (this._readableState) {
|
|
15055
|
+
this._readableState.destroyed = false;
|
|
15056
|
+
this._readableState.reading = false;
|
|
15057
|
+
this._readableState.ended = false;
|
|
15058
|
+
this._readableState.endEmitted = false;
|
|
15059
|
+
}
|
|
15060
|
+
if (this._writableState) {
|
|
15061
|
+
this._writableState.destroyed = false;
|
|
15062
|
+
this._writableState.ended = false;
|
|
15063
|
+
this._writableState.ending = false;
|
|
15064
|
+
this._writableState.finished = false;
|
|
15065
|
+
this._writableState.errorEmitted = false;
|
|
15066
|
+
}
|
|
15067
|
+
}
|
|
15068
|
+
function emitErrorNT(self, err) {
|
|
15069
|
+
self.emit('error', err);
|
|
15070
|
+
}
|
|
15071
|
+
destroy_1 = {
|
|
15072
|
+
destroy: destroy,
|
|
15073
|
+
undestroy: undestroy
|
|
15074
|
+
};
|
|
15075
|
+
return destroy_1;
|
|
15057
15076
|
}
|
|
15058
|
-
var destroy_1 = {
|
|
15059
|
-
destroy: destroy,
|
|
15060
|
-
undestroy: undestroy
|
|
15061
|
-
};
|
|
15062
15077
|
|
|
15063
15078
|
var _stream_writable;
|
|
15064
15079
|
var hasRequired_stream_writable;
|
|
@@ -15104,7 +15119,7 @@ function require_stream_writable () {
|
|
|
15104
15119
|
return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;
|
|
15105
15120
|
}
|
|
15106
15121
|
/*</replacement>*/
|
|
15107
|
-
var destroyImpl =
|
|
15122
|
+
var destroyImpl = requireDestroy();
|
|
15108
15123
|
util.inherits(Writable, Stream);
|
|
15109
15124
|
function nop() { }
|
|
15110
15125
|
function WritableState(options, stream) {
|
|
@@ -16108,8 +16123,8 @@ function require_stream_readable () {
|
|
|
16108
16123
|
/*<replacement>*/
|
|
16109
16124
|
var debug = function () { };
|
|
16110
16125
|
/*</replacement>*/
|
|
16111
|
-
var BufferList
|
|
16112
|
-
var destroyImpl =
|
|
16126
|
+
var BufferList = requireBufferList().BufferList;
|
|
16127
|
+
var destroyImpl = requireDestroy();
|
|
16113
16128
|
var StringDecoder;
|
|
16114
16129
|
util.inherits(Readable, Stream);
|
|
16115
16130
|
var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume'];
|
|
@@ -16159,7 +16174,7 @@ function require_stream_readable () {
|
|
|
16159
16174
|
// A linked list is used to store data chunks instead of an array because the
|
|
16160
16175
|
// linked list can remove elements from the beginning faster than
|
|
16161
16176
|
// array.shift()
|
|
16162
|
-
this.buffer = new BufferList
|
|
16177
|
+
this.buffer = new BufferList();
|
|
16163
16178
|
this.length = 0;
|
|
16164
16179
|
this.pipes = null;
|
|
16165
16180
|
this.pipesCount = 0;
|
|
@@ -67508,7 +67523,7 @@ var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Arr
|
|
|
67508
67523
|
** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
67509
67524
|
** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
67510
67525
|
*/
|
|
67511
|
-
t.exports=function(){var t=function(t,e,n,r,i,o){for(var s=function(t,e){var n=t.toString(16);return n.length<2&&(n="0"+n),e&&(n=n.toUpperCase()),n},a=e;a<=n;a++)i[o++]=s(t[a],r);return i},e=function(t,e,n,r,i){for(var o=e;o<=n;o+=2)r[i++]=parseInt(t.substr(o,2),16);},n="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-:+=^!/*?&<>()[]{}@%$#".split(""),r=[0,68,0,84,83,82,72,0,75,76,70,65,0,63,62,69,0,1,2,3,4,5,6,7,8,9,64,0,73,66,74,71,81,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,77,0,78,67,0,0,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,79,0,80,0,0],i=function(t,e){for(var r="",i=0,o=0;i<e;)if(o=256*o+t[i++],i%4==0){for(var s=52200625;s>=1;){var a=Math.floor(o/s)%85;r+=n[a],s/=85;}o=0;}return r},o=function(t,e){var n=t.length;if(n%5!=0)throw new Error("z85_decode: invalid input length (multiple of 5 expected)");void 0===e&&(e=new Array(4*n/5));for(var i=0,o=0,s=0;i<n;){var a=t.charCodeAt(i++)-32;if(a<0||a>=r.length)break;if(s=85*s+r[a],i%5==0){for(var c=16777216;c>=1;)e[o++]=Math.trunc(s/c%256),c/=256;s=0;}}return e},s=function(t,e){var n={ibits:8,obits:8,obigendian:!0};for(var r in e)void 0!==n[r]&&(n[r]=e[r]);for(var i,o,s,a=[],c=0,u=0,l=0,h=t.length;0===u&&(o=t.charCodeAt(c++)),i=o>>n.ibits-(u+8)&255,u=(u+8)%n.ibits,n.obigendian?0===l?s=i<<n.obits-8:s|=i<<n.obits-8-l:0===l?s=i:s|=i<<l,!(0==(l=(l+8)%n.obits)&&(a.push(s),c>=h)););return a},a=function(t,e){var n={ibits:32,ibigendian:!0};for(var r in e)void 0!==n[r]&&(n[r]=e[r]);var i="",o=4294967295;n.ibits<32&&(o=(1<<n.ibits)-1);for(var s=t.length,a=0;a<s;a++)for(var c=t[a]&o,u=0;u<n.ibits;u+=8)n.ibigendian?i+=String.fromCharCode(c>>n.ibits-8-u&255):i+=String.fromCharCode(c>>u&255);return i},c=8,u=8,l=256,h=function(t,e,n,r,i,o,s,a){return [a,s,o,i,r,n,e,t]},d=function(){return h(0,0,0,0,0,0,0,0)},p=function(t){return t.slice(0)},f=function(t){for(var e=d(),n=0;n<c;n++)e[n]=Math.floor(t%l),t/=l;return e},v=function(t){for(var e=0,n=c-1;n>=0;n--)e*=l,e+=t[n];return Math.floor(e)},E=function(t,e){for(var n=0,r=0;r<c;r++)n+=t[r]+e[r],t[r]=Math.floor(n%l),n=Math.floor(n/l);return n},g=function(t,e){for(var n=0,r=0;r<c;r++)n+=t[r]*e,t[r]=Math.floor(n%l),n=Math.floor(n/l);return n},_=function(t,e){var n,r,i,o=new Array(c+c);for(n=0;n<c+c;n++)o[n]=0;for(n=0;n<c;n++){for(i=0,r=0;r<c;r++)i+=t[n]*e[r]+o[n+r],o[n+r]=i%l,i/=l;for(;r<c+c-n;r++)i+=o[n+r],o[n+r]=i%l,i/=l;}for(n=0;n<c;n++)t[n]=o[n];return o.slice(c,c)},m=function(t,e){for(var n=0;n<c;n++)t[n]&=e[n];return t},b=function(t,e){for(var n=0;n<c;n++)t[n]|=e[n];return t},y=function(t,e){var n=d();for(var r=Math.floor(e/u),i=0;i<r;i++){for(var o=c-1-1;o>=0;o--)n[o+1]=n[o];for(n[0]=t[0],o=0;o<c-1;o++)t[o]=t[o+1];t[o]=0;}return v(n)},O=function(t,e){if(e>c*u)throw new Error("ui64_ror: invalid number of bits to shift");var n,r=new Array(c+c);for(n=0;n<c;n++)r[n+c]=t[n],r[n]=0;var i=Math.floor(e/u),o=e%u;for(n=i;n<c+c-1;n++)r[n-i]=(r[n]>>>o|r[n+1]<<u-o)&(1<<u)-1;for(r[c+c-1-i]=r[c+c-1]>>>o&(1<<u)-1,n=c+c-1-i+1;n<c+c;n++)r[n]=0;for(n=0;n<c;n++)t[n]=r[n+c];return r.slice(0,c)},w=function(t,e){if(e>c*u)throw new Error("ui64_rol: invalid number of bits to shift");var n,r=new Array(c+c);for(n=0;n<c;n++)r[n+c]=0,r[n]=t[n];var i=Math.floor(e/u),o=e%u;for(n=c-1-i;n>0;n--)r[n+i]=(r[n]<<o|r[n-1]>>>u-o)&(1<<u)-1;for(r[0+i]=r[0]<<o&(1<<u)-1,n=0+i-1;n>=0;n--)r[n]=0;for(n=0;n<c;n++)t[n]=r[n];return r.slice(c,c)},N=function(t,e){for(var n=0;n<c;n++)t[n]^=e[n];},C=function(t,e){var n=(65535&t)+(65535&e);return (t>>16)+(e>>16)+(n>>16)<<16|65535&n},T=function(t,e){return t<<e&4294967295|t>>>32-e&4294967295},S=function(t,e){function n(t,e,n,r){return t<20?e&n|~e&r:t<40?e^n^r:t<60?e&n|e&r|n&r:e^n^r}function r(t){return t<20?1518500249:t<40?1859775393:t<60?-1894007588:-899497514}t[e>>5]|=128<<24-e%32,t[15+(e+64>>9<<4)]=e;for(var i=Array(80),o=1732584193,s=-271733879,a=-1732584194,c=271733878,u=-1009589776,l=0;l<t.length;l+=16){for(var h=o,d=s,p=a,f=c,v=u,E=0;E<80;E++){i[E]=E<16?t[l+E]:T(i[E-3]^i[E-8]^i[E-14]^i[E-16],1);var g=C(C(T(o,5),n(E,s,a,c)),C(C(u,i[E]),r(E)));u=c,c=a,a=T(s,30),s=o,o=g;}o=C(o,h),s=C(s,d),a=C(a,p),c=C(c,f),u=C(u,v);}return [o,s,a,c,u]},A=function(t){return a(S(s(t,{ibits:8,obits:32,obigendian:!0}),8*t.length),{ibits:32,ibigendian:!0})},I=function(t,e){function n(t,e,n,r,i,o){return C(T(C(C(e,t),C(r,o)),i),n)}function r(t,e,r,i,o,s,a){return n(e&r|~e&i,t,e,o,s,a)}function i(t,e,r,i,o,s,a){return n(e&i|r&~i,t,e,o,s,a)}function o(t,e,r,i,o,s,a){return n(e^r^i,t,e,o,s,a)}function s(t,e,r,i,o,s,a){return n(r^(e|~i),t,e,o,s,a)}t[e>>5]|=128<<e%32,t[14+(e+64>>>9<<4)]=e;for(var a=1732584193,c=-271733879,u=-1732584194,l=271733878,h=0;h<t.length;h+=16){var d=a,p=c,f=u,v=l;a=r(a,c,u,l,t[h+0],7,-680876936),l=r(l,a,c,u,t[h+1],12,-389564586),u=r(u,l,a,c,t[h+2],17,606105819),c=r(c,u,l,a,t[h+3],22,-1044525330),a=r(a,c,u,l,t[h+4],7,-176418897),l=r(l,a,c,u,t[h+5],12,1200080426),u=r(u,l,a,c,t[h+6],17,-1473231341),c=r(c,u,l,a,t[h+7],22,-45705983),a=r(a,c,u,l,t[h+8],7,1770035416),l=r(l,a,c,u,t[h+9],12,-1958414417),u=r(u,l,a,c,t[h+10],17,-42063),c=r(c,u,l,a,t[h+11],22,-1990404162),a=r(a,c,u,l,t[h+12],7,1804603682),l=r(l,a,c,u,t[h+13],12,-40341101),u=r(u,l,a,c,t[h+14],17,-1502002290),a=i(a,c=r(c,u,l,a,t[h+15],22,1236535329),u,l,t[h+1],5,-165796510),l=i(l,a,c,u,t[h+6],9,-1069501632),u=i(u,l,a,c,t[h+11],14,643717713),c=i(c,u,l,a,t[h+0],20,-373897302),a=i(a,c,u,l,t[h+5],5,-701558691),l=i(l,a,c,u,t[h+10],9,38016083),u=i(u,l,a,c,t[h+15],14,-660478335),c=i(c,u,l,a,t[h+4],20,-405537848),a=i(a,c,u,l,t[h+9],5,568446438),l=i(l,a,c,u,t[h+14],9,-1019803690),u=i(u,l,a,c,t[h+3],14,-187363961),c=i(c,u,l,a,t[h+8],20,1163531501),a=i(a,c,u,l,t[h+13],5,-1444681467),l=i(l,a,c,u,t[h+2],9,-51403784),u=i(u,l,a,c,t[h+7],14,1735328473),a=o(a,c=i(c,u,l,a,t[h+12],20,-1926607734),u,l,t[h+5],4,-378558),l=o(l,a,c,u,t[h+8],11,-2022574463),u=o(u,l,a,c,t[h+11],16,1839030562),c=o(c,u,l,a,t[h+14],23,-35309556),a=o(a,c,u,l,t[h+1],4,-1530992060),l=o(l,a,c,u,t[h+4],11,1272893353),u=o(u,l,a,c,t[h+7],16,-155497632),c=o(c,u,l,a,t[h+10],23,-1094730640),a=o(a,c,u,l,t[h+13],4,681279174),l=o(l,a,c,u,t[h+0],11,-358537222),u=o(u,l,a,c,t[h+3],16,-722521979),c=o(c,u,l,a,t[h+6],23,76029189),a=o(a,c,u,l,t[h+9],4,-640364487),l=o(l,a,c,u,t[h+12],11,-421815835),u=o(u,l,a,c,t[h+15],16,530742520),a=s(a,c=o(c,u,l,a,t[h+2],23,-995338651),u,l,t[h+0],6,-198630844),l=s(l,a,c,u,t[h+7],10,1126891415),u=s(u,l,a,c,t[h+14],15,-1416354905),c=s(c,u,l,a,t[h+5],21,-57434055),a=s(a,c,u,l,t[h+12],6,1700485571),l=s(l,a,c,u,t[h+3],10,-1894986606),u=s(u,l,a,c,t[h+10],15,-1051523),c=s(c,u,l,a,t[h+1],21,-2054922799),a=s(a,c,u,l,t[h+8],6,1873313359),l=s(l,a,c,u,t[h+15],10,-30611744),u=s(u,l,a,c,t[h+6],15,-1560198380),c=s(c,u,l,a,t[h+13],21,1309151649),a=s(a,c,u,l,t[h+4],6,-145523070),l=s(l,a,c,u,t[h+11],10,-1120210379),u=s(u,l,a,c,t[h+2],15,718787259),c=s(c,u,l,a,t[h+9],21,-343485551),a=C(a,d),c=C(c,p),u=C(u,f),l=C(l,v);}return [a,c,u,l]},R=function(t){return a(I(s(t,{ibits:8,obits:32,obigendian:!1}),8*t.length),{ibits:32,ibigendian:!1})},D=function(t){this.mul=h(88,81,244,45,76,149,127,45),this.inc=h(20,5,123,126,247,103,129,79),this.mask=h(0,0,0,0,255,255,255,255),this.state=p(this.inc),this.next(),m(this.state,this.mask),t=f(void 0!==t?t>>>0:4294967295*Math.random()>>>0),b(this.state,t),this.next();};D.prototype.next=function(){var t=p(this.state);_(this.state,this.mul),E(this.state,this.inc);var e=p(t);O(e,18),N(e,t),O(e,27);var n=p(t);O(n,59),m(e,this.mask);var r=v(n),i=p(e);return w(i,32-r),O(e,r),N(e,i),v(e)};var H=new D,L=function(t,e){for(var n=[],r=0;r<t;r++)n[r]=H.next()%e;return n},P=0,U=0,k=function(){if(1===arguments.length&&"string"==typeof arguments[0])this.parse.apply(this,arguments);else if(arguments.length>=1&&"number"==typeof arguments[0])this.make.apply(this,arguments);else {if(arguments.length>=1)throw new Error("UUID: constructor: invalid arguments");for(var t=0;t<16;t++)this[t]=0;}};return "undefined"!=typeof Uint8Array?k.prototype=new Uint8Array(16):Buffer$1?k.prototype=Buffer$1.alloc(16):k.prototype=new Array(16),k.prototype.constructor=k,k.prototype.make=function(t){var e,n=this;if(1===t){var r=(new Date).getTime();r!==P?U=0:U++,P=r;var i,o=f(r);g(o,1e4),E(o,h(1,178,29,210,19,129,64,0)),U>0&&E(o,f(U)),i=y(o,8),n[3]=255&i,i=y(o,8),n[2]=255&i,i=y(o,8),n[1]=255&i,i=y(o,8),n[0]=255&i,i=y(o,8),n[5]=255&i,i=y(o,8),n[4]=255&i,i=y(o,8),n[7]=255&i,i=y(o,8),n[6]=15&i;var s=L(2,255);n[8]=s[0],n[9]=s[1];var a=L(6,255);for(a[0]|=1,a[0]|=2,e=0;e<6;e++)n[10+e]=a[e];}else if(4===t){var c=L(16,255);for(e=0;e<16;e++)this[e]=c[e];}else {if(3!==t&&5!==t)throw new Error("UUID: make: invalid version");var u="",l="object"==typeof arguments[1]&&arguments[1]instanceof k?arguments[1]:(new k).parse(arguments[1]);for(e=0;e<16;e++)u+=String.fromCharCode(l[e]);u+=arguments[2];var d=3===t?R(u):A(u);for(e=0;e<16;e++)n[e]=d.charCodeAt(e);}return n[6]&=15,n[6]|=t<<4,n[8]&=63,n[8]|=128,n},k.prototype.format=function(e){var n,r;return "z85"===e?n=i(this,16):"b16"===e?(r=Array(32),t(this,0,15,!0,r,0),n=r.join("")):void 0!==e&&"std"!==e||(r=new Array(36),t(this,0,3,!1,r,0),r[8]="-",t(this,4,5,!1,r,9),r[13]="-",t(this,6,7,!1,r,14),r[18]="-",t(this,8,9,!1,r,19),r[23]="-",t(this,10,15,!1,r,24),n=r.join("")),n},k.prototype.toString=function(t){return this.format(t)},k.prototype.toJSON=function(){return this.format("std")},k.prototype.parse=function(t,n){if("string"!=typeof t)throw new Error("UUID: parse: invalid argument (type string expected)");if("z85"===n)o(t,this);else if("b16"===n)e(t,0,35,this,0);else if(void 0===n||"std"===n){var r={nil:"00000000-0000-0000-0000-000000000000","ns:DNS":"6ba7b810-9dad-11d1-80b4-00c04fd430c8","ns:URL":"6ba7b811-9dad-11d1-80b4-00c04fd430c8","ns:OID":"6ba7b812-9dad-11d1-80b4-00c04fd430c8","ns:X500":"6ba7b814-9dad-11d1-80b4-00c04fd430c8"};if(void 0!==r[t])t=r[t];else if(!t.match(/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/))throw new Error('UUID: parse: invalid string representation (expected "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")');e(t,0,7,this,0),e(t,9,12,this,4),e(t,14,17,this,6),e(t,19,22,this,8),e(t,24,35,this,10);}return this},k.prototype.export=function(){for(var t=Array(16),e=0;e<16;e++)t[e]=this[e];return t},k.prototype.import=function(t){if(!("object"==typeof t&&t instanceof Array))throw new Error("UUID: import: invalid argument (type Array expected)");if(16!==t.length)throw new Error("UUID: import: invalid argument (Array of length 16 expected)");for(var e=0;e<16;e++){if("number"!=typeof t[e])throw new Error("UUID: import: invalid array element #"+e+" (type Number expected)");if(!isFinite(t[e])||Math.floor(t[e])!==t[e])throw new Error("UUID: import: invalid array element #"+e+" (Number with integer value expected)");if(!(t[e]>=0&&t[e]<=255))throw new Error("UUID: import: invalid array element #"+e+" (Number with integer value in range 0...255 expected)");this[e]=t[e];}return this},k.prototype.compare=function(t){if("object"!=typeof t)throw new Error("UUID: compare: invalid argument (type UUID expected)");if(!(t instanceof k))throw new Error("UUID: compare: invalid argument (type UUID expected)");for(var e=0;e<16;e++){if(this[e]<t[e])return -1;if(this[e]>t[e])return 1}return 0},k.prototype.equal=function(t){return 0===this.compare(t)},k.prototype.fold=function(t){if(void 0===t)throw new Error("UUID: fold: invalid argument (number of fold operations expected)");if(t<1||t>4)throw new Error("UUID: fold: invalid argument (1-4 fold operations expected)");for(var e=16/Math.pow(2,t),n=new Array(e),r=0;r<e;r++){for(var i=0,o=0;r+o<16;o+=e)i^=this[r+o];n[r]=i;}return n},k.PCG=D,k}(),t.exports.default=t.exports;}));class Ze{constructor(t){this.transport=t,this.gnpLockAcquired=t.consoleAppEvent.pipe(Jt((t=>"response-gnp-lock"===t.event)),Lt((t=>t.token)),fe(1)),this.gnpLockAcquired.subscribe();}acquireGnpLock(t){const e=new Xe(4).toString(),n={action:"request-gnp-lock",id:t,token:e},r=this.gnpLockAcquired.pipe(ue((t=>t===e)));return this.transport.writeAction(n),r}releaseGnpLock(t,e){const n={action:"release-gnp-lock",id:t,token:e};this.transport.writeAction(n);}}!function(t){t[t.INPUT=0]="INPUT",t[t.OUTPUT=1]="OUTPUT",t[t.FEATURE=2]="FEATURE";}(Qe||(Qe={})),function(t){t.ABSOLUTE="absolute",t.RELATIVE="relative";}(Je||(Je={}));class tn{constructor(t){this.id=t;}equals(t){return this.id===t.id}startsWith(t){return this.id.startsWith(t.id)}toString(){return this.id}}function en(t,e,n){const r=t.toString(16).padStart(4,"0"),i=e.toString(16).padStart(4,"0");return new tn(`${r}:${i}:${n}`)}class nn{constructor(t,e,n,r){this.id=t,this.usagePage=e,this.usage=n,this.value=r;}isArray(){return Array.isArray(this.value)}static deserialize(t,e){return new nn(new tn(t),e.usagePage,e.usage,e.value)}}class rn{constructor(t,e,n){this.descriptor=e,this.transport=n,this.transportId=t.transportId,this.input=n.consoleAppEvent.pipe(Jt((t=>t.id===this.transportId)),rn.inputReportsFilter);}output(t,e,n){const r={action:"hid-output",id:this.transportId,usagePage:t,usage:e,value:n};this.transport.writeAction(r);}getFeatureReport(t,e){const n=new Xe(4).toString(),r={action:"request-hid-feature",id:this.transportId,token:n,usagePage:t,usage:e};return this.transport.writeAction(r),this.transport.consoleAppEvent.pipe(ue((t=>"response-hid-feature"===t.event&&t.token===n)),Lt((t=>t.value)))}setFeatureReport(t,e,n){const r={action:"set-hid-feature",id:this.transportId,usagePage:t,usage:e,value:n};this.transport.writeAction(r);}findDescriptor(t,e,n){return this.descriptor.find((r=>r.usagePage===t&&r.usage===e&&r.reportType===n))}}function on(t){return e=>e.pipe(function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=it(t);return M$1((function(e,r){for(var i=t.length,a=new Array(i),c=t.map((function(){return !1})),u=!1,l=function(e){Et(t[e]).subscribe(B$1(r,(function(t){a[e]=t,u||c[e]||(c[e]=!0,(u=c.every(k))&&(c=null));}),w));},h=0;h<i;h++)l(h);e.subscribe(B$1(r,(function(t){if(u){var e=s([t],o(a));r.next(n?n.apply(void 0,s([],o(e))):e);}})));}))}(t),Jt((([t,e])=>e)),Lt((([t,e])=>t)))}rn.inputReportsFilter=t=>t.pipe(Jt((t=>"hid-input"===t.event)),Lt((t=>nn.deserialize(t.id,t))));class sn{static typeFromAttr(t){return t>>6}static packetLengthFromAttr(t){return t&this.lengthMask}static deserialize(t){const e=t[0],n=t[1],r=t[2],i=this.typeFromAttr(t[3]),o=t[4],s=t[5],a=this.packetLengthFromAttr(t[3]),c=t.slice(6,a);return new Me(e,n,i,o,s,c,r)}}sn.lengthMask=63;class an{constructor(){this.data=[];}hasHeader(){return this.data.length>=an.gnpPacketHeaderLength}expectedPacketLength(){if(!this.hasHeader())throw new be("Unable to get expected packet length without a full header",Kt.UNEXPECTED_ERROR);return sn.packetLengthFromAttr(this.data[3])}appendData(t){this.hasHeader()&&this.expectedPacketLength()>an.gnpPacketMaxLength&&(this.data=[]),this.data=this.data.concat(t);}hasFullPacket(){if(!this.hasHeader())return !1;const t=this.expectedPacketLength();return this.data.length>=t}getPacketAndReset(){if(!this.hasFullPacket())throw new be("Trying to get packet but buffer is not complete",Kt.UNEXPECTED_ERROR);const t=sn.deserialize(Uint8Array.from(this.data));return this.data=[],t}}an.gnpPacketHeaderLength=6,an.gnpPacketMaxLength=63;class cn{static attrFromTypeAndPayloadLength(t,e){return (t<<6)+(e+6)}static serialize(t){const e=new Uint8Array(6);e[0]=t.destination,e[1]=t.source,e[2]=t.sequenceNumber,e[3]=this.attrFromTypeAndPayloadLength(t.type,t.payload.length),e[4]=t.command,e[5]=t.subCommand;const n=new Uint8Array(e.length+t.payload.length);return n.set(e),n.set(t.payload,e.length),n}}const un=()=>{};function ln(t){return me((e=>t()),(e=>t()),(()=>un))}const hn=()=>{return t=t=>t.command===ke.NACK,e=t=>{const e=t.subCommand in Ge?Ge[t.subCommand]:t.subCommand;return new be(`Got NACK response. Reason: ${e}`,Kt.DEVICE_ERROR)},n=>n.pipe(Lt((n=>t(n)?Ct(e(n)):Nt(n))),ge());var t,e;},dn=t=>ue((e=>e.type===Ue.REPLY&&e.sequenceNumber===t.sequenceNumber&&e.destination===t.source&&e.source===t.destination));class pn{constructor(t,e,n,r,i=0){this.hidChannel=t,this.gnpLock=e,this.transportId=n,this.primaryAddress=r,this.lockQueue=[],this.packets=t.input.pipe(pn.inputFilter),this.events=this.packets.pipe(pn.eventsFilter),this.nextSequenceNumber=i;}static get inputFilter(){return t=>{const e=t.pipe(Jt((t=>t.usagePage===He.GN_PROTOCOL&&t.usage===Le.DATA&&t.isArray()))),n=new an;return e.pipe(Pt((t=>{const e=t.value;if(n.appendData(e),n.hasFullPacket()){return Nt(n.getPacketAndReset())}return qt})),de())}}static supportsGnpOverHid(t){return void 0!==t.findDescriptor(He.GN_PROTOCOL,Le.DATA,Qe.OUTPUT)}getNextSequenceNumber(){const t=this.nextSequenceNumber;return this.nextSequenceNumber=(this.nextSequenceNumber+1)%255,t}doWithGnpLockHeld(t){this.lockQueue.push(t),this.lockQueue.length>1||this.processLockQueue();}processLockQueue(){this.gnpLock.acquireGnpLock(this.transportId).subscribe((t=>{(0, this.lockQueue[0])((t=>{var e;const n=null===(e=this.hidChannel.findDescriptor(He.GN_PROTOCOL,Le.DATA,Qe.OUTPUT))||void 0===e?void 0:e.reportSize;if(!n)throw new be("Cannot send GNP packets to this device.",Kt.DEVICE_ERROR);const r=cn.serialize(t);let i=0;do{const t=Math.min(r.length-i,n),e=r.subarray(i,i+t);i+=e.length,this.hidChannel.output(He.GN_PROTOCOL,Le.DATA,Array.from(e));}while(i<r.length)}),this.packets,(()=>{this.gnpLock.releaseGnpLock(this.transportId,t),this.lockQueue.splice(0,1),this.lockQueue.length>0&&this.processLockQueue();}));}));}sendEvent(t,e,n=this.primaryAddress){const r=new Me(n,Pe.PC_ADDR,Ue.EVENT,t.command,t.subCommand,t.serialize(e),0);this.doWithGnpLockHeld(((t,e,n)=>{t(r),n();}));}read(t,e=this.primaryAddress,n=2500){const r=new Fe(t,(t=>new Uint8Array));return this.readWithParams(r,null,e,n)}readWithParams(t,e,n=this.primaryAddress,r=2500){const i=new Me(n,Pe.PC_ADDR,Ue.READ,t.command,t.subCommand,t.serialize(e),this.getNextSequenceNumber()),o=new Y;return this.doWithGnpLockHeld(((e,n,s)=>{n.pipe(dn(i),hn(),ue((t=>t.command===i.command&&t.subCommand===i.subCommand)),Dt(r),ln(s),Lt((e=>t.deserialize(e)))).subscribe(o),e(i);})),o}write(t,e,n=this.primaryAddress,r=2500){const i=new Me(n,Pe.PC_ADDR,Ue.WRITE,t.command,t.subCommand,t.serialize(e),this.getNextSequenceNumber()),o=new Y;return this.doWithGnpLockHeld(((t,e,n)=>{e.pipe(dn(i),hn(),ue((t=>t.command===ke.ACK)),Dt(r),ln(n),Lt((()=>!0))).subscribe(o),t(i);})),o}}pn.eventsFilter=t=>t.pipe(Jt((t=>t.type===Ue.EVENT)));class fn{constructor(t,e){this.parentGnpChannel=t,this.primaryAddress=e,this.events=t.events.pipe(Jt((t=>t.source===this.primaryAddress)));}sendEvent(t,e,n){this.parentGnpChannel.sendEvent(t,e,this.primaryAddress);}read(t,e,n){return this.parentGnpChannel.read(t,this.primaryAddress,n)}readWithParams(t,e,n,r){return this.parentGnpChannel.readWithParams(t,e,this.primaryAddress,r)}write(t,e,n,r){return this.parentGnpChannel.write(t,e,this.primaryAddress,r)}}function vn(t,e,n,r){if(!pn.supportsGnpOverHid(t))return Ct((()=>new be("Device does not support GNP commands.",Kt.DEVICE_ERROR)));const i=Nt(Pe.HS_BT_USB_ADDR,Pe.BASE_ADDR,Pe.CRADLE_ADDR,Pe.HS1_ADDR,Pe.HS_CRADLE_ADDR).pipe(Lt(((r,i)=>Gt((()=>{const o=new pn(t,new Ze(e),n,r,i);return o.read(qe,r,500).pipe(Lt((t=>o)),ee((()=>et)))})))),kt(),ie(1),ae((()=>new be("GNP probe failed.",Kt.DEVICE_ERROR))));return Xt(r.pipe(Pt((t=>Ct((()=>new be("Device was suddenly disconnected.",Kt.DEVICE_ERROR)))))),i).pipe(de())}function En(t,e){return new fn(t,e)}class gn{constructor(){this.primaryAddress=Pe.BASE_ADDR,this.events=qt;}subscribeToEvent(t,e){return Ct((()=>new be("This device does not support GNP commands.",Kt.FEATURE_NOT_SUPPORTED)))}sendEvent(t,e,n){throw new be("This device does not support GNP commands.",Kt.FEATURE_NOT_SUPPORTED)}read(t,e,n){return Ct((()=>new be("This device does not support GNP commands.",Kt.FEATURE_NOT_SUPPORTED)))}readWithParams(t,e,n,r){return Ct((()=>new be("This device does not support GNP commands.",Kt.FEATURE_NOT_SUPPORTED)))}write(t,e,n,r){return Ct((()=>new be("This device does not support GNP commands.",Kt.FEATURE_NOT_SUPPORTED)))}}class _n{constructor(t){this.transportId=t,this.isChild=!1;}equals(t){return this.isChild===t.isChild&&this.transportId===t.transportId}toString(){return this.transportId}}class mn{constructor(t,e){this.parentId=t,this.gnpAddress=e,this.isChild=!0,this.transportId=t.transportId;}equals(t){if(this.isChild===t.isChild){const e=t;return this.parentId.equals(e.parentId)&&this.gnpAddress===e.gnpAddress}return !1}toString(){return `0x${t=this.gnpAddress,t.toString(16).padStart(2,"0").toUpperCase()}@${this.transportId}`;var t;}}var bn,yn,On;!function(t){t.NO_TRACKING="no-tracking",t.TRACK_ERRORS="track-errors",t.TRACK_USAGE="track-usage",t.TRACK_ALL="track-all";}(bn||(bn={})),function(t){t[t.BLUETOOTH=0]="BLUETOOTH",t[t.INDIRECT=1]="INDIRECT",t[t.USB=2]="USB";}(yn||(yn={})),function(t){t[t.BASE=0]="BASE",t[t.HEADSET=1]="HEADSET",t[t.DESKSTAND=2]="DESKSTAND",t[t.OTHER=3]="OTHER",t[t.DONGLE=4]="DONGLE",t[t.PC=5]="PC",t[t.EHS=6]="EHS",t[t.USB=7]="USB",t[t.SPEAKER_PHONE=8]="SPEAKER_PHONE",t[t.INDICATOR=9]="INDICATOR",t[t.MOBILE=10]="MOBILE",t[t.NONE=11]="NONE",t[t.LOCAL=12]="LOCAL",t[t.DISPLAY=13]="DISPLAY",t[t.HS_CRADLE=14]="HS_CRADLE",t[t.HS_CRADLE2=15]="HS_CRADLE2",t[t.MOBILE_IAP=16]="MOBILE_IAP",t[t.CRADLE=17]="CRADLE",t[t.VIDEO=18]="VIDEO",t[t.NOT_GN=252]="NOT_GN",t[t.ANY_GN=253]="ANY_GN",t[t.NOT_INIT=254]="NOT_INIT",t[t.ANY=255]="ANY";}(On||(On={}));class wn{constructor(t,e,n,r,i,o,s,a,c,u,l){this.id=t,this.type=e,this.hidChannel=n,this.events=r,this.primaryAddress=i,this.sendEvent=o,this.read=s,this.readWithParams=a,this.write=c,this.onDisconnect=u,this.parentConnectionId=l,this.onDisconnect.subscribe({error:w});}static createConnection(t,e,n,r,i,o){const s=r.sendEvent.bind(r),a=r.read.bind(r),c=r.readWithParams.bind(r),u=r.write.bind(r);return new wn(t,e,n,r.events,r.primaryAddress,s,a,c,u,i,o)}}const Nn=(t=3,e=500)=>n=>n.pipe(Pt(((n,r)=>{const i=r+1;return i>t?Ct((()=>n)):Ft(i*i*e)})));function Cn(t,e,n,r=1e3,i=3,o=100){return Gt((()=>t.read(e,n,r))).pipe(he(Nn(i,o)))}function Tn(t,e,n){const{deviceType:r,address:i}=n;return {transportId:e.transportId,vid:e.vid,pid:Cn(t,Ve,i),name:Cn(t,Ye,i),serialNumber:Cn(t,$e,i),capabilities:e.capabilities,deviceType:r,connectionGnpAddress:i}}class Sn{constructor(t,e,n=Tn,r=wn.createConnection,i=En){this.parentConnection=e,this.connectionCreator=r,this.createChildGnpChannel=i;const o=e.events.pipe(Jt((t=>t.command===ke.DEVICE&&t.subCommand===xe.ATTACH_EVENT)),Lt((t=>({deviceType:t.payload[0],address:t.payload[1]})))).pipe(Lt(n.bind(null,e,t)));this.connectionEvents=o.pipe(Lt((t=>{const n=Xt(e.events.pipe(ue((e=>e.command===ke.DEVICE&&e.subCommand===xe.DETACH_EVENT&&e.payload[1]===t.connectionGnpAddress)),Lt(w)),e.onDisconnect);return {attach:t,detach:n}})),Pt((t=>te(Nt(t.attach),this.createConnection(t.attach,t.detach)))),Lt((([t,e])=>({event:t,connection:e}))),_e(e.onDisconnect)),e.sendEvent(Be,[]);}createConnection(t,e){const n=t.connectionGnpAddress,r=this.createChildGnpChannel(this.parentConnection,n),i=new mn(this.parentConnection.id,n);return Nt(this.connectionCreator(i,yn.INDIRECT,this.parentConnection.hidChannel,r,e,this.parentConnection.id))}}const An={command:ke.IDENT,subCommand:xe.TYPE,deserialize:t=>{const{payload:e}=t,n=e[0];if(n<1||n>=e.length)throw new be("Cannot get device type.",Kt.DEVICE_ERROR);return e[1]}};function In(t,e,n,r=Bt.ERROR,i=Wt.JS_LIB){const o=`${t} ${function(t){if(t instanceof be){const e=t;return `JabraError: ${e.message} (type: ${e.type})`}if(t instanceof Error){const e=t;return `Error: ${e.message} (name: ${e.name})`}return `Unknown error: ${t}`}(e)}`;ye(o,n,r,i);}function Rn(t){return new Sn(t.event,t.connection).connectionEvents}class Dn{constructor(t,e,n=((t,e,n)=>new rn(t,e,n)),r=vn,i=Rn,o=wn.createConnection){this.transport=t,this.logger=e,this.createHidChannel=n,this.createRootGnpChannel=r,this.connectionCreator=o;const s=this.transport.consoleAppEvent.pipe(Jt((t=>"attach"===t.event)),Lt(Dn.createAttachEvent),ee(((t,e)=>(In("",t,this.logger),e)))).pipe(Lt((t=>{const e=this.transport.consoleAppEvent.pipe(Jt((t=>"detach"===t.event)),ue((e=>Dn.getTransportId(e)===t.transportId)),Lt(w),fe());return e.subscribe(),{attach:t,detach:e}})),Pt((t=>this.createConnection(t.attach,t.detach))),de()),a=s.pipe(Jt((t=>t.event.deviceType===On.DONGLE)),Jt((t=>pn.supportsGnpOverHid(t.connection.hidChannel))),Pt((t=>i(t))));this.connectionEvents=Mt(s,a).pipe(de());}static convertToReportType(t){switch(t){case"input":return Qe.INPUT;case"output":return Qe.OUTPUT;case"feature":return Qe.FEATURE;default:throw new be(`${t} is not a valid ReportType`,Kt.UNEXPECTED_ERROR)}}static convertToValueType(t){switch(t){case"absolute":return Je.ABSOLUTE;case"relative":return Je.RELATIVE;default:throw new be(`${t} Not a valid ValueType`,Kt.UNEXPECTED_ERROR)}}static createDescriptor(t){return t.map((t=>({reportType:Dn.convertToReportType(t.reportType),usagePage:t.usagePage,usage:t.usage,valueType:Dn.convertToValueType(t.valueType),reportSize:t.reportSize})))}static getMandatoryField(t,e){const n=t[e];if(void 0===n)throw new be(`JSON event lacks required field "${e}: ${JSON.stringify(t)}`,Kt.UNEXPECTED_ERROR);return n}static getTransportId(t){return Dn.getMandatoryField(t,"id")}static createAttachEvent(t){return {transportId:Dn.getTransportId(t),vid:Dn.getMandatoryField(t,"vid"),pid:Nt(Dn.getMandatoryField(t,"pid")),name:Nt(Dn.getMandatoryField(t,"name")),serialNumber:Nt(Dn.getMandatoryField(t,"serialNumber")),capabilities:Dn.createDescriptor(Dn.getMandatoryField(t,"descriptor"))}}createConnection(t,e,n=3,r=100){const{capabilities:i,transportId:o}=t,s=new _n(o),a=this.createHidChannel(s,i,this.transport),c=this.createRootGnpChannel(a,this.transport,o,e).pipe(ee(((t,e)=>(t.type&&t.type===Kt.DEVICE_ERROR&&this.transport.context===Vt.WEB_HID&&ye("Child devices are not yet supported when using WebHID.",this.logger,Bt.WARNING,Wt.JS_LIB),Nt(new gn)))),de()),u=c.pipe(Pt((t=>t.read(An))),he(Nn(n,r)),ee((t=>Nt(On.ANY))));return te(c,u).pipe(_e(e),Lt((([n,r])=>({event:Object.assign(Object.assign({},t),{deviceType:r,connectionGnpAddress:n.primaryAddress}),connection:this.connectionCreator(s,yn.USB,a,n,e)}))))}}var Hn,Ln,Pn,Un,kn;class xn{constructor(t,e,n,r,i,o){this.vendorId=t,this.productId=e,this.serialNumber=n,this.name=r,this.type=i,Ln.set(this,void 0),h(this,Ln,new we(o,l(xn,Hn,"m",Un))),this.connectionAdded=l(this,Ln,"f").itemAdded,this.connectionRemoved=l(this,Ln,"f").itemRemoved,this.connectionList=l(this,Ln,"f").itemList,this.onDisconnect=l(this,Ln,"f").itemList.pipe(ve(1),ue((t=>0===t.length)),Lt(w),de());}get id(){return en(this.vendorId,this.productId,this.serialNumber)}get currentConnections(){return l(this,Ln,"f").getValue()}get browserLabel(){return `${this.vendorId.toString(16).padStart(4,"0")}:${this.productId.toString(16).padStart(4,"0")}`}}Hn=xn,Ln=new WeakMap,Un=function(t,e){return l(xn,Hn,"f",Pn).indexOf(t.type)-l(xn,Hn,"f",Pn).indexOf(e.type)},Pn={value:[yn.USB,yn.INDIRECT,yn.BLUETOOTH]};class Gn{constructor(t){this.deviceObservables=new we(t);}static exceptionToUndefined(t){try{return t()}catch(t){if(t instanceof be)return;throw t}}connectionExists(t){return void 0!==Gn.exceptionToUndefined((()=>this.findConnectionById(t)))}findConnectionById(t){for(const e of this.deviceObservables.getValue())for(const n of e.currentConnections)if(n.id.equals(t))return n;throw new be(`Could not find connection with id ${t.toString()}`,Kt.UNEXPECTED_ERROR)}findDeviceByDeviceId(t){return this.deviceObservables.getValue().find((e=>e.id.startsWith(t)||t.startsWith(e.id)))}}class Fn{constructor(t,e){this.logger=e;const[n,r]=(i=t.pipe(Jt((t=>!this.deviceCollection.connectionExists(t.connection.id))),ne((t=>this.force(t)))),[Jt(o=({event:t,pid:e,serialNumber:n})=>!this.deviceCollection.findDeviceByDeviceId(en(t.event.vid,e,n)),s)(Et(i)),Jt(Qt(o,s))(Et(i))]);var i,o,s;const a=n.pipe(Lt((t=>Fn.createDevice(t,r))));this.deviceCollection=new Gn(a),this.deviceObservables=this.deviceCollection.deviceObservables;}force(t){const{name:e,pid:n,serialNumber:r}=t.event,i=t.connection.onDisconnect.pipe((a=Ct((()=>new Error(`Connection with ID ${t.connection.id} disconnected`))),d$1(c)?ne((function(){return a}),c):ne((function(){return a}))));var a,c;return te(e,n,r).pipe(Lt((([e,n,r])=>({event:t,name:e,pid:n,serialNumber:r}))),function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return t.length?M$1((function(e,n){Zt(s([e],o(t)))(n);})):k}(i),ee((t=>(ye(`Failed to retrieve child connection information. Error: ${t}`,this.logger,Bt.WARNING,Wt.JS_LIB),et))))}static createDevice(t,e){const{event:n,pid:r,name:i,serialNumber:o}=t,{vid:s,deviceType:a}=n.event,c=e.pipe(Jt((e=>Fn.isSameDevice(t,e))),Lt((t=>t.event.connection))),u=xt(Nt(n.connection),c);return new xn(s,r,o,i,a,u)}static isSameDevice(t,e){const n=en(t.event.event.vid,t.pid,t.serialNumber),r=en(e.event.event.vid,e.pid,e.serialNumber);return n.startsWith(r)||r.startsWith(n)}static create(t,e){const n=new Dn(t,e);return new Fn(n.connectionEvents)}}function Mn(t){var e,r,i;return n(this,void 0,void 0,(function*(){const n=null==t?void 0:t.logger;ye("Jabra SDK JS starting up...",n,Bt.INFO);const o=new Re(t);o.validateOrganizationKey(),o.validateAppId(),o.validateAppName();const s=null!==(r=null===(e=null==t?void 0:t.internal)||void 0===e?void 0:e.testDeviceTransport)&&void 0!==r?r:yield Se(n,null==t?void 0:t.transport,null===(i=null==t?void 0:t.internal)||void 0===i?void 0:i.recorder);new Ae(s,n);const a=Fn.create(s,n),c=new Ce(a,s,t);return yield s.connect(),c}))}class Bn{constructor(t,e,n,r){this.deviceId=t,this.usagePage=e,this.usage=n,this.value=r;}}class Wn{constructor(t,e){this.token=t,this.value=e;}}!function(t){t.UsageReport=class{constructor(t,e){this.usage=t,this.value=e;}};}(kn||(kn={}));var Kn,Yn,Vn,jn,qn,$n,zn,Qn,Jn,Xn,Zn=ze((function(t){!function(e){var n=function(t,e,n){if(!(t instanceof ArrayBuffer||"undefined"!=typeof Buffer$1&&t instanceof Buffer$1))throw new Error("Must specify a valid ArrayBuffer or Buffer.");e=e||0,n=n||t.byteLength||t.length,this._view=new Uint8Array(t.buffer||t,e,n),this.bigEndian=!1;};n._scratch=new DataView(new ArrayBuffer(8)),Object.defineProperty(n.prototype,"buffer",{get:function(){return "undefined"!=typeof Buffer$1?Buffer$1.from(this._view.buffer):this._view.buffer},enumerable:!0,configurable:!1}),Object.defineProperty(n.prototype,"byteLength",{get:function(){return this._view.length},enumerable:!0,configurable:!1}),n.prototype._setBit=function(t,e){e?this._view[t>>3]|=1<<(7&t):this._view[t>>3]&=~(1<<(7&t));},n.prototype.getBits=function(t,e,n){var r=8*this._view.length-t;if(e>r)throw new Error("Cannot get "+e+" bit(s) from offset "+t+", "+r+" available");for(var i=0,o=0;o<e;){var s=e-o,a=7&t,c=this._view[t>>3],u=Math.min(s,8-a);this.bigEndian?(i<<=u,i|=c>>8-u-a&~(255<<u)):i|=(c>>a&~(255<<u))<<o,t+=u,o+=u;}return n?(32!==e&&i&1<<e-1&&(i|=-1^(1<<e)-1),i):i>>>0},n.prototype.setBits=function(t,e,n){var r=8*this._view.length-t;if(n>r)throw new Error("Cannot set "+n+" bit(s) from offset "+t+", "+r+" available");for(var i=0;i<n;){var o,s,a,c=n-i,u=7&t,l=t>>3,h=Math.min(c,8-u);if(this.bigEndian){s=e>>n-i-h&(o=~(-1<<h));var d=8-u-h;a=~(o<<d),this._view[l]=this._view[l]&a|s<<d;}else s=e&(o=~(255<<h)),e>>=h,a=~(o<<u),this._view[l]=this._view[l]&a|s<<u;t+=h,i+=h;}},n.prototype.getBoolean=function(t){return 0!==this.getBits(t,1,!1)},n.prototype.getInt8=function(t){return this.getBits(t,8,!0)},n.prototype.getUint8=function(t){return this.getBits(t,8,!1)},n.prototype.getInt16=function(t){return this.getBits(t,16,!0)},n.prototype.getUint16=function(t){return this.getBits(t,16,!1)},n.prototype.getInt32=function(t){return this.getBits(t,32,!0)},n.prototype.getUint32=function(t){return this.getBits(t,32,!1)},n.prototype.getFloat32=function(t){return n._scratch.setUint32(0,this.getUint32(t)),n._scratch.getFloat32(0)},n.prototype.getFloat64=function(t){return n._scratch.setUint32(0,this.getUint32(t)),n._scratch.setUint32(4,this.getUint32(t+32)),n._scratch.getFloat64(0)},n.prototype.setBoolean=function(t,e){this.setBits(t,e?1:0,1);},n.prototype.setInt8=n.prototype.setUint8=function(t,e){this.setBits(t,e,8);},n.prototype.setInt16=n.prototype.setUint16=function(t,e){this.setBits(t,e,16);},n.prototype.setInt32=n.prototype.setUint32=function(t,e){this.setBits(t,e,32);},n.prototype.setFloat32=function(t,e){n._scratch.setFloat32(0,e),this.setBits(t,n._scratch.getUint32(0),32);},n.prototype.setFloat64=function(t,e){n._scratch.setFloat64(0,e),this.setBits(t,n._scratch.getUint32(0),32),this.setBits(t+32,n._scratch.getUint32(4),32);},n.prototype.getArrayBuffer=function(t,e){for(var n=new Uint8Array(e),r=0;r<e;r++)n[r]=this.getUint8(t+8*r);return n};var r=function(t,e){return function(){if(this._index+e>this._length)throw new Error("Trying to read past the end of the stream");var n=this._view[t](this._index);return this._index+=e,n}},i=function(t,e){return function(n){this._view[t](this._index,n),this._index+=e;}};function o(t,e,n){if(0===e)return "";var r=0,i=[],o=!0,s=!!e;for(e||(e=Math.floor((t._length-t._index)/8));r<e;){var a=t.readUint8();if(0===a&&(o=!1,!s))break;o&&i.push(a),r++;}var c=String.fromCharCode.apply(null,i);if(!n)return c;try{return decodeURIComponent(escape(c))}catch(t){return c}}var s=function(t,e,r){var i=t instanceof ArrayBuffer||"undefined"!=typeof Buffer$1&&t instanceof Buffer$1;if(!(t instanceof n||i))throw new Error("Must specify a valid BitView, ArrayBuffer or Buffer");this._view=i?new n(t,e,r):t,this._index=0,this._startIndex=0,this._length=8*this._view.byteLength;};Object.defineProperty(s.prototype,"index",{get:function(){return this._index-this._startIndex},set:function(t){this._index=t+this._startIndex;},enumerable:!0,configurable:!0}),Object.defineProperty(s.prototype,"length",{get:function(){return this._length-this._startIndex},set:function(t){this._length=t+this._startIndex;},enumerable:!0,configurable:!0}),Object.defineProperty(s.prototype,"bitsLeft",{get:function(){return this._length-this._index},enumerable:!0,configurable:!0}),Object.defineProperty(s.prototype,"byteIndex",{get:function(){return Math.ceil(this._index/8)},set:function(t){this._index=8*t;},enumerable:!0,configurable:!0}),Object.defineProperty(s.prototype,"buffer",{get:function(){return this._view.buffer},enumerable:!0,configurable:!1}),Object.defineProperty(s.prototype,"view",{get:function(){return this._view},enumerable:!0,configurable:!1}),Object.defineProperty(s.prototype,"bigEndian",{get:function(){return this._view.bigEndian},set:function(t){this._view.bigEndian=t;},enumerable:!0,configurable:!1}),s.prototype.readBits=function(t,e){var n=this._view.getBits(this._index,t,e);return this._index+=t,n},s.prototype.writeBits=function(t,e){this._view.setBits(this._index,t,e),this._index+=e;},s.prototype.readBoolean=r("getBoolean",1),s.prototype.readInt8=r("getInt8",8),s.prototype.readUint8=r("getUint8",8),s.prototype.readInt16=r("getInt16",16),s.prototype.readUint16=r("getUint16",16),s.prototype.readInt32=r("getInt32",32),s.prototype.readUint32=r("getUint32",32),s.prototype.readFloat32=r("getFloat32",32),s.prototype.readFloat64=r("getFloat64",64),s.prototype.writeBoolean=i("setBoolean",1),s.prototype.writeInt8=i("setInt8",8),s.prototype.writeUint8=i("setUint8",8),s.prototype.writeInt16=i("setInt16",16),s.prototype.writeUint16=i("setUint16",16),s.prototype.writeInt32=i("setInt32",32),s.prototype.writeUint32=i("setUint32",32),s.prototype.writeFloat32=i("setFloat32",32),s.prototype.writeFloat64=i("setFloat64",64),s.prototype.readASCIIString=function(t){return function(t,e){return o(t,e,!1)}(this,t)},s.prototype.readUTF8String=function(t){return function(t,e){return o(t,e,!0)}(this,t)},s.prototype.writeASCIIString=function(t,e){!function(t,e,n){for(var r=n||e.length+1,i=0;i<r;i++)t.writeUint8(i<e.length?e.charCodeAt(i):0);}(this,t,e);},s.prototype.writeUTF8String=function(t,e){!function(t,e,n){for(var r=function(t){var e,n,r=[];for(e=0;e<t.length;e++)(n=t.charCodeAt(e))<=127?r.push(n):n<=2047?(r.push(n>>6|192),r.push(63&n|128)):n<=65535?(r.push(n>>12|224),r.push(n>>6&63|128),r.push(63&n|128)):(r.push(n>>18|240),r.push(n>>12&63|128),r.push(n>>6&63|128),r.push(63&n|128));return r}(e),i=n||r.length+1,o=0;o<i;o++)t.writeUint8(o<r.length?r[o]:0);}(this,t,e);},s.prototype.readBitStream=function(t){var e=new s(this._view);return e._startIndex=this._index,e._index=this._index,e.length=t,this._index+=t,e},s.prototype.writeBitStream=function(t,e){var n;for(e||(e=t.bitsLeft);e>0;)n=Math.min(e,32),this.writeBits(t.readBits(n),n),e-=n;},s.prototype.readArrayBuffer=function(t){var e=this._view.getArrayBuffer(this._index,t);return this._index+=8*t,e},s.prototype.writeArrayBuffer=function(t,e){this.writeBitStream(new s(t),8*e);},t.exports&&(t.exports={BitView:n,BitStream:s});}();}));function tr(){return n(this,void 0,void 0,(function*(){const{hid:t}=window.navigator;if(!t)throw new be("WebHID not supported",Kt.INIT_ERROR);const e=yield t.requestDevice({filters:[{vendorId:Kn.VENDOR_ID}]});return new BroadcastChannel(Kn.PAIRING_CHANNEL).postMessage(null),e}))}!function(t){t[t.VENDOR_ID=2830]="VENDOR_ID",t.PAIRING_CHANNEL="jabra-webhid-pairing-channel";}(Kn||(Kn={})),function(t){t[t.HOOK_SWITCH=32]="HOOK_SWITCH",t[t.GN_PSEUDO_HOOK_SWITCH=65531]="GN_PSEUDO_HOOK_SWITCH",t[t.FLASH=33]="FLASH",t[t.ALT_HOLD=35]="ALT_HOLD",t[t.REDIAL=36]="REDIAL",t[t.ONLINE=42]="ONLINE",t[t.SPEAKER_PHONE=43]="SPEAKER_PHONE",t[t.PHONE_MUTE=47]="PHONE_MUTE",t[t.SEND=49]="SEND",t[t.SPEED_DIAL=80]="SPEED_DIAL",t[t.VOICE_MAIL=112]="VOICE_MAIL",t[t.ANSWER_ON_OFF=116]="ANSWER_ON_OFF",t[t.LINE_BUSY=151]="LINE_BUSY",t[t.RINGER=158]="RINGER",t[t.PHONE_KEY_0=176]="PHONE_KEY_0",t[t.PHONE_KEY_1=177]="PHONE_KEY_1",t[t.PHONE_KEY_2=178]="PHONE_KEY_2",t[t.PHONE_KEY_3=179]="PHONE_KEY_3",t[t.PHONE_KEY_4=180]="PHONE_KEY_4",t[t.PHONE_KEY_5=181]="PHONE_KEY_5",t[t.PHONE_KEY_6=182]="PHONE_KEY_6",t[t.PHONE_KEY_7=183]="PHONE_KEY_7",t[t.PHONE_KEY_8=184]="PHONE_KEY_8",t[t.PHONE_KEY_9=185]="PHONE_KEY_9",t[t.PHONE_KEY_STAR=186]="PHONE_KEY_STAR",t[t.PHONE_KEY_POUND=187]="PHONE_KEY_POUND",t[t.ALT_VOLUME_UP=233]="ALT_VOLUME_UP",t[t.ALT_VOLUME_DOWN=234]="ALT_VOLUME_DOWN",t[t.REJECT_CALL=65533]="REJECT_CALL";}(Yn||(Yn={}));class er{constructor(t,e,n){this.type=t,this.value=e,this.valueType=n;}toString(){return void 0===Yn[this.type]?`Unknown signal: type: ${this.type}, value: ${this.value}, valueType: ${this.valueType}`:`Signal: type: ${Yn[this.type]}, value: ${this.value}, valueType: ${this.valueType}`}}!function(t){t[t.BUTTON=9]="BUTTON",t[t.CONSUMER=12]="CONSUMER",t[t.LED=8]="LED",t[t.TELEPHONY=11]="TELEPHONY",t[t.GN_CONSUMER=65312]="GN_CONSUMER",t[t.GN_EXT_BUTTONS=65360]="GN_EXT_BUTTONS",t[t.GN_LED=65344]="GN_LED",t[t.GN_MISC=65376]="GN_MISC",t[t.GN_TELEPHONY=65328]="GN_TELEPHONY";}(Vn||(Vn={})),function(t){t[t.MUTE=9]="MUTE",t[t.OFF_HOOK=23]="OFF_HOOK",t[t.RING=24]="RING",t[t.MESSAGE_WAIT=25]="MESSAGE_WAIT",t[t.HOLD=32]="HOLD",t[t.MIC_MUTE=33]="MIC_MUTE",t[t.ONLINE=42]="ONLINE",t[t.HID_OFFLINE=43]="HID_OFFLINE";}(jn||(jn={})),function(t){t[t.HOOK_SWITCH=32]="HOOK_SWITCH",t[t.FLASH=33]="FLASH",t[t.HOLD=35]="HOLD",t[t.REDIAL=36]="REDIAL",t[t.ONLINE=42]="ONLINE",t[t.SPEAKER_PHONE=43]="SPEAKER_PHONE",t[t.MUTE=47]="MUTE",t[t.HID_SEND=49]="HID_SEND",t[t.SPEED_DIAL=80]="SPEED_DIAL",t[t.VOICE_MAIL=112]="VOICE_MAIL",t[t.ANSWER_ON_OFF=116]="ANSWER_ON_OFF",t[t.LINE_BUSY=151]="LINE_BUSY",t[t.RINGER=158]="RINGER",t[t.PHONE_KEY_0=176]="PHONE_KEY_0",t[t.PHONE_KEY_1=177]="PHONE_KEY_1",t[t.PHONE_KEY_2=178]="PHONE_KEY_2",t[t.PHONE_KEY_3=179]="PHONE_KEY_3",t[t.PHONE_KEY_4=180]="PHONE_KEY_4",t[t.PHONE_KEY_5=181]="PHONE_KEY_5",t[t.PHONE_KEY_6=182]="PHONE_KEY_6",t[t.PHONE_KEY_7=183]="PHONE_KEY_7",t[t.PHONE_KEY_8=184]="PHONE_KEY_8",t[t.PHONE_KEY_9=185]="PHONE_KEY_9",t[t.PHONE_KEY_STAR=186]="PHONE_KEY_STAR",t[t.PHONE_KEY_POUND=187]="PHONE_KEY_POUND",t[t.HID_ALT_VOLUME_UP=233]="HID_ALT_VOLUME_UP",t[t.HID_ALT_VOLUME_DOWN=234]="HID_ALT_VOLUME_DOWN",t[t.GN_PSEUDO_HOOK_SWITCH=65531]="GN_PSEUDO_HOOK_SWITCH",t[t.GN_OUT_OF_RANGE=65532]="GN_OUT_OF_RANGE",t[t.GN_REJECT_CALL=65533]="GN_REJECT_CALL",t[t.GN_TELEPHONY_CONT_SET=65535]="GN_TELEPHONY_CONT_SET";}(qn||(qn={}));class nr{constructor(t,e,n,r,i){this.hidChannel=t,this.onDisconnect=e,this.isSoftphoneInFocus=n,this.lockHeld=r,this.logger=i,this.cachedSignals=new Map;}setup(){const t=this.filter().pipe(de());return t.subscribe(),t}filter(){const t=this.hidChannel.input.pipe(Jt((t=>t.usagePage===Vn.GN_TELEPHONY&&!t.isArray())),Pt((t=>{const e=this.hidChannel.findDescriptor(t.usagePage,t.usage,Qe.INPUT);return (null==e?void 0:e.valueType)?Nt(Object.assign(Object.assign({},t),{valueType:e.valueType})):(In("",new be(`Unable to find value-type in descriptor for UsagePage: ${t.usagePage} and Usage: ${t.usage}`,Kt.FEATURE_NOT_SUPPORTED),this.logger),et)})),Jt((t=>{if(t.valueType===Je.RELATIVE)return Boolean(t.value);return this.cachedSignals.get(t.usage)!==t.value})),me((t=>{this.cachedSignals.set(t.usage,t.value);})),_e(this.onDisconnect),de()),e=[Yn.HOOK_SWITCH,Yn.REDIAL],n=t.pipe(on(this.isSoftphoneInFocus),Jt((t=>e.includes(t.usage)&&!this.lockHeld.getValue())));return Mt(t.pipe(Jt((t=>this.lockHeld.getValue()))),n).pipe(Lt((t=>new er(t.usage,0!==t.value,t.valueType))),ee((t=>(ye(t.message,this.logger),et))))}}class rr{constructor(t,e,n,r,i,o){this.device=t,this.onDisconnect=n,$n.set(this,void 0),zn.set(this,new j(!1)),Qn.set(this,void 0),Jn.set(this,!1),this.deviceSignals=new Y,h(this,$n,r),l(this,$n,"f").lockHeld.subscribe(l(this,zn,"f")),h(this,Qn,e),this.onDisconnect.pipe(ue(),Lt((()=>!0))).subscribe((t=>{h(this,Jn,t);}));const s=new nr(l(this,Qn,"f"),this.onDisconnect,i,l(this,zn,"f"),o);this.deviceSignals=s.setup();}checkCallLockHeld(t){if(!l(this,zn,"f").getValue())throw new be(t,Kt.SDK_USAGE_ERROR)}checkCallLockNotHeld(t){if(l(this,zn,"f").getValue())throw new be(t,Kt.SDK_USAGE_ERROR)}checkHasDisconnected(){if(l(this,Jn,"f"))throw new be("CallControl cannot be performed as the connection has disconnected.",Kt.SDK_USAGE_ERROR)}takeCallLock(){return this.checkHasDisconnected(),this.checkCallLockNotHeld("Trying to take the call lock, but it is already held!"),St(l(this,$n,"f").tryTakeCallLock())}releaseCallLock(){this.checkHasDisconnected(),this.checkCallLockHeld("Trying to release the call lock, but it is not held!"),l(this,$n,"f").releaseCallLock();}offHook(t){this.checkHasDisconnected(),this.checkCallLockHeld("Calls can only be started and stopped when the call lock is held.");const e=l(this,Qn,"f").findDescriptor(Vn.GN_LED,jn.OFF_HOOK,Qe.OUTPUT);if(!e)throw new be(`Device ${this.device.name} does not support any offHook functionality.`,Kt.FEATURE_NOT_SUPPORTED);const n=t?1:0;l(this,Qn,"f").output(e.usagePage,e.usage,n);}ring(t){this.checkHasDisconnected(),this.checkCallLockHeld("The ringer state can only be modified when the call lock is held.");const e=l(this,Qn,"f").findDescriptor(Vn.GN_LED,jn.RING,Qe.OUTPUT),n=l(this,Qn,"f").findDescriptor(Vn.GN_TELEPHONY,qn.RINGER,Qe.OUTPUT);if(!e&&!n)throw new be(`Device ${this.device.name} does not support any ring functionality.`,Kt.FEATURE_NOT_SUPPORTED);if(n){const e=t?1:0;l(this,Qn,"f").output(n.usagePage,n.usage,e);}if(e){const n=t?1:0;l(this,Qn,"f").output(e.usagePage,e.usage,n);}}mute(t){this.checkHasDisconnected(),this.checkCallLockHeld("The mute state can only be modified when the call lock is held.");let e=l(this,Qn,"f").findDescriptor(Vn.GN_LED,jn.MIC_MUTE,Qe.OUTPUT);if(e||(e=l(this,Qn,"f").findDescriptor(Vn.GN_LED,jn.MUTE,Qe.OUTPUT)),!e)throw new be(`Device ${this.device.name} does not support any mute functionality.`,Kt.FEATURE_NOT_SUPPORTED);const n=t?1:0;l(this,Qn,"f").output(e.usagePage,e.usage,n);}hold(t){this.checkHasDisconnected(),this.checkCallLockHeld("The hold state can only be modified when the call lock is held.");const e=l(this,Qn,"f").findDescriptor(Vn.GN_LED,jn.HOLD,Qe.OUTPUT);if(!e)throw new be(`Device ${this.device.name} does not support hold functionality.`,Kt.FEATURE_NOT_SUPPORTED);const n=t?1:0;l(this,Qn,"f").output(e.usagePage,e.usage,n);}}$n=new WeakMap,zn=new WeakMap,Qn=new WeakMap,Jn=new WeakMap,function(t){t[t.STD_TELEPHONY=0]="STD_TELEPHONY",t[t.GN_TELEPHONY=1]="GN_TELEPHONY";}(Xn||(Xn={}));const ir={[De.SKYPE]:Xn.GN_TELEPHONY,[De.CISCO]:Xn.GN_TELEPHONY,[De.AVAYA]:Xn.GN_TELEPHONY,[De.SIEMENS]:Xn.GN_TELEPHONY,[De.IBM]:Xn.GN_TELEPHONY,[De.AASTRA]:Xn.GN_TELEPHONY,[De.JABRA]:Xn.GN_TELEPHONY,[De.NEC]:Xn.GN_TELEPHONY,[De.SHORETEL]:Xn.GN_TELEPHONY,[De.MS_OC]:Xn.STD_TELEPHONY,[De.ALCATEL]:Xn.STD_TELEPHONY,[De.OTHER]:Xn.STD_TELEPHONY,[De.NORTEL]:null,[De.GENERIC]:null};function or(t,e){const n=t.read(je).pipe(Lt((t=>ir[t]===e))),r=t.read(new Ke).pipe(Lt((t=>t.find((t=>ir[t]===e))))).pipe(Lt((e=>e?t.write(je,e):Nt(!1))),ge());return n.pipe((i=Nt(!0),o=r,t=>t.pipe(Lt((t=>t?i:o)),ge())));var i,o;}class sr{constructor(t,e,n){this.connectionCallLock=t,this.device=e,this.logger=n,this.lockHeld=new j(!1),this.currentLocks=new j(new Set),this.lockReleaseEvent=new Y;}tryTakeCallLock(){const{currentConnections:t}=this.device,e=new Set,n=Gt((()=>wt(t).pipe(ne((t=>this.takeSingleCallLock(t).pipe(ee((t=>(In("DeviceCallLock:",t,this.logger),Nt(""))))))),me((t=>e.add(t)))))).pipe(function(t,e){var n=arguments.length>=2;return function(r){return r.pipe(k,le(1),n?re(e):ae((function(){return new Tt})))}}(),Lt((n=>(e.delete(""),this.currentLocks.next(e),e.size!==t.length?(this.releaseCallLock(),!1):(this.lockHeld.next(!0),!0)))),fe());return n.subscribe((t=>{t&&(this.acquireLockOnNextConnectionEmit(),this.releaseLockOnRemovedConnectionEmit());})),n}acquireLockOnNextConnectionEmit(){this.device.connectionAdded.pipe(_e(this.lockReleaseEvent)).subscribe((t=>{this.takeSingleCallLock(t).pipe(_e(this.lockReleaseEvent),Lt((t=>(this.currentLocks.getValue().add(t),this.currentLocks.next(this.currentLocks.getValue()),w))),he(Nn())).subscribe({error:t=>{ye(`Failed to acquire the call lock on a new connection.\n Another softphone running an old SDK has most likely acquired this lock.\n Full error: ${t}`,this.logger,Bt.WARNING,Wt.JS_LIB);}});}));}releaseLockOnRemovedConnectionEmit(){this.device.connectionRemoved.pipe(_e(this.lockReleaseEvent)).subscribe((t=>this.releaseSingleCallLock(t.id.transportId)));}takeSingleCallLock(t){return Gt((()=>this.connectionCallLock.tryTakeCallLock(t.id.transportId))).pipe(Lt((e=>e.acquired?Nt(e.transportId):Ct((()=>new be(`Failed to acquire call lock on connection ${t.id.transportId}`,Kt.SDK_USAGE_ERROR))))),ge())}releaseCallLock(){this.lockReleaseEvent.next();[...this.currentLocks.getValue()].forEach((t=>{this.releaseSingleCallLock(t);})),this.currentLocks.getValue().clear(),this.currentLocks.next(this.currentLocks.getValue());}releaseSingleCallLock(t){this.connectionCallLock.releaseCallLock(t),this.currentLocks.getValue().delete(t),this.currentLocks.next(this.currentLocks.getValue()),0!==this.currentLocks.getValue().size&&0!==this.device.currentConnections.length||(this.lockReleaseEvent.next(),this.lockHeld.next(!1));}}class ar{constructor(t){this.transport=t;}tryTakeCallLock(t){const e={action:"request-call-lock",id:t};return this.transport.writeAction(e),this.transport.consoleAppEvent.pipe(Jt((e=>"response-call-lock"===e.event&&e.id===t)),Lt((t=>({transportId:t.id,acquired:t.acquired}))),ue())}releaseCallLock(t){const e={action:"release-call-lock",id:t};this.transport.writeAction(e);}}const cr=[{usagePage:Vn.GN_LED,usage:jn.OFF_HOOK,reportType:Qe.OUTPUT},{usagePage:Vn.GN_LED,usage:jn.RING,reportType:Qe.OUTPUT},{usagePage:Vn.GN_TELEPHONY,usage:qn.RINGER,reportType:Qe.OUTPUT},{usagePage:Vn.GN_LED,usage:jn.MIC_MUTE,reportType:Qe.OUTPUT},{usagePage:Vn.GN_LED,usage:jn.MUTE,reportType:Qe.OUTPUT},{usagePage:Vn.GN_LED,usage:jn.HOLD,reportType:Qe.OUTPUT}],ur=[yn.USB,yn.INDIRECT,yn.BLUETOOTH];function lr(t,e){const{hidChannel:n}=t;return !!function(t){return cr.some((({usagePage:e,usage:n,reportType:r})=>t.findDescriptor(e,n,r)))}(n)&&(!pn.supportsGnpOverHid(n)||e!==On.DONGLE&&e!==On.OTHER)}function hr(t){const{currentConnections:e,type:n}=t;var r;return (r=e,[...r].sort(((t,e)=>ur.indexOf(t.type)-ur.indexOf(e.type)))).find((t=>lr(t,n)))}function dr(t,e,n,r,i){const o=hr(t),{hidChannel:s,onDisconnect:a}=o,c=new sr(new ar(r),t,i);if(e)return Nt(new rr(t,s,a,c,n.softphoneInFocus,i));if(r.context===Vt.WEB_HID)return Nt(new rr(t,s,a,c,n.softphoneInFocus,i));return function(t,e){return t.findDescriptor(Vn.GN_TELEPHONY,qn.GN_TELEPHONY_CONT_SET,Qe.FEATURE)?Gt((()=>(t.setFeatureReport(Vn.GN_TELEPHONY,qn.GN_TELEPHONY_CONT_SET,1),Nt(!0)))):e?or(e,Xn.GN_TELEPHONY):Nt(!1)}(s,o).pipe(Lt((e=>new rr(t,s,a,c,n.softphoneInFocus,i))))}class pr{constructor(t,e){this.devComm=t,this.softphoneInFocus=new G$1,this.softphoneInFocus=e.pipe(ue(),Pt((t=>this.devComm.consoleAppEvent.pipe(Jt((t=>"softphone-in-focus"===t.event)),Lt((t=>t.infocus)),function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=ot(t);return M$1((function(e,r){(n?xt(t,e,n):xt(t,e)).subscribe(r);}))}(!t),fe(1))))),this.softphoneInFocus.subscribe((()=>{}));}setSharedSoftphoneInfo(t){if(!(null==t?void 0:t.partnerKey)||!(null==t?void 0:t.appId))return void ye("Unable to register with Jabra Direct: partnerKey or appId missing in config",null==t?void 0:t.logger,Bt.WARNING);const e=t.partnerKey+t.appId,n=new Xe(5,"ns:OID",e);let{appName:r}=t;if((!t.appName||t.appName.length<3)&&(ye("App name missing in config. Fall back to use appId as app name.",null==t?void 0:t.logger,Bt.WARNING),r=t.appId),r.length>100)return void ye("Unable to register with Jabra Direct: appName must be below 100 characters.",null==t?void 0:t.logger,Bt.WARNING);const i={action:"set-softphone-info",name:r,id:n.toString()};this.devComm.writeAction(i);}}var fr,vr,Er,gr,_r,mr,br,yr;class Nr{constructor(t){var e;fr.set(this,void 0),vr.set(this,void 0),Er.set(this,void 0),gr.set(this,void 0),h(this,gr,t._readyEvents.pipe(ue((t=>"ready"===t.event)),Lt((t=>t.jabraDirectInstalled)))),h(this,vr,new pr(t._transport,l(this,gr,"f"))),l(this,vr,"f").setSharedSoftphoneInfo(t._config),h(this,fr,t._transport),h(this,Er,null===(e=t._config)||void 0===e?void 0:e.logger);}createCallControl(t){if(!this.supportsCallControl(t))return Promise.reject(new be(`Device ${t.name} does not support call control.`,Kt.FEATURE_NOT_SUPPORTED));return At(l(this,gr,"f").pipe(Pt((e=>dr(t,e,l(this,vr,"f"),l(this,fr,"f"),l(this,Er,"f"))))))}supportsCallControl(t){return void 0!==hr(t)}}fr=new WeakMap,vr=new WeakMap,Er=new WeakMap,gr=new WeakMap,function(t){t.HOLD_CURRENT="hold-current",t.END_CURRENT="end-current";}(_r||(_r={})),function(t){t.MUTED="muted",t.UNMUTED="unmuted",t.NO_ONGOING_CALLS="no-ongoing-calls";}(mr||(mr={})),function(t){t.ON_HOLD="on-hold",t.NOT_ON_HOLD="not-on-hold",t.NO_ONGOING_CALLS="no-ongoing-calls";}(br||(br={})),function(t){t.NO_INCOMING="no-incoming",t.AWAITING_RESPONSE="awaiting-response",t.RESOLVING_RESPONSE="resolving-response",t.ACCEPTED="accepted",t.REJECTED="rejected";}(yr||(yr={}));({ongoingCalls:0,muteState:mr.NO_ONGOING_CALLS,holdState:br.NO_ONGOING_CALLS,incomingCall:yr.NO_INCOMING,ignoreSignals:[],swapToggle:0});
|
|
67526
|
+
t.exports=function(){var t=function(t,e,n,r,i,o){for(var s=function(t,e){var n=t.toString(16);return n.length<2&&(n="0"+n),e&&(n=n.toUpperCase()),n},a=e;a<=n;a++)i[o++]=s(t[a],r);return i},e=function(t,e,n,r,i){for(var o=e;o<=n;o+=2)r[i++]=parseInt(t.substr(o,2),16);},n="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-:+=^!/*?&<>()[]{}@%$#".split(""),r=[0,68,0,84,83,82,72,0,75,76,70,65,0,63,62,69,0,1,2,3,4,5,6,7,8,9,64,0,73,66,74,71,81,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,77,0,78,67,0,0,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,79,0,80,0,0],i=function(t,e){for(var r="",i=0,o=0;i<e;)if(o=256*o+t[i++],i%4==0){for(var s=52200625;s>=1;){var a=Math.floor(o/s)%85;r+=n[a],s/=85;}o=0;}return r},o=function(t,e){var n=t.length;if(n%5!=0)throw new Error("z85_decode: invalid input length (multiple of 5 expected)");void 0===e&&(e=new Array(4*n/5));for(var i=0,o=0,s=0;i<n;){var a=t.charCodeAt(i++)-32;if(a<0||a>=r.length)break;if(s=85*s+r[a],i%5==0){for(var c=16777216;c>=1;)e[o++]=Math.trunc(s/c%256),c/=256;s=0;}}return e},s=function(t,e){var n={ibits:8,obits:8,obigendian:!0};for(var r in e)void 0!==n[r]&&(n[r]=e[r]);for(var i,o,s,a=[],c=0,u=0,l=0,h=t.length;0===u&&(o=t.charCodeAt(c++)),i=o>>n.ibits-(u+8)&255,u=(u+8)%n.ibits,n.obigendian?0===l?s=i<<n.obits-8:s|=i<<n.obits-8-l:0===l?s=i:s|=i<<l,!(0==(l=(l+8)%n.obits)&&(a.push(s),c>=h)););return a},a=function(t,e){var n={ibits:32,ibigendian:!0};for(var r in e)void 0!==n[r]&&(n[r]=e[r]);var i="",o=4294967295;n.ibits<32&&(o=(1<<n.ibits)-1);for(var s=t.length,a=0;a<s;a++)for(var c=t[a]&o,u=0;u<n.ibits;u+=8)n.ibigendian?i+=String.fromCharCode(c>>n.ibits-8-u&255):i+=String.fromCharCode(c>>u&255);return i},c=8,u=8,l=256,h=function(t,e,n,r,i,o,s,a){return [a,s,o,i,r,n,e,t]},d=function(){return h(0,0,0,0,0,0,0,0)},p=function(t){return t.slice(0)},f=function(t){for(var e=d(),n=0;n<c;n++)e[n]=Math.floor(t%l),t/=l;return e},v=function(t){for(var e=0,n=c-1;n>=0;n--)e*=l,e+=t[n];return Math.floor(e)},E=function(t,e){for(var n=0,r=0;r<c;r++)n+=t[r]+e[r],t[r]=Math.floor(n%l),n=Math.floor(n/l);return n},g=function(t,e){for(var n=0,r=0;r<c;r++)n+=t[r]*e,t[r]=Math.floor(n%l),n=Math.floor(n/l);return n},_=function(t,e){var n,r,i,o=new Array(c+c);for(n=0;n<c+c;n++)o[n]=0;for(n=0;n<c;n++){for(i=0,r=0;r<c;r++)i+=t[n]*e[r]+o[n+r],o[n+r]=i%l,i/=l;for(;r<c+c-n;r++)i+=o[n+r],o[n+r]=i%l,i/=l;}for(n=0;n<c;n++)t[n]=o[n];return o.slice(c,c)},m=function(t,e){for(var n=0;n<c;n++)t[n]&=e[n];return t},b=function(t,e){for(var n=0;n<c;n++)t[n]|=e[n];return t},y=function(t,e){var n=d();for(var r=Math.floor(e/u),i=0;i<r;i++){for(var o=c-1-1;o>=0;o--)n[o+1]=n[o];for(n[0]=t[0],o=0;o<c-1;o++)t[o]=t[o+1];t[o]=0;}return v(n)},O=function(t,e){if(e>c*u)throw new Error("ui64_ror: invalid number of bits to shift");var n,r=new Array(c+c);for(n=0;n<c;n++)r[n+c]=t[n],r[n]=0;var i=Math.floor(e/u),o=e%u;for(n=i;n<c+c-1;n++)r[n-i]=(r[n]>>>o|r[n+1]<<u-o)&(1<<u)-1;for(r[c+c-1-i]=r[c+c-1]>>>o&(1<<u)-1,n=c+c-1-i+1;n<c+c;n++)r[n]=0;for(n=0;n<c;n++)t[n]=r[n+c];return r.slice(0,c)},w=function(t,e){if(e>c*u)throw new Error("ui64_rol: invalid number of bits to shift");var n,r=new Array(c+c);for(n=0;n<c;n++)r[n+c]=0,r[n]=t[n];var i=Math.floor(e/u),o=e%u;for(n=c-1-i;n>0;n--)r[n+i]=(r[n]<<o|r[n-1]>>>u-o)&(1<<u)-1;for(r[0+i]=r[0]<<o&(1<<u)-1,n=0+i-1;n>=0;n--)r[n]=0;for(n=0;n<c;n++)t[n]=r[n];return r.slice(c,c)},N=function(t,e){for(var n=0;n<c;n++)t[n]^=e[n];},C=function(t,e){var n=(65535&t)+(65535&e);return (t>>16)+(e>>16)+(n>>16)<<16|65535&n},T=function(t,e){return t<<e&4294967295|t>>>32-e&4294967295},S=function(t,e){function n(t,e,n,r){return t<20?e&n|~e&r:t<40?e^n^r:t<60?e&n|e&r|n&r:e^n^r}function r(t){return t<20?1518500249:t<40?1859775393:t<60?-1894007588:-899497514}t[e>>5]|=128<<24-e%32,t[15+(e+64>>9<<4)]=e;for(var i=Array(80),o=1732584193,s=-271733879,a=-1732584194,c=271733878,u=-1009589776,l=0;l<t.length;l+=16){for(var h=o,d=s,p=a,f=c,v=u,E=0;E<80;E++){i[E]=E<16?t[l+E]:T(i[E-3]^i[E-8]^i[E-14]^i[E-16],1);var g=C(C(T(o,5),n(E,s,a,c)),C(C(u,i[E]),r(E)));u=c,c=a,a=T(s,30),s=o,o=g;}o=C(o,h),s=C(s,d),a=C(a,p),c=C(c,f),u=C(u,v);}return [o,s,a,c,u]},A=function(t){return a(S(s(t,{ibits:8,obits:32,obigendian:!0}),8*t.length),{ibits:32,ibigendian:!0})},I=function(t,e){function n(t,e,n,r,i,o){return C(T(C(C(e,t),C(r,o)),i),n)}function r(t,e,r,i,o,s,a){return n(e&r|~e&i,t,e,o,s,a)}function i(t,e,r,i,o,s,a){return n(e&i|r&~i,t,e,o,s,a)}function o(t,e,r,i,o,s,a){return n(e^r^i,t,e,o,s,a)}function s(t,e,r,i,o,s,a){return n(r^(e|~i),t,e,o,s,a)}t[e>>5]|=128<<e%32,t[14+(e+64>>>9<<4)]=e;for(var a=1732584193,c=-271733879,u=-1732584194,l=271733878,h=0;h<t.length;h+=16){var d=a,p=c,f=u,v=l;a=r(a,c,u,l,t[h+0],7,-680876936),l=r(l,a,c,u,t[h+1],12,-389564586),u=r(u,l,a,c,t[h+2],17,606105819),c=r(c,u,l,a,t[h+3],22,-1044525330),a=r(a,c,u,l,t[h+4],7,-176418897),l=r(l,a,c,u,t[h+5],12,1200080426),u=r(u,l,a,c,t[h+6],17,-1473231341),c=r(c,u,l,a,t[h+7],22,-45705983),a=r(a,c,u,l,t[h+8],7,1770035416),l=r(l,a,c,u,t[h+9],12,-1958414417),u=r(u,l,a,c,t[h+10],17,-42063),c=r(c,u,l,a,t[h+11],22,-1990404162),a=r(a,c,u,l,t[h+12],7,1804603682),l=r(l,a,c,u,t[h+13],12,-40341101),u=r(u,l,a,c,t[h+14],17,-1502002290),a=i(a,c=r(c,u,l,a,t[h+15],22,1236535329),u,l,t[h+1],5,-165796510),l=i(l,a,c,u,t[h+6],9,-1069501632),u=i(u,l,a,c,t[h+11],14,643717713),c=i(c,u,l,a,t[h+0],20,-373897302),a=i(a,c,u,l,t[h+5],5,-701558691),l=i(l,a,c,u,t[h+10],9,38016083),u=i(u,l,a,c,t[h+15],14,-660478335),c=i(c,u,l,a,t[h+4],20,-405537848),a=i(a,c,u,l,t[h+9],5,568446438),l=i(l,a,c,u,t[h+14],9,-1019803690),u=i(u,l,a,c,t[h+3],14,-187363961),c=i(c,u,l,a,t[h+8],20,1163531501),a=i(a,c,u,l,t[h+13],5,-1444681467),l=i(l,a,c,u,t[h+2],9,-51403784),u=i(u,l,a,c,t[h+7],14,1735328473),a=o(a,c=i(c,u,l,a,t[h+12],20,-1926607734),u,l,t[h+5],4,-378558),l=o(l,a,c,u,t[h+8],11,-2022574463),u=o(u,l,a,c,t[h+11],16,1839030562),c=o(c,u,l,a,t[h+14],23,-35309556),a=o(a,c,u,l,t[h+1],4,-1530992060),l=o(l,a,c,u,t[h+4],11,1272893353),u=o(u,l,a,c,t[h+7],16,-155497632),c=o(c,u,l,a,t[h+10],23,-1094730640),a=o(a,c,u,l,t[h+13],4,681279174),l=o(l,a,c,u,t[h+0],11,-358537222),u=o(u,l,a,c,t[h+3],16,-722521979),c=o(c,u,l,a,t[h+6],23,76029189),a=o(a,c,u,l,t[h+9],4,-640364487),l=o(l,a,c,u,t[h+12],11,-421815835),u=o(u,l,a,c,t[h+15],16,530742520),a=s(a,c=o(c,u,l,a,t[h+2],23,-995338651),u,l,t[h+0],6,-198630844),l=s(l,a,c,u,t[h+7],10,1126891415),u=s(u,l,a,c,t[h+14],15,-1416354905),c=s(c,u,l,a,t[h+5],21,-57434055),a=s(a,c,u,l,t[h+12],6,1700485571),l=s(l,a,c,u,t[h+3],10,-1894986606),u=s(u,l,a,c,t[h+10],15,-1051523),c=s(c,u,l,a,t[h+1],21,-2054922799),a=s(a,c,u,l,t[h+8],6,1873313359),l=s(l,a,c,u,t[h+15],10,-30611744),u=s(u,l,a,c,t[h+6],15,-1560198380),c=s(c,u,l,a,t[h+13],21,1309151649),a=s(a,c,u,l,t[h+4],6,-145523070),l=s(l,a,c,u,t[h+11],10,-1120210379),u=s(u,l,a,c,t[h+2],15,718787259),c=s(c,u,l,a,t[h+9],21,-343485551),a=C(a,d),c=C(c,p),u=C(u,f),l=C(l,v);}return [a,c,u,l]},R=function(t){return a(I(s(t,{ibits:8,obits:32,obigendian:!1}),8*t.length),{ibits:32,ibigendian:!1})},D=function(t){this.mul=h(88,81,244,45,76,149,127,45),this.inc=h(20,5,123,126,247,103,129,79),this.mask=h(0,0,0,0,255,255,255,255),this.state=p(this.inc),this.next(),m(this.state,this.mask),t=f(void 0!==t?t>>>0:4294967295*Math.random()>>>0),b(this.state,t),this.next();};D.prototype.next=function(){var t=p(this.state);_(this.state,this.mul),E(this.state,this.inc);var e=p(t);O(e,18),N(e,t),O(e,27);var n=p(t);O(n,59),m(e,this.mask);var r=v(n),i=p(e);return w(i,32-r),O(e,r),N(e,i),v(e)};var H=new D,L=function(t,e){for(var n=[],r=0;r<t;r++)n[r]=H.next()%e;return n},P=0,U=0,k=function(){if(1===arguments.length&&"string"==typeof arguments[0])this.parse.apply(this,arguments);else if(arguments.length>=1&&"number"==typeof arguments[0])this.make.apply(this,arguments);else {if(arguments.length>=1)throw new Error("UUID: constructor: invalid arguments");for(var t=0;t<16;t++)this[t]=0;}};return "undefined"!=typeof Uint8Array?k.prototype=new Uint8Array(16):Buffer?k.prototype=Buffer.alloc(16):k.prototype=new Array(16),k.prototype.constructor=k,k.prototype.make=function(t){var e,n=this;if(1===t){var r=(new Date).getTime();r!==P?U=0:U++,P=r;var i,o=f(r);g(o,1e4),E(o,h(1,178,29,210,19,129,64,0)),U>0&&E(o,f(U)),i=y(o,8),n[3]=255&i,i=y(o,8),n[2]=255&i,i=y(o,8),n[1]=255&i,i=y(o,8),n[0]=255&i,i=y(o,8),n[5]=255&i,i=y(o,8),n[4]=255&i,i=y(o,8),n[7]=255&i,i=y(o,8),n[6]=15&i;var s=L(2,255);n[8]=s[0],n[9]=s[1];var a=L(6,255);for(a[0]|=1,a[0]|=2,e=0;e<6;e++)n[10+e]=a[e];}else if(4===t){var c=L(16,255);for(e=0;e<16;e++)this[e]=c[e];}else {if(3!==t&&5!==t)throw new Error("UUID: make: invalid version");var u="",l="object"==typeof arguments[1]&&arguments[1]instanceof k?arguments[1]:(new k).parse(arguments[1]);for(e=0;e<16;e++)u+=String.fromCharCode(l[e]);u+=arguments[2];var d=3===t?R(u):A(u);for(e=0;e<16;e++)n[e]=d.charCodeAt(e);}return n[6]&=15,n[6]|=t<<4,n[8]&=63,n[8]|=128,n},k.prototype.format=function(e){var n,r;return "z85"===e?n=i(this,16):"b16"===e?(r=Array(32),t(this,0,15,!0,r,0),n=r.join("")):void 0!==e&&"std"!==e||(r=new Array(36),t(this,0,3,!1,r,0),r[8]="-",t(this,4,5,!1,r,9),r[13]="-",t(this,6,7,!1,r,14),r[18]="-",t(this,8,9,!1,r,19),r[23]="-",t(this,10,15,!1,r,24),n=r.join("")),n},k.prototype.toString=function(t){return this.format(t)},k.prototype.toJSON=function(){return this.format("std")},k.prototype.parse=function(t,n){if("string"!=typeof t)throw new Error("UUID: parse: invalid argument (type string expected)");if("z85"===n)o(t,this);else if("b16"===n)e(t,0,35,this,0);else if(void 0===n||"std"===n){var r={nil:"00000000-0000-0000-0000-000000000000","ns:DNS":"6ba7b810-9dad-11d1-80b4-00c04fd430c8","ns:URL":"6ba7b811-9dad-11d1-80b4-00c04fd430c8","ns:OID":"6ba7b812-9dad-11d1-80b4-00c04fd430c8","ns:X500":"6ba7b814-9dad-11d1-80b4-00c04fd430c8"};if(void 0!==r[t])t=r[t];else if(!t.match(/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/))throw new Error('UUID: parse: invalid string representation (expected "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")');e(t,0,7,this,0),e(t,9,12,this,4),e(t,14,17,this,6),e(t,19,22,this,8),e(t,24,35,this,10);}return this},k.prototype.export=function(){for(var t=Array(16),e=0;e<16;e++)t[e]=this[e];return t},k.prototype.import=function(t){if(!("object"==typeof t&&t instanceof Array))throw new Error("UUID: import: invalid argument (type Array expected)");if(16!==t.length)throw new Error("UUID: import: invalid argument (Array of length 16 expected)");for(var e=0;e<16;e++){if("number"!=typeof t[e])throw new Error("UUID: import: invalid array element #"+e+" (type Number expected)");if(!isFinite(t[e])||Math.floor(t[e])!==t[e])throw new Error("UUID: import: invalid array element #"+e+" (Number with integer value expected)");if(!(t[e]>=0&&t[e]<=255))throw new Error("UUID: import: invalid array element #"+e+" (Number with integer value in range 0...255 expected)");this[e]=t[e];}return this},k.prototype.compare=function(t){if("object"!=typeof t)throw new Error("UUID: compare: invalid argument (type UUID expected)");if(!(t instanceof k))throw new Error("UUID: compare: invalid argument (type UUID expected)");for(var e=0;e<16;e++){if(this[e]<t[e])return -1;if(this[e]>t[e])return 1}return 0},k.prototype.equal=function(t){return 0===this.compare(t)},k.prototype.fold=function(t){if(void 0===t)throw new Error("UUID: fold: invalid argument (number of fold operations expected)");if(t<1||t>4)throw new Error("UUID: fold: invalid argument (1-4 fold operations expected)");for(var e=16/Math.pow(2,t),n=new Array(e),r=0;r<e;r++){for(var i=0,o=0;r+o<16;o+=e)i^=this[r+o];n[r]=i;}return n},k.PCG=D,k}(),t.exports.default=t.exports;}));class Ze{constructor(t){this.transport=t,this.gnpLockAcquired=t.consoleAppEvent.pipe(Jt((t=>"response-gnp-lock"===t.event)),Lt((t=>t.token)),fe(1)),this.gnpLockAcquired.subscribe();}acquireGnpLock(t){const e=new Xe(4).toString(),n={action:"request-gnp-lock",id:t,token:e},r=this.gnpLockAcquired.pipe(ue((t=>t===e)));return this.transport.writeAction(n),r}releaseGnpLock(t,e){const n={action:"release-gnp-lock",id:t,token:e};this.transport.writeAction(n);}}!function(t){t[t.INPUT=0]="INPUT",t[t.OUTPUT=1]="OUTPUT",t[t.FEATURE=2]="FEATURE";}(Qe||(Qe={})),function(t){t.ABSOLUTE="absolute",t.RELATIVE="relative";}(Je||(Je={}));class tn{constructor(t){this.id=t;}equals(t){return this.id===t.id}startsWith(t){return this.id.startsWith(t.id)}toString(){return this.id}}function en(t,e,n){const r=t.toString(16).padStart(4,"0"),i=e.toString(16).padStart(4,"0");return new tn(`${r}:${i}:${n}`)}class nn{constructor(t,e,n,r){this.id=t,this.usagePage=e,this.usage=n,this.value=r;}isArray(){return Array.isArray(this.value)}static deserialize(t,e){return new nn(new tn(t),e.usagePage,e.usage,e.value)}}class rn{constructor(t,e,n){this.descriptor=e,this.transport=n,this.transportId=t.transportId,this.input=n.consoleAppEvent.pipe(Jt((t=>t.id===this.transportId)),rn.inputReportsFilter);}output(t,e,n){const r={action:"hid-output",id:this.transportId,usagePage:t,usage:e,value:n};this.transport.writeAction(r);}getFeatureReport(t,e){const n=new Xe(4).toString(),r={action:"request-hid-feature",id:this.transportId,token:n,usagePage:t,usage:e};return this.transport.writeAction(r),this.transport.consoleAppEvent.pipe(ue((t=>"response-hid-feature"===t.event&&t.token===n)),Lt((t=>t.value)))}setFeatureReport(t,e,n){const r={action:"set-hid-feature",id:this.transportId,usagePage:t,usage:e,value:n};this.transport.writeAction(r);}findDescriptor(t,e,n){return this.descriptor.find((r=>r.usagePage===t&&r.usage===e&&r.reportType===n))}}function on(t){return e=>e.pipe(function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=it(t);return M$1((function(e,r){for(var i=t.length,a=new Array(i),c=t.map((function(){return !1})),u=!1,l=function(e){Et(t[e]).subscribe(B$1(r,(function(t){a[e]=t,u||c[e]||(c[e]=!0,(u=c.every(k))&&(c=null));}),w));},h=0;h<i;h++)l(h);e.subscribe(B$1(r,(function(t){if(u){var e=s([t],o(a));r.next(n?n.apply(void 0,s([],o(e))):e);}})));}))}(t),Jt((([t,e])=>e)),Lt((([t,e])=>t)))}rn.inputReportsFilter=t=>t.pipe(Jt((t=>"hid-input"===t.event)),Lt((t=>nn.deserialize(t.id,t))));class sn{static typeFromAttr(t){return t>>6}static packetLengthFromAttr(t){return t&this.lengthMask}static deserialize(t){const e=t[0],n=t[1],r=t[2],i=this.typeFromAttr(t[3]),o=t[4],s=t[5],a=this.packetLengthFromAttr(t[3]),c=t.slice(6,a);return new Me(e,n,i,o,s,c,r)}}sn.lengthMask=63;class an{constructor(){this.data=[];}hasHeader(){return this.data.length>=an.gnpPacketHeaderLength}expectedPacketLength(){if(!this.hasHeader())throw new be("Unable to get expected packet length without a full header",Kt.UNEXPECTED_ERROR);return sn.packetLengthFromAttr(this.data[3])}appendData(t){this.hasHeader()&&this.expectedPacketLength()>an.gnpPacketMaxLength&&(this.data=[]),this.data=this.data.concat(t);}hasFullPacket(){if(!this.hasHeader())return !1;const t=this.expectedPacketLength();return this.data.length>=t}getPacketAndReset(){if(!this.hasFullPacket())throw new be("Trying to get packet but buffer is not complete",Kt.UNEXPECTED_ERROR);const t=sn.deserialize(Uint8Array.from(this.data));return this.data=[],t}}an.gnpPacketHeaderLength=6,an.gnpPacketMaxLength=63;class cn{static attrFromTypeAndPayloadLength(t,e){return (t<<6)+(e+6)}static serialize(t){const e=new Uint8Array(6);e[0]=t.destination,e[1]=t.source,e[2]=t.sequenceNumber,e[3]=this.attrFromTypeAndPayloadLength(t.type,t.payload.length),e[4]=t.command,e[5]=t.subCommand;const n=new Uint8Array(e.length+t.payload.length);return n.set(e),n.set(t.payload,e.length),n}}const un=()=>{};function ln(t){return me((e=>t()),(e=>t()),(()=>un))}const hn=()=>{return t=t=>t.command===ke.NACK,e=t=>{const e=t.subCommand in Ge?Ge[t.subCommand]:t.subCommand;return new be(`Got NACK response. Reason: ${e}`,Kt.DEVICE_ERROR)},n=>n.pipe(Lt((n=>t(n)?Ct(e(n)):Nt(n))),ge());var t,e;},dn=t=>ue((e=>e.type===Ue.REPLY&&e.sequenceNumber===t.sequenceNumber&&e.destination===t.source&&e.source===t.destination));class pn{constructor(t,e,n,r,i=0){this.hidChannel=t,this.gnpLock=e,this.transportId=n,this.primaryAddress=r,this.lockQueue=[],this.packets=t.input.pipe(pn.inputFilter),this.events=this.packets.pipe(pn.eventsFilter),this.nextSequenceNumber=i;}static get inputFilter(){return t=>{const e=t.pipe(Jt((t=>t.usagePage===He.GN_PROTOCOL&&t.usage===Le.DATA&&t.isArray()))),n=new an;return e.pipe(Pt((t=>{const e=t.value;if(n.appendData(e),n.hasFullPacket()){return Nt(n.getPacketAndReset())}return qt})),de())}}static supportsGnpOverHid(t){return void 0!==t.findDescriptor(He.GN_PROTOCOL,Le.DATA,Qe.OUTPUT)}getNextSequenceNumber(){const t=this.nextSequenceNumber;return this.nextSequenceNumber=(this.nextSequenceNumber+1)%255,t}doWithGnpLockHeld(t){this.lockQueue.push(t),this.lockQueue.length>1||this.processLockQueue();}processLockQueue(){this.gnpLock.acquireGnpLock(this.transportId).subscribe((t=>{(0, this.lockQueue[0])((t=>{var e;const n=null===(e=this.hidChannel.findDescriptor(He.GN_PROTOCOL,Le.DATA,Qe.OUTPUT))||void 0===e?void 0:e.reportSize;if(!n)throw new be("Cannot send GNP packets to this device.",Kt.DEVICE_ERROR);const r=cn.serialize(t);let i=0;do{const t=Math.min(r.length-i,n),e=r.subarray(i,i+t);i+=e.length,this.hidChannel.output(He.GN_PROTOCOL,Le.DATA,Array.from(e));}while(i<r.length)}),this.packets,(()=>{this.gnpLock.releaseGnpLock(this.transportId,t),this.lockQueue.splice(0,1),this.lockQueue.length>0&&this.processLockQueue();}));}));}sendEvent(t,e,n=this.primaryAddress){const r=new Me(n,Pe.PC_ADDR,Ue.EVENT,t.command,t.subCommand,t.serialize(e),0);this.doWithGnpLockHeld(((t,e,n)=>{t(r),n();}));}read(t,e=this.primaryAddress,n=2500){const r=new Fe(t,(t=>new Uint8Array));return this.readWithParams(r,null,e,n)}readWithParams(t,e,n=this.primaryAddress,r=2500){const i=new Me(n,Pe.PC_ADDR,Ue.READ,t.command,t.subCommand,t.serialize(e),this.getNextSequenceNumber()),o=new Y;return this.doWithGnpLockHeld(((e,n,s)=>{n.pipe(dn(i),hn(),ue((t=>t.command===i.command&&t.subCommand===i.subCommand)),Dt(r),ln(s),Lt((e=>t.deserialize(e)))).subscribe(o),e(i);})),o}write(t,e,n=this.primaryAddress,r=2500){const i=new Me(n,Pe.PC_ADDR,Ue.WRITE,t.command,t.subCommand,t.serialize(e),this.getNextSequenceNumber()),o=new Y;return this.doWithGnpLockHeld(((t,e,n)=>{e.pipe(dn(i),hn(),ue((t=>t.command===ke.ACK)),Dt(r),ln(n),Lt((()=>!0))).subscribe(o),t(i);})),o}}pn.eventsFilter=t=>t.pipe(Jt((t=>t.type===Ue.EVENT)));class fn{constructor(t,e){this.parentGnpChannel=t,this.primaryAddress=e,this.events=t.events.pipe(Jt((t=>t.source===this.primaryAddress)));}sendEvent(t,e,n){this.parentGnpChannel.sendEvent(t,e,this.primaryAddress);}read(t,e,n){return this.parentGnpChannel.read(t,this.primaryAddress,n)}readWithParams(t,e,n,r){return this.parentGnpChannel.readWithParams(t,e,this.primaryAddress,r)}write(t,e,n,r){return this.parentGnpChannel.write(t,e,this.primaryAddress,r)}}function vn(t,e,n,r){if(!pn.supportsGnpOverHid(t))return Ct((()=>new be("Device does not support GNP commands.",Kt.DEVICE_ERROR)));const i=Nt(Pe.HS_BT_USB_ADDR,Pe.BASE_ADDR,Pe.CRADLE_ADDR,Pe.HS1_ADDR,Pe.HS_CRADLE_ADDR).pipe(Lt(((r,i)=>Gt((()=>{const o=new pn(t,new Ze(e),n,r,i);return o.read(qe,r,500).pipe(Lt((t=>o)),ee((()=>et)))})))),kt(),ie(1),ae((()=>new be("GNP probe failed.",Kt.DEVICE_ERROR))));return Xt(r.pipe(Pt((t=>Ct((()=>new be("Device was suddenly disconnected.",Kt.DEVICE_ERROR)))))),i).pipe(de())}function En(t,e){return new fn(t,e)}class gn{constructor(){this.primaryAddress=Pe.BASE_ADDR,this.events=qt;}subscribeToEvent(t,e){return Ct((()=>new be("This device does not support GNP commands.",Kt.FEATURE_NOT_SUPPORTED)))}sendEvent(t,e,n){throw new be("This device does not support GNP commands.",Kt.FEATURE_NOT_SUPPORTED)}read(t,e,n){return Ct((()=>new be("This device does not support GNP commands.",Kt.FEATURE_NOT_SUPPORTED)))}readWithParams(t,e,n,r){return Ct((()=>new be("This device does not support GNP commands.",Kt.FEATURE_NOT_SUPPORTED)))}write(t,e,n,r){return Ct((()=>new be("This device does not support GNP commands.",Kt.FEATURE_NOT_SUPPORTED)))}}class _n{constructor(t){this.transportId=t,this.isChild=!1;}equals(t){return this.isChild===t.isChild&&this.transportId===t.transportId}toString(){return this.transportId}}class mn{constructor(t,e){this.parentId=t,this.gnpAddress=e,this.isChild=!0,this.transportId=t.transportId;}equals(t){if(this.isChild===t.isChild){const e=t;return this.parentId.equals(e.parentId)&&this.gnpAddress===e.gnpAddress}return !1}toString(){return `0x${t=this.gnpAddress,t.toString(16).padStart(2,"0").toUpperCase()}@${this.transportId}`;var t;}}var bn,yn,On;!function(t){t.NO_TRACKING="no-tracking",t.TRACK_ERRORS="track-errors",t.TRACK_USAGE="track-usage",t.TRACK_ALL="track-all";}(bn||(bn={})),function(t){t[t.BLUETOOTH=0]="BLUETOOTH",t[t.INDIRECT=1]="INDIRECT",t[t.USB=2]="USB";}(yn||(yn={})),function(t){t[t.BASE=0]="BASE",t[t.HEADSET=1]="HEADSET",t[t.DESKSTAND=2]="DESKSTAND",t[t.OTHER=3]="OTHER",t[t.DONGLE=4]="DONGLE",t[t.PC=5]="PC",t[t.EHS=6]="EHS",t[t.USB=7]="USB",t[t.SPEAKER_PHONE=8]="SPEAKER_PHONE",t[t.INDICATOR=9]="INDICATOR",t[t.MOBILE=10]="MOBILE",t[t.NONE=11]="NONE",t[t.LOCAL=12]="LOCAL",t[t.DISPLAY=13]="DISPLAY",t[t.HS_CRADLE=14]="HS_CRADLE",t[t.HS_CRADLE2=15]="HS_CRADLE2",t[t.MOBILE_IAP=16]="MOBILE_IAP",t[t.CRADLE=17]="CRADLE",t[t.VIDEO=18]="VIDEO",t[t.NOT_GN=252]="NOT_GN",t[t.ANY_GN=253]="ANY_GN",t[t.NOT_INIT=254]="NOT_INIT",t[t.ANY=255]="ANY";}(On||(On={}));class wn{constructor(t,e,n,r,i,o,s,a,c,u,l){this.id=t,this.type=e,this.hidChannel=n,this.events=r,this.primaryAddress=i,this.sendEvent=o,this.read=s,this.readWithParams=a,this.write=c,this.onDisconnect=u,this.parentConnectionId=l,this.onDisconnect.subscribe({error:w});}static createConnection(t,e,n,r,i,o){const s=r.sendEvent.bind(r),a=r.read.bind(r),c=r.readWithParams.bind(r),u=r.write.bind(r);return new wn(t,e,n,r.events,r.primaryAddress,s,a,c,u,i,o)}}const Nn=(t=3,e=500)=>n=>n.pipe(Pt(((n,r)=>{const i=r+1;return i>t?Ct((()=>n)):Ft(i*i*e)})));function Cn(t,e,n,r=1e3,i=3,o=100){return Gt((()=>t.read(e,n,r))).pipe(he(Nn(i,o)))}function Tn(t,e,n){const{deviceType:r,address:i}=n;return {transportId:e.transportId,vid:e.vid,pid:Cn(t,Ve,i),name:Cn(t,Ye,i),serialNumber:Cn(t,$e,i),capabilities:e.capabilities,deviceType:r,connectionGnpAddress:i}}class Sn{constructor(t,e,n=Tn,r=wn.createConnection,i=En){this.parentConnection=e,this.connectionCreator=r,this.createChildGnpChannel=i;const o=e.events.pipe(Jt((t=>t.command===ke.DEVICE&&t.subCommand===xe.ATTACH_EVENT)),Lt((t=>({deviceType:t.payload[0],address:t.payload[1]})))).pipe(Lt(n.bind(null,e,t)));this.connectionEvents=o.pipe(Lt((t=>{const n=Xt(e.events.pipe(ue((e=>e.command===ke.DEVICE&&e.subCommand===xe.DETACH_EVENT&&e.payload[1]===t.connectionGnpAddress)),Lt(w)),e.onDisconnect);return {attach:t,detach:n}})),Pt((t=>te(Nt(t.attach),this.createConnection(t.attach,t.detach)))),Lt((([t,e])=>({event:t,connection:e}))),_e(e.onDisconnect)),e.sendEvent(Be,[]);}createConnection(t,e){const n=t.connectionGnpAddress,r=this.createChildGnpChannel(this.parentConnection,n),i=new mn(this.parentConnection.id,n);return Nt(this.connectionCreator(i,yn.INDIRECT,this.parentConnection.hidChannel,r,e,this.parentConnection.id))}}const An={command:ke.IDENT,subCommand:xe.TYPE,deserialize:t=>{const{payload:e}=t,n=e[0];if(n<1||n>=e.length)throw new be("Cannot get device type.",Kt.DEVICE_ERROR);return e[1]}};function In(t,e,n,r=Bt.ERROR,i=Wt.JS_LIB){const o=`${t} ${function(t){if(t instanceof be){const e=t;return `JabraError: ${e.message} (type: ${e.type})`}if(t instanceof Error){const e=t;return `Error: ${e.message} (name: ${e.name})`}return `Unknown error: ${t}`}(e)}`;ye(o,n,r,i);}function Rn(t){return new Sn(t.event,t.connection).connectionEvents}class Dn{constructor(t,e,n=((t,e,n)=>new rn(t,e,n)),r=vn,i=Rn,o=wn.createConnection){this.transport=t,this.logger=e,this.createHidChannel=n,this.createRootGnpChannel=r,this.connectionCreator=o;const s=this.transport.consoleAppEvent.pipe(Jt((t=>"attach"===t.event)),Lt(Dn.createAttachEvent),ee(((t,e)=>(In("",t,this.logger),e)))).pipe(Lt((t=>{const e=this.transport.consoleAppEvent.pipe(Jt((t=>"detach"===t.event)),ue((e=>Dn.getTransportId(e)===t.transportId)),Lt(w),fe());return e.subscribe(),{attach:t,detach:e}})),Pt((t=>this.createConnection(t.attach,t.detach))),de()),a=s.pipe(Jt((t=>t.event.deviceType===On.DONGLE)),Jt((t=>pn.supportsGnpOverHid(t.connection.hidChannel))),Pt((t=>i(t))));this.connectionEvents=Mt(s,a).pipe(de());}static convertToReportType(t){switch(t){case"input":return Qe.INPUT;case"output":return Qe.OUTPUT;case"feature":return Qe.FEATURE;default:throw new be(`${t} is not a valid ReportType`,Kt.UNEXPECTED_ERROR)}}static convertToValueType(t){switch(t){case"absolute":return Je.ABSOLUTE;case"relative":return Je.RELATIVE;default:throw new be(`${t} Not a valid ValueType`,Kt.UNEXPECTED_ERROR)}}static createDescriptor(t){return t.map((t=>({reportType:Dn.convertToReportType(t.reportType),usagePage:t.usagePage,usage:t.usage,valueType:Dn.convertToValueType(t.valueType),reportSize:t.reportSize})))}static getMandatoryField(t,e){const n=t[e];if(void 0===n)throw new be(`JSON event lacks required field "${e}: ${JSON.stringify(t)}`,Kt.UNEXPECTED_ERROR);return n}static getTransportId(t){return Dn.getMandatoryField(t,"id")}static createAttachEvent(t){return {transportId:Dn.getTransportId(t),vid:Dn.getMandatoryField(t,"vid"),pid:Nt(Dn.getMandatoryField(t,"pid")),name:Nt(Dn.getMandatoryField(t,"name")),serialNumber:Nt(Dn.getMandatoryField(t,"serialNumber")),capabilities:Dn.createDescriptor(Dn.getMandatoryField(t,"descriptor"))}}createConnection(t,e,n=3,r=100){const{capabilities:i,transportId:o}=t,s=new _n(o),a=this.createHidChannel(s,i,this.transport),c=this.createRootGnpChannel(a,this.transport,o,e).pipe(ee(((t,e)=>(t.type&&t.type===Kt.DEVICE_ERROR&&this.transport.context===Vt.WEB_HID&&ye("Child devices are not yet supported when using WebHID.",this.logger,Bt.WARNING,Wt.JS_LIB),Nt(new gn)))),de()),u=c.pipe(Pt((t=>t.read(An))),he(Nn(n,r)),ee((t=>Nt(On.ANY))));return te(c,u).pipe(_e(e),Lt((([n,r])=>({event:Object.assign(Object.assign({},t),{deviceType:r,connectionGnpAddress:n.primaryAddress}),connection:this.connectionCreator(s,yn.USB,a,n,e)}))))}}var Hn,Ln,Pn,Un,kn;class xn{constructor(t,e,n,r,i,o){this.vendorId=t,this.productId=e,this.serialNumber=n,this.name=r,this.type=i,Ln.set(this,void 0),h(this,Ln,new we(o,l(xn,Hn,"m",Un))),this.connectionAdded=l(this,Ln,"f").itemAdded,this.connectionRemoved=l(this,Ln,"f").itemRemoved,this.connectionList=l(this,Ln,"f").itemList,this.onDisconnect=l(this,Ln,"f").itemList.pipe(ve(1),ue((t=>0===t.length)),Lt(w),de());}get id(){return en(this.vendorId,this.productId,this.serialNumber)}get currentConnections(){return l(this,Ln,"f").getValue()}get browserLabel(){return `${this.vendorId.toString(16).padStart(4,"0")}:${this.productId.toString(16).padStart(4,"0")}`}}Hn=xn,Ln=new WeakMap,Un=function(t,e){return l(xn,Hn,"f",Pn).indexOf(t.type)-l(xn,Hn,"f",Pn).indexOf(e.type)},Pn={value:[yn.USB,yn.INDIRECT,yn.BLUETOOTH]};class Gn{constructor(t){this.deviceObservables=new we(t);}static exceptionToUndefined(t){try{return t()}catch(t){if(t instanceof be)return;throw t}}connectionExists(t){return void 0!==Gn.exceptionToUndefined((()=>this.findConnectionById(t)))}findConnectionById(t){for(const e of this.deviceObservables.getValue())for(const n of e.currentConnections)if(n.id.equals(t))return n;throw new be(`Could not find connection with id ${t.toString()}`,Kt.UNEXPECTED_ERROR)}findDeviceByDeviceId(t){return this.deviceObservables.getValue().find((e=>e.id.startsWith(t)||t.startsWith(e.id)))}}class Fn{constructor(t,e){this.logger=e;const[n,r]=(i=t.pipe(Jt((t=>!this.deviceCollection.connectionExists(t.connection.id))),ne((t=>this.force(t)))),[Jt(o=({event:t,pid:e,serialNumber:n})=>!this.deviceCollection.findDeviceByDeviceId(en(t.event.vid,e,n)),s)(Et(i)),Jt(Qt(o,s))(Et(i))]);var i,o,s;const a=n.pipe(Lt((t=>Fn.createDevice(t,r))));this.deviceCollection=new Gn(a),this.deviceObservables=this.deviceCollection.deviceObservables;}force(t){const{name:e,pid:n,serialNumber:r}=t.event,i=t.connection.onDisconnect.pipe((a=Ct((()=>new Error(`Connection with ID ${t.connection.id} disconnected`))),d$1(c)?ne((function(){return a}),c):ne((function(){return a}))));var a,c;return te(e,n,r).pipe(Lt((([e,n,r])=>({event:t,name:e,pid:n,serialNumber:r}))),function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return t.length?M$1((function(e,n){Zt(s([e],o(t)))(n);})):k}(i),ee((t=>(ye(`Failed to retrieve child connection information. Error: ${t}`,this.logger,Bt.WARNING,Wt.JS_LIB),et))))}static createDevice(t,e){const{event:n,pid:r,name:i,serialNumber:o}=t,{vid:s,deviceType:a}=n.event,c=e.pipe(Jt((e=>Fn.isSameDevice(t,e))),Lt((t=>t.event.connection))),u=xt(Nt(n.connection),c);return new xn(s,r,o,i,a,u)}static isSameDevice(t,e){const n=en(t.event.event.vid,t.pid,t.serialNumber),r=en(e.event.event.vid,e.pid,e.serialNumber);return n.startsWith(r)||r.startsWith(n)}static create(t,e){const n=new Dn(t,e);return new Fn(n.connectionEvents)}}function Mn(t){var e,r,i;return n(this,void 0,void 0,(function*(){const n=null==t?void 0:t.logger;ye("Jabra SDK JS starting up...",n,Bt.INFO);const o=new Re(t);o.validateOrganizationKey(),o.validateAppId(),o.validateAppName();const s=null!==(r=null===(e=null==t?void 0:t.internal)||void 0===e?void 0:e.testDeviceTransport)&&void 0!==r?r:yield Se(n,null==t?void 0:t.transport,null===(i=null==t?void 0:t.internal)||void 0===i?void 0:i.recorder);new Ae(s,n);const a=Fn.create(s,n),c=new Ce(a,s,t);return yield s.connect(),c}))}class Bn{constructor(t,e,n,r){this.deviceId=t,this.usagePage=e,this.usage=n,this.value=r;}}class Wn{constructor(t,e){this.token=t,this.value=e;}}!function(t){t.UsageReport=class{constructor(t,e){this.usage=t,this.value=e;}};}(kn||(kn={}));var Kn,Yn,Vn,jn,qn,$n,zn,Qn,Jn,Xn,Zn=ze((function(t){!function(e){var n=function(t,e,n){if(!(t instanceof ArrayBuffer||"undefined"!=typeof Buffer&&t instanceof Buffer))throw new Error("Must specify a valid ArrayBuffer or Buffer.");e=e||0,n=n||t.byteLength||t.length,this._view=new Uint8Array(t.buffer||t,e,n),this.bigEndian=!1;};n._scratch=new DataView(new ArrayBuffer(8)),Object.defineProperty(n.prototype,"buffer",{get:function(){return "undefined"!=typeof Buffer?Buffer.from(this._view.buffer):this._view.buffer},enumerable:!0,configurable:!1}),Object.defineProperty(n.prototype,"byteLength",{get:function(){return this._view.length},enumerable:!0,configurable:!1}),n.prototype._setBit=function(t,e){e?this._view[t>>3]|=1<<(7&t):this._view[t>>3]&=~(1<<(7&t));},n.prototype.getBits=function(t,e,n){var r=8*this._view.length-t;if(e>r)throw new Error("Cannot get "+e+" bit(s) from offset "+t+", "+r+" available");for(var i=0,o=0;o<e;){var s=e-o,a=7&t,c=this._view[t>>3],u=Math.min(s,8-a);this.bigEndian?(i<<=u,i|=c>>8-u-a&~(255<<u)):i|=(c>>a&~(255<<u))<<o,t+=u,o+=u;}return n?(32!==e&&i&1<<e-1&&(i|=-1^(1<<e)-1),i):i>>>0},n.prototype.setBits=function(t,e,n){var r=8*this._view.length-t;if(n>r)throw new Error("Cannot set "+n+" bit(s) from offset "+t+", "+r+" available");for(var i=0;i<n;){var o,s,a,c=n-i,u=7&t,l=t>>3,h=Math.min(c,8-u);if(this.bigEndian){s=e>>n-i-h&(o=~(-1<<h));var d=8-u-h;a=~(o<<d),this._view[l]=this._view[l]&a|s<<d;}else s=e&(o=~(255<<h)),e>>=h,a=~(o<<u),this._view[l]=this._view[l]&a|s<<u;t+=h,i+=h;}},n.prototype.getBoolean=function(t){return 0!==this.getBits(t,1,!1)},n.prototype.getInt8=function(t){return this.getBits(t,8,!0)},n.prototype.getUint8=function(t){return this.getBits(t,8,!1)},n.prototype.getInt16=function(t){return this.getBits(t,16,!0)},n.prototype.getUint16=function(t){return this.getBits(t,16,!1)},n.prototype.getInt32=function(t){return this.getBits(t,32,!0)},n.prototype.getUint32=function(t){return this.getBits(t,32,!1)},n.prototype.getFloat32=function(t){return n._scratch.setUint32(0,this.getUint32(t)),n._scratch.getFloat32(0)},n.prototype.getFloat64=function(t){return n._scratch.setUint32(0,this.getUint32(t)),n._scratch.setUint32(4,this.getUint32(t+32)),n._scratch.getFloat64(0)},n.prototype.setBoolean=function(t,e){this.setBits(t,e?1:0,1);},n.prototype.setInt8=n.prototype.setUint8=function(t,e){this.setBits(t,e,8);},n.prototype.setInt16=n.prototype.setUint16=function(t,e){this.setBits(t,e,16);},n.prototype.setInt32=n.prototype.setUint32=function(t,e){this.setBits(t,e,32);},n.prototype.setFloat32=function(t,e){n._scratch.setFloat32(0,e),this.setBits(t,n._scratch.getUint32(0),32);},n.prototype.setFloat64=function(t,e){n._scratch.setFloat64(0,e),this.setBits(t,n._scratch.getUint32(0),32),this.setBits(t+32,n._scratch.getUint32(4),32);},n.prototype.getArrayBuffer=function(t,e){for(var n=new Uint8Array(e),r=0;r<e;r++)n[r]=this.getUint8(t+8*r);return n};var r=function(t,e){return function(){if(this._index+e>this._length)throw new Error("Trying to read past the end of the stream");var n=this._view[t](this._index);return this._index+=e,n}},i=function(t,e){return function(n){this._view[t](this._index,n),this._index+=e;}};function o(t,e,n){if(0===e)return "";var r=0,i=[],o=!0,s=!!e;for(e||(e=Math.floor((t._length-t._index)/8));r<e;){var a=t.readUint8();if(0===a&&(o=!1,!s))break;o&&i.push(a),r++;}var c=String.fromCharCode.apply(null,i);if(!n)return c;try{return decodeURIComponent(escape(c))}catch(t){return c}}var s=function(t,e,r){var i=t instanceof ArrayBuffer||"undefined"!=typeof Buffer&&t instanceof Buffer;if(!(t instanceof n||i))throw new Error("Must specify a valid BitView, ArrayBuffer or Buffer");this._view=i?new n(t,e,r):t,this._index=0,this._startIndex=0,this._length=8*this._view.byteLength;};Object.defineProperty(s.prototype,"index",{get:function(){return this._index-this._startIndex},set:function(t){this._index=t+this._startIndex;},enumerable:!0,configurable:!0}),Object.defineProperty(s.prototype,"length",{get:function(){return this._length-this._startIndex},set:function(t){this._length=t+this._startIndex;},enumerable:!0,configurable:!0}),Object.defineProperty(s.prototype,"bitsLeft",{get:function(){return this._length-this._index},enumerable:!0,configurable:!0}),Object.defineProperty(s.prototype,"byteIndex",{get:function(){return Math.ceil(this._index/8)},set:function(t){this._index=8*t;},enumerable:!0,configurable:!0}),Object.defineProperty(s.prototype,"buffer",{get:function(){return this._view.buffer},enumerable:!0,configurable:!1}),Object.defineProperty(s.prototype,"view",{get:function(){return this._view},enumerable:!0,configurable:!1}),Object.defineProperty(s.prototype,"bigEndian",{get:function(){return this._view.bigEndian},set:function(t){this._view.bigEndian=t;},enumerable:!0,configurable:!1}),s.prototype.readBits=function(t,e){var n=this._view.getBits(this._index,t,e);return this._index+=t,n},s.prototype.writeBits=function(t,e){this._view.setBits(this._index,t,e),this._index+=e;},s.prototype.readBoolean=r("getBoolean",1),s.prototype.readInt8=r("getInt8",8),s.prototype.readUint8=r("getUint8",8),s.prototype.readInt16=r("getInt16",16),s.prototype.readUint16=r("getUint16",16),s.prototype.readInt32=r("getInt32",32),s.prototype.readUint32=r("getUint32",32),s.prototype.readFloat32=r("getFloat32",32),s.prototype.readFloat64=r("getFloat64",64),s.prototype.writeBoolean=i("setBoolean",1),s.prototype.writeInt8=i("setInt8",8),s.prototype.writeUint8=i("setUint8",8),s.prototype.writeInt16=i("setInt16",16),s.prototype.writeUint16=i("setUint16",16),s.prototype.writeInt32=i("setInt32",32),s.prototype.writeUint32=i("setUint32",32),s.prototype.writeFloat32=i("setFloat32",32),s.prototype.writeFloat64=i("setFloat64",64),s.prototype.readASCIIString=function(t){return function(t,e){return o(t,e,!1)}(this,t)},s.prototype.readUTF8String=function(t){return function(t,e){return o(t,e,!0)}(this,t)},s.prototype.writeASCIIString=function(t,e){!function(t,e,n){for(var r=n||e.length+1,i=0;i<r;i++)t.writeUint8(i<e.length?e.charCodeAt(i):0);}(this,t,e);},s.prototype.writeUTF8String=function(t,e){!function(t,e,n){for(var r=function(t){var e,n,r=[];for(e=0;e<t.length;e++)(n=t.charCodeAt(e))<=127?r.push(n):n<=2047?(r.push(n>>6|192),r.push(63&n|128)):n<=65535?(r.push(n>>12|224),r.push(n>>6&63|128),r.push(63&n|128)):(r.push(n>>18|240),r.push(n>>12&63|128),r.push(n>>6&63|128),r.push(63&n|128));return r}(e),i=n||r.length+1,o=0;o<i;o++)t.writeUint8(o<r.length?r[o]:0);}(this,t,e);},s.prototype.readBitStream=function(t){var e=new s(this._view);return e._startIndex=this._index,e._index=this._index,e.length=t,this._index+=t,e},s.prototype.writeBitStream=function(t,e){var n;for(e||(e=t.bitsLeft);e>0;)n=Math.min(e,32),this.writeBits(t.readBits(n),n),e-=n;},s.prototype.readArrayBuffer=function(t){var e=this._view.getArrayBuffer(this._index,t);return this._index+=8*t,e},s.prototype.writeArrayBuffer=function(t,e){this.writeBitStream(new s(t),8*e);},t.exports&&(t.exports={BitView:n,BitStream:s});}();}));function tr(){return n(this,void 0,void 0,(function*(){const{hid:t}=window.navigator;if(!t)throw new be("WebHID not supported",Kt.INIT_ERROR);const e=yield t.requestDevice({filters:[{vendorId:Kn.VENDOR_ID}]});return new BroadcastChannel(Kn.PAIRING_CHANNEL).postMessage(null),e}))}!function(t){t[t.VENDOR_ID=2830]="VENDOR_ID",t.PAIRING_CHANNEL="jabra-webhid-pairing-channel";}(Kn||(Kn={})),function(t){t[t.HOOK_SWITCH=32]="HOOK_SWITCH",t[t.GN_PSEUDO_HOOK_SWITCH=65531]="GN_PSEUDO_HOOK_SWITCH",t[t.FLASH=33]="FLASH",t[t.ALT_HOLD=35]="ALT_HOLD",t[t.REDIAL=36]="REDIAL",t[t.ONLINE=42]="ONLINE",t[t.SPEAKER_PHONE=43]="SPEAKER_PHONE",t[t.PHONE_MUTE=47]="PHONE_MUTE",t[t.SEND=49]="SEND",t[t.SPEED_DIAL=80]="SPEED_DIAL",t[t.VOICE_MAIL=112]="VOICE_MAIL",t[t.ANSWER_ON_OFF=116]="ANSWER_ON_OFF",t[t.LINE_BUSY=151]="LINE_BUSY",t[t.RINGER=158]="RINGER",t[t.PHONE_KEY_0=176]="PHONE_KEY_0",t[t.PHONE_KEY_1=177]="PHONE_KEY_1",t[t.PHONE_KEY_2=178]="PHONE_KEY_2",t[t.PHONE_KEY_3=179]="PHONE_KEY_3",t[t.PHONE_KEY_4=180]="PHONE_KEY_4",t[t.PHONE_KEY_5=181]="PHONE_KEY_5",t[t.PHONE_KEY_6=182]="PHONE_KEY_6",t[t.PHONE_KEY_7=183]="PHONE_KEY_7",t[t.PHONE_KEY_8=184]="PHONE_KEY_8",t[t.PHONE_KEY_9=185]="PHONE_KEY_9",t[t.PHONE_KEY_STAR=186]="PHONE_KEY_STAR",t[t.PHONE_KEY_POUND=187]="PHONE_KEY_POUND",t[t.ALT_VOLUME_UP=233]="ALT_VOLUME_UP",t[t.ALT_VOLUME_DOWN=234]="ALT_VOLUME_DOWN",t[t.REJECT_CALL=65533]="REJECT_CALL";}(Yn||(Yn={}));class er{constructor(t,e,n){this.type=t,this.value=e,this.valueType=n;}toString(){return void 0===Yn[this.type]?`Unknown signal: type: ${this.type}, value: ${this.value}, valueType: ${this.valueType}`:`Signal: type: ${Yn[this.type]}, value: ${this.value}, valueType: ${this.valueType}`}}!function(t){t[t.BUTTON=9]="BUTTON",t[t.CONSUMER=12]="CONSUMER",t[t.LED=8]="LED",t[t.TELEPHONY=11]="TELEPHONY",t[t.GN_CONSUMER=65312]="GN_CONSUMER",t[t.GN_EXT_BUTTONS=65360]="GN_EXT_BUTTONS",t[t.GN_LED=65344]="GN_LED",t[t.GN_MISC=65376]="GN_MISC",t[t.GN_TELEPHONY=65328]="GN_TELEPHONY";}(Vn||(Vn={})),function(t){t[t.MUTE=9]="MUTE",t[t.OFF_HOOK=23]="OFF_HOOK",t[t.RING=24]="RING",t[t.MESSAGE_WAIT=25]="MESSAGE_WAIT",t[t.HOLD=32]="HOLD",t[t.MIC_MUTE=33]="MIC_MUTE",t[t.ONLINE=42]="ONLINE",t[t.HID_OFFLINE=43]="HID_OFFLINE";}(jn||(jn={})),function(t){t[t.HOOK_SWITCH=32]="HOOK_SWITCH",t[t.FLASH=33]="FLASH",t[t.HOLD=35]="HOLD",t[t.REDIAL=36]="REDIAL",t[t.ONLINE=42]="ONLINE",t[t.SPEAKER_PHONE=43]="SPEAKER_PHONE",t[t.MUTE=47]="MUTE",t[t.HID_SEND=49]="HID_SEND",t[t.SPEED_DIAL=80]="SPEED_DIAL",t[t.VOICE_MAIL=112]="VOICE_MAIL",t[t.ANSWER_ON_OFF=116]="ANSWER_ON_OFF",t[t.LINE_BUSY=151]="LINE_BUSY",t[t.RINGER=158]="RINGER",t[t.PHONE_KEY_0=176]="PHONE_KEY_0",t[t.PHONE_KEY_1=177]="PHONE_KEY_1",t[t.PHONE_KEY_2=178]="PHONE_KEY_2",t[t.PHONE_KEY_3=179]="PHONE_KEY_3",t[t.PHONE_KEY_4=180]="PHONE_KEY_4",t[t.PHONE_KEY_5=181]="PHONE_KEY_5",t[t.PHONE_KEY_6=182]="PHONE_KEY_6",t[t.PHONE_KEY_7=183]="PHONE_KEY_7",t[t.PHONE_KEY_8=184]="PHONE_KEY_8",t[t.PHONE_KEY_9=185]="PHONE_KEY_9",t[t.PHONE_KEY_STAR=186]="PHONE_KEY_STAR",t[t.PHONE_KEY_POUND=187]="PHONE_KEY_POUND",t[t.HID_ALT_VOLUME_UP=233]="HID_ALT_VOLUME_UP",t[t.HID_ALT_VOLUME_DOWN=234]="HID_ALT_VOLUME_DOWN",t[t.GN_PSEUDO_HOOK_SWITCH=65531]="GN_PSEUDO_HOOK_SWITCH",t[t.GN_OUT_OF_RANGE=65532]="GN_OUT_OF_RANGE",t[t.GN_REJECT_CALL=65533]="GN_REJECT_CALL",t[t.GN_TELEPHONY_CONT_SET=65535]="GN_TELEPHONY_CONT_SET";}(qn||(qn={}));class nr{constructor(t,e,n,r,i){this.hidChannel=t,this.onDisconnect=e,this.isSoftphoneInFocus=n,this.lockHeld=r,this.logger=i,this.cachedSignals=new Map;}setup(){const t=this.filter().pipe(de());return t.subscribe(),t}filter(){const t=this.hidChannel.input.pipe(Jt((t=>t.usagePage===Vn.GN_TELEPHONY&&!t.isArray())),Pt((t=>{const e=this.hidChannel.findDescriptor(t.usagePage,t.usage,Qe.INPUT);return (null==e?void 0:e.valueType)?Nt(Object.assign(Object.assign({},t),{valueType:e.valueType})):(In("",new be(`Unable to find value-type in descriptor for UsagePage: ${t.usagePage} and Usage: ${t.usage}`,Kt.FEATURE_NOT_SUPPORTED),this.logger),et)})),Jt((t=>{if(t.valueType===Je.RELATIVE)return Boolean(t.value);return this.cachedSignals.get(t.usage)!==t.value})),me((t=>{this.cachedSignals.set(t.usage,t.value);})),_e(this.onDisconnect),de()),e=[Yn.HOOK_SWITCH,Yn.REDIAL],n=t.pipe(on(this.isSoftphoneInFocus),Jt((t=>e.includes(t.usage)&&!this.lockHeld.getValue())));return Mt(t.pipe(Jt((t=>this.lockHeld.getValue()))),n).pipe(Lt((t=>new er(t.usage,0!==t.value,t.valueType))),ee((t=>(ye(t.message,this.logger),et))))}}class rr{constructor(t,e,n,r,i,o){this.device=t,this.onDisconnect=n,$n.set(this,void 0),zn.set(this,new j(!1)),Qn.set(this,void 0),Jn.set(this,!1),this.deviceSignals=new Y,h(this,$n,r),l(this,$n,"f").lockHeld.subscribe(l(this,zn,"f")),h(this,Qn,e),this.onDisconnect.pipe(ue(),Lt((()=>!0))).subscribe((t=>{h(this,Jn,t);}));const s=new nr(l(this,Qn,"f"),this.onDisconnect,i,l(this,zn,"f"),o);this.deviceSignals=s.setup();}checkCallLockHeld(t){if(!l(this,zn,"f").getValue())throw new be(t,Kt.SDK_USAGE_ERROR)}checkCallLockNotHeld(t){if(l(this,zn,"f").getValue())throw new be(t,Kt.SDK_USAGE_ERROR)}checkHasDisconnected(){if(l(this,Jn,"f"))throw new be("CallControl cannot be performed as the connection has disconnected.",Kt.SDK_USAGE_ERROR)}takeCallLock(){return this.checkHasDisconnected(),this.checkCallLockNotHeld("Trying to take the call lock, but it is already held!"),St(l(this,$n,"f").tryTakeCallLock())}releaseCallLock(){this.checkHasDisconnected(),this.checkCallLockHeld("Trying to release the call lock, but it is not held!"),l(this,$n,"f").releaseCallLock();}offHook(t){this.checkHasDisconnected(),this.checkCallLockHeld("Calls can only be started and stopped when the call lock is held.");const e=l(this,Qn,"f").findDescriptor(Vn.GN_LED,jn.OFF_HOOK,Qe.OUTPUT);if(!e)throw new be(`Device ${this.device.name} does not support any offHook functionality.`,Kt.FEATURE_NOT_SUPPORTED);const n=t?1:0;l(this,Qn,"f").output(e.usagePage,e.usage,n);}ring(t){this.checkHasDisconnected(),this.checkCallLockHeld("The ringer state can only be modified when the call lock is held.");const e=l(this,Qn,"f").findDescriptor(Vn.GN_LED,jn.RING,Qe.OUTPUT),n=l(this,Qn,"f").findDescriptor(Vn.GN_TELEPHONY,qn.RINGER,Qe.OUTPUT);if(!e&&!n)throw new be(`Device ${this.device.name} does not support any ring functionality.`,Kt.FEATURE_NOT_SUPPORTED);if(n){const e=t?1:0;l(this,Qn,"f").output(n.usagePage,n.usage,e);}if(e){const n=t?1:0;l(this,Qn,"f").output(e.usagePage,e.usage,n);}}mute(t){this.checkHasDisconnected(),this.checkCallLockHeld("The mute state can only be modified when the call lock is held.");let e=l(this,Qn,"f").findDescriptor(Vn.GN_LED,jn.MIC_MUTE,Qe.OUTPUT);if(e||(e=l(this,Qn,"f").findDescriptor(Vn.GN_LED,jn.MUTE,Qe.OUTPUT)),!e)throw new be(`Device ${this.device.name} does not support any mute functionality.`,Kt.FEATURE_NOT_SUPPORTED);const n=t?1:0;l(this,Qn,"f").output(e.usagePage,e.usage,n);}hold(t){this.checkHasDisconnected(),this.checkCallLockHeld("The hold state can only be modified when the call lock is held.");const e=l(this,Qn,"f").findDescriptor(Vn.GN_LED,jn.HOLD,Qe.OUTPUT);if(!e)throw new be(`Device ${this.device.name} does not support hold functionality.`,Kt.FEATURE_NOT_SUPPORTED);const n=t?1:0;l(this,Qn,"f").output(e.usagePage,e.usage,n);}}$n=new WeakMap,zn=new WeakMap,Qn=new WeakMap,Jn=new WeakMap,function(t){t[t.STD_TELEPHONY=0]="STD_TELEPHONY",t[t.GN_TELEPHONY=1]="GN_TELEPHONY";}(Xn||(Xn={}));const ir={[De.SKYPE]:Xn.GN_TELEPHONY,[De.CISCO]:Xn.GN_TELEPHONY,[De.AVAYA]:Xn.GN_TELEPHONY,[De.SIEMENS]:Xn.GN_TELEPHONY,[De.IBM]:Xn.GN_TELEPHONY,[De.AASTRA]:Xn.GN_TELEPHONY,[De.JABRA]:Xn.GN_TELEPHONY,[De.NEC]:Xn.GN_TELEPHONY,[De.SHORETEL]:Xn.GN_TELEPHONY,[De.MS_OC]:Xn.STD_TELEPHONY,[De.ALCATEL]:Xn.STD_TELEPHONY,[De.OTHER]:Xn.STD_TELEPHONY,[De.NORTEL]:null,[De.GENERIC]:null};function or(t,e){const n=t.read(je).pipe(Lt((t=>ir[t]===e))),r=t.read(new Ke).pipe(Lt((t=>t.find((t=>ir[t]===e))))).pipe(Lt((e=>e?t.write(je,e):Nt(!1))),ge());return n.pipe((i=Nt(!0),o=r,t=>t.pipe(Lt((t=>t?i:o)),ge())));var i,o;}class sr{constructor(t,e,n){this.connectionCallLock=t,this.device=e,this.logger=n,this.lockHeld=new j(!1),this.currentLocks=new j(new Set),this.lockReleaseEvent=new Y;}tryTakeCallLock(){const{currentConnections:t}=this.device,e=new Set,n=Gt((()=>wt(t).pipe(ne((t=>this.takeSingleCallLock(t).pipe(ee((t=>(In("DeviceCallLock:",t,this.logger),Nt(""))))))),me((t=>e.add(t)))))).pipe(function(t,e){var n=arguments.length>=2;return function(r){return r.pipe(k,le(1),n?re(e):ae((function(){return new Tt})))}}(),Lt((n=>(e.delete(""),this.currentLocks.next(e),e.size!==t.length?(this.releaseCallLock(),!1):(this.lockHeld.next(!0),!0)))),fe());return n.subscribe((t=>{t&&(this.acquireLockOnNextConnectionEmit(),this.releaseLockOnRemovedConnectionEmit());})),n}acquireLockOnNextConnectionEmit(){this.device.connectionAdded.pipe(_e(this.lockReleaseEvent)).subscribe((t=>{this.takeSingleCallLock(t).pipe(_e(this.lockReleaseEvent),Lt((t=>(this.currentLocks.getValue().add(t),this.currentLocks.next(this.currentLocks.getValue()),w))),he(Nn())).subscribe({error:t=>{ye(`Failed to acquire the call lock on a new connection.\n Another softphone running an old SDK has most likely acquired this lock.\n Full error: ${t}`,this.logger,Bt.WARNING,Wt.JS_LIB);}});}));}releaseLockOnRemovedConnectionEmit(){this.device.connectionRemoved.pipe(_e(this.lockReleaseEvent)).subscribe((t=>this.releaseSingleCallLock(t.id.transportId)));}takeSingleCallLock(t){return Gt((()=>this.connectionCallLock.tryTakeCallLock(t.id.transportId))).pipe(Lt((e=>e.acquired?Nt(e.transportId):Ct((()=>new be(`Failed to acquire call lock on connection ${t.id.transportId}`,Kt.SDK_USAGE_ERROR))))),ge())}releaseCallLock(){this.lockReleaseEvent.next();[...this.currentLocks.getValue()].forEach((t=>{this.releaseSingleCallLock(t);})),this.currentLocks.getValue().clear(),this.currentLocks.next(this.currentLocks.getValue());}releaseSingleCallLock(t){this.connectionCallLock.releaseCallLock(t),this.currentLocks.getValue().delete(t),this.currentLocks.next(this.currentLocks.getValue()),0!==this.currentLocks.getValue().size&&0!==this.device.currentConnections.length||(this.lockReleaseEvent.next(),this.lockHeld.next(!1));}}class ar{constructor(t){this.transport=t;}tryTakeCallLock(t){const e={action:"request-call-lock",id:t};return this.transport.writeAction(e),this.transport.consoleAppEvent.pipe(Jt((e=>"response-call-lock"===e.event&&e.id===t)),Lt((t=>({transportId:t.id,acquired:t.acquired}))),ue())}releaseCallLock(t){const e={action:"release-call-lock",id:t};this.transport.writeAction(e);}}const cr=[{usagePage:Vn.GN_LED,usage:jn.OFF_HOOK,reportType:Qe.OUTPUT},{usagePage:Vn.GN_LED,usage:jn.RING,reportType:Qe.OUTPUT},{usagePage:Vn.GN_TELEPHONY,usage:qn.RINGER,reportType:Qe.OUTPUT},{usagePage:Vn.GN_LED,usage:jn.MIC_MUTE,reportType:Qe.OUTPUT},{usagePage:Vn.GN_LED,usage:jn.MUTE,reportType:Qe.OUTPUT},{usagePage:Vn.GN_LED,usage:jn.HOLD,reportType:Qe.OUTPUT}],ur=[yn.USB,yn.INDIRECT,yn.BLUETOOTH];function lr(t,e){const{hidChannel:n}=t;return !!function(t){return cr.some((({usagePage:e,usage:n,reportType:r})=>t.findDescriptor(e,n,r)))}(n)&&(!pn.supportsGnpOverHid(n)||e!==On.DONGLE&&e!==On.OTHER)}function hr(t){const{currentConnections:e,type:n}=t;var r;return (r=e,[...r].sort(((t,e)=>ur.indexOf(t.type)-ur.indexOf(e.type)))).find((t=>lr(t,n)))}function dr(t,e,n,r,i){const o=hr(t),{hidChannel:s,onDisconnect:a}=o,c=new sr(new ar(r),t,i);if(e)return Nt(new rr(t,s,a,c,n.softphoneInFocus,i));if(r.context===Vt.WEB_HID)return Nt(new rr(t,s,a,c,n.softphoneInFocus,i));return function(t,e){return t.findDescriptor(Vn.GN_TELEPHONY,qn.GN_TELEPHONY_CONT_SET,Qe.FEATURE)?Gt((()=>(t.setFeatureReport(Vn.GN_TELEPHONY,qn.GN_TELEPHONY_CONT_SET,1),Nt(!0)))):e?or(e,Xn.GN_TELEPHONY):Nt(!1)}(s,o).pipe(Lt((e=>new rr(t,s,a,c,n.softphoneInFocus,i))))}class pr{constructor(t,e){this.devComm=t,this.softphoneInFocus=new G$1,this.softphoneInFocus=e.pipe(ue(),Pt((t=>this.devComm.consoleAppEvent.pipe(Jt((t=>"softphone-in-focus"===t.event)),Lt((t=>t.infocus)),function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=ot(t);return M$1((function(e,r){(n?xt(t,e,n):xt(t,e)).subscribe(r);}))}(!t),fe(1))))),this.softphoneInFocus.subscribe((()=>{}));}setSharedSoftphoneInfo(t){if(!(null==t?void 0:t.partnerKey)||!(null==t?void 0:t.appId))return void ye("Unable to register with Jabra Direct: partnerKey or appId missing in config",null==t?void 0:t.logger,Bt.WARNING);const e=t.partnerKey+t.appId,n=new Xe(5,"ns:OID",e);let{appName:r}=t;if((!t.appName||t.appName.length<3)&&(ye("App name missing in config. Fall back to use appId as app name.",null==t?void 0:t.logger,Bt.WARNING),r=t.appId),r.length>100)return void ye("Unable to register with Jabra Direct: appName must be below 100 characters.",null==t?void 0:t.logger,Bt.WARNING);const i={action:"set-softphone-info",name:r,id:n.toString()};this.devComm.writeAction(i);}}var fr,vr,Er,gr,_r,mr,br,yr;class Nr{constructor(t){var e;fr.set(this,void 0),vr.set(this,void 0),Er.set(this,void 0),gr.set(this,void 0),h(this,gr,t._readyEvents.pipe(ue((t=>"ready"===t.event)),Lt((t=>t.jabraDirectInstalled)))),h(this,vr,new pr(t._transport,l(this,gr,"f"))),l(this,vr,"f").setSharedSoftphoneInfo(t._config),h(this,fr,t._transport),h(this,Er,null===(e=t._config)||void 0===e?void 0:e.logger);}createCallControl(t){if(!this.supportsCallControl(t))return Promise.reject(new be(`Device ${t.name} does not support call control.`,Kt.FEATURE_NOT_SUPPORTED));return At(l(this,gr,"f").pipe(Pt((e=>dr(t,e,l(this,vr,"f"),l(this,fr,"f"),l(this,Er,"f"))))))}supportsCallControl(t){return void 0!==hr(t)}}fr=new WeakMap,vr=new WeakMap,Er=new WeakMap,gr=new WeakMap,function(t){t.HOLD_CURRENT="hold-current",t.END_CURRENT="end-current";}(_r||(_r={})),function(t){t.MUTED="muted",t.UNMUTED="unmuted",t.NO_ONGOING_CALLS="no-ongoing-calls";}(mr||(mr={})),function(t){t.ON_HOLD="on-hold",t.NOT_ON_HOLD="not-on-hold",t.NO_ONGOING_CALLS="no-ongoing-calls";}(br||(br={})),function(t){t.NO_INCOMING="no-incoming",t.AWAITING_RESPONSE="awaiting-response",t.RESOLVING_RESPONSE="resolving-response",t.ACCEPTED="accepted",t.REJECTED="rejected";}(yr||(yr={}));({ongoingCalls:0,muteState:mr.NO_ONGOING_CALLS,holdState:br.NO_ONGOING_CALLS,incomingCall:yr.NO_INCOMING,ignoreSignals:[],swapToggle:0});
|
|
67512
67527
|
|
|
67513
67528
|
var __awaiter$9 = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
67514
67529
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genesys-cloud-webrtc-sdk",
|
|
3
|
-
"version": "9.2.2-release.
|
|
3
|
+
"version": "9.2.2-release.3",
|
|
4
4
|
"description": "client for the interfacing with Genesys Cloud WebRTC",
|
|
5
5
|
"repository": "https://github.com/mypurecloud/genesys-cloud-webrtc-sdk",
|
|
6
6
|
"license": "MIT",
|