@dereekb/firebase 14.0.1 → 14.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/eslint/index.esm.js +0 -194
- package/eslint/package.json +4 -3
- package/index.esm.js +352 -8
- package/package.json +5 -5
- package/src/lib/common/firestore/snapshot/snapshot.field.d.ts +67 -0
- package/src/lib/model/calendar/calendar.d.ts +1 -1
- package/src/lib/model/calendar/calendar.id.d.ts +6 -0
- package/src/lib/model/formspace/formspace.d.ts +6 -0
- package/src/lib/model/userexternalconnection/index.d.ts +1 -0
- package/src/lib/model/userexternalconnection/userexternalconnection.api.d.ts +41 -1
- package/src/lib/model/userexternalconnection/userexternalconnection.d.ts +115 -5
- package/src/lib/model/userexternalconnection/userexternalconnection.error.d.ts +41 -0
- package/src/lib/model/userexternalconnection/userexternalconnection.id.d.ts +34 -0
- package/src/lib/model/userexternalconnection/userexternalconnection.query.d.ts +22 -1
- package/src/lib/model/userexternalconnection/userexternalconnection.util.d.ts +138 -3
- package/test/package.json +7 -6
package/index.esm.js
CHANGED
|
@@ -4253,6 +4253,87 @@ function optionalFirestoreField(config) {
|
|
|
4253
4253
|
transformToData: copyValueDeepFunction(config)
|
|
4254
4254
|
});
|
|
4255
4255
|
}
|
|
4256
|
+
/**
|
|
4257
|
+
* Creates a field mapping configuration for an optional object field that is stored as a JSON STRING.
|
|
4258
|
+
*
|
|
4259
|
+
* The counterpart to {@link optionalFirestorePassthroughJsonField}, and the one to reach for when the
|
|
4260
|
+
* json is arbitrary rather than merely unmodelled: a json schema, a tool definition, whatever an llm
|
|
4261
|
+
* returned. The passthrough field stores a native Firestore map, and a map cannot represent every legal
|
|
4262
|
+
* json value — Firestore forbids an array directly inside an array, which an array-valued `enum`,
|
|
4263
|
+
* `const`, `default`, or `examples` produces immediately. That write does not degrade, it FAILS, and it
|
|
4264
|
+
* fails from inside whatever was doing the writing with an opaque "invalid nested entity" error.
|
|
4265
|
+
*
|
|
4266
|
+
* Serializing sidesteps the entire Firestore type system: the stored value is one string, so anything
|
|
4267
|
+
* `JSON.stringify` accepts round-trips exactly, including the shapes a map rejects. The cost is that the
|
|
4268
|
+
* field is no longer queryable and no longer readable in the Firestore console — pick this one when the
|
|
4269
|
+
* json is never a query target, and the passthrough field when it is.
|
|
4270
|
+
*
|
|
4271
|
+
* Two behaviours worth knowing:
|
|
4272
|
+
*
|
|
4273
|
+
* - A value only `JSON.stringify` knows how to narrow is narrowed. A `Date` becomes an ISO string and
|
|
4274
|
+
* stays a string on read, where the passthrough field would have kept it a `Timestamp`. Anything
|
|
4275
|
+
* carrying non-json values wants the passthrough field, not this one.
|
|
4276
|
+
* - Reads tolerate a legacy native map, so a field migrated from
|
|
4277
|
+
* {@link optionalFirestorePassthroughJsonField} keeps reading documents written before the switch. New
|
|
4278
|
+
* writes are always strings, so a document converts itself the next time it is written.
|
|
4279
|
+
*
|
|
4280
|
+
* @param config - Filtering and storage configuration. Defaults to stripping `undefined` values at every depth.
|
|
4281
|
+
* @returns A field mapping configuration for optional json values stored as a string.
|
|
4282
|
+
*
|
|
4283
|
+
* @dbxModelSnapshotField
|
|
4284
|
+
* @dbxModelSnapshotFieldCategory object
|
|
4285
|
+
* @dbxModelSnapshotFieldOptional true
|
|
4286
|
+
* @dbxModelSnapshotFieldTags json, string, serialized, stringify, object, raw, optional, arbitrary, schema, factory
|
|
4287
|
+
* @dbxModelSnapshotFieldRelated optional-firestore-passthrough-json-field, optional-firestore-field, firestore-sub-object
|
|
4288
|
+
* @template T - Type of the model field. Stored as a json string.
|
|
4289
|
+
*
|
|
4290
|
+
* @example
|
|
4291
|
+
* ```ts
|
|
4292
|
+
* fields: {
|
|
4293
|
+
* // { model: 'm', text: { format: { schema: { enum: [['a']] } } } }
|
|
4294
|
+
* // stores as the string '{"model":"m","text":{"format":{"schema":{"enum":[["a"]]}}}}'
|
|
4295
|
+
* config: optionalFirestoreJsonStringField<MyVendorConfig>(),
|
|
4296
|
+
* // store null rather than the string '{}' when nothing survives the filtering
|
|
4297
|
+
* usage: optionalFirestoreJsonStringField<MyVendorUsage>({ filterEmptyValues: true, dontStoreIfEmpty: true })
|
|
4298
|
+
* }
|
|
4299
|
+
* ```
|
|
4300
|
+
*
|
|
4301
|
+
* @__NO_SIDE_EFFECTS__
|
|
4302
|
+
*/ function optionalFirestoreJsonStringField(config) {
|
|
4303
|
+
var dontStoreIfEmpty = (config !== null && config !== void 0 ? config : {}).dontStoreIfEmpty;
|
|
4304
|
+
var copyValue = copyValueDeepFunction(config);
|
|
4305
|
+
/**
|
|
4306
|
+
* Malformed json reads as absent rather than throwing: only this field writes the value, so a string
|
|
4307
|
+
* that will not parse means the document was written by something else, and taking the whole document
|
|
4308
|
+
* down is a worse answer than reporting the one field missing.
|
|
4309
|
+
*
|
|
4310
|
+
* @param input - The stored value: a json string, or a legacy native map.
|
|
4311
|
+
* @returns The parsed value, or null when the string does not parse.
|
|
4312
|
+
*/ function fromStoredValue(input) {
|
|
4313
|
+
var result;
|
|
4314
|
+
if (typeof input === 'string') {
|
|
4315
|
+
try {
|
|
4316
|
+
result = JSON.parse(input);
|
|
4317
|
+
} catch (unused) {
|
|
4318
|
+
result = null;
|
|
4319
|
+
}
|
|
4320
|
+
} else {
|
|
4321
|
+
// COMPAT: written before this field replaced optionalFirestorePassthroughJsonField, so the stored
|
|
4322
|
+
// value is still the native map that field wrote.
|
|
4323
|
+
result = input;
|
|
4324
|
+
}
|
|
4325
|
+
return result;
|
|
4326
|
+
}
|
|
4327
|
+
function toStoredValue(input) {
|
|
4328
|
+
var copied = copyValue(input);
|
|
4329
|
+
return dontStoreIfEmpty && objectHasNoKeys(copied) ? null : JSON.stringify(copied);
|
|
4330
|
+
}
|
|
4331
|
+
return optionalFirestoreField({
|
|
4332
|
+
// cast: the base types a read transform as total, but an unparseable value has no T to return.
|
|
4333
|
+
transformFromData: fromStoredValue,
|
|
4334
|
+
transformToData: toStoredValue
|
|
4335
|
+
});
|
|
4336
|
+
}
|
|
4256
4337
|
/**
|
|
4257
4338
|
* Default value for required Firestore string fields when the field is missing from the document.
|
|
4258
4339
|
*/ var DEFAULT_FIRESTORE_STRING_FIELD_VALUE = '';
|
|
@@ -15547,7 +15628,7 @@ function _type_of$6(obj) {
|
|
|
15547
15628
|
filterUnique: true,
|
|
15548
15629
|
dontStoreIfEmpty: true
|
|
15549
15630
|
}),
|
|
15550
|
-
x:
|
|
15631
|
+
x: optionalFirestoreJsonStringField({
|
|
15551
15632
|
filterEmptyValues: true,
|
|
15552
15633
|
dontStoreIfEmpty: true
|
|
15553
15634
|
}),
|
|
@@ -15633,7 +15714,7 @@ function _type_of$6(obj) {
|
|
|
15633
15714
|
sortWith: calendarEventItemsSortFunction(),
|
|
15634
15715
|
filterUnique: calendarEventItemsFilterUniqueFunction()
|
|
15635
15716
|
}),
|
|
15636
|
-
x:
|
|
15717
|
+
x: optionalFirestoreJsonStringField({
|
|
15637
15718
|
filterEmptyValues: true,
|
|
15638
15719
|
dontStoreIfEmpty: true
|
|
15639
15720
|
}),
|
|
@@ -17440,7 +17521,7 @@ function _type_of$5(obj) {
|
|
|
17440
17521
|
ps: firestoreEnum({
|
|
17441
17522
|
default: FormSpaceProcessingState.INIT_OR_NONE
|
|
17442
17523
|
}),
|
|
17443
|
-
d:
|
|
17524
|
+
d: optionalFirestoreJsonStringField({
|
|
17444
17525
|
dontStoreIfEmpty: true
|
|
17445
17526
|
}),
|
|
17446
17527
|
u: firestoreUID(),
|
|
@@ -26853,6 +26934,20 @@ var UserExternalConnectionDocument = /*#__PURE__*/ function(AbstractFirestoreDoc
|
|
|
26853
26934
|
}),
|
|
26854
26935
|
er: optionalFirestoreEnum()
|
|
26855
26936
|
};
|
|
26937
|
+
/**
|
|
26938
|
+
* Field conversions for a {@link UserExternalConnectionLogin}.
|
|
26939
|
+
*/ var userExternalConnectionLoginFields = {
|
|
26940
|
+
ea: firestoreString(),
|
|
26941
|
+
l: optionalFirestoreString(),
|
|
26942
|
+
em: optionalFirestoreString(),
|
|
26943
|
+
emv: optionalFirestoreBoolean(),
|
|
26944
|
+
lat: firestoreDate({
|
|
26945
|
+
saveDefaultAsNow: true
|
|
26946
|
+
}),
|
|
26947
|
+
uat: firestoreDate({
|
|
26948
|
+
saveDefaultAsNow: true
|
|
26949
|
+
})
|
|
26950
|
+
};
|
|
26856
26951
|
var userExternalConnectionConverter = snapshotConverterFunctions({
|
|
26857
26952
|
fields: {
|
|
26858
26953
|
uid: firestoreUID(),
|
|
@@ -26861,7 +26956,15 @@ var userExternalConnectionConverter = snapshotConverterFunctions({
|
|
|
26861
26956
|
fields: userExternalConnectionEntryFields
|
|
26862
26957
|
}
|
|
26863
26958
|
}),
|
|
26959
|
+
// an absent map decodes as {}, so every document written before `li` existed reads back as
|
|
26960
|
+
// "no login links" without a migration
|
|
26961
|
+
li: firestoreObjectMap({
|
|
26962
|
+
objectField: {
|
|
26963
|
+
fields: userExternalConnectionLoginFields
|
|
26964
|
+
}
|
|
26965
|
+
}),
|
|
26864
26966
|
c: firestoreEnumArray(),
|
|
26967
|
+
ec: optionalFirestoreArray(),
|
|
26865
26968
|
uat: firestoreDate({
|
|
26866
26969
|
saveDefaultAsNow: true
|
|
26867
26970
|
})
|
|
@@ -26912,6 +27015,29 @@ var userExternalConnectionConverter = snapshotConverterFunctions({
|
|
|
26912
27015
|
/**
|
|
26913
27016
|
* Provider type for Zoho.
|
|
26914
27017
|
*/ var ZOHO_USER_EXTERNAL_CONNECTION_PROVIDER_TYPE = 'zoho';
|
|
27018
|
+
/**
|
|
27019
|
+
* The delimiter joining a provider type to an external account id in a
|
|
27020
|
+
* {@link UserExternalConnectionExternalAccountKey}.
|
|
27021
|
+
*
|
|
27022
|
+
* A colon is safe on both sides: {@link UserExternalConnectionProviderType} must already be a valid
|
|
27023
|
+
* Firestore map key (no dots or slashes), and the key is only ever a stored/queried string VALUE,
|
|
27024
|
+
* never a document id or field path.
|
|
27025
|
+
*/ var USER_EXTERNAL_CONNECTION_EXTERNAL_ACCOUNT_KEY_DELIMITER = ':';
|
|
27026
|
+
/**
|
|
27027
|
+
* Builds the {@link UserExternalConnectionExternalAccountKey} for a provider/account pair.
|
|
27028
|
+
*
|
|
27029
|
+
* The SOLE producer of the key format: the derivation that stores it and the query that reads it
|
|
27030
|
+
* both go through here, so the two can never disagree about the delimiter.
|
|
27031
|
+
*
|
|
27032
|
+
* @param input - The provider type and external account id to join.
|
|
27033
|
+
* @param input.providerType - The provider the account belongs to.
|
|
27034
|
+
* @param input.externalAccountId - The provider's stable id for the account.
|
|
27035
|
+
* @returns The external account key.
|
|
27036
|
+
*
|
|
27037
|
+
* @__NO_SIDE_EFFECTS__
|
|
27038
|
+
*/ function userExternalConnectionExternalAccountKey(input) {
|
|
27039
|
+
return "".concat(input.providerType).concat(USER_EXTERNAL_CONNECTION_EXTERNAL_ACCOUNT_KEY_DELIMITER).concat(input.externalAccountId);
|
|
27040
|
+
}
|
|
26915
27041
|
|
|
26916
27042
|
function _define_property(obj, key, value) {
|
|
26917
27043
|
if (key in obj) {
|
|
@@ -26957,6 +27083,53 @@ function _object_spread(target) {
|
|
|
26957
27083
|
result.sort();
|
|
26958
27084
|
return result;
|
|
26959
27085
|
}
|
|
27086
|
+
/**
|
|
27087
|
+
* The SOLE producer of a {@link UserExternalConnection}'s `ec` array.
|
|
27088
|
+
*
|
|
27089
|
+
* Membership is every ENTRY carrying an `ea`, at ANY status, UNION every LOGIN LINK's `ea` —
|
|
27090
|
+
* deliberately unlike {@link userExternalConnectionConnectedProviderTypes}, which is `connected`-only.
|
|
27091
|
+
* `c` answers "whose credentials can I use?", a question about the credentials; `ec` answers "who IS
|
|
27092
|
+
* this account?", a question about identity, which survives an expired token. Filtering it by status
|
|
27093
|
+
* would make a returning user with `error` credentials look like a stranger, and a sign-in would
|
|
27094
|
+
* mint them a second Firebase user.
|
|
27095
|
+
*
|
|
27096
|
+
* The union is what makes the two lifecycles independent. Disconnecting a data connection removes its
|
|
27097
|
+
* entry, and if `ec` came from `e` alone that would take the sign-in binding with it — the next
|
|
27098
|
+
* sign-in would find no match and mint a second Firebase user for the same person.
|
|
27099
|
+
*
|
|
27100
|
+
* @param input - The entry map and the login map to derive from.
|
|
27101
|
+
* @returns The external account keys, deduped and sorted for a stable stored value.
|
|
27102
|
+
*/ function userExternalConnectionExternalAccountKeys(input) {
|
|
27103
|
+
var entries = input.entries, logins = input.logins;
|
|
27104
|
+
var keys = new Set();
|
|
27105
|
+
if (entries) {
|
|
27106
|
+
Object.keys(entries).forEach(function(providerType) {
|
|
27107
|
+
var _entries_providerType;
|
|
27108
|
+
var externalAccountId = (_entries_providerType = entries[providerType]) === null || _entries_providerType === void 0 ? void 0 : _entries_providerType.ea;
|
|
27109
|
+
if (externalAccountId != null) {
|
|
27110
|
+
keys.add(userExternalConnectionExternalAccountKey({
|
|
27111
|
+
providerType: providerType,
|
|
27112
|
+
externalAccountId: externalAccountId
|
|
27113
|
+
}));
|
|
27114
|
+
}
|
|
27115
|
+
});
|
|
27116
|
+
}
|
|
27117
|
+
if (logins) {
|
|
27118
|
+
Object.keys(logins).forEach(function(providerType) {
|
|
27119
|
+
var _logins_providerType;
|
|
27120
|
+
var externalAccountId = (_logins_providerType = logins[providerType]) === null || _logins_providerType === void 0 ? void 0 : _logins_providerType.ea;
|
|
27121
|
+
if (externalAccountId != null) {
|
|
27122
|
+
keys.add(userExternalConnectionExternalAccountKey({
|
|
27123
|
+
providerType: providerType,
|
|
27124
|
+
externalAccountId: externalAccountId
|
|
27125
|
+
}));
|
|
27126
|
+
}
|
|
27127
|
+
});
|
|
27128
|
+
}
|
|
27129
|
+
var result = Array.from(keys);
|
|
27130
|
+
result.sort();
|
|
27131
|
+
return result;
|
|
27132
|
+
}
|
|
26960
27133
|
/**
|
|
26961
27134
|
* Derives the {@link UserExternalConnectionEntry} for an operation's outcome.
|
|
26962
27135
|
*
|
|
@@ -27009,6 +27182,32 @@ function _object_spread(target) {
|
|
|
27009
27182
|
}
|
|
27010
27183
|
return result;
|
|
27011
27184
|
}
|
|
27185
|
+
/**
|
|
27186
|
+
* Assembles the COMPLETE document value from both maps.
|
|
27187
|
+
*
|
|
27188
|
+
* Extracted so the two appliers cannot diverge on how the derived arrays are produced: `ec` is the
|
|
27189
|
+
* union of `e` and `li`, and either applier computing it from only the map it happened to change
|
|
27190
|
+
* would drop the other map's keys out of the sign-in lookup.
|
|
27191
|
+
*
|
|
27192
|
+
* Exported for the one caller that legitimately replaces a whole map rather than one provider's key —
|
|
27193
|
+
* the login backfill. Ordinary writes go through the two appliers.
|
|
27194
|
+
*
|
|
27195
|
+
* @param input - The uid, both maps, and the instant to stamp.
|
|
27196
|
+
* @returns The next UserExternalConnection value to write.
|
|
27197
|
+
*/ function userExternalConnectionValue(input) {
|
|
27198
|
+
var uid = input.uid, entries = input.entries, logins = input.logins, now = input.now;
|
|
27199
|
+
return {
|
|
27200
|
+
uid: uid,
|
|
27201
|
+
e: entries,
|
|
27202
|
+
li: logins,
|
|
27203
|
+
c: userExternalConnectionConnectedProviderTypes(entries),
|
|
27204
|
+
ec: userExternalConnectionExternalAccountKeys({
|
|
27205
|
+
entries: entries,
|
|
27206
|
+
logins: logins
|
|
27207
|
+
}),
|
|
27208
|
+
uat: now
|
|
27209
|
+
};
|
|
27210
|
+
}
|
|
27012
27211
|
/**
|
|
27013
27212
|
* Applies a single provider's entry and returns the COMPLETE next document.
|
|
27014
27213
|
*
|
|
@@ -27016,6 +27215,9 @@ function _object_spread(target) {
|
|
|
27016
27215
|
* exported way to change `e`, and it always recomputes `c` from the resulting map. There is no
|
|
27017
27216
|
* exported path that touches one without the other.
|
|
27018
27217
|
*
|
|
27218
|
+
* The login map is carried through UNCHANGED. A data connection's lifecycle says nothing about
|
|
27219
|
+
* whether the provider is still a way to sign in, so a disconnect must not remove the link.
|
|
27220
|
+
*
|
|
27019
27221
|
* @param input - The current document plus the provider entry to apply.
|
|
27020
27222
|
* @returns The next UserExternalConnection value to write.
|
|
27021
27223
|
*/ function applyUserExternalConnectionEntry(input) {
|
|
@@ -27026,10 +27228,56 @@ function _object_spread(target) {
|
|
|
27026
27228
|
} else {
|
|
27027
27229
|
delete entries[providerType];
|
|
27028
27230
|
}
|
|
27029
|
-
return {
|
|
27231
|
+
return userExternalConnectionValue({
|
|
27030
27232
|
uid: uid,
|
|
27031
|
-
|
|
27032
|
-
|
|
27233
|
+
entries: entries,
|
|
27234
|
+
logins: _object_spread({}, current === null || current === void 0 ? void 0 : current.li),
|
|
27235
|
+
now: now
|
|
27236
|
+
});
|
|
27237
|
+
}
|
|
27238
|
+
/**
|
|
27239
|
+
* Applies a single provider's LOGIN LINK and returns the COMPLETE next document.
|
|
27240
|
+
*
|
|
27241
|
+
* The mirror of {@link applyUserExternalConnectionEntry}, and the only exported way to change `li`.
|
|
27242
|
+
* The entry map is carried through unchanged: linking a provider as a login method grants nothing
|
|
27243
|
+
* about its data connection, because the identity scopes and the data scopes are not guaranteed to
|
|
27244
|
+
* be the same set.
|
|
27245
|
+
*
|
|
27246
|
+
* @param input - The current document plus the login link to apply.
|
|
27247
|
+
* @returns The next UserExternalConnection value to write.
|
|
27248
|
+
*/ function applyUserExternalConnectionLogin(input) {
|
|
27249
|
+
var current = input.current, uid = input.uid, providerType = input.providerType, login = input.login, now = input.now;
|
|
27250
|
+
var logins = _object_spread({}, current === null || current === void 0 ? void 0 : current.li);
|
|
27251
|
+
if (login) {
|
|
27252
|
+
logins[providerType] = login;
|
|
27253
|
+
} else {
|
|
27254
|
+
delete logins[providerType];
|
|
27255
|
+
}
|
|
27256
|
+
return userExternalConnectionValue({
|
|
27257
|
+
uid: uid,
|
|
27258
|
+
entries: _object_spread({}, current === null || current === void 0 ? void 0 : current.e),
|
|
27259
|
+
logins: logins,
|
|
27260
|
+
now: now
|
|
27261
|
+
});
|
|
27262
|
+
}
|
|
27263
|
+
/**
|
|
27264
|
+
* Derives the {@link UserExternalConnectionLogin} for an identity a link round trip resolved.
|
|
27265
|
+
*
|
|
27266
|
+
* `lat` survives a relink, the mirror of how {@link userExternalConnectionEntryForOutcome} preserves
|
|
27267
|
+
* `coa`: relinking the same provider is a re-consent, not a new relationship, so the date the account
|
|
27268
|
+
* first became a login method stays what it was.
|
|
27269
|
+
*
|
|
27270
|
+
* @param input - The resolved identity, the stored link, and the instant to stamp.
|
|
27271
|
+
* @returns The next login link.
|
|
27272
|
+
*/ function userExternalConnectionLoginForIdentity(input) {
|
|
27273
|
+
var _identity_label, _identity_email, _identity_emailVerified, _ref;
|
|
27274
|
+
var identity = input.identity, previous = input.previous, now = input.now;
|
|
27275
|
+
return {
|
|
27276
|
+
ea: identity.externalAccountId,
|
|
27277
|
+
l: (_identity_label = identity.label) !== null && _identity_label !== void 0 ? _identity_label : previous === null || previous === void 0 ? void 0 : previous.l,
|
|
27278
|
+
em: (_identity_email = identity.email) !== null && _identity_email !== void 0 ? _identity_email : previous === null || previous === void 0 ? void 0 : previous.em,
|
|
27279
|
+
emv: (_identity_emailVerified = identity.emailVerified) !== null && _identity_emailVerified !== void 0 ? _identity_emailVerified : previous === null || previous === void 0 ? void 0 : previous.emv,
|
|
27280
|
+
lat: (_ref = previous === null || previous === void 0 ? void 0 : previous.lat) !== null && _ref !== void 0 ? _ref : now,
|
|
27033
27281
|
uat: now
|
|
27034
27282
|
};
|
|
27035
27283
|
}
|
|
@@ -27047,7 +27295,9 @@ function _object_spread(target) {
|
|
|
27047
27295
|
return {
|
|
27048
27296
|
uid: uid,
|
|
27049
27297
|
e: {},
|
|
27298
|
+
li: {},
|
|
27050
27299
|
c: [],
|
|
27300
|
+
ec: [],
|
|
27051
27301
|
uat: now
|
|
27052
27302
|
};
|
|
27053
27303
|
}
|
|
@@ -27089,6 +27339,26 @@ function _object_spread(target) {
|
|
|
27089
27339
|
*/ function userExternalConnectionIsConnectedToProvider(connection, providerType) {
|
|
27090
27340
|
return userExternalConnectionEntryIsConnected(userExternalConnectionEntryForProvider(connection, providerType));
|
|
27091
27341
|
}
|
|
27342
|
+
/**
|
|
27343
|
+
* Returns the login link for the given provider, if any.
|
|
27344
|
+
*
|
|
27345
|
+
* @param connection - The loaded connection document.
|
|
27346
|
+
* @param providerType - The provider to read.
|
|
27347
|
+
* @returns The provider's login link, or null when the provider is not a login method for this user.
|
|
27348
|
+
*/ function userExternalConnectionLoginForProvider(connection, providerType) {
|
|
27349
|
+
var _connection_li;
|
|
27350
|
+
return connection === null || connection === void 0 ? void 0 : (_connection_li = connection.li) === null || _connection_li === void 0 ? void 0 : _connection_li[providerType];
|
|
27351
|
+
}
|
|
27352
|
+
/**
|
|
27353
|
+
* Returns every provider type that is a login method for this user.
|
|
27354
|
+
*
|
|
27355
|
+
* @param connection - The loaded connection document.
|
|
27356
|
+
* @returns The linked provider types, sorted for a stable render order.
|
|
27357
|
+
*/ function userExternalConnectionLinkedLoginProviderTypes(connection) {
|
|
27358
|
+
var result = (connection === null || connection === void 0 ? void 0 : connection.li) ? Object.keys(connection.li) : [];
|
|
27359
|
+
result.sort();
|
|
27360
|
+
return result;
|
|
27361
|
+
}
|
|
27092
27362
|
|
|
27093
27363
|
/**
|
|
27094
27364
|
* Query for the UserExternalConnection documents that are currently connected to the given provider.
|
|
@@ -27110,6 +27380,30 @@ function _object_spread(target) {
|
|
|
27110
27380
|
where('c', 'array-contains', providerType)
|
|
27111
27381
|
];
|
|
27112
27382
|
}
|
|
27383
|
+
/**
|
|
27384
|
+
* Query for the UserExternalConnection document holding the given third-party account.
|
|
27385
|
+
*
|
|
27386
|
+
* The sign-in counterpart of {@link userExternalConnectionsWithConnectedProviderQuery}: that one
|
|
27387
|
+
* asks "which users are connected to this provider?", this one asks "which user IS this account?".
|
|
27388
|
+
* Both exist because a per-user document makes `e.<provider>.ea` unqueryable.
|
|
27389
|
+
*
|
|
27390
|
+
* Matches at ANY entry status — see the `ec` field docs. Expect at most one result when the
|
|
27391
|
+
* provider's policy declares the connection unique, but the caller must still handle more than one:
|
|
27392
|
+
* uniqueness is enforced at write time and a provider may only have started enforcing it recently.
|
|
27393
|
+
*
|
|
27394
|
+
* @param input - The provider type and external account id to search for.
|
|
27395
|
+
* @param input.providerType - The provider the account belongs to.
|
|
27396
|
+
* @param input.externalAccountId - The provider's stable id for the account.
|
|
27397
|
+
* @returns Firestore query constraints matching the user holding that external account.
|
|
27398
|
+
*
|
|
27399
|
+
* @dbxModelFirebaseIndex
|
|
27400
|
+
* @dbxModelFirebaseIndexModel UserExternalConnection
|
|
27401
|
+
* @dbxModelFirebaseIndexScope COLLECTION
|
|
27402
|
+
*/ function userExternalConnectionsWithExternalAccountQuery(input) {
|
|
27403
|
+
return [
|
|
27404
|
+
where('ec', 'array-contains', userExternalConnectionExternalAccountKey(input))
|
|
27405
|
+
];
|
|
27406
|
+
}
|
|
27113
27407
|
|
|
27114
27408
|
function _class_call_check(instance, Constructor) {
|
|
27115
27409
|
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
@@ -27119,6 +27413,10 @@ var disconnectUserExternalConnectionParamsType = /* @__PURE__ */ inferredTargetM
|
|
|
27119
27413
|
providerType: 'string'
|
|
27120
27414
|
}));
|
|
27121
27415
|
var readUserExternalConnectionAuthorizeStateParamsType = /* @__PURE__ */ inferredTargetModelParamsType.merge(type({
|
|
27416
|
+
providerType: 'string',
|
|
27417
|
+
'mode?': "'connect' | 'link'"
|
|
27418
|
+
}));
|
|
27419
|
+
var unlinkUserExternalConnectionLoginParamsType = /* @__PURE__ */ inferredTargetModelParamsType.merge(type({
|
|
27122
27420
|
providerType: 'string'
|
|
27123
27421
|
}));
|
|
27124
27422
|
var USER_EXTERNAL_CONNECTION_FUNCTION_TYPE_CONFIG_MAP = {};
|
|
@@ -27126,7 +27424,7 @@ var USER_EXTERNAL_CONNECTION_MODEL_CRUD_FUNCTIONS_CONFIG = {
|
|
|
27126
27424
|
userExternalConnection: [
|
|
27127
27425
|
'create',
|
|
27128
27426
|
'read:authorizeState',
|
|
27129
|
-
'update:disconnect'
|
|
27427
|
+
'update:disconnect,unlink'
|
|
27130
27428
|
]
|
|
27131
27429
|
};
|
|
27132
27430
|
/**
|
|
@@ -27140,4 +27438,50 @@ var USER_EXTERNAL_CONNECTION_MODEL_CRUD_FUNCTIONS_CONFIG = {
|
|
|
27140
27438
|
* Used to generate the UserExternalConnectionFunctions map for a Functions instance.
|
|
27141
27439
|
*/ var userExternalConnectionFunctionMap = callModelFirebaseFunctionMapFactory(USER_EXTERNAL_CONNECTION_FUNCTION_TYPE_CONFIG_MAP, USER_EXTERNAL_CONNECTION_MODEL_CRUD_FUNCTIONS_CONFIG);
|
|
27142
27440
|
|
|
27143
|
-
export { ALL_FORM_SPACE_NOTIFICATION_TASK_TYPES, ALL_NOTIFICATION_DELIVERY_METHODS, 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, AppCalendarTypeConfigService, AppFormSpaceTypeConfigService, AppNotificationTemplateTypeInfoRecordService, BAD_DOCUMENT_QUERY_CURSOR_ERROR_CODE, BAD_REQUEST_ERROR_CODE, BASE_MODEL_STORAGE_FILE_PATH, CALCOM_USER_EXTERNAL_CONNECTION_PROVIDER_TYPE, CALENDAR_EXTENSION_PROPERTY_PREFIX, CALENDAR_ICS_DEFAULT_TIMEZONE, CALENDAR_ICS_DOMAIN_NOT_CONFIGURED_ERROR_CODE, CALENDAR_ICS_FILE_EXTENSION, CALENDAR_ICS_ROTATE_THROTTLED_ERROR_CODE, CALENDAR_ICS_STORAGE_FILE_PURPOSE, CALENDAR_ICS_STORAGE_FILE_PURPOSE_GENERATE_ICS_SUBTASK, CALENDAR_ICS_STORAGE_FILE_UNAVAILABLE_ERROR_CODE, CALENDAR_OCCURRENCE_KEY_SEPARATOR, CALENDAR_ROOT_FOLDER_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, CalendarDocument, CalendarEventStatus, CalendarFirestoreCollections, CalendarFunctions, CalendarSyncState, 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_CALENDAR_ICS_EXPANSION_FUTURE_DAYS, DEFAULT_CALENDAR_ICS_EXPANSION_PAST_DAYS, DEFAULT_CALENDAR_ICS_RECURRENCE_MODE, DEFAULT_CALENDAR_ICS_ROTATE_THROTTLE_HOURS, DEFAULT_CALENDAR_INVITE_ATTENDEE_PARTICIPATION_STATUS, DEFAULT_CALENDAR_INVITE_ATTENDEE_ROLE, DEFAULT_CALENDAR_INVITE_METHOD, DEFAULT_CALENDAR_MAX_EVENTS, DEFAULT_CALENDAR_RESYNC_INTERVAL, DEFAULT_CALENDAR_RETAIN_PAST_EVENT_DAYS, DEFAULT_CALENDAR_TYPE_CONFIG, 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_TIMEZONE_STRING_VALUE, DEFAULT_FIRESTORE_UNITED_STATES_ADDRESS_VALUE, DEFAULT_FIRESTORE_WEBSITE_FILE_LINK_VALUE, DEFAULT_FORM_SPACE_ALLOWED_MIME_TYPES, DEFAULT_FORM_SPACE_EXPIRES_IN, DEFAULT_FORM_SPACE_FILE_ACCESS, DEFAULT_FORM_SPACE_MAX_FILE_SIZE_BYTES, DEFAULT_FORM_SPACE_MAX_UPLOADS, DEFAULT_FORM_SPACE_SLOT_MAX_FILES, DEFAULT_FORM_SPACE_TYPE_CONFIG, DEFAULT_IN_MEMORY_CACHE_TTL, DEFAULT_ITERATE_FIRESTORE_DOCUMENT_SNAPSHOT_BATCHES_BATCH_SIZE, DEFAULT_MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER, DEFAULT_NOTIFICATION_MESSAGE_CALENDAR_ATTACHMENT_FILENAME, 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_NOTIFICATION_USER_HEALTH_CHECK_PROBE_THROTTLE_MINUTES, DEFAULT_NOTIFICATION_USER_HEALTH_CHECK_THROTTLE_MINUTES, DEFAULT_NOTIFICATION_USER_HEALTH_CHECK_VERIFY_THROTTLE_SECONDS, 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, DISCORD_USER_EXTERNAL_CONNECTION_PROVIDER_TYPE, 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_SESSION_OIDC_SCOPE, FIRESTORE_SESSION_OIDC_SCOPE_DETAILS, 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, FORM_SPACE_ALREADY_EXISTS_ERROR_CODE, FORM_SPACE_FILES_ROOT_FOLDER_PATH, FORM_SPACE_FILE_ACCESS_DENIED_ERROR_CODE, FORM_SPACE_FILE_NOT_FOUND_ERROR_CODE, FORM_SPACE_FUNCTION_TYPE_CONFIG_MAP, FORM_SPACE_HAS_INVALID_FILES_ERROR_CODE, FORM_SPACE_MODEL_CRUD_FUNCTIONS_CONFIG, FORM_SPACE_NOT_EDITABLE_ERROR_CODE, FORM_SPACE_NOT_FOUND_ERROR_CODE, FORM_SPACE_NOT_REOPENABLE_ERROR_CODE, FORM_SPACE_NOT_SUBMITTED_ERROR_CODE, FORM_SPACE_PROCESSING_IN_PROGRESS_ERROR_CODE, FORM_SPACE_PURPOSE, FORM_SPACE_PURPOSE_REGISTER_SUBTASK, FORM_SPACE_PURPOSE_VALIDATE_SUBTASK, FORM_SPACE_REQUIRED_SLOT_MISSING_ERROR_CODE, FORM_SPACE_SUBMISSION_NOTIFICATION_TASK_TYPE, FORM_SPACE_TYPE_MISMATCH_ERROR_CODE, FORM_SPACE_TYPE_NOT_REGISTERED_ERROR_CODE, FORM_SPACE_UPLOADED_FILE_TYPE_IDENTIFIER, FORM_SPACE_UPLOADS_FOLDER_NAME, FORM_SPACE_UPLOAD_NOT_ALLOWED_ERROR_CODE, FORM_SPACE_UPLOAD_POLICY, FORM_SPACE_UPLOAD_USER_MISMATCH_ERROR_CODE, FORM_SPACE_VALIDATION_PENDING_ERROR_CODE, FirebaseDevelopmentFunctions, FirebaseModelPermissionServiceInstance, FirebaseServerError, FirestoreAccessorStreamMode, FirestoreDocumentContextType, FormSpaceDocument, FormSpaceFileValidationState, FormSpaceFirestoreCollections, FormSpaceFunctions, FormSpaceProcessingState, FormSpaceState, GOOGLE_CLOUD_STORAGE_PUBLIC_URL_API_ENDPOINT, HIGH_UPLOADED_FILE_TYPE_DETERMINATION_LEVEL, INTERNAL_SERVER_ERROR_CODE, INVOKE_MODEL_OIDC_SCOPE, KnownNotificationHealthCheckIssueCode, 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, MailgunNotificationHealthCheckIssueCode, 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_HEALTH_CHECK_STATUS_SEVERITY, 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_HEALTH_CHECK_PROBE_THROTTLED_ERROR_CODE, NOTIFICATION_USER_HEALTH_CHECK_THROTTLED_ERROR_CODE, NOTIFICATION_USER_HEALTH_CHECK_VERIFY_THROTTLED_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, NotificationDeliveryMethod, NotificationDocument, NotificationFirestoreCollections, NotificationFunctions, NotificationHealthCheckStatus, 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, OIDC_PROVIDER_PROFILE_DEFAULT_DESCRIPTION_SUFFIX, 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, SCHEDULER_SYSTEM_STATE_TYPE, SERVICE_TOKEN_OIDC_SCOPE, SERVICE_TOKEN_OIDC_SCOPE_DETAILS, 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_CALENDAR_TYPE, UNKNOWN_FORM_SPACE_TYPE, UNKNOWN_MODEL_TYPE_ERROR_CODE, UNTRACKABLE_NOTIFICATION_HEALTH_CHECK_PROBE_ID, 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, USER_EXTERNAL_CONNECTION_ENTRY_STATUSES, USER_EXTERNAL_CONNECTION_FUNCTION_TYPE_CONFIG_MAP, USER_EXTERNAL_CONNECTION_MODEL_CRUD_FUNCTIONS_CONFIG, UserExternalConnectionDocument, UserExternalConnectionFunctions, ZOHO_USER_EXTERNAL_CONNECTION_PROVIDER_TYPE, ZOOM_USER_EXTERNAL_CONNECTION_PROVIDER_TYPE, _createNotificationDocumentFromPair, abstractSubscribeOrUnsubscribeToNotificationBoxParamsType, abstractSubscribeToNotificationBoxParamsType, addConstraintToBuilder, addOrReplaceLimitInConstraints, adminOnlyScopesForOidcProviderProfiles, allChildDocumentsUnderParent, allChildDocumentsUnderParentPath, allChildDocumentsUnderRelativePath, allNotificationHealthCheckIssues, allowDocumentSnapshotWithPathOnceFilter, allowedNotificationRecipients, appCalendarTypeConfigService, appFormSpaceTypeConfigService, appNotificationTemplateTypeInfoRecordService, applyExclusionsToNotificationUserNotificationBoxRecipientConfigs, applyUserExternalConnectionEntry, arrayUpdateWithAccessorFunction, asTopLevelFieldPath, asTopLevelFieldPaths, assertFirestoreUpdateHasData, assertFormSpaceUploadAllowed, assertStorageUploadOptionsStringFormat, assignDateCellRangeFunction, assignDateCellScheduleFunction, assignUnitedStatesAddressFunction, assignWebsiteFileLinkFunction, assignWebsiteLinkFunction, assignmentOnlyScopesForOidcProviderProfiles, buildFirebaseCollectionTypeModelTypeMap, calculateNsForNotificationUserNotificationBoxRecipientConfigs, calculateStorageFileGroupEmbeddedFileUpdate, calculateStorageFileGroupRegeneration, calendarCollectionReference, calendarConverter, calendarEventItem, calendarEventItemCalendarDate, calendarEventItemEndDate, calendarEventItemExceptionDateSet, calendarEventItemExceptionDateValue, calendarEventItemFields, calendarEventItemForId, calendarEventItemTimezone, calendarEventItemToICalendarEvent, calendarEventItemToInviteICalendar, calendarEventItemToInviteIcsString, calendarEventItemsFilterUniqueFunction, calendarEventItemsForModelKey, calendarEventItemsSortFunction, calendarEventOccurrenceToICalendarEvent, calendarExtensionDataToICalendarExtraProperties, calendarFirestoreCollection, calendarFunctionMap, calendarFunctionTypeConfigMap, calendarIcsFileStoragePath, calendarIdForModel, calendarIdentity, calendarModelCrudFunctionsConfig, calendarNextIcsRotateAt, calendarRecurringEventItem, calendarRecurringEventItemForScheduleRange, calendarRecurringEventItemModelRecurrenceInfo, calendarRecurringEventItemRecurrenceFields, calendarRecurringEventItemToICalendarEvent, calendarRecurringEventOccurrenceKey, calendarSyncState, calendarTemplate, calendarToICalendar, calendarToIcsString, calendarTypeConfigIcsConfig, calendarTypeConfigIcsExpansionRange, calendarTypeConfigRecord, calendarsDueForResyncQuery, calendarsFlaggedForSyncQuery, calendarsForTypeQuery, callModelFirebaseFunctionMapFactory, callModelOidcScopeForCallType, canQueueStorageFileForProcessing, childFirestoreModelKey, childFirestoreModelKeyPath, childFirestoreModelKeys, cleanupOldNotificationLoggedEventDaysParamsType, cleanupSentNotificationsParamsType, clientFirebaseFirestoreContextFactory, clientFirebaseStorageContextFactory, combineUploadFileTypeDeterminers, completeSubtaskProcessingAndScheduleCleanupTaskResult, contextGrantedModelRolesReader, contextGrantedModelRolesReaderDoesNotExistErrorMessage, contextGrantedModelRolesReaderPermissionErrorMessage, convertHttpsCallableErrorToReadableError, copyDocumentIdForUserRelatedModifierFunction, copyDocumentIdToFieldModifierFunction, copyStoragePath, copyUserRelatedDataAccessorFactoryFunction, copyUserRelatedDataModifierConfig, createFormSpaceParamsType, createNotificationBoxParamsType, createNotificationDocument, createNotificationDocumentIfSending, createNotificationDocumentPair, createNotificationLoggedEventTemplate, createNotificationSummaryParamsType, createNotificationTaskTemplate, createNotificationTemplate, createNotificationUserParamsType, createOidcClientFieldParamsType, createOidcClientParamsType, createStorageFileDocumentPair, createStorageFileDocumentPairFactory, createStorageFileGroupParamsType, createStorageFileParamsType, createStorageFileSignedUploadUrlParamsType, createUserExternalConnectionParamsType, dataFromDocumentSnapshots, dataFromSnapshotStream, decodeFirebaseAuthOobCode, defaultOidcProviderProfiles, defaultPagedItemPageDataConverter, defaultUnlockedScopesForOidcProviderProfiles, delayCompletion, deleteAllQueuedStorageFilesParamsType, deleteFormSpaceParamsType, targetModelParamsType as deleteOidcClientParamsType, targetModelParamsType as deleteOidcTokenParamsType, deleteStorageFileParamsType, determineByFileName, determineByFilePath, determineByFolderName, determineUserByFolder, determineUserByFolderWrapperFunction, determineUserByUserUploadsFolderWrapperFunction, developmentFirebaseFunctionMapFactory, directDataHttpsCallable, disconnectUserExternalConnectionParamsType, documentData, documentDataFunction, documentDataWithIdAndKey, documentReferenceFromDocument, documentReferencesFromDocuments, documentReferencesFromSnapshot, downloadMultipleStorageFilesFileParamsType, downloadMultipleStorageFilesParamsType, downloadStorageFileParamsType, effectiveNotificationBoxRecipientConfig, effectiveNotificationBoxRecipientTemplateConfig, emptyUserExternalConnection, encodeFirebaseAuthOobCode, endAt, endAtValue, endBefore, expandCalendarEvents, expireAllExpiredFormSpacesParamsType, expireFormSpaceTemplate, 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, firestoreNotificationDeliveryHealthCheckResult, firestoreNotificationHealthCheck, firestoreNotificationHealthCheckIssue, firestoreNotificationHealthCheckProbe, firestoreNotificationItem, firestoreNotificationRecipientWithConfig, firestoreNotificationUserDefaultNotificationBoxRecipientConfig, firestoreNotificationUserNotificationBoxRecipientConfig, firestoreNumber, firestoreObjectArray, firestoreObjectMap, 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, flagStaleCalendarsForSyncParamsType, flatFirestoreModelKey, formSpaceCollectionReference, formSpaceConverter, formSpaceFileSlotConfig, formSpaceFileSlotName, formSpaceFileStoragePath, formSpaceFileSubObject, formSpaceFileUploaderId, formSpaceFilesInSlot, formSpaceFirestoreCollection, formSpaceFunctionMap, formSpaceIdForModel, formSpaceIdentity, formSpaceKeyForStorageFile, formSpaceSlotFileAccess, formSpaceSlotMaxFiles, formSpaceSlotMinFiles, formSpaceSlotStatus, formSpaceStorageFileGroupId, formSpaceSubmissionNotificationTaskTemplate, formSpaceSubmissionNotificationTaskUniqueId, formSpaceSubmitBlockers, formSpaceTemplate, formSpaceTypeConfigRecord, formSpaceUploadFileNameDetails, formSpaceUploadsFilePath, formSpaceUploadsFolderPath, formSpacesDueForExpirationQuery, formSpacesForOwnerQuery, formSpacesQueuedForProcessingQuery, getDataFromDocumentSnapshots, getDocumentSnapshotData, getDocumentSnapshotDataPair, getDocumentSnapshotDataPairs, getDocumentSnapshotDataPairsWithData, getDocumentSnapshotDataTuples, getDocumentSnapshotPair, getDocumentSnapshotPairs, getDocumentSnapshots, getDocumentSnapshotsData, grantFormSpaceRolesForUserAuthFunction, grantFullAccessIfAdmin, grantFullAccessIfAuthUserRelated, grantModelRolesIfAdmin, grantModelRolesIfAdminFunction, grantModelRolesIfAuthUserRelatedModelFunction, grantModelRolesIfFunction, grantModelRolesIfHasAuthRolesFactory, grantModelRolesIfHasAuthRolesFunction, grantModelRolesOnlyIfFunction, grantStorageFileRolesForUserAuthFunction, hasRunInCurrentHour, inContextFirebaseModelServiceFactory, inContextFirebaseModelsServiceFactory, inMemoryFirestoreCollectionCacheDelegate, inMemoryFirestoreContextCache, inMemoryFirestoreContextCacheFactory, incrementUpdateWithAccessorFunction, inferCalendarRelatedModelKey, inferKeyFromTwoWayFlatFirestoreModelKey, inferNotificationBoxRelatedModelKey, inferStorageFileGroupRelatedModelKey, inferredTargetModelIdParamsType, inferredTargetModelParamsType, initializeAllApplicableNotificationBoxesParamsType, initializeAllApplicableNotificationSummariesParamsType, initializeAllApplicableStorageFileGroupsParamsType, initializeAllStorageFilesFromUploadsParamsType, initializeNotificationModelParamsType, initializeStorageFileFromUploadParamsType, initializeStorageFileModelParamsType, interceptAccessorFactoryFunction, isAdminInFirebaseModelContext, isCalendarIcsRotateThrottled, isClientFirebaseError, isCompleteNotificationSendState, isFirebaseStorageObjectNotFoundError, isFirestoreModelId, isFirestoreModelIdOrKey, isFirestoreModelKey, isFormSpaceEditable, isFormSpaceFileAccessibleByUser, isFormSpaceFileAccessibleWithAccess, isFormSpaceFullyLocked, isFormSpaceReopenable, isFormSpaceStorageFileAccessibleByUser, isLoggedEventNotification, isNthHourOfDay, isOwnerOfUserRelatedModelInFirebaseModelContext, isPendingNotificationHealthCheckProbe, isProblemNotificationHealthCheckStatus, iterateFirestoreDocumentSnapshotBatches, iterateFirestoreDocumentSnapshotCheckpoints, iterateFirestoreDocumentSnapshotPairBatches, iterateFirestoreDocumentSnapshotPairs, iterateFirestoreDocumentSnapshots, iterateStorageListFiles, iterateStorageListFilesByEachFile, iterateStorageListFilesFactory, iterationQueryDocChangeWatcher, iterationQueryDocChangeWatcherChangeTypeForGroup, latestSnapshotsFromDocuments, lazyFirebaseFunctionsFactory, limit, limitToLast, limitUploadFileTypeDeterminer, limitedFirestoreDocumentAccessorFactory, limitedFirestoreDocumentAccessorSnapshotCache, loadAllFirestoreDocumentSnapshot, loadAllFirestoreDocumentSnapshotPairs, loadDocumentsForDocumentReferences, loadDocumentsForDocumentReferencesFromValues, loadDocumentsForIds, loadDocumentsForIdsFromValues, loadDocumentsForKeys, loadDocumentsForKeysFromValues, loadDocumentsForSnapshots, loadDocumentsForValues, loadNotificationBoxDocumentForReferencePair, loadSchedulerSystemState, loadStorageFileGroupDocumentForReferencePair, lockFormSpaceParamsType, lockFormSpaceTemplate, makeDocuments, makeFirestoreCollection, makeFirestoreCollectionGroup, makeFirestoreCollectionWithParent, makeFirestoreContextCache, makeFirestoreItemPageIteratorDelegate, makeFirestoreQueryConstraintFunctionsDriver, makePagedItemFirestoreCollection, makeRootSingleItemFirestoreCollection, makeSingleItemFirestoreCollection, mapDataFromSnapshot, mapHttpsCallable, mapLatestSnapshotsFromDocuments, markCalendarForSyncTemplate, 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, notificationDeliveryHealthCheckResultForMethod, notificationFirestoreCollectionFactory, notificationFirestoreCollectionGroup, notificationFunctionMap, notificationHealthCheckIssue, notificationHealthCheckPendingProbeMethods, 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, notificationUserHealthCheckNextProbeAt, notificationUserHealthCheckNextProbeAtByMethod, notificationUserHealthCheckNextRunAt, notificationUserHealthCheckNextVerifyAt, notificationUserHealthCheckParamsType, notificationUserIdentity, notificationUsersFlaggedForNeedsSyncQuery, notificationWeekCollectionReference, notificationWeekCollectionReferenceFactory, notificationWeekConverter, notificationWeekFirestoreCollectionFactory, notificationWeekFirestoreCollectionGroup, notificationWeekIdentity, notificationsPastSendAtTimeQuery, notificationsReadyForCleanupQuery, nthHourOfDayIndex, offset, oidcClientEntriesByOwnerQuery, oidcEntriesByClientIdQuery, oidcEntriesByGrantIdQuery, oidcEntriesByUidQuery, oidcEntriesByUserCodeQuery, oidcEntriesWithTypeQuery, oidcEntryCollectionReference, oidcEntryConverter, oidcEntryFirestoreCollection, oidcEntryIdentity, oidcGrantEntriesByUidQuery, oidcModelFunctionMap, oidcProviderProfileDetails, oidcProviderProfilesForClient, oidcProviderProfilesForKeys, oidcScopeTermSatisfied, oidcScopeTermsSatisfied, oidcScopesFromScopeClaim, onCallCreateModelParams, onCallCreateModelResult, onCallCreateModelResultWithDocs, onCallDeleteModelParams, onCallDevelopmentParams, onCallInvokeModelParams, onCallQueryModelParams, onCallReadModelParams, onCallTypedModelParamsFunction, onCallUpdateModelParams, optionalFirestoreArray, optionalFirestoreBoolean, optionalFirestoreDate, optionalFirestoreDateNumber, optionalFirestoreEnum, optionalFirestoreField, optionalFirestoreNotificationHealthCheck, optionalFirestoreNumber, optionalFirestorePassthroughJsonField, optionalFirestoreString, optionalFirestoreUID, optionalFirestoreUnitedStatesAddress, optionalFirestoreUnixDateTimeSecondsNumber, orderBy, orderByDocumentId, parseFormSpaceUploadPath, processAllQueuedFormSpacesParamsType, processAllQueuedStorageFilesParamsType, processStorageFileParamsType, pruneCalendarEvents, readFirestoreModelKey, readFirestoreModelKeyFromDocumentSnapshot, readLoggingFirestoreContextCache, readLoggingFirestoreContextCacheFactory, readMultipleStorageFilesMetadataFileParamsType, readMultipleStorageFilesMetadataParamsType, readStorageFileMetadataParamsType, readUserExternalConnectionAuthorizeStateParamsType, regenerateAllFlaggedStorageFileGroupsContentParamsType, regenerateStorageFileGroupContentParamsType, removeCalendarEventItems, removeFormSpaceFileParamsType, reopenFormSpaceParamsType, reopenFormSpaceTemplate, replaceCalendarEventItemsForModelKey, replaceConstraints, requiredFormSpaceFileSlots, requiredScopesForOidcProviderProfiles, resolveEffectiveOidcScopeTerms, resolveFormSpaceExpiresAt, resolveFormSpaceLocksAt, resolveOidcModelScopeRequirement, resyncAllNotificationUserParamsType, targetModelParamsType as resyncNotificationUserParamsType, rollupNotificationDeliveryHealthCheckResultStatus, rollupNotificationHealthCheckResultStatus, rollupNotificationHealthCheckStatus, rotateCalendarIcsParamsType, targetModelParamsType as rotateOidcClientSecretParamsType, scheduledFunctionDevelopmentFirebaseFunctionParamsType, schedulerSystemDataConverter, schedulerSystemStateRead, scopesForOidcProviderProfiles, selectFromFirebaseModelsService, sendNotificationParamsType, sendQueuedNotificationsParamsType, separateConstraints, setIdAndKeyFromKeyIdRefOnDocumentData, setIdAndKeyFromSnapshotOnDocumentData, shouldSaveNotificationToNotificationWeek, shouldSendCreatedNotificationInput, snapshotConverterFunctions, snapshotStreamDataForAccessor, snapshotStreamForAccessor, sortNotificationItemsFunction, startAfter, startAt, startAtValue, storageFileCollectionReference, storageFileConverter, storageFileDisplayFileName, storageFileFirestoreCollection, storageFileFlaggedForSyncWithGroupsQuery, storageFileFunctionMap, storageFileGroupCollectionReference, storageFileGroupConverter, storageFileGroupCreateStorageFileKeyFactory, storageFileGroupCreatedStorageFileKey, storageFileGroupEmbeddedFile, storageFileGroupFirestoreCollection, storageFileGroupFolderPath, storageFileGroupIdForModel, storageFileGroupIdentity, storageFileGroupZipFileStoragePath, storageFileGroupZipStorageFileKey, storageFileGroupsFlaggedForContentRegenerationQuery, storageFileGroupsFlaggedForNeedsInitializationQuery, storageFileGroupsFlaggedInvalidQuery, storageFileIdentity, storageFileProcessingNotificationTaskTemplate, storageFilePurposeAndUserQuery, storageFileUploadScopeType, storageFilesForFormSpaceQuery, storageFilesQueuedForDeleteQuery, storageFilesQueuedForProcessingQuery, storageListFilesResultFactory, storageListFilesResultHasNoNextError, storagePathFactory, storagePublicDownloadUrl, storedFileReaderFactory, streamDocumentSnapshotDataPairs, streamDocumentSnapshotDataPairsWithData, streamDocumentSnapshotsData, streamFromOnSnapshot, submitFormSpaceParamsType, submitFormSpaceTemplate, syncAllFlaggedCalendarsParamsType, syncAllFlaggedStorageFilesWithGroupsParamsType, syncCalendarParamsType, syncStorageFileWithGroupsParamsType, systemStateCollectionReference, systemStateConverter, systemStateFirestoreCollection, systemStateIdentity, systemStateStoredDataConverterFactory, targetModelIdParamsType, targetModelParamsType, twoWayFlatFirestoreModelKey, unreadNotificationItems, unsupportedFirestoreDriverFunctionError, untrackableNotificationHealthCheckProbe, updateCalendarEventsTemplate, updateFormSpaceParamsType, targetModelParamsType as updateNotificationBoxParamsType, updateNotificationBoxRecipientLikeParamsType, updateNotificationBoxRecipientParamsType, updateNotificationBoxRecipientTemplateConfigRecord, updateNotificationRecipient, updateNotificationSummaryParamsType, updateNotificationUserDefaultNotificationBoxRecipientConfig, updateNotificationUserDefaultNotificationBoxRecipientConfigParamsType, updateNotificationUserNotificationBoxRecipientConfigIfChanged, updateNotificationUserNotificationBoxRecipientConfigs, updateNotificationUserNotificationBoxRecipientParamsType, updateNotificationUserNotificationSendExclusions, updateNotificationUserParamsType, updateOidcClientFieldParamsType, updateOidcClientParamsType, updateStorageFileGroupEntryParamsType, updateStorageFileGroupParamsType, updateStorageFileParamsType, updateWithAccessorUpdateAndConverterFunction, uploadFileWithStream, upsertCalendarEventItems, useContextAuth, useContextAuthUid, useDocumentSnapshot, useDocumentSnapshotData, useFirebaseModelsService, userExternalConnectionAccessorFactory, userExternalConnectionCollectionReference, userExternalConnectionConnectedProviderTypes, userExternalConnectionConverter, userExternalConnectionEntryFields, userExternalConnectionEntryForOutcome, userExternalConnectionEntryForProvider, userExternalConnectionEntryIsConnected, userExternalConnectionEntryIsExpired, userExternalConnectionFirestoreCollection, userExternalConnectionFunctionMap, userExternalConnectionIdentity, userExternalConnectionIsConnectedToProvider, userExternalConnectionsWithConnectedProviderQuery, userUploadsFolderSlashPathFactory, userUploadsFolderStoragePathFactory, where, whereDateIsAfter, whereDateIsAfterWithSort, whereDateIsBefore, whereDateIsBeforeWithSort, whereDateIsBetween, whereDateIsInRange, whereDateIsOnOrAfter, whereDateIsOnOrAfterWithSort, whereDateIsOnOrBefore, whereDateIsOnOrBeforeWithSort, whereDocumentId, whereStringHasRootIdentityModelKey, whereStringValueHasPrefix };
|
|
27441
|
+
/**
|
|
27442
|
+
* Error codes the UserExternalConnection server surfaces.
|
|
27443
|
+
*
|
|
27444
|
+
* Declared HERE rather than beside the `HttpsError` factories in `@dereekb/firebase-server/model`
|
|
27445
|
+
* because both sides need them: the server throws them, and the client branches on them — a login
|
|
27446
|
+
* page deciding what to say about a refused sign-in, or a client treating a raced
|
|
27447
|
+
* `..._ALREADY_EXISTS` as success. A code the browser cannot import is a code the browser has to
|
|
27448
|
+
* hard-code.
|
|
27449
|
+
*/ var USER_EXTERNAL_CONNECTION_PROVIDER_NOT_CONNECTED_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_PROVIDER_NOT_CONNECTED';
|
|
27450
|
+
var USER_EXTERNAL_CONNECTION_PROVIDER_NOT_ALLOWED_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_PROVIDER_NOT_ALLOWED';
|
|
27451
|
+
var USER_EXTERNAL_CONNECTION_ALREADY_EXISTS_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_ALREADY_EXISTS';
|
|
27452
|
+
var USER_EXTERNAL_CONNECTION_CREDENTIALS_EXPIRED_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_CREDENTIALS_EXPIRED';
|
|
27453
|
+
var USER_EXTERNAL_CONNECTION_EXTERNAL_ACCOUNT_IN_USE_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_EXTERNAL_ACCOUNT_IN_USE';
|
|
27454
|
+
var USER_EXTERNAL_CONNECTION_SIGN_IN_NOT_ENABLED_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_SIGN_IN_NOT_ENABLED';
|
|
27455
|
+
var USER_EXTERNAL_CONNECTION_SIGN_IN_DENIED_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_SIGN_IN_DENIED';
|
|
27456
|
+
var USER_EXTERNAL_CONNECTION_SIGN_IN_EMAIL_CONFLICT_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_SIGN_IN_EMAIL_CONFLICT';
|
|
27457
|
+
var USER_EXTERNAL_CONNECTION_SIGN_IN_USER_MISSING_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_SIGN_IN_USER_MISSING';
|
|
27458
|
+
var USER_EXTERNAL_CONNECTION_SIGN_IN_IDENTITY_UNAVAILABLE_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_SIGN_IN_IDENTITY_UNAVAILABLE';
|
|
27459
|
+
/**
|
|
27460
|
+
* Refuses an unlink that would leave the account with no way back in.
|
|
27461
|
+
*/ var USER_EXTERNAL_CONNECTION_UNLINK_LAST_LOGIN_METHOD_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_UNLINK_LAST_LOGIN_METHOD';
|
|
27462
|
+
/**
|
|
27463
|
+
* Refuses a `link` round trip for a provider the app has not enabled for sign-in.
|
|
27464
|
+
*
|
|
27465
|
+
* Distinct from `..._SIGN_IN_NOT_ENABLED`: nothing is signing in — an already-authenticated user asked
|
|
27466
|
+
* to make the provider a login method, and the same `policy.signIn` opt-in governs both.
|
|
27467
|
+
*/ var USER_EXTERNAL_CONNECTION_LINK_NOT_ENABLED_ERROR_CODE = 'USER_EXTERNAL_CONNECTION_LINK_NOT_ENABLED';
|
|
27468
|
+
/**
|
|
27469
|
+
* The only error codes a failed SIGN-IN reports back to the browser.
|
|
27470
|
+
*
|
|
27471
|
+
* An ALLOWLIST rather than a filter: a failed sign-in redirects to a URL the user can read, so
|
|
27472
|
+
* anything that reaches it is public. Passing whatever code an internal failure happened to carry
|
|
27473
|
+
* would leak the shape of that failure, and passing a message would leak its text — so a code absent
|
|
27474
|
+
* from this set is reported as nothing at all.
|
|
27475
|
+
*
|
|
27476
|
+
* Shared with the client so a login page's copy map and the server's allowlist cannot drift.
|
|
27477
|
+
*/ var USER_EXTERNAL_CONNECTION_SIGN_IN_REPORTABLE_ERROR_CODES = new Set([
|
|
27478
|
+
USER_EXTERNAL_CONNECTION_EXTERNAL_ACCOUNT_IN_USE_ERROR_CODE,
|
|
27479
|
+
USER_EXTERNAL_CONNECTION_SIGN_IN_NOT_ENABLED_ERROR_CODE,
|
|
27480
|
+
USER_EXTERNAL_CONNECTION_SIGN_IN_DENIED_ERROR_CODE,
|
|
27481
|
+
USER_EXTERNAL_CONNECTION_SIGN_IN_EMAIL_CONFLICT_ERROR_CODE,
|
|
27482
|
+
USER_EXTERNAL_CONNECTION_SIGN_IN_USER_MISSING_ERROR_CODE,
|
|
27483
|
+
USER_EXTERNAL_CONNECTION_SIGN_IN_IDENTITY_UNAVAILABLE_ERROR_CODE,
|
|
27484
|
+
USER_EXTERNAL_CONNECTION_LINK_NOT_ENABLED_ERROR_CODE
|
|
27485
|
+
]);
|
|
27486
|
+
|
|
27487
|
+
export { ALL_FORM_SPACE_NOTIFICATION_TASK_TYPES, ALL_NOTIFICATION_DELIVERY_METHODS, 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, AppCalendarTypeConfigService, AppFormSpaceTypeConfigService, AppNotificationTemplateTypeInfoRecordService, BAD_DOCUMENT_QUERY_CURSOR_ERROR_CODE, BAD_REQUEST_ERROR_CODE, BASE_MODEL_STORAGE_FILE_PATH, CALCOM_USER_EXTERNAL_CONNECTION_PROVIDER_TYPE, CALENDAR_EXTENSION_PROPERTY_PREFIX, CALENDAR_ICS_DEFAULT_TIMEZONE, CALENDAR_ICS_DOMAIN_NOT_CONFIGURED_ERROR_CODE, CALENDAR_ICS_FILE_EXTENSION, CALENDAR_ICS_ROTATE_THROTTLED_ERROR_CODE, CALENDAR_ICS_STORAGE_FILE_PURPOSE, CALENDAR_ICS_STORAGE_FILE_PURPOSE_GENERATE_ICS_SUBTASK, CALENDAR_ICS_STORAGE_FILE_UNAVAILABLE_ERROR_CODE, CALENDAR_OCCURRENCE_KEY_SEPARATOR, CALENDAR_ROOT_FOLDER_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, CalendarDocument, CalendarEventStatus, CalendarFirestoreCollections, CalendarFunctions, CalendarSyncState, 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_CALENDAR_ICS_EXPANSION_FUTURE_DAYS, DEFAULT_CALENDAR_ICS_EXPANSION_PAST_DAYS, DEFAULT_CALENDAR_ICS_RECURRENCE_MODE, DEFAULT_CALENDAR_ICS_ROTATE_THROTTLE_HOURS, DEFAULT_CALENDAR_INVITE_ATTENDEE_PARTICIPATION_STATUS, DEFAULT_CALENDAR_INVITE_ATTENDEE_ROLE, DEFAULT_CALENDAR_INVITE_METHOD, DEFAULT_CALENDAR_MAX_EVENTS, DEFAULT_CALENDAR_RESYNC_INTERVAL, DEFAULT_CALENDAR_RETAIN_PAST_EVENT_DAYS, DEFAULT_CALENDAR_TYPE_CONFIG, 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_TIMEZONE_STRING_VALUE, DEFAULT_FIRESTORE_UNITED_STATES_ADDRESS_VALUE, DEFAULT_FIRESTORE_WEBSITE_FILE_LINK_VALUE, DEFAULT_FORM_SPACE_ALLOWED_MIME_TYPES, DEFAULT_FORM_SPACE_EXPIRES_IN, DEFAULT_FORM_SPACE_FILE_ACCESS, DEFAULT_FORM_SPACE_MAX_FILE_SIZE_BYTES, DEFAULT_FORM_SPACE_MAX_UPLOADS, DEFAULT_FORM_SPACE_SLOT_MAX_FILES, DEFAULT_FORM_SPACE_TYPE_CONFIG, DEFAULT_IN_MEMORY_CACHE_TTL, DEFAULT_ITERATE_FIRESTORE_DOCUMENT_SNAPSHOT_BATCHES_BATCH_SIZE, DEFAULT_MODEL_FUNCTION_FIREBASE_CRUD_FUNCTION_SPECIFIER, DEFAULT_NOTIFICATION_MESSAGE_CALENDAR_ATTACHMENT_FILENAME, 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_NOTIFICATION_USER_HEALTH_CHECK_PROBE_THROTTLE_MINUTES, DEFAULT_NOTIFICATION_USER_HEALTH_CHECK_THROTTLE_MINUTES, DEFAULT_NOTIFICATION_USER_HEALTH_CHECK_VERIFY_THROTTLE_SECONDS, 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, DISCORD_USER_EXTERNAL_CONNECTION_PROVIDER_TYPE, 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_SESSION_OIDC_SCOPE, FIRESTORE_SESSION_OIDC_SCOPE_DETAILS, 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, FORM_SPACE_ALREADY_EXISTS_ERROR_CODE, FORM_SPACE_FILES_ROOT_FOLDER_PATH, FORM_SPACE_FILE_ACCESS_DENIED_ERROR_CODE, FORM_SPACE_FILE_NOT_FOUND_ERROR_CODE, FORM_SPACE_FUNCTION_TYPE_CONFIG_MAP, FORM_SPACE_HAS_INVALID_FILES_ERROR_CODE, FORM_SPACE_MODEL_CRUD_FUNCTIONS_CONFIG, FORM_SPACE_NOT_EDITABLE_ERROR_CODE, FORM_SPACE_NOT_FOUND_ERROR_CODE, FORM_SPACE_NOT_REOPENABLE_ERROR_CODE, FORM_SPACE_NOT_SUBMITTED_ERROR_CODE, FORM_SPACE_PROCESSING_IN_PROGRESS_ERROR_CODE, FORM_SPACE_PURPOSE, FORM_SPACE_PURPOSE_REGISTER_SUBTASK, FORM_SPACE_PURPOSE_VALIDATE_SUBTASK, FORM_SPACE_REQUIRED_SLOT_MISSING_ERROR_CODE, FORM_SPACE_SUBMISSION_NOTIFICATION_TASK_TYPE, FORM_SPACE_TYPE_MISMATCH_ERROR_CODE, FORM_SPACE_TYPE_NOT_REGISTERED_ERROR_CODE, FORM_SPACE_UPLOADED_FILE_TYPE_IDENTIFIER, FORM_SPACE_UPLOADS_FOLDER_NAME, FORM_SPACE_UPLOAD_NOT_ALLOWED_ERROR_CODE, FORM_SPACE_UPLOAD_POLICY, FORM_SPACE_UPLOAD_USER_MISMATCH_ERROR_CODE, FORM_SPACE_VALIDATION_PENDING_ERROR_CODE, FirebaseDevelopmentFunctions, FirebaseModelPermissionServiceInstance, FirebaseServerError, FirestoreAccessorStreamMode, FirestoreDocumentContextType, FormSpaceDocument, FormSpaceFileValidationState, FormSpaceFirestoreCollections, FormSpaceFunctions, FormSpaceProcessingState, FormSpaceState, GOOGLE_CLOUD_STORAGE_PUBLIC_URL_API_ENDPOINT, HIGH_UPLOADED_FILE_TYPE_DETERMINATION_LEVEL, INTERNAL_SERVER_ERROR_CODE, INVOKE_MODEL_OIDC_SCOPE, KnownNotificationHealthCheckIssueCode, 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, MailgunNotificationHealthCheckIssueCode, 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_HEALTH_CHECK_STATUS_SEVERITY, 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_HEALTH_CHECK_PROBE_THROTTLED_ERROR_CODE, NOTIFICATION_USER_HEALTH_CHECK_THROTTLED_ERROR_CODE, NOTIFICATION_USER_HEALTH_CHECK_VERIFY_THROTTLED_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, NotificationDeliveryMethod, NotificationDocument, NotificationFirestoreCollections, NotificationFunctions, NotificationHealthCheckStatus, 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, OIDC_PROVIDER_PROFILE_DEFAULT_DESCRIPTION_SUFFIX, 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, SCHEDULER_SYSTEM_STATE_TYPE, SERVICE_TOKEN_OIDC_SCOPE, SERVICE_TOKEN_OIDC_SCOPE_DETAILS, 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_CALENDAR_TYPE, UNKNOWN_FORM_SPACE_TYPE, UNKNOWN_MODEL_TYPE_ERROR_CODE, UNTRACKABLE_NOTIFICATION_HEALTH_CHECK_PROBE_ID, 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, USER_EXTERNAL_CONNECTION_ALREADY_EXISTS_ERROR_CODE, USER_EXTERNAL_CONNECTION_CREDENTIALS_EXPIRED_ERROR_CODE, USER_EXTERNAL_CONNECTION_ENTRY_STATUSES, USER_EXTERNAL_CONNECTION_EXTERNAL_ACCOUNT_IN_USE_ERROR_CODE, USER_EXTERNAL_CONNECTION_EXTERNAL_ACCOUNT_KEY_DELIMITER, USER_EXTERNAL_CONNECTION_FUNCTION_TYPE_CONFIG_MAP, USER_EXTERNAL_CONNECTION_LINK_NOT_ENABLED_ERROR_CODE, USER_EXTERNAL_CONNECTION_MODEL_CRUD_FUNCTIONS_CONFIG, USER_EXTERNAL_CONNECTION_PROVIDER_NOT_ALLOWED_ERROR_CODE, USER_EXTERNAL_CONNECTION_PROVIDER_NOT_CONNECTED_ERROR_CODE, USER_EXTERNAL_CONNECTION_SIGN_IN_DENIED_ERROR_CODE, USER_EXTERNAL_CONNECTION_SIGN_IN_EMAIL_CONFLICT_ERROR_CODE, USER_EXTERNAL_CONNECTION_SIGN_IN_IDENTITY_UNAVAILABLE_ERROR_CODE, USER_EXTERNAL_CONNECTION_SIGN_IN_NOT_ENABLED_ERROR_CODE, USER_EXTERNAL_CONNECTION_SIGN_IN_REPORTABLE_ERROR_CODES, USER_EXTERNAL_CONNECTION_SIGN_IN_USER_MISSING_ERROR_CODE, USER_EXTERNAL_CONNECTION_UNLINK_LAST_LOGIN_METHOD_ERROR_CODE, UserExternalConnectionDocument, UserExternalConnectionFunctions, ZOHO_USER_EXTERNAL_CONNECTION_PROVIDER_TYPE, ZOOM_USER_EXTERNAL_CONNECTION_PROVIDER_TYPE, _createNotificationDocumentFromPair, abstractSubscribeOrUnsubscribeToNotificationBoxParamsType, abstractSubscribeToNotificationBoxParamsType, addConstraintToBuilder, addOrReplaceLimitInConstraints, adminOnlyScopesForOidcProviderProfiles, allChildDocumentsUnderParent, allChildDocumentsUnderParentPath, allChildDocumentsUnderRelativePath, allNotificationHealthCheckIssues, allowDocumentSnapshotWithPathOnceFilter, allowedNotificationRecipients, appCalendarTypeConfigService, appFormSpaceTypeConfigService, appNotificationTemplateTypeInfoRecordService, applyExclusionsToNotificationUserNotificationBoxRecipientConfigs, applyUserExternalConnectionEntry, applyUserExternalConnectionLogin, arrayUpdateWithAccessorFunction, asTopLevelFieldPath, asTopLevelFieldPaths, assertFirestoreUpdateHasData, assertFormSpaceUploadAllowed, assertStorageUploadOptionsStringFormat, assignDateCellRangeFunction, assignDateCellScheduleFunction, assignUnitedStatesAddressFunction, assignWebsiteFileLinkFunction, assignWebsiteLinkFunction, assignmentOnlyScopesForOidcProviderProfiles, buildFirebaseCollectionTypeModelTypeMap, calculateNsForNotificationUserNotificationBoxRecipientConfigs, calculateStorageFileGroupEmbeddedFileUpdate, calculateStorageFileGroupRegeneration, calendarCollectionReference, calendarConverter, calendarEventItem, calendarEventItemCalendarDate, calendarEventItemEndDate, calendarEventItemExceptionDateSet, calendarEventItemExceptionDateValue, calendarEventItemFields, calendarEventItemForId, calendarEventItemTimezone, calendarEventItemToICalendarEvent, calendarEventItemToInviteICalendar, calendarEventItemToInviteIcsString, calendarEventItemsFilterUniqueFunction, calendarEventItemsForModelKey, calendarEventItemsSortFunction, calendarEventOccurrenceToICalendarEvent, calendarExtensionDataToICalendarExtraProperties, calendarFirestoreCollection, calendarFunctionMap, calendarFunctionTypeConfigMap, calendarIcsFileStoragePath, calendarIdForModel, calendarIdentity, calendarModelCrudFunctionsConfig, calendarNextIcsRotateAt, calendarRecurringEventItem, calendarRecurringEventItemForScheduleRange, calendarRecurringEventItemModelRecurrenceInfo, calendarRecurringEventItemRecurrenceFields, calendarRecurringEventItemToICalendarEvent, calendarRecurringEventOccurrenceKey, calendarSyncState, calendarTemplate, calendarToICalendar, calendarToIcsString, calendarTypeConfigIcsConfig, calendarTypeConfigIcsExpansionRange, calendarTypeConfigRecord, calendarsDueForResyncQuery, calendarsFlaggedForSyncQuery, calendarsForTypeQuery, callModelFirebaseFunctionMapFactory, callModelOidcScopeForCallType, canQueueStorageFileForProcessing, childFirestoreModelKey, childFirestoreModelKeyPath, childFirestoreModelKeys, cleanupOldNotificationLoggedEventDaysParamsType, cleanupSentNotificationsParamsType, clientFirebaseFirestoreContextFactory, clientFirebaseStorageContextFactory, combineUploadFileTypeDeterminers, completeSubtaskProcessingAndScheduleCleanupTaskResult, contextGrantedModelRolesReader, contextGrantedModelRolesReaderDoesNotExistErrorMessage, contextGrantedModelRolesReaderPermissionErrorMessage, convertHttpsCallableErrorToReadableError, copyDocumentIdForUserRelatedModifierFunction, copyDocumentIdToFieldModifierFunction, copyStoragePath, copyUserRelatedDataAccessorFactoryFunction, copyUserRelatedDataModifierConfig, createFormSpaceParamsType, createNotificationBoxParamsType, createNotificationDocument, createNotificationDocumentIfSending, createNotificationDocumentPair, createNotificationLoggedEventTemplate, createNotificationSummaryParamsType, createNotificationTaskTemplate, createNotificationTemplate, createNotificationUserParamsType, createOidcClientFieldParamsType, createOidcClientParamsType, createStorageFileDocumentPair, createStorageFileDocumentPairFactory, createStorageFileGroupParamsType, createStorageFileParamsType, createStorageFileSignedUploadUrlParamsType, createUserExternalConnectionParamsType, dataFromDocumentSnapshots, dataFromSnapshotStream, decodeFirebaseAuthOobCode, defaultOidcProviderProfiles, defaultPagedItemPageDataConverter, defaultUnlockedScopesForOidcProviderProfiles, delayCompletion, deleteAllQueuedStorageFilesParamsType, deleteFormSpaceParamsType, targetModelParamsType as deleteOidcClientParamsType, targetModelParamsType as deleteOidcTokenParamsType, deleteStorageFileParamsType, determineByFileName, determineByFilePath, determineByFolderName, determineUserByFolder, determineUserByFolderWrapperFunction, determineUserByUserUploadsFolderWrapperFunction, developmentFirebaseFunctionMapFactory, directDataHttpsCallable, disconnectUserExternalConnectionParamsType, documentData, documentDataFunction, documentDataWithIdAndKey, documentReferenceFromDocument, documentReferencesFromDocuments, documentReferencesFromSnapshot, downloadMultipleStorageFilesFileParamsType, downloadMultipleStorageFilesParamsType, downloadStorageFileParamsType, effectiveNotificationBoxRecipientConfig, effectiveNotificationBoxRecipientTemplateConfig, emptyUserExternalConnection, encodeFirebaseAuthOobCode, endAt, endAtValue, endBefore, expandCalendarEvents, expireAllExpiredFormSpacesParamsType, expireFormSpaceTemplate, 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, firestoreNotificationDeliveryHealthCheckResult, firestoreNotificationHealthCheck, firestoreNotificationHealthCheckIssue, firestoreNotificationHealthCheckProbe, firestoreNotificationItem, firestoreNotificationRecipientWithConfig, firestoreNotificationUserDefaultNotificationBoxRecipientConfig, firestoreNotificationUserNotificationBoxRecipientConfig, firestoreNumber, firestoreObjectArray, firestoreObjectMap, 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, flagStaleCalendarsForSyncParamsType, flatFirestoreModelKey, formSpaceCollectionReference, formSpaceConverter, formSpaceFileSlotConfig, formSpaceFileSlotName, formSpaceFileStoragePath, formSpaceFileSubObject, formSpaceFileUploaderId, formSpaceFilesInSlot, formSpaceFirestoreCollection, formSpaceFunctionMap, formSpaceIdForModel, formSpaceIdentity, formSpaceKeyForStorageFile, formSpaceSlotFileAccess, formSpaceSlotMaxFiles, formSpaceSlotMinFiles, formSpaceSlotStatus, formSpaceStorageFileGroupId, formSpaceSubmissionNotificationTaskTemplate, formSpaceSubmissionNotificationTaskUniqueId, formSpaceSubmitBlockers, formSpaceTemplate, formSpaceTypeConfigRecord, formSpaceUploadFileNameDetails, formSpaceUploadsFilePath, formSpaceUploadsFolderPath, formSpacesDueForExpirationQuery, formSpacesForOwnerQuery, formSpacesQueuedForProcessingQuery, getDataFromDocumentSnapshots, getDocumentSnapshotData, getDocumentSnapshotDataPair, getDocumentSnapshotDataPairs, getDocumentSnapshotDataPairsWithData, getDocumentSnapshotDataTuples, getDocumentSnapshotPair, getDocumentSnapshotPairs, getDocumentSnapshots, getDocumentSnapshotsData, grantFormSpaceRolesForUserAuthFunction, grantFullAccessIfAdmin, grantFullAccessIfAuthUserRelated, grantModelRolesIfAdmin, grantModelRolesIfAdminFunction, grantModelRolesIfAuthUserRelatedModelFunction, grantModelRolesIfFunction, grantModelRolesIfHasAuthRolesFactory, grantModelRolesIfHasAuthRolesFunction, grantModelRolesOnlyIfFunction, grantStorageFileRolesForUserAuthFunction, hasRunInCurrentHour, inContextFirebaseModelServiceFactory, inContextFirebaseModelsServiceFactory, inMemoryFirestoreCollectionCacheDelegate, inMemoryFirestoreContextCache, inMemoryFirestoreContextCacheFactory, incrementUpdateWithAccessorFunction, inferCalendarRelatedModelKey, inferKeyFromTwoWayFlatFirestoreModelKey, inferNotificationBoxRelatedModelKey, inferStorageFileGroupRelatedModelKey, inferredTargetModelIdParamsType, inferredTargetModelParamsType, initializeAllApplicableNotificationBoxesParamsType, initializeAllApplicableNotificationSummariesParamsType, initializeAllApplicableStorageFileGroupsParamsType, initializeAllStorageFilesFromUploadsParamsType, initializeNotificationModelParamsType, initializeStorageFileFromUploadParamsType, initializeStorageFileModelParamsType, interceptAccessorFactoryFunction, isAdminInFirebaseModelContext, isCalendarIcsRotateThrottled, isClientFirebaseError, isCompleteNotificationSendState, isFirebaseStorageObjectNotFoundError, isFirestoreModelId, isFirestoreModelIdOrKey, isFirestoreModelKey, isFormSpaceEditable, isFormSpaceFileAccessibleByUser, isFormSpaceFileAccessibleWithAccess, isFormSpaceFullyLocked, isFormSpaceReopenable, isFormSpaceStorageFileAccessibleByUser, isLoggedEventNotification, isNthHourOfDay, isOwnerOfUserRelatedModelInFirebaseModelContext, isPendingNotificationHealthCheckProbe, isProblemNotificationHealthCheckStatus, iterateFirestoreDocumentSnapshotBatches, iterateFirestoreDocumentSnapshotCheckpoints, iterateFirestoreDocumentSnapshotPairBatches, iterateFirestoreDocumentSnapshotPairs, iterateFirestoreDocumentSnapshots, iterateStorageListFiles, iterateStorageListFilesByEachFile, iterateStorageListFilesFactory, iterationQueryDocChangeWatcher, iterationQueryDocChangeWatcherChangeTypeForGroup, latestSnapshotsFromDocuments, lazyFirebaseFunctionsFactory, limit, limitToLast, limitUploadFileTypeDeterminer, limitedFirestoreDocumentAccessorFactory, limitedFirestoreDocumentAccessorSnapshotCache, loadAllFirestoreDocumentSnapshot, loadAllFirestoreDocumentSnapshotPairs, loadDocumentsForDocumentReferences, loadDocumentsForDocumentReferencesFromValues, loadDocumentsForIds, loadDocumentsForIdsFromValues, loadDocumentsForKeys, loadDocumentsForKeysFromValues, loadDocumentsForSnapshots, loadDocumentsForValues, loadNotificationBoxDocumentForReferencePair, loadSchedulerSystemState, loadStorageFileGroupDocumentForReferencePair, lockFormSpaceParamsType, lockFormSpaceTemplate, makeDocuments, makeFirestoreCollection, makeFirestoreCollectionGroup, makeFirestoreCollectionWithParent, makeFirestoreContextCache, makeFirestoreItemPageIteratorDelegate, makeFirestoreQueryConstraintFunctionsDriver, makePagedItemFirestoreCollection, makeRootSingleItemFirestoreCollection, makeSingleItemFirestoreCollection, mapDataFromSnapshot, mapHttpsCallable, mapLatestSnapshotsFromDocuments, markCalendarForSyncTemplate, 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, notificationDeliveryHealthCheckResultForMethod, notificationFirestoreCollectionFactory, notificationFirestoreCollectionGroup, notificationFunctionMap, notificationHealthCheckIssue, notificationHealthCheckPendingProbeMethods, 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, notificationUserHealthCheckNextProbeAt, notificationUserHealthCheckNextProbeAtByMethod, notificationUserHealthCheckNextRunAt, notificationUserHealthCheckNextVerifyAt, notificationUserHealthCheckParamsType, notificationUserIdentity, notificationUsersFlaggedForNeedsSyncQuery, notificationWeekCollectionReference, notificationWeekCollectionReferenceFactory, notificationWeekConverter, notificationWeekFirestoreCollectionFactory, notificationWeekFirestoreCollectionGroup, notificationWeekIdentity, notificationsPastSendAtTimeQuery, notificationsReadyForCleanupQuery, nthHourOfDayIndex, offset, oidcClientEntriesByOwnerQuery, oidcEntriesByClientIdQuery, oidcEntriesByGrantIdQuery, oidcEntriesByUidQuery, oidcEntriesByUserCodeQuery, oidcEntriesWithTypeQuery, oidcEntryCollectionReference, oidcEntryConverter, oidcEntryFirestoreCollection, oidcEntryIdentity, oidcGrantEntriesByUidQuery, oidcModelFunctionMap, oidcProviderProfileDetails, oidcProviderProfilesForClient, oidcProviderProfilesForKeys, oidcScopeTermSatisfied, oidcScopeTermsSatisfied, oidcScopesFromScopeClaim, onCallCreateModelParams, onCallCreateModelResult, onCallCreateModelResultWithDocs, onCallDeleteModelParams, onCallDevelopmentParams, onCallInvokeModelParams, onCallQueryModelParams, onCallReadModelParams, onCallTypedModelParamsFunction, onCallUpdateModelParams, optionalFirestoreArray, optionalFirestoreBoolean, optionalFirestoreDate, optionalFirestoreDateNumber, optionalFirestoreEnum, optionalFirestoreField, optionalFirestoreJsonStringField, optionalFirestoreNotificationHealthCheck, optionalFirestoreNumber, optionalFirestorePassthroughJsonField, optionalFirestoreString, optionalFirestoreUID, optionalFirestoreUnitedStatesAddress, optionalFirestoreUnixDateTimeSecondsNumber, orderBy, orderByDocumentId, parseFormSpaceUploadPath, processAllQueuedFormSpacesParamsType, processAllQueuedStorageFilesParamsType, processStorageFileParamsType, pruneCalendarEvents, readFirestoreModelKey, readFirestoreModelKeyFromDocumentSnapshot, readLoggingFirestoreContextCache, readLoggingFirestoreContextCacheFactory, readMultipleStorageFilesMetadataFileParamsType, readMultipleStorageFilesMetadataParamsType, readStorageFileMetadataParamsType, readUserExternalConnectionAuthorizeStateParamsType, regenerateAllFlaggedStorageFileGroupsContentParamsType, regenerateStorageFileGroupContentParamsType, removeCalendarEventItems, removeFormSpaceFileParamsType, reopenFormSpaceParamsType, reopenFormSpaceTemplate, replaceCalendarEventItemsForModelKey, replaceConstraints, requiredFormSpaceFileSlots, requiredScopesForOidcProviderProfiles, resolveEffectiveOidcScopeTerms, resolveFormSpaceExpiresAt, resolveFormSpaceLocksAt, resolveOidcModelScopeRequirement, resyncAllNotificationUserParamsType, targetModelParamsType as resyncNotificationUserParamsType, rollupNotificationDeliveryHealthCheckResultStatus, rollupNotificationHealthCheckResultStatus, rollupNotificationHealthCheckStatus, rotateCalendarIcsParamsType, targetModelParamsType as rotateOidcClientSecretParamsType, scheduledFunctionDevelopmentFirebaseFunctionParamsType, schedulerSystemDataConverter, schedulerSystemStateRead, scopesForOidcProviderProfiles, selectFromFirebaseModelsService, sendNotificationParamsType, sendQueuedNotificationsParamsType, separateConstraints, setIdAndKeyFromKeyIdRefOnDocumentData, setIdAndKeyFromSnapshotOnDocumentData, shouldSaveNotificationToNotificationWeek, shouldSendCreatedNotificationInput, snapshotConverterFunctions, snapshotStreamDataForAccessor, snapshotStreamForAccessor, sortNotificationItemsFunction, startAfter, startAt, startAtValue, storageFileCollectionReference, storageFileConverter, storageFileDisplayFileName, storageFileFirestoreCollection, storageFileFlaggedForSyncWithGroupsQuery, storageFileFunctionMap, storageFileGroupCollectionReference, storageFileGroupConverter, storageFileGroupCreateStorageFileKeyFactory, storageFileGroupCreatedStorageFileKey, storageFileGroupEmbeddedFile, storageFileGroupFirestoreCollection, storageFileGroupFolderPath, storageFileGroupIdForModel, storageFileGroupIdentity, storageFileGroupZipFileStoragePath, storageFileGroupZipStorageFileKey, storageFileGroupsFlaggedForContentRegenerationQuery, storageFileGroupsFlaggedForNeedsInitializationQuery, storageFileGroupsFlaggedInvalidQuery, storageFileIdentity, storageFileProcessingNotificationTaskTemplate, storageFilePurposeAndUserQuery, storageFileUploadScopeType, storageFilesForFormSpaceQuery, storageFilesQueuedForDeleteQuery, storageFilesQueuedForProcessingQuery, storageListFilesResultFactory, storageListFilesResultHasNoNextError, storagePathFactory, storagePublicDownloadUrl, storedFileReaderFactory, streamDocumentSnapshotDataPairs, streamDocumentSnapshotDataPairsWithData, streamDocumentSnapshotsData, streamFromOnSnapshot, submitFormSpaceParamsType, submitFormSpaceTemplate, syncAllFlaggedCalendarsParamsType, syncAllFlaggedStorageFilesWithGroupsParamsType, syncCalendarParamsType, syncStorageFileWithGroupsParamsType, systemStateCollectionReference, systemStateConverter, systemStateFirestoreCollection, systemStateIdentity, systemStateStoredDataConverterFactory, targetModelIdParamsType, targetModelParamsType, twoWayFlatFirestoreModelKey, unlinkUserExternalConnectionLoginParamsType, unreadNotificationItems, unsupportedFirestoreDriverFunctionError, untrackableNotificationHealthCheckProbe, updateCalendarEventsTemplate, updateFormSpaceParamsType, targetModelParamsType as updateNotificationBoxParamsType, updateNotificationBoxRecipientLikeParamsType, updateNotificationBoxRecipientParamsType, updateNotificationBoxRecipientTemplateConfigRecord, updateNotificationRecipient, updateNotificationSummaryParamsType, updateNotificationUserDefaultNotificationBoxRecipientConfig, updateNotificationUserDefaultNotificationBoxRecipientConfigParamsType, updateNotificationUserNotificationBoxRecipientConfigIfChanged, updateNotificationUserNotificationBoxRecipientConfigs, updateNotificationUserNotificationBoxRecipientParamsType, updateNotificationUserNotificationSendExclusions, updateNotificationUserParamsType, updateOidcClientFieldParamsType, updateOidcClientParamsType, updateStorageFileGroupEntryParamsType, updateStorageFileGroupParamsType, updateStorageFileParamsType, updateWithAccessorUpdateAndConverterFunction, uploadFileWithStream, upsertCalendarEventItems, useContextAuth, useContextAuthUid, useDocumentSnapshot, useDocumentSnapshotData, useFirebaseModelsService, userExternalConnectionAccessorFactory, userExternalConnectionCollectionReference, userExternalConnectionConnectedProviderTypes, userExternalConnectionConverter, userExternalConnectionEntryFields, userExternalConnectionEntryForOutcome, userExternalConnectionEntryForProvider, userExternalConnectionEntryIsConnected, userExternalConnectionEntryIsExpired, userExternalConnectionExternalAccountKey, userExternalConnectionExternalAccountKeys, userExternalConnectionFirestoreCollection, userExternalConnectionFunctionMap, userExternalConnectionIdentity, userExternalConnectionIsConnectedToProvider, userExternalConnectionLinkedLoginProviderTypes, userExternalConnectionLoginFields, userExternalConnectionLoginForIdentity, userExternalConnectionLoginForProvider, userExternalConnectionValue, userExternalConnectionsWithConnectedProviderQuery, userExternalConnectionsWithExternalAccountQuery, userUploadsFolderSlashPathFactory, userUploadsFolderStoragePathFactory, where, whereDateIsAfter, whereDateIsAfterWithSort, whereDateIsBefore, whereDateIsBeforeWithSort, whereDateIsBetween, whereDateIsInRange, whereDateIsOnOrAfter, whereDateIsOnOrAfterWithSort, whereDateIsOnOrBefore, whereDateIsOnOrBeforeWithSort, whereDocumentId, whereStringHasRootIdentityModelKey, whereStringValueHasPrefix };
|