@dereekb/firebase-server 13.43.0 → 14.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/calcom/index.esm.js +57 -96
- package/calcom/package.json +11 -11
- package/discord/index.esm.js +48 -74
- package/discord/package.json +11 -11
- package/index.esm.js +336 -583
- package/mailgun/index.esm.js +20 -32
- package/mailgun/package.json +9 -9
- package/mcp/index.esm.js +131 -185
- package/mcp/package.json +14 -14
- package/model/index.esm.js +699 -692
- package/model/package.json +14 -14
- package/model/src/lib/formspace/formspace.action.server.d.ts +79 -5
- package/model/src/lib/formspace/formspace.error.d.ts +21 -0
- package/model/src/lib/formspace/formspace.task.service.handler.d.ts +3 -2
- package/model/src/lib/storagefile/storagefile.task.service.handler.d.ts +3 -3
- package/oidc/index.esm.js +144 -251
- package/oidc/package.json +14 -14
- package/package.json +24 -24
- package/src/lib/function/type.d.ts +0 -9
- package/src/lib/nest/app.d.ts +0 -4
- package/src/lib/nest/development/development.app.function.d.ts +2 -2
- package/src/lib/nest/model/analytics.handler.d.ts +0 -8
- package/src/lib/nest/model/api.details.d.ts +0 -8
- package/src/lib/nest/nest.provider.d.ts +0 -8
- package/test/index.esm.js +239 -395
- package/test/package.json +17 -17
- package/test/src/lib/firebase/firebase.admin.auth.d.ts +4 -25
- package/test/src/lib/firebase/firebase.admin.nest.d.ts +0 -4
- package/test/src/lib/firebase/firebase.admin.nest.function.d.ts +7 -7
- package/test/src/lib/firebase/firebase.function.d.ts +20 -81
- package/test/src/lib/firebase/firebase.test.d.ts +0 -9
- package/twilio/index.esm.js +11 -14
- package/twilio/package.json +8 -8
- package/zoho/index.esm.js +72 -132
- package/zoho/package.json +12 -12
- package/zoho/src/lib/zoho.accounts.firebase.system.d.ts +0 -10
package/index.esm.js
CHANGED
|
@@ -29,9 +29,7 @@ function _define_property$C(obj, key, value) {
|
|
|
29
29
|
configurable: true,
|
|
30
30
|
writable: true
|
|
31
31
|
});
|
|
32
|
-
} else
|
|
33
|
-
obj[key] = value;
|
|
34
|
-
}
|
|
32
|
+
} else obj[key] = value;
|
|
35
33
|
return obj;
|
|
36
34
|
}
|
|
37
35
|
function _object_spread$m(target) {
|
|
@@ -59,9 +57,8 @@ function ownKeys$g(object, enumerableOnly) {
|
|
|
59
57
|
}
|
|
60
58
|
function _object_spread_props$g(target, source) {
|
|
61
59
|
source = source != null ? source : {};
|
|
62
|
-
if (Object.getOwnPropertyDescriptors)
|
|
63
|
-
|
|
64
|
-
} else {
|
|
60
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
61
|
+
else {
|
|
65
62
|
ownKeys$g(Object(source)).forEach(function(key) {
|
|
66
63
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
67
64
|
});
|
|
@@ -495,11 +492,8 @@ function asyncGeneratorStep$j(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
495
492
|
reject(error);
|
|
496
493
|
return;
|
|
497
494
|
}
|
|
498
|
-
if (info.done)
|
|
499
|
-
|
|
500
|
-
} else {
|
|
501
|
-
Promise.resolve(value).then(_next, _throw);
|
|
502
|
-
}
|
|
495
|
+
if (info.done) resolve(value);
|
|
496
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
503
497
|
}
|
|
504
498
|
function _async_to_generator$j(fn) {
|
|
505
499
|
return function() {
|
|
@@ -673,9 +667,7 @@ function _ts_generator$j(thisArg, body) {
|
|
|
673
667
|
}
|
|
674
668
|
|
|
675
669
|
function _assert_this_initialized$5(self) {
|
|
676
|
-
if (self === void 0)
|
|
677
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
678
|
-
}
|
|
670
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
679
671
|
return self;
|
|
680
672
|
}
|
|
681
673
|
function _call_super$5(_this, derived, args) {
|
|
@@ -683,9 +675,7 @@ function _call_super$5(_this, derived, args) {
|
|
|
683
675
|
return _possible_constructor_return$5(_this, _is_native_reflect_construct$5() ? Reflect.construct(derived, args || [], _get_prototype_of$5(_this).constructor) : derived.apply(_this, args));
|
|
684
676
|
}
|
|
685
677
|
function _class_call_check$u(instance, Constructor) {
|
|
686
|
-
if (!(instance instanceof Constructor))
|
|
687
|
-
throw new TypeError("Cannot call a class as a function");
|
|
688
|
-
}
|
|
678
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
689
679
|
}
|
|
690
680
|
function _define_property$B(obj, key, value) {
|
|
691
681
|
if (key in obj) {
|
|
@@ -695,9 +685,7 @@ function _define_property$B(obj, key, value) {
|
|
|
695
685
|
configurable: true,
|
|
696
686
|
writable: true
|
|
697
687
|
});
|
|
698
|
-
} else
|
|
699
|
-
obj[key] = value;
|
|
700
|
-
}
|
|
688
|
+
} else obj[key] = value;
|
|
701
689
|
return obj;
|
|
702
690
|
}
|
|
703
691
|
function _get_prototype_of$5(o) {
|
|
@@ -719,10 +707,16 @@ function _inherits$5(subClass, superClass) {
|
|
|
719
707
|
});
|
|
720
708
|
if (superClass) _set_prototype_of$5(subClass, superClass);
|
|
721
709
|
}
|
|
710
|
+
function _is_native_reflect_construct$5() {
|
|
711
|
+
try {
|
|
712
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
713
|
+
} catch (_) {}
|
|
714
|
+
return (_is_native_reflect_construct$5 = function() {
|
|
715
|
+
return !!result;
|
|
716
|
+
})();
|
|
717
|
+
}
|
|
722
718
|
function _possible_constructor_return$5(self, call) {
|
|
723
|
-
if (call && (_type_of$6(call) === "object" || typeof call === "function"))
|
|
724
|
-
return call;
|
|
725
|
-
}
|
|
719
|
+
if (call && (_type_of$6(call) === "object" || typeof call === "function")) return call;
|
|
726
720
|
return _assert_this_initialized$5(self);
|
|
727
721
|
}
|
|
728
722
|
function _set_prototype_of$5(o, p) {
|
|
@@ -736,14 +730,6 @@ function _type_of$6(obj) {
|
|
|
736
730
|
"@swc/helpers - typeof";
|
|
737
731
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
738
732
|
}
|
|
739
|
-
function _is_native_reflect_construct$5() {
|
|
740
|
-
try {
|
|
741
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
742
|
-
} catch (_) {}
|
|
743
|
-
return (_is_native_reflect_construct$5 = function() {
|
|
744
|
-
return !!result;
|
|
745
|
-
})();
|
|
746
|
-
}
|
|
747
733
|
/**
|
|
748
734
|
* Thrown by {@link AbstractFirebaseServerNewUserService.createNewUser} when Firebase Auth rejects
|
|
749
735
|
* user creation because the provided phone number or email is already associated with another account.
|
|
@@ -908,9 +894,7 @@ function _array_with_holes$5(arr) {
|
|
|
908
894
|
if (Array.isArray(arr)) return arr;
|
|
909
895
|
}
|
|
910
896
|
function _assert_this_initialized$4(self) {
|
|
911
|
-
if (self === void 0)
|
|
912
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
913
|
-
}
|
|
897
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
914
898
|
return self;
|
|
915
899
|
}
|
|
916
900
|
function asyncGeneratorStep$i(gen, resolve, reject, _next, _throw, key, arg) {
|
|
@@ -921,11 +905,8 @@ function asyncGeneratorStep$i(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
921
905
|
reject(error);
|
|
922
906
|
return;
|
|
923
907
|
}
|
|
924
|
-
if (info.done)
|
|
925
|
-
|
|
926
|
-
} else {
|
|
927
|
-
Promise.resolve(value).then(_next, _throw);
|
|
928
|
-
}
|
|
908
|
+
if (info.done) resolve(value);
|
|
909
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
929
910
|
}
|
|
930
911
|
function _async_to_generator$i(fn) {
|
|
931
912
|
return function() {
|
|
@@ -947,9 +928,7 @@ function _call_super$4(_this, derived, args) {
|
|
|
947
928
|
return _possible_constructor_return$4(_this, _is_native_reflect_construct$4() ? Reflect.construct(derived, args || [], _get_prototype_of$4(_this).constructor) : derived.apply(_this, args));
|
|
948
929
|
}
|
|
949
930
|
function _class_call_check$t(instance, Constructor) {
|
|
950
|
-
if (!(instance instanceof Constructor))
|
|
951
|
-
throw new TypeError("Cannot call a class as a function");
|
|
952
|
-
}
|
|
931
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
953
932
|
}
|
|
954
933
|
function _defineProperties$i(target, props) {
|
|
955
934
|
for(var i = 0; i < props.length; i++){
|
|
@@ -972,9 +951,7 @@ function _define_property$A(obj, key, value) {
|
|
|
972
951
|
configurable: true,
|
|
973
952
|
writable: true
|
|
974
953
|
});
|
|
975
|
-
} else
|
|
976
|
-
obj[key] = value;
|
|
977
|
-
}
|
|
954
|
+
} else obj[key] = value;
|
|
978
955
|
return obj;
|
|
979
956
|
}
|
|
980
957
|
function _get_prototype_of$4(o) {
|
|
@@ -996,6 +973,14 @@ function _inherits$4(subClass, superClass) {
|
|
|
996
973
|
});
|
|
997
974
|
if (superClass) _set_prototype_of$4(subClass, superClass);
|
|
998
975
|
}
|
|
976
|
+
function _is_native_reflect_construct$4() {
|
|
977
|
+
try {
|
|
978
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
979
|
+
} catch (_) {}
|
|
980
|
+
return (_is_native_reflect_construct$4 = function() {
|
|
981
|
+
return !!result;
|
|
982
|
+
})();
|
|
983
|
+
}
|
|
999
984
|
function _iterable_to_array_limit$5(arr, i) {
|
|
1000
985
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
1001
986
|
if (_i == null) return;
|
|
@@ -1021,7 +1006,7 @@ function _iterable_to_array_limit$5(arr, i) {
|
|
|
1021
1006
|
return _arr;
|
|
1022
1007
|
}
|
|
1023
1008
|
function _non_iterable_rest$5() {
|
|
1024
|
-
throw new TypeError("Invalid attempt to destructure non-iterable instance
|
|
1009
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
1025
1010
|
}
|
|
1026
1011
|
function _object_spread$l(target) {
|
|
1027
1012
|
for(var i = 1; i < arguments.length; i++){
|
|
@@ -1039,9 +1024,7 @@ function _object_spread$l(target) {
|
|
|
1039
1024
|
return target;
|
|
1040
1025
|
}
|
|
1041
1026
|
function _possible_constructor_return$4(self, call) {
|
|
1042
|
-
if (call && (_type_of$5(call) === "object" || typeof call === "function"))
|
|
1043
|
-
return call;
|
|
1044
|
-
}
|
|
1027
|
+
if (call && (_type_of$5(call) === "object" || typeof call === "function")) return call;
|
|
1045
1028
|
return _assert_this_initialized$4(self);
|
|
1046
1029
|
}
|
|
1047
1030
|
function _set_prototype_of$4(o, p) {
|
|
@@ -1054,26 +1037,6 @@ function _set_prototype_of$4(o, p) {
|
|
|
1054
1037
|
function _sliced_to_array$5(arr, i) {
|
|
1055
1038
|
return _array_with_holes$5(arr) || _iterable_to_array_limit$5(arr, i) || _unsupported_iterable_to_array$h(arr, i) || _non_iterable_rest$5();
|
|
1056
1039
|
}
|
|
1057
|
-
function _type_of$5(obj) {
|
|
1058
|
-
"@swc/helpers - typeof";
|
|
1059
|
-
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
1060
|
-
}
|
|
1061
|
-
function _unsupported_iterable_to_array$h(o, minLen) {
|
|
1062
|
-
if (!o) return;
|
|
1063
|
-
if (typeof o === "string") return _array_like_to_array$h(o, minLen);
|
|
1064
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
1065
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
1066
|
-
if (n === "Map" || n === "Set") return Array.from(n);
|
|
1067
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$h(o, minLen);
|
|
1068
|
-
}
|
|
1069
|
-
function _is_native_reflect_construct$4() {
|
|
1070
|
-
try {
|
|
1071
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
1072
|
-
} catch (_) {}
|
|
1073
|
-
return (_is_native_reflect_construct$4 = function() {
|
|
1074
|
-
return !!result;
|
|
1075
|
-
})();
|
|
1076
|
-
}
|
|
1077
1040
|
function _ts_generator$i(thisArg, body) {
|
|
1078
1041
|
var f, y, t, _ = {
|
|
1079
1042
|
label: 0,
|
|
@@ -1173,6 +1136,18 @@ function _ts_generator$i(thisArg, body) {
|
|
|
1173
1136
|
};
|
|
1174
1137
|
}
|
|
1175
1138
|
}
|
|
1139
|
+
function _type_of$5(obj) {
|
|
1140
|
+
"@swc/helpers - typeof";
|
|
1141
|
+
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
1142
|
+
}
|
|
1143
|
+
function _unsupported_iterable_to_array$h(o, minLen) {
|
|
1144
|
+
if (!o) return;
|
|
1145
|
+
if (typeof o === "string") return _array_like_to_array$h(o, minLen);
|
|
1146
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
1147
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
1148
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
1149
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$h(o, minLen);
|
|
1150
|
+
}
|
|
1176
1151
|
/**
|
|
1177
1152
|
* Generates a random 6-digit number for use as a temporary password or reset token.
|
|
1178
1153
|
*
|
|
@@ -2779,11 +2754,8 @@ function asyncGeneratorStep$h(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
2779
2754
|
reject(error);
|
|
2780
2755
|
return;
|
|
2781
2756
|
}
|
|
2782
|
-
if (info.done)
|
|
2783
|
-
|
|
2784
|
-
} else {
|
|
2785
|
-
Promise.resolve(value).then(_next, _throw);
|
|
2786
|
-
}
|
|
2757
|
+
if (info.done) resolve(value);
|
|
2758
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
2787
2759
|
}
|
|
2788
2760
|
function _async_to_generator$h(fn) {
|
|
2789
2761
|
return function() {
|
|
@@ -3064,11 +3036,8 @@ function asyncGeneratorStep$g(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
3064
3036
|
reject(error);
|
|
3065
3037
|
return;
|
|
3066
3038
|
}
|
|
3067
|
-
if (info.done)
|
|
3068
|
-
|
|
3069
|
-
} else {
|
|
3070
|
-
Promise.resolve(value).then(_next, _throw);
|
|
3071
|
-
}
|
|
3039
|
+
if (info.done) resolve(value);
|
|
3040
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
3072
3041
|
}
|
|
3073
3042
|
function _async_to_generator$g(fn) {
|
|
3074
3043
|
return function() {
|
|
@@ -3089,9 +3058,7 @@ function _instanceof$4(left, right) {
|
|
|
3089
3058
|
"@swc/helpers - instanceof";
|
|
3090
3059
|
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
3091
3060
|
return !!right[Symbol.hasInstance](left);
|
|
3092
|
-
} else
|
|
3093
|
-
return left instanceof right;
|
|
3094
|
-
}
|
|
3061
|
+
} else return left instanceof right;
|
|
3095
3062
|
}
|
|
3096
3063
|
function _ts_generator$g(thisArg, body) {
|
|
3097
3064
|
var f, y, t, _ = {
|
|
@@ -3356,9 +3323,7 @@ function _ts_generator$g(thisArg, body) {
|
|
|
3356
3323
|
}
|
|
3357
3324
|
|
|
3358
3325
|
function _class_call_check$s(instance, Constructor) {
|
|
3359
|
-
if (!(instance instanceof Constructor))
|
|
3360
|
-
throw new TypeError("Cannot call a class as a function");
|
|
3361
|
-
}
|
|
3326
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
3362
3327
|
}
|
|
3363
3328
|
/**
|
|
3364
3329
|
* Abstract service providing Firebase server environment information such as deployment stage,
|
|
@@ -3410,16 +3375,16 @@ function _define_property$z(obj, key, value) {
|
|
|
3410
3375
|
configurable: true,
|
|
3411
3376
|
writable: true
|
|
3412
3377
|
});
|
|
3413
|
-
} else
|
|
3414
|
-
obj[key] = value;
|
|
3415
|
-
}
|
|
3378
|
+
} else obj[key] = value;
|
|
3416
3379
|
return obj;
|
|
3417
3380
|
}
|
|
3418
3381
|
function _iterable_to_array$b(iter) {
|
|
3419
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
3382
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
3383
|
+
return Array.from(iter);
|
|
3384
|
+
}
|
|
3420
3385
|
}
|
|
3421
3386
|
function _non_iterable_spread$b() {
|
|
3422
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
3387
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
3423
3388
|
}
|
|
3424
3389
|
function _object_spread$k(target) {
|
|
3425
3390
|
for(var i = 1; i < arguments.length; i++){
|
|
@@ -3483,9 +3448,7 @@ function _unsupported_iterable_to_array$g(o, minLen) {
|
|
|
3483
3448
|
}
|
|
3484
3449
|
|
|
3485
3450
|
function _class_call_check$r(instance, Constructor) {
|
|
3486
|
-
if (!(instance instanceof Constructor))
|
|
3487
|
-
throw new TypeError("Cannot call a class as a function");
|
|
3488
|
-
}
|
|
3451
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
3489
3452
|
}
|
|
3490
3453
|
function _defineProperties$h(target, props) {
|
|
3491
3454
|
for(var i = 0; i < props.length; i++){
|
|
@@ -3508,9 +3471,7 @@ function _define_property$y(obj, key, value) {
|
|
|
3508
3471
|
configurable: true,
|
|
3509
3472
|
writable: true
|
|
3510
3473
|
});
|
|
3511
|
-
} else
|
|
3512
|
-
obj[key] = value;
|
|
3513
|
-
}
|
|
3474
|
+
} else obj[key] = value;
|
|
3514
3475
|
return obj;
|
|
3515
3476
|
}
|
|
3516
3477
|
// MARK: Accessor
|
|
@@ -3667,9 +3628,7 @@ function _define_property$y(obj, key, value) {
|
|
|
3667
3628
|
}
|
|
3668
3629
|
|
|
3669
3630
|
function _class_call_check$q(instance, Constructor) {
|
|
3670
|
-
if (!(instance instanceof Constructor))
|
|
3671
|
-
throw new TypeError("Cannot call a class as a function");
|
|
3672
|
-
}
|
|
3631
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
3673
3632
|
}
|
|
3674
3633
|
function _defineProperties$g(target, props) {
|
|
3675
3634
|
for(var i = 0; i < props.length; i++){
|
|
@@ -3692,9 +3651,7 @@ function _define_property$x(obj, key, value) {
|
|
|
3692
3651
|
configurable: true,
|
|
3693
3652
|
writable: true
|
|
3694
3653
|
});
|
|
3695
|
-
} else
|
|
3696
|
-
obj[key] = value;
|
|
3697
|
-
}
|
|
3654
|
+
} else obj[key] = value;
|
|
3698
3655
|
return obj;
|
|
3699
3656
|
}
|
|
3700
3657
|
// MARK: Accessor
|
|
@@ -3818,9 +3775,7 @@ function _define_property$x(obj, key, value) {
|
|
|
3818
3775
|
}
|
|
3819
3776
|
|
|
3820
3777
|
function _class_call_check$p(instance, Constructor) {
|
|
3821
|
-
if (!(instance instanceof Constructor))
|
|
3822
|
-
throw new TypeError("Cannot call a class as a function");
|
|
3823
|
-
}
|
|
3778
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
3824
3779
|
}
|
|
3825
3780
|
function _defineProperties$f(target, props) {
|
|
3826
3781
|
for(var i = 0; i < props.length; i++){
|
|
@@ -3843,9 +3798,7 @@ function _define_property$w(obj, key, value) {
|
|
|
3843
3798
|
configurable: true,
|
|
3844
3799
|
writable: true
|
|
3845
3800
|
});
|
|
3846
|
-
} else
|
|
3847
|
-
obj[key] = value;
|
|
3848
|
-
}
|
|
3801
|
+
} else obj[key] = value;
|
|
3849
3802
|
return obj;
|
|
3850
3803
|
}
|
|
3851
3804
|
// MARK: Accessor
|
|
@@ -4024,11 +3977,8 @@ function asyncGeneratorStep$f(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
4024
3977
|
reject(error);
|
|
4025
3978
|
return;
|
|
4026
3979
|
}
|
|
4027
|
-
if (info.done)
|
|
4028
|
-
|
|
4029
|
-
} else {
|
|
4030
|
-
Promise.resolve(value).then(_next, _throw);
|
|
4031
|
-
}
|
|
3980
|
+
if (info.done) resolve(value);
|
|
3981
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
4032
3982
|
}
|
|
4033
3983
|
function _async_to_generator$f(fn) {
|
|
4034
3984
|
return function() {
|
|
@@ -4070,19 +4020,11 @@ function _iterable_to_array_limit$4(arr, i) {
|
|
|
4070
4020
|
return _arr;
|
|
4071
4021
|
}
|
|
4072
4022
|
function _non_iterable_rest$4() {
|
|
4073
|
-
throw new TypeError("Invalid attempt to destructure non-iterable instance
|
|
4023
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
4074
4024
|
}
|
|
4075
4025
|
function _sliced_to_array$4(arr, i) {
|
|
4076
4026
|
return _array_with_holes$4(arr) || _iterable_to_array_limit$4(arr, i) || _unsupported_iterable_to_array$f(arr, i) || _non_iterable_rest$4();
|
|
4077
4027
|
}
|
|
4078
|
-
function _unsupported_iterable_to_array$f(o, minLen) {
|
|
4079
|
-
if (!o) return;
|
|
4080
|
-
if (typeof o === "string") return _array_like_to_array$f(o, minLen);
|
|
4081
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
4082
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
4083
|
-
if (n === "Map" || n === "Set") return Array.from(n);
|
|
4084
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$f(o, minLen);
|
|
4085
|
-
}
|
|
4086
4028
|
function _ts_generator$f(thisArg, body) {
|
|
4087
4029
|
var f, y, t, _ = {
|
|
4088
4030
|
label: 0,
|
|
@@ -4182,6 +4124,14 @@ function _ts_generator$f(thisArg, body) {
|
|
|
4182
4124
|
};
|
|
4183
4125
|
}
|
|
4184
4126
|
}
|
|
4127
|
+
function _unsupported_iterable_to_array$f(o, minLen) {
|
|
4128
|
+
if (!o) return;
|
|
4129
|
+
if (typeof o === "string") return _array_like_to_array$f(o, minLen);
|
|
4130
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
4131
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
4132
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
4133
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$f(o, minLen);
|
|
4134
|
+
}
|
|
4185
4135
|
/**
|
|
4186
4136
|
* Resolves a Firestore {@link CollectionReference} from a starting point and optional additional path segments.
|
|
4187
4137
|
*
|
|
@@ -4317,16 +4267,16 @@ function _define_property$v(obj, key, value) {
|
|
|
4317
4267
|
configurable: true,
|
|
4318
4268
|
writable: true
|
|
4319
4269
|
});
|
|
4320
|
-
} else
|
|
4321
|
-
obj[key] = value;
|
|
4322
|
-
}
|
|
4270
|
+
} else obj[key] = value;
|
|
4323
4271
|
return obj;
|
|
4324
4272
|
}
|
|
4325
4273
|
function _iterable_to_array$a(iter) {
|
|
4326
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
4274
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
4275
|
+
return Array.from(iter);
|
|
4276
|
+
}
|
|
4327
4277
|
}
|
|
4328
4278
|
function _non_iterable_spread$a() {
|
|
4329
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
4279
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
4330
4280
|
}
|
|
4331
4281
|
function _object_spread$j(target) {
|
|
4332
4282
|
for(var i = 1; i < arguments.length; i++){
|
|
@@ -4353,9 +4303,8 @@ function ownKeys$f(object, enumerableOnly) {
|
|
|
4353
4303
|
}
|
|
4354
4304
|
function _object_spread_props$f(target, source) {
|
|
4355
4305
|
source = source != null ? source : {};
|
|
4356
|
-
if (Object.getOwnPropertyDescriptors)
|
|
4357
|
-
|
|
4358
|
-
} else {
|
|
4306
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
4307
|
+
else {
|
|
4359
4308
|
ownKeys$f(Object(source)).forEach(function(key) {
|
|
4360
4309
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
4361
4310
|
});
|
|
@@ -4608,9 +4557,7 @@ typeof SuppressedError === "function" ? SuppressedError : function(error, suppre
|
|
|
4608
4557
|
};
|
|
4609
4558
|
|
|
4610
4559
|
function _class_call_check$o(instance, Constructor) {
|
|
4611
|
-
if (!(instance instanceof Constructor))
|
|
4612
|
-
throw new TypeError("Cannot call a class as a function");
|
|
4613
|
-
}
|
|
4560
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
4614
4561
|
}
|
|
4615
4562
|
/**
|
|
4616
4563
|
* Abstract analytics service that apps implement to process analytics events.
|
|
@@ -4639,14 +4586,9 @@ function _class_call_check$o(instance, Constructor) {
|
|
|
4639
4586
|
}
|
|
4640
4587
|
};
|
|
4641
4588
|
}
|
|
4642
|
-
/**
|
|
4643
|
-
* @deprecated Use {@link ON_CALL_MODEL_ANALYTICS_SERVICE} instead.
|
|
4644
|
-
*/ var ON_CALL_MODEL_ANALYTICS_HANDLER = ON_CALL_MODEL_ANALYTICS_SERVICE;
|
|
4645
4589
|
|
|
4646
4590
|
function _class_call_check$n(instance, Constructor) {
|
|
4647
|
-
if (!(instance instanceof Constructor))
|
|
4648
|
-
throw new TypeError("Cannot call a class as a function");
|
|
4649
|
-
}
|
|
4591
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
4650
4592
|
}
|
|
4651
4593
|
/**
|
|
4652
4594
|
* Listener for {@link FirebaseServerAnalyticsService}.
|
|
@@ -4674,9 +4616,7 @@ function _class_call_check$n(instance, Constructor) {
|
|
|
4674
4616
|
}
|
|
4675
4617
|
|
|
4676
4618
|
function _assert_this_initialized$3(self) {
|
|
4677
|
-
if (self === void 0)
|
|
4678
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
4679
|
-
}
|
|
4619
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
4680
4620
|
return self;
|
|
4681
4621
|
}
|
|
4682
4622
|
function _call_super$3(_this, derived, args) {
|
|
@@ -4684,9 +4624,7 @@ function _call_super$3(_this, derived, args) {
|
|
|
4684
4624
|
return _possible_constructor_return$3(_this, _is_native_reflect_construct$3() ? Reflect.construct(derived, [], _get_prototype_of$3(_this).constructor) : derived.apply(_this, args));
|
|
4685
4625
|
}
|
|
4686
4626
|
function _class_call_check$m(instance, Constructor) {
|
|
4687
|
-
if (!(instance instanceof Constructor))
|
|
4688
|
-
throw new TypeError("Cannot call a class as a function");
|
|
4689
|
-
}
|
|
4627
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
4690
4628
|
}
|
|
4691
4629
|
function _defineProperties$e(target, props) {
|
|
4692
4630
|
for(var i = 0; i < props.length; i++){
|
|
@@ -4709,9 +4647,7 @@ function _define_property$u(obj, key, value) {
|
|
|
4709
4647
|
configurable: true,
|
|
4710
4648
|
writable: true
|
|
4711
4649
|
});
|
|
4712
|
-
} else
|
|
4713
|
-
obj[key] = value;
|
|
4714
|
-
}
|
|
4650
|
+
} else obj[key] = value;
|
|
4715
4651
|
return obj;
|
|
4716
4652
|
}
|
|
4717
4653
|
function _get_prototype_of$3(o) {
|
|
@@ -4733,10 +4669,16 @@ function _inherits$3(subClass, superClass) {
|
|
|
4733
4669
|
});
|
|
4734
4670
|
if (superClass) _set_prototype_of$3(subClass, superClass);
|
|
4735
4671
|
}
|
|
4672
|
+
function _is_native_reflect_construct$3() {
|
|
4673
|
+
try {
|
|
4674
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
4675
|
+
} catch (_) {}
|
|
4676
|
+
return (_is_native_reflect_construct$3 = function() {
|
|
4677
|
+
return !!result;
|
|
4678
|
+
})();
|
|
4679
|
+
}
|
|
4736
4680
|
function _possible_constructor_return$3(self, call) {
|
|
4737
|
-
if (call && (_type_of$3(call) === "object" || typeof call === "function"))
|
|
4738
|
-
return call;
|
|
4739
|
-
}
|
|
4681
|
+
if (call && (_type_of$3(call) === "object" || typeof call === "function")) return call;
|
|
4740
4682
|
return _assert_this_initialized$3(self);
|
|
4741
4683
|
}
|
|
4742
4684
|
function _set_prototype_of$3(o, p) {
|
|
@@ -4750,14 +4692,6 @@ function _type_of$3(obj) {
|
|
|
4750
4692
|
"@swc/helpers - typeof";
|
|
4751
4693
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
4752
4694
|
}
|
|
4753
|
-
function _is_native_reflect_construct$3() {
|
|
4754
|
-
try {
|
|
4755
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
4756
|
-
} catch (_) {}
|
|
4757
|
-
return (_is_native_reflect_construct$3 = function() {
|
|
4758
|
-
return !!result;
|
|
4759
|
-
})();
|
|
4760
|
-
}
|
|
4761
4695
|
/**
|
|
4762
4696
|
* Central server-side analytics service that delegates events to a registered {@link FirebaseServerAnalyticsServiceListener}.
|
|
4763
4697
|
*
|
|
@@ -4840,11 +4774,8 @@ function asyncGeneratorStep$e(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
4840
4774
|
reject(error);
|
|
4841
4775
|
return;
|
|
4842
4776
|
}
|
|
4843
|
-
if (info.done)
|
|
4844
|
-
|
|
4845
|
-
} else {
|
|
4846
|
-
Promise.resolve(value).then(_next, _throw);
|
|
4847
|
-
}
|
|
4777
|
+
if (info.done) resolve(value);
|
|
4778
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
4848
4779
|
}
|
|
4849
4780
|
function _async_to_generator$e(fn) {
|
|
4850
4781
|
return function() {
|
|
@@ -5127,7 +5058,7 @@ function _iterable_to_array_limit$3(arr, i) {
|
|
|
5127
5058
|
return _arr;
|
|
5128
5059
|
}
|
|
5129
5060
|
function _non_iterable_rest$3() {
|
|
5130
|
-
throw new TypeError("Invalid attempt to destructure non-iterable instance
|
|
5061
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
5131
5062
|
}
|
|
5132
5063
|
function _object_without_properties(source, excluded) {
|
|
5133
5064
|
if (source == null) return {};
|
|
@@ -5519,9 +5450,6 @@ function resolveRequiredScopeFromApiDetails(apiDetails, call, modelType, specifi
|
|
|
5519
5450
|
}
|
|
5520
5451
|
return result;
|
|
5521
5452
|
}
|
|
5522
|
-
/**
|
|
5523
|
-
* @deprecated Use {@link isOnCallModelTypeApiDetails} instead.
|
|
5524
|
-
*/ var isOnCallSpecifierApiDetails = isOnCallModelTypeApiDetails;
|
|
5525
5453
|
|
|
5526
5454
|
/**
|
|
5527
5455
|
* NestJS-compatible error factory for when a Firestore document does not exist.
|
|
@@ -5698,9 +5626,7 @@ function _define_property$t(obj, key, value) {
|
|
|
5698
5626
|
configurable: true,
|
|
5699
5627
|
writable: true
|
|
5700
5628
|
});
|
|
5701
|
-
} else
|
|
5702
|
-
obj[key] = value;
|
|
5703
|
-
}
|
|
5629
|
+
} else obj[key] = value;
|
|
5704
5630
|
return obj;
|
|
5705
5631
|
}
|
|
5706
5632
|
function _object_spread$i(target) {
|
|
@@ -5728,9 +5654,8 @@ function ownKeys$e(object, enumerableOnly) {
|
|
|
5728
5654
|
}
|
|
5729
5655
|
function _object_spread_props$e(target, source) {
|
|
5730
5656
|
source = source != null ? source : {};
|
|
5731
|
-
if (Object.getOwnPropertyDescriptors)
|
|
5732
|
-
|
|
5733
|
-
} else {
|
|
5657
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
5658
|
+
else {
|
|
5734
5659
|
ownKeys$e(Object(source)).forEach(function(key) {
|
|
5735
5660
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
5736
5661
|
});
|
|
@@ -6091,11 +6016,8 @@ function asyncGeneratorStep$d(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
6091
6016
|
reject(error);
|
|
6092
6017
|
return;
|
|
6093
6018
|
}
|
|
6094
|
-
if (info.done)
|
|
6095
|
-
|
|
6096
|
-
} else {
|
|
6097
|
-
Promise.resolve(value).then(_next, _throw);
|
|
6098
|
-
}
|
|
6019
|
+
if (info.done) resolve(value);
|
|
6020
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
6099
6021
|
}
|
|
6100
6022
|
function _async_to_generator$d(fn) {
|
|
6101
6023
|
return function() {
|
|
@@ -6113,22 +6035,16 @@ function _async_to_generator$d(fn) {
|
|
|
6113
6035
|
};
|
|
6114
6036
|
}
|
|
6115
6037
|
function _iterable_to_array$9(iter) {
|
|
6116
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
6038
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
6039
|
+
return Array.from(iter);
|
|
6040
|
+
}
|
|
6117
6041
|
}
|
|
6118
6042
|
function _non_iterable_spread$9() {
|
|
6119
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
6043
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
6120
6044
|
}
|
|
6121
6045
|
function _to_consumable_array$9(arr) {
|
|
6122
6046
|
return _array_without_holes$9(arr) || _iterable_to_array$9(arr) || _unsupported_iterable_to_array$c(arr) || _non_iterable_spread$9();
|
|
6123
6047
|
}
|
|
6124
|
-
function _unsupported_iterable_to_array$c(o, minLen) {
|
|
6125
|
-
if (!o) return;
|
|
6126
|
-
if (typeof o === "string") return _array_like_to_array$c(o, minLen);
|
|
6127
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
6128
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
6129
|
-
if (n === "Map" || n === "Set") return Array.from(n);
|
|
6130
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$c(o, minLen);
|
|
6131
|
-
}
|
|
6132
6048
|
function _ts_generator$d(thisArg, body) {
|
|
6133
6049
|
var f, y, t, _ = {
|
|
6134
6050
|
label: 0,
|
|
@@ -6228,6 +6144,14 @@ function _ts_generator$d(thisArg, body) {
|
|
|
6228
6144
|
};
|
|
6229
6145
|
}
|
|
6230
6146
|
}
|
|
6147
|
+
function _unsupported_iterable_to_array$c(o, minLen) {
|
|
6148
|
+
if (!o) return;
|
|
6149
|
+
if (typeof o === "string") return _array_like_to_array$c(o, minLen);
|
|
6150
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
6151
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
6152
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
6153
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$c(o, minLen);
|
|
6154
|
+
}
|
|
6231
6155
|
/**
|
|
6232
6156
|
* Factory that creates a callable function handling model queries for multiple model types.
|
|
6233
6157
|
*
|
|
@@ -6472,10 +6396,12 @@ function _array_without_holes$8(arr) {
|
|
|
6472
6396
|
if (Array.isArray(arr)) return _array_like_to_array$b(arr);
|
|
6473
6397
|
}
|
|
6474
6398
|
function _iterable_to_array$8(iter) {
|
|
6475
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
6399
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
6400
|
+
return Array.from(iter);
|
|
6401
|
+
}
|
|
6476
6402
|
}
|
|
6477
6403
|
function _non_iterable_spread$8() {
|
|
6478
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
6404
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
6479
6405
|
}
|
|
6480
6406
|
function _to_consumable_array$8(arr) {
|
|
6481
6407
|
return _array_without_holes$8(arr) || _iterable_to_array$8(arr) || _unsupported_iterable_to_array$b(arr) || _non_iterable_spread$8();
|
|
@@ -6527,9 +6453,7 @@ function _unsupported_iterable_to_array$b(o, minLen) {
|
|
|
6527
6453
|
}
|
|
6528
6454
|
|
|
6529
6455
|
function _assert_this_initialized$2(self) {
|
|
6530
|
-
if (self === void 0)
|
|
6531
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
6532
|
-
}
|
|
6456
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
6533
6457
|
return self;
|
|
6534
6458
|
}
|
|
6535
6459
|
function _call_super$2(_this, derived, args) {
|
|
@@ -6537,9 +6461,7 @@ function _call_super$2(_this, derived, args) {
|
|
|
6537
6461
|
return _possible_constructor_return$2(_this, _is_native_reflect_construct$2() ? Reflect.construct(derived, [], _get_prototype_of$2(_this).constructor) : derived.apply(_this, args));
|
|
6538
6462
|
}
|
|
6539
6463
|
function _class_call_check$l(instance, Constructor) {
|
|
6540
|
-
if (!(instance instanceof Constructor))
|
|
6541
|
-
throw new TypeError("Cannot call a class as a function");
|
|
6542
|
-
}
|
|
6464
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
6543
6465
|
}
|
|
6544
6466
|
function _defineProperties$d(target, props) {
|
|
6545
6467
|
for(var i = 0; i < props.length; i++){
|
|
@@ -6562,9 +6484,7 @@ function _define_property$s(obj, key, value) {
|
|
|
6562
6484
|
configurable: true,
|
|
6563
6485
|
writable: true
|
|
6564
6486
|
});
|
|
6565
|
-
} else
|
|
6566
|
-
obj[key] = value;
|
|
6567
|
-
}
|
|
6487
|
+
} else obj[key] = value;
|
|
6568
6488
|
return obj;
|
|
6569
6489
|
}
|
|
6570
6490
|
function _get_prototype_of$2(o) {
|
|
@@ -6586,6 +6506,14 @@ function _inherits$2(subClass, superClass) {
|
|
|
6586
6506
|
});
|
|
6587
6507
|
if (superClass) _set_prototype_of$2(subClass, superClass);
|
|
6588
6508
|
}
|
|
6509
|
+
function _is_native_reflect_construct$2() {
|
|
6510
|
+
try {
|
|
6511
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
6512
|
+
} catch (_) {}
|
|
6513
|
+
return (_is_native_reflect_construct$2 = function() {
|
|
6514
|
+
return !!result;
|
|
6515
|
+
})();
|
|
6516
|
+
}
|
|
6589
6517
|
function _object_spread$h(target) {
|
|
6590
6518
|
for(var i = 1; i < arguments.length; i++){
|
|
6591
6519
|
var source = arguments[i] != null ? arguments[i] : {};
|
|
@@ -6611,9 +6539,8 @@ function ownKeys$d(object, enumerableOnly) {
|
|
|
6611
6539
|
}
|
|
6612
6540
|
function _object_spread_props$d(target, source) {
|
|
6613
6541
|
source = source != null ? source : {};
|
|
6614
|
-
if (Object.getOwnPropertyDescriptors)
|
|
6615
|
-
|
|
6616
|
-
} else {
|
|
6542
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
6543
|
+
else {
|
|
6617
6544
|
ownKeys$d(Object(source)).forEach(function(key) {
|
|
6618
6545
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
6619
6546
|
});
|
|
@@ -6621,9 +6548,7 @@ function _object_spread_props$d(target, source) {
|
|
|
6621
6548
|
return target;
|
|
6622
6549
|
}
|
|
6623
6550
|
function _possible_constructor_return$2(self, call) {
|
|
6624
|
-
if (call && (_type_of$2(call) === "object" || typeof call === "function"))
|
|
6625
|
-
return call;
|
|
6626
|
-
}
|
|
6551
|
+
if (call && (_type_of$2(call) === "object" || typeof call === "function")) return call;
|
|
6627
6552
|
return _assert_this_initialized$2(self);
|
|
6628
6553
|
}
|
|
6629
6554
|
function _set_prototype_of$2(o, p) {
|
|
@@ -6637,14 +6562,6 @@ function _type_of$2(obj) {
|
|
|
6637
6562
|
"@swc/helpers - typeof";
|
|
6638
6563
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
6639
6564
|
}
|
|
6640
|
-
function _is_native_reflect_construct$2() {
|
|
6641
|
-
try {
|
|
6642
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
6643
|
-
} catch (_) {}
|
|
6644
|
-
return (_is_native_reflect_construct$2 = function() {
|
|
6645
|
-
return !!result;
|
|
6646
|
-
})();
|
|
6647
|
-
}
|
|
6648
6565
|
/**
|
|
6649
6566
|
* Segment implementation of {@link FirebaseServerAnalyticsServiceListener}.
|
|
6650
6567
|
*
|
|
@@ -6725,9 +6642,7 @@ FirebaseServerAnalyticsSegmentListenerService = __decorate([
|
|
|
6725
6642
|
], FirebaseServerAnalyticsSegmentListenerService);
|
|
6726
6643
|
|
|
6727
6644
|
function _class_call_check$k(instance, Constructor) {
|
|
6728
|
-
if (!(instance instanceof Constructor))
|
|
6729
|
-
throw new TypeError("Cannot call a class as a function");
|
|
6730
|
-
}
|
|
6645
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
6731
6646
|
}
|
|
6732
6647
|
/**
|
|
6733
6648
|
* A pre-configured dependency module that can be imported into the {@link appAnalyticsModuleMetadata} call.
|
|
@@ -6780,9 +6695,7 @@ FirebaseServerAnalyticsSegmentModule = __decorate([
|
|
|
6780
6695
|
}
|
|
6781
6696
|
|
|
6782
6697
|
function _class_call_check$j(instance, Constructor) {
|
|
6783
|
-
if (!(instance instanceof Constructor))
|
|
6784
|
-
throw new TypeError("Cannot call a class as a function");
|
|
6785
|
-
}
|
|
6698
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
6786
6699
|
}
|
|
6787
6700
|
function _define_property$r(obj, key, value) {
|
|
6788
6701
|
if (key in obj) {
|
|
@@ -6792,9 +6705,7 @@ function _define_property$r(obj, key, value) {
|
|
|
6792
6705
|
configurable: true,
|
|
6793
6706
|
writable: true
|
|
6794
6707
|
});
|
|
6795
|
-
} else
|
|
6796
|
-
obj[key] = value;
|
|
6797
|
-
}
|
|
6708
|
+
} else obj[key] = value;
|
|
6798
6709
|
return obj;
|
|
6799
6710
|
}
|
|
6800
6711
|
function _object_spread$g(target) {
|
|
@@ -6822,9 +6733,8 @@ function ownKeys$c(object, enumerableOnly) {
|
|
|
6822
6733
|
}
|
|
6823
6734
|
function _object_spread_props$c(target, source) {
|
|
6824
6735
|
source = source != null ? source : {};
|
|
6825
|
-
if (Object.getOwnPropertyDescriptors)
|
|
6826
|
-
|
|
6827
|
-
} else {
|
|
6736
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
6737
|
+
else {
|
|
6828
6738
|
ownKeys$c(Object(source)).forEach(function(key) {
|
|
6829
6739
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
6830
6740
|
});
|
|
@@ -7206,9 +7116,7 @@ function _define_property$q(obj, key, value) {
|
|
|
7206
7116
|
configurable: true,
|
|
7207
7117
|
writable: true
|
|
7208
7118
|
});
|
|
7209
|
-
} else
|
|
7210
|
-
obj[key] = value;
|
|
7211
|
-
}
|
|
7119
|
+
} else obj[key] = value;
|
|
7212
7120
|
return obj;
|
|
7213
7121
|
}
|
|
7214
7122
|
function _object_spread$f(target) {
|
|
@@ -7236,9 +7144,8 @@ function ownKeys$b(object, enumerableOnly) {
|
|
|
7236
7144
|
}
|
|
7237
7145
|
function _object_spread_props$b(target, source) {
|
|
7238
7146
|
source = source != null ? source : {};
|
|
7239
|
-
if (Object.getOwnPropertyDescriptors)
|
|
7240
|
-
|
|
7241
|
-
} else {
|
|
7147
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
7148
|
+
else {
|
|
7242
7149
|
ownKeys$b(Object(source)).forEach(function(key) {
|
|
7243
7150
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
7244
7151
|
});
|
|
@@ -7283,11 +7190,8 @@ function asyncGeneratorStep$c(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
7283
7190
|
reject(error);
|
|
7284
7191
|
return;
|
|
7285
7192
|
}
|
|
7286
|
-
if (info.done)
|
|
7287
|
-
|
|
7288
|
-
} else {
|
|
7289
|
-
Promise.resolve(value).then(_next, _throw);
|
|
7290
|
-
}
|
|
7193
|
+
if (info.done) resolve(value);
|
|
7194
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
7291
7195
|
}
|
|
7292
7196
|
function _async_to_generator$c(fn) {
|
|
7293
7197
|
return function() {
|
|
@@ -7305,9 +7209,7 @@ function _async_to_generator$c(fn) {
|
|
|
7305
7209
|
};
|
|
7306
7210
|
}
|
|
7307
7211
|
function _class_call_check$i(instance, Constructor) {
|
|
7308
|
-
if (!(instance instanceof Constructor))
|
|
7309
|
-
throw new TypeError("Cannot call a class as a function");
|
|
7310
|
-
}
|
|
7212
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
7311
7213
|
}
|
|
7312
7214
|
function _defineProperties$c(target, props) {
|
|
7313
7215
|
for(var i = 0; i < props.length; i++){
|
|
@@ -7330,9 +7232,7 @@ function _define_property$p(obj, key, value) {
|
|
|
7330
7232
|
configurable: true,
|
|
7331
7233
|
writable: true
|
|
7332
7234
|
});
|
|
7333
|
-
} else
|
|
7334
|
-
obj[key] = value;
|
|
7335
|
-
}
|
|
7235
|
+
} else obj[key] = value;
|
|
7336
7236
|
return obj;
|
|
7337
7237
|
}
|
|
7338
7238
|
function _object_spread$e(target) {
|
|
@@ -7596,11 +7496,8 @@ function asyncGeneratorStep$b(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
7596
7496
|
reject(error);
|
|
7597
7497
|
return;
|
|
7598
7498
|
}
|
|
7599
|
-
if (info.done)
|
|
7600
|
-
|
|
7601
|
-
} else {
|
|
7602
|
-
Promise.resolve(value).then(_next, _throw);
|
|
7603
|
-
}
|
|
7499
|
+
if (info.done) resolve(value);
|
|
7500
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
7604
7501
|
}
|
|
7605
7502
|
function _async_to_generator$b(fn) {
|
|
7606
7503
|
return function() {
|
|
@@ -7618,9 +7515,7 @@ function _async_to_generator$b(fn) {
|
|
|
7618
7515
|
};
|
|
7619
7516
|
}
|
|
7620
7517
|
function _class_call_check$h(instance, Constructor) {
|
|
7621
|
-
if (!(instance instanceof Constructor))
|
|
7622
|
-
throw new TypeError("Cannot call a class as a function");
|
|
7623
|
-
}
|
|
7518
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
7624
7519
|
}
|
|
7625
7520
|
function _defineProperties$b(target, props) {
|
|
7626
7521
|
for(var i = 0; i < props.length; i++){
|
|
@@ -7643,18 +7538,14 @@ function _define_property$o(obj, key, value) {
|
|
|
7643
7538
|
configurable: true,
|
|
7644
7539
|
writable: true
|
|
7645
7540
|
});
|
|
7646
|
-
} else
|
|
7647
|
-
obj[key] = value;
|
|
7648
|
-
}
|
|
7541
|
+
} else obj[key] = value;
|
|
7649
7542
|
return obj;
|
|
7650
7543
|
}
|
|
7651
7544
|
function _instanceof$3(left, right) {
|
|
7652
7545
|
"@swc/helpers - instanceof";
|
|
7653
7546
|
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
7654
7547
|
return !!right[Symbol.hasInstance](left);
|
|
7655
|
-
} else
|
|
7656
|
-
return left instanceof right;
|
|
7657
|
-
}
|
|
7548
|
+
} else return left instanceof right;
|
|
7658
7549
|
}
|
|
7659
7550
|
function _iterable_to_array_limit$2(arr, i) {
|
|
7660
7551
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
@@ -7681,7 +7572,7 @@ function _iterable_to_array_limit$2(arr, i) {
|
|
|
7681
7572
|
return _arr;
|
|
7682
7573
|
}
|
|
7683
7574
|
function _non_iterable_rest$2() {
|
|
7684
|
-
throw new TypeError("Invalid attempt to destructure non-iterable instance
|
|
7575
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
7685
7576
|
}
|
|
7686
7577
|
function _object_spread$d(target) {
|
|
7687
7578
|
for(var i = 1; i < arguments.length; i++){
|
|
@@ -7708,9 +7599,8 @@ function ownKeys$a(object, enumerableOnly) {
|
|
|
7708
7599
|
}
|
|
7709
7600
|
function _object_spread_props$a(target, source) {
|
|
7710
7601
|
source = source != null ? source : {};
|
|
7711
|
-
if (Object.getOwnPropertyDescriptors)
|
|
7712
|
-
|
|
7713
|
-
} else {
|
|
7602
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
7603
|
+
else {
|
|
7714
7604
|
ownKeys$a(Object(source)).forEach(function(key) {
|
|
7715
7605
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
7716
7606
|
});
|
|
@@ -7720,14 +7610,6 @@ function _object_spread_props$a(target, source) {
|
|
|
7720
7610
|
function _sliced_to_array$2(arr, i) {
|
|
7721
7611
|
return _array_with_holes$2(arr) || _iterable_to_array_limit$2(arr, i) || _unsupported_iterable_to_array$a(arr, i) || _non_iterable_rest$2();
|
|
7722
7612
|
}
|
|
7723
|
-
function _unsupported_iterable_to_array$a(o, minLen) {
|
|
7724
|
-
if (!o) return;
|
|
7725
|
-
if (typeof o === "string") return _array_like_to_array$a(o, minLen);
|
|
7726
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
7727
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
7728
|
-
if (n === "Map" || n === "Set") return Array.from(n);
|
|
7729
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$a(o, minLen);
|
|
7730
|
-
}
|
|
7731
7613
|
function _ts_generator$b(thisArg, body) {
|
|
7732
7614
|
var f, y, t, _ = {
|
|
7733
7615
|
label: 0,
|
|
@@ -7827,6 +7709,14 @@ function _ts_generator$b(thisArg, body) {
|
|
|
7827
7709
|
};
|
|
7828
7710
|
}
|
|
7829
7711
|
}
|
|
7712
|
+
function _unsupported_iterable_to_array$a(o, minLen) {
|
|
7713
|
+
if (!o) return;
|
|
7714
|
+
if (typeof o === "string") return _array_like_to_array$a(o, minLen);
|
|
7715
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
7716
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
7717
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
7718
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$a(o, minLen);
|
|
7719
|
+
}
|
|
7830
7720
|
// MARK: Types
|
|
7831
7721
|
/**
|
|
7832
7722
|
* Maximum number of keys allowed in a multi-read request.
|
|
@@ -8426,11 +8316,8 @@ function asyncGeneratorStep$a(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
8426
8316
|
reject(error);
|
|
8427
8317
|
return;
|
|
8428
8318
|
}
|
|
8429
|
-
if (info.done)
|
|
8430
|
-
|
|
8431
|
-
} else {
|
|
8432
|
-
Promise.resolve(value).then(_next, _throw);
|
|
8433
|
-
}
|
|
8319
|
+
if (info.done) resolve(value);
|
|
8320
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
8434
8321
|
}
|
|
8435
8322
|
function _async_to_generator$a(fn) {
|
|
8436
8323
|
return function() {
|
|
@@ -8448,9 +8335,7 @@ function _async_to_generator$a(fn) {
|
|
|
8448
8335
|
};
|
|
8449
8336
|
}
|
|
8450
8337
|
function _class_call_check$g(instance, Constructor) {
|
|
8451
|
-
if (!(instance instanceof Constructor))
|
|
8452
|
-
throw new TypeError("Cannot call a class as a function");
|
|
8453
|
-
}
|
|
8338
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
8454
8339
|
}
|
|
8455
8340
|
function _defineProperties$a(target, props) {
|
|
8456
8341
|
for(var i = 0; i < props.length; i++){
|
|
@@ -8473,18 +8358,14 @@ function _define_property$n(obj, key, value) {
|
|
|
8473
8358
|
configurable: true,
|
|
8474
8359
|
writable: true
|
|
8475
8360
|
});
|
|
8476
|
-
} else
|
|
8477
|
-
obj[key] = value;
|
|
8478
|
-
}
|
|
8361
|
+
} else obj[key] = value;
|
|
8479
8362
|
return obj;
|
|
8480
8363
|
}
|
|
8481
8364
|
function _instanceof$2(left, right) {
|
|
8482
8365
|
"@swc/helpers - instanceof";
|
|
8483
8366
|
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
8484
8367
|
return !!right[Symbol.hasInstance](left);
|
|
8485
|
-
} else
|
|
8486
|
-
return left instanceof right;
|
|
8487
|
-
}
|
|
8368
|
+
} else return left instanceof right;
|
|
8488
8369
|
}
|
|
8489
8370
|
function _ts_generator$a(thisArg, body) {
|
|
8490
8371
|
var f, y, t, _ = {
|
|
@@ -8953,16 +8834,16 @@ function _define_property$m(obj, key, value) {
|
|
|
8953
8834
|
configurable: true,
|
|
8954
8835
|
writable: true
|
|
8955
8836
|
});
|
|
8956
|
-
} else
|
|
8957
|
-
obj[key] = value;
|
|
8958
|
-
}
|
|
8837
|
+
} else obj[key] = value;
|
|
8959
8838
|
return obj;
|
|
8960
8839
|
}
|
|
8961
8840
|
function _iterable_to_array$7(iter) {
|
|
8962
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
8841
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
8842
|
+
return Array.from(iter);
|
|
8843
|
+
}
|
|
8963
8844
|
}
|
|
8964
8845
|
function _non_iterable_spread$7() {
|
|
8965
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
8846
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
8966
8847
|
}
|
|
8967
8848
|
function _object_spread$c(target) {
|
|
8968
8849
|
for(var i = 1; i < arguments.length; i++){
|
|
@@ -9047,9 +8928,7 @@ function _unsupported_iterable_to_array$9(o, minLen) {
|
|
|
9047
8928
|
}
|
|
9048
8929
|
|
|
9049
8930
|
function _class_call_check$f(instance, Constructor) {
|
|
9050
|
-
if (!(instance instanceof Constructor))
|
|
9051
|
-
throw new TypeError("Cannot call a class as a function");
|
|
9052
|
-
}
|
|
8931
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
9053
8932
|
}
|
|
9054
8933
|
function _define_property$l(obj, key, value) {
|
|
9055
8934
|
if (key in obj) {
|
|
@@ -9059,9 +8938,7 @@ function _define_property$l(obj, key, value) {
|
|
|
9059
8938
|
configurable: true,
|
|
9060
8939
|
writable: true
|
|
9061
8940
|
});
|
|
9062
|
-
} else
|
|
9063
|
-
obj[key] = value;
|
|
9064
|
-
}
|
|
8941
|
+
} else obj[key] = value;
|
|
9065
8942
|
return obj;
|
|
9066
8943
|
}
|
|
9067
8944
|
// MARK: Paths
|
|
@@ -9160,11 +9037,8 @@ function asyncGeneratorStep$9(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
9160
9037
|
reject(error);
|
|
9161
9038
|
return;
|
|
9162
9039
|
}
|
|
9163
|
-
if (info.done)
|
|
9164
|
-
|
|
9165
|
-
} else {
|
|
9166
|
-
Promise.resolve(value).then(_next, _throw);
|
|
9167
|
-
}
|
|
9040
|
+
if (info.done) resolve(value);
|
|
9041
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
9168
9042
|
}
|
|
9169
9043
|
function _async_to_generator$9(fn) {
|
|
9170
9044
|
return function() {
|
|
@@ -9182,9 +9056,7 @@ function _async_to_generator$9(fn) {
|
|
|
9182
9056
|
};
|
|
9183
9057
|
}
|
|
9184
9058
|
function _class_call_check$e(instance, Constructor) {
|
|
9185
|
-
if (!(instance instanceof Constructor))
|
|
9186
|
-
throw new TypeError("Cannot call a class as a function");
|
|
9187
|
-
}
|
|
9059
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
9188
9060
|
}
|
|
9189
9061
|
function _defineProperties$9(target, props) {
|
|
9190
9062
|
for(var i = 0; i < props.length; i++){
|
|
@@ -9207,16 +9079,16 @@ function _define_property$k(obj, key, value) {
|
|
|
9207
9079
|
configurable: true,
|
|
9208
9080
|
writable: true
|
|
9209
9081
|
});
|
|
9210
|
-
} else
|
|
9211
|
-
obj[key] = value;
|
|
9212
|
-
}
|
|
9082
|
+
} else obj[key] = value;
|
|
9213
9083
|
return obj;
|
|
9214
9084
|
}
|
|
9215
9085
|
function _iterable_to_array$6(iter) {
|
|
9216
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
9086
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
9087
|
+
return Array.from(iter);
|
|
9088
|
+
}
|
|
9217
9089
|
}
|
|
9218
9090
|
function _non_iterable_spread$6() {
|
|
9219
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
9091
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
9220
9092
|
}
|
|
9221
9093
|
function _object_spread$b(target) {
|
|
9222
9094
|
for(var i = 1; i < arguments.length; i++){
|
|
@@ -9243,9 +9115,8 @@ function ownKeys$9(object, enumerableOnly) {
|
|
|
9243
9115
|
}
|
|
9244
9116
|
function _object_spread_props$9(target, source) {
|
|
9245
9117
|
source = source != null ? source : {};
|
|
9246
|
-
if (Object.getOwnPropertyDescriptors)
|
|
9247
|
-
|
|
9248
|
-
} else {
|
|
9118
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
9119
|
+
else {
|
|
9249
9120
|
ownKeys$9(Object(source)).forEach(function(key) {
|
|
9250
9121
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
9251
9122
|
});
|
|
@@ -9255,14 +9126,6 @@ function _object_spread_props$9(target, source) {
|
|
|
9255
9126
|
function _to_consumable_array$6(arr) {
|
|
9256
9127
|
return _array_without_holes$6(arr) || _iterable_to_array$6(arr) || _unsupported_iterable_to_array$8(arr) || _non_iterable_spread$6();
|
|
9257
9128
|
}
|
|
9258
|
-
function _unsupported_iterable_to_array$8(o, minLen) {
|
|
9259
|
-
if (!o) return;
|
|
9260
|
-
if (typeof o === "string") return _array_like_to_array$8(o, minLen);
|
|
9261
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
9262
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
9263
|
-
if (n === "Map" || n === "Set") return Array.from(n);
|
|
9264
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$8(o, minLen);
|
|
9265
|
-
}
|
|
9266
9129
|
function _ts_generator$9(thisArg, body) {
|
|
9267
9130
|
var f, y, t, _ = {
|
|
9268
9131
|
label: 0,
|
|
@@ -9362,6 +9225,14 @@ function _ts_generator$9(thisArg, body) {
|
|
|
9362
9225
|
};
|
|
9363
9226
|
}
|
|
9364
9227
|
}
|
|
9228
|
+
function _unsupported_iterable_to_array$8(o, minLen) {
|
|
9229
|
+
if (!o) return;
|
|
9230
|
+
if (typeof o === "string") return _array_like_to_array$8(o, minLen);
|
|
9231
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
9232
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
9233
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
9234
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$8(o, minLen);
|
|
9235
|
+
}
|
|
9365
9236
|
var FirestoreSessionApiService_1;
|
|
9366
9237
|
/**
|
|
9367
9238
|
* Error code thrown when the caller is not authorized to open a direct-Firestore session.
|
|
@@ -9521,11 +9392,8 @@ function asyncGeneratorStep$8(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
9521
9392
|
reject(error);
|
|
9522
9393
|
return;
|
|
9523
9394
|
}
|
|
9524
|
-
if (info.done)
|
|
9525
|
-
|
|
9526
|
-
} else {
|
|
9527
|
-
Promise.resolve(value).then(_next, _throw);
|
|
9528
|
-
}
|
|
9395
|
+
if (info.done) resolve(value);
|
|
9396
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
9529
9397
|
}
|
|
9530
9398
|
function _async_to_generator$8(fn) {
|
|
9531
9399
|
return function() {
|
|
@@ -9543,9 +9411,7 @@ function _async_to_generator$8(fn) {
|
|
|
9543
9411
|
};
|
|
9544
9412
|
}
|
|
9545
9413
|
function _class_call_check$d(instance, Constructor) {
|
|
9546
|
-
if (!(instance instanceof Constructor))
|
|
9547
|
-
throw new TypeError("Cannot call a class as a function");
|
|
9548
|
-
}
|
|
9414
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
9549
9415
|
}
|
|
9550
9416
|
function _defineProperties$8(target, props) {
|
|
9551
9417
|
for(var i = 0; i < props.length; i++){
|
|
@@ -9568,18 +9434,14 @@ function _define_property$j(obj, key, value) {
|
|
|
9568
9434
|
configurable: true,
|
|
9569
9435
|
writable: true
|
|
9570
9436
|
});
|
|
9571
|
-
} else
|
|
9572
|
-
obj[key] = value;
|
|
9573
|
-
}
|
|
9437
|
+
} else obj[key] = value;
|
|
9574
9438
|
return obj;
|
|
9575
9439
|
}
|
|
9576
9440
|
function _instanceof$1(left, right) {
|
|
9577
9441
|
"@swc/helpers - instanceof";
|
|
9578
9442
|
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
9579
9443
|
return !!right[Symbol.hasInstance](left);
|
|
9580
|
-
} else
|
|
9581
|
-
return left instanceof right;
|
|
9582
|
-
}
|
|
9444
|
+
} else return left instanceof right;
|
|
9583
9445
|
}
|
|
9584
9446
|
function _ts_generator$8(thisArg, body) {
|
|
9585
9447
|
var f, y, t, _ = {
|
|
@@ -9787,10 +9649,12 @@ function _array_without_holes$5(arr) {
|
|
|
9787
9649
|
if (Array.isArray(arr)) return _array_like_to_array$7(arr);
|
|
9788
9650
|
}
|
|
9789
9651
|
function _iterable_to_array$5(iter) {
|
|
9790
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
9652
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
9653
|
+
return Array.from(iter);
|
|
9654
|
+
}
|
|
9791
9655
|
}
|
|
9792
9656
|
function _non_iterable_spread$5() {
|
|
9793
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
9657
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
9794
9658
|
}
|
|
9795
9659
|
function _to_consumable_array$5(arr) {
|
|
9796
9660
|
return _array_without_holes$5(arr) || _iterable_to_array$5(arr) || _unsupported_iterable_to_array$7(arr) || _non_iterable_spread$5();
|
|
@@ -9858,9 +9722,7 @@ function _define_property$i(obj, key, value) {
|
|
|
9858
9722
|
configurable: true,
|
|
9859
9723
|
writable: true
|
|
9860
9724
|
});
|
|
9861
|
-
} else
|
|
9862
|
-
obj[key] = value;
|
|
9863
|
-
}
|
|
9725
|
+
} else obj[key] = value;
|
|
9864
9726
|
return obj;
|
|
9865
9727
|
}
|
|
9866
9728
|
function _object_spread$a(target) {
|
|
@@ -9888,9 +9750,8 @@ function ownKeys$8(object, enumerableOnly) {
|
|
|
9888
9750
|
}
|
|
9889
9751
|
function _object_spread_props$8(target, source) {
|
|
9890
9752
|
source = source != null ? source : {};
|
|
9891
|
-
if (Object.getOwnPropertyDescriptors)
|
|
9892
|
-
|
|
9893
|
-
} else {
|
|
9753
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
9754
|
+
else {
|
|
9894
9755
|
ownKeys$8(Object(source)).forEach(function(key) {
|
|
9895
9756
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
9896
9757
|
});
|
|
@@ -10020,11 +9881,8 @@ function asyncGeneratorStep$7(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
10020
9881
|
reject(error);
|
|
10021
9882
|
return;
|
|
10022
9883
|
}
|
|
10023
|
-
if (info.done)
|
|
10024
|
-
|
|
10025
|
-
} else {
|
|
10026
|
-
Promise.resolve(value).then(_next, _throw);
|
|
10027
|
-
}
|
|
9884
|
+
if (info.done) resolve(value);
|
|
9885
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
10028
9886
|
}
|
|
10029
9887
|
function _async_to_generator$7(fn) {
|
|
10030
9888
|
return function() {
|
|
@@ -10066,19 +9924,11 @@ function _iterable_to_array_limit$1(arr, i) {
|
|
|
10066
9924
|
return _arr;
|
|
10067
9925
|
}
|
|
10068
9926
|
function _non_iterable_rest$1() {
|
|
10069
|
-
throw new TypeError("Invalid attempt to destructure non-iterable instance
|
|
9927
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
10070
9928
|
}
|
|
10071
9929
|
function _sliced_to_array$1(arr, i) {
|
|
10072
9930
|
return _array_with_holes$1(arr) || _iterable_to_array_limit$1(arr, i) || _unsupported_iterable_to_array$6(arr, i) || _non_iterable_rest$1();
|
|
10073
9931
|
}
|
|
10074
|
-
function _unsupported_iterable_to_array$6(o, minLen) {
|
|
10075
|
-
if (!o) return;
|
|
10076
|
-
if (typeof o === "string") return _array_like_to_array$6(o, minLen);
|
|
10077
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
10078
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
10079
|
-
if (n === "Map" || n === "Set") return Array.from(n);
|
|
10080
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$6(o, minLen);
|
|
10081
|
-
}
|
|
10082
9932
|
function _ts_generator$7(thisArg, body) {
|
|
10083
9933
|
var f, y, t, _ = {
|
|
10084
9934
|
label: 0,
|
|
@@ -10178,6 +10028,14 @@ function _ts_generator$7(thisArg, body) {
|
|
|
10178
10028
|
};
|
|
10179
10029
|
}
|
|
10180
10030
|
}
|
|
10031
|
+
function _unsupported_iterable_to_array$6(o, minLen) {
|
|
10032
|
+
if (!o) return;
|
|
10033
|
+
if (typeof o === "string") return _array_like_to_array$6(o, minLen);
|
|
10034
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
10035
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
10036
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
10037
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$6(o, minLen);
|
|
10038
|
+
}
|
|
10181
10039
|
/**
|
|
10182
10040
|
* Creates a development function that allows manually triggering or listing scheduled functions.
|
|
10183
10041
|
*
|
|
@@ -10309,11 +10167,8 @@ function asyncGeneratorStep$6(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
10309
10167
|
reject(error);
|
|
10310
10168
|
return;
|
|
10311
10169
|
}
|
|
10312
|
-
if (info.done)
|
|
10313
|
-
|
|
10314
|
-
} else {
|
|
10315
|
-
Promise.resolve(value).then(_next, _throw);
|
|
10316
|
-
}
|
|
10170
|
+
if (info.done) resolve(value);
|
|
10171
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
10317
10172
|
}
|
|
10318
10173
|
function _async_to_generator$6(fn) {
|
|
10319
10174
|
return function() {
|
|
@@ -10338,9 +10193,7 @@ function _define_property$h(obj, key, value) {
|
|
|
10338
10193
|
configurable: true,
|
|
10339
10194
|
writable: true
|
|
10340
10195
|
});
|
|
10341
|
-
} else
|
|
10342
|
-
obj[key] = value;
|
|
10343
|
-
}
|
|
10196
|
+
} else obj[key] = value;
|
|
10344
10197
|
return obj;
|
|
10345
10198
|
}
|
|
10346
10199
|
function _object_spread$9(target) {
|
|
@@ -10482,7 +10335,6 @@ function _ts_generator$6(thisArg, body) {
|
|
|
10482
10335
|
* @__NO_SIDE_EFFECTS__
|
|
10483
10336
|
*/ function firebaseServerDevFunctions(config) {
|
|
10484
10337
|
var enabled = config.enabled, secure = config.secure, nest = config.nest, developerFunctionsMap = config.developerFunctionsMap, onCallFactory = config.onCallFactory, allScheduledFunctions = config.allScheduledFunctions, disableDevelopmentScheduleFunction = config.disableDevelopmentScheduleFunction;
|
|
10485
|
-
// eslint-disable-next-line @typescript-eslint/no-deprecated -- RunnableHttpFunction supports legacy gen 1 deployments
|
|
10486
10338
|
var dev;
|
|
10487
10339
|
if (enabled) {
|
|
10488
10340
|
var fullFunctionsMap = _object_spread$9({}, developerFunctionsMap);
|
|
@@ -10513,9 +10365,7 @@ function _ts_generator$6(thisArg, body) {
|
|
|
10513
10365
|
}
|
|
10514
10366
|
|
|
10515
10367
|
function _assert_this_initialized$1(self) {
|
|
10516
|
-
if (self === void 0)
|
|
10517
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
10518
|
-
}
|
|
10368
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
10519
10369
|
return self;
|
|
10520
10370
|
}
|
|
10521
10371
|
function _call_super$1(_this, derived, args) {
|
|
@@ -10523,9 +10373,7 @@ function _call_super$1(_this, derived, args) {
|
|
|
10523
10373
|
return _possible_constructor_return$1(_this, _is_native_reflect_construct$1() ? Reflect.construct(derived, args || [], _get_prototype_of$1(_this).constructor) : derived.apply(_this, args));
|
|
10524
10374
|
}
|
|
10525
10375
|
function _class_call_check$c(instance, Constructor) {
|
|
10526
|
-
if (!(instance instanceof Constructor))
|
|
10527
|
-
throw new TypeError("Cannot call a class as a function");
|
|
10528
|
-
}
|
|
10376
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
10529
10377
|
}
|
|
10530
10378
|
function _defineProperties$7(target, props) {
|
|
10531
10379
|
for(var i = 0; i < props.length; i++){
|
|
@@ -10548,9 +10396,7 @@ function _define_property$g(obj, key, value) {
|
|
|
10548
10396
|
configurable: true,
|
|
10549
10397
|
writable: true
|
|
10550
10398
|
});
|
|
10551
|
-
} else
|
|
10552
|
-
obj[key] = value;
|
|
10553
|
-
}
|
|
10399
|
+
} else obj[key] = value;
|
|
10554
10400
|
return obj;
|
|
10555
10401
|
}
|
|
10556
10402
|
function _get_prototype_of$1(o) {
|
|
@@ -10572,10 +10418,16 @@ function _inherits$1(subClass, superClass) {
|
|
|
10572
10418
|
});
|
|
10573
10419
|
if (superClass) _set_prototype_of$1(subClass, superClass);
|
|
10574
10420
|
}
|
|
10421
|
+
function _is_native_reflect_construct$1() {
|
|
10422
|
+
try {
|
|
10423
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
10424
|
+
} catch (_) {}
|
|
10425
|
+
return (_is_native_reflect_construct$1 = function() {
|
|
10426
|
+
return !!result;
|
|
10427
|
+
})();
|
|
10428
|
+
}
|
|
10575
10429
|
function _possible_constructor_return$1(self, call) {
|
|
10576
|
-
if (call && (_type_of$1(call) === "object" || typeof call === "function"))
|
|
10577
|
-
return call;
|
|
10578
|
-
}
|
|
10430
|
+
if (call && (_type_of$1(call) === "object" || typeof call === "function")) return call;
|
|
10579
10431
|
return _assert_this_initialized$1(self);
|
|
10580
10432
|
}
|
|
10581
10433
|
function _set_prototype_of$1(o, p) {
|
|
@@ -10589,14 +10441,6 @@ function _type_of$1(obj) {
|
|
|
10589
10441
|
"@swc/helpers - typeof";
|
|
10590
10442
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
10591
10443
|
}
|
|
10592
|
-
function _is_native_reflect_construct$1() {
|
|
10593
|
-
try {
|
|
10594
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
10595
|
-
} catch (_) {}
|
|
10596
|
-
return (_is_native_reflect_construct$1 = function() {
|
|
10597
|
-
return !!result;
|
|
10598
|
-
})();
|
|
10599
|
-
}
|
|
10600
10444
|
/**
|
|
10601
10445
|
* Default NestJS injectable implementation of {@link FirebaseServerEnvService}.
|
|
10602
10446
|
*
|
|
@@ -10710,15 +10554,15 @@ function _array_without_holes$4(arr) {
|
|
|
10710
10554
|
if (Array.isArray(arr)) return _array_like_to_array$5(arr);
|
|
10711
10555
|
}
|
|
10712
10556
|
function _class_call_check$b(instance, Constructor) {
|
|
10713
|
-
if (!(instance instanceof Constructor))
|
|
10714
|
-
throw new TypeError("Cannot call a class as a function");
|
|
10715
|
-
}
|
|
10557
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
10716
10558
|
}
|
|
10717
10559
|
function _iterable_to_array$4(iter) {
|
|
10718
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
10560
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
10561
|
+
return Array.from(iter);
|
|
10562
|
+
}
|
|
10719
10563
|
}
|
|
10720
10564
|
function _non_iterable_spread$4() {
|
|
10721
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
10565
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
10722
10566
|
}
|
|
10723
10567
|
function _to_consumable_array$4(arr) {
|
|
10724
10568
|
return _array_without_holes$4(arr) || _iterable_to_array$4(arr) || _unsupported_iterable_to_array$5(arr) || _non_iterable_spread$4();
|
|
@@ -10917,9 +10761,7 @@ function _define_property$f(obj, key, value) {
|
|
|
10917
10761
|
configurable: true,
|
|
10918
10762
|
writable: true
|
|
10919
10763
|
});
|
|
10920
|
-
} else
|
|
10921
|
-
obj[key] = value;
|
|
10922
|
-
}
|
|
10764
|
+
} else obj[key] = value;
|
|
10923
10765
|
return obj;
|
|
10924
10766
|
}
|
|
10925
10767
|
function _object_spread$8(target) {
|
|
@@ -10947,9 +10789,8 @@ function ownKeys$7(object, enumerableOnly) {
|
|
|
10947
10789
|
}
|
|
10948
10790
|
function _object_spread_props$7(target, source) {
|
|
10949
10791
|
source = source != null ? source : {};
|
|
10950
|
-
if (Object.getOwnPropertyDescriptors)
|
|
10951
|
-
|
|
10952
|
-
} else {
|
|
10792
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
10793
|
+
else {
|
|
10953
10794
|
ownKeys$7(Object(source)).forEach(function(key) {
|
|
10954
10795
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
10955
10796
|
});
|
|
@@ -11032,9 +10873,7 @@ function _define_property$e(obj, key, value) {
|
|
|
11032
10873
|
configurable: true,
|
|
11033
10874
|
writable: true
|
|
11034
10875
|
});
|
|
11035
|
-
} else
|
|
11036
|
-
obj[key] = value;
|
|
11037
|
-
}
|
|
10876
|
+
} else obj[key] = value;
|
|
11038
10877
|
return obj;
|
|
11039
10878
|
}
|
|
11040
10879
|
function _object_spread$7(target) {
|
|
@@ -11062,9 +10901,8 @@ function ownKeys$6(object, enumerableOnly) {
|
|
|
11062
10901
|
}
|
|
11063
10902
|
function _object_spread_props$6(target, source) {
|
|
11064
10903
|
source = source != null ? source : {};
|
|
11065
|
-
if (Object.getOwnPropertyDescriptors)
|
|
11066
|
-
|
|
11067
|
-
} else {
|
|
10904
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
10905
|
+
else {
|
|
11068
10906
|
ownKeys$6(Object(source)).forEach(function(key) {
|
|
11069
10907
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
11070
10908
|
});
|
|
@@ -11143,9 +10981,7 @@ function _define_property$d(obj, key, value) {
|
|
|
11143
10981
|
configurable: true,
|
|
11144
10982
|
writable: true
|
|
11145
10983
|
});
|
|
11146
|
-
} else
|
|
11147
|
-
obj[key] = value;
|
|
11148
|
-
}
|
|
10984
|
+
} else obj[key] = value;
|
|
11149
10985
|
return obj;
|
|
11150
10986
|
}
|
|
11151
10987
|
function _object_spread$6(target) {
|
|
@@ -11173,9 +11009,8 @@ function ownKeys$5(object, enumerableOnly) {
|
|
|
11173
11009
|
}
|
|
11174
11010
|
function _object_spread_props$5(target, source) {
|
|
11175
11011
|
source = source != null ? source : {};
|
|
11176
|
-
if (Object.getOwnPropertyDescriptors)
|
|
11177
|
-
|
|
11178
|
-
} else {
|
|
11012
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
11013
|
+
else {
|
|
11179
11014
|
ownKeys$5(Object(source)).forEach(function(key) {
|
|
11180
11015
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
11181
11016
|
});
|
|
@@ -11325,9 +11160,7 @@ function _define_property$c(obj, key, value) {
|
|
|
11325
11160
|
configurable: true,
|
|
11326
11161
|
writable: true
|
|
11327
11162
|
});
|
|
11328
|
-
} else
|
|
11329
|
-
obj[key] = value;
|
|
11330
|
-
}
|
|
11163
|
+
} else obj[key] = value;
|
|
11331
11164
|
return obj;
|
|
11332
11165
|
}
|
|
11333
11166
|
function _object_spread$5(target) {
|
|
@@ -11355,9 +11188,8 @@ function ownKeys$4(object, enumerableOnly) {
|
|
|
11355
11188
|
}
|
|
11356
11189
|
function _object_spread_props$4(target, source) {
|
|
11357
11190
|
source = source != null ? source : {};
|
|
11358
|
-
if (Object.getOwnPropertyDescriptors)
|
|
11359
|
-
|
|
11360
|
-
} else {
|
|
11191
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
11192
|
+
else {
|
|
11361
11193
|
ownKeys$4(Object(source)).forEach(function(key) {
|
|
11362
11194
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
11363
11195
|
});
|
|
@@ -11399,11 +11231,8 @@ function asyncGeneratorStep$5(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
11399
11231
|
reject(error);
|
|
11400
11232
|
return;
|
|
11401
11233
|
}
|
|
11402
|
-
if (info.done)
|
|
11403
|
-
|
|
11404
|
-
} else {
|
|
11405
|
-
Promise.resolve(value).then(_next, _throw);
|
|
11406
|
-
}
|
|
11234
|
+
if (info.done) resolve(value);
|
|
11235
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
11407
11236
|
}
|
|
11408
11237
|
function _async_to_generator$5(fn) {
|
|
11409
11238
|
return function() {
|
|
@@ -11421,9 +11250,7 @@ function _async_to_generator$5(fn) {
|
|
|
11421
11250
|
};
|
|
11422
11251
|
}
|
|
11423
11252
|
function _class_call_check$a(instance, Constructor) {
|
|
11424
|
-
if (!(instance instanceof Constructor))
|
|
11425
|
-
throw new TypeError("Cannot call a class as a function");
|
|
11426
|
-
}
|
|
11253
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
11427
11254
|
}
|
|
11428
11255
|
function _define_property$b(obj, key, value) {
|
|
11429
11256
|
if (key in obj) {
|
|
@@ -11433,9 +11260,7 @@ function _define_property$b(obj, key, value) {
|
|
|
11433
11260
|
configurable: true,
|
|
11434
11261
|
writable: true
|
|
11435
11262
|
});
|
|
11436
|
-
} else
|
|
11437
|
-
obj[key] = value;
|
|
11438
|
-
}
|
|
11263
|
+
} else obj[key] = value;
|
|
11439
11264
|
return obj;
|
|
11440
11265
|
}
|
|
11441
11266
|
function _object_spread$4(target) {
|
|
@@ -11663,9 +11488,7 @@ function _ts_generator$5(thisArg, body) {
|
|
|
11663
11488
|
}
|
|
11664
11489
|
|
|
11665
11490
|
function _class_call_check$9(instance, Constructor) {
|
|
11666
|
-
if (!(instance instanceof Constructor))
|
|
11667
|
-
throw new TypeError("Cannot call a class as a function");
|
|
11668
|
-
}
|
|
11491
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
11669
11492
|
}
|
|
11670
11493
|
function _define_property$a(obj, key, value) {
|
|
11671
11494
|
if (key in obj) {
|
|
@@ -11675,9 +11498,7 @@ function _define_property$a(obj, key, value) {
|
|
|
11675
11498
|
configurable: true,
|
|
11676
11499
|
writable: true
|
|
11677
11500
|
});
|
|
11678
|
-
} else
|
|
11679
|
-
obj[key] = value;
|
|
11680
|
-
}
|
|
11501
|
+
} else obj[key] = value;
|
|
11681
11502
|
return obj;
|
|
11682
11503
|
}
|
|
11683
11504
|
/**
|
|
@@ -11709,11 +11530,8 @@ function asyncGeneratorStep$4(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
11709
11530
|
reject(error);
|
|
11710
11531
|
return;
|
|
11711
11532
|
}
|
|
11712
|
-
if (info.done)
|
|
11713
|
-
|
|
11714
|
-
} else {
|
|
11715
|
-
Promise.resolve(value).then(_next, _throw);
|
|
11716
|
-
}
|
|
11533
|
+
if (info.done) resolve(value);
|
|
11534
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
11717
11535
|
}
|
|
11718
11536
|
function _async_to_generator$4(fn) {
|
|
11719
11537
|
return function() {
|
|
@@ -11731,9 +11549,7 @@ function _async_to_generator$4(fn) {
|
|
|
11731
11549
|
};
|
|
11732
11550
|
}
|
|
11733
11551
|
function _class_call_check$8(instance, Constructor) {
|
|
11734
|
-
if (!(instance instanceof Constructor))
|
|
11735
|
-
throw new TypeError("Cannot call a class as a function");
|
|
11736
|
-
}
|
|
11552
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
11737
11553
|
}
|
|
11738
11554
|
function _defineProperties$6(target, props) {
|
|
11739
11555
|
for(var i = 0; i < props.length; i++){
|
|
@@ -11756,9 +11572,7 @@ function _define_property$9(obj, key, value) {
|
|
|
11756
11572
|
configurable: true,
|
|
11757
11573
|
writable: true
|
|
11758
11574
|
});
|
|
11759
|
-
} else
|
|
11760
|
-
obj[key] = value;
|
|
11761
|
-
}
|
|
11575
|
+
} else obj[key] = value;
|
|
11762
11576
|
return obj;
|
|
11763
11577
|
}
|
|
11764
11578
|
function _ts_generator$4(thisArg, body) {
|
|
@@ -12014,9 +11828,7 @@ function _array_without_holes$3(arr) {
|
|
|
12014
11828
|
if (Array.isArray(arr)) return _array_like_to_array$4(arr);
|
|
12015
11829
|
}
|
|
12016
11830
|
function _class_call_check$7(instance, Constructor) {
|
|
12017
|
-
if (!(instance instanceof Constructor))
|
|
12018
|
-
throw new TypeError("Cannot call a class as a function");
|
|
12019
|
-
}
|
|
11831
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
12020
11832
|
}
|
|
12021
11833
|
function _defineProperties$5(target, props) {
|
|
12022
11834
|
for(var i = 0; i < props.length; i++){
|
|
@@ -12039,16 +11851,16 @@ function _define_property$8(obj, key, value) {
|
|
|
12039
11851
|
configurable: true,
|
|
12040
11852
|
writable: true
|
|
12041
11853
|
});
|
|
12042
|
-
} else
|
|
12043
|
-
obj[key] = value;
|
|
12044
|
-
}
|
|
11854
|
+
} else obj[key] = value;
|
|
12045
11855
|
return obj;
|
|
12046
11856
|
}
|
|
12047
11857
|
function _iterable_to_array$3(iter) {
|
|
12048
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
11858
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
11859
|
+
return Array.from(iter);
|
|
11860
|
+
}
|
|
12049
11861
|
}
|
|
12050
11862
|
function _non_iterable_spread$3() {
|
|
12051
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
11863
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
12052
11864
|
}
|
|
12053
11865
|
function _to_consumable_array$3(arr) {
|
|
12054
11866
|
return _array_without_holes$3(arr) || _iterable_to_array$3(arr) || _unsupported_iterable_to_array$4(arr) || _non_iterable_spread$3();
|
|
@@ -12155,11 +11967,8 @@ function asyncGeneratorStep$3(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
12155
11967
|
reject(error);
|
|
12156
11968
|
return;
|
|
12157
11969
|
}
|
|
12158
|
-
if (info.done)
|
|
12159
|
-
|
|
12160
|
-
} else {
|
|
12161
|
-
Promise.resolve(value).then(_next, _throw);
|
|
12162
|
-
}
|
|
11970
|
+
if (info.done) resolve(value);
|
|
11971
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
12163
11972
|
}
|
|
12164
11973
|
function _async_to_generator$3(fn) {
|
|
12165
11974
|
return function() {
|
|
@@ -12291,9 +12100,7 @@ function _ts_generator$3(thisArg, body) {
|
|
|
12291
12100
|
});
|
|
12292
12101
|
|
|
12293
12102
|
function _class_call_check$6(instance, Constructor) {
|
|
12294
|
-
if (!(instance instanceof Constructor))
|
|
12295
|
-
throw new TypeError("Cannot call a class as a function");
|
|
12296
|
-
}
|
|
12103
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
12297
12104
|
}
|
|
12298
12105
|
function _defineProperties$4(target, props) {
|
|
12299
12106
|
for(var i = 0; i < props.length; i++){
|
|
@@ -12333,9 +12140,7 @@ FirebaseRawBodyMiddleware = __decorate([
|
|
|
12333
12140
|
], FirebaseRawBodyMiddleware);
|
|
12334
12141
|
|
|
12335
12142
|
function _class_call_check$5(instance, Constructor) {
|
|
12336
|
-
if (!(instance instanceof Constructor))
|
|
12337
|
-
throw new TypeError("Cannot call a class as a function");
|
|
12338
|
-
}
|
|
12143
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
12339
12144
|
}
|
|
12340
12145
|
function _defineProperties$3(target, props) {
|
|
12341
12146
|
for(var i = 0; i < props.length; i++){
|
|
@@ -12358,9 +12163,7 @@ function _define_property$7(obj, key, value) {
|
|
|
12358
12163
|
configurable: true,
|
|
12359
12164
|
writable: true
|
|
12360
12165
|
});
|
|
12361
|
-
} else
|
|
12362
|
-
obj[key] = value;
|
|
12363
|
-
}
|
|
12166
|
+
} else obj[key] = value;
|
|
12364
12167
|
return obj;
|
|
12365
12168
|
}
|
|
12366
12169
|
/**
|
|
@@ -12395,11 +12198,8 @@ function asyncGeneratorStep$2(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
12395
12198
|
reject(error);
|
|
12396
12199
|
return;
|
|
12397
12200
|
}
|
|
12398
|
-
if (info.done)
|
|
12399
|
-
|
|
12400
|
-
} else {
|
|
12401
|
-
Promise.resolve(value).then(_next, _throw);
|
|
12402
|
-
}
|
|
12201
|
+
if (info.done) resolve(value);
|
|
12202
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
12403
12203
|
}
|
|
12404
12204
|
function _async_to_generator$2(fn) {
|
|
12405
12205
|
return function() {
|
|
@@ -12424,18 +12224,14 @@ function _define_property$6(obj, key, value) {
|
|
|
12424
12224
|
configurable: true,
|
|
12425
12225
|
writable: true
|
|
12426
12226
|
});
|
|
12427
|
-
} else
|
|
12428
|
-
obj[key] = value;
|
|
12429
|
-
}
|
|
12227
|
+
} else obj[key] = value;
|
|
12430
12228
|
return obj;
|
|
12431
12229
|
}
|
|
12432
12230
|
function _instanceof(left, right) {
|
|
12433
12231
|
"@swc/helpers - instanceof";
|
|
12434
12232
|
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
12435
12233
|
return !!right[Symbol.hasInstance](left);
|
|
12436
|
-
} else
|
|
12437
|
-
return left instanceof right;
|
|
12438
|
-
}
|
|
12234
|
+
} else return left instanceof right;
|
|
12439
12235
|
}
|
|
12440
12236
|
function _object_spread$3(target) {
|
|
12441
12237
|
for(var i = 1; i < arguments.length; i++){
|
|
@@ -12462,9 +12258,8 @@ function ownKeys$3(object, enumerableOnly) {
|
|
|
12462
12258
|
}
|
|
12463
12259
|
function _object_spread_props$3(target, source) {
|
|
12464
12260
|
source = source != null ? source : {};
|
|
12465
|
-
if (Object.getOwnPropertyDescriptors)
|
|
12466
|
-
|
|
12467
|
-
} else {
|
|
12261
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
12262
|
+
else {
|
|
12468
12263
|
ownKeys$3(Object(source)).forEach(function(key) {
|
|
12469
12264
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
12470
12265
|
});
|
|
@@ -13086,9 +12881,7 @@ var googleCloudStorageListFilesResultFactory = storageListFilesResultFactory({
|
|
|
13086
12881
|
}
|
|
13087
12882
|
|
|
13088
12883
|
function _class_call_check$4(instance, Constructor) {
|
|
13089
|
-
if (!(instance instanceof Constructor))
|
|
13090
|
-
throw new TypeError("Cannot call a class as a function");
|
|
13091
|
-
}
|
|
12884
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
13092
12885
|
}
|
|
13093
12886
|
function _defineProperties$2(target, props) {
|
|
13094
12887
|
for(var i = 0; i < props.length; i++){
|
|
@@ -13111,9 +12904,7 @@ function _define_property$5(obj, key, value) {
|
|
|
13111
12904
|
configurable: true,
|
|
13112
12905
|
writable: true
|
|
13113
12906
|
});
|
|
13114
|
-
} else
|
|
13115
|
-
obj[key] = value;
|
|
13116
|
-
}
|
|
12907
|
+
} else obj[key] = value;
|
|
13117
12908
|
return obj;
|
|
13118
12909
|
}
|
|
13119
12910
|
/**
|
|
@@ -13192,9 +12983,7 @@ function _array_without_holes$2(arr) {
|
|
|
13192
12983
|
if (Array.isArray(arr)) return _array_like_to_array$3(arr);
|
|
13193
12984
|
}
|
|
13194
12985
|
function _class_call_check$3(instance, Constructor) {
|
|
13195
|
-
if (!(instance instanceof Constructor))
|
|
13196
|
-
throw new TypeError("Cannot call a class as a function");
|
|
13197
|
-
}
|
|
12986
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
13198
12987
|
}
|
|
13199
12988
|
function _define_property$4(obj, key, value) {
|
|
13200
12989
|
if (key in obj) {
|
|
@@ -13204,16 +12993,16 @@ function _define_property$4(obj, key, value) {
|
|
|
13204
12993
|
configurable: true,
|
|
13205
12994
|
writable: true
|
|
13206
12995
|
});
|
|
13207
|
-
} else
|
|
13208
|
-
obj[key] = value;
|
|
13209
|
-
}
|
|
12996
|
+
} else obj[key] = value;
|
|
13210
12997
|
return obj;
|
|
13211
12998
|
}
|
|
13212
12999
|
function _iterable_to_array$2(iter) {
|
|
13213
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
13000
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
13001
|
+
return Array.from(iter);
|
|
13002
|
+
}
|
|
13214
13003
|
}
|
|
13215
13004
|
function _non_iterable_spread$2() {
|
|
13216
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
13005
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
13217
13006
|
}
|
|
13218
13007
|
function _object_spread$2(target) {
|
|
13219
13008
|
for(var i = 1; i < arguments.length; i++){
|
|
@@ -13240,9 +13029,8 @@ function ownKeys$2(object, enumerableOnly) {
|
|
|
13240
13029
|
}
|
|
13241
13030
|
function _object_spread_props$2(target, source) {
|
|
13242
13031
|
source = source != null ? source : {};
|
|
13243
|
-
if (Object.getOwnPropertyDescriptors)
|
|
13244
|
-
|
|
13245
|
-
} else {
|
|
13032
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
13033
|
+
else {
|
|
13246
13034
|
ownKeys$2(Object(source)).forEach(function(key) {
|
|
13247
13035
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
13248
13036
|
});
|
|
@@ -13419,9 +13207,7 @@ function _array_without_holes$1(arr) {
|
|
|
13419
13207
|
if (Array.isArray(arr)) return _array_like_to_array$2(arr);
|
|
13420
13208
|
}
|
|
13421
13209
|
function _class_call_check$2(instance, Constructor) {
|
|
13422
|
-
if (!(instance instanceof Constructor))
|
|
13423
|
-
throw new TypeError("Cannot call a class as a function");
|
|
13424
|
-
}
|
|
13210
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
13425
13211
|
}
|
|
13426
13212
|
function _define_property$3(obj, key, value) {
|
|
13427
13213
|
if (key in obj) {
|
|
@@ -13431,16 +13217,16 @@ function _define_property$3(obj, key, value) {
|
|
|
13431
13217
|
configurable: true,
|
|
13432
13218
|
writable: true
|
|
13433
13219
|
});
|
|
13434
|
-
} else
|
|
13435
|
-
obj[key] = value;
|
|
13436
|
-
}
|
|
13220
|
+
} else obj[key] = value;
|
|
13437
13221
|
return obj;
|
|
13438
13222
|
}
|
|
13439
13223
|
function _iterable_to_array$1(iter) {
|
|
13440
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
13224
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
13225
|
+
return Array.from(iter);
|
|
13226
|
+
}
|
|
13441
13227
|
}
|
|
13442
13228
|
function _non_iterable_spread$1() {
|
|
13443
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
13229
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
13444
13230
|
}
|
|
13445
13231
|
function _object_spread$1(target) {
|
|
13446
13232
|
for(var i = 1; i < arguments.length; i++){
|
|
@@ -13467,9 +13253,8 @@ function ownKeys$1(object, enumerableOnly) {
|
|
|
13467
13253
|
}
|
|
13468
13254
|
function _object_spread_props$1(target, source) {
|
|
13469
13255
|
source = source != null ? source : {};
|
|
13470
|
-
if (Object.getOwnPropertyDescriptors)
|
|
13471
|
-
|
|
13472
|
-
} else {
|
|
13256
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
13257
|
+
else {
|
|
13473
13258
|
ownKeys$1(Object(source)).forEach(function(key) {
|
|
13474
13259
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
13475
13260
|
});
|
|
@@ -13627,11 +13412,8 @@ function asyncGeneratorStep$1(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
13627
13412
|
reject(error);
|
|
13628
13413
|
return;
|
|
13629
13414
|
}
|
|
13630
|
-
if (info.done)
|
|
13631
|
-
|
|
13632
|
-
} else {
|
|
13633
|
-
Promise.resolve(value).then(_next, _throw);
|
|
13634
|
-
}
|
|
13415
|
+
if (info.done) resolve(value);
|
|
13416
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
13635
13417
|
}
|
|
13636
13418
|
function _async_to_generator$1(fn) {
|
|
13637
13419
|
return function() {
|
|
@@ -13656,16 +13438,16 @@ function _define_property$2(obj, key, value) {
|
|
|
13656
13438
|
configurable: true,
|
|
13657
13439
|
writable: true
|
|
13658
13440
|
});
|
|
13659
|
-
} else
|
|
13660
|
-
obj[key] = value;
|
|
13661
|
-
}
|
|
13441
|
+
} else obj[key] = value;
|
|
13662
13442
|
return obj;
|
|
13663
13443
|
}
|
|
13664
13444
|
function _iterable_to_array(iter) {
|
|
13665
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null)
|
|
13445
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
13446
|
+
return Array.from(iter);
|
|
13447
|
+
}
|
|
13666
13448
|
}
|
|
13667
13449
|
function _non_iterable_spread() {
|
|
13668
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance
|
|
13450
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
13669
13451
|
}
|
|
13670
13452
|
function _object_spread(target) {
|
|
13671
13453
|
for(var i = 1; i < arguments.length; i++){
|
|
@@ -13692,9 +13474,8 @@ function ownKeys(object, enumerableOnly) {
|
|
|
13692
13474
|
}
|
|
13693
13475
|
function _object_spread_props(target, source) {
|
|
13694
13476
|
source = source != null ? source : {};
|
|
13695
|
-
if (Object.getOwnPropertyDescriptors)
|
|
13696
|
-
|
|
13697
|
-
} else {
|
|
13477
|
+
if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
13478
|
+
else {
|
|
13698
13479
|
ownKeys(Object(source)).forEach(function(key) {
|
|
13699
13480
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
13700
13481
|
});
|
|
@@ -13704,14 +13485,6 @@ function _object_spread_props(target, source) {
|
|
|
13704
13485
|
function _to_consumable_array(arr) {
|
|
13705
13486
|
return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array$1(arr) || _non_iterable_spread();
|
|
13706
13487
|
}
|
|
13707
|
-
function _unsupported_iterable_to_array$1(o, minLen) {
|
|
13708
|
-
if (!o) return;
|
|
13709
|
-
if (typeof o === "string") return _array_like_to_array$1(o, minLen);
|
|
13710
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
13711
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
13712
|
-
if (n === "Map" || n === "Set") return Array.from(n);
|
|
13713
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$1(o, minLen);
|
|
13714
|
-
}
|
|
13715
13488
|
function _ts_generator$1(thisArg, body) {
|
|
13716
13489
|
var f, y, t, _ = {
|
|
13717
13490
|
label: 0,
|
|
@@ -13811,7 +13584,14 @@ function _ts_generator$1(thisArg, body) {
|
|
|
13811
13584
|
};
|
|
13812
13585
|
}
|
|
13813
13586
|
}
|
|
13814
|
-
|
|
13587
|
+
function _unsupported_iterable_to_array$1(o, minLen) {
|
|
13588
|
+
if (!o) return;
|
|
13589
|
+
if (typeof o === "string") return _array_like_to_array$1(o, minLen);
|
|
13590
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
13591
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
13592
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
13593
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$1(o, minLen);
|
|
13594
|
+
}
|
|
13815
13595
|
/**
|
|
13816
13596
|
* Creates a {@link NestServerInstance} that manages NestJS server lifecycle within Firebase Cloud Functions.
|
|
13817
13597
|
*
|
|
@@ -13928,9 +13708,7 @@ function _array_with_holes(arr) {
|
|
|
13928
13708
|
if (Array.isArray(arr)) return arr;
|
|
13929
13709
|
}
|
|
13930
13710
|
function _assert_this_initialized(self) {
|
|
13931
|
-
if (self === void 0)
|
|
13932
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
13933
|
-
}
|
|
13711
|
+
if (self === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
13934
13712
|
return self;
|
|
13935
13713
|
}
|
|
13936
13714
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
@@ -13941,11 +13719,8 @@ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
13941
13719
|
reject(error);
|
|
13942
13720
|
return;
|
|
13943
13721
|
}
|
|
13944
|
-
if (info.done)
|
|
13945
|
-
|
|
13946
|
-
} else {
|
|
13947
|
-
Promise.resolve(value).then(_next, _throw);
|
|
13948
|
-
}
|
|
13722
|
+
if (info.done) resolve(value);
|
|
13723
|
+
else Promise.resolve(value).then(_next, _throw);
|
|
13949
13724
|
}
|
|
13950
13725
|
function _async_to_generator(fn) {
|
|
13951
13726
|
return function() {
|
|
@@ -13967,9 +13742,7 @@ function _call_super(_this, derived, args) {
|
|
|
13967
13742
|
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
13968
13743
|
}
|
|
13969
13744
|
function _class_call_check$1(instance, Constructor) {
|
|
13970
|
-
if (!(instance instanceof Constructor))
|
|
13971
|
-
throw new TypeError("Cannot call a class as a function");
|
|
13972
|
-
}
|
|
13745
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
13973
13746
|
}
|
|
13974
13747
|
function _defineProperties$1(target, props) {
|
|
13975
13748
|
for(var i = 0; i < props.length; i++){
|
|
@@ -13992,9 +13765,7 @@ function _define_property$1(obj, key, value) {
|
|
|
13992
13765
|
configurable: true,
|
|
13993
13766
|
writable: true
|
|
13994
13767
|
});
|
|
13995
|
-
} else
|
|
13996
|
-
obj[key] = value;
|
|
13997
|
-
}
|
|
13768
|
+
} else obj[key] = value;
|
|
13998
13769
|
return obj;
|
|
13999
13770
|
}
|
|
14000
13771
|
function _get_prototype_of(o) {
|
|
@@ -14016,6 +13787,14 @@ function _inherits(subClass, superClass) {
|
|
|
14016
13787
|
});
|
|
14017
13788
|
if (superClass) _set_prototype_of(subClass, superClass);
|
|
14018
13789
|
}
|
|
13790
|
+
function _is_native_reflect_construct() {
|
|
13791
|
+
try {
|
|
13792
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
13793
|
+
} catch (_) {}
|
|
13794
|
+
return (_is_native_reflect_construct = function() {
|
|
13795
|
+
return !!result;
|
|
13796
|
+
})();
|
|
13797
|
+
}
|
|
14019
13798
|
function _iterable_to_array_limit(arr, i) {
|
|
14020
13799
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
14021
13800
|
if (_i == null) return;
|
|
@@ -14041,12 +13820,10 @@ function _iterable_to_array_limit(arr, i) {
|
|
|
14041
13820
|
return _arr;
|
|
14042
13821
|
}
|
|
14043
13822
|
function _non_iterable_rest() {
|
|
14044
|
-
throw new TypeError("Invalid attempt to destructure non-iterable instance
|
|
13823
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
14045
13824
|
}
|
|
14046
13825
|
function _possible_constructor_return(self, call) {
|
|
14047
|
-
if (call && (_type_of(call) === "object" || typeof call === "function"))
|
|
14048
|
-
return call;
|
|
14049
|
-
}
|
|
13826
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) return call;
|
|
14050
13827
|
return _assert_this_initialized(self);
|
|
14051
13828
|
}
|
|
14052
13829
|
function _set_prototype_of(o, p) {
|
|
@@ -14059,26 +13836,6 @@ function _set_prototype_of(o, p) {
|
|
|
14059
13836
|
function _sliced_to_array(arr, i) {
|
|
14060
13837
|
return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
|
|
14061
13838
|
}
|
|
14062
|
-
function _type_of(obj) {
|
|
14063
|
-
"@swc/helpers - typeof";
|
|
14064
|
-
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
14065
|
-
}
|
|
14066
|
-
function _unsupported_iterable_to_array(o, minLen) {
|
|
14067
|
-
if (!o) return;
|
|
14068
|
-
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
14069
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
14070
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
14071
|
-
if (n === "Map" || n === "Set") return Array.from(n);
|
|
14072
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
14073
|
-
}
|
|
14074
|
-
function _is_native_reflect_construct() {
|
|
14075
|
-
try {
|
|
14076
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
14077
|
-
} catch (_) {}
|
|
14078
|
-
return (_is_native_reflect_construct = function() {
|
|
14079
|
-
return !!result;
|
|
14080
|
-
})();
|
|
14081
|
-
}
|
|
14082
13839
|
function _ts_generator(thisArg, body) {
|
|
14083
13840
|
var f, y, t, _ = {
|
|
14084
13841
|
label: 0,
|
|
@@ -14178,6 +13935,18 @@ function _ts_generator(thisArg, body) {
|
|
|
14178
13935
|
};
|
|
14179
13936
|
}
|
|
14180
13937
|
}
|
|
13938
|
+
function _type_of(obj) {
|
|
13939
|
+
"@swc/helpers - typeof";
|
|
13940
|
+
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
13941
|
+
}
|
|
13942
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
13943
|
+
if (!o) return;
|
|
13944
|
+
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
13945
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
13946
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
13947
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
13948
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
13949
|
+
}
|
|
14181
13950
|
/**
|
|
14182
13951
|
* Abstract class that wraps an INestApplicationContext value.
|
|
14183
13952
|
*/ var AbstractNestContext = /*#__PURE__*/ function() {
|
|
@@ -14187,18 +13956,6 @@ function _ts_generator(thisArg, body) {
|
|
|
14187
13956
|
this._nestApplication = nestApplication;
|
|
14188
13957
|
}
|
|
14189
13958
|
_create_class$1(AbstractNestContext, [
|
|
14190
|
-
{
|
|
14191
|
-
key: "nest",
|
|
14192
|
-
get: /**
|
|
14193
|
-
* Returns the NestJS application context.
|
|
14194
|
-
*
|
|
14195
|
-
* @returns The NestJS application context.
|
|
14196
|
-
*
|
|
14197
|
-
* @deprecated use nestApplication instead.
|
|
14198
|
-
*/ function get() {
|
|
14199
|
-
return this._nestApplication;
|
|
14200
|
-
}
|
|
14201
|
-
},
|
|
14202
13959
|
{
|
|
14203
13960
|
key: "nestApplication",
|
|
14204
13961
|
get: /**
|
|
@@ -14412,9 +14169,7 @@ function _ts_generator(thisArg, body) {
|
|
|
14412
14169
|
(AbstractNestContext);
|
|
14413
14170
|
|
|
14414
14171
|
function _class_call_check(instance, Constructor) {
|
|
14415
|
-
if (!(instance instanceof Constructor))
|
|
14416
|
-
throw new TypeError("Cannot call a class as a function");
|
|
14417
|
-
}
|
|
14172
|
+
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
14418
14173
|
}
|
|
14419
14174
|
function _defineProperties(target, props) {
|
|
14420
14175
|
for(var i = 0; i < props.length; i++){
|
|
@@ -14437,9 +14192,7 @@ function _define_property(obj, key, value) {
|
|
|
14437
14192
|
configurable: true,
|
|
14438
14193
|
writable: true
|
|
14439
14194
|
});
|
|
14440
|
-
} else
|
|
14441
|
-
obj[key] = value;
|
|
14442
|
-
}
|
|
14195
|
+
} else obj[key] = value;
|
|
14443
14196
|
return obj;
|
|
14444
14197
|
}
|
|
14445
14198
|
/**
|
|
@@ -14470,4 +14223,4 @@ function _define_property(obj, key, value) {
|
|
|
14470
14223
|
}
|
|
14471
14224
|
();
|
|
14472
14225
|
|
|
14473
|
-
export { AbstractFirebaseNestContext, AbstractFirebaseServerActionsContext, AbstractFirebaseServerAuthContext, AbstractFirebaseServerAuthService, AbstractFirebaseServerAuthUserContext, AbstractFirebaseServerNewUserService, AbstractFirebaseServerUserPasswordResetService, AbstractNestContext, AbstractServerFirebaseNestContext, ConfigureFirebaseAppCheckMiddlewareModule, ConfigureFirebaseWebhookMiddlewareModule, DEFAULT_FIREBASE_PASSWORD_NUMBER_GENERATOR, DEFAULT_FIRESTORE_SESSION_APP_CHECK_TTL_MILLIS, DEFAULT_FIRESTORE_SESSION_REQUIRED_OIDC_SCOPE, DEFAULT_RESET_CODE_EXPIRES_IN, DEFAULT_RESET_COM_THROTTLE_TIME, DEFAULT_SERVER_ASSETS_BASE_PATH, DEFAULT_SETUP_COM_THROTTLE_TIME, DefaultFirebaseServerEnvService, FIREBASE_APP_TOKEN, FIREBASE_AUTH_TOKEN, FIREBASE_CUSTOM_TOKEN_EXCHANGE_WINDOW_MILLIS, FIREBASE_FIRESTORE_CONTEXT_TOKEN, FIREBASE_FIRESTORE_TOKEN, FIREBASE_SERVER_ENV_TOKEN, FIREBASE_SERVER_SESSION_API_PROTECTED_PATH, FIREBASE_SERVER_VALIDATION_ERROR_CODE, FIREBASE_STORAGE_CONTEXT_FACTORY_CONFIG_TOKEN, FIREBASE_STORAGE_CONTEXT_TOKEN, FIREBASE_STORAGE_TOKEN, FIRESTORE_CLIENT_QUERY_CONSTRAINT_HANDLER_MAPPING, FIRESTORE_SESSION_ADMIN_PREDICATE, FIRESTORE_SESSION_API_PATH, FIRESTORE_SESSION_FORBIDDEN_ERROR_CODE, FirebaseAppCheckMiddleware, FirebaseAppCheckMiddlewareConfig, FirebaseNestServerRootModule, FirebaseRawBodyMiddleware, FirebaseServerAnalyticsSegmentListenerService, FirebaseServerAnalyticsSegmentModule, FirebaseServerAnalyticsService, FirebaseServerAnalyticsServiceListener, FirebaseServerAuthModule, FirebaseServerAuthNewUserSendSetupDetailsNoSetupConfigError, FirebaseServerAuthNewUserSendSetupDetailsSendOnceError, FirebaseServerAuthNewUserSendSetupDetailsThrottleError, FirebaseServerAuthPasswordResetInvalidCodeError, FirebaseServerAuthPasswordResetNoResetConfigError, FirebaseServerAuthPasswordResetSendOnceError, FirebaseServerAuthPasswordResetThrottleError, FirebaseServerAuthService, FirebaseServerAuthUserBadInputError, FirebaseServerAuthUserExistsError, FirebaseServerEnvService, FirebaseServerFirestoreContextModule, FirebaseServerFirestoreModule, FirebaseServerStorageContextModule, FirebaseServerStorageModule, FirebaseServerStorageService, FirestoreSessionApiService, GlobalRoutePrefixConfig, MAX_FIRESTORE_SESSION_APP_CHECK_TTL_MILLIS, MAX_MODEL_ACCESS_MULTI_READ_KEYS, MIN_FIRESTORE_SESSION_APP_CHECK_TTL_MILLIS, MISSING_ENDPOINT_OIDC_SCOPE_ERROR_CODE, MODEL_API_NEST_APPLICATION_CONTEXT, MODEL_IS_SERVER_ONLY_ERROR_CODE, ModelApiCallModelDispatchService, ModelApiController, ModelApiDispatchConfig, ModelApiGetService, NO_RUN_NAME_SPECIFIED_FOR_SCHEDULED_FUNCTION_DEVELOPMENT_FUNCTION_CODE, NoContentFirebaseServerUserPasswordResetService, NoSetupContentFirebaseServerNewUserService,
|
|
14226
|
+
export { AbstractFirebaseNestContext, AbstractFirebaseServerActionsContext, AbstractFirebaseServerAuthContext, AbstractFirebaseServerAuthService, AbstractFirebaseServerAuthUserContext, AbstractFirebaseServerNewUserService, AbstractFirebaseServerUserPasswordResetService, AbstractNestContext, AbstractServerFirebaseNestContext, ConfigureFirebaseAppCheckMiddlewareModule, ConfigureFirebaseWebhookMiddlewareModule, DEFAULT_FIREBASE_PASSWORD_NUMBER_GENERATOR, DEFAULT_FIRESTORE_SESSION_APP_CHECK_TTL_MILLIS, DEFAULT_FIRESTORE_SESSION_REQUIRED_OIDC_SCOPE, DEFAULT_RESET_CODE_EXPIRES_IN, DEFAULT_RESET_COM_THROTTLE_TIME, DEFAULT_SERVER_ASSETS_BASE_PATH, DEFAULT_SETUP_COM_THROTTLE_TIME, DefaultFirebaseServerEnvService, FIREBASE_APP_TOKEN, FIREBASE_AUTH_TOKEN, FIREBASE_CUSTOM_TOKEN_EXCHANGE_WINDOW_MILLIS, FIREBASE_FIRESTORE_CONTEXT_TOKEN, FIREBASE_FIRESTORE_TOKEN, FIREBASE_SERVER_ENV_TOKEN, FIREBASE_SERVER_SESSION_API_PROTECTED_PATH, FIREBASE_SERVER_VALIDATION_ERROR_CODE, FIREBASE_STORAGE_CONTEXT_FACTORY_CONFIG_TOKEN, FIREBASE_STORAGE_CONTEXT_TOKEN, FIREBASE_STORAGE_TOKEN, FIRESTORE_CLIENT_QUERY_CONSTRAINT_HANDLER_MAPPING, FIRESTORE_SESSION_ADMIN_PREDICATE, FIRESTORE_SESSION_API_PATH, FIRESTORE_SESSION_FORBIDDEN_ERROR_CODE, FirebaseAppCheckMiddleware, FirebaseAppCheckMiddlewareConfig, FirebaseNestServerRootModule, FirebaseRawBodyMiddleware, FirebaseServerAnalyticsSegmentListenerService, FirebaseServerAnalyticsSegmentModule, FirebaseServerAnalyticsService, FirebaseServerAnalyticsServiceListener, FirebaseServerAuthModule, FirebaseServerAuthNewUserSendSetupDetailsNoSetupConfigError, FirebaseServerAuthNewUserSendSetupDetailsSendOnceError, FirebaseServerAuthNewUserSendSetupDetailsThrottleError, FirebaseServerAuthPasswordResetInvalidCodeError, FirebaseServerAuthPasswordResetNoResetConfigError, FirebaseServerAuthPasswordResetSendOnceError, FirebaseServerAuthPasswordResetThrottleError, FirebaseServerAuthService, FirebaseServerAuthUserBadInputError, FirebaseServerAuthUserExistsError, FirebaseServerEnvService, FirebaseServerFirestoreContextModule, FirebaseServerFirestoreModule, FirebaseServerStorageContextModule, FirebaseServerStorageModule, FirebaseServerStorageService, FirestoreSessionApiService, GlobalRoutePrefixConfig, MAX_FIRESTORE_SESSION_APP_CHECK_TTL_MILLIS, MAX_MODEL_ACCESS_MULTI_READ_KEYS, MIN_FIRESTORE_SESSION_APP_CHECK_TTL_MILLIS, MISSING_ENDPOINT_OIDC_SCOPE_ERROR_CODE, MODEL_API_NEST_APPLICATION_CONTEXT, MODEL_IS_SERVER_ONLY_ERROR_CODE, ModelApiCallModelDispatchService, ModelApiController, ModelApiDispatchConfig, ModelApiGetService, NO_RUN_NAME_SPECIFIED_FOR_SCHEDULED_FUNCTION_DEVELOPMENT_FUNCTION_CODE, NoContentFirebaseServerUserPasswordResetService, NoSetupContentFirebaseServerNewUserService, ON_CALL_MODEL_ANALYTICS_SERVICE, OnCallModelAnalyticsService, PHONE_NUMBER_ALREADY_EXISTS_ERROR_CODE, SESSION_API_ROUTE_PREFIX, SessionApiController, SessionApiModuleConfig, SkipAppCheck, UNKNOWN_SCHEDULED_FUNCTION_DEVELOPMENT_FUNCTION_NAME_CODE, UNKNOWN_SCHEDULED_FUNCTION_DEVELOPMENT_FUNCTION_TYPE_CODE, _onCallWithCallTypeFunction, aggregateCrudModelApiDetails, aggregateModelApiDetails, aggregateSpecifierApiDetails, alreadyExistsError, appAnalyticsModuleMetadata, appFirestoreModuleMetadata, assertContextHasAuth, assertDocumentExists, assertEndpointOidcScope, assertHasRolesInRequest, assertHasSignedTosInRequest, assertIsAdminInRequest, assertIsAdminOrTargetUserInRequestData, assertIsContextWithAuthData, assertModelApiOidcScope, assertRequestRequiresAuthForFunction, assertSnapshotData, assertSnapshotDataWithKey, authServicePasswordResetInvalidCodeError, authServicePasswordResetNoConfigError, authServicePasswordResetSendOnceError, authServicePasswordResetThrottleError, badRequestError, blockingFunctionHandlerWithNestContextFactory, buildNestServerRootModule, callWithAnalytics, catchAndThrowPasswordResetServerErrors, cloudEventHandlerWithNestContextFactory, collectionRefForPath, createModelUnknownModelTypeError, decodeFirebaseServerUserPasswordResetOobCode, defaultFirebaseServerActionsTransformFactoryLogErrorFunction, defaultProvideFirebaseServerStorageServiceSimple, deleteModelUnknownModelTypeError, developmentUnknownSpecifierError, docRefForPath, documentModelNotAvailableError, encodeFirebaseServerUserPasswordResetOobCode, executeOnCallQuery, firebaseAuthTokenFromDecodedIdToken, firebaseServerActionsContext, firebaseServerActionsTransformContext, firebaseServerActionsTransformFactory, firebaseServerAppTokenProvider, firebaseServerAuthModuleMetadata, firebaseServerDevFunctions, firebaseServerEnvTokenProvider, firebaseServerEnvTokenProviders, firebaseServerErrorInfo, firebaseServerErrorInfoCodePair, firebaseServerErrorInfoServerErrorCodePair, firebaseServerErrorInfoServerErrorPair, firebaseServerFirestoreContextModuleMetadata, firebaseServerStorageDefaultBucketIdTokenProvider, firebaseServerStorageModuleMetadata, firebaseServerValidationError, firebaseServerValidationServerError, firestoreClientQueryConstraintFunctionsDriver, firestoreEncryptedField, firestoreServerIncrementUpdateToUpdateData, firestoreSessionAppCheckTtlMillis, forbiddenError, getAuthUserOrUndefined, getModelApiDetails, googleCloudFileMetadataToStorageMetadata, googleCloudFirebaseStorageContextFactory, googleCloudFirebaseStorageDrivers, googleCloudFirestoreAccessorDriver, googleCloudFirestoreContextFactory, googleCloudFirestoreDrivers, googleCloudFirestoreQueryDriver, googleCloudStorageAccessorFile, googleCloudStorageAccessorFolder, googleCloudStorageBucketForStorageFilePath, googleCloudStorageFileForStorageFilePath, googleCloudStorageFirebaseStorageAccessorDriver, googleCloudStorageFromFirebaseAdminStorage, googleCloudStorageListFilesResultFactory, handleFirebaseAuthError, handleFirebaseError, hasAuthRolesInRequest, hasNewUserSetupPasswordInRequest, hasSignedTosInRequest, inAuthContext, injectNestApplicationContextIntoRequest, injectNestIntoRequest, internalServerError, invokeModelUnknownModelTypeError, isActualSpecifier, isAdminInRequest, isAdminOrTargetUserInRequestData, isContextWithAuthData, isFirebaseError, isFirebaseHttpsError, isOnCallCrudModelApiDetails, isOnCallHandlerApiDetails, isOnCallModelTypeApiDetails, makeBlockingFunctionWithHandler, makeOnScheduleHandlerWithNestApplicationRequest, makeScheduledFunctionDevelopmentFunction, modelAccessReadErrorFromUseMultipleModelsFailure, modelAccessRoleMapResultFromGrantedRoles, modelApiModuleMetadata, modelNotAvailableError, nestAppHasDevelopmentSchedulerEnabled, nestAppIsProductionEnvironment, nestFirebaseDoesNotExistError, nestFirebaseForbiddenPermissionError, nestServerInstance, noRunNameSpecifiedForScheduledFunctionDevelopmentFunction, noopFirebaseServerAnalyticsServiceListener, noopOnCallModelAnalyticsService, notFoundError, oidcScopesFromModelApiAuth, oidcScopesFromRequestAuth, onCallAnalyticsEmitterInstance, onCallCreateModel, onCallDeleteModel, onCallDevelopmentFunction, onCallHandlerWithNestApplicationFactory, onCallHandlerWithNestContextFactory, onCallInvokeModel, onCallModel, onCallModelMissingCallTypeError, onCallModelUnknownCallTypeError, onCallQueryModel, onCallReadModel, onCallSpecifierHandler, onCallUpdateModel, onScheduleHandlerWithNestApplicationFactory, onScheduleHandlerWithNestContextFactory, optionalAuthContext, optionalFirestoreEncryptedField, permissionDeniedError, phoneNumberAlreadyExistsError, preconditionConflictError, provideAppFirestoreCollections, provideFirebaseServerAuthService, provideFirebaseServerStorageService, queryModelBadCursorError, queryModelUnknownModelTypeError, readApiDetails, readModelUnknownModelTypeError, resolveAdminOnlyValue, resolveAnalyticsFromApiDetails, resolveRequiredScopeFromApiDetails, sessionApiModuleMetadata, setNestContextOnRequest, setNestContextOnScheduleRequest, taskQueueFunctionHandlerWithNestContextFactory, unauthenticatedContextHasNoAuthData, unauthenticatedContextHasNoUidError, unauthenticatedError, unavailableError, unavailableOrDeactivatedFunctionError, unknownModelCrudFunctionSpecifierError, unknownScheduledFunctionDevelopmentFunctionName, unknownScheduledFunctionDevelopmentFunctionType, updateModelUnknownModelTypeError, userContextFromUid, verifyAppCheckInRequest, withApiDetails };
|