akeyless-client-commons 1.1.26 → 1.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/helpers/index.d.mts
CHANGED
|
@@ -4,7 +4,7 @@ import { Auth, GoogleAuthProvider, User } from 'firebase/auth';
|
|
|
4
4
|
import { AppCheck } from 'firebase/app-check';
|
|
5
5
|
import { WhereFilterOp, Unsubscribe, Firestore, CollectionReference, DocumentData, Timestamp, DocumentSnapshot } from 'firebase/firestore';
|
|
6
6
|
import { TObject, NxUser, CountryOptions, LanguageOptions, firebase_timestamp, UserPermissionsObject, userPermissionsObjectValue, Client, RedisUpdateType, RedisUpdatePayload, SocketCallbackResponse } from 'akeyless-types-commons';
|
|
7
|
-
import React
|
|
7
|
+
import React from 'react';
|
|
8
8
|
import { ClassValue } from 'clsx';
|
|
9
9
|
|
|
10
10
|
type SetState<T> = (updater: ((prev: T) => T) | T) => void;
|
|
@@ -142,7 +142,6 @@ declare const query_documents_by_conditions: (collection_path: string, where_con
|
|
|
142
142
|
declare const query_document_by_conditions: (collection_path: string, where_conditions: WhereCondition[]) => Promise<TObject<any>>;
|
|
143
143
|
declare const snapshot: Snapshot;
|
|
144
144
|
declare const snapshotDocument: SnapshotDocument;
|
|
145
|
-
declare const parseSnapshotAsArray: (setState: SetState<any[]> | Dispatch<SetStateAction<any[]>>) => OnSnapshotParsers;
|
|
146
145
|
declare const cleanNxSites: () => Promise<void>;
|
|
147
146
|
declare const getUserByPhone: (phone: string) => Promise<TObject<any>>;
|
|
148
147
|
declare const getUserByEmail: (email: string) => Promise<TObject<any>>;
|
|
@@ -163,8 +162,8 @@ declare const addAuditRecord: (action: string, entity: string, details: TObject<
|
|
|
163
162
|
declare const validateUserStatusAndPermissions: (user: NxUser, app: AppName) => TObject<TObject<boolean>>;
|
|
164
163
|
declare const getFileUrlFromStorage: (filePath: string) => Promise<string>;
|
|
165
164
|
declare const uploadFileToStorage: (file: File, filePath: string) => Promise<string>;
|
|
166
|
-
declare const
|
|
167
|
-
declare const
|
|
165
|
+
declare const parseSnapshotAsObject: (setState: SetState<any>, filterCondition?: (v: any) => boolean) => OnSnapshotParsers;
|
|
166
|
+
declare const parseSnapshotAsArray: (setState: SetState<any>, filterCondition?: (v: any) => boolean) => OnSnapshotParsers;
|
|
168
167
|
|
|
169
168
|
declare const calculateBearing: (startLat: any, startLng: any, endLat: any, endLng: any) => number;
|
|
170
169
|
declare const renderOnce: () => boolean;
|
|
@@ -311,4 +310,4 @@ declare class SocketService {
|
|
|
311
310
|
}
|
|
312
311
|
declare const socketServiceInstance: SocketService;
|
|
313
312
|
|
|
314
|
-
export { type EmailAttachment, type ValidationType, addAuditRecord, addLoginAudit, add_document, addressRegex, akeylessOnlineDomain, app, appCheck, auth, baseDomain, biDomain, calculateBearing, callCenterEventsDomain, callCenterGeoDomain, carsRegex, chartsRegex, checkUserPermissions, cleanNxSites, cn, collections, colorRegex, createAttachmentFromBlob, createAttachmentFromUrl, createSelectors, dataSocketDomain, dataSyncDomain, db, delete_document, devicesDomain, displayFormatPhoneNumber, durationToSeconds, emailRegex, extractAlertsData, extractBoardsData, extractCanbusData, extractCarsData, extractClientData, extractLocationData, extractSiteData, fire_base_TIME_TEMP, formatCarNumber, getAddressByGeo, getFileUrlFromStorage, getFixedNumber, getFormCheckboxValue, getFormElementValue, getLocationUrl, getUserByEmail, getUserByIdentifier, getUserByPhone, getUserCountryByIp, get_all_documents, get_document_by_id, get_international_phone_number, googleLoginProvider, handleChange, handleInvalid, handlePaste, initializeUserPermissions, international_israel_phone_format, isInternational, isInternationalIsraelPhone, isLocal, isNodeEnv, is_iccid, local_israel_phone_format, mode, multiStringFormat, notificationsDomain, numbersOnlyRegex, numbersRegex, nxApiCall,
|
|
313
|
+
export { type EmailAttachment, type ValidationType, addAuditRecord, addLoginAudit, add_document, addressRegex, akeylessOnlineDomain, app, appCheck, auth, baseDomain, biDomain, calculateBearing, callCenterEventsDomain, callCenterGeoDomain, carsRegex, chartsRegex, checkUserPermissions, cleanNxSites, cn, collections, colorRegex, createAttachmentFromBlob, createAttachmentFromUrl, createSelectors, dataSocketDomain, dataSyncDomain, db, delete_document, devicesDomain, displayFormatPhoneNumber, durationToSeconds, emailRegex, extractAlertsData, extractBoardsData, extractCanbusData, extractCarsData, extractClientData, extractLocationData, extractSiteData, fire_base_TIME_TEMP, formatCarNumber, getAddressByGeo, getFileUrlFromStorage, getFixedNumber, getFormCheckboxValue, getFormElementValue, getLocationUrl, getUserByEmail, getUserByIdentifier, getUserByPhone, getUserCountryByIp, get_all_documents, get_document_by_id, get_international_phone_number, googleLoginProvider, handleChange, handleInvalid, handlePaste, initializeUserPermissions, international_israel_phone_format, isInternational, isInternationalIsraelPhone, isLocal, isNodeEnv, is_iccid, local_israel_phone_format, mode, multiStringFormat, notificationsDomain, numbersOnlyRegex, numbersRegex, nxApiCall, parseMultiSelectInput, parsePermissions, parseSnapshotAsArray, parseSnapshotAsObject, priceRegex, propsAreEqual, query_document, query_document_by_conditions, query_documents, query_documents_by_conditions, renderOnce, secondsToDuration, setFormElementValue, setState, set_document, simpleExtractData, snapshot, snapshotDocument, socketServiceInstance, sort_by_timestamp, storage, textNumbersRegex, textRegex, timestamp_to_millis, timestamp_to_string, uploadFileToStorage, useLoginWithGoogle, useStoreValues, useValidation, userNameFormat, validateAndCast, validateUserStatusAndPermissions };
|
package/dist/helpers/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { Auth, GoogleAuthProvider, User } from 'firebase/auth';
|
|
|
4
4
|
import { AppCheck } from 'firebase/app-check';
|
|
5
5
|
import { WhereFilterOp, Unsubscribe, Firestore, CollectionReference, DocumentData, Timestamp, DocumentSnapshot } from 'firebase/firestore';
|
|
6
6
|
import { TObject, NxUser, CountryOptions, LanguageOptions, firebase_timestamp, UserPermissionsObject, userPermissionsObjectValue, Client, RedisUpdateType, RedisUpdatePayload, SocketCallbackResponse } from 'akeyless-types-commons';
|
|
7
|
-
import React
|
|
7
|
+
import React from 'react';
|
|
8
8
|
import { ClassValue } from 'clsx';
|
|
9
9
|
|
|
10
10
|
type SetState<T> = (updater: ((prev: T) => T) | T) => void;
|
|
@@ -142,7 +142,6 @@ declare const query_documents_by_conditions: (collection_path: string, where_con
|
|
|
142
142
|
declare const query_document_by_conditions: (collection_path: string, where_conditions: WhereCondition[]) => Promise<TObject<any>>;
|
|
143
143
|
declare const snapshot: Snapshot;
|
|
144
144
|
declare const snapshotDocument: SnapshotDocument;
|
|
145
|
-
declare const parseSnapshotAsArray: (setState: SetState<any[]> | Dispatch<SetStateAction<any[]>>) => OnSnapshotParsers;
|
|
146
145
|
declare const cleanNxSites: () => Promise<void>;
|
|
147
146
|
declare const getUserByPhone: (phone: string) => Promise<TObject<any>>;
|
|
148
147
|
declare const getUserByEmail: (email: string) => Promise<TObject<any>>;
|
|
@@ -163,8 +162,8 @@ declare const addAuditRecord: (action: string, entity: string, details: TObject<
|
|
|
163
162
|
declare const validateUserStatusAndPermissions: (user: NxUser, app: AppName) => TObject<TObject<boolean>>;
|
|
164
163
|
declare const getFileUrlFromStorage: (filePath: string) => Promise<string>;
|
|
165
164
|
declare const uploadFileToStorage: (file: File, filePath: string) => Promise<string>;
|
|
166
|
-
declare const
|
|
167
|
-
declare const
|
|
165
|
+
declare const parseSnapshotAsObject: (setState: SetState<any>, filterCondition?: (v: any) => boolean) => OnSnapshotParsers;
|
|
166
|
+
declare const parseSnapshotAsArray: (setState: SetState<any>, filterCondition?: (v: any) => boolean) => OnSnapshotParsers;
|
|
168
167
|
|
|
169
168
|
declare const calculateBearing: (startLat: any, startLng: any, endLat: any, endLng: any) => number;
|
|
170
169
|
declare const renderOnce: () => boolean;
|
|
@@ -311,4 +310,4 @@ declare class SocketService {
|
|
|
311
310
|
}
|
|
312
311
|
declare const socketServiceInstance: SocketService;
|
|
313
312
|
|
|
314
|
-
export { type EmailAttachment, type ValidationType, addAuditRecord, addLoginAudit, add_document, addressRegex, akeylessOnlineDomain, app, appCheck, auth, baseDomain, biDomain, calculateBearing, callCenterEventsDomain, callCenterGeoDomain, carsRegex, chartsRegex, checkUserPermissions, cleanNxSites, cn, collections, colorRegex, createAttachmentFromBlob, createAttachmentFromUrl, createSelectors, dataSocketDomain, dataSyncDomain, db, delete_document, devicesDomain, displayFormatPhoneNumber, durationToSeconds, emailRegex, extractAlertsData, extractBoardsData, extractCanbusData, extractCarsData, extractClientData, extractLocationData, extractSiteData, fire_base_TIME_TEMP, formatCarNumber, getAddressByGeo, getFileUrlFromStorage, getFixedNumber, getFormCheckboxValue, getFormElementValue, getLocationUrl, getUserByEmail, getUserByIdentifier, getUserByPhone, getUserCountryByIp, get_all_documents, get_document_by_id, get_international_phone_number, googleLoginProvider, handleChange, handleInvalid, handlePaste, initializeUserPermissions, international_israel_phone_format, isInternational, isInternationalIsraelPhone, isLocal, isNodeEnv, is_iccid, local_israel_phone_format, mode, multiStringFormat, notificationsDomain, numbersOnlyRegex, numbersRegex, nxApiCall,
|
|
313
|
+
export { type EmailAttachment, type ValidationType, addAuditRecord, addLoginAudit, add_document, addressRegex, akeylessOnlineDomain, app, appCheck, auth, baseDomain, biDomain, calculateBearing, callCenterEventsDomain, callCenterGeoDomain, carsRegex, chartsRegex, checkUserPermissions, cleanNxSites, cn, collections, colorRegex, createAttachmentFromBlob, createAttachmentFromUrl, createSelectors, dataSocketDomain, dataSyncDomain, db, delete_document, devicesDomain, displayFormatPhoneNumber, durationToSeconds, emailRegex, extractAlertsData, extractBoardsData, extractCanbusData, extractCarsData, extractClientData, extractLocationData, extractSiteData, fire_base_TIME_TEMP, formatCarNumber, getAddressByGeo, getFileUrlFromStorage, getFixedNumber, getFormCheckboxValue, getFormElementValue, getLocationUrl, getUserByEmail, getUserByIdentifier, getUserByPhone, getUserCountryByIp, get_all_documents, get_document_by_id, get_international_phone_number, googleLoginProvider, handleChange, handleInvalid, handlePaste, initializeUserPermissions, international_israel_phone_format, isInternational, isInternationalIsraelPhone, isLocal, isNodeEnv, is_iccid, local_israel_phone_format, mode, multiStringFormat, notificationsDomain, numbersOnlyRegex, numbersRegex, nxApiCall, parseMultiSelectInput, parsePermissions, parseSnapshotAsArray, parseSnapshotAsObject, priceRegex, propsAreEqual, query_document, query_document_by_conditions, query_documents, query_documents_by_conditions, renderOnce, secondsToDuration, setFormElementValue, setState, set_document, simpleExtractData, snapshot, snapshotDocument, socketServiceInstance, sort_by_timestamp, storage, textNumbersRegex, textRegex, timestamp_to_millis, timestamp_to_string, uploadFileToStorage, useLoginWithGoogle, useStoreValues, useValidation, userNameFormat, validateAndCast, validateUserStatusAndPermissions };
|
package/dist/helpers/index.js
CHANGED
|
@@ -537,12 +537,6 @@ __export(index_exports, {
|
|
|
537
537
|
nxApiCall: function() {
|
|
538
538
|
return nxApiCall;
|
|
539
539
|
},
|
|
540
|
-
parsSnapshotAsArray: function() {
|
|
541
|
-
return parsSnapshotAsArray;
|
|
542
|
-
},
|
|
543
|
-
parsSnapshotAsObject: function() {
|
|
544
|
-
return parsSnapshotAsObject;
|
|
545
|
-
},
|
|
546
540
|
parseMultiSelectInput: function() {
|
|
547
541
|
return parseMultiSelectInput;
|
|
548
542
|
},
|
|
@@ -552,6 +546,9 @@ __export(index_exports, {
|
|
|
552
546
|
parseSnapshotAsArray: function() {
|
|
553
547
|
return parseSnapshotAsArray;
|
|
554
548
|
},
|
|
549
|
+
parseSnapshotAsObject: function() {
|
|
550
|
+
return parseSnapshotAsObject;
|
|
551
|
+
},
|
|
555
552
|
priceRegex: function() {
|
|
556
553
|
return priceRegex;
|
|
557
554
|
},
|
|
@@ -1563,40 +1560,6 @@ var snapshotDocument = function(config, snapshotsFirstTime) {
|
|
|
1563
1560
|
unsubscribe: unsubscribe
|
|
1564
1561
|
};
|
|
1565
1562
|
};
|
|
1566
|
-
var parseSnapshotAsArray = function(setState2) {
|
|
1567
|
-
return {
|
|
1568
|
-
onAdd: function(data) {
|
|
1569
|
-
setState2(function(prev) {
|
|
1570
|
-
return _to_consumable_array(prev).concat(_to_consumable_array(data));
|
|
1571
|
-
});
|
|
1572
|
-
},
|
|
1573
|
-
onFirstTime: function(data) {
|
|
1574
|
-
setState2(function(prev) {
|
|
1575
|
-
return _to_consumable_array(prev).concat(_to_consumable_array(data));
|
|
1576
|
-
});
|
|
1577
|
-
},
|
|
1578
|
-
onModify: function(data) {
|
|
1579
|
-
setState2(function(prev) {
|
|
1580
|
-
var update = prev.map(function(item) {
|
|
1581
|
-
var updatedItem = data.find(function(v) {
|
|
1582
|
-
return v.id === item.id;
|
|
1583
|
-
});
|
|
1584
|
-
return updatedItem ? updatedItem : item;
|
|
1585
|
-
});
|
|
1586
|
-
return update;
|
|
1587
|
-
});
|
|
1588
|
-
},
|
|
1589
|
-
onRemove: function(data) {
|
|
1590
|
-
setState2(function(prev) {
|
|
1591
|
-
return prev.filter(function(item) {
|
|
1592
|
-
return !data.some(function(v) {
|
|
1593
|
-
return v.id === item.id;
|
|
1594
|
-
});
|
|
1595
|
-
});
|
|
1596
|
-
});
|
|
1597
|
-
}
|
|
1598
|
-
};
|
|
1599
|
-
};
|
|
1600
1563
|
var checkConditions = function(document2, conditions) {
|
|
1601
1564
|
if (!conditions || conditions.length === 0) return true;
|
|
1602
1565
|
return conditions.every(function(condition) {
|
|
@@ -1946,7 +1909,7 @@ var uploadFileToStorage = /*#__PURE__*/ function() {
|
|
|
1946
1909
|
return _ref.apply(this, arguments);
|
|
1947
1910
|
};
|
|
1948
1911
|
}();
|
|
1949
|
-
var
|
|
1912
|
+
var parseSnapshotAsObject = function(setState2, filterCondition) {
|
|
1950
1913
|
return {
|
|
1951
1914
|
onFirstTime: function(docs) {
|
|
1952
1915
|
if (filterCondition) {
|
|
@@ -1996,7 +1959,7 @@ var parsSnapshotAsObject = function(setState2, filterCondition) {
|
|
|
1996
1959
|
}
|
|
1997
1960
|
};
|
|
1998
1961
|
};
|
|
1999
|
-
var
|
|
1962
|
+
var parseSnapshotAsArray = function(setState2, filterCondition) {
|
|
2000
1963
|
return {
|
|
2001
1964
|
onFirstTime: function(docs) {
|
|
2002
1965
|
if (filterCondition) {
|
|
@@ -2985,11 +2948,10 @@ var socketServiceInstance = SocketService.getInstance();
|
|
|
2985
2948
|
numbersOnlyRegex: numbersOnlyRegex,
|
|
2986
2949
|
numbersRegex: numbersRegex,
|
|
2987
2950
|
nxApiCall: nxApiCall,
|
|
2988
|
-
parsSnapshotAsArray: parsSnapshotAsArray,
|
|
2989
|
-
parsSnapshotAsObject: parsSnapshotAsObject,
|
|
2990
2951
|
parseMultiSelectInput: parseMultiSelectInput,
|
|
2991
2952
|
parsePermissions: parsePermissions,
|
|
2992
2953
|
parseSnapshotAsArray: parseSnapshotAsArray,
|
|
2954
|
+
parseSnapshotAsObject: parseSnapshotAsObject,
|
|
2993
2955
|
priceRegex: priceRegex,
|
|
2994
2956
|
propsAreEqual: propsAreEqual,
|
|
2995
2957
|
query_document: query_document,
|
package/dist/helpers/index.mjs
CHANGED
|
@@ -1182,40 +1182,6 @@ var snapshotDocument = function(config, snapshotsFirstTime) {
|
|
|
1182
1182
|
unsubscribe: unsubscribe
|
|
1183
1183
|
};
|
|
1184
1184
|
};
|
|
1185
|
-
var parseSnapshotAsArray = function(setState2) {
|
|
1186
|
-
return {
|
|
1187
|
-
onAdd: function(data) {
|
|
1188
|
-
setState2(function(prev) {
|
|
1189
|
-
return _to_consumable_array(prev).concat(_to_consumable_array(data));
|
|
1190
|
-
});
|
|
1191
|
-
},
|
|
1192
|
-
onFirstTime: function(data) {
|
|
1193
|
-
setState2(function(prev) {
|
|
1194
|
-
return _to_consumable_array(prev).concat(_to_consumable_array(data));
|
|
1195
|
-
});
|
|
1196
|
-
},
|
|
1197
|
-
onModify: function(data) {
|
|
1198
|
-
setState2(function(prev) {
|
|
1199
|
-
var update = prev.map(function(item) {
|
|
1200
|
-
var updatedItem = data.find(function(v) {
|
|
1201
|
-
return v.id === item.id;
|
|
1202
|
-
});
|
|
1203
|
-
return updatedItem ? updatedItem : item;
|
|
1204
|
-
});
|
|
1205
|
-
return update;
|
|
1206
|
-
});
|
|
1207
|
-
},
|
|
1208
|
-
onRemove: function(data) {
|
|
1209
|
-
setState2(function(prev) {
|
|
1210
|
-
return prev.filter(function(item) {
|
|
1211
|
-
return !data.some(function(v) {
|
|
1212
|
-
return v.id === item.id;
|
|
1213
|
-
});
|
|
1214
|
-
});
|
|
1215
|
-
});
|
|
1216
|
-
}
|
|
1217
|
-
};
|
|
1218
|
-
};
|
|
1219
1185
|
var checkConditions = function(document2, conditions) {
|
|
1220
1186
|
if (!conditions || conditions.length === 0) return true;
|
|
1221
1187
|
return conditions.every(function(condition) {
|
|
@@ -1565,7 +1531,7 @@ var uploadFileToStorage = /*#__PURE__*/ function() {
|
|
|
1565
1531
|
return _ref.apply(this, arguments);
|
|
1566
1532
|
};
|
|
1567
1533
|
}();
|
|
1568
|
-
var
|
|
1534
|
+
var parseSnapshotAsObject = function(setState2, filterCondition) {
|
|
1569
1535
|
return {
|
|
1570
1536
|
onFirstTime: function(docs) {
|
|
1571
1537
|
if (filterCondition) {
|
|
@@ -1615,7 +1581,7 @@ var parsSnapshotAsObject = function(setState2, filterCondition) {
|
|
|
1615
1581
|
}
|
|
1616
1582
|
};
|
|
1617
1583
|
};
|
|
1618
|
-
var
|
|
1584
|
+
var parseSnapshotAsArray = function(setState2, filterCondition) {
|
|
1619
1585
|
return {
|
|
1620
1586
|
onFirstTime: function(docs) {
|
|
1621
1587
|
if (filterCondition) {
|
|
@@ -2530,5 +2496,5 @@ var SocketService = /*#__PURE__*/ function() {
|
|
|
2530
2496
|
return _SocketService;
|
|
2531
2497
|
}();
|
|
2532
2498
|
var socketServiceInstance = SocketService.getInstance();
|
|
2533
|
-
export { addAuditRecord, addLoginAudit, add_document, addressRegex, akeylessOnlineDomain, app, appCheck, auth, baseDomain, biDomain, calculateBearing, callCenterEventsDomain, callCenterGeoDomain, carsRegex, chartsRegex, checkUserPermissions, cleanNxSites, cn, collections, colorRegex, createAttachmentFromBlob, createAttachmentFromUrl, createSelectors, dataSocketDomain, dataSyncDomain, db, delete_document, devicesDomain, displayFormatPhoneNumber, durationToSeconds, emailRegex, extractAlertsData, extractBoardsData, extractCanbusData, extractCarsData, extractClientData, extractLocationData, extractSiteData, fire_base_TIME_TEMP, formatCarNumber, getAddressByGeo, getFileUrlFromStorage, getFixedNumber, getFormCheckboxValue, getFormElementValue, getLocationUrl, getUserByEmail, getUserByIdentifier, getUserByPhone, getUserCountryByIp, get_all_documents, get_document_by_id, get_international_phone_number, googleLoginProvider, handleChange, handleInvalid, handlePaste, initializeUserPermissions, international_israel_phone_format, isInternational, isInternationalIsraelPhone, isLocal, isNodeEnv, is_iccid, local_israel_phone_format, mode, multiStringFormat, notificationsDomain, numbersOnlyRegex, numbersRegex, nxApiCall,
|
|
2499
|
+
export { addAuditRecord, addLoginAudit, add_document, addressRegex, akeylessOnlineDomain, app, appCheck, auth, baseDomain, biDomain, calculateBearing, callCenterEventsDomain, callCenterGeoDomain, carsRegex, chartsRegex, checkUserPermissions, cleanNxSites, cn, collections, colorRegex, createAttachmentFromBlob, createAttachmentFromUrl, createSelectors, dataSocketDomain, dataSyncDomain, db, delete_document, devicesDomain, displayFormatPhoneNumber, durationToSeconds, emailRegex, extractAlertsData, extractBoardsData, extractCanbusData, extractCarsData, extractClientData, extractLocationData, extractSiteData, fire_base_TIME_TEMP, formatCarNumber, getAddressByGeo, getFileUrlFromStorage, getFixedNumber, getFormCheckboxValue, getFormElementValue, getLocationUrl, getUserByEmail, getUserByIdentifier, getUserByPhone, getUserCountryByIp, get_all_documents, get_document_by_id, get_international_phone_number, googleLoginProvider, handleChange, handleInvalid, handlePaste, initializeUserPermissions, international_israel_phone_format, isInternational, isInternationalIsraelPhone, isLocal, isNodeEnv, is_iccid, local_israel_phone_format, mode, multiStringFormat, notificationsDomain, numbersOnlyRegex, numbersRegex, nxApiCall, parseMultiSelectInput, parsePermissions, parseSnapshotAsArray, parseSnapshotAsObject, priceRegex, propsAreEqual, query_document, query_document_by_conditions, query_documents, query_documents_by_conditions, renderOnce, secondsToDuration, setFormElementValue, setState, set_document, simpleExtractData, snapshot, snapshotDocument, socketServiceInstance, sort_by_timestamp, storage, textNumbersRegex, textRegex, timestamp_to_millis, timestamp_to_string, uploadFileToStorage, useLoginWithGoogle, useStoreValues, useValidation, userNameFormat, validateAndCast, validateUserStatusAndPermissions };
|
|
2534
2500
|
//# sourceMappingURL=index.mjs.map
|