@dereekb/firebase 12.3.11 → 12.3.13

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/index.esm.js CHANGED
@@ -937,19 +937,19 @@ var tryToString$2 = tryToString$3;
937
937
  var $TypeError$b = TypeError;
938
938
 
939
939
  // `Assert: IsCallable(argument) is true`
940
- var aCallable$8 = function (argument) {
940
+ var aCallable$9 = function (argument) {
941
941
  if (isCallable$a(argument)) return argument;
942
942
  throw new $TypeError$b(tryToString$2(argument) + ' is not a function');
943
943
  };
944
944
 
945
- var aCallable$7 = aCallable$8;
945
+ var aCallable$8 = aCallable$9;
946
946
  var isNullOrUndefined$1 = isNullOrUndefined$3;
947
947
 
948
948
  // `GetMethod` abstract operation
949
949
  // https://tc39.es/ecma262/#sec-getmethod
950
950
  var getMethod$4 = function (V, P) {
951
951
  var func = V[P];
952
- return isNullOrUndefined$1(func) ? undefined : aCallable$7(func);
952
+ return isNullOrUndefined$1(func) ? undefined : aCallable$8(func);
953
953
  };
954
954
 
955
955
  var call$a = functionCall;
@@ -1161,7 +1161,7 @@ var $String$1 = String;
1161
1161
  var $TypeError$8 = TypeError;
1162
1162
 
1163
1163
  // `Assert: Type(argument) is Object`
1164
- var anObject$d = function (argument) {
1164
+ var anObject$e = function (argument) {
1165
1165
  if (isObject$2(argument)) return argument;
1166
1166
  throw new $TypeError$8($String$1(argument) + ' is not an object');
1167
1167
  };
@@ -1169,7 +1169,7 @@ var anObject$d = function (argument) {
1169
1169
  var DESCRIPTORS$7 = descriptors;
1170
1170
  var IE8_DOM_DEFINE = ie8DomDefine;
1171
1171
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
1172
- var anObject$c = anObject$d;
1172
+ var anObject$d = anObject$e;
1173
1173
  var toPropertyKey = toPropertyKey$2;
1174
1174
 
1175
1175
  var $TypeError$7 = TypeError;
@@ -1184,9 +1184,9 @@ var WRITABLE = 'writable';
1184
1184
  // `Object.defineProperty` method
1185
1185
  // https://tc39.es/ecma262/#sec-object.defineproperty
1186
1186
  objectDefineProperty.f = DESCRIPTORS$7 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
1187
- anObject$c(O);
1187
+ anObject$d(O);
1188
1188
  P = toPropertyKey(P);
1189
- anObject$c(Attributes);
1189
+ anObject$d(Attributes);
1190
1190
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
1191
1191
  var current = $getOwnPropertyDescriptor(O, P);
1192
1192
  if (current && current[WRITABLE]) {
@@ -1199,9 +1199,9 @@ objectDefineProperty.f = DESCRIPTORS$7 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
1199
1199
  }
1200
1200
  } return $defineProperty(O, P, Attributes);
1201
1201
  } : $defineProperty : function defineProperty(O, P, Attributes) {
1202
- anObject$c(O);
1202
+ anObject$d(O);
1203
1203
  P = toPropertyKey(P);
1204
- anObject$c(Attributes);
1204
+ anObject$d(Attributes);
1205
1205
  if (IE8_DOM_DEFINE) try {
1206
1206
  return $defineProperty(O, P, Attributes);
1207
1207
  } catch (error) { /* empty */ }
@@ -1572,13 +1572,13 @@ var getBuiltIn$2 = getBuiltIn$4;
1572
1572
  var uncurryThis$5 = functionUncurryThis;
1573
1573
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1574
1574
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
1575
- var anObject$b = anObject$d;
1575
+ var anObject$c = anObject$e;
1576
1576
 
1577
1577
  var concat = uncurryThis$5([].concat);
1578
1578
 
1579
1579
  // all object keys, includes non-enumerable and symbols
1580
1580
  var ownKeys$1 = getBuiltIn$2('Reflect', 'ownKeys') || function ownKeys(it) {
1581
- var keys = getOwnPropertyNamesModule.f(anObject$b(it));
1581
+ var keys = getOwnPropertyNamesModule.f(anObject$c(it));
1582
1582
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1583
1583
  return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
1584
1584
  };
@@ -1751,7 +1751,7 @@ var objectKeys$1 = Object.keys || function keys(O) {
1751
1751
  var DESCRIPTORS$2 = descriptors;
1752
1752
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
1753
1753
  var definePropertyModule = objectDefineProperty;
1754
- var anObject$a = anObject$d;
1754
+ var anObject$b = anObject$e;
1755
1755
  var toIndexedObject = toIndexedObject$4;
1756
1756
  var objectKeys = objectKeys$1;
1757
1757
 
@@ -1759,7 +1759,7 @@ var objectKeys = objectKeys$1;
1759
1759
  // https://tc39.es/ecma262/#sec-object.defineproperties
1760
1760
  // eslint-disable-next-line es/no-object-defineproperties -- safe
1761
1761
  objectDefineProperties.f = DESCRIPTORS$2 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1762
- anObject$a(O);
1762
+ anObject$b(O);
1763
1763
  var props = toIndexedObject(Properties);
1764
1764
  var keys = objectKeys(Properties);
1765
1765
  var length = keys.length;
@@ -1774,7 +1774,7 @@ var getBuiltIn$1 = getBuiltIn$4;
1774
1774
  var html$1 = getBuiltIn$1('document', 'documentElement');
1775
1775
 
1776
1776
  /* global ActiveXObject -- old IE, WSH */
1777
- var anObject$9 = anObject$d;
1777
+ var anObject$a = anObject$e;
1778
1778
  var definePropertiesModule = objectDefineProperties;
1779
1779
  var enumBugKeys = enumBugKeys$3;
1780
1780
  var hiddenKeys = hiddenKeys$4;
@@ -1848,7 +1848,7 @@ hiddenKeys[IE_PROTO] = true;
1848
1848
  var objectCreate = Object.create || function create(O, Properties) {
1849
1849
  var result;
1850
1850
  if (O !== null) {
1851
- EmptyConstructor[PROTOTYPE] = anObject$9(O);
1851
+ EmptyConstructor[PROTOTYPE] = anObject$a(O);
1852
1852
  result = new EmptyConstructor();
1853
1853
  EmptyConstructor[PROTOTYPE] = null;
1854
1854
  // add "__proto__" for Object.getPrototypeOf polyfill
@@ -1903,10 +1903,10 @@ var iteratorsCore = {
1903
1903
  BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
1904
1904
  };
1905
1905
 
1906
- var $$b = _export;
1906
+ var $$c = _export;
1907
1907
  var global$1 = global$b;
1908
1908
  var anInstance = anInstance$1;
1909
- var anObject$8 = anObject$d;
1909
+ var anObject$9 = anObject$e;
1910
1910
  var isCallable$1 = isCallable$e;
1911
1911
  var getPrototypeOf = objectGetPrototypeOf;
1912
1912
  var defineBuiltInAccessor = defineBuiltInAccessor$1;
@@ -1943,7 +1943,7 @@ var defineIteratorPrototypeAccessor = function (key, value) {
1943
1943
  return value;
1944
1944
  },
1945
1945
  set: function (replacement) {
1946
- anObject$8(this);
1946
+ anObject$9(this);
1947
1947
  if (this === IteratorPrototype$1) throw new $TypeError$5("You can't redefine this property");
1948
1948
  if (hasOwn(this, key)) this[key] = replacement;
1949
1949
  else createProperty(this, key, replacement);
@@ -1962,13 +1962,13 @@ IteratorConstructor.prototype = IteratorPrototype$1;
1962
1962
 
1963
1963
  // `Iterator` constructor
1964
1964
  // https://github.com/tc39/proposal-iterator-helpers
1965
- $$b({ global: true, constructor: true, forced: FORCED$1 }, {
1965
+ $$c({ global: true, constructor: true, forced: FORCED$1 }, {
1966
1966
  Iterator: IteratorConstructor
1967
1967
  });
1968
1968
 
1969
1969
  // `GetIteratorDirect(obj)` abstract operation
1970
1970
  // https://tc39.es/proposal-iterator-helpers/#sec-getiteratordirect
1971
- var getIteratorDirect$4 = function (obj) {
1971
+ var getIteratorDirect$5 = function (obj) {
1972
1972
  return {
1973
1973
  iterator: obj,
1974
1974
  next: obj.next,
@@ -1990,12 +1990,12 @@ var createIterResultObject$1 = function (value, done) {
1990
1990
  };
1991
1991
 
1992
1992
  var call$7 = functionCall;
1993
- var anObject$7 = anObject$d;
1993
+ var anObject$8 = anObject$e;
1994
1994
  var getMethod$2 = getMethod$4;
1995
1995
 
1996
1996
  var iteratorClose$5 = function (iterator, kind, value) {
1997
1997
  var innerResult, innerError;
1998
- anObject$7(iterator);
1998
+ anObject$8(iterator);
1999
1999
  try {
2000
2000
  innerResult = getMethod$2(iterator, 'return');
2001
2001
  if (!innerResult) {
@@ -2009,7 +2009,7 @@ var iteratorClose$5 = function (iterator, kind, value) {
2009
2009
  }
2010
2010
  if (kind === 'throw') throw value;
2011
2011
  if (innerError) throw innerResult;
2012
- anObject$7(innerResult);
2012
+ anObject$8(innerResult);
2013
2013
  return value;
2014
2014
  };
2015
2015
 
@@ -2089,23 +2089,23 @@ var iteratorCreateProxy = function (nextHandler, IS_ITERATOR) {
2089
2089
  return IteratorProxy;
2090
2090
  };
2091
2091
 
2092
- var anObject$6 = anObject$d;
2092
+ var anObject$7 = anObject$e;
2093
2093
  var iteratorClose$3 = iteratorClose$5;
2094
2094
 
2095
2095
  // call something on iterator step with safe closing on error
2096
2096
  var callWithSafeIterationClosing$2 = function (iterator, fn, value, ENTRIES) {
2097
2097
  try {
2098
- return ENTRIES ? fn(anObject$6(value)[0], value[1]) : fn(value);
2098
+ return ENTRIES ? fn(anObject$7(value)[0], value[1]) : fn(value);
2099
2099
  } catch (error) {
2100
2100
  iteratorClose$3(iterator, 'throw', error);
2101
2101
  }
2102
2102
  };
2103
2103
 
2104
- var $$a = _export;
2104
+ var $$b = _export;
2105
2105
  var call$5 = functionCall;
2106
- var aCallable$6 = aCallable$8;
2107
- var anObject$5 = anObject$d;
2108
- var getIteratorDirect$3 = getIteratorDirect$4;
2106
+ var aCallable$7 = aCallable$9;
2107
+ var anObject$6 = anObject$e;
2108
+ var getIteratorDirect$4 = getIteratorDirect$5;
2109
2109
  var createIteratorProxy$1 = iteratorCreateProxy;
2110
2110
  var callWithSafeIterationClosing$1 = callWithSafeIterationClosing$2;
2111
2111
  var IS_PURE$1 = isPure;
@@ -2116,7 +2116,7 @@ var IteratorProxy$1 = createIteratorProxy$1(function () {
2116
2116
  var next = this.next;
2117
2117
  var result, done, value;
2118
2118
  while (true) {
2119
- result = anObject$5(call$5(next, iterator));
2119
+ result = anObject$6(call$5(next, iterator));
2120
2120
  done = this.done = !!result.done;
2121
2121
  if (done) return;
2122
2122
  value = result.value;
@@ -2126,26 +2126,26 @@ var IteratorProxy$1 = createIteratorProxy$1(function () {
2126
2126
 
2127
2127
  // `Iterator.prototype.filter` method
2128
2128
  // https://github.com/tc39/proposal-iterator-helpers
2129
- $$a({ target: 'Iterator', proto: true, real: true, forced: IS_PURE$1 }, {
2129
+ $$b({ target: 'Iterator', proto: true, real: true, forced: IS_PURE$1 }, {
2130
2130
  filter: function filter(predicate) {
2131
- anObject$5(this);
2132
- aCallable$6(predicate);
2133
- return new IteratorProxy$1(getIteratorDirect$3(this), {
2131
+ anObject$6(this);
2132
+ aCallable$7(predicate);
2133
+ return new IteratorProxy$1(getIteratorDirect$4(this), {
2134
2134
  predicate: predicate
2135
2135
  });
2136
2136
  }
2137
2137
  });
2138
2138
 
2139
2139
  var call$4 = functionCall;
2140
- var aCallable$5 = aCallable$8;
2141
- var anObject$4 = anObject$d;
2142
- var getIteratorDirect$2 = getIteratorDirect$4;
2140
+ var aCallable$6 = aCallable$9;
2141
+ var anObject$5 = anObject$e;
2142
+ var getIteratorDirect$3 = getIteratorDirect$5;
2143
2143
  var createIteratorProxy = iteratorCreateProxy;
2144
2144
  var callWithSafeIterationClosing = callWithSafeIterationClosing$2;
2145
2145
 
2146
2146
  var IteratorProxy = createIteratorProxy(function () {
2147
2147
  var iterator = this.iterator;
2148
- var result = anObject$4(call$4(this.next, iterator));
2148
+ var result = anObject$5(call$4(this.next, iterator));
2149
2149
  var done = this.done = !!result.done;
2150
2150
  if (!done) return callWithSafeIterationClosing(iterator, this.mapper, [result.value, this.counter++], true);
2151
2151
  });
@@ -2153,20 +2153,20 @@ var IteratorProxy = createIteratorProxy(function () {
2153
2153
  // `Iterator.prototype.map` method
2154
2154
  // https://github.com/tc39/proposal-iterator-helpers
2155
2155
  var iteratorMap = function map(mapper) {
2156
- anObject$4(this);
2157
- aCallable$5(mapper);
2158
- return new IteratorProxy(getIteratorDirect$2(this), {
2156
+ anObject$5(this);
2157
+ aCallable$6(mapper);
2158
+ return new IteratorProxy(getIteratorDirect$3(this), {
2159
2159
  mapper: mapper
2160
2160
  });
2161
2161
  };
2162
2162
 
2163
- var $$9 = _export;
2163
+ var $$a = _export;
2164
2164
  var map = iteratorMap;
2165
2165
  var IS_PURE = isPure;
2166
2166
 
2167
2167
  // `Iterator.prototype.map` method
2168
2168
  // https://github.com/tc39/proposal-iterator-helpers
2169
- $$9({ target: 'Iterator', proto: true, real: true, forced: IS_PURE }, {
2169
+ $$a({ target: 'Iterator', proto: true, real: true, forced: IS_PURE }, {
2170
2170
  map: map
2171
2171
  });
2172
2172
 
@@ -2683,26 +2683,26 @@ var setIterate = function (set, fn, interruptible) {
2683
2683
  };
2684
2684
 
2685
2685
  var SetHelpers$4 = setHelpers;
2686
- var iterate$3 = setIterate;
2686
+ var iterate$4 = setIterate;
2687
2687
 
2688
2688
  var Set$2 = SetHelpers$4.Set;
2689
2689
  var add$3 = SetHelpers$4.add;
2690
2690
 
2691
2691
  var setClone = function (set) {
2692
2692
  var result = new Set$2();
2693
- iterate$3(set, function (it) {
2693
+ iterate$4(set, function (it) {
2694
2694
  add$3(result, it);
2695
2695
  });
2696
2696
  return result;
2697
2697
  };
2698
2698
 
2699
2699
  var uncurryThis$2 = functionUncurryThis;
2700
- var aCallable$4 = aCallable$8;
2700
+ var aCallable$5 = aCallable$9;
2701
2701
 
2702
2702
  var functionUncurryThisAccessor = function (object, key, method) {
2703
2703
  try {
2704
2704
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2705
- return uncurryThis$2(aCallable$4(Object.getOwnPropertyDescriptor(object, key)[method]));
2705
+ return uncurryThis$2(aCallable$5(Object.getOwnPropertyDescriptor(object, key)[method]));
2706
2706
  } catch (error) { /* empty */ }
2707
2707
  };
2708
2708
 
@@ -2713,11 +2713,11 @@ var setSize = uncurryThisAccessor(SetHelpers$3.proto, 'size', 'get') || function
2713
2713
  return set.size;
2714
2714
  };
2715
2715
 
2716
- var aCallable$3 = aCallable$8;
2717
- var anObject$3 = anObject$d;
2716
+ var aCallable$4 = aCallable$9;
2717
+ var anObject$4 = anObject$e;
2718
2718
  var call$2 = functionCall;
2719
2719
  var toIntegerOrInfinity = toIntegerOrInfinity$3;
2720
- var getIteratorDirect$1 = getIteratorDirect$4;
2720
+ var getIteratorDirect$2 = getIteratorDirect$5;
2721
2721
 
2722
2722
  var INVALID_SIZE = 'Invalid size';
2723
2723
  var $RangeError = RangeError;
@@ -2727,13 +2727,13 @@ var max = Math.max;
2727
2727
  var SetRecord = function (set, intSize) {
2728
2728
  this.set = set;
2729
2729
  this.size = max(intSize, 0);
2730
- this.has = aCallable$3(set.has);
2731
- this.keys = aCallable$3(set.keys);
2730
+ this.has = aCallable$4(set.has);
2731
+ this.keys = aCallable$4(set.keys);
2732
2732
  };
2733
2733
 
2734
2734
  SetRecord.prototype = {
2735
2735
  getIterator: function () {
2736
- return getIteratorDirect$1(anObject$3(call$2(this.keys, this.set)));
2736
+ return getIteratorDirect$2(anObject$4(call$2(this.keys, this.set)));
2737
2737
  },
2738
2738
  includes: function (it) {
2739
2739
  return call$2(this.has, this.set, it);
@@ -2743,7 +2743,7 @@ SetRecord.prototype = {
2743
2743
  // `GetSetRecord` abstract operation
2744
2744
  // https://tc39.es/proposal-set-methods/#sec-getsetrecord
2745
2745
  var getSetRecord$7 = function (obj) {
2746
- anObject$3(obj);
2746
+ anObject$4(obj);
2747
2747
  var numSize = +obj.size;
2748
2748
  // NOTE: If size is undefined, then numSize will be NaN
2749
2749
  // eslint-disable-next-line no-self-compare -- NaN check
@@ -2814,13 +2814,13 @@ var setMethodAcceptSetLike$7 = function (name) {
2814
2814
  }
2815
2815
  };
2816
2816
 
2817
- var $$8 = _export;
2817
+ var $$9 = _export;
2818
2818
  var difference = setDifference;
2819
2819
  var setMethodAcceptSetLike$6 = setMethodAcceptSetLike$7;
2820
2820
 
2821
2821
  // `Set.prototype.difference` method
2822
2822
  // https://github.com/tc39/proposal-set-methods
2823
- $$8({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$6('difference') }, {
2823
+ $$9({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$6('difference') }, {
2824
2824
  difference: difference
2825
2825
  });
2826
2826
 
@@ -2855,7 +2855,7 @@ var setIntersection = function intersection(other) {
2855
2855
  return result;
2856
2856
  };
2857
2857
 
2858
- var $$7 = _export;
2858
+ var $$8 = _export;
2859
2859
  var fails$1 = fails$d;
2860
2860
  var intersection = setIntersection;
2861
2861
  var setMethodAcceptSetLike$5 = setMethodAcceptSetLike$7;
@@ -2867,7 +2867,7 @@ var INCORRECT = !setMethodAcceptSetLike$5('intersection') || fails$1(function ()
2867
2867
 
2868
2868
  // `Set.prototype.intersection` method
2869
2869
  // https://github.com/tc39/proposal-set-methods
2870
- $$7({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
2870
+ $$8({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
2871
2871
  intersection: intersection
2872
2872
  });
2873
2873
 
@@ -2893,19 +2893,19 @@ var setIsDisjointFrom = function isDisjointFrom(other) {
2893
2893
  }) !== false;
2894
2894
  };
2895
2895
 
2896
- var $$6 = _export;
2896
+ var $$7 = _export;
2897
2897
  var isDisjointFrom = setIsDisjointFrom;
2898
2898
  var setMethodAcceptSetLike$4 = setMethodAcceptSetLike$7;
2899
2899
 
2900
2900
  // `Set.prototype.isDisjointFrom` method
2901
2901
  // https://github.com/tc39/proposal-set-methods
2902
- $$6({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$4('isDisjointFrom') }, {
2902
+ $$7({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$4('isDisjointFrom') }, {
2903
2903
  isDisjointFrom: isDisjointFrom
2904
2904
  });
2905
2905
 
2906
2906
  var aSet$3 = aSet$7;
2907
2907
  var size$1 = setSize;
2908
- var iterate$2 = setIterate;
2908
+ var iterate$3 = setIterate;
2909
2909
  var getSetRecord$3 = getSetRecord$7;
2910
2910
 
2911
2911
  // `Set.prototype.isSubsetOf` method
@@ -2914,18 +2914,18 @@ var setIsSubsetOf = function isSubsetOf(other) {
2914
2914
  var O = aSet$3(this);
2915
2915
  var otherRec = getSetRecord$3(other);
2916
2916
  if (size$1(O) > otherRec.size) return false;
2917
- return iterate$2(O, function (e) {
2917
+ return iterate$3(O, function (e) {
2918
2918
  if (!otherRec.includes(e)) return false;
2919
2919
  }, true) !== false;
2920
2920
  };
2921
2921
 
2922
- var $$5 = _export;
2922
+ var $$6 = _export;
2923
2923
  var isSubsetOf = setIsSubsetOf;
2924
2924
  var setMethodAcceptSetLike$3 = setMethodAcceptSetLike$7;
2925
2925
 
2926
2926
  // `Set.prototype.isSubsetOf` method
2927
2927
  // https://github.com/tc39/proposal-set-methods
2928
- $$5({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$3('isSubsetOf') }, {
2928
+ $$6({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$3('isSubsetOf') }, {
2929
2929
  isSubsetOf: isSubsetOf
2930
2930
  });
2931
2931
 
@@ -2948,13 +2948,13 @@ var setIsSupersetOf = function isSupersetOf(other) {
2948
2948
  }) !== false;
2949
2949
  };
2950
2950
 
2951
- var $$4 = _export;
2951
+ var $$5 = _export;
2952
2952
  var isSupersetOf = setIsSupersetOf;
2953
2953
  var setMethodAcceptSetLike$2 = setMethodAcceptSetLike$7;
2954
2954
 
2955
2955
  // `Set.prototype.isSupersetOf` method
2956
2956
  // https://github.com/tc39/proposal-set-methods
2957
- $$4({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$2('isSupersetOf') }, {
2957
+ $$5({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$2('isSupersetOf') }, {
2958
2958
  isSupersetOf: isSupersetOf
2959
2959
  });
2960
2960
 
@@ -2981,13 +2981,13 @@ var setSymmetricDifference = function symmetricDifference(other) {
2981
2981
  return result;
2982
2982
  };
2983
2983
 
2984
- var $$3 = _export;
2984
+ var $$4 = _export;
2985
2985
  var symmetricDifference = setSymmetricDifference;
2986
2986
  var setMethodAcceptSetLike$1 = setMethodAcceptSetLike$7;
2987
2987
 
2988
2988
  // `Set.prototype.symmetricDifference` method
2989
2989
  // https://github.com/tc39/proposal-set-methods
2990
- $$3({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$1('symmetricDifference') }, {
2990
+ $$4({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$1('symmetricDifference') }, {
2991
2991
  symmetricDifference: symmetricDifference
2992
2992
  });
2993
2993
 
@@ -3009,13 +3009,13 @@ var setUnion = function union(other) {
3009
3009
  return result;
3010
3010
  };
3011
3011
 
3012
- var $$2 = _export;
3012
+ var $$3 = _export;
3013
3013
  var union = setUnion;
3014
3014
  var setMethodAcceptSetLike = setMethodAcceptSetLike$7;
3015
3015
 
3016
3016
  // `Set.prototype.union` method
3017
3017
  // https://github.com/tc39/proposal-set-methods
3018
- $$2({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike('union') }, {
3018
+ $$3({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike('union') }, {
3019
3019
  union: union
3020
3020
  });
3021
3021
 
@@ -4637,7 +4637,7 @@ var doesNotExceedSafeInteger$1 = function (it) {
4637
4637
  return it;
4638
4638
  };
4639
4639
 
4640
- var $$1 = _export;
4640
+ var $$2 = _export;
4641
4641
  var toObject = toObject$3;
4642
4642
  var lengthOfArrayLike$1 = lengthOfArrayLike$3;
4643
4643
  var setArrayLength = arraySetLength;
@@ -4663,7 +4663,7 @@ var FORCED = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
4663
4663
 
4664
4664
  // `Array.prototype.push` method
4665
4665
  // https://tc39.es/ecma262/#sec-array.prototype.push
4666
- $$1({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
4666
+ $$2({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
4667
4667
  // eslint-disable-next-line no-unused-vars -- required for `.length`
4668
4668
  push: function push(item) {
4669
4669
  var O = toObject(this);
@@ -6261,14 +6261,14 @@ var functionUncurryThisClause = function (fn) {
6261
6261
  };
6262
6262
 
6263
6263
  var uncurryThis = functionUncurryThisClause;
6264
- var aCallable$2 = aCallable$8;
6264
+ var aCallable$3 = aCallable$9;
6265
6265
  var NATIVE_BIND = functionBindNative;
6266
6266
 
6267
6267
  var bind$1 = uncurryThis(uncurryThis.bind);
6268
6268
 
6269
6269
  // optional / simple context binding
6270
6270
  var functionBindContext = function (fn, that) {
6271
- aCallable$2(fn);
6271
+ aCallable$3(fn);
6272
6272
  return that === undefined ? fn : NATIVE_BIND ? bind$1(fn, that) : function (/* ...args */) {
6273
6273
  return fn.apply(that, arguments);
6274
6274
  };
@@ -6341,8 +6341,8 @@ var getIteratorMethod$2 = function (it) {
6341
6341
  };
6342
6342
 
6343
6343
  var call$1 = functionCall;
6344
- var aCallable$1 = aCallable$8;
6345
- var anObject$2 = anObject$d;
6344
+ var aCallable$2 = aCallable$9;
6345
+ var anObject$3 = anObject$e;
6346
6346
  var tryToString$1 = tryToString$3;
6347
6347
  var getIteratorMethod$1 = getIteratorMethod$2;
6348
6348
 
@@ -6350,13 +6350,13 @@ var $TypeError$1 = TypeError;
6350
6350
 
6351
6351
  var getIterator$1 = function (argument, usingIterator) {
6352
6352
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod$1(argument) : usingIterator;
6353
- if (aCallable$1(iteratorMethod)) return anObject$2(call$1(iteratorMethod, argument));
6353
+ if (aCallable$2(iteratorMethod)) return anObject$3(call$1(iteratorMethod, argument));
6354
6354
  throw new $TypeError$1(tryToString$1(argument) + ' is not iterable');
6355
6355
  };
6356
6356
 
6357
6357
  var bind = functionBindContext;
6358
6358
  var call = functionCall;
6359
- var anObject$1 = anObject$d;
6359
+ var anObject$2 = anObject$e;
6360
6360
  var tryToString = tryToString$3;
6361
6361
  var isArrayIteratorMethod = isArrayIteratorMethod$1;
6362
6362
  var lengthOfArrayLike = lengthOfArrayLike$3;
@@ -6374,7 +6374,7 @@ var Result = function (stopped, result) {
6374
6374
 
6375
6375
  var ResultPrototype = Result.prototype;
6376
6376
 
6377
- var iterate$1 = function (iterable, unboundFunction, options) {
6377
+ var iterate$2 = function (iterable, unboundFunction, options) {
6378
6378
  var that = options && options.that;
6379
6379
  var AS_ENTRIES = !!(options && options.AS_ENTRIES);
6380
6380
  var IS_RECORD = !!(options && options.IS_RECORD);
@@ -6390,7 +6390,7 @@ var iterate$1 = function (iterable, unboundFunction, options) {
6390
6390
 
6391
6391
  var callFn = function (value) {
6392
6392
  if (AS_ENTRIES) {
6393
- anObject$1(value);
6393
+ anObject$2(value);
6394
6394
  return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
6395
6395
  } return INTERRUPTED ? fn(value, stop) : fn(value);
6396
6396
  };
@@ -6423,21 +6423,21 @@ var iterate$1 = function (iterable, unboundFunction, options) {
6423
6423
  } return new Result(false);
6424
6424
  };
6425
6425
 
6426
- var $ = _export;
6427
- var iterate = iterate$1;
6428
- var aCallable = aCallable$8;
6429
- var anObject = anObject$d;
6430
- var getIteratorDirect = getIteratorDirect$4;
6426
+ var $$1 = _export;
6427
+ var iterate$1 = iterate$2;
6428
+ var aCallable$1 = aCallable$9;
6429
+ var anObject$1 = anObject$e;
6430
+ var getIteratorDirect$1 = getIteratorDirect$5;
6431
6431
 
6432
6432
  // `Iterator.prototype.forEach` method
6433
6433
  // https://github.com/tc39/proposal-iterator-helpers
6434
- $({ target: 'Iterator', proto: true, real: true }, {
6434
+ $$1({ target: 'Iterator', proto: true, real: true }, {
6435
6435
  forEach: function forEach(fn) {
6436
- anObject(this);
6437
- aCallable(fn);
6438
- var record = getIteratorDirect(this);
6436
+ anObject$1(this);
6437
+ aCallable$1(fn);
6438
+ var record = getIteratorDirect$1(this);
6439
6439
  var counter = 0;
6440
- iterate(record, function (value) {
6440
+ iterate$1(record, function (value) {
6441
6441
  fn(value, counter++);
6442
6442
  }, { IS_RECORD: true });
6443
6443
  }
@@ -8043,7 +8043,7 @@ const DEFAULT_NOTIFICATION_TEMPLATE_TYPE = 'D';
8043
8043
  *
8044
8044
  * Task notifications are not required to specify a notification model since notification tasks do not interact with NotificationBoxes.
8045
8045
  */
8046
- const DEFAULT_NOTIFICATION_TASK_NOTIFICATION_MODEL_KEY = 'notmodel/notkey';
8046
+ const DEFAULT_NOTIFICATION_TASK_NOTIFICATION_MODEL_KEY = 'not/not';
8047
8047
  /**
8048
8048
  * Creates a NotificationTaskUniqueId from the input model id and task type.
8049
8049
  *
@@ -8078,14 +8078,14 @@ function mergeNotificationBoxRecipientTemplateConfigs(a, b) {
8078
8078
  sn: sn ?? snb
8079
8079
  };
8080
8080
  }
8081
- function effectiveNotificationBoxRecipientTemplateConfig(x) {
8081
+ function effectiveNotificationBoxRecipientTemplateConfig(a) {
8082
8082
  const {
8083
8083
  sd,
8084
8084
  se,
8085
8085
  st,
8086
8086
  sp,
8087
8087
  sn
8088
- } = x;
8088
+ } = a;
8089
8089
  return {
8090
8090
  sd,
8091
8091
  se: se ?? sd,
@@ -8250,6 +8250,9 @@ const firestoreNotificationBoxRecipient = firestoreSubObject({
8250
8250
  c: firestoreNotificationBoxRecipientTemplateConfigRecord(),
8251
8251
  lk: optionalFirestoreBoolean({
8252
8252
  dontStoreValueIf: false
8253
+ }),
8254
+ x: optionalFirestoreBoolean({
8255
+ dontStoreValueIf: false
8253
8256
  })
8254
8257
  }
8255
8258
  }
@@ -8291,6 +8294,9 @@ const firestoreNotificationUserNotificationBoxRecipientConfig = firestoreSubObje
8291
8294
  i: firestoreNumber({
8292
8295
  default: UNSET_INDEX_NUMBER
8293
8296
  }),
8297
+ x: optionalFirestoreBoolean({
8298
+ dontStoreValueIf: false
8299
+ }),
8294
8300
  n: optionalFirestoreString(),
8295
8301
  t: optionalFirestoreString(),
8296
8302
  e: optionalFirestoreString(),
@@ -8377,6 +8383,7 @@ const notificationUserConverter = snapshotConverterFunctions({
8377
8383
  fields: {
8378
8384
  uid: firestoreUID(),
8379
8385
  b: firestoreModelIdArrayField,
8386
+ x: firestoreModelIdArrayField,
8380
8387
  dc: firestoreNotificationUserDefaultNotificationBoxRecipientConfig,
8381
8388
  gc: firestoreNotificationUserDefaultNotificationBoxRecipientConfig,
8382
8389
  bc: firestoreObjectArray({
@@ -8946,6 +8953,15 @@ class UpdateNotificationBoxRecipientParams extends UpdateNotificationBoxRecipien
8946
8953
  * Whether or not to remove the user if they exist. Defaults to false.
8947
8954
  */
8948
8955
  this.remove = void 0;
8956
+ /**
8957
+ * If true, the target recipient will have this NotificationBox added to their exclusion list.
8958
+ * If false, the target recipient will have this NotificationBox removed from their exclusion list.
8959
+ *
8960
+ * If set, the other functions are ignored.
8961
+ *
8962
+ * If targeting the user by the index, the NotificationBox must exist, and the user must have a uid, otherwise an error will be thrown.
8963
+ */
8964
+ this.setExclusion = void 0;
8949
8965
  }
8950
8966
  }
8951
8967
  __decorate([Expose(), IsNotEmpty(), IsFirestoreModelKey(), __metadata("design:type", String)], UpdateNotificationBoxRecipientParams.prototype, "key", void 0);
@@ -8954,6 +8970,7 @@ __decorate([Expose(), IsOptional(), IsFirestoreModelId(), __metadata("design:typ
8954
8970
  __decorate([Expose(), IsOptional(), IsBoolean(), __metadata("design:type", Object)], UpdateNotificationBoxRecipientParams.prototype, "insert", void 0);
8955
8971
  __decorate([Expose(), IsOptional(), IsBoolean(), __metadata("design:type", Object)], UpdateNotificationBoxRecipientParams.prototype, "enabled", void 0);
8956
8972
  __decorate([Expose(), IsOptional(), IsBoolean(), __metadata("design:type", Object)], UpdateNotificationBoxRecipientParams.prototype, "remove", void 0);
8973
+ __decorate([Expose(), IsOptional(), IsBoolean(), __metadata("design:type", Object)], UpdateNotificationBoxRecipientParams.prototype, "setExclusion", void 0);
8957
8974
  class NotificationRecipientParams {
8958
8975
  constructor() {
8959
8976
  /**
@@ -9041,6 +9058,7 @@ const NOTIFICATION_MODEL_ALREADY_INITIALIZED_ERROR_CODE = 'NOTIFICATION_MODEL_AL
9041
9058
  const NOTIFICATION_BOX_DOES_NOT_EXIST_ERROR_CODE = 'NOTIFICATION_BOX_DOES_NOT_EXIST';
9042
9059
  const NOTIFICATION_BOX_EXISTS_FOR_MODEL_ERROR_CODE = 'NOTIFICATION_BOX_EXISTS_FOR_MODEL';
9043
9060
  const NOTIFICATION_BOX_RECIPIENT_DOES_NOT_EXIST_ERROR_CODE = 'NOTIFICATION_BOX_RECIPIENT_DOES_NOT_EXIST';
9061
+ const NOTIFICATION_BOX_EXCLUSION_TARGET_INVALID_ERROR_CODE = 'NOTIFICATION_BOX_EXCLUSION_TARGET_INVALID';
9044
9062
  const NOTIFICATION_USER_INVALID_UID_FOR_CREATE_ERROR_CODE = 'NOTIFICATION_USER_INVALID_UID_FOR_CREATE';
9045
9063
  const NOTIFICATION_USER_BLOCKED_FROM_BEING_ADD_TO_RECIPIENTS_ERROR_CODE = 'NOTIFICATION_USER_BLOCKED_FROM_BEING_ADD_TO_RECIPIENTS';
9046
9064
  const NOTIFICATION_USER_LOCKED_CONFIG_FROM_BEING_UPDATED_ERROR_CODE = 'NOTIFICATION_USER_LOCKED_CONFIG_FROM_BEING_UPDATED';
@@ -9527,6 +9545,8 @@ function notificationMessageFunction(fn, extras) {
9527
9545
  if (extras) {
9528
9546
  const fnWithExtras = fn;
9529
9547
  fnWithExtras.globalRecipients = extras.globalRecipients;
9548
+ fnWithExtras.onSendAttempted = extras.onSendAttempted;
9549
+ fnWithExtras.onSendSuccess = extras.onSendSuccess;
9530
9550
  return fnWithExtras;
9531
9551
  } else {
9532
9552
  return fn;
@@ -9558,6 +9578,15 @@ function noContentNotificationMessageFunctionFactory() {
9558
9578
  function notificationUsersFlaggedForNeedsSyncQuery() {
9559
9579
  return [where('ns', '==', true)];
9560
9580
  }
9581
+ /**
9582
+ * Query for notificationUsers that have excluded any of the input notification box ids.
9583
+ *
9584
+ * @param now
9585
+ * @returns
9586
+ */
9587
+ function notificationUserHasExclusionQuery(exclusionId) {
9588
+ return [where('x', 'array-contains-any', exclusionId)];
9589
+ }
9561
9590
  // MARK: NotificationSummary
9562
9591
  /**
9563
9592
  * Query for notificationSummaries that are flagged for initialization.
@@ -9651,6 +9680,26 @@ function notificationTaskFailed(updateMetadata) {
9651
9680
  };
9652
9681
  }
9653
9682
 
9683
+ var $ = _export;
9684
+ var iterate = iterate$2;
9685
+ var aCallable = aCallable$9;
9686
+ var anObject = anObject$e;
9687
+ var getIteratorDirect = getIteratorDirect$5;
9688
+
9689
+ // `Iterator.prototype.some` method
9690
+ // https://github.com/tc39/proposal-iterator-helpers
9691
+ $({ target: 'Iterator', proto: true, real: true }, {
9692
+ some: function some(predicate) {
9693
+ anObject(this);
9694
+ aCallable(predicate);
9695
+ var record = getIteratorDirect(this);
9696
+ var counter = 0;
9697
+ return iterate(record, function (value, stop) {
9698
+ if (predicate(value, counter++)) return stop();
9699
+ }, { IS_RECORD: true, INTERRUPTED: true }).stopped;
9700
+ }
9701
+ });
9702
+
9654
9703
  function effectiveNotificationBoxRecipientConfig(input) {
9655
9704
  const {
9656
9705
  uid,
@@ -9684,10 +9733,91 @@ function effectiveNotificationBoxRecipientConfig(input) {
9684
9733
  t: gc.t ?? notificationUserNotificationBoxConfig.t,
9685
9734
  // no custom name or notification summary allowed
9686
9735
  n: undefined,
9687
- s: undefined // should never be defined since uid is defined
9736
+ s: undefined,
9737
+ // should never be defined since uid is defined
9738
+ // always resync x
9739
+ x: notificationUserNotificationBoxConfig.x
9688
9740
  };
9689
9741
  return nextRecipient;
9690
9742
  }
9743
+ function updateNotificationUserNotificationSendExclusions(input) {
9744
+ const {
9745
+ notificationUser,
9746
+ addExclusions: inputAddExclusions,
9747
+ removeExclusions: inputRemoveExclusions
9748
+ } = input;
9749
+ const {
9750
+ b: associatedNotificationBoxes,
9751
+ x: currentExclusions,
9752
+ bc: notificationBoxConfigs
9753
+ } = notificationUser;
9754
+ let addExclusions = [];
9755
+ let removeExclusions = [];
9756
+ if (inputAddExclusions) {
9757
+ addExclusions = asArray(inputAddExclusions);
9758
+ }
9759
+ if (inputRemoveExclusions) {
9760
+ removeExclusions = asArray(inputRemoveExclusions);
9761
+ }
9762
+ const removeExclusionsSet = new Set(removeExclusions);
9763
+ const initialNextExclusions = [...addExclusions, ...currentExclusions].filter(x => !removeExclusionsSet.has(x));
9764
+ // verify each exclusion is related to atleast one notification box
9765
+ const nextExclusions = initialNextExclusions.filter(exclusion => {
9766
+ const firstMatch = associatedNotificationBoxes.findIndex(x => x.startsWith(exclusion));
9767
+ return firstMatch !== -1;
9768
+ });
9769
+ const update = applyExclusionsToNotificationUserNotificationBoxRecipientConfigs({
9770
+ x: nextExclusions,
9771
+ bc: notificationBoxConfigs,
9772
+ notificationUser,
9773
+ recalculateNs: true
9774
+ });
9775
+ update.x = nextExclusions;
9776
+ return {
9777
+ nextExclusions,
9778
+ update
9779
+ };
9780
+ }
9781
+ function applyExclusionsToNotificationUserNotificationBoxRecipientConfigs(params) {
9782
+ const {
9783
+ x: inputX,
9784
+ bc: inputBc,
9785
+ notificationUser,
9786
+ recalculateNs
9787
+ } = params;
9788
+ const x = inputX ?? notificationUser?.x ?? [];
9789
+ const currentBc = inputBc ?? notificationUser?.bc ?? [];
9790
+ // test the new configs and update the exclusion and ns flags
9791
+ const canSendToNotificationBoxFunction = notificationSendExclusionCanSendFunction(x);
9792
+ const nextBc = currentBc.map(x => {
9793
+ const currentNotificationBoxExcluded = Boolean(x.x);
9794
+ const isExcluded = !canSendToNotificationBoxFunction(x.nb); // excluded if cannot send
9795
+ let updatedConfig = x;
9796
+ if (currentNotificationBoxExcluded !== isExcluded) {
9797
+ updatedConfig = {
9798
+ ...x,
9799
+ x: isExcluded,
9800
+ ns: true
9801
+ };
9802
+ }
9803
+ return updatedConfig;
9804
+ });
9805
+ const update = {
9806
+ bc: nextBc,
9807
+ ns: recalculateNs ? calculateNsForNotificationUserNotificationBoxRecipientConfigs(nextBc) : undefined
9808
+ };
9809
+ return update;
9810
+ }
9811
+ function calculateNsForNotificationUserNotificationBoxRecipientConfigs(configs) {
9812
+ return configs.some(x => x.ns);
9813
+ }
9814
+ const notificationSendExclusionCanSendFunction = exclusions => {
9815
+ const fn = notification => {
9816
+ return exclusions.findIndex(x => notification.startsWith(x)) === -1;
9817
+ };
9818
+ fn._exclusions = exclusions;
9819
+ return fn;
9820
+ };
9691
9821
  // MARK: Notification
9692
9822
  /**
9693
9823
  * Returns true if the notification's send types are all marked as sent.
@@ -9849,4 +9979,4 @@ function systemStateFirestoreCollection(firestoreContext, converters) {
9849
9979
  });
9850
9980
  }
9851
9981
 
9852
- export { AbstractFirestoreDocument, AbstractFirestoreDocumentDataAccessorWrapper, AbstractFirestoreDocumentWithParent, AbstractSubscribeOrUnsubscribeToNotificationBoxParams, AbstractSubscribeToNotificationBoxParams, AppNotificationTemplateTypeInfoRecordService, BASE_MODEL_STORAGE_FILE_PATH, CALL_MODEL_APP_FUNCTION_KEY, COPY_USER_RELATED_DATA_ACCESSOR_FACTORY_FUNCTION, CREATE_NOTIFICATION_ID_REQUIRED_ERROR_CODE, CleanupSentNotificationsParams, ContextGrantedModelRolesReaderInstance, CreateNotificationBoxParams, CreateNotificationSummaryParams, CreateNotificationUserParams, DBX_FIREBASE_SERVER_NO_AUTH_ERROR_CODE, DBX_FIREBASE_SERVER_NO_UID_ERROR_CODE, DEFAULT_DATE_CELL_RANGE_VALUE, DEFAULT_FIRESTORE_DATE_CELL_SCHEDULE_VALUE, DEFAULT_FIRESTORE_ITEM_PAGE_ITERATOR_ITEMS_PER_PAGE, DEFAULT_FIRESTORE_STRING_FIELD_VALUE, DEFAULT_FIRESTORE_UNITED_STATES_ADDRESS_VALUE, DEFAULT_FIRESTORE_WEBSITE_FILE_LINK_VALUE, DEFAULT_ITERATE_FIRESTORE_DOCUMENT_SNAPSHOT_BATCHES_BATCH_SIZE, DEFAULT_NOTIFICATION_TASK_NOTIFICATION_MODEL_KEY, DEFAULT_NOTIFICATION_TEMPLATE_TYPE, DEFAULT_QUERY_CHANGE_WATCHER_DELAY, DEFAULT_SINGLE_ITEM_FIRESTORE_COLLECTION_DOCUMENT_IDENTIFIER, DEFAULT_WEBSITE_LINK, FIREBASE_AUTH_NETWORK_REQUEST_ERROR, FIREBASE_AUTH_NETWORK_REQUEST_FAILED, FIREBASE_AUTH_PASSWORD_MAX_LENGTH, FIREBASE_AUTH_PASSWORD_MIN_LENGTH, FIREBASE_AUTH_USER_NOT_FOUND_ERROR, FIREBASE_AUTH_WRONG_PASSWORD, FIREBASE_DEVELOPMENT_FUNCTIONS_MAP_KEY, FIREBASE_SERVER_AUTH_CLAIMS_RESET_LAST_COM_DATE_KEY, FIREBASE_SERVER_AUTH_CLAIMS_RESET_PASSWORD_KEY, FIREBASE_SERVER_AUTH_CLAIMS_SETUP_LAST_COM_DATE_KEY, FIREBASE_SERVER_AUTH_CLAIMS_SETUP_PASSWORD_KEY, FIRESTORE_CLIENT_QUERY_CONSTRAINT_HANDLER_MAPPING, FIRESTORE_COLLECTION_NAME_SEPARATOR, FIRESTORE_DUMMY_MODEL_KEY, FIRESTORE_EMPTY_VALUE, FIRESTORE_END_AT_QUERY_CONSTRAINT_TYPE, FIRESTORE_END_AT_VALUE_QUERY_CONSTRAINT_TYPE, FIRESTORE_END_BEFORE_QUERY_CONSTRAINT_TYPE, FIRESTORE_ITEM_PAGE_ITERATOR, FIRESTORE_ITEM_PAGE_ITERATOR_DELEGATE, FIRESTORE_LIMIT_QUERY_CONSTRAINT_TYPE, FIRESTORE_LIMIT_TO_LAST_QUERY_CONSTRAINT_TYPE, FIRESTORE_MAX_WHERE_IN_FILTER_ARGS_COUNT, FIRESTORE_MODEL_ID_REGEX, FIRESTORE_MODEL_KEY_REGEX, FIRESTORE_MODEL_KEY_REGEX_STRICT, FIRESTORE_OFFSET_QUERY_CONSTRAINT_TYPE, FIRESTORE_ORDER_BY_DOCUMENT_ID_QUERY_CONSTRAINT_TYPE, FIRESTORE_ORDER_BY_QUERY_CONSTRAINT_TYPE, FIRESTORE_PASSTHROUGH_FIELD, FIRESTORE_PERMISSION_DENIED_ERROR_CODE, FIRESTORE_START_AFTER_QUERY_CONSTRAINT_TYPE, FIRESTORE_START_AT_QUERY_CONSTRAINT_TYPE, FIRESTORE_START_AT_VALUE_QUERY_CONSTRAINT_TYPE, FIRESTORE_WHERE_DOCUMENT_ID_QUERY_CONSTRAINT_TYPE, FIRESTORE_WHERE_QUERY_CONSTRAINT_TYPE, FirebaseDevelopmentFunctions, FirebaseModelPermissionServiceInstance, FirebaseServerError, FirestoreAccessorStreamMode, FirestoreDocumentContextType, InferredTargetModelIdParams, InferredTargetModelParams, InitializeAllApplicableNotificationBoxesParams, InitializeAllApplicableNotificationSummariesParams, InitializeNotificationModelParams, IsFirestoreModelId, IsFirestoreModelIdOrKey, IsFirestoreModelKey, MAX_FIRESTORE_MAP_ZOOM_LEVEL_VALUE, MIN_FIRESTORE_MAP_ZOOM_LEVEL_VALUE, MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER_DEFAULT, MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER_SPLITTER, MODEL_STORAGE_FILE_SLASH_PATH_FACTORY, ModifyBeforeSetFirestoreDocumentDataAccessorWrapper, NOTIFICATION_BOX_DOES_NOT_EXIST_ERROR_CODE, NOTIFICATION_BOX_EXISTS_FOR_MODEL_ERROR_CODE, NOTIFICATION_BOX_RECIPIENT_DOES_NOT_EXIST_ERROR_CODE, NOTIFICATION_MESSAGE_MAX_LENGTH, NOTIFICATION_MESSAGE_MIN_LENGTH, NOTIFICATION_MODEL_ALREADY_INITIALIZED_ERROR_CODE, NOTIFICATION_RECIPIENT_NAME_MAX_LENGTH, NOTIFICATION_RECIPIENT_NAME_MIN_LENGTH, NOTIFICATION_SUBJECT_MAX_LENGTH, NOTIFICATION_SUBJECT_MIN_LENGTH, NOTIFICATION_SUMMARY_EMBEDDED_NOTIFICATION_ITEM_MESSAGE_MAX_LENGTH, NOTIFICATION_SUMMARY_EMBEDDED_NOTIFICATION_ITEM_SUBJECT_MAX_LENGTH, NOTIFICATION_SUMMARY_ITEM_LIMIT, NOTIFICATION_USER_BLOCKED_FROM_BEING_ADD_TO_RECIPIENTS_ERROR_CODE, NOTIFICATION_USER_INVALID_UID_FOR_CREATE_ERROR_CODE, NOTIFICATION_USER_LOCKED_CONFIG_FROM_BEING_UPDATED_ERROR_CODE, NOTIFICATION_WEEK_NOTIFICATION_ITEM_LIMIT, NotificationBoxDocument, NotificationBoxRecipientFlag, NotificationBoxRecipientTemplateConfigArrayEntryParam, NotificationBoxRecipientTemplateConfigBoolean, NotificationDocument, NotificationFirestoreCollections, NotificationFunctions, NotificationMessageFlag, NotificationRecipientParams, NotificationRecipientSendFlag, NotificationSendState, NotificationSendType, NotificationSummaryDocument, NotificationUserDocument, NotificationWeekDocument, RUN_DEV_FUNCTION_APP_FUNCTION_KEY, ResyncAllNotificationUserParams, ResyncNotificationUserParams, SCHEDULED_FUNCTION_DEV_FUNCTION_SPECIFIER, ScheduledFunctionDevelopmentFirebaseFunctionListEntry, ScheduledFunctionDevelopmentFirebaseFunctionParams, ScheduledFunctionDevelopmentFunctionTypeEnum, SendNotificationParams, SendQueuedNotificationsParams, SystemStateDocument, SystemStateFirestoreCollections, TargetModelIdParams, TargetModelParams, UpdateNotificationBoxParams, UpdateNotificationBoxRecipientLikeParams, UpdateNotificationBoxRecipientParams, UpdateNotificationSummaryParams, UpdateNotificationUserDefaultNotificationBoxRecipientConfigParams, UpdateNotificationUserNotificationBoxRecipientParams, UpdateNotificationUserParams, addConstraintToBuilder, addOrReplaceLimitInConstraints, allChildDocumentsUnderParent, allChildDocumentsUnderParentPath, allChildDocumentsUnderRelativePath, allowDocumentSnapshotWithPathOnceFilter, allowedNotificationRecipients, appNotificationTemplateTypeInfoRecordService, arrayUpdateWithAccessorFunction, asTopLevelFieldPath, asTopLevelFieldPaths, assertFirestoreUpdateHasData, assertStorageUploadOptionsStringFormat, assignDateCellRangeFunction, assignDateCellScheduleFunction, assignUnitedStatesAddressFunction, assignWebsiteFileLinkFunction, assignWebsiteLinkFunction, buildFirebaseCollectionTypeModelTypeMap, callModelFirebaseFunctionMapFactory, childFirestoreModelKey, childFirestoreModelKeyPath, childFirestoreModelKeys, clientFirebaseFirestoreContextFactory, clientFirebaseStorageContextFactory, contextGrantedModelRolesReader, contextGrantedModelRolesReaderDoesNotExistErrorMessage, contextGrantedModelRolesReaderPermissionErrorMessage, convertHttpsCallableErrorToReadableError, copyDocumentIdForUserRelatedModifierFunction, copyDocumentIdToFieldModifierFunction, copyUserRelatedDataAccessorFactoryFunction, copyUserRelatedDataModifierConfig, createNotificationDocument, createNotificationDocumentIfSending, createNotificationDocumentPair, createNotificationTaskTemplate, createNotificationTemplate, dataFromDocumentSnapshots, dataFromSnapshotStream, delayCompletion, developmentFirebaseFunctionMapFactory, directDataHttpsCallable, documentData, documentDataFunction, documentDataWithIdAndKey, documentReferenceFromDocument, documentReferencesFromDocuments, documentReferencesFromSnapshot, effectiveNotificationBoxRecipientConfig, effectiveNotificationBoxRecipientTemplateConfig, endAt, endAtValue, endBefore, extendFirestoreCollectionWithSingleDocumentAccessor, filterConstraintsOfType, filterDisallowedFirestoreItemPageIteratorInputConstraints, filterDisallowedFirestoreItemPageIteratorInputContraints, filterRepeatCheckpointSnapshots, filterWithDateRange, firebaseAuthErrorToReadableError, firebaseFirestoreClientDrivers, firebaseFirestoreQueryConstraintFunctionsDriver, firebaseFirestoreQueryDriver, firebaseFunctionMapFactory, firebaseModelLoader, firebaseModelPermissionService, firebaseModelService, firebaseModelServiceFactory, firebaseModelsService, firebaseQueryItemAccumulator, firebaseQuerySnapshotAccumulator, firebaseStorageBucketFolderPath, firebaseStorageClientAccessorDriver, firebaseStorageClientAccessorFile, firebaseStorageClientAccessorFolder, firebaseStorageClientDrivers, firebaseStorageClientListFilesResultFactory, firebaseStorageContextFactory, firebaseStorageFileExists, firebaseStorageFilePathFromStorageFilePath, firebaseStorageRefForStorageFilePath, firestoreArray, firestoreArrayMap, firestoreBitwiseObjectMap, firestoreBitwiseSet, firestoreBitwiseSetMap, firestoreBoolean, firestoreClientAccessorDriver, firestoreClientArrayUpdateToUpdateData, firestoreClientIncrementUpdateToUpdateData, firestoreCollectionQueryFactory, firestoreContextFactory, firestoreDate, firestoreDateCellRange, firestoreDateCellRangeArray, firestoreDateCellRangeAssignFn, firestoreDateCellSchedule, firestoreDateCellScheduleAssignFn, firestoreDencoderArray, firestoreDencoderMap, firestoreDencoderStringArray, firestoreDocumentAccessorContextExtension, firestoreDocumentAccessorFactory, firestoreDocumentLoader, firestoreDocumentSnapshotPairsLoader, firestoreDocumentSnapshotPairsLoaderInstance, firestoreDummyKey, firestoreEncodedArray, firestoreEncodedObjectMap, firestoreEnum, firestoreEnumArray, firestoreField, firestoreFieldConfigToModelMapFunctionsRef, firestoreIdBatchVerifierFactory, firestoreIdentityTypeArray, firestoreIdentityTypeArrayName, firestoreItemPageIteration, firestoreItemPageIterationFactory, firestoreLatLngString, firestoreMap, firestoreMapZoomLevel, firestoreModelId, firestoreModelIdArrayField, firestoreModelIdFromDocument, firestoreModelIdGrantedRoleArrayMap, firestoreModelIdGrantedRoleMap, firestoreModelIdString, firestoreModelIdentity, firestoreModelIdentityTypeMap, firestoreModelIdsFromDocuments, firestoreModelIdsFromKey, firestoreModelKey, firestoreModelKeyArrayField, firestoreModelKeyCollectionName, firestoreModelKeyCollectionType, firestoreModelKeyCollectionTypeArray, firestoreModelKeyCollectionTypeArrayName, firestoreModelKeyCollectionTypePair, firestoreModelKeyEncodedGrantedRoleMap, firestoreModelKeyFromDocument, firestoreModelKeyGrantedRoleArrayMap, firestoreModelKeyGrantedRoleMap, firestoreModelKeyPairObject, firestoreModelKeyParentKey, firestoreModelKeyParentKeyPartPairs, firestoreModelKeyPart, firestoreModelKeyPartPairs, firestoreModelKeyPartPairsKeyPath, firestoreModelKeyPartPairsPaths, firestoreModelKeyPath, firestoreModelKeyString, firestoreModelKeyTypePair, firestoreModelKeys, firestoreModelKeysFromDocuments, firestoreModelType, firestoreNotificationBoxRecipient, firestoreNotificationBoxRecipientTemplateConfigRecord, firestoreNotificationItem, firestoreNotificationRecipientWithConfig, firestoreNotificationUserDefaultNotificationBoxRecipientConfig, firestoreNotificationUserNotificationBoxRecipientConfig, firestoreNumber, firestoreObjectArray, firestorePassThroughField, firestoreQueryConstraint, firestoreQueryConstraintFactory, firestoreQueryDocumentSnapshotPairsLoader, firestoreQueryFactory, firestoreSingleDocumentAccessor, firestoreString, firestoreSubObject, firestoreTimezoneString, firestoreUID, firestoreUniqueArray, firestoreUniqueKeyedArray, firestoreUniqueNumberArray, firestoreUniqueStringArray, firestoreUnitedStatesAddress, firestoreUnitedStatesAddressAssignFn, firestoreUpdateWithNoDataError, firestoreWebsiteFileLink, firestoreWebsiteFileLinkAssignFn, firestoreWebsiteFileLinkEncodedArray, firestoreWebsiteFileLinkObjectArray, firestoreWebsiteLink, firestoreWebsiteLinkArray, firestoreWebsiteLinkAssignFn, flatFirestoreModelKey, getDataFromDocumentSnapshots, getDocumentSnapshotData, getDocumentSnapshotDataPair, getDocumentSnapshotDataPairs, getDocumentSnapshotDataPairsWithData, getDocumentSnapshotDataTuples, getDocumentSnapshotPair, getDocumentSnapshotPairs, getDocumentSnapshots, getDocumentSnapshotsData, grantFullAccessIfAdmin, grantFullAccessIfAuthUserRelated, grantModelRolesIfAdmin, grantModelRolesIfAdminFunction, grantModelRolesIfAuthUserRelatedModelFunction, grantModelRolesIfFunction, grantModelRolesIfHasAuthRolesFactory, grantModelRolesIfHasAuthRolesFunction, grantModelRolesOnlyIfFunction, inContextFirebaseModelServiceFactory, inContextFirebaseModelsServiceFactory, incrementUpdateWithAccessorFunction, inferKeyFromTwoWayFlatFirestoreModelKey, inferNotificationBoxRelatedModelKey, interceptAccessorFactoryFunction, isAdminInFirebaseModelContext, isClientFirebaseError, isCompleteNotificationSendState, isFirebaseStorageObjectNotFoundError, isFirestoreModelId, isFirestoreModelIdOrKey, isFirestoreModelKey, isOwnerOfUserRelatedModelInFirebaseModelContext, iterateFirestoreDocumentSnapshotBatches, iterateFirestoreDocumentSnapshotCheckpoints, iterateFirestoreDocumentSnapshotPairBatches, iterateFirestoreDocumentSnapshotPairs, iterateFirestoreDocumentSnapshots, iterationQueryDocChangeWatcher, iterationQueryDocChangeWatcherChangeTypeForGroup, latestDataFromDocuments, latestSnapshotsFromDocuments, lazyFirebaseFunctionsFactory, limit, limitToLast, limitedFirestoreDocumentAccessorFactory, loadAllFirestoreDocumentSnapshot, loadAllFirestoreDocumentSnapshotPairs, loadDocumentsForDocumentReferences, loadDocumentsForDocumentReferencesFromValues, loadDocumentsForIds, loadDocumentsForIdsFromValues, loadDocumentsForKeys, loadDocumentsForKeysFromValues, loadDocumentsForSnapshots, loadDocumentsForValues, loadNotificationBoxDocumentForReferencePair, makeDocuments, makeFirestoreCollection, makeFirestoreCollectionGroup, makeFirestoreCollectionWithParent, makeFirestoreItemPageIteratorDelegate, makeFirestoreQueryConstraintFunctionsDriver, makeRootSingleItemFirestoreCollection, makeSingleItemFirestoreCollection, mapDataFromSnapshot, mapHttpsCallable, mergeNotificationBoxRecipientTemplateConfigRecords, mergeNotificationBoxRecipientTemplateConfigs, mergeNotificationBoxRecipients, mergeNotificationSendMessagesResult, mergeNotificationUserDefaultNotificationBoxRecipientConfig, mergeNotificationUserNotificationBoxRecipientConfigs, modelStorageSlashPathFactory, modifyBeforeSetInterceptAccessorFactoryFunction, newDocuments, newNotificationBoxRecipientForUid, noContentNotificationMessageFunctionFactory, noStringFormatInStorageUploadOptionsError, notificationBoxCollectionReference, notificationBoxConverter, notificationBoxFirestoreCollection, notificationBoxIdForModel, notificationBoxIdentity, notificationBoxModelCrudFunctionsConfig, notificationBoxRecipientTemplateConfigArrayToRecord, notificationBoxRecipientTemplateConfigRecordToArray, notificationBoxesFlaggedForNeedsInitializationQuery, notificationBoxesFlaggedInvalidQuery, notificationCollectionReference, notificationCollectionReferenceFactory, notificationConverter, notificationFirestoreCollectionFactory, notificationFirestoreCollectionGroup, notificationFunctionMap, notificationFunctionTypeConfigMap, notificationIdentity, notificationMessageFunction, notificationSendFlagsImplyIsComplete, notificationSummariesFlaggedForNeedsInitializationQuery, notificationSummaryCollectionReference, notificationSummaryConverter, notificationSummaryFirestoreCollection, notificationSummaryIdForModel, notificationSummaryIdForUidFunctionForRootFirestoreModelIdentity, notificationSummaryIdentity, notificationTaskComplete, notificationTaskFailed, notificationTaskPartiallyComplete, notificationTaskUniqueId, notificationTemplateTypeDetailsRecord, notificationTemplateTypeInfoRecord, notificationUserCollectionReference, notificationUserConverter, notificationUserFirestoreCollection, notificationUserIdentity, notificationUsersFlaggedForNeedsSyncQuery, notificationWeekCollectionReference, notificationWeekCollectionReferenceFactory, notificationWeekConverter, notificationWeekFirestoreCollectionFactory, notificationWeekFirestoreCollectionGroup, notificationWeekIdentity, notificationsPastSendAtTimeQuery, notificationsReadyForCleanupQuery, offset, onCallCreateModelParams, onCallCreateModelResult, onCallCreateModelResultWithDocs, onCallDeleteModelParams, onCallDevelopmentParams, onCallReadModelParams, onCallTypedModelParams, onCallTypedModelParamsFunction, onCallUpdateModelParams, optionalFirestoreArray, optionalFirestoreBoolean, optionalFirestoreDate, optionalFirestoreEnum, optionalFirestoreField, optionalFirestoreNumber, optionalFirestoreString, optionalFirestoreUID, optionalFirestoreUnitedStatesAddress, orderBy, orderByDocumentId, readFirestoreModelKey, readFirestoreModelKeyFromDocumentSnapshot, replaceConstraints, selectFromFirebaseModelsService, separateConstraints, setIdAndKeyFromKeyIdRefOnDocumentData, setIdAndKeyFromSnapshotOnDocumentData, shouldSaveNotificationToNotificationWeek, shouldSendCreatedNotificationInput, snapshotConverterFunctions, snapshotStreamDataForAccessor, snapshotStreamForAccessor, sortNotificationItemsFunction, startAfter, startAt, startAtValue, storageListFilesResultFactory, storageListFilesResultHasNoNextError, storagePathFactory, streamFromOnSnapshot, systemStateCollectionReference, systemStateConverter, systemStateFirestoreCollection, systemStateIdentity, twoWayFlatFirestoreModelKey, unreadNotificationItems, unsupportedFirestoreDriverFunctionError, updateNotificationBoxRecipientTemplateConfigRecord, updateNotificationRecipient, updateNotificationUserDefaultNotificationBoxRecipientConfig, updateNotificationUserNotificationBoxRecipientConfigIfChanged, updateNotificationUserNotificationBoxRecipientConfigs, updateWithAccessorUpdateAndConverterFunction, useContextAuth, useContextAuthUid, useDocumentSnapshot, useDocumentSnapshotData, useFirebaseModelsService, where, whereDateIsAfter, whereDateIsAfterWithSort, whereDateIsBefore, whereDateIsBeforeWithSort, whereDateIsBetween, whereDateIsInRange, whereDateIsOnOrAfter, whereDateIsOnOrAfterWithSort, whereDateIsOnOrBefore, whereDateIsOnOrBeforeWithSort, whereDocumentId, whereStringHasRootIdentityModelKey, whereStringValueHasPrefix };
9982
+ export { AbstractFirestoreDocument, AbstractFirestoreDocumentDataAccessorWrapper, AbstractFirestoreDocumentWithParent, AbstractSubscribeOrUnsubscribeToNotificationBoxParams, AbstractSubscribeToNotificationBoxParams, AppNotificationTemplateTypeInfoRecordService, BASE_MODEL_STORAGE_FILE_PATH, CALL_MODEL_APP_FUNCTION_KEY, COPY_USER_RELATED_DATA_ACCESSOR_FACTORY_FUNCTION, CREATE_NOTIFICATION_ID_REQUIRED_ERROR_CODE, CleanupSentNotificationsParams, ContextGrantedModelRolesReaderInstance, CreateNotificationBoxParams, CreateNotificationSummaryParams, CreateNotificationUserParams, DBX_FIREBASE_SERVER_NO_AUTH_ERROR_CODE, DBX_FIREBASE_SERVER_NO_UID_ERROR_CODE, DEFAULT_DATE_CELL_RANGE_VALUE, DEFAULT_FIRESTORE_DATE_CELL_SCHEDULE_VALUE, DEFAULT_FIRESTORE_ITEM_PAGE_ITERATOR_ITEMS_PER_PAGE, DEFAULT_FIRESTORE_STRING_FIELD_VALUE, DEFAULT_FIRESTORE_UNITED_STATES_ADDRESS_VALUE, DEFAULT_FIRESTORE_WEBSITE_FILE_LINK_VALUE, DEFAULT_ITERATE_FIRESTORE_DOCUMENT_SNAPSHOT_BATCHES_BATCH_SIZE, DEFAULT_NOTIFICATION_TASK_NOTIFICATION_MODEL_KEY, DEFAULT_NOTIFICATION_TEMPLATE_TYPE, DEFAULT_QUERY_CHANGE_WATCHER_DELAY, DEFAULT_SINGLE_ITEM_FIRESTORE_COLLECTION_DOCUMENT_IDENTIFIER, DEFAULT_WEBSITE_LINK, FIREBASE_AUTH_NETWORK_REQUEST_ERROR, FIREBASE_AUTH_NETWORK_REQUEST_FAILED, FIREBASE_AUTH_PASSWORD_MAX_LENGTH, FIREBASE_AUTH_PASSWORD_MIN_LENGTH, FIREBASE_AUTH_USER_NOT_FOUND_ERROR, FIREBASE_AUTH_WRONG_PASSWORD, FIREBASE_DEVELOPMENT_FUNCTIONS_MAP_KEY, FIREBASE_SERVER_AUTH_CLAIMS_RESET_LAST_COM_DATE_KEY, FIREBASE_SERVER_AUTH_CLAIMS_RESET_PASSWORD_KEY, FIREBASE_SERVER_AUTH_CLAIMS_SETUP_LAST_COM_DATE_KEY, FIREBASE_SERVER_AUTH_CLAIMS_SETUP_PASSWORD_KEY, FIRESTORE_CLIENT_QUERY_CONSTRAINT_HANDLER_MAPPING, FIRESTORE_COLLECTION_NAME_SEPARATOR, FIRESTORE_DUMMY_MODEL_KEY, FIRESTORE_EMPTY_VALUE, FIRESTORE_END_AT_QUERY_CONSTRAINT_TYPE, FIRESTORE_END_AT_VALUE_QUERY_CONSTRAINT_TYPE, FIRESTORE_END_BEFORE_QUERY_CONSTRAINT_TYPE, FIRESTORE_ITEM_PAGE_ITERATOR, FIRESTORE_ITEM_PAGE_ITERATOR_DELEGATE, FIRESTORE_LIMIT_QUERY_CONSTRAINT_TYPE, FIRESTORE_LIMIT_TO_LAST_QUERY_CONSTRAINT_TYPE, FIRESTORE_MAX_WHERE_IN_FILTER_ARGS_COUNT, FIRESTORE_MODEL_ID_REGEX, FIRESTORE_MODEL_KEY_REGEX, FIRESTORE_MODEL_KEY_REGEX_STRICT, FIRESTORE_OFFSET_QUERY_CONSTRAINT_TYPE, FIRESTORE_ORDER_BY_DOCUMENT_ID_QUERY_CONSTRAINT_TYPE, FIRESTORE_ORDER_BY_QUERY_CONSTRAINT_TYPE, FIRESTORE_PASSTHROUGH_FIELD, FIRESTORE_PERMISSION_DENIED_ERROR_CODE, FIRESTORE_START_AFTER_QUERY_CONSTRAINT_TYPE, FIRESTORE_START_AT_QUERY_CONSTRAINT_TYPE, FIRESTORE_START_AT_VALUE_QUERY_CONSTRAINT_TYPE, FIRESTORE_WHERE_DOCUMENT_ID_QUERY_CONSTRAINT_TYPE, FIRESTORE_WHERE_QUERY_CONSTRAINT_TYPE, FirebaseDevelopmentFunctions, FirebaseModelPermissionServiceInstance, FirebaseServerError, FirestoreAccessorStreamMode, FirestoreDocumentContextType, InferredTargetModelIdParams, InferredTargetModelParams, InitializeAllApplicableNotificationBoxesParams, InitializeAllApplicableNotificationSummariesParams, InitializeNotificationModelParams, IsFirestoreModelId, IsFirestoreModelIdOrKey, IsFirestoreModelKey, MAX_FIRESTORE_MAP_ZOOM_LEVEL_VALUE, MIN_FIRESTORE_MAP_ZOOM_LEVEL_VALUE, MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER_DEFAULT, MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER_SPLITTER, MODEL_STORAGE_FILE_SLASH_PATH_FACTORY, ModifyBeforeSetFirestoreDocumentDataAccessorWrapper, NOTIFICATION_BOX_DOES_NOT_EXIST_ERROR_CODE, NOTIFICATION_BOX_EXCLUSION_TARGET_INVALID_ERROR_CODE, NOTIFICATION_BOX_EXISTS_FOR_MODEL_ERROR_CODE, NOTIFICATION_BOX_RECIPIENT_DOES_NOT_EXIST_ERROR_CODE, NOTIFICATION_MESSAGE_MAX_LENGTH, NOTIFICATION_MESSAGE_MIN_LENGTH, NOTIFICATION_MODEL_ALREADY_INITIALIZED_ERROR_CODE, NOTIFICATION_RECIPIENT_NAME_MAX_LENGTH, NOTIFICATION_RECIPIENT_NAME_MIN_LENGTH, NOTIFICATION_SUBJECT_MAX_LENGTH, NOTIFICATION_SUBJECT_MIN_LENGTH, NOTIFICATION_SUMMARY_EMBEDDED_NOTIFICATION_ITEM_MESSAGE_MAX_LENGTH, NOTIFICATION_SUMMARY_EMBEDDED_NOTIFICATION_ITEM_SUBJECT_MAX_LENGTH, NOTIFICATION_SUMMARY_ITEM_LIMIT, NOTIFICATION_USER_BLOCKED_FROM_BEING_ADD_TO_RECIPIENTS_ERROR_CODE, NOTIFICATION_USER_INVALID_UID_FOR_CREATE_ERROR_CODE, NOTIFICATION_USER_LOCKED_CONFIG_FROM_BEING_UPDATED_ERROR_CODE, NOTIFICATION_WEEK_NOTIFICATION_ITEM_LIMIT, NotificationBoxDocument, NotificationBoxRecipientFlag, NotificationBoxRecipientTemplateConfigArrayEntryParam, NotificationBoxRecipientTemplateConfigBoolean, NotificationDocument, NotificationFirestoreCollections, NotificationFunctions, NotificationMessageFlag, NotificationRecipientParams, NotificationRecipientSendFlag, NotificationSendState, NotificationSendType, NotificationSummaryDocument, NotificationUserDocument, NotificationWeekDocument, RUN_DEV_FUNCTION_APP_FUNCTION_KEY, ResyncAllNotificationUserParams, ResyncNotificationUserParams, SCHEDULED_FUNCTION_DEV_FUNCTION_SPECIFIER, ScheduledFunctionDevelopmentFirebaseFunctionListEntry, ScheduledFunctionDevelopmentFirebaseFunctionParams, ScheduledFunctionDevelopmentFunctionTypeEnum, SendNotificationParams, SendQueuedNotificationsParams, SystemStateDocument, SystemStateFirestoreCollections, TargetModelIdParams, TargetModelParams, UpdateNotificationBoxParams, UpdateNotificationBoxRecipientLikeParams, UpdateNotificationBoxRecipientParams, UpdateNotificationSummaryParams, UpdateNotificationUserDefaultNotificationBoxRecipientConfigParams, UpdateNotificationUserNotificationBoxRecipientParams, UpdateNotificationUserParams, addConstraintToBuilder, addOrReplaceLimitInConstraints, allChildDocumentsUnderParent, allChildDocumentsUnderParentPath, allChildDocumentsUnderRelativePath, allowDocumentSnapshotWithPathOnceFilter, allowedNotificationRecipients, appNotificationTemplateTypeInfoRecordService, applyExclusionsToNotificationUserNotificationBoxRecipientConfigs, arrayUpdateWithAccessorFunction, asTopLevelFieldPath, asTopLevelFieldPaths, assertFirestoreUpdateHasData, assertStorageUploadOptionsStringFormat, assignDateCellRangeFunction, assignDateCellScheduleFunction, assignUnitedStatesAddressFunction, assignWebsiteFileLinkFunction, assignWebsiteLinkFunction, buildFirebaseCollectionTypeModelTypeMap, calculateNsForNotificationUserNotificationBoxRecipientConfigs, callModelFirebaseFunctionMapFactory, childFirestoreModelKey, childFirestoreModelKeyPath, childFirestoreModelKeys, clientFirebaseFirestoreContextFactory, clientFirebaseStorageContextFactory, contextGrantedModelRolesReader, contextGrantedModelRolesReaderDoesNotExistErrorMessage, contextGrantedModelRolesReaderPermissionErrorMessage, convertHttpsCallableErrorToReadableError, copyDocumentIdForUserRelatedModifierFunction, copyDocumentIdToFieldModifierFunction, copyUserRelatedDataAccessorFactoryFunction, copyUserRelatedDataModifierConfig, createNotificationDocument, createNotificationDocumentIfSending, createNotificationDocumentPair, createNotificationTaskTemplate, createNotificationTemplate, dataFromDocumentSnapshots, dataFromSnapshotStream, delayCompletion, developmentFirebaseFunctionMapFactory, directDataHttpsCallable, documentData, documentDataFunction, documentDataWithIdAndKey, documentReferenceFromDocument, documentReferencesFromDocuments, documentReferencesFromSnapshot, effectiveNotificationBoxRecipientConfig, effectiveNotificationBoxRecipientTemplateConfig, endAt, endAtValue, endBefore, extendFirestoreCollectionWithSingleDocumentAccessor, filterConstraintsOfType, filterDisallowedFirestoreItemPageIteratorInputConstraints, filterDisallowedFirestoreItemPageIteratorInputContraints, filterRepeatCheckpointSnapshots, filterWithDateRange, firebaseAuthErrorToReadableError, firebaseFirestoreClientDrivers, firebaseFirestoreQueryConstraintFunctionsDriver, firebaseFirestoreQueryDriver, firebaseFunctionMapFactory, firebaseModelLoader, firebaseModelPermissionService, firebaseModelService, firebaseModelServiceFactory, firebaseModelsService, firebaseQueryItemAccumulator, firebaseQuerySnapshotAccumulator, firebaseStorageBucketFolderPath, firebaseStorageClientAccessorDriver, firebaseStorageClientAccessorFile, firebaseStorageClientAccessorFolder, firebaseStorageClientDrivers, firebaseStorageClientListFilesResultFactory, firebaseStorageContextFactory, firebaseStorageFileExists, firebaseStorageFilePathFromStorageFilePath, firebaseStorageRefForStorageFilePath, firestoreArray, firestoreArrayMap, firestoreBitwiseObjectMap, firestoreBitwiseSet, firestoreBitwiseSetMap, firestoreBoolean, firestoreClientAccessorDriver, firestoreClientArrayUpdateToUpdateData, firestoreClientIncrementUpdateToUpdateData, firestoreCollectionQueryFactory, firestoreContextFactory, firestoreDate, firestoreDateCellRange, firestoreDateCellRangeArray, firestoreDateCellRangeAssignFn, firestoreDateCellSchedule, firestoreDateCellScheduleAssignFn, firestoreDencoderArray, firestoreDencoderMap, firestoreDencoderStringArray, firestoreDocumentAccessorContextExtension, firestoreDocumentAccessorFactory, firestoreDocumentLoader, firestoreDocumentSnapshotPairsLoader, firestoreDocumentSnapshotPairsLoaderInstance, firestoreDummyKey, firestoreEncodedArray, firestoreEncodedObjectMap, firestoreEnum, firestoreEnumArray, firestoreField, firestoreFieldConfigToModelMapFunctionsRef, firestoreIdBatchVerifierFactory, firestoreIdentityTypeArray, firestoreIdentityTypeArrayName, firestoreItemPageIteration, firestoreItemPageIterationFactory, firestoreLatLngString, firestoreMap, firestoreMapZoomLevel, firestoreModelId, firestoreModelIdArrayField, firestoreModelIdFromDocument, firestoreModelIdGrantedRoleArrayMap, firestoreModelIdGrantedRoleMap, firestoreModelIdString, firestoreModelIdentity, firestoreModelIdentityTypeMap, firestoreModelIdsFromDocuments, firestoreModelIdsFromKey, firestoreModelKey, firestoreModelKeyArrayField, firestoreModelKeyCollectionName, firestoreModelKeyCollectionType, firestoreModelKeyCollectionTypeArray, firestoreModelKeyCollectionTypeArrayName, firestoreModelKeyCollectionTypePair, firestoreModelKeyEncodedGrantedRoleMap, firestoreModelKeyFromDocument, firestoreModelKeyGrantedRoleArrayMap, firestoreModelKeyGrantedRoleMap, firestoreModelKeyPairObject, firestoreModelKeyParentKey, firestoreModelKeyParentKeyPartPairs, firestoreModelKeyPart, firestoreModelKeyPartPairs, firestoreModelKeyPartPairsKeyPath, firestoreModelKeyPartPairsPaths, firestoreModelKeyPath, firestoreModelKeyString, firestoreModelKeyTypePair, firestoreModelKeys, firestoreModelKeysFromDocuments, firestoreModelType, firestoreNotificationBoxRecipient, firestoreNotificationBoxRecipientTemplateConfigRecord, firestoreNotificationItem, firestoreNotificationRecipientWithConfig, firestoreNotificationUserDefaultNotificationBoxRecipientConfig, firestoreNotificationUserNotificationBoxRecipientConfig, firestoreNumber, firestoreObjectArray, firestorePassThroughField, firestoreQueryConstraint, firestoreQueryConstraintFactory, firestoreQueryDocumentSnapshotPairsLoader, firestoreQueryFactory, firestoreSingleDocumentAccessor, firestoreString, firestoreSubObject, firestoreTimezoneString, firestoreUID, firestoreUniqueArray, firestoreUniqueKeyedArray, firestoreUniqueNumberArray, firestoreUniqueStringArray, firestoreUnitedStatesAddress, firestoreUnitedStatesAddressAssignFn, firestoreUpdateWithNoDataError, firestoreWebsiteFileLink, firestoreWebsiteFileLinkAssignFn, firestoreWebsiteFileLinkEncodedArray, firestoreWebsiteFileLinkObjectArray, firestoreWebsiteLink, firestoreWebsiteLinkArray, firestoreWebsiteLinkAssignFn, flatFirestoreModelKey, getDataFromDocumentSnapshots, getDocumentSnapshotData, getDocumentSnapshotDataPair, getDocumentSnapshotDataPairs, getDocumentSnapshotDataPairsWithData, getDocumentSnapshotDataTuples, getDocumentSnapshotPair, getDocumentSnapshotPairs, getDocumentSnapshots, getDocumentSnapshotsData, grantFullAccessIfAdmin, grantFullAccessIfAuthUserRelated, grantModelRolesIfAdmin, grantModelRolesIfAdminFunction, grantModelRolesIfAuthUserRelatedModelFunction, grantModelRolesIfFunction, grantModelRolesIfHasAuthRolesFactory, grantModelRolesIfHasAuthRolesFunction, grantModelRolesOnlyIfFunction, inContextFirebaseModelServiceFactory, inContextFirebaseModelsServiceFactory, incrementUpdateWithAccessorFunction, inferKeyFromTwoWayFlatFirestoreModelKey, inferNotificationBoxRelatedModelKey, interceptAccessorFactoryFunction, isAdminInFirebaseModelContext, isClientFirebaseError, isCompleteNotificationSendState, isFirebaseStorageObjectNotFoundError, isFirestoreModelId, isFirestoreModelIdOrKey, isFirestoreModelKey, isOwnerOfUserRelatedModelInFirebaseModelContext, iterateFirestoreDocumentSnapshotBatches, iterateFirestoreDocumentSnapshotCheckpoints, iterateFirestoreDocumentSnapshotPairBatches, iterateFirestoreDocumentSnapshotPairs, iterateFirestoreDocumentSnapshots, iterationQueryDocChangeWatcher, iterationQueryDocChangeWatcherChangeTypeForGroup, latestDataFromDocuments, latestSnapshotsFromDocuments, lazyFirebaseFunctionsFactory, limit, limitToLast, limitedFirestoreDocumentAccessorFactory, loadAllFirestoreDocumentSnapshot, loadAllFirestoreDocumentSnapshotPairs, loadDocumentsForDocumentReferences, loadDocumentsForDocumentReferencesFromValues, loadDocumentsForIds, loadDocumentsForIdsFromValues, loadDocumentsForKeys, loadDocumentsForKeysFromValues, loadDocumentsForSnapshots, loadDocumentsForValues, loadNotificationBoxDocumentForReferencePair, makeDocuments, makeFirestoreCollection, makeFirestoreCollectionGroup, makeFirestoreCollectionWithParent, makeFirestoreItemPageIteratorDelegate, makeFirestoreQueryConstraintFunctionsDriver, makeRootSingleItemFirestoreCollection, makeSingleItemFirestoreCollection, mapDataFromSnapshot, mapHttpsCallable, mergeNotificationBoxRecipientTemplateConfigRecords, mergeNotificationBoxRecipientTemplateConfigs, mergeNotificationBoxRecipients, mergeNotificationSendMessagesResult, mergeNotificationUserDefaultNotificationBoxRecipientConfig, mergeNotificationUserNotificationBoxRecipientConfigs, modelStorageSlashPathFactory, modifyBeforeSetInterceptAccessorFactoryFunction, newDocuments, newNotificationBoxRecipientForUid, noContentNotificationMessageFunctionFactory, noStringFormatInStorageUploadOptionsError, notificationBoxCollectionReference, notificationBoxConverter, notificationBoxFirestoreCollection, notificationBoxIdForModel, notificationBoxIdentity, notificationBoxModelCrudFunctionsConfig, notificationBoxRecipientTemplateConfigArrayToRecord, notificationBoxRecipientTemplateConfigRecordToArray, notificationBoxesFlaggedForNeedsInitializationQuery, notificationBoxesFlaggedInvalidQuery, notificationCollectionReference, notificationCollectionReferenceFactory, notificationConverter, notificationFirestoreCollectionFactory, notificationFirestoreCollectionGroup, notificationFunctionMap, notificationFunctionTypeConfigMap, notificationIdentity, notificationMessageFunction, notificationSendExclusionCanSendFunction, notificationSendFlagsImplyIsComplete, notificationSummariesFlaggedForNeedsInitializationQuery, notificationSummaryCollectionReference, notificationSummaryConverter, notificationSummaryFirestoreCollection, notificationSummaryIdForModel, notificationSummaryIdForUidFunctionForRootFirestoreModelIdentity, notificationSummaryIdentity, notificationTaskComplete, notificationTaskFailed, notificationTaskPartiallyComplete, notificationTaskUniqueId, notificationTemplateTypeDetailsRecord, notificationTemplateTypeInfoRecord, notificationUserCollectionReference, notificationUserConverter, notificationUserFirestoreCollection, notificationUserHasExclusionQuery, notificationUserIdentity, notificationUsersFlaggedForNeedsSyncQuery, notificationWeekCollectionReference, notificationWeekCollectionReferenceFactory, notificationWeekConverter, notificationWeekFirestoreCollectionFactory, notificationWeekFirestoreCollectionGroup, notificationWeekIdentity, notificationsPastSendAtTimeQuery, notificationsReadyForCleanupQuery, offset, onCallCreateModelParams, onCallCreateModelResult, onCallCreateModelResultWithDocs, onCallDeleteModelParams, onCallDevelopmentParams, onCallReadModelParams, onCallTypedModelParams, onCallTypedModelParamsFunction, onCallUpdateModelParams, optionalFirestoreArray, optionalFirestoreBoolean, optionalFirestoreDate, optionalFirestoreEnum, optionalFirestoreField, optionalFirestoreNumber, optionalFirestoreString, optionalFirestoreUID, optionalFirestoreUnitedStatesAddress, orderBy, orderByDocumentId, readFirestoreModelKey, readFirestoreModelKeyFromDocumentSnapshot, replaceConstraints, selectFromFirebaseModelsService, separateConstraints, setIdAndKeyFromKeyIdRefOnDocumentData, setIdAndKeyFromSnapshotOnDocumentData, shouldSaveNotificationToNotificationWeek, shouldSendCreatedNotificationInput, snapshotConverterFunctions, snapshotStreamDataForAccessor, snapshotStreamForAccessor, sortNotificationItemsFunction, startAfter, startAt, startAtValue, storageListFilesResultFactory, storageListFilesResultHasNoNextError, storagePathFactory, streamFromOnSnapshot, systemStateCollectionReference, systemStateConverter, systemStateFirestoreCollection, systemStateIdentity, twoWayFlatFirestoreModelKey, unreadNotificationItems, unsupportedFirestoreDriverFunctionError, updateNotificationBoxRecipientTemplateConfigRecord, updateNotificationRecipient, updateNotificationUserDefaultNotificationBoxRecipientConfig, updateNotificationUserNotificationBoxRecipientConfigIfChanged, updateNotificationUserNotificationBoxRecipientConfigs, updateNotificationUserNotificationSendExclusions, updateWithAccessorUpdateAndConverterFunction, useContextAuth, useContextAuthUid, useDocumentSnapshot, useDocumentSnapshotData, useFirebaseModelsService, where, whereDateIsAfter, whereDateIsAfterWithSort, whereDateIsBefore, whereDateIsBeforeWithSort, whereDateIsBetween, whereDateIsInRange, whereDateIsOnOrAfter, whereDateIsOnOrAfterWithSort, whereDateIsOnOrBefore, whereDateIsOnOrBeforeWithSort, whereDocumentId, whereStringHasRootIdentityModelKey, whereStringValueHasPrefix };