akeyless-client-commons 1.1.24 → 1.1.26
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
|
@@ -163,6 +163,8 @@ declare const addAuditRecord: (action: string, entity: string, details: TObject<
|
|
|
163
163
|
declare const validateUserStatusAndPermissions: (user: NxUser, app: AppName) => TObject<TObject<boolean>>;
|
|
164
164
|
declare const getFileUrlFromStorage: (filePath: string) => Promise<string>;
|
|
165
165
|
declare const uploadFileToStorage: (file: File, filePath: string) => Promise<string>;
|
|
166
|
+
declare const parsSnapshotAsObject: (setState: SetState<any>, filterCondition?: (v: any) => boolean) => OnSnapshotParsers;
|
|
167
|
+
declare const parsSnapshotAsArray: (setState: SetState<any>, filterCondition?: (v: any) => boolean) => OnSnapshotParsers;
|
|
166
168
|
|
|
167
169
|
declare const calculateBearing: (startLat: any, startLng: any, endLat: any, endLng: any) => number;
|
|
168
170
|
declare const renderOnce: () => boolean;
|
|
@@ -309,4 +311,4 @@ declare class SocketService {
|
|
|
309
311
|
}
|
|
310
312
|
declare const socketServiceInstance: SocketService;
|
|
311
313
|
|
|
312
|
-
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, 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 };
|
|
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, parsSnapshotAsArray, parsSnapshotAsObject, parseMultiSelectInput, parsePermissions, parseSnapshotAsArray, 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
|
@@ -163,6 +163,8 @@ declare const addAuditRecord: (action: string, entity: string, details: TObject<
|
|
|
163
163
|
declare const validateUserStatusAndPermissions: (user: NxUser, app: AppName) => TObject<TObject<boolean>>;
|
|
164
164
|
declare const getFileUrlFromStorage: (filePath: string) => Promise<string>;
|
|
165
165
|
declare const uploadFileToStorage: (file: File, filePath: string) => Promise<string>;
|
|
166
|
+
declare const parsSnapshotAsObject: (setState: SetState<any>, filterCondition?: (v: any) => boolean) => OnSnapshotParsers;
|
|
167
|
+
declare const parsSnapshotAsArray: (setState: SetState<any>, filterCondition?: (v: any) => boolean) => OnSnapshotParsers;
|
|
166
168
|
|
|
167
169
|
declare const calculateBearing: (startLat: any, startLng: any, endLat: any, endLng: any) => number;
|
|
168
170
|
declare const renderOnce: () => boolean;
|
|
@@ -309,4 +311,4 @@ declare class SocketService {
|
|
|
309
311
|
}
|
|
310
312
|
declare const socketServiceInstance: SocketService;
|
|
311
313
|
|
|
312
|
-
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, 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 };
|
|
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, parsSnapshotAsArray, parsSnapshotAsObject, parseMultiSelectInput, parsePermissions, parseSnapshotAsArray, 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,6 +537,12 @@ __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
|
+
},
|
|
540
546
|
parseMultiSelectInput: function() {
|
|
541
547
|
return parseMultiSelectInput;
|
|
542
548
|
},
|
|
@@ -1940,6 +1946,103 @@ var uploadFileToStorage = /*#__PURE__*/ function() {
|
|
|
1940
1946
|
return _ref.apply(this, arguments);
|
|
1941
1947
|
};
|
|
1942
1948
|
}();
|
|
1949
|
+
var parsSnapshotAsObject = function(setState2, filterCondition) {
|
|
1950
|
+
return {
|
|
1951
|
+
onFirstTime: function(docs) {
|
|
1952
|
+
if (filterCondition) {
|
|
1953
|
+
docs = docs.filter(filterCondition);
|
|
1954
|
+
}
|
|
1955
|
+
var object = docs.reduce(function(acc, doc2) {
|
|
1956
|
+
acc[doc2.id] = doc2.data;
|
|
1957
|
+
return acc;
|
|
1958
|
+
}, {});
|
|
1959
|
+
setState2(object);
|
|
1960
|
+
},
|
|
1961
|
+
onAdd: function(docs) {
|
|
1962
|
+
if (filterCondition) {
|
|
1963
|
+
docs = docs.filter(filterCondition);
|
|
1964
|
+
}
|
|
1965
|
+
var object = docs.reduce(function(acc, doc2) {
|
|
1966
|
+
acc[doc2.id] = doc2.data;
|
|
1967
|
+
return acc;
|
|
1968
|
+
}, {});
|
|
1969
|
+
setState2(function(prev) {
|
|
1970
|
+
return _object_spread({}, prev, object);
|
|
1971
|
+
});
|
|
1972
|
+
},
|
|
1973
|
+
onModify: function(docs) {
|
|
1974
|
+
if (filterCondition) {
|
|
1975
|
+
docs = docs.filter(filterCondition);
|
|
1976
|
+
}
|
|
1977
|
+
var object = docs.reduce(function(acc, doc2) {
|
|
1978
|
+
acc[doc2.id] = doc2.data;
|
|
1979
|
+
return acc;
|
|
1980
|
+
}, {});
|
|
1981
|
+
setState2(function(prev) {
|
|
1982
|
+
return _object_spread({}, prev, object);
|
|
1983
|
+
});
|
|
1984
|
+
},
|
|
1985
|
+
onRemove: function(docs) {
|
|
1986
|
+
if (filterCondition) {
|
|
1987
|
+
docs = docs.filter(filterCondition);
|
|
1988
|
+
}
|
|
1989
|
+
setState2(function(prev) {
|
|
1990
|
+
var newState = _object_spread({}, prev);
|
|
1991
|
+
docs.forEach(function(doc2) {
|
|
1992
|
+
delete newState[doc2.id];
|
|
1993
|
+
});
|
|
1994
|
+
return newState;
|
|
1995
|
+
});
|
|
1996
|
+
}
|
|
1997
|
+
};
|
|
1998
|
+
};
|
|
1999
|
+
var parsSnapshotAsArray = function(setState2, filterCondition) {
|
|
2000
|
+
return {
|
|
2001
|
+
onFirstTime: function(docs) {
|
|
2002
|
+
if (filterCondition) {
|
|
2003
|
+
docs = docs.filter(filterCondition);
|
|
2004
|
+
}
|
|
2005
|
+
setState2(docs);
|
|
2006
|
+
},
|
|
2007
|
+
onAdd: function(docs) {
|
|
2008
|
+
if (filterCondition) {
|
|
2009
|
+
docs = docs.filter(filterCondition);
|
|
2010
|
+
}
|
|
2011
|
+
setState2(function(prev) {
|
|
2012
|
+
return _to_consumable_array(prev).concat(_to_consumable_array(docs));
|
|
2013
|
+
});
|
|
2014
|
+
},
|
|
2015
|
+
onModify: function(docs) {
|
|
2016
|
+
if (filterCondition) {
|
|
2017
|
+
docs = docs.filter(filterCondition);
|
|
2018
|
+
}
|
|
2019
|
+
setState2(function(prev) {
|
|
2020
|
+
var newState = _to_consumable_array(prev);
|
|
2021
|
+
docs.forEach(function(doc2) {
|
|
2022
|
+
var index = newState.findIndex(function(d) {
|
|
2023
|
+
return d.id === doc2.id;
|
|
2024
|
+
});
|
|
2025
|
+
if (index !== -1) {
|
|
2026
|
+
newState[index] = doc2;
|
|
2027
|
+
}
|
|
2028
|
+
});
|
|
2029
|
+
return newState;
|
|
2030
|
+
});
|
|
2031
|
+
},
|
|
2032
|
+
onRemove: function(docs) {
|
|
2033
|
+
if (filterCondition) {
|
|
2034
|
+
docs = docs.filter(filterCondition);
|
|
2035
|
+
}
|
|
2036
|
+
setState2(function(prev) {
|
|
2037
|
+
return prev.filter(function(doc2) {
|
|
2038
|
+
return !docs.some(function(d) {
|
|
2039
|
+
return d.id === doc2.id;
|
|
2040
|
+
});
|
|
2041
|
+
});
|
|
2042
|
+
});
|
|
2043
|
+
}
|
|
2044
|
+
};
|
|
2045
|
+
};
|
|
1943
2046
|
// src/helpers/global.ts
|
|
1944
2047
|
var import_akeyless_types_commons = require("akeyless-types-commons");
|
|
1945
2048
|
var import_axios = __toESM(require("axios"));
|
|
@@ -2882,6 +2985,8 @@ var socketServiceInstance = SocketService.getInstance();
|
|
|
2882
2985
|
numbersOnlyRegex: numbersOnlyRegex,
|
|
2883
2986
|
numbersRegex: numbersRegex,
|
|
2884
2987
|
nxApiCall: nxApiCall,
|
|
2988
|
+
parsSnapshotAsArray: parsSnapshotAsArray,
|
|
2989
|
+
parsSnapshotAsObject: parsSnapshotAsObject,
|
|
2885
2990
|
parseMultiSelectInput: parseMultiSelectInput,
|
|
2886
2991
|
parsePermissions: parsePermissions,
|
|
2887
2992
|
parseSnapshotAsArray: parseSnapshotAsArray,
|
package/dist/helpers/index.mjs
CHANGED
|
@@ -1565,6 +1565,103 @@ var uploadFileToStorage = /*#__PURE__*/ function() {
|
|
|
1565
1565
|
return _ref.apply(this, arguments);
|
|
1566
1566
|
};
|
|
1567
1567
|
}();
|
|
1568
|
+
var parsSnapshotAsObject = function(setState2, filterCondition) {
|
|
1569
|
+
return {
|
|
1570
|
+
onFirstTime: function(docs) {
|
|
1571
|
+
if (filterCondition) {
|
|
1572
|
+
docs = docs.filter(filterCondition);
|
|
1573
|
+
}
|
|
1574
|
+
var object = docs.reduce(function(acc, doc2) {
|
|
1575
|
+
acc[doc2.id] = doc2.data;
|
|
1576
|
+
return acc;
|
|
1577
|
+
}, {});
|
|
1578
|
+
setState2(object);
|
|
1579
|
+
},
|
|
1580
|
+
onAdd: function(docs) {
|
|
1581
|
+
if (filterCondition) {
|
|
1582
|
+
docs = docs.filter(filterCondition);
|
|
1583
|
+
}
|
|
1584
|
+
var object = docs.reduce(function(acc, doc2) {
|
|
1585
|
+
acc[doc2.id] = doc2.data;
|
|
1586
|
+
return acc;
|
|
1587
|
+
}, {});
|
|
1588
|
+
setState2(function(prev) {
|
|
1589
|
+
return _object_spread({}, prev, object);
|
|
1590
|
+
});
|
|
1591
|
+
},
|
|
1592
|
+
onModify: function(docs) {
|
|
1593
|
+
if (filterCondition) {
|
|
1594
|
+
docs = docs.filter(filterCondition);
|
|
1595
|
+
}
|
|
1596
|
+
var object = docs.reduce(function(acc, doc2) {
|
|
1597
|
+
acc[doc2.id] = doc2.data;
|
|
1598
|
+
return acc;
|
|
1599
|
+
}, {});
|
|
1600
|
+
setState2(function(prev) {
|
|
1601
|
+
return _object_spread({}, prev, object);
|
|
1602
|
+
});
|
|
1603
|
+
},
|
|
1604
|
+
onRemove: function(docs) {
|
|
1605
|
+
if (filterCondition) {
|
|
1606
|
+
docs = docs.filter(filterCondition);
|
|
1607
|
+
}
|
|
1608
|
+
setState2(function(prev) {
|
|
1609
|
+
var newState = _object_spread({}, prev);
|
|
1610
|
+
docs.forEach(function(doc2) {
|
|
1611
|
+
delete newState[doc2.id];
|
|
1612
|
+
});
|
|
1613
|
+
return newState;
|
|
1614
|
+
});
|
|
1615
|
+
}
|
|
1616
|
+
};
|
|
1617
|
+
};
|
|
1618
|
+
var parsSnapshotAsArray = function(setState2, filterCondition) {
|
|
1619
|
+
return {
|
|
1620
|
+
onFirstTime: function(docs) {
|
|
1621
|
+
if (filterCondition) {
|
|
1622
|
+
docs = docs.filter(filterCondition);
|
|
1623
|
+
}
|
|
1624
|
+
setState2(docs);
|
|
1625
|
+
},
|
|
1626
|
+
onAdd: function(docs) {
|
|
1627
|
+
if (filterCondition) {
|
|
1628
|
+
docs = docs.filter(filterCondition);
|
|
1629
|
+
}
|
|
1630
|
+
setState2(function(prev) {
|
|
1631
|
+
return _to_consumable_array(prev).concat(_to_consumable_array(docs));
|
|
1632
|
+
});
|
|
1633
|
+
},
|
|
1634
|
+
onModify: function(docs) {
|
|
1635
|
+
if (filterCondition) {
|
|
1636
|
+
docs = docs.filter(filterCondition);
|
|
1637
|
+
}
|
|
1638
|
+
setState2(function(prev) {
|
|
1639
|
+
var newState = _to_consumable_array(prev);
|
|
1640
|
+
docs.forEach(function(doc2) {
|
|
1641
|
+
var index = newState.findIndex(function(d) {
|
|
1642
|
+
return d.id === doc2.id;
|
|
1643
|
+
});
|
|
1644
|
+
if (index !== -1) {
|
|
1645
|
+
newState[index] = doc2;
|
|
1646
|
+
}
|
|
1647
|
+
});
|
|
1648
|
+
return newState;
|
|
1649
|
+
});
|
|
1650
|
+
},
|
|
1651
|
+
onRemove: function(docs) {
|
|
1652
|
+
if (filterCondition) {
|
|
1653
|
+
docs = docs.filter(filterCondition);
|
|
1654
|
+
}
|
|
1655
|
+
setState2(function(prev) {
|
|
1656
|
+
return prev.filter(function(doc2) {
|
|
1657
|
+
return !docs.some(function(d) {
|
|
1658
|
+
return d.id === doc2.id;
|
|
1659
|
+
});
|
|
1660
|
+
});
|
|
1661
|
+
});
|
|
1662
|
+
}
|
|
1663
|
+
};
|
|
1664
|
+
};
|
|
1568
1665
|
// src/helpers/global.ts
|
|
1569
1666
|
import { CountryOptions, LanguageOptions } from "akeyless-types-commons";
|
|
1570
1667
|
import axios from "axios";
|
|
@@ -2433,5 +2530,5 @@ var SocketService = /*#__PURE__*/ function() {
|
|
|
2433
2530
|
return _SocketService;
|
|
2434
2531
|
}();
|
|
2435
2532
|
var socketServiceInstance = SocketService.getInstance();
|
|
2436
|
-
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, 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 };
|
|
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, parsSnapshotAsArray, parsSnapshotAsObject, parseMultiSelectInput, parsePermissions, parseSnapshotAsArray, 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 };
|
|
2437
2534
|
//# sourceMappingURL=index.mjs.map
|