@dereekb/firebase 13.12.3 → 13.12.5
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/eslint/index.cjs.js +1586 -50
- package/eslint/index.esm.js +1540 -7
- package/eslint/package.json +3 -3
- package/eslint/src/lib/index.d.ts +2 -0
- package/eslint/src/lib/plugin.d.ts +4 -0
- package/eslint/src/lib/require-api-crud-spec-for-group.rule.d.ts +47 -0
- package/eslint/src/lib/require-canonical-api-spec-filename.rule.d.ts +55 -0
- package/eslint/src/lib/require-complete-crud-function-config-map.rule.d.ts +1 -1
- package/index.cjs.js +304 -85
- package/index.esm.js +299 -87
- package/package.json +5 -5
- package/src/lib/client/error/error.d.ts +6 -0
- package/src/lib/client/function/error.d.ts +6 -0
- package/src/lib/client/function/function.callable.d.ts +6 -0
- package/src/lib/common/auth/auth.d.ts +70 -0
- package/src/lib/common/auth/auth.error.d.ts +6 -0
- package/src/lib/model/oidcmodel/oidcmodel.api.d.ts +4 -2
- package/src/lib/model/oidcmodel/oidcmodel.interaction.d.ts +106 -2
- package/test/package.json +6 -6
package/index.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { increment, arrayRemove, arrayUnion, onSnapshot, getDoc, deleteDoc, setDoc, updateDoc, collection, collectionGroup, doc, writeBatch, runTransaction, limit as limit$1, limitToLast as limitToLast$1, orderBy as orderBy$1, documentId, where as where$1, startAt as startAt$1, startAfter as startAfter$1, endAt as endAt$1, endBefore as endBefore$1, query, getDocs, getCountFromServer } from 'firebase/firestore';
|
|
2
|
-
import { cachedGetter, mergeModifiers, asArray, filterUndefinedValues, objectHasNoKeys, filterFalsyAndEmptyValues, build, compareStringsNumeric, wrapUseAsyncFunction, runAsyncTasksForValues, filterMaybeArrayValues, performMakeLoop, makeWithFactory, useAsync, MAP_IDENTITY, toModelFieldConversions, makeModelMapFunctions, modifyModelMapFunctions, assignValuesToPOJOFunction, KeyValueTypleValueFilter, toModelMapFunctions, asObjectCopyFactory, isEqualToValueDecisionFunction, passThrough, filterUniqueTransform, unique, transformStringFunctionConfig, transformStringFunction, sortValuesFunctionOrMapIdentityWithSortRef, bitwiseSetDencoder, sortAscendingIndexNumberRefFunction, filterFromPOJOFunction, mapObjectMap, copyObject, modelFieldMapFunctions, latLngStringFunction, DEFAULT_LAT_LNG_STRING_VALUE, mapObjectMapFunction, filterEmptyArrayValues, transformNumberFunction, filterUniqueFunction, dateFromDateOrTimeSecondsNumber, unixDateTimeSecondsNumberFromDate, isMapIdentityFunction, chainMapSameFunctions, isDate, filterNullAndUndefinedValues, pushItemOrArrayItemsIntoArray, separateValues, convertToArray, UTF_PRIVATE_USAGE_AREA_START, UTF_8_START_CHARACTER, mergeArraysIntoArray, lastValue, flattenArrayOrValueArray, allowValueOnceFilter, asGetter, getValueFromGetter, mapIdentityFunction, performTasksFromFactoryInParallelFunction, performAsyncTasks, batch, flattenArray, calculateExpirationDate, groupValues, forEachInIterable, arrayToObject, takeFront, stringContains, isOddNumber, objectToMap, ServerErrorResponse, toReadableError, capitalizeFirstLetter, lowercaseFirstLetter, toRelativeSlashPathStartType, mappedUseFunction, iterableToArray, setContainsAllValues, usePromise, slashPathFactory, errorMessageContainsString, bitwiseObjectDencoder, mergeObjectsFunction, mergeObjects, forEachKeyValue, updateMaybeValue, UNSET_INDEX_NUMBER, ModelRelationUtility, filterKeysOnPOJOFunction, areEqualPOJOValuesUsingPojoFilter, filterOnlyUndefinedValues, makeModelMap, isThrottled, MS_IN_HOUR, multiValueMapBuilder, mergeSlashPaths, slashPathDetails, toAbsoluteSlashPathStartType, SLASH_PATH_FILE_TYPE_SEPARATOR, slashPathPathMatcher, decisionFunction, slashPathSubPathMatcher } from '@dereekb/util';
|
|
2
|
+
import { cachedGetter, mergeModifiers, asArray, filterUndefinedValues, objectHasNoKeys, filterFalsyAndEmptyValues, build, compareStringsNumeric, wrapUseAsyncFunction, runAsyncTasksForValues, filterMaybeArrayValues, performMakeLoop, makeWithFactory, useAsync, MAP_IDENTITY, toModelFieldConversions, makeModelMapFunctions, modifyModelMapFunctions, assignValuesToPOJOFunction, KeyValueTypleValueFilter, toModelMapFunctions, asObjectCopyFactory, isEqualToValueDecisionFunction, passThrough, filterUniqueTransform, unique, transformStringFunctionConfig, transformStringFunction, sortValuesFunctionOrMapIdentityWithSortRef, bitwiseSetDencoder, sortAscendingIndexNumberRefFunction, filterFromPOJOFunction, mapObjectMap, copyObject, modelFieldMapFunctions, latLngStringFunction, DEFAULT_LAT_LNG_STRING_VALUE, mapObjectMapFunction, filterEmptyArrayValues, transformNumberFunction, filterUniqueFunction, dateFromDateOrTimeSecondsNumber, unixDateTimeSecondsNumberFromDate, isMapIdentityFunction, chainMapSameFunctions, isDate, filterNullAndUndefinedValues, pushItemOrArrayItemsIntoArray, separateValues, convertToArray, UTF_PRIVATE_USAGE_AREA_START, UTF_8_START_CHARACTER, mergeArraysIntoArray, lastValue, flattenArrayOrValueArray, allowValueOnceFilter, asGetter, getValueFromGetter, mapIdentityFunction, performTasksFromFactoryInParallelFunction, performAsyncTasks, batch, flattenArray, calculateExpirationDate, groupValues, forEachInIterable, arrayToObject, takeFront, stringContains, isOddNumber, objectToMap, ServerErrorResponse, toReadableError, capitalizeFirstLetter, lowercaseFirstLetter, toRelativeSlashPathStartType, splitStringAtFirstCharacterOccurence, mappedUseFunction, iterableToArray, setContainsAllValues, usePromise, slashPathFactory, errorMessageContainsString, bitwiseObjectDencoder, mergeObjectsFunction, mergeObjects, forEachKeyValue, updateMaybeValue, UNSET_INDEX_NUMBER, ModelRelationUtility, filterKeysOnPOJOFunction, areEqualPOJOValuesUsingPojoFilter, filterOnlyUndefinedValues, makeModelMap, isThrottled, MS_IN_HOUR, multiValueMapBuilder, mergeSlashPaths, slashPathDetails, toAbsoluteSlashPathStartType, SLASH_PATH_FILE_TYPE_SEPARATOR, slashPathPathMatcher, decisionFunction, slashPathSubPathMatcher } from '@dereekb/util';
|
|
3
3
|
import { filterMaybe, lazyFrom, itemAccumulator, ItemPageIterator, mappedPageItemIteration } from '@dereekb/rxjs';
|
|
4
4
|
import { map, from, EMPTY, tap, combineLatest, of, Subject, filter, exhaustMap, Observable, switchMap, timer, skip, shareReplay } from 'rxjs';
|
|
5
5
|
import { UNKNOWN_WEBSITE_LINK_TYPE, encodeWebsiteFileLinkToWebsiteLinkEncodedData, decodeWebsiteLinkEncodedDataToWebsiteFileLink, clearable, AbstractModelPermissionService, grantedRoleMapReader, noAccessRoleMap, fullAccessRoleMap, e164PhoneNumberType, ARKTYPE_DATE_DTO_TYPE } from '@dereekb/model';
|
|
@@ -25,6 +25,12 @@ function _type_of$c(obj) {
|
|
|
25
25
|
* @param error - The value to check.
|
|
26
26
|
* @returns `true` if the input matches the shape of a client-side `FirebaseError`
|
|
27
27
|
*
|
|
28
|
+
* @dbxUtil
|
|
29
|
+
* @dbxUtilCategory firebase-error
|
|
30
|
+
* @dbxUtilKind function
|
|
31
|
+
* @dbxUtilTags firebase, client, error, type-guard, callable
|
|
32
|
+
* @dbxUtilRelated convert-https-callable-error-to-readable-error, firebase-server-error
|
|
33
|
+
*
|
|
28
34
|
* @example
|
|
29
35
|
* ```ts
|
|
30
36
|
* try {
|
|
@@ -1740,12 +1746,12 @@ var AbstractFirestoreDocumentWithParent = /*#__PURE__*/ function(AbstractFiresto
|
|
|
1740
1746
|
x.loadDocumentForWriteBatch = singleAccessor.loadDocumentForWriteBatch;
|
|
1741
1747
|
}
|
|
1742
1748
|
|
|
1743
|
-
function _array_like_to_array$
|
|
1749
|
+
function _array_like_to_array$h(arr, len) {
|
|
1744
1750
|
if (len == null || len > arr.length) len = arr.length;
|
|
1745
1751
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
1746
1752
|
return arr2;
|
|
1747
1753
|
}
|
|
1748
|
-
function _array_with_holes$
|
|
1754
|
+
function _array_with_holes$5(arr) {
|
|
1749
1755
|
if (Array.isArray(arr)) return arr;
|
|
1750
1756
|
}
|
|
1751
1757
|
function asyncGeneratorStep$k(gen, resolve, reject, _next, _throw, key, arg) {
|
|
@@ -1777,7 +1783,7 @@ function _async_to_generator$k(fn) {
|
|
|
1777
1783
|
});
|
|
1778
1784
|
};
|
|
1779
1785
|
}
|
|
1780
|
-
function _iterable_to_array_limit$
|
|
1786
|
+
function _iterable_to_array_limit$5(arr, i) {
|
|
1781
1787
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
1782
1788
|
if (_i == null) return;
|
|
1783
1789
|
var _arr = [];
|
|
@@ -1801,19 +1807,19 @@ function _iterable_to_array_limit$4(arr, i) {
|
|
|
1801
1807
|
}
|
|
1802
1808
|
return _arr;
|
|
1803
1809
|
}
|
|
1804
|
-
function _non_iterable_rest$
|
|
1810
|
+
function _non_iterable_rest$5() {
|
|
1805
1811
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
1806
1812
|
}
|
|
1807
|
-
function _sliced_to_array$
|
|
1808
|
-
return _array_with_holes$
|
|
1813
|
+
function _sliced_to_array$5(arr, i) {
|
|
1814
|
+
return _array_with_holes$5(arr) || _iterable_to_array_limit$5(arr, i) || _unsupported_iterable_to_array$h(arr, i) || _non_iterable_rest$5();
|
|
1809
1815
|
}
|
|
1810
|
-
function _unsupported_iterable_to_array$
|
|
1816
|
+
function _unsupported_iterable_to_array$h(o, minLen) {
|
|
1811
1817
|
if (!o) return;
|
|
1812
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
1818
|
+
if (typeof o === "string") return _array_like_to_array$h(o, minLen);
|
|
1813
1819
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
1814
1820
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
1815
1821
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
1816
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
1822
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$h(o, minLen);
|
|
1817
1823
|
}
|
|
1818
1824
|
function _ts_generator$k(thisArg, body) {
|
|
1819
1825
|
var f, y, t, _ = {
|
|
@@ -1969,7 +1975,7 @@ function _ts_generator$k(thisArg, body) {
|
|
|
1969
1975
|
var _iteratorNormalCompletion1 = true, _didIteratorError1 = false, _iteratorError1 = undefined;
|
|
1970
1976
|
try {
|
|
1971
1977
|
for(var _iterator1 = pageBuckets[Symbol.iterator](), _step1; !(_iteratorNormalCompletion1 = (_step1 = _iterator1.next()).done); _iteratorNormalCompletion1 = true){
|
|
1972
|
-
var _step_value = _sliced_to_array$
|
|
1978
|
+
var _step_value = _sliced_to_array$5(_step1.value, 2), pageId2 = _step_value[0], pageItems = _step_value[1];
|
|
1973
1979
|
if (pageItems.length === 0) {
|
|
1974
1980
|
continue;
|
|
1975
1981
|
}
|
|
@@ -5676,13 +5682,13 @@ function firebaseQueryItemAccumulator(iteration, mapItem) {
|
|
|
5676
5682
|
return firebaseQuerySnapshotAccumulator(iteration, mapFn);
|
|
5677
5683
|
}
|
|
5678
5684
|
|
|
5679
|
-
function _array_like_to_array$
|
|
5685
|
+
function _array_like_to_array$g(arr, len) {
|
|
5680
5686
|
if (len == null || len > arr.length) len = arr.length;
|
|
5681
5687
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
5682
5688
|
return arr2;
|
|
5683
5689
|
}
|
|
5684
5690
|
function _array_without_holes$b(arr) {
|
|
5685
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
5691
|
+
if (Array.isArray(arr)) return _array_like_to_array$g(arr);
|
|
5686
5692
|
}
|
|
5687
5693
|
function _iterable_to_array$b(iter) {
|
|
5688
5694
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -5691,15 +5697,15 @@ function _non_iterable_spread$b() {
|
|
|
5691
5697
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
5692
5698
|
}
|
|
5693
5699
|
function _to_consumable_array$b(arr) {
|
|
5694
|
-
return _array_without_holes$b(arr) || _iterable_to_array$b(arr) || _unsupported_iterable_to_array$
|
|
5700
|
+
return _array_without_holes$b(arr) || _iterable_to_array$b(arr) || _unsupported_iterable_to_array$g(arr) || _non_iterable_spread$b();
|
|
5695
5701
|
}
|
|
5696
|
-
function _unsupported_iterable_to_array$
|
|
5702
|
+
function _unsupported_iterable_to_array$g(o, minLen) {
|
|
5697
5703
|
if (!o) return;
|
|
5698
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
5704
|
+
if (typeof o === "string") return _array_like_to_array$g(o, minLen);
|
|
5699
5705
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
5700
5706
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
5701
5707
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
5702
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
5708
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$g(o, minLen);
|
|
5703
5709
|
}
|
|
5704
5710
|
/**
|
|
5705
5711
|
* Creates a {@link FirestoreQueryConstraint} with the given type identifier and data.
|
|
@@ -6275,13 +6281,13 @@ function whereDateIsBeforeWithSort(fieldPath) {
|
|
|
6275
6281
|
];
|
|
6276
6282
|
}
|
|
6277
6283
|
|
|
6278
|
-
function _array_like_to_array$
|
|
6284
|
+
function _array_like_to_array$f(arr, len) {
|
|
6279
6285
|
if (len == null || len > arr.length) len = arr.length;
|
|
6280
6286
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
6281
6287
|
return arr2;
|
|
6282
6288
|
}
|
|
6283
6289
|
function _array_without_holes$a(arr) {
|
|
6284
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
6290
|
+
if (Array.isArray(arr)) return _array_like_to_array$f(arr);
|
|
6285
6291
|
}
|
|
6286
6292
|
function _define_property$t(obj, key, value) {
|
|
6287
6293
|
if (key in obj) {
|
|
@@ -6337,15 +6343,15 @@ function _object_spread_props$j(target, source) {
|
|
|
6337
6343
|
return target;
|
|
6338
6344
|
}
|
|
6339
6345
|
function _to_consumable_array$a(arr) {
|
|
6340
|
-
return _array_without_holes$a(arr) || _iterable_to_array$a(arr) || _unsupported_iterable_to_array$
|
|
6346
|
+
return _array_without_holes$a(arr) || _iterable_to_array$a(arr) || _unsupported_iterable_to_array$f(arr) || _non_iterable_spread$a();
|
|
6341
6347
|
}
|
|
6342
|
-
function _unsupported_iterable_to_array$
|
|
6348
|
+
function _unsupported_iterable_to_array$f(o, minLen) {
|
|
6343
6349
|
if (!o) return;
|
|
6344
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
6350
|
+
if (typeof o === "string") return _array_like_to_array$f(o, minLen);
|
|
6345
6351
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
6346
6352
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
6347
6353
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
6348
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
6354
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$f(o, minLen);
|
|
6349
6355
|
}
|
|
6350
6356
|
/**
|
|
6351
6357
|
* Filters out constraints that should not be directly specified in pagination queries.
|
|
@@ -6687,13 +6693,13 @@ function _firestoreItemPageIterationWithSnapshotIteration(snapshotIteration) {
|
|
|
6687
6693
|
return _firestoreItemPageIterationWithSnapshotIteration(snapshotIteration);
|
|
6688
6694
|
}
|
|
6689
6695
|
|
|
6690
|
-
function _array_like_to_array$
|
|
6696
|
+
function _array_like_to_array$e(arr, len) {
|
|
6691
6697
|
if (len == null || len > arr.length) len = arr.length;
|
|
6692
6698
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
6693
6699
|
return arr2;
|
|
6694
6700
|
}
|
|
6695
6701
|
function _array_without_holes$9(arr) {
|
|
6696
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
6702
|
+
if (Array.isArray(arr)) return _array_like_to_array$e(arr);
|
|
6697
6703
|
}
|
|
6698
6704
|
function asyncGeneratorStep$h(gen, resolve, reject, _next, _throw, key, arg) {
|
|
6699
6705
|
try {
|
|
@@ -6731,15 +6737,15 @@ function _non_iterable_spread$9() {
|
|
|
6731
6737
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
6732
6738
|
}
|
|
6733
6739
|
function _to_consumable_array$9(arr) {
|
|
6734
|
-
return _array_without_holes$9(arr) || _iterable_to_array$9(arr) || _unsupported_iterable_to_array$
|
|
6740
|
+
return _array_without_holes$9(arr) || _iterable_to_array$9(arr) || _unsupported_iterable_to_array$e(arr) || _non_iterable_spread$9();
|
|
6735
6741
|
}
|
|
6736
|
-
function _unsupported_iterable_to_array$
|
|
6742
|
+
function _unsupported_iterable_to_array$e(o, minLen) {
|
|
6737
6743
|
if (!o) return;
|
|
6738
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
6744
|
+
if (typeof o === "string") return _array_like_to_array$e(o, minLen);
|
|
6739
6745
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
6740
6746
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
6741
6747
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
6742
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
6748
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$e(o, minLen);
|
|
6743
6749
|
}
|
|
6744
6750
|
function _ts_generator$h(thisArg, body) {
|
|
6745
6751
|
var f, y, t, _ = {
|
|
@@ -7010,12 +7016,12 @@ function _ts_generator$h(thisArg, body) {
|
|
|
7010
7016
|
return snapshot.ref.path;
|
|
7011
7017
|
}
|
|
7012
7018
|
|
|
7013
|
-
function _array_like_to_array$
|
|
7019
|
+
function _array_like_to_array$d(arr, len) {
|
|
7014
7020
|
if (len == null || len > arr.length) len = arr.length;
|
|
7015
7021
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
7016
7022
|
return arr2;
|
|
7017
7023
|
}
|
|
7018
|
-
function _array_with_holes$
|
|
7024
|
+
function _array_with_holes$4(arr) {
|
|
7019
7025
|
if (Array.isArray(arr)) return arr;
|
|
7020
7026
|
}
|
|
7021
7027
|
function asyncGeneratorStep$g(gen, resolve, reject, _next, _throw, key, arg) {
|
|
@@ -7060,7 +7066,7 @@ function _define_property$s(obj, key, value) {
|
|
|
7060
7066
|
}
|
|
7061
7067
|
return obj;
|
|
7062
7068
|
}
|
|
7063
|
-
function _iterable_to_array_limit$
|
|
7069
|
+
function _iterable_to_array_limit$4(arr, i) {
|
|
7064
7070
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
7065
7071
|
if (_i == null) return;
|
|
7066
7072
|
var _arr = [];
|
|
@@ -7084,7 +7090,7 @@ function _iterable_to_array_limit$3(arr, i) {
|
|
|
7084
7090
|
}
|
|
7085
7091
|
return _arr;
|
|
7086
7092
|
}
|
|
7087
|
-
function _non_iterable_rest$
|
|
7093
|
+
function _non_iterable_rest$4() {
|
|
7088
7094
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
7089
7095
|
}
|
|
7090
7096
|
function _object_spread$m(target) {
|
|
@@ -7121,16 +7127,16 @@ function _object_spread_props$i(target, source) {
|
|
|
7121
7127
|
}
|
|
7122
7128
|
return target;
|
|
7123
7129
|
}
|
|
7124
|
-
function _sliced_to_array$
|
|
7125
|
-
return _array_with_holes$
|
|
7130
|
+
function _sliced_to_array$4(arr, i) {
|
|
7131
|
+
return _array_with_holes$4(arr) || _iterable_to_array_limit$4(arr, i) || _unsupported_iterable_to_array$d(arr, i) || _non_iterable_rest$4();
|
|
7126
7132
|
}
|
|
7127
|
-
function _unsupported_iterable_to_array$
|
|
7133
|
+
function _unsupported_iterable_to_array$d(o, minLen) {
|
|
7128
7134
|
if (!o) return;
|
|
7129
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
7135
|
+
if (typeof o === "string") return _array_like_to_array$d(o, minLen);
|
|
7130
7136
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
7131
7137
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
7132
7138
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
7133
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
7139
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$d(o, minLen);
|
|
7134
7140
|
}
|
|
7135
7141
|
function _ts_generator$g(thisArg, body) {
|
|
7136
7142
|
var f, y, t, _ = {
|
|
@@ -7464,7 +7470,7 @@ function _ts_generator$g(thisArg, body) {
|
|
|
7464
7470
|
case 1:
|
|
7465
7471
|
performTasksResult = _state.sent();
|
|
7466
7472
|
result = performTasksResult.results.map(function(param, i) {
|
|
7467
|
-
var _param = _sliced_to_array$
|
|
7473
|
+
var _param = _sliced_to_array$4(param, 2), snapshots = _param[0], batchResult = _param[1];
|
|
7468
7474
|
return {
|
|
7469
7475
|
snapshots: snapshots,
|
|
7470
7476
|
result: batchResult,
|
|
@@ -8194,13 +8200,13 @@ function _ts_generator$f(thisArg, body) {
|
|
|
8194
8200
|
return type;
|
|
8195
8201
|
}
|
|
8196
8202
|
|
|
8197
|
-
function _array_like_to_array$
|
|
8203
|
+
function _array_like_to_array$c(arr, len) {
|
|
8198
8204
|
if (len == null || len > arr.length) len = arr.length;
|
|
8199
8205
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
8200
8206
|
return arr2;
|
|
8201
8207
|
}
|
|
8202
8208
|
function _array_without_holes$8(arr) {
|
|
8203
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
8209
|
+
if (Array.isArray(arr)) return _array_like_to_array$c(arr);
|
|
8204
8210
|
}
|
|
8205
8211
|
function asyncGeneratorStep$e(gen, resolve, reject, _next, _throw, key, arg) {
|
|
8206
8212
|
try {
|
|
@@ -8238,15 +8244,15 @@ function _non_iterable_spread$8() {
|
|
|
8238
8244
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
8239
8245
|
}
|
|
8240
8246
|
function _to_consumable_array$8(arr) {
|
|
8241
|
-
return _array_without_holes$8(arr) || _iterable_to_array$8(arr) || _unsupported_iterable_to_array$
|
|
8247
|
+
return _array_without_holes$8(arr) || _iterable_to_array$8(arr) || _unsupported_iterable_to_array$c(arr) || _non_iterable_spread$8();
|
|
8242
8248
|
}
|
|
8243
|
-
function _unsupported_iterable_to_array$
|
|
8249
|
+
function _unsupported_iterable_to_array$c(o, minLen) {
|
|
8244
8250
|
if (!o) return;
|
|
8245
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
8251
|
+
if (typeof o === "string") return _array_like_to_array$c(o, minLen);
|
|
8246
8252
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
8247
8253
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
8248
8254
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
8249
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
8255
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$c(o, minLen);
|
|
8250
8256
|
}
|
|
8251
8257
|
function _ts_generator$e(thisArg, body) {
|
|
8252
8258
|
var f, y, t, _ = {
|
|
@@ -8483,13 +8489,13 @@ function _ts_generator$e(thisArg, body) {
|
|
|
8483
8489
|
};
|
|
8484
8490
|
}
|
|
8485
8491
|
|
|
8486
|
-
function _array_like_to_array$
|
|
8492
|
+
function _array_like_to_array$b(arr, len) {
|
|
8487
8493
|
if (len == null || len > arr.length) len = arr.length;
|
|
8488
8494
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
8489
8495
|
return arr2;
|
|
8490
8496
|
}
|
|
8491
8497
|
function _array_without_holes$7(arr) {
|
|
8492
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
8498
|
+
if (Array.isArray(arr)) return _array_like_to_array$b(arr);
|
|
8493
8499
|
}
|
|
8494
8500
|
function _define_property$r(obj, key, value) {
|
|
8495
8501
|
if (key in obj) {
|
|
@@ -8545,19 +8551,19 @@ function _object_spread_props$h(target, source) {
|
|
|
8545
8551
|
return target;
|
|
8546
8552
|
}
|
|
8547
8553
|
function _to_consumable_array$7(arr) {
|
|
8548
|
-
return _array_without_holes$7(arr) || _iterable_to_array$7(arr) || _unsupported_iterable_to_array$
|
|
8554
|
+
return _array_without_holes$7(arr) || _iterable_to_array$7(arr) || _unsupported_iterable_to_array$b(arr) || _non_iterable_spread$7();
|
|
8549
8555
|
}
|
|
8550
8556
|
function _type_of$9(obj) {
|
|
8551
8557
|
"@swc/helpers - typeof";
|
|
8552
8558
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
8553
8559
|
}
|
|
8554
|
-
function _unsupported_iterable_to_array$
|
|
8560
|
+
function _unsupported_iterable_to_array$b(o, minLen) {
|
|
8555
8561
|
if (!o) return;
|
|
8556
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
8562
|
+
if (typeof o === "string") return _array_like_to_array$b(o, minLen);
|
|
8557
8563
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
8558
8564
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
8559
8565
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
8560
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
8566
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$b(o, minLen);
|
|
8561
8567
|
}
|
|
8562
8568
|
/**
|
|
8563
8569
|
* Separator used in Firestore paths to separate collection and document IDs.
|
|
@@ -9420,13 +9426,13 @@ function _object_spread_props$f(target, source) {
|
|
|
9420
9426
|
});
|
|
9421
9427
|
}
|
|
9422
9428
|
|
|
9423
|
-
function _array_like_to_array$
|
|
9429
|
+
function _array_like_to_array$a(arr, len) {
|
|
9424
9430
|
if (len == null || len > arr.length) len = arr.length;
|
|
9425
9431
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
9426
9432
|
return arr2;
|
|
9427
9433
|
}
|
|
9428
9434
|
function _array_without_holes$6(arr) {
|
|
9429
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
9435
|
+
if (Array.isArray(arr)) return _array_like_to_array$a(arr);
|
|
9430
9436
|
}
|
|
9431
9437
|
function _define_property$o(obj, key, value) {
|
|
9432
9438
|
if (key in obj) {
|
|
@@ -9482,15 +9488,15 @@ function _object_spread_props$e(target, source) {
|
|
|
9482
9488
|
return target;
|
|
9483
9489
|
}
|
|
9484
9490
|
function _to_consumable_array$6(arr) {
|
|
9485
|
-
return _array_without_holes$6(arr) || _iterable_to_array$6(arr) || _unsupported_iterable_to_array$
|
|
9491
|
+
return _array_without_holes$6(arr) || _iterable_to_array$6(arr) || _unsupported_iterable_to_array$a(arr) || _non_iterable_spread$6();
|
|
9486
9492
|
}
|
|
9487
|
-
function _unsupported_iterable_to_array$
|
|
9493
|
+
function _unsupported_iterable_to_array$a(o, minLen) {
|
|
9488
9494
|
if (!o) return;
|
|
9489
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
9495
|
+
if (typeof o === "string") return _array_like_to_array$a(o, minLen);
|
|
9490
9496
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
9491
9497
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
9492
9498
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
9493
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
9499
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$a(o, minLen);
|
|
9494
9500
|
}
|
|
9495
9501
|
/**
|
|
9496
9502
|
* Creates a factory function for generating FirestoreContext instances.
|
|
@@ -9858,13 +9864,13 @@ function _ts_generator$d(thisArg, body) {
|
|
|
9858
9864
|
});
|
|
9859
9865
|
}
|
|
9860
9866
|
|
|
9861
|
-
function _array_like_to_array$
|
|
9867
|
+
function _array_like_to_array$9(arr, len) {
|
|
9862
9868
|
if (len == null || len > arr.length) len = arr.length;
|
|
9863
9869
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
9864
9870
|
return arr2;
|
|
9865
9871
|
}
|
|
9866
9872
|
function _array_without_holes$5(arr) {
|
|
9867
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
9873
|
+
if (Array.isArray(arr)) return _array_like_to_array$9(arr);
|
|
9868
9874
|
}
|
|
9869
9875
|
function _define_property$n(obj, key, value) {
|
|
9870
9876
|
if (key in obj) {
|
|
@@ -9901,15 +9907,15 @@ function _object_spread$h(target) {
|
|
|
9901
9907
|
return target;
|
|
9902
9908
|
}
|
|
9903
9909
|
function _to_consumable_array$5(arr) {
|
|
9904
|
-
return _array_without_holes$5(arr) || _iterable_to_array$5(arr) || _unsupported_iterable_to_array$
|
|
9910
|
+
return _array_without_holes$5(arr) || _iterable_to_array$5(arr) || _unsupported_iterable_to_array$9(arr) || _non_iterable_spread$5();
|
|
9905
9911
|
}
|
|
9906
|
-
function _unsupported_iterable_to_array$
|
|
9912
|
+
function _unsupported_iterable_to_array$9(o, minLen) {
|
|
9907
9913
|
if (!o) return;
|
|
9908
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
9914
|
+
if (typeof o === "string") return _array_like_to_array$9(o, minLen);
|
|
9909
9915
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
9910
9916
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
9911
9917
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
9912
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
9918
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$9(o, minLen);
|
|
9913
9919
|
}
|
|
9914
9920
|
/**
|
|
9915
9921
|
* Converts a {@link FirestoreAccessorArrayUpdate} into Firestore `UpdateData` using the
|
|
@@ -10687,13 +10693,13 @@ function _ts_generator$c(thisArg, body) {
|
|
|
10687
10693
|
};
|
|
10688
10694
|
}
|
|
10689
10695
|
|
|
10690
|
-
function _array_like_to_array$
|
|
10696
|
+
function _array_like_to_array$8(arr, len) {
|
|
10691
10697
|
if (len == null || len > arr.length) len = arr.length;
|
|
10692
10698
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
10693
10699
|
return arr2;
|
|
10694
10700
|
}
|
|
10695
10701
|
function _array_without_holes$4(arr) {
|
|
10696
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
10702
|
+
if (Array.isArray(arr)) return _array_like_to_array$8(arr);
|
|
10697
10703
|
}
|
|
10698
10704
|
function _define_property$j(obj, key, value) {
|
|
10699
10705
|
if (key in obj) {
|
|
@@ -10749,15 +10755,15 @@ function _object_spread_props$d(target, source) {
|
|
|
10749
10755
|
return target;
|
|
10750
10756
|
}
|
|
10751
10757
|
function _to_consumable_array$4(arr) {
|
|
10752
|
-
return _array_without_holes$4(arr) || _iterable_to_array$4(arr) || _unsupported_iterable_to_array$
|
|
10758
|
+
return _array_without_holes$4(arr) || _iterable_to_array$4(arr) || _unsupported_iterable_to_array$8(arr) || _non_iterable_spread$4();
|
|
10753
10759
|
}
|
|
10754
|
-
function _unsupported_iterable_to_array$
|
|
10760
|
+
function _unsupported_iterable_to_array$8(o, minLen) {
|
|
10755
10761
|
if (!o) return;
|
|
10756
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
10762
|
+
if (typeof o === "string") return _array_like_to_array$8(o, minLen);
|
|
10757
10763
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
10758
10764
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
10759
10765
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
10760
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
10766
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$8(o, minLen);
|
|
10761
10767
|
}
|
|
10762
10768
|
/**
|
|
10763
10769
|
* Appends one or more `QueryConstraint` values to the builder, returning a new builder instance.
|
|
@@ -11023,6 +11029,12 @@ function _is_native_reflect_construct$6() {
|
|
|
11023
11029
|
* Typically created via {@link convertHttpsCallableErrorToReadableError} when an `HttpsCallable`
|
|
11024
11030
|
* invocation fails with a server-side error that includes structured details.
|
|
11025
11031
|
*
|
|
11032
|
+
* @dbxUtil
|
|
11033
|
+
* @dbxUtilCategory firebase-error
|
|
11034
|
+
* @dbxUtilKind class
|
|
11035
|
+
* @dbxUtilTags firebase, https, callable, error, server-error, client, response, details
|
|
11036
|
+
* @dbxUtilRelated convert-https-callable-error-to-readable-error, is-client-firebase-error
|
|
11037
|
+
*
|
|
11026
11038
|
* @example
|
|
11027
11039
|
* ```ts
|
|
11028
11040
|
* try {
|
|
@@ -11342,6 +11354,12 @@ function mapHttpsCallable(callable, wrap) {
|
|
|
11342
11354
|
*
|
|
11343
11355
|
* @param error - The caught error from an `HttpsCallable` invocation.
|
|
11344
11356
|
* @returns A {@link FirebaseServerError} if the error has structured details, or a generic readable error otherwise.
|
|
11357
|
+
*
|
|
11358
|
+
* @dbxUtil
|
|
11359
|
+
* @dbxUtilCategory firebase-error
|
|
11360
|
+
* @dbxUtilKind function
|
|
11361
|
+
* @dbxUtilTags firebase, https, callable, error, decode, convert, readable, client, server
|
|
11362
|
+
* @dbxUtilRelated firebase-server-error, is-client-firebase-error, firebase-auth-error-to-readable-error
|
|
11345
11363
|
*/ function convertHttpsCallableErrorToReadableError(error) {
|
|
11346
11364
|
var result;
|
|
11347
11365
|
if ((typeof error === "undefined" ? "undefined" : _type_of$6(error)) === 'object') {
|
|
@@ -11533,15 +11551,15 @@ function onCallTypedModelParams(modelTypeInput, data, specifier, call) {
|
|
|
11533
11551
|
return onCallTypedModelParamsFunction(call)(modelTypeInput, data, specifier);
|
|
11534
11552
|
}
|
|
11535
11553
|
|
|
11536
|
-
function _array_like_to_array$
|
|
11554
|
+
function _array_like_to_array$7(arr, len) {
|
|
11537
11555
|
if (len == null || len > arr.length) len = arr.length;
|
|
11538
11556
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
11539
11557
|
return arr2;
|
|
11540
11558
|
}
|
|
11541
|
-
function _array_with_holes$
|
|
11559
|
+
function _array_with_holes$3(arr) {
|
|
11542
11560
|
if (Array.isArray(arr)) return arr;
|
|
11543
11561
|
}
|
|
11544
|
-
function _iterable_to_array_limit$
|
|
11562
|
+
function _iterable_to_array_limit$3(arr, i) {
|
|
11545
11563
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
11546
11564
|
if (_i == null) return;
|
|
11547
11565
|
var _arr = [];
|
|
@@ -11565,19 +11583,19 @@ function _iterable_to_array_limit$2(arr, i) {
|
|
|
11565
11583
|
}
|
|
11566
11584
|
return _arr;
|
|
11567
11585
|
}
|
|
11568
|
-
function _non_iterable_rest$
|
|
11586
|
+
function _non_iterable_rest$3() {
|
|
11569
11587
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
11570
11588
|
}
|
|
11571
|
-
function _sliced_to_array$
|
|
11572
|
-
return _array_with_holes$
|
|
11589
|
+
function _sliced_to_array$3(arr, i) {
|
|
11590
|
+
return _array_with_holes$3(arr) || _iterable_to_array_limit$3(arr, i) || _unsupported_iterable_to_array$7(arr, i) || _non_iterable_rest$3();
|
|
11573
11591
|
}
|
|
11574
|
-
function _unsupported_iterable_to_array$
|
|
11592
|
+
function _unsupported_iterable_to_array$7(o, minLen) {
|
|
11575
11593
|
if (!o) return;
|
|
11576
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
11594
|
+
if (typeof o === "string") return _array_like_to_array$7(o, minLen);
|
|
11577
11595
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
11578
11596
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
11579
11597
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
11580
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
11598
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$7(o, minLen);
|
|
11581
11599
|
}
|
|
11582
11600
|
/**
|
|
11583
11601
|
* Default specifier string (`'_'`) used when a CRUD operation has specifiers but one
|
|
@@ -11645,7 +11663,7 @@ function _unsupported_iterable_to_array$6(o, minLen) {
|
|
|
11645
11663
|
base: functionMap,
|
|
11646
11664
|
build: function build(x) {
|
|
11647
11665
|
Object.entries(crudConfigMap).forEach(function(param) {
|
|
11648
|
-
var _param = _sliced_to_array$
|
|
11666
|
+
var _param = _sliced_to_array$3(param, 2), modelType = _param[0], config = _param[1];
|
|
11649
11667
|
var assertCallKeyNotEncountered = function assertCallKeyNotEncountered(crud) {
|
|
11650
11668
|
if (encounteredCalls.has(crud)) {
|
|
11651
11669
|
throw new Error("Cannot have multiple declarations of the same crud. Found repeat for crud: ".concat(crud));
|
|
@@ -11674,7 +11692,7 @@ function _unsupported_iterable_to_array$6(o, minLen) {
|
|
|
11674
11692
|
}), crudFunctionKeys = _separateValues.included, specifiedCallFunctionKeys = _separateValues.excluded;
|
|
11675
11693
|
var crudFunctions = new Set(crudFunctionKeys);
|
|
11676
11694
|
var specifiedCallFunctionTuples = specifiedCallFunctionKeys.map(function(x) {
|
|
11677
|
-
var _x_split = _sliced_to_array$
|
|
11695
|
+
var _x_split = _sliced_to_array$3(x.split(':', 2), 2), crud = _x_split[0], functionsSplit = _x_split[1];
|
|
11678
11696
|
var functions = functionsSplit.split(MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER_SPLITTER);
|
|
11679
11697
|
return [
|
|
11680
11698
|
crud,
|
|
@@ -11685,7 +11703,7 @@ function _unsupported_iterable_to_array$6(o, minLen) {
|
|
|
11685
11703
|
var encounteredCalls = new Set();
|
|
11686
11704
|
crudFunctions.forEach(assertCallKeyNotEncountered);
|
|
11687
11705
|
specifiedCallFunctionTuples.forEach(function(param) {
|
|
11688
|
-
var _param = _sliced_to_array$
|
|
11706
|
+
var _param = _sliced_to_array$3(param, 1), crud = _param[0];
|
|
11689
11707
|
return assertCallKeyNotEncountered(crud);
|
|
11690
11708
|
});
|
|
11691
11709
|
// build and add the functions
|
|
@@ -12031,6 +12049,52 @@ var OFFLINE_ACCESS_OIDC_SCOPE_DETAILS = {
|
|
|
12031
12049
|
OFFLINE_ACCESS_OIDC_SCOPE_DETAILS
|
|
12032
12050
|
];
|
|
12033
12051
|
|
|
12052
|
+
function _array_like_to_array$6(arr, len) {
|
|
12053
|
+
if (len == null || len > arr.length) len = arr.length;
|
|
12054
|
+
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
12055
|
+
return arr2;
|
|
12056
|
+
}
|
|
12057
|
+
function _array_with_holes$2(arr) {
|
|
12058
|
+
if (Array.isArray(arr)) return arr;
|
|
12059
|
+
}
|
|
12060
|
+
function _iterable_to_array_limit$2(arr, i) {
|
|
12061
|
+
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
12062
|
+
if (_i == null) return;
|
|
12063
|
+
var _arr = [];
|
|
12064
|
+
var _n = true;
|
|
12065
|
+
var _d = false;
|
|
12066
|
+
var _s, _e;
|
|
12067
|
+
try {
|
|
12068
|
+
for(_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true){
|
|
12069
|
+
_arr.push(_s.value);
|
|
12070
|
+
if (i && _arr.length === i) break;
|
|
12071
|
+
}
|
|
12072
|
+
} catch (err) {
|
|
12073
|
+
_d = true;
|
|
12074
|
+
_e = err;
|
|
12075
|
+
} finally{
|
|
12076
|
+
try {
|
|
12077
|
+
if (!_n && _i["return"] != null) _i["return"]();
|
|
12078
|
+
} finally{
|
|
12079
|
+
if (_d) throw _e;
|
|
12080
|
+
}
|
|
12081
|
+
}
|
|
12082
|
+
return _arr;
|
|
12083
|
+
}
|
|
12084
|
+
function _non_iterable_rest$2() {
|
|
12085
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
12086
|
+
}
|
|
12087
|
+
function _sliced_to_array$2(arr, i) {
|
|
12088
|
+
return _array_with_holes$2(arr) || _iterable_to_array_limit$2(arr, i) || _unsupported_iterable_to_array$6(arr, i) || _non_iterable_rest$2();
|
|
12089
|
+
}
|
|
12090
|
+
function _unsupported_iterable_to_array$6(o, minLen) {
|
|
12091
|
+
if (!o) return;
|
|
12092
|
+
if (typeof o === "string") return _array_like_to_array$6(o, minLen);
|
|
12093
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
12094
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
12095
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
12096
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$6(o, minLen);
|
|
12097
|
+
}
|
|
12034
12098
|
/**
|
|
12035
12099
|
* Minimum password length enforced by Firebase Authentication.
|
|
12036
12100
|
*
|
|
@@ -12041,6 +12105,63 @@ var OFFLINE_ACCESS_OIDC_SCOPE_DETAILS = {
|
|
|
12041
12105
|
*
|
|
12042
12106
|
* Firebase has no posted upper limit, but passwords beyond 128 characters provide diminishing security value.
|
|
12043
12107
|
*/ var FIREBASE_AUTH_PASSWORD_MAX_LENGTH = 128;
|
|
12108
|
+
/**
|
|
12109
|
+
* Delimiter used when encoding a {@link FirebaseAuthOobCodeDataPair} into a {@link FirebaseAuthOobCode}.
|
|
12110
|
+
*
|
|
12111
|
+
* The encoded form is `${code}-${uid}` and splitting happens on the first delimiter occurrence,
|
|
12112
|
+
* so this only requires that the generated code/password not contain `-`. The uid is unrestricted
|
|
12113
|
+
* and may itself contain `-`.
|
|
12114
|
+
*
|
|
12115
|
+
* @dbxUtil
|
|
12116
|
+
* @dbxUtilCategory firebase-auth
|
|
12117
|
+
* @dbxUtilTags firebase, auth, oob, code, delimiter, constant
|
|
12118
|
+
* @dbxUtilRelated encode-firebase-auth-oob-code, decode-firebase-auth-oob-code
|
|
12119
|
+
*/ var FIREBASE_AUTH_OOB_CODE_DATA_PAIR_DELIMITER = '-';
|
|
12120
|
+
/**
|
|
12121
|
+
* Encodes a {@link FirebaseAuthOobCodeDataPair} into a URL-safe {@link FirebaseAuthOobCode}.
|
|
12122
|
+
*
|
|
12123
|
+
* The encoded form is `${code}-${uid}` — code first so that splitting on the first delimiter
|
|
12124
|
+
* still works even when the uid itself contains `-` (Firebase uids occasionally do).
|
|
12125
|
+
*
|
|
12126
|
+
* @dbxUtil
|
|
12127
|
+
* @dbxUtilCategory firebase-auth
|
|
12128
|
+
* @dbxUtilTags firebase, auth, oob, code, encode, uid, password, reset, setup, serialize
|
|
12129
|
+
* @dbxUtilRelated decode-firebase-auth-oob-code, firebase-auth-oob-code-data-pair-delimiter
|
|
12130
|
+
*
|
|
12131
|
+
* @example
|
|
12132
|
+
* ```ts
|
|
12133
|
+
* encodeFirebaseAuthOobCode({ uid: 'abc-123', code: 'xyz789' }); // 'xyz789-abc-123'
|
|
12134
|
+
* ```
|
|
12135
|
+
*/ function encodeFirebaseAuthOobCode(pair) {
|
|
12136
|
+
return "".concat(pair.code).concat(FIREBASE_AUTH_OOB_CODE_DATA_PAIR_DELIMITER).concat(pair.uid);
|
|
12137
|
+
}
|
|
12138
|
+
/**
|
|
12139
|
+
* Decodes a {@link FirebaseAuthOobCode} back into its {@link FirebaseAuthOobCodeDataPair}.
|
|
12140
|
+
*
|
|
12141
|
+
* Splits on the first `-` so uids containing additional `-` characters survive the round-trip
|
|
12142
|
+
* intact. Returns null when the input is missing the delimiter or has empty parts.
|
|
12143
|
+
*
|
|
12144
|
+
* @dbxUtil
|
|
12145
|
+
* @dbxUtilCategory firebase-auth
|
|
12146
|
+
* @dbxUtilTags firebase, auth, oob, code, decode, parse, uid, password, reset, setup, deserialize
|
|
12147
|
+
* @dbxUtilRelated encode-firebase-auth-oob-code, firebase-auth-oob-code-data-pair-delimiter
|
|
12148
|
+
*
|
|
12149
|
+
* @example
|
|
12150
|
+
* ```ts
|
|
12151
|
+
* decodeFirebaseAuthOobCode('xyz789-abc-123'); // { uid: 'abc-123', code: 'xyz789' }
|
|
12152
|
+
* decodeFirebaseAuthOobCode('invalid'); // null
|
|
12153
|
+
* ```
|
|
12154
|
+
*/ function decodeFirebaseAuthOobCode(oobCode) {
|
|
12155
|
+
var _splitStringAtFirstCharacterOccurence = _sliced_to_array$2(splitStringAtFirstCharacterOccurence(oobCode, FIREBASE_AUTH_OOB_CODE_DATA_PAIR_DELIMITER), 2), code = _splitStringAtFirstCharacterOccurence[0], uid = _splitStringAtFirstCharacterOccurence[1];
|
|
12156
|
+
var result = null;
|
|
12157
|
+
if (uid && code) {
|
|
12158
|
+
result = {
|
|
12159
|
+
uid: uid,
|
|
12160
|
+
code: code
|
|
12161
|
+
};
|
|
12162
|
+
}
|
|
12163
|
+
return result;
|
|
12164
|
+
}
|
|
12044
12165
|
var FIREBASE_SERVER_AUTH_CLAIMS_SETUP_PASSWORD_KEY = 'setupPassword';
|
|
12045
12166
|
var FIREBASE_SERVER_AUTH_CLAIMS_SETUP_LAST_COM_DATE_KEY = 'setupCommunicationAt';
|
|
12046
12167
|
var FIREBASE_SERVER_AUTH_CLAIMS_RESET_PASSWORD_KEY = 'resetPassword';
|
|
@@ -12104,6 +12225,12 @@ var FIREBASE_SERVER_AUTH_CLAIMS_RESET_EXPIRES_AT_KEY = 'resetExpiresAt';
|
|
|
12104
12225
|
* @param inputError - The Firebase Auth error to convert.
|
|
12105
12226
|
* @returns A {@link ReadableError} with a human-readable message suitable for display.
|
|
12106
12227
|
*
|
|
12228
|
+
* @dbxUtil
|
|
12229
|
+
* @dbxUtilCategory firebase-auth
|
|
12230
|
+
* @dbxUtilKind function
|
|
12231
|
+
* @dbxUtilTags firebase, auth, error, readable, convert, decode, message, login, signin
|
|
12232
|
+
* @dbxUtilRelated convert-https-callable-error-to-readable-error, firebase-server-error
|
|
12233
|
+
*
|
|
12107
12234
|
* @example
|
|
12108
12235
|
* ```ts
|
|
12109
12236
|
* try {
|
|
@@ -18672,7 +18799,7 @@ var updateOidcClientFieldParamsType = /* @__PURE__ */ type({
|
|
|
18672
18799
|
'dbx_max_session_ttl?': clearable('number')
|
|
18673
18800
|
});
|
|
18674
18801
|
var createOidcClientFieldParamsType = updateOidcClientFieldParamsType.merge(type({
|
|
18675
|
-
token_endpoint_auth_method: "'client_secret_basic' | 'client_secret_post' | 'client_secret_jwt' | 'private_key_jwt'"
|
|
18802
|
+
token_endpoint_auth_method: "'client_secret_basic' | 'client_secret_post' | 'client_secret_jwt' | 'private_key_jwt' | 'none'"
|
|
18676
18803
|
}));
|
|
18677
18804
|
var createOidcClientParamsType = inferredTargetModelParamsType.merge(createOidcClientFieldParamsType);
|
|
18678
18805
|
var updateOidcClientParamsType = targetModelParamsType.merge(updateOidcClientFieldParamsType);
|
|
@@ -18704,25 +18831,110 @@ var OIDC_MODEL_CRUD_FUNCTIONS_CONFIG = {
|
|
|
18704
18831
|
* ```
|
|
18705
18832
|
*/ var oidcModelFunctionMap = callModelFirebaseFunctionMapFactory(OIDC_FUNCTION_TYPE_CONFIG_MAP, OIDC_MODEL_CRUD_FUNCTIONS_CONFIG);
|
|
18706
18833
|
|
|
18707
|
-
|
|
18834
|
+
/**
|
|
18835
|
+
* The `client_secret_basic` confidential-client auth method (RFC 6749 §2.3.1, the
|
|
18836
|
+
* OAuth 2.0 default): the client sends its `client_id` and `client_secret` in the
|
|
18837
|
+
* `Authorization: Basic` header on token-endpoint requests. Standard pick for
|
|
18838
|
+
* server-side confidential clients.
|
|
18839
|
+
*
|
|
18840
|
+
* @example
|
|
18841
|
+
* ```ts
|
|
18842
|
+
* await oidcClientService.createClient({
|
|
18843
|
+
* token_endpoint_auth_method: CLIENT_SECRET_BASIC_TOKEN_ENDPOINT_AUTH_METHOD,
|
|
18844
|
+
* // ...
|
|
18845
|
+
* });
|
|
18846
|
+
* ```
|
|
18847
|
+
*/ var CLIENT_SECRET_BASIC_TOKEN_ENDPOINT_AUTH_METHOD = 'client_secret_basic';
|
|
18848
|
+
/**
|
|
18849
|
+
* The `client_secret_post` confidential-client auth method (RFC 6749 §2.3.1, the
|
|
18850
|
+
* form-body variant): the client sends `client_id` and `client_secret` as form-encoded
|
|
18851
|
+
* parameters in the token-endpoint request body. Equivalent in security to
|
|
18852
|
+
* {@link CLIENT_SECRET_BASIC_TOKEN_ENDPOINT_AUTH_METHOD}; pick it for clients that
|
|
18853
|
+
* cannot set the `Authorization` header (some older HTTP stacks).
|
|
18854
|
+
*
|
|
18855
|
+
* @example
|
|
18856
|
+
* ```ts
|
|
18857
|
+
* await oidcClientService.createClient({
|
|
18858
|
+
* token_endpoint_auth_method: CLIENT_SECRET_POST_TOKEN_ENDPOINT_AUTH_METHOD,
|
|
18859
|
+
* // ...
|
|
18860
|
+
* });
|
|
18861
|
+
* ```
|
|
18862
|
+
*/ var CLIENT_SECRET_POST_TOKEN_ENDPOINT_AUTH_METHOD = 'client_secret_post';
|
|
18863
|
+
/**
|
|
18864
|
+
* The `client_secret_jwt` confidential-client auth method (OIDC Core §9): the client
|
|
18865
|
+
* signs a JWT client assertion using its `client_secret` as the HMAC key (HS256/HS384/HS512)
|
|
18866
|
+
* and sends it as `client_assertion` on token-endpoint requests. The secret never goes on
|
|
18867
|
+
* the wire — only the signed assertion — which is the upgrade over the plain
|
|
18868
|
+
* `client_secret_*` methods, without requiring asymmetric keys like
|
|
18869
|
+
* {@link PRIVATE_KEY_JWT_TOKEN_ENDPOINT_AUTH_METHOD}.
|
|
18870
|
+
*
|
|
18871
|
+
* @example
|
|
18872
|
+
* ```ts
|
|
18873
|
+
* await oidcClientService.createClient({
|
|
18874
|
+
* token_endpoint_auth_method: CLIENT_SECRET_JWT_TOKEN_ENDPOINT_AUTH_METHOD,
|
|
18875
|
+
* // ...
|
|
18876
|
+
* });
|
|
18877
|
+
* ```
|
|
18878
|
+
*/ var CLIENT_SECRET_JWT_TOKEN_ENDPOINT_AUTH_METHOD = 'client_secret_jwt';
|
|
18879
|
+
/**
|
|
18880
|
+
* The `private_key_jwt` confidential-client auth method (OIDC Core §9): the client signs
|
|
18881
|
+
* a JWT client assertion with its private key (RS256/ES256/PS256) and sends it as
|
|
18882
|
+
* `client_assertion`; the server verifies via the client's published `jwks` / `jwks_uri`.
|
|
18883
|
+
* Strongest of the confidential-client methods — no shared secret is ever held by the
|
|
18884
|
+
* server — and the canonical pick for high-trust server-to-server integrations.
|
|
18885
|
+
*
|
|
18886
|
+
* @example
|
|
18887
|
+
* ```ts
|
|
18888
|
+
* await oidcClientService.createClient({
|
|
18889
|
+
* token_endpoint_auth_method: PRIVATE_KEY_JWT_TOKEN_ENDPOINT_AUTH_METHOD,
|
|
18890
|
+
* jwks: { keys: [publicJwk] },
|
|
18891
|
+
* // ...
|
|
18892
|
+
* });
|
|
18893
|
+
* ```
|
|
18894
|
+
*/ var PRIVATE_KEY_JWT_TOKEN_ENDPOINT_AUTH_METHOD = 'private_key_jwt';
|
|
18895
|
+
/**
|
|
18896
|
+
* The public-client auth method (`'none'`): no client secret, PKCE-only. The client
|
|
18897
|
+
* authenticates the `authorization_code` flow with PKCE (RFC 7636) alone — there is no
|
|
18898
|
+
* shared secret and no client assertion. Canonical pick for clients that cannot keep a
|
|
18899
|
+
* secret (native apps, SPAs, CLIs) and what the MCP / Claude connector ecosystem
|
|
18900
|
+
* (claude.ai connector, Claude Code CLI, mcp-inspector via DCR) registers as.
|
|
18901
|
+
*
|
|
18902
|
+
* Mirrors {@link PRIVATE_KEY_JWT_TOKEN_ENDPOINT_AUTH_METHOD}. `oidc-provider` still
|
|
18903
|
+
* enforces PKCE on the `authorization_code` flow for every client regardless of auth
|
|
18904
|
+
* method, so `'none'` simply unlocks the secret-less variant rather than disabling any
|
|
18905
|
+
* client authentication.
|
|
18906
|
+
*
|
|
18907
|
+
* @example
|
|
18908
|
+
* ```ts
|
|
18909
|
+
* await oidcClientService.createClient({
|
|
18910
|
+
* token_endpoint_auth_method: PUBLIC_PKCE_TOKEN_ENDPOINT_AUTH_METHOD,
|
|
18911
|
+
* // no client_secret — public PKCE client
|
|
18912
|
+
* // ...
|
|
18913
|
+
* });
|
|
18914
|
+
* ```
|
|
18915
|
+
*/ var PUBLIC_PKCE_TOKEN_ENDPOINT_AUTH_METHOD = 'none';
|
|
18708
18916
|
/**
|
|
18709
18917
|
* All available token endpoint auth method options with display labels.
|
|
18710
18918
|
*/ var ALL_OIDC_TOKEN_ENDPOINT_AUTH_METHOD_OPTIONS = [
|
|
18711
18919
|
{
|
|
18712
18920
|
label: 'Client Secret Basic',
|
|
18713
|
-
value:
|
|
18921
|
+
value: CLIENT_SECRET_BASIC_TOKEN_ENDPOINT_AUTH_METHOD
|
|
18714
18922
|
},
|
|
18715
18923
|
{
|
|
18716
18924
|
label: 'Client Secret Post',
|
|
18717
|
-
value:
|
|
18925
|
+
value: CLIENT_SECRET_POST_TOKEN_ENDPOINT_AUTH_METHOD
|
|
18718
18926
|
},
|
|
18719
18927
|
{
|
|
18720
18928
|
label: 'Client Secret JWT',
|
|
18721
|
-
value:
|
|
18929
|
+
value: CLIENT_SECRET_JWT_TOKEN_ENDPOINT_AUTH_METHOD
|
|
18722
18930
|
},
|
|
18723
18931
|
{
|
|
18724
18932
|
label: 'Private Key JWT',
|
|
18725
18933
|
value: PRIVATE_KEY_JWT_TOKEN_ENDPOINT_AUTH_METHOD
|
|
18934
|
+
},
|
|
18935
|
+
{
|
|
18936
|
+
label: 'None (Public PKCE)',
|
|
18937
|
+
value: PUBLIC_PKCE_TOKEN_ENDPOINT_AUTH_METHOD
|
|
18726
18938
|
}
|
|
18727
18939
|
];
|
|
18728
18940
|
/**
|
|
@@ -21267,4 +21479,4 @@ function _is_native_reflect_construct() {
|
|
|
21267
21479
|
});
|
|
21268
21480
|
}
|
|
21269
21481
|
|
|
21270
|
-
export { ALL_OIDC_TOKEN_ENDPOINT_AUTH_METHODS, ALL_OIDC_TOKEN_ENDPOINT_AUTH_METHOD_OPTIONS, ALL_STORAGE_FILE_NOTIFICATION_TASK_TYPES, ALL_USER_UPLOADS_FOLDER_NAME, ALL_USER_UPLOADS_FOLDER_PATH, ALREADY_EXISTS_ERROR_CODE, AbstractFirestoreDocument, AbstractFirestoreDocumentDataAccessorWrapper, AbstractFirestoreDocumentWithParent, AppNotificationTemplateTypeInfoRecordService, BAD_DOCUMENT_QUERY_CURSOR_ERROR_CODE, BAD_REQUEST_ERROR_CODE, BASE_MODEL_STORAGE_FILE_PATH, CALL_MODEL_APP_FUNCTION_KEY, CALL_MODEL_MISSING_OIDC_SCOPE_ERROR_CODE, CALL_MODEL_OIDC_SCOPES, CALL_MODEL_OIDC_SCOPE_DETAILS, CALL_MODEL_OIDC_SCOPE_FOR_CALL_TYPE, CALL_MODEL_OIDC_SCOPE_PREFIX, CONFLICT_ERROR_CODE, COPY_USER_RELATED_DATA_ACCESSOR_FACTORY_FUNCTION, CREATE_MODEL_OIDC_SCOPE, CREATE_NOTIFICATION_ID_REQUIRED_ERROR_CODE, CREATE_STORAGE_FILE_SIGNED_UPLOAD_URL_MAX_EXPIRES_IN_MS, CREATE_STORAGE_FILE_SIGNED_UPLOAD_URL_MAX_FILENAME_LENGTH, CREATE_STORAGE_FILE_SIGNED_UPLOAD_URL_MIN_EXPIRES_IN_MS, ContextGrantedModelRolesReaderInstance, DBX_FIREBASE_SERVER_NO_AUTH_ERROR_CODE, DBX_FIREBASE_SERVER_NO_UID_ERROR_CODE, DBX_FIREBASE_SERVER_PASSWORD_RESET_INVALID_CODE_ERROR_CODE, DBX_FIREBASE_SERVER_PASSWORD_RESET_NO_CONFIG_ERROR_CODE, DBX_FIREBASE_SERVER_PASSWORD_RESET_SEND_ONCE_ERROR_CODE, DBX_FIREBASE_SERVER_PASSWORD_RESET_THROTTLE_ERROR_CODE, DEFAULT_CREATE_STORAGE_FILE_SIGNED_UPLOAD_URL_EXPIRES_IN_MS, 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_IN_MEMORY_CACHE_TTL, DEFAULT_ITERATE_FIRESTORE_DOCUMENT_SNAPSHOT_BATCHES_BATCH_SIZE, DEFAULT_MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER, DEFAULT_NOTIFICATION_TASK_NOTIFICATION_MODEL_KEY, DEFAULT_NOTIFICATION_TASK_SUBTASK_CLEANUP_RETRY_ATTEMPTS, DEFAULT_NOTIFICATION_TASK_SUBTASK_CLEANUP_RETRY_DELAY, DEFAULT_NOTIFICATION_TEMPLATE_TYPE, DEFAULT_ON_CALL_QUERY_MODEL_LIMIT, DEFAULT_PAGED_ITEM_INDEX_DOCUMENT_ID, DEFAULT_PAGED_ITEM_MAX_ITEMS_PER_PAGE, DEFAULT_QUERY_CHANGE_WATCHER_DELAY, DEFAULT_SINGLE_ITEM_FIRESTORE_COLLECTION_DOCUMENT_IDENTIFIER, DEFAULT_UPLOADED_FILE_TYPE_DETERMINATION_LEVEL, DEFAULT_WEBSITE_LINK, DELETE_MODEL_OIDC_SCOPE, DOWNLOAD_MULTIPLE_STORAGE_FILES_MAX_FILES, DOWNLOAD_MULTIPLE_STORAGE_FILES_MIN_FILES, EMAIL_OIDC_SCOPE, EMAIL_OIDC_SCOPE_DETAILS, EMPTY_STORAGE_FILE_PURPOSE_SUBGROUP, EXACT_UPLOADED_FILE_TYPE_DETERMINATION_LEVEL, FIREBASE_AUTH_CREDENTIAL_ALREADY_IN_USE_ERROR, FIREBASE_AUTH_EMAIL_ALREADY_EXISTS_ERROR, FIREBASE_AUTH_EMAIL_ALREADY_IN_USE_ERROR, FIREBASE_AUTH_INVALID_PHONE_NUMBER_ERROR, FIREBASE_AUTH_NETWORK_REQUEST_ERROR, FIREBASE_AUTH_NETWORK_REQUEST_FAILED, FIREBASE_AUTH_PASSWORD_MAX_LENGTH, FIREBASE_AUTH_PASSWORD_MIN_LENGTH, FIREBASE_AUTH_PHONE_NUMBER_ALREADY_EXISTS_ERROR, FIREBASE_AUTH_PROVIDER_ALREADY_LINKED_ERROR, FIREBASE_AUTH_QUOTA_EXCEEDED_ERROR, FIREBASE_AUTH_USER_NOT_FOUND_ERROR, FIREBASE_AUTH_WRONG_PASSWORD, FIREBASE_DEVELOPMENT_FUNCTIONS_MAP_KEY, FIREBASE_SERVER_AUTH_CLAIMS_RESET_EXPIRES_AT_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, FORBIDDEN_ERROR_CODE, FirebaseDevelopmentFunctions, FirebaseModelPermissionServiceInstance, FirebaseServerError, FirestoreAccessorStreamMode, FirestoreDocumentContextType, HIGH_UPLOADED_FILE_TYPE_DETERMINATION_LEVEL, INTERNAL_SERVER_ERROR_CODE, INVOKE_MODEL_OIDC_SCOPE, LOW_UPLOADED_FILE_TYPE_DETERMINATION_LEVEL, MAX_FIRESTORE_MAP_ZOOM_LEVEL_VALUE, MAX_ON_CALL_QUERY_MODEL_LIMIT, MIN_FIRESTORE_MAP_ZOOM_LEVEL_VALUE, MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER_SPLITTER, MODEL_NOT_AVAILABLE_ERROR_CODE, 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_MODEL_CRUD_FUNCTIONS_CONFIG, NOTIFICATION_BOX_RECIPIENT_DOES_NOT_EXIST_ERROR_CODE, NOTIFICATION_FUNCTION_TYPE_CONFIG_MAP, NOTIFICATION_LOGGED_EVENT_DAY_ITEM_CONVERTER, 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_TASK_SUBTASK_CHECKPOINT_CLEANUP, NOTIFICATION_TASK_SUBTASK_CHECKPOINT_PROCESSING, 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, NOT_FOUND_ERROR_CODE, NotificationBoxDocument, NotificationBoxRecipientFlag, NotificationBoxRecipientTemplateConfigBoolean, NotificationDocument, NotificationFirestoreCollections, NotificationFunctions, NotificationLoggedEventDayDocument, NotificationLoggedEventDayPageDocument, NotificationMessageFlag, NotificationRecipientSendFlag, NotificationSendState, NotificationSendType, NotificationSummaryDocument, NotificationUserDocument, NotificationWeekDocument, OFFLINE_ACCESS_OIDC_SCOPE, OFFLINE_ACCESS_OIDC_SCOPE_DETAILS, OIDC_ENTRY_CLIENT_TYPE, OIDC_FUNCTION_TYPE_CONFIG_MAP, OIDC_MODEL_CRUD_FUNCTIONS_CONFIG, OPENID_OIDC_SCOPE, OPENID_OIDC_SCOPE_DETAILS, OidcEntryDocument, OidcModelFirestoreCollections, OidcModelFunctions, PERMISSION_DENIED_ERROR_CODE, PRIVATE_KEY_JWT_TOKEN_ENDPOINT_AUTH_METHOD, PROFILE_OIDC_SCOPE, PROFILE_OIDC_SCOPE_DETAILS, QUERY_MODEL_OIDC_SCOPE, READ_MODEL_OIDC_SCOPE, RUN_DEV_FUNCTION_APP_FUNCTION_KEY, SCHEDULED_FUNCTION_DEV_FUNCTION_SPECIFIER, STANDARD_OIDC_SCOPES, STANDARD_OIDC_SCOPE_DETAILS, STORAGEFILE_RELATED_FILE_METADATA_KEY, STORAGE_FILE_ALREADY_PROCESSED_ERROR_CODE, STORAGE_FILE_CANNOT_BE_DELETED_YET_ERROR_CODE, STORAGE_FILE_FUNCTION_TYPE_CONFIG_MAP, STORAGE_FILE_GROUP_CREATE_INPUT_ERROR_CODE, STORAGE_FILE_GROUP_QUEUED_FOR_INITIALIZATION_ERROR_CODE, STORAGE_FILE_GROUP_ROOT_FOLDER_PATH, STORAGE_FILE_GROUP_ZIP_FILE_PATH, STORAGE_FILE_GROUP_ZIP_INFO_JSON_FILE_NAME, STORAGE_FILE_GROUP_ZIP_STORAGE_FILE_PURPOSE, STORAGE_FILE_GROUP_ZIP_STORAGE_FILE_PURPOSE_CREATE_ZIP_SUBTASK, STORAGE_FILE_MODEL_ALREADY_INITIALIZED_ERROR_CODE, STORAGE_FILE_MODEL_CRUD_FUNCTIONS_CONFIG, STORAGE_FILE_NOT_FLAGGED_FOR_DELETION_ERROR_CODE, STORAGE_FILE_NOT_FLAGGED_FOR_GROUPS_SYNC_ERROR_CODE, STORAGE_FILE_PROCESSING_NOTIFICATION_TASK_TYPE, STORAGE_FILE_PROCESSING_NOT_ALLOWED_FOR_INVALID_STATE_ERROR_CODE, STORAGE_FILE_PROCESSING_NOT_AVAILABLE_FOR_TYPE_ERROR_CODE, STORAGE_FILE_PROCESSING_NOT_QUEUED_FOR_PROCESSING_ERROR_CODE, STORAGE_FILE_PROCESSING_STUCK_THROTTLE_CHECK_MS, STORAGE_FILE_UPLOAD_USER_ROLE, STORAGE_FILE_UPLOAD_USER_SIMPLE_CLAIMS_CONFIGURATION, ScheduledFunctionDevelopmentFirebaseFunctionListEntry, ScheduledFunctionDevelopmentFunctionTypeEnum, StorageFileCreationType, StorageFileDocument, StorageFileFirestoreCollections, StorageFileFunctions, StorageFileGroupDocument, StorageFileProcessingState, StorageFileState, StorageFileUploadStreamUnsupportedError, SystemStateDocument, SystemStateFirestoreCollections, UNAUTHENTICATED_ERROR_CODE, UNAVAILABLE_ERROR_CODE, UNAVAILABLE_OR_DEACTIVATED_FUNCTION_ERROR_CODE, UNKNOWN_MODEL_TYPE_ERROR_CODE, UPDATE_MODEL_OIDC_SCOPE, UPLOADED_FILE_DOES_NOT_EXIST_ERROR_CODE, UPLOADED_FILE_INITIALIZATION_DISCARDED_ERROR_CODE, UPLOADED_FILE_INITIALIZATION_FAILED_ERROR_CODE, UPLOADED_FILE_NOT_ALLOWED_TO_BE_INITIALIZED_ERROR_CODE, UPLOADS_FOLDER_PATH, _createNotificationDocumentFromPair, abstractSubscribeOrUnsubscribeToNotificationBoxParamsType, abstractSubscribeToNotificationBoxParamsType, addConstraintToBuilder, addOrReplaceLimitInConstraints, allChildDocumentsUnderParent, allChildDocumentsUnderParentPath, allChildDocumentsUnderRelativePath, allowDocumentSnapshotWithPathOnceFilter, allowedNotificationRecipients, appNotificationTemplateTypeInfoRecordService, applyExclusionsToNotificationUserNotificationBoxRecipientConfigs, arrayUpdateWithAccessorFunction, asTopLevelFieldPath, asTopLevelFieldPaths, assertFirestoreUpdateHasData, assertStorageUploadOptionsStringFormat, assignDateCellRangeFunction, assignDateCellScheduleFunction, assignUnitedStatesAddressFunction, assignWebsiteFileLinkFunction, assignWebsiteLinkFunction, buildFirebaseCollectionTypeModelTypeMap, calculateNsForNotificationUserNotificationBoxRecipientConfigs, calculateStorageFileGroupEmbeddedFileUpdate, calculateStorageFileGroupRegeneration, callModelFirebaseFunctionMapFactory, callModelOidcScopeForCallType, canQueueStorageFileForProcessing, childFirestoreModelKey, childFirestoreModelKeyPath, childFirestoreModelKeys, cleanupOldNotificationLoggedEventDaysParamsType, cleanupSentNotificationsParamsType, clientFirebaseFirestoreContextFactory, clientFirebaseStorageContextFactory, combineUploadFileTypeDeterminers, completeSubtaskProcessingAndScheduleCleanupTaskResult, contextGrantedModelRolesReader, contextGrantedModelRolesReaderDoesNotExistErrorMessage, contextGrantedModelRolesReaderPermissionErrorMessage, convertHttpsCallableErrorToReadableError, copyDocumentIdForUserRelatedModifierFunction, copyDocumentIdToFieldModifierFunction, copyStoragePath, copyUserRelatedDataAccessorFactoryFunction, copyUserRelatedDataModifierConfig, createNotificationBoxParamsType, createNotificationDocument, createNotificationDocumentIfSending, createNotificationDocumentPair, createNotificationLoggedEventTemplate, createNotificationSummaryParamsType, createNotificationTaskTemplate, createNotificationTemplate, createNotificationUserParamsType, createOidcClientFieldParamsType, createOidcClientParamsType, createStorageFileDocumentPair, createStorageFileDocumentPairFactory, createStorageFileGroupParamsType, createStorageFileParamsType, createStorageFileSignedUploadUrlParamsType, dataFromDocumentSnapshots, dataFromSnapshotStream, defaultPagedItemPageDataConverter, delayCompletion, deleteAllQueuedStorageFilesParamsType, targetModelParamsType as deleteOidcClientParamsType, targetModelParamsType as deleteOidcTokenParamsType, deleteStorageFileParamsType, determineByFileName, determineByFilePath, determineByFolderName, determineUserByFolder, determineUserByFolderWrapperFunction, determineUserByUserUploadsFolderWrapperFunction, developmentFirebaseFunctionMapFactory, directDataHttpsCallable, documentData, documentDataFunction, documentDataWithIdAndKey, documentReferenceFromDocument, documentReferencesFromDocuments, documentReferencesFromSnapshot, downloadMultipleStorageFilesFileParamsType, downloadMultipleStorageFilesParamsType, downloadStorageFileParamsType, effectiveNotificationBoxRecipientConfig, effectiveNotificationBoxRecipientTemplateConfig, endAt, endAtValue, endBefore, extendFirestoreCollectionWithPagedItemAccessor, extendFirestoreCollectionWithSingleDocumentAccessor, filterConstraintsOfType, filterDisallowedFirestoreItemPageIteratorInputConstraints, 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, firestoreCollectionDocumentCache, firestoreCollectionQueryFactory, firestoreContextFactory, firestoreDate, firestoreDateCellRange, firestoreDateCellRangeArray, firestoreDateCellRangeAssignFn, firestoreDateCellSchedule, firestoreDateCellScheduleAssignFn, firestoreDateNumber, firestoreDencoderArray, firestoreDencoderMap, firestoreDencoderStringArray, firestoreDocumentAccessorContextExtension, firestoreDocumentAccessorFactory, firestoreDocumentLoader, firestoreDocumentSnapshotPairsLoader, firestoreDocumentSnapshotPairsLoaderInstance, firestoreDummyKey, firestoreEncodedArray, firestoreEncodedObjectMap, firestoreEnum, firestoreEnumArray, firestoreField, firestoreFieldConfigToModelMapFunctionsRef, firestoreFixedItemPageIteration, firestoreFixedItemPageIterationFactory, firestoreIdBatchVerifierFactory, firestoreIdentityTypeArray, firestoreIdentityTypeArrayName, firestoreItemPageIteration, firestoreItemPageIterationFactory, firestoreLatLngString, firestoreMap, firestoreMapZoomLevel, firestoreModelId, firestoreModelIdArrayField, firestoreModelIdFromDocument, firestoreModelIdFromEmail, firestoreModelIdGrantedRoleArrayMap, firestoreModelIdGrantedRoleMap, firestoreModelIdOrKeyType, firestoreModelIdString, firestoreModelIdType, firestoreModelIdentity, firestoreModelIdentityTypeMap, firestoreModelIdsFromDocuments, firestoreModelIdsFromKey, firestoreModelKey, firestoreModelKeyArrayField, firestoreModelKeyCollectionName, firestoreModelKeyCollectionType, firestoreModelKeyCollectionTypeArray, firestoreModelKeyCollectionTypeArrayName, firestoreModelKeyCollectionTypePair, firestoreModelKeyEncodedGrantedRoleMap, firestoreModelKeyFactory, firestoreModelKeyFromDocument, firestoreModelKeyGrantedRoleArrayMap, firestoreModelKeyGrantedRoleMap, firestoreModelKeyPairObject, firestoreModelKeyParentKey, firestoreModelKeyParentKeyPartPairs, firestoreModelKeyPart, firestoreModelKeyPartPairs, firestoreModelKeyPartPairsKeyPath, firestoreModelKeyPartPairsPaths, firestoreModelKeyPath, firestoreModelKeyString, firestoreModelKeyType, 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, firestoreUnixDateTimeSecondsNumber, 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, grantStorageFileRolesForUserAuthFunction, inContextFirebaseModelServiceFactory, inContextFirebaseModelsServiceFactory, inMemoryFirestoreCollectionCacheDelegate, inMemoryFirestoreContextCache, inMemoryFirestoreContextCacheFactory, incrementUpdateWithAccessorFunction, inferKeyFromTwoWayFlatFirestoreModelKey, inferNotificationBoxRelatedModelKey, inferStorageFileGroupRelatedModelKey, inferredTargetModelIdParamsType, inferredTargetModelParamsType, initializeAllApplicableNotificationBoxesParamsType, initializeAllApplicableNotificationSummariesParamsType, initializeAllApplicableStorageFileGroupsParamsType, initializeAllStorageFilesFromUploadsParamsType, initializeNotificationModelParamsType, initializeStorageFileFromUploadParamsType, initializeStorageFileModelParamsType, interceptAccessorFactoryFunction, isAdminInFirebaseModelContext, isClientFirebaseError, isCompleteNotificationSendState, isFirebaseStorageObjectNotFoundError, isFirestoreModelId, isFirestoreModelIdOrKey, isFirestoreModelKey, isLoggedEventNotification, isOwnerOfUserRelatedModelInFirebaseModelContext, iterateFirestoreDocumentSnapshotBatches, iterateFirestoreDocumentSnapshotCheckpoints, iterateFirestoreDocumentSnapshotPairBatches, iterateFirestoreDocumentSnapshotPairs, iterateFirestoreDocumentSnapshots, iterateStorageListFiles, iterateStorageListFilesByEachFile, iterateStorageListFilesFactory, iterationQueryDocChangeWatcher, iterationQueryDocChangeWatcherChangeTypeForGroup, latestDataFromDocuments, latestSnapshotsFromDocuments, lazyFirebaseFunctionsFactory, limit, limitToLast, limitUploadFileTypeDeterminer, limitedFirestoreDocumentAccessorFactory, limitedFirestoreDocumentAccessorSnapshotCache, loadAllFirestoreDocumentSnapshot, loadAllFirestoreDocumentSnapshotPairs, loadDocumentsForDocumentReferences, loadDocumentsForDocumentReferencesFromValues, loadDocumentsForIds, loadDocumentsForIdsFromValues, loadDocumentsForKeys, loadDocumentsForKeysFromValues, loadDocumentsForSnapshots, loadDocumentsForValues, loadNotificationBoxDocumentForReferencePair, loadStorageFileGroupDocumentForReferencePair, makeDocuments, makeFirestoreCollection, makeFirestoreCollectionGroup, makeFirestoreCollectionWithParent, makeFirestoreContextCache, makeFirestoreItemPageIteratorDelegate, makeFirestoreQueryConstraintFunctionsDriver, makePagedItemFirestoreCollection, makeRootSingleItemFirestoreCollection, makeSingleItemFirestoreCollection, mapDataFromSnapshot, mapHttpsCallable, mapLatestSnapshotsFromDocuments, mergeNotificationBoxRecipientTemplateConfigRecords, mergeNotificationBoxRecipientTemplateConfigs, mergeNotificationBoxRecipients, mergeNotificationSendMessagesResult, mergeNotificationUserDefaultNotificationBoxRecipientConfig, mergeNotificationUserNotificationBoxRecipientConfigs, modelStorageSlashPathFactory, modifyBeforeSetInterceptAccessorFactoryFunction, newDocuments, newNotificationBoxRecipientForUid, noContentNotificationMessageFunctionFactory, noStringFormatInStorageUploadOptionsError, noopFirestoreCollectionCache, noopFirestoreCollectionCacheDelegate, noopFirestoreCollectionDocumentCache, noopFirestoreContextCache, notificationBoxCollectionReference, notificationBoxConverter, notificationBoxFirestoreCollection, notificationBoxIdForModel, notificationBoxIdentity, notificationBoxRecipientTemplateConfigArrayEntryParamType, notificationBoxRecipientTemplateConfigArrayToRecord, notificationBoxRecipientTemplateConfigRecordToArray, notificationBoxesFlaggedForNeedsInitializationQuery, notificationBoxesFlaggedInvalidQuery, notificationCollectionReference, notificationCollectionReferenceFactory, notificationConverter, notificationFirestoreCollectionFactory, notificationFirestoreCollectionGroup, notificationFunctionMap, notificationIdentity, notificationLoggedEventDayCollectionReference, notificationLoggedEventDayCollectionReferenceFactory, notificationLoggedEventDayConverter, notificationLoggedEventDayFirestoreCollectionFactory, notificationLoggedEventDayFirestoreCollectionGroup, notificationLoggedEventDayId, notificationLoggedEventDayIdentity, notificationLoggedEventDayPageCollectionReference, notificationLoggedEventDayPageFirestoreCollectionGroup, notificationLoggedEventDayPageIdentity, notificationLoggedEventDayPagedItemsCollectionFactory, notificationLoggedEventDayPagedItemsCollectionReferenceFactory, notificationLoggedEventDaysOlderThanQuery, notificationLoggedEventLoader, notificationMessageFunction, notificationRecipientParamsType, notificationSendExclusionCanSendFunction, notificationSendFlagsImplyIsComplete, notificationSubtaskComplete, notificationSummariesFlaggedForNeedsInitializationQuery, notificationSummaryCollectionReference, notificationSummaryConverter, notificationSummaryFirestoreCollection, notificationSummaryIdForModel, notificationSummaryIdForUidFunctionForRootFirestoreModelIdentity, notificationSummaryIdentity, notificationTaskCanRunNextCheckpoint, notificationTaskComplete, notificationTaskDelayRetry, notificationTaskFailed, notificationTaskPartiallyComplete, notificationTaskUniqueId, notificationTemplateTypeInfoRecord, notificationUserCollectionReference, notificationUserConverter, notificationUserFirestoreCollection, notificationUserHasExclusionQuery, notificationUserIdentity, notificationUsersFlaggedForNeedsSyncQuery, notificationWeekCollectionReference, notificationWeekCollectionReferenceFactory, notificationWeekConverter, notificationWeekFirestoreCollectionFactory, notificationWeekFirestoreCollectionGroup, notificationWeekIdentity, notificationsPastSendAtTimeQuery, notificationsReadyForCleanupQuery, offset, oidcClientEntriesByOwnerQuery, oidcEntriesByClientIdQuery, oidcEntriesByGrantIdQuery, oidcEntriesByUidQuery, oidcEntriesByUserCodeQuery, oidcEntriesWithTypeQuery, oidcEntryCollectionReference, oidcEntryConverter, oidcEntryFirestoreCollection, oidcEntryIdentity, oidcGrantEntriesByUidQuery, oidcModelFunctionMap, onCallCreateModelParams, onCallCreateModelResult, onCallCreateModelResultWithDocs, onCallDeleteModelParams, onCallDevelopmentParams, onCallInvokeModelParams, onCallQueryModelParams, onCallReadModelParams, onCallTypedModelParams, onCallTypedModelParamsFunction, onCallUpdateModelParams, optionalFirestoreArray, optionalFirestoreBoolean, optionalFirestoreDate, optionalFirestoreDateNumber, optionalFirestoreEnum, optionalFirestoreField, optionalFirestoreNumber, optionalFirestoreString, optionalFirestoreUID, optionalFirestoreUnitedStatesAddress, optionalFirestoreUnixDateTimeSecondsNumber, orderBy, orderByDocumentId, processAllQueuedStorageFilesParamsType, processStorageFileParamsType, readFirestoreModelKey, readFirestoreModelKeyFromDocumentSnapshot, readLoggingFirestoreContextCache, readLoggingFirestoreContextCacheFactory, regenerateAllFlaggedStorageFileGroupsContentParamsType, regenerateStorageFileGroupContentParamsType, replaceConstraints, resyncAllNotificationUserParamsType, targetModelParamsType as resyncNotificationUserParamsType, targetModelParamsType as rotateOidcClientSecretParamsType, scheduledFunctionDevelopmentFirebaseFunctionParamsType, selectFromFirebaseModelsService, sendNotificationParamsType, sendQueuedNotificationsParamsType, separateConstraints, setIdAndKeyFromKeyIdRefOnDocumentData, setIdAndKeyFromSnapshotOnDocumentData, shouldSaveNotificationToNotificationWeek, shouldSendCreatedNotificationInput, snapshotConverterFunctions, snapshotStreamDataForAccessor, snapshotStreamForAccessor, sortNotificationItemsFunction, startAfter, startAt, startAtValue, storageFileCollectionReference, storageFileConverter, storageFileFirestoreCollection, storageFileFlaggedForSyncWithGroupsQuery, storageFileFunctionMap, storageFileGroupCollectionReference, storageFileGroupConverter, storageFileGroupCreateStorageFileKeyFactory, storageFileGroupCreatedStorageFileKey, storageFileGroupEmbeddedFile, storageFileGroupFirestoreCollection, storageFileGroupFolderPath, storageFileGroupIdForModel, storageFileGroupIdentity, storageFileGroupZipFileStoragePath, storageFileGroupZipStorageFileKey, storageFileGroupsFlaggedForContentRegenerationQuery, storageFileGroupsFlaggedForNeedsInitializationQuery, storageFileGroupsFlaggedInvalidQuery, storageFileIdentity, storageFileProcessingNotificationTaskTemplate, storageFilePurposeAndUserQuery, storageFilesQueuedForDeleteQuery, storageFilesQueuedForProcessingQuery, storageListFilesResultFactory, storageListFilesResultHasNoNextError, storagePathFactory, storedFileReaderFactory, streamDocumentSnapshotDataPairs, streamDocumentSnapshotDataPairsWithData, streamDocumentSnapshotsData, streamFromOnSnapshot, syncAllFlaggedStorageFilesWithGroupsParamsType, syncStorageFileWithGroupsParamsType, systemStateCollectionReference, systemStateConverter, systemStateFirestoreCollection, systemStateIdentity, targetModelIdParamsType, targetModelParamsType, twoWayFlatFirestoreModelKey, unreadNotificationItems, unsupportedFirestoreDriverFunctionError, targetModelParamsType as updateNotificationBoxParamsType, updateNotificationBoxRecipientLikeParamsType, updateNotificationBoxRecipientParamsType, updateNotificationBoxRecipientTemplateConfigRecord, updateNotificationRecipient, updateNotificationSummaryParamsType, updateNotificationUserDefaultNotificationBoxRecipientConfig, updateNotificationUserDefaultNotificationBoxRecipientConfigParamsType, updateNotificationUserNotificationBoxRecipientConfigIfChanged, updateNotificationUserNotificationBoxRecipientConfigs, updateNotificationUserNotificationBoxRecipientParamsType, updateNotificationUserNotificationSendExclusions, updateNotificationUserParamsType, updateOidcClientFieldParamsType, updateOidcClientParamsType, updateStorageFileGroupEntryParamsType, updateStorageFileGroupParamsType, updateStorageFileParamsType, updateWithAccessorUpdateAndConverterFunction, uploadFileWithStream, useContextAuth, useContextAuthUid, useDocumentSnapshot, useDocumentSnapshotData, useFirebaseModelsService, userUploadsFolderSlashPathFactory, userUploadsFolderStoragePathFactory, where, whereDateIsAfter, whereDateIsAfterWithSort, whereDateIsBefore, whereDateIsBeforeWithSort, whereDateIsBetween, whereDateIsInRange, whereDateIsOnOrAfter, whereDateIsOnOrAfterWithSort, whereDateIsOnOrBefore, whereDateIsOnOrBeforeWithSort, whereDocumentId, whereStringHasRootIdentityModelKey, whereStringValueHasPrefix };
|
|
21482
|
+
export { ALL_OIDC_TOKEN_ENDPOINT_AUTH_METHODS, ALL_OIDC_TOKEN_ENDPOINT_AUTH_METHOD_OPTIONS, ALL_STORAGE_FILE_NOTIFICATION_TASK_TYPES, ALL_USER_UPLOADS_FOLDER_NAME, ALL_USER_UPLOADS_FOLDER_PATH, ALREADY_EXISTS_ERROR_CODE, AbstractFirestoreDocument, AbstractFirestoreDocumentDataAccessorWrapper, AbstractFirestoreDocumentWithParent, AppNotificationTemplateTypeInfoRecordService, BAD_DOCUMENT_QUERY_CURSOR_ERROR_CODE, BAD_REQUEST_ERROR_CODE, BASE_MODEL_STORAGE_FILE_PATH, CALL_MODEL_APP_FUNCTION_KEY, CALL_MODEL_MISSING_OIDC_SCOPE_ERROR_CODE, CALL_MODEL_OIDC_SCOPES, CALL_MODEL_OIDC_SCOPE_DETAILS, CALL_MODEL_OIDC_SCOPE_FOR_CALL_TYPE, CALL_MODEL_OIDC_SCOPE_PREFIX, CLIENT_SECRET_BASIC_TOKEN_ENDPOINT_AUTH_METHOD, CLIENT_SECRET_JWT_TOKEN_ENDPOINT_AUTH_METHOD, CLIENT_SECRET_POST_TOKEN_ENDPOINT_AUTH_METHOD, CONFLICT_ERROR_CODE, COPY_USER_RELATED_DATA_ACCESSOR_FACTORY_FUNCTION, CREATE_MODEL_OIDC_SCOPE, CREATE_NOTIFICATION_ID_REQUIRED_ERROR_CODE, CREATE_STORAGE_FILE_SIGNED_UPLOAD_URL_MAX_EXPIRES_IN_MS, CREATE_STORAGE_FILE_SIGNED_UPLOAD_URL_MAX_FILENAME_LENGTH, CREATE_STORAGE_FILE_SIGNED_UPLOAD_URL_MIN_EXPIRES_IN_MS, ContextGrantedModelRolesReaderInstance, DBX_FIREBASE_SERVER_NO_AUTH_ERROR_CODE, DBX_FIREBASE_SERVER_NO_UID_ERROR_CODE, DBX_FIREBASE_SERVER_PASSWORD_RESET_INVALID_CODE_ERROR_CODE, DBX_FIREBASE_SERVER_PASSWORD_RESET_NO_CONFIG_ERROR_CODE, DBX_FIREBASE_SERVER_PASSWORD_RESET_SEND_ONCE_ERROR_CODE, DBX_FIREBASE_SERVER_PASSWORD_RESET_THROTTLE_ERROR_CODE, DEFAULT_CREATE_STORAGE_FILE_SIGNED_UPLOAD_URL_EXPIRES_IN_MS, 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_IN_MEMORY_CACHE_TTL, DEFAULT_ITERATE_FIRESTORE_DOCUMENT_SNAPSHOT_BATCHES_BATCH_SIZE, DEFAULT_MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER, DEFAULT_NOTIFICATION_TASK_NOTIFICATION_MODEL_KEY, DEFAULT_NOTIFICATION_TASK_SUBTASK_CLEANUP_RETRY_ATTEMPTS, DEFAULT_NOTIFICATION_TASK_SUBTASK_CLEANUP_RETRY_DELAY, DEFAULT_NOTIFICATION_TEMPLATE_TYPE, DEFAULT_ON_CALL_QUERY_MODEL_LIMIT, DEFAULT_PAGED_ITEM_INDEX_DOCUMENT_ID, DEFAULT_PAGED_ITEM_MAX_ITEMS_PER_PAGE, DEFAULT_QUERY_CHANGE_WATCHER_DELAY, DEFAULT_SINGLE_ITEM_FIRESTORE_COLLECTION_DOCUMENT_IDENTIFIER, DEFAULT_UPLOADED_FILE_TYPE_DETERMINATION_LEVEL, DEFAULT_WEBSITE_LINK, DELETE_MODEL_OIDC_SCOPE, DOWNLOAD_MULTIPLE_STORAGE_FILES_MAX_FILES, DOWNLOAD_MULTIPLE_STORAGE_FILES_MIN_FILES, EMAIL_OIDC_SCOPE, EMAIL_OIDC_SCOPE_DETAILS, EMPTY_STORAGE_FILE_PURPOSE_SUBGROUP, EXACT_UPLOADED_FILE_TYPE_DETERMINATION_LEVEL, FIREBASE_AUTH_CREDENTIAL_ALREADY_IN_USE_ERROR, FIREBASE_AUTH_EMAIL_ALREADY_EXISTS_ERROR, FIREBASE_AUTH_EMAIL_ALREADY_IN_USE_ERROR, FIREBASE_AUTH_INVALID_PHONE_NUMBER_ERROR, FIREBASE_AUTH_NETWORK_REQUEST_ERROR, FIREBASE_AUTH_NETWORK_REQUEST_FAILED, FIREBASE_AUTH_OOB_CODE_DATA_PAIR_DELIMITER, FIREBASE_AUTH_PASSWORD_MAX_LENGTH, FIREBASE_AUTH_PASSWORD_MIN_LENGTH, FIREBASE_AUTH_PHONE_NUMBER_ALREADY_EXISTS_ERROR, FIREBASE_AUTH_PROVIDER_ALREADY_LINKED_ERROR, FIREBASE_AUTH_QUOTA_EXCEEDED_ERROR, FIREBASE_AUTH_USER_NOT_FOUND_ERROR, FIREBASE_AUTH_WRONG_PASSWORD, FIREBASE_DEVELOPMENT_FUNCTIONS_MAP_KEY, FIREBASE_SERVER_AUTH_CLAIMS_RESET_EXPIRES_AT_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, FORBIDDEN_ERROR_CODE, FirebaseDevelopmentFunctions, FirebaseModelPermissionServiceInstance, FirebaseServerError, FirestoreAccessorStreamMode, FirestoreDocumentContextType, HIGH_UPLOADED_FILE_TYPE_DETERMINATION_LEVEL, INTERNAL_SERVER_ERROR_CODE, INVOKE_MODEL_OIDC_SCOPE, LOW_UPLOADED_FILE_TYPE_DETERMINATION_LEVEL, MAX_FIRESTORE_MAP_ZOOM_LEVEL_VALUE, MAX_ON_CALL_QUERY_MODEL_LIMIT, MIN_FIRESTORE_MAP_ZOOM_LEVEL_VALUE, MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER_SPLITTER, MODEL_NOT_AVAILABLE_ERROR_CODE, 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_MODEL_CRUD_FUNCTIONS_CONFIG, NOTIFICATION_BOX_RECIPIENT_DOES_NOT_EXIST_ERROR_CODE, NOTIFICATION_FUNCTION_TYPE_CONFIG_MAP, NOTIFICATION_LOGGED_EVENT_DAY_ITEM_CONVERTER, 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_TASK_SUBTASK_CHECKPOINT_CLEANUP, NOTIFICATION_TASK_SUBTASK_CHECKPOINT_PROCESSING, 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, NOT_FOUND_ERROR_CODE, NotificationBoxDocument, NotificationBoxRecipientFlag, NotificationBoxRecipientTemplateConfigBoolean, NotificationDocument, NotificationFirestoreCollections, NotificationFunctions, NotificationLoggedEventDayDocument, NotificationLoggedEventDayPageDocument, NotificationMessageFlag, NotificationRecipientSendFlag, NotificationSendState, NotificationSendType, NotificationSummaryDocument, NotificationUserDocument, NotificationWeekDocument, OFFLINE_ACCESS_OIDC_SCOPE, OFFLINE_ACCESS_OIDC_SCOPE_DETAILS, OIDC_ENTRY_CLIENT_TYPE, OIDC_FUNCTION_TYPE_CONFIG_MAP, OIDC_MODEL_CRUD_FUNCTIONS_CONFIG, OPENID_OIDC_SCOPE, OPENID_OIDC_SCOPE_DETAILS, OidcEntryDocument, OidcModelFirestoreCollections, OidcModelFunctions, PERMISSION_DENIED_ERROR_CODE, PRIVATE_KEY_JWT_TOKEN_ENDPOINT_AUTH_METHOD, PROFILE_OIDC_SCOPE, PROFILE_OIDC_SCOPE_DETAILS, PUBLIC_PKCE_TOKEN_ENDPOINT_AUTH_METHOD, QUERY_MODEL_OIDC_SCOPE, READ_MODEL_OIDC_SCOPE, RUN_DEV_FUNCTION_APP_FUNCTION_KEY, SCHEDULED_FUNCTION_DEV_FUNCTION_SPECIFIER, STANDARD_OIDC_SCOPES, STANDARD_OIDC_SCOPE_DETAILS, STORAGEFILE_RELATED_FILE_METADATA_KEY, STORAGE_FILE_ALREADY_PROCESSED_ERROR_CODE, STORAGE_FILE_CANNOT_BE_DELETED_YET_ERROR_CODE, STORAGE_FILE_FUNCTION_TYPE_CONFIG_MAP, STORAGE_FILE_GROUP_CREATE_INPUT_ERROR_CODE, STORAGE_FILE_GROUP_QUEUED_FOR_INITIALIZATION_ERROR_CODE, STORAGE_FILE_GROUP_ROOT_FOLDER_PATH, STORAGE_FILE_GROUP_ZIP_FILE_PATH, STORAGE_FILE_GROUP_ZIP_INFO_JSON_FILE_NAME, STORAGE_FILE_GROUP_ZIP_STORAGE_FILE_PURPOSE, STORAGE_FILE_GROUP_ZIP_STORAGE_FILE_PURPOSE_CREATE_ZIP_SUBTASK, STORAGE_FILE_MODEL_ALREADY_INITIALIZED_ERROR_CODE, STORAGE_FILE_MODEL_CRUD_FUNCTIONS_CONFIG, STORAGE_FILE_NOT_FLAGGED_FOR_DELETION_ERROR_CODE, STORAGE_FILE_NOT_FLAGGED_FOR_GROUPS_SYNC_ERROR_CODE, STORAGE_FILE_PROCESSING_NOTIFICATION_TASK_TYPE, STORAGE_FILE_PROCESSING_NOT_ALLOWED_FOR_INVALID_STATE_ERROR_CODE, STORAGE_FILE_PROCESSING_NOT_AVAILABLE_FOR_TYPE_ERROR_CODE, STORAGE_FILE_PROCESSING_NOT_QUEUED_FOR_PROCESSING_ERROR_CODE, STORAGE_FILE_PROCESSING_STUCK_THROTTLE_CHECK_MS, STORAGE_FILE_UPLOAD_USER_ROLE, STORAGE_FILE_UPLOAD_USER_SIMPLE_CLAIMS_CONFIGURATION, ScheduledFunctionDevelopmentFirebaseFunctionListEntry, ScheduledFunctionDevelopmentFunctionTypeEnum, StorageFileCreationType, StorageFileDocument, StorageFileFirestoreCollections, StorageFileFunctions, StorageFileGroupDocument, StorageFileProcessingState, StorageFileState, StorageFileUploadStreamUnsupportedError, SystemStateDocument, SystemStateFirestoreCollections, UNAUTHENTICATED_ERROR_CODE, UNAVAILABLE_ERROR_CODE, UNAVAILABLE_OR_DEACTIVATED_FUNCTION_ERROR_CODE, UNKNOWN_MODEL_TYPE_ERROR_CODE, UPDATE_MODEL_OIDC_SCOPE, UPLOADED_FILE_DOES_NOT_EXIST_ERROR_CODE, UPLOADED_FILE_INITIALIZATION_DISCARDED_ERROR_CODE, UPLOADED_FILE_INITIALIZATION_FAILED_ERROR_CODE, UPLOADED_FILE_NOT_ALLOWED_TO_BE_INITIALIZED_ERROR_CODE, UPLOADS_FOLDER_PATH, _createNotificationDocumentFromPair, abstractSubscribeOrUnsubscribeToNotificationBoxParamsType, abstractSubscribeToNotificationBoxParamsType, addConstraintToBuilder, addOrReplaceLimitInConstraints, allChildDocumentsUnderParent, allChildDocumentsUnderParentPath, allChildDocumentsUnderRelativePath, allowDocumentSnapshotWithPathOnceFilter, allowedNotificationRecipients, appNotificationTemplateTypeInfoRecordService, applyExclusionsToNotificationUserNotificationBoxRecipientConfigs, arrayUpdateWithAccessorFunction, asTopLevelFieldPath, asTopLevelFieldPaths, assertFirestoreUpdateHasData, assertStorageUploadOptionsStringFormat, assignDateCellRangeFunction, assignDateCellScheduleFunction, assignUnitedStatesAddressFunction, assignWebsiteFileLinkFunction, assignWebsiteLinkFunction, buildFirebaseCollectionTypeModelTypeMap, calculateNsForNotificationUserNotificationBoxRecipientConfigs, calculateStorageFileGroupEmbeddedFileUpdate, calculateStorageFileGroupRegeneration, callModelFirebaseFunctionMapFactory, callModelOidcScopeForCallType, canQueueStorageFileForProcessing, childFirestoreModelKey, childFirestoreModelKeyPath, childFirestoreModelKeys, cleanupOldNotificationLoggedEventDaysParamsType, cleanupSentNotificationsParamsType, clientFirebaseFirestoreContextFactory, clientFirebaseStorageContextFactory, combineUploadFileTypeDeterminers, completeSubtaskProcessingAndScheduleCleanupTaskResult, contextGrantedModelRolesReader, contextGrantedModelRolesReaderDoesNotExistErrorMessage, contextGrantedModelRolesReaderPermissionErrorMessage, convertHttpsCallableErrorToReadableError, copyDocumentIdForUserRelatedModifierFunction, copyDocumentIdToFieldModifierFunction, copyStoragePath, copyUserRelatedDataAccessorFactoryFunction, copyUserRelatedDataModifierConfig, createNotificationBoxParamsType, createNotificationDocument, createNotificationDocumentIfSending, createNotificationDocumentPair, createNotificationLoggedEventTemplate, createNotificationSummaryParamsType, createNotificationTaskTemplate, createNotificationTemplate, createNotificationUserParamsType, createOidcClientFieldParamsType, createOidcClientParamsType, createStorageFileDocumentPair, createStorageFileDocumentPairFactory, createStorageFileGroupParamsType, createStorageFileParamsType, createStorageFileSignedUploadUrlParamsType, dataFromDocumentSnapshots, dataFromSnapshotStream, decodeFirebaseAuthOobCode, defaultPagedItemPageDataConverter, delayCompletion, deleteAllQueuedStorageFilesParamsType, targetModelParamsType as deleteOidcClientParamsType, targetModelParamsType as deleteOidcTokenParamsType, deleteStorageFileParamsType, determineByFileName, determineByFilePath, determineByFolderName, determineUserByFolder, determineUserByFolderWrapperFunction, determineUserByUserUploadsFolderWrapperFunction, developmentFirebaseFunctionMapFactory, directDataHttpsCallable, documentData, documentDataFunction, documentDataWithIdAndKey, documentReferenceFromDocument, documentReferencesFromDocuments, documentReferencesFromSnapshot, downloadMultipleStorageFilesFileParamsType, downloadMultipleStorageFilesParamsType, downloadStorageFileParamsType, effectiveNotificationBoxRecipientConfig, effectiveNotificationBoxRecipientTemplateConfig, encodeFirebaseAuthOobCode, endAt, endAtValue, endBefore, extendFirestoreCollectionWithPagedItemAccessor, extendFirestoreCollectionWithSingleDocumentAccessor, filterConstraintsOfType, filterDisallowedFirestoreItemPageIteratorInputConstraints, 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, firestoreCollectionDocumentCache, firestoreCollectionQueryFactory, firestoreContextFactory, firestoreDate, firestoreDateCellRange, firestoreDateCellRangeArray, firestoreDateCellRangeAssignFn, firestoreDateCellSchedule, firestoreDateCellScheduleAssignFn, firestoreDateNumber, firestoreDencoderArray, firestoreDencoderMap, firestoreDencoderStringArray, firestoreDocumentAccessorContextExtension, firestoreDocumentAccessorFactory, firestoreDocumentLoader, firestoreDocumentSnapshotPairsLoader, firestoreDocumentSnapshotPairsLoaderInstance, firestoreDummyKey, firestoreEncodedArray, firestoreEncodedObjectMap, firestoreEnum, firestoreEnumArray, firestoreField, firestoreFieldConfigToModelMapFunctionsRef, firestoreFixedItemPageIteration, firestoreFixedItemPageIterationFactory, firestoreIdBatchVerifierFactory, firestoreIdentityTypeArray, firestoreIdentityTypeArrayName, firestoreItemPageIteration, firestoreItemPageIterationFactory, firestoreLatLngString, firestoreMap, firestoreMapZoomLevel, firestoreModelId, firestoreModelIdArrayField, firestoreModelIdFromDocument, firestoreModelIdFromEmail, firestoreModelIdGrantedRoleArrayMap, firestoreModelIdGrantedRoleMap, firestoreModelIdOrKeyType, firestoreModelIdString, firestoreModelIdType, firestoreModelIdentity, firestoreModelIdentityTypeMap, firestoreModelIdsFromDocuments, firestoreModelIdsFromKey, firestoreModelKey, firestoreModelKeyArrayField, firestoreModelKeyCollectionName, firestoreModelKeyCollectionType, firestoreModelKeyCollectionTypeArray, firestoreModelKeyCollectionTypeArrayName, firestoreModelKeyCollectionTypePair, firestoreModelKeyEncodedGrantedRoleMap, firestoreModelKeyFactory, firestoreModelKeyFromDocument, firestoreModelKeyGrantedRoleArrayMap, firestoreModelKeyGrantedRoleMap, firestoreModelKeyPairObject, firestoreModelKeyParentKey, firestoreModelKeyParentKeyPartPairs, firestoreModelKeyPart, firestoreModelKeyPartPairs, firestoreModelKeyPartPairsKeyPath, firestoreModelKeyPartPairsPaths, firestoreModelKeyPath, firestoreModelKeyString, firestoreModelKeyType, 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, firestoreUnixDateTimeSecondsNumber, 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, grantStorageFileRolesForUserAuthFunction, inContextFirebaseModelServiceFactory, inContextFirebaseModelsServiceFactory, inMemoryFirestoreCollectionCacheDelegate, inMemoryFirestoreContextCache, inMemoryFirestoreContextCacheFactory, incrementUpdateWithAccessorFunction, inferKeyFromTwoWayFlatFirestoreModelKey, inferNotificationBoxRelatedModelKey, inferStorageFileGroupRelatedModelKey, inferredTargetModelIdParamsType, inferredTargetModelParamsType, initializeAllApplicableNotificationBoxesParamsType, initializeAllApplicableNotificationSummariesParamsType, initializeAllApplicableStorageFileGroupsParamsType, initializeAllStorageFilesFromUploadsParamsType, initializeNotificationModelParamsType, initializeStorageFileFromUploadParamsType, initializeStorageFileModelParamsType, interceptAccessorFactoryFunction, isAdminInFirebaseModelContext, isClientFirebaseError, isCompleteNotificationSendState, isFirebaseStorageObjectNotFoundError, isFirestoreModelId, isFirestoreModelIdOrKey, isFirestoreModelKey, isLoggedEventNotification, isOwnerOfUserRelatedModelInFirebaseModelContext, iterateFirestoreDocumentSnapshotBatches, iterateFirestoreDocumentSnapshotCheckpoints, iterateFirestoreDocumentSnapshotPairBatches, iterateFirestoreDocumentSnapshotPairs, iterateFirestoreDocumentSnapshots, iterateStorageListFiles, iterateStorageListFilesByEachFile, iterateStorageListFilesFactory, iterationQueryDocChangeWatcher, iterationQueryDocChangeWatcherChangeTypeForGroup, latestDataFromDocuments, latestSnapshotsFromDocuments, lazyFirebaseFunctionsFactory, limit, limitToLast, limitUploadFileTypeDeterminer, limitedFirestoreDocumentAccessorFactory, limitedFirestoreDocumentAccessorSnapshotCache, loadAllFirestoreDocumentSnapshot, loadAllFirestoreDocumentSnapshotPairs, loadDocumentsForDocumentReferences, loadDocumentsForDocumentReferencesFromValues, loadDocumentsForIds, loadDocumentsForIdsFromValues, loadDocumentsForKeys, loadDocumentsForKeysFromValues, loadDocumentsForSnapshots, loadDocumentsForValues, loadNotificationBoxDocumentForReferencePair, loadStorageFileGroupDocumentForReferencePair, makeDocuments, makeFirestoreCollection, makeFirestoreCollectionGroup, makeFirestoreCollectionWithParent, makeFirestoreContextCache, makeFirestoreItemPageIteratorDelegate, makeFirestoreQueryConstraintFunctionsDriver, makePagedItemFirestoreCollection, makeRootSingleItemFirestoreCollection, makeSingleItemFirestoreCollection, mapDataFromSnapshot, mapHttpsCallable, mapLatestSnapshotsFromDocuments, mergeNotificationBoxRecipientTemplateConfigRecords, mergeNotificationBoxRecipientTemplateConfigs, mergeNotificationBoxRecipients, mergeNotificationSendMessagesResult, mergeNotificationUserDefaultNotificationBoxRecipientConfig, mergeNotificationUserNotificationBoxRecipientConfigs, modelStorageSlashPathFactory, modifyBeforeSetInterceptAccessorFactoryFunction, newDocuments, newNotificationBoxRecipientForUid, noContentNotificationMessageFunctionFactory, noStringFormatInStorageUploadOptionsError, noopFirestoreCollectionCache, noopFirestoreCollectionCacheDelegate, noopFirestoreCollectionDocumentCache, noopFirestoreContextCache, notificationBoxCollectionReference, notificationBoxConverter, notificationBoxFirestoreCollection, notificationBoxIdForModel, notificationBoxIdentity, notificationBoxRecipientTemplateConfigArrayEntryParamType, notificationBoxRecipientTemplateConfigArrayToRecord, notificationBoxRecipientTemplateConfigRecordToArray, notificationBoxesFlaggedForNeedsInitializationQuery, notificationBoxesFlaggedInvalidQuery, notificationCollectionReference, notificationCollectionReferenceFactory, notificationConverter, notificationFirestoreCollectionFactory, notificationFirestoreCollectionGroup, notificationFunctionMap, notificationIdentity, notificationLoggedEventDayCollectionReference, notificationLoggedEventDayCollectionReferenceFactory, notificationLoggedEventDayConverter, notificationLoggedEventDayFirestoreCollectionFactory, notificationLoggedEventDayFirestoreCollectionGroup, notificationLoggedEventDayId, notificationLoggedEventDayIdentity, notificationLoggedEventDayPageCollectionReference, notificationLoggedEventDayPageFirestoreCollectionGroup, notificationLoggedEventDayPageIdentity, notificationLoggedEventDayPagedItemsCollectionFactory, notificationLoggedEventDayPagedItemsCollectionReferenceFactory, notificationLoggedEventDaysOlderThanQuery, notificationLoggedEventLoader, notificationMessageFunction, notificationRecipientParamsType, notificationSendExclusionCanSendFunction, notificationSendFlagsImplyIsComplete, notificationSubtaskComplete, notificationSummariesFlaggedForNeedsInitializationQuery, notificationSummaryCollectionReference, notificationSummaryConverter, notificationSummaryFirestoreCollection, notificationSummaryIdForModel, notificationSummaryIdForUidFunctionForRootFirestoreModelIdentity, notificationSummaryIdentity, notificationTaskCanRunNextCheckpoint, notificationTaskComplete, notificationTaskDelayRetry, notificationTaskFailed, notificationTaskPartiallyComplete, notificationTaskUniqueId, notificationTemplateTypeInfoRecord, notificationUserCollectionReference, notificationUserConverter, notificationUserFirestoreCollection, notificationUserHasExclusionQuery, notificationUserIdentity, notificationUsersFlaggedForNeedsSyncQuery, notificationWeekCollectionReference, notificationWeekCollectionReferenceFactory, notificationWeekConverter, notificationWeekFirestoreCollectionFactory, notificationWeekFirestoreCollectionGroup, notificationWeekIdentity, notificationsPastSendAtTimeQuery, notificationsReadyForCleanupQuery, offset, oidcClientEntriesByOwnerQuery, oidcEntriesByClientIdQuery, oidcEntriesByGrantIdQuery, oidcEntriesByUidQuery, oidcEntriesByUserCodeQuery, oidcEntriesWithTypeQuery, oidcEntryCollectionReference, oidcEntryConverter, oidcEntryFirestoreCollection, oidcEntryIdentity, oidcGrantEntriesByUidQuery, oidcModelFunctionMap, onCallCreateModelParams, onCallCreateModelResult, onCallCreateModelResultWithDocs, onCallDeleteModelParams, onCallDevelopmentParams, onCallInvokeModelParams, onCallQueryModelParams, onCallReadModelParams, onCallTypedModelParams, onCallTypedModelParamsFunction, onCallUpdateModelParams, optionalFirestoreArray, optionalFirestoreBoolean, optionalFirestoreDate, optionalFirestoreDateNumber, optionalFirestoreEnum, optionalFirestoreField, optionalFirestoreNumber, optionalFirestoreString, optionalFirestoreUID, optionalFirestoreUnitedStatesAddress, optionalFirestoreUnixDateTimeSecondsNumber, orderBy, orderByDocumentId, processAllQueuedStorageFilesParamsType, processStorageFileParamsType, readFirestoreModelKey, readFirestoreModelKeyFromDocumentSnapshot, readLoggingFirestoreContextCache, readLoggingFirestoreContextCacheFactory, regenerateAllFlaggedStorageFileGroupsContentParamsType, regenerateStorageFileGroupContentParamsType, replaceConstraints, resyncAllNotificationUserParamsType, targetModelParamsType as resyncNotificationUserParamsType, targetModelParamsType as rotateOidcClientSecretParamsType, scheduledFunctionDevelopmentFirebaseFunctionParamsType, selectFromFirebaseModelsService, sendNotificationParamsType, sendQueuedNotificationsParamsType, separateConstraints, setIdAndKeyFromKeyIdRefOnDocumentData, setIdAndKeyFromSnapshotOnDocumentData, shouldSaveNotificationToNotificationWeek, shouldSendCreatedNotificationInput, snapshotConverterFunctions, snapshotStreamDataForAccessor, snapshotStreamForAccessor, sortNotificationItemsFunction, startAfter, startAt, startAtValue, storageFileCollectionReference, storageFileConverter, storageFileFirestoreCollection, storageFileFlaggedForSyncWithGroupsQuery, storageFileFunctionMap, storageFileGroupCollectionReference, storageFileGroupConverter, storageFileGroupCreateStorageFileKeyFactory, storageFileGroupCreatedStorageFileKey, storageFileGroupEmbeddedFile, storageFileGroupFirestoreCollection, storageFileGroupFolderPath, storageFileGroupIdForModel, storageFileGroupIdentity, storageFileGroupZipFileStoragePath, storageFileGroupZipStorageFileKey, storageFileGroupsFlaggedForContentRegenerationQuery, storageFileGroupsFlaggedForNeedsInitializationQuery, storageFileGroupsFlaggedInvalidQuery, storageFileIdentity, storageFileProcessingNotificationTaskTemplate, storageFilePurposeAndUserQuery, storageFilesQueuedForDeleteQuery, storageFilesQueuedForProcessingQuery, storageListFilesResultFactory, storageListFilesResultHasNoNextError, storagePathFactory, storedFileReaderFactory, streamDocumentSnapshotDataPairs, streamDocumentSnapshotDataPairsWithData, streamDocumentSnapshotsData, streamFromOnSnapshot, syncAllFlaggedStorageFilesWithGroupsParamsType, syncStorageFileWithGroupsParamsType, systemStateCollectionReference, systemStateConverter, systemStateFirestoreCollection, systemStateIdentity, targetModelIdParamsType, targetModelParamsType, twoWayFlatFirestoreModelKey, unreadNotificationItems, unsupportedFirestoreDriverFunctionError, targetModelParamsType as updateNotificationBoxParamsType, updateNotificationBoxRecipientLikeParamsType, updateNotificationBoxRecipientParamsType, updateNotificationBoxRecipientTemplateConfigRecord, updateNotificationRecipient, updateNotificationSummaryParamsType, updateNotificationUserDefaultNotificationBoxRecipientConfig, updateNotificationUserDefaultNotificationBoxRecipientConfigParamsType, updateNotificationUserNotificationBoxRecipientConfigIfChanged, updateNotificationUserNotificationBoxRecipientConfigs, updateNotificationUserNotificationBoxRecipientParamsType, updateNotificationUserNotificationSendExclusions, updateNotificationUserParamsType, updateOidcClientFieldParamsType, updateOidcClientParamsType, updateStorageFileGroupEntryParamsType, updateStorageFileGroupParamsType, updateStorageFileParamsType, updateWithAccessorUpdateAndConverterFunction, uploadFileWithStream, useContextAuth, useContextAuthUid, useDocumentSnapshot, useDocumentSnapshotData, useFirebaseModelsService, userUploadsFolderSlashPathFactory, userUploadsFolderStoragePathFactory, where, whereDateIsAfter, whereDateIsAfterWithSort, whereDateIsBefore, whereDateIsBeforeWithSort, whereDateIsBetween, whereDateIsInRange, whereDateIsOnOrAfter, whereDateIsOnOrAfterWithSort, whereDateIsOnOrBefore, whereDateIsOnOrBeforeWithSort, whereDocumentId, whereStringHasRootIdentityModelKey, whereStringValueHasPrefix };
|