mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 08:51:01 +00:00
1 line
27 KiB
Plaintext
1 line
27 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/asyncToGenerator","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"YisBBiy2Xm9DEVdFebZ2nbgAHBo=","exportNames":["*"],"imports":1}},{"name":"./ExpoSecureStore","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":48,"index":48}}],"key":"ZudhOBNf0EF2ra5GBlE3UCprcN0=","exportNames":["*"],"imports":1}},{"name":"./byteCounter","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":49},"end":{"line":2,"column":70,"index":119}}],"key":"xUg5IjQU0cu+B0aJJMunpd3JZec=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"AFTER_FIRST_UNLOCK\", {\n enumerable: true,\n get: function () {\n return AFTER_FIRST_UNLOCK;\n }\n });\n Object.defineProperty(exports, \"AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY\", {\n enumerable: true,\n get: function () {\n return AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY;\n }\n });\n Object.defineProperty(exports, \"ALWAYS\", {\n enumerable: true,\n get: function () {\n return ALWAYS;\n }\n });\n Object.defineProperty(exports, \"WHEN_PASSCODE_SET_THIS_DEVICE_ONLY\", {\n enumerable: true,\n get: function () {\n return WHEN_PASSCODE_SET_THIS_DEVICE_ONLY;\n }\n });\n Object.defineProperty(exports, \"ALWAYS_THIS_DEVICE_ONLY\", {\n enumerable: true,\n get: function () {\n return ALWAYS_THIS_DEVICE_ONLY;\n }\n });\n Object.defineProperty(exports, \"WHEN_UNLOCKED\", {\n enumerable: true,\n get: function () {\n return WHEN_UNLOCKED;\n }\n });\n Object.defineProperty(exports, \"WHEN_UNLOCKED_THIS_DEVICE_ONLY\", {\n enumerable: true,\n get: function () {\n return WHEN_UNLOCKED_THIS_DEVICE_ONLY;\n }\n });\n exports.isAvailableAsync = isAvailableAsync;\n exports.deleteItemAsync = deleteItemAsync;\n exports.getItemAsync = getItemAsync;\n exports.setItemAsync = setItemAsync;\n exports.setItem = setItem;\n exports.getItem = getItem;\n exports.canUseBiometricAuthentication = canUseBiometricAuthentication;\n var _babelRuntimeHelpersAsyncToGenerator = require(_dependencyMap[0], \"@babel/runtime/helpers/asyncToGenerator\");\n var _asyncToGenerator = _interopDefault(_babelRuntimeHelpersAsyncToGenerator);\n var _ExpoSecureStore = require(_dependencyMap[1], \"./ExpoSecureStore\");\n var ExpoSecureStore = _interopDefault(_ExpoSecureStore);\n var _byteCounter = require(_dependencyMap[2], \"./byteCounter\");\n // @needsAudit\n /**\n * The data in the keychain item cannot be accessed after a restart until the device has been\n * unlocked once by the user. This may be useful if you need to access the item when the phone\n * is locked.\n */\n var AFTER_FIRST_UNLOCK = ExpoSecureStore.default.AFTER_FIRST_UNLOCK;\n // @needsAudit\n /**\n * Similar to `AFTER_FIRST_UNLOCK`, except the entry is not migrated to a new device when restoring\n * from a backup.\n */\n var AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY = ExpoSecureStore.default.AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY;\n // @needsAudit\n /**\n * The data in the keychain item can always be accessed regardless of whether the device is locked.\n * This is the least secure option.\n *\n * @deprecated Use an accessibility level that provides some user protection, such as `AFTER_FIRST_UNLOCK`.\n */\n var ALWAYS = ExpoSecureStore.default.ALWAYS;\n // @needsAudit\n /**\n * Similar to `WHEN_UNLOCKED_THIS_DEVICE_ONLY`, except the user must have set a passcode in order to\n * store an entry. If the user removes their passcode, the entry will be deleted.\n */\n var WHEN_PASSCODE_SET_THIS_DEVICE_ONLY = ExpoSecureStore.default.WHEN_PASSCODE_SET_THIS_DEVICE_ONLY;\n // @needsAudit\n /**\n * Similar to `ALWAYS`, except the entry is not migrated to a new device when restoring from a backup.\n *\n * @deprecated Use an accessibility level that provides some user protection, such as `AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY`.\n */\n var ALWAYS_THIS_DEVICE_ONLY = ExpoSecureStore.default.ALWAYS_THIS_DEVICE_ONLY;\n // @needsAudit\n /**\n * The data in the keychain item can be accessed only while the device is unlocked by the user.\n */\n var WHEN_UNLOCKED = ExpoSecureStore.default.WHEN_UNLOCKED;\n // @needsAudit\n /**\n * Similar to `WHEN_UNLOCKED`, except the entry is not migrated to a new device when restoring from\n * a backup.\n */\n var WHEN_UNLOCKED_THIS_DEVICE_ONLY = ExpoSecureStore.default.WHEN_UNLOCKED_THIS_DEVICE_ONLY;\n // @needsAudit\n /**\n * Returns whether the SecureStore API is enabled on the current device. This does not check the app\n * permissions.\n *\n * @return Promise which fulfils with a `boolean`, indicating whether the SecureStore API is available\n * on the current device. Currently, this resolves `true` on Android and iOS only.\n */\n function isAvailableAsync() {\n return _isAvailableAsync.apply(this, arguments);\n } // @needsAudit\n /**\n * Delete the value associated with the provided key.\n *\n * @param key The key that was used to store the associated value.\n * @param options An [`SecureStoreOptions`](#securestoreoptions) object.\n *\n * @return A promise that rejects if the value can't be deleted.\n */\n function _isAvailableAsync() {\n _isAvailableAsync = (0, _asyncToGenerator.default)(function* () {\n return !!ExpoSecureStore.default.getValueWithKeyAsync;\n });\n return _isAvailableAsync.apply(this, arguments);\n }\n function deleteItemAsync(_x) {\n return _deleteItemAsync.apply(this, arguments);\n } // @needsAudit\n /**\n * Reads the stored value associated with the provided key.\n *\n * @param key The key that was used to store the associated value.\n * @param options An [`SecureStoreOptions`](#securestoreoptions) object.\n *\n * @return A promise that resolves to the previously stored value. It resolves with `null` if there is no entry\n * for the given key or if the key has been invalidated. It rejects if an error occurs while retrieving the value.\n *\n * > Keys are invalidated by the system when biometrics change, such as adding a new fingerprint or changing the face profile used for face recognition.\n * > After a key has been invalidated, it becomes impossible to read its value.\n * > This only applies to values stored with `requireAuthentication` set to `true`.\n */\n function _deleteItemAsync() {\n _deleteItemAsync = (0, _asyncToGenerator.default)(function* (key) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n ensureValidKey(key);\n yield ExpoSecureStore.default.deleteValueWithKeyAsync(key, options);\n });\n return _deleteItemAsync.apply(this, arguments);\n }\n function getItemAsync(_x2) {\n return _getItemAsync.apply(this, arguments);\n } // @needsAudit\n /**\n * Stores a key–value pair.\n *\n * @param key The key to associate with the stored value. Keys may contain alphanumeric characters, `.`, `-`, and `_`.\n * @param value The value to store. Size limit is 2048 bytes.\n * @param options An [`SecureStoreOptions`](#securestoreoptions) object.\n *\n * @return A promise that rejects if value cannot be stored on the device.\n */\n function _getItemAsync() {\n _getItemAsync = (0, _asyncToGenerator.default)(function* (key) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n ensureValidKey(key);\n return yield ExpoSecureStore.default.getValueWithKeyAsync(key, options);\n });\n return _getItemAsync.apply(this, arguments);\n }\n function setItemAsync(_x3, _x4) {\n return _setItemAsync.apply(this, arguments);\n }\n /**\n * Stores a key–value pair synchronously.\n * > **Note:** This function blocks the JavaScript thread, so the application may not be interactive when the `requireAuthentication` option is set to `true` until the user authenticates.\n *\n * @param key The key to associate with the stored value. Keys may contain alphanumeric characters, `.`, `-`, and `_`.\n * @param value The value to store. Size limit is 2048 bytes.\n * @param options An [`SecureStoreOptions`](#securestoreoptions) object.\n *\n */\n function _setItemAsync() {\n _setItemAsync = (0, _asyncToGenerator.default)(function* (key, value) {\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n ensureValidKey(key);\n if (!isValidValue(value)) {\n throw new Error(`Invalid value provided to SecureStore. Values must be strings; consider JSON-encoding your values if they are serializable.`);\n }\n yield ExpoSecureStore.default.setValueWithKeyAsync(value, key, options);\n });\n return _setItemAsync.apply(this, arguments);\n }\n function setItem(key, value) {\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n ensureValidKey(key);\n if (!isValidValue(value)) {\n throw new Error(`Invalid value provided to SecureStore. Values must be strings; consider JSON-encoding your values if they are serializable.`);\n }\n return ExpoSecureStore.default.setValueWithKeySync(value, key, options);\n }\n /**\n * Synchronously reads the stored value associated with the provided key.\n * > **Note:** This function blocks the JavaScript thread, so the application may not be interactive when reading a value with `requireAuthentication`\n * > option set to `true` until the user authenticates.\n * @param key The key that was used to store the associated value.\n * @param options An [`SecureStoreOptions`](#securestoreoptions) object.\n *\n * @return Previously stored value. It resolves with `null` if there is no entry\n * for the given key or if the key has been invalidated.\n */\n function getItem(key) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n ensureValidKey(key);\n return ExpoSecureStore.default.getValueWithKeySync(key, options);\n }\n /**\n * Checks if the value can be saved with `requireAuthentication` option enabled.\n * @return `true` if the device supports biometric authentication and the enrolled method is sufficiently secure. Otherwise, returns `false`. Always returns false on tvOS.\n * @platform android\n * @platform ios\n */\n function canUseBiometricAuthentication() {\n return ExpoSecureStore.default.canUseBiometricAuthentication();\n }\n function ensureValidKey(key) {\n if (!isValidKey(key)) {\n throw new Error(`Invalid key provided to SecureStore. Keys must not be empty and contain only alphanumeric characters, \".\", \"-\", and \"_\".`);\n }\n }\n function isValidKey(key) {\n return typeof key === 'string' && /^[\\w.-]+$/.test(key);\n }\n function isValidValue(value) {\n if (typeof value !== 'string') {\n return false;\n }\n if ((0, _byteCounter.byteCountOverLimit)(value, _byteCounter.VALUE_BYTES_LIMIT)) {\n console.warn(`Value being stored in SecureStore is larger than ${_byteCounter.VALUE_BYTES_LIMIT} bytes and it may not be stored successfully. In a future SDK version, this call may throw an error.`);\n }\n return true;\n }\n});","lineCount":252,"map":[[12,2,9,0,"Object"],[12,8,9,0],[12,9,9,0,"defineProperty"],[12,23,9,0],[12,24,9,0,"exports"],[12,31,9,0],[13,4,9,0,"enumerable"],[13,14,9,0],[14,4,9,0,"get"],[14,7,9,0],[14,18,9,0,"get"],[14,19,9,0],[15,6,9,0],[15,13,9,0,"AFTER_FIRST_UNLOCK"],[15,31,9,0],[16,4,9,0],[17,2,9,0],[18,2,15,0,"Object"],[18,8,15,0],[18,9,15,0,"defineProperty"],[18,23,15,0],[18,24,15,0,"exports"],[18,31,15,0],[19,4,15,0,"enumerable"],[19,14,15,0],[20,4,15,0,"get"],[20,7,15,0],[20,18,15,0,"get"],[20,19,15,0],[21,6,15,0],[21,13,15,0,"AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY"],[21,48,15,0],[22,4,15,0],[23,2,15,0],[24,2,23,0,"Object"],[24,8,23,0],[24,9,23,0,"defineProperty"],[24,23,23,0],[24,24,23,0,"exports"],[24,31,23,0],[25,4,23,0,"enumerable"],[25,14,23,0],[26,4,23,0,"get"],[26,7,23,0],[26,18,23,0,"get"],[26,19,23,0],[27,6,23,0],[27,13,23,0,"ALWAYS"],[27,19,23,0],[28,4,23,0],[29,2,23,0],[30,2,29,0,"Object"],[30,8,29,0],[30,9,29,0,"defineProperty"],[30,23,29,0],[30,24,29,0,"exports"],[30,31,29,0],[31,4,29,0,"enumerable"],[31,14,29,0],[32,4,29,0,"get"],[32,7,29,0],[32,18,29,0,"get"],[32,19,29,0],[33,6,29,0],[33,13,29,0,"WHEN_PASSCODE_SET_THIS_DEVICE_ONLY"],[33,47,29,0],[34,4,29,0],[35,2,29,0],[36,2,36,0,"Object"],[36,8,36,0],[36,9,36,0,"defineProperty"],[36,23,36,0],[36,24,36,0,"exports"],[36,31,36,0],[37,4,36,0,"enumerable"],[37,14,36,0],[38,4,36,0,"get"],[38,7,36,0],[38,18,36,0,"get"],[38,19,36,0],[39,6,36,0],[39,13,36,0,"ALWAYS_THIS_DEVICE_ONLY"],[39,36,36,0],[40,4,36,0],[41,2,36,0],[42,2,41,0,"Object"],[42,8,41,0],[42,9,41,0,"defineProperty"],[42,23,41,0],[42,24,41,0,"exports"],[42,31,41,0],[43,4,41,0,"enumerable"],[43,14,41,0],[44,4,41,0,"get"],[44,7,41,0],[44,18,41,0,"get"],[44,19,41,0],[45,6,41,0],[45,13,41,0,"WHEN_UNLOCKED"],[45,26,41,0],[46,4,41,0],[47,2,41,0],[48,2,47,0,"Object"],[48,8,47,0],[48,9,47,0,"defineProperty"],[48,23,47,0],[48,24,47,0,"exports"],[48,31,47,0],[49,4,47,0,"enumerable"],[49,14,47,0],[50,4,47,0,"get"],[50,7,47,0],[50,18,47,0,"get"],[50,19,47,0],[51,6,47,0],[51,13,47,0,"WHEN_UNLOCKED_THIS_DEVICE_ONLY"],[51,43,47,0],[52,4,47,0],[53,2,47,0],[54,2,56,0,"exports"],[54,9,56,0],[54,10,56,0,"isAvailableAsync"],[54,26,56,0],[54,29,56,0,"isAvailableAsync"],[54,45,56,0],[55,2,68,0,"exports"],[55,9,68,0],[55,10,68,0,"deleteItemAsync"],[55,25,68,0],[55,28,68,0,"deleteItemAsync"],[55,43,68,0],[56,2,86,0,"exports"],[56,9,86,0],[56,10,86,0,"getItemAsync"],[56,22,86,0],[56,25,86,0,"getItemAsync"],[56,37,86,0],[57,2,100,0,"exports"],[57,9,100,0],[57,10,100,0,"setItemAsync"],[57,22,100,0],[57,25,100,0,"setItemAsync"],[57,37,100,0],[58,2,116,0,"exports"],[58,9,116,0],[58,10,116,0,"setItem"],[58,17,116,0],[58,20,116,0,"setItem"],[58,27,116,0],[59,2,133,0,"exports"],[59,9,133,0],[59,10,133,0,"getItem"],[59,17,133,0],[59,20,133,0,"getItem"],[59,27,133,0],[60,2,143,0,"exports"],[60,9,143,0],[60,10,143,0,"canUseBiometricAuthentication"],[60,39,143,0],[60,42,143,0,"canUseBiometricAuthentication"],[60,71,143,0],[61,2,145,1],[61,6,145,1,"_babelRuntimeHelpersAsyncToGenerator"],[61,42,145,1],[61,45,145,1,"require"],[61,52,145,1],[61,53,145,1,"_dependencyMap"],[61,67,145,1],[62,2,145,1],[62,6,145,1,"_asyncToGenerator"],[62,23,145,1],[62,26,145,1,"_interopDefault"],[62,41,145,1],[62,42,145,1,"_babelRuntimeHelpersAsyncToGenerator"],[62,78,145,1],[63,2,1,0],[63,6,1,0,"_ExpoSecureStore"],[63,22,1,0],[63,25,1,0,"require"],[63,32,1,0],[63,33,1,0,"_dependencyMap"],[63,47,1,0],[64,2,1,0],[64,6,1,0,"ExpoSecureStore"],[64,21,1,0],[64,24,1,0,"_interopDefault"],[64,39,1,0],[64,40,1,0,"_ExpoSecureStore"],[64,56,1,0],[65,2,2,0],[65,6,2,0,"_byteCounter"],[65,18,2,0],[65,21,2,0,"require"],[65,28,2,0],[65,29,2,0,"_dependencyMap"],[65,43,2,0],[66,2,3,0],[67,2,4,0],[68,0,5,0],[69,0,6,0],[70,0,7,0],[71,0,8,0],[72,2,9,7],[72,6,9,13,"AFTER_FIRST_UNLOCK"],[72,24,9,31],[72,27,9,34,"ExpoSecureStore"],[72,42,9,49],[72,43,9,49,"default"],[72,50,9,49],[72,51,9,50,"AFTER_FIRST_UNLOCK"],[72,69,9,68],[73,2,10,0],[74,2,11,0],[75,0,12,0],[76,0,13,0],[77,0,14,0],[78,2,15,7],[78,6,15,13,"AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY"],[78,41,15,48],[78,44,15,51,"ExpoSecureStore"],[78,59,15,66],[78,60,15,66,"default"],[78,67,15,66],[78,68,15,67,"AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY"],[78,103,15,102],[79,2,16,0],[80,2,17,0],[81,0,18,0],[82,0,19,0],[83,0,20,0],[84,0,21,0],[85,0,22,0],[86,2,23,7],[86,6,23,13,"ALWAYS"],[86,12,23,19],[86,15,23,22,"ExpoSecureStore"],[86,30,23,37],[86,31,23,37,"default"],[86,38,23,37],[86,39,23,38,"ALWAYS"],[86,45,23,44],[87,2,24,0],[88,2,25,0],[89,0,26,0],[90,0,27,0],[91,0,28,0],[92,2,29,7],[92,6,29,13,"WHEN_PASSCODE_SET_THIS_DEVICE_ONLY"],[92,40,29,47],[92,43,29,50,"ExpoSecureStore"],[92,58,29,65],[92,59,29,65,"default"],[92,66,29,65],[92,67,29,66,"WHEN_PASSCODE_SET_THIS_DEVICE_ONLY"],[92,101,29,100],[93,2,30,0],[94,2,31,0],[95,0,32,0],[96,0,33,0],[97,0,34,0],[98,0,35,0],[99,2,36,7],[99,6,36,13,"ALWAYS_THIS_DEVICE_ONLY"],[99,29,36,36],[99,32,36,39,"ExpoSecureStore"],[99,47,36,54],[99,48,36,54,"default"],[99,55,36,54],[99,56,36,55,"ALWAYS_THIS_DEVICE_ONLY"],[99,79,36,78],[100,2,37,0],[101,2,38,0],[102,0,39,0],[103,0,40,0],[104,2,41,7],[104,6,41,13,"WHEN_UNLOCKED"],[104,19,41,26],[104,22,41,29,"ExpoSecureStore"],[104,37,41,44],[104,38,41,44,"default"],[104,45,41,44],[104,46,41,45,"WHEN_UNLOCKED"],[104,59,41,58],[105,2,42,0],[106,2,43,0],[107,0,44,0],[108,0,45,0],[109,0,46,0],[110,2,47,7],[110,6,47,13,"WHEN_UNLOCKED_THIS_DEVICE_ONLY"],[110,36,47,43],[110,39,47,46,"ExpoSecureStore"],[110,54,47,61],[110,55,47,61,"default"],[110,62,47,61],[110,63,47,62,"WHEN_UNLOCKED_THIS_DEVICE_ONLY"],[110,93,47,92],[111,2,48,0],[112,2,49,0],[113,0,50,0],[114,0,51,0],[115,0,52,0],[116,0,53,0],[117,0,54,0],[118,0,55,0],[119,2,49,0],[119,11,56,22,"isAvailableAsync"],[119,27,56,38,"isAvailableAsync"],[119,28,56,38],[120,4,56,38],[120,11,56,38,"_isAvailableAsync"],[120,28,56,38],[120,29,56,38,"apply"],[120,34,56,38],[120,41,56,38,"arguments"],[120,50,56,38],[121,2,56,38],[121,4,59,0],[122,2,60,0],[123,0,61,0],[124,0,62,0],[125,0,63,0],[126,0,64,0],[127,0,65,0],[128,0,66,0],[129,0,67,0],[130,2,60,0],[130,11,60,0,"_isAvailableAsync"],[130,29,60,0],[131,4,60,0,"_isAvailableAsync"],[131,21,60,0],[131,28,60,0,"_asyncToGenerator"],[131,45,60,0],[131,46,60,0,"default"],[131,53,60,0],[131,55,56,7],[131,68,56,41],[132,6,57,4],[132,13,57,11],[132,14,57,12],[132,15,57,13,"ExpoSecureStore"],[132,30,57,28],[132,31,57,28,"default"],[132,38,57,28],[132,39,57,29,"getValueWithKeyAsync"],[132,59,57,49],[133,4,58,0],[133,5,58,1],[134,4,58,1],[134,11,58,1,"_isAvailableAsync"],[134,28,58,1],[134,29,58,1,"apply"],[134,34,58,1],[134,41,58,1,"arguments"],[134,50,58,1],[135,2,58,1],[136,2,58,1],[136,11,68,22,"deleteItemAsync"],[136,26,68,37,"deleteItemAsync"],[136,27,68,37,"_x"],[136,29,68,37],[137,4,68,37],[137,11,68,37,"_deleteItemAsync"],[137,27,68,37],[137,28,68,37,"apply"],[137,33,68,37],[137,40,68,37,"arguments"],[137,49,68,37],[138,2,68,37],[138,4,72,0],[139,2,73,0],[140,0,74,0],[141,0,75,0],[142,0,76,0],[143,0,77,0],[144,0,78,0],[145,0,79,0],[146,0,80,0],[147,0,81,0],[148,0,82,0],[149,0,83,0],[150,0,84,0],[151,0,85,0],[152,2,73,0],[152,11,73,0,"_deleteItemAsync"],[152,28,73,0],[153,4,73,0,"_deleteItemAsync"],[153,20,73,0],[153,27,73,0,"_asyncToGenerator"],[153,44,73,0],[153,45,73,0,"default"],[153,52,73,0],[153,54,68,7],[153,65,68,38,"key"],[153,68,68,41],[153,70,68,57],[154,6,68,57],[154,10,68,43,"options"],[154,17,68,50],[154,20,68,50,"arguments"],[154,29,68,50],[154,30,68,50,"length"],[154,36,68,50],[154,44,68,50,"arguments"],[154,53,68,50],[154,61,68,50,"undefined"],[154,70,68,50],[154,73,68,50,"arguments"],[154,82,68,50],[154,88,68,53],[154,89,68,54],[154,90,68,55],[155,6,69,4,"ensureValidKey"],[155,20,69,18],[155,21,69,19,"key"],[155,24,69,22],[155,25,69,23],[156,6,70,4],[156,12,70,10,"ExpoSecureStore"],[156,27,70,25],[156,28,70,25,"default"],[156,35,70,25],[156,36,70,26,"deleteValueWithKeyAsync"],[156,59,70,49],[156,60,70,50,"key"],[156,63,70,53],[156,65,70,55,"options"],[156,72,70,62],[156,73,70,63],[157,4,71,0],[157,5,71,1],[158,4,71,1],[158,11,71,1,"_deleteItemAsync"],[158,27,71,1],[158,28,71,1,"apply"],[158,33,71,1],[158,40,71,1,"arguments"],[158,49,71,1],[159,2,71,1],[160,2,71,1],[160,11,86,22,"getItemAsync"],[160,23,86,34,"getItemAsync"],[160,24,86,34,"_x2"],[160,27,86,34],[161,4,86,34],[161,11,86,34,"_getItemAsync"],[161,24,86,34],[161,25,86,34,"apply"],[161,30,86,34],[161,37,86,34,"arguments"],[161,46,86,34],[162,2,86,34],[162,4,90,0],[163,2,91,0],[164,0,92,0],[165,0,93,0],[166,0,94,0],[167,0,95,0],[168,0,96,0],[169,0,97,0],[170,0,98,0],[171,0,99,0],[172,2,91,0],[172,11,91,0,"_getItemAsync"],[172,25,91,0],[173,4,91,0,"_getItemAsync"],[173,17,91,0],[173,24,91,0,"_asyncToGenerator"],[173,41,91,0],[173,42,91,0,"default"],[173,49,91,0],[173,51,86,7],[173,62,86,35,"key"],[173,65,86,38],[173,67,86,54],[174,6,86,54],[174,10,86,40,"options"],[174,17,86,47],[174,20,86,47,"arguments"],[174,29,86,47],[174,30,86,47,"length"],[174,36,86,47],[174,44,86,47,"arguments"],[174,53,86,47],[174,61,86,47,"undefined"],[174,70,86,47],[174,73,86,47,"arguments"],[174,82,86,47],[174,88,86,50],[174,89,86,51],[174,90,86,52],[175,6,87,4,"ensureValidKey"],[175,20,87,18],[175,21,87,19,"key"],[175,24,87,22],[175,25,87,23],[176,6,88,4],[176,19,88,17,"ExpoSecureStore"],[176,34,88,32],[176,35,88,32,"default"],[176,42,88,32],[176,43,88,33,"getValueWithKeyAsync"],[176,63,88,53],[176,64,88,54,"key"],[176,67,88,57],[176,69,88,59,"options"],[176,76,88,66],[176,77,88,67],[177,4,89,0],[177,5,89,1],[178,4,89,1],[178,11,89,1,"_getItemAsync"],[178,24,89,1],[178,25,89,1,"apply"],[178,30,89,1],[178,37,89,1,"arguments"],[178,46,89,1],[179,2,89,1],[180,2,89,1],[180,11,100,22,"setItemAsync"],[180,23,100,34,"setItemAsync"],[180,24,100,34,"_x3"],[180,27,100,34],[180,29,100,34,"_x4"],[180,32,100,34],[181,4,100,34],[181,11,100,34,"_setItemAsync"],[181,24,100,34],[181,25,100,34,"apply"],[181,30,100,34],[181,37,100,34,"arguments"],[181,46,100,34],[182,2,100,34],[183,2,107,0],[184,0,108,0],[185,0,109,0],[186,0,110,0],[187,0,111,0],[188,0,112,0],[189,0,113,0],[190,0,114,0],[191,0,115,0],[192,2,107,0],[192,11,107,0,"_setItemAsync"],[192,25,107,0],[193,4,107,0,"_setItemAsync"],[193,17,107,0],[193,24,107,0,"_asyncToGenerator"],[193,41,107,0],[193,42,107,0,"default"],[193,49,107,0],[193,51,100,7],[193,62,100,35,"key"],[193,65,100,38],[193,67,100,40,"value"],[193,72,100,45],[193,74,100,61],[194,6,100,61],[194,10,100,47,"options"],[194,17,100,54],[194,20,100,54,"arguments"],[194,29,100,54],[194,30,100,54,"length"],[194,36,100,54],[194,44,100,54,"arguments"],[194,53,100,54],[194,61,100,54,"undefined"],[194,70,100,54],[194,73,100,54,"arguments"],[194,82,100,54],[194,88,100,57],[194,89,100,58],[194,90,100,59],[195,6,101,4,"ensureValidKey"],[195,20,101,18],[195,21,101,19,"key"],[195,24,101,22],[195,25,101,23],[196,6,102,4],[196,10,102,8],[196,11,102,9,"isValidValue"],[196,23,102,21],[196,24,102,22,"value"],[196,29,102,27],[196,30,102,28],[196,32,102,30],[197,8,103,8],[197,14,103,14],[197,18,103,18,"Error"],[197,23,103,23],[197,24,103,24],[197,149,103,149],[197,150,103,150],[198,6,104,4],[199,6,105,4],[199,12,105,10,"ExpoSecureStore"],[199,27,105,25],[199,28,105,25,"default"],[199,35,105,25],[199,36,105,26,"setValueWithKeyAsync"],[199,56,105,46],[199,57,105,47,"value"],[199,62,105,52],[199,64,105,54,"key"],[199,67,105,57],[199,69,105,59,"options"],[199,76,105,66],[199,77,105,67],[200,4,106,0],[200,5,106,1],[201,4,106,1],[201,11,106,1,"_setItemAsync"],[201,24,106,1],[201,25,106,1,"apply"],[201,30,106,1],[201,37,106,1,"arguments"],[201,46,106,1],[202,2,106,1],[203,2,116,7],[203,11,116,16,"setItem"],[203,18,116,23,"setItem"],[203,19,116,24,"key"],[203,22,116,27],[203,24,116,29,"value"],[203,29,116,34],[203,31,116,50],[204,4,116,50],[204,8,116,36,"options"],[204,15,116,43],[204,18,116,43,"arguments"],[204,27,116,43],[204,28,116,43,"length"],[204,34,116,43],[204,42,116,43,"arguments"],[204,51,116,43],[204,59,116,43,"undefined"],[204,68,116,43],[204,71,116,43,"arguments"],[204,80,116,43],[204,86,116,46],[204,87,116,47],[204,88,116,48],[205,4,117,4,"ensureValidKey"],[205,18,117,18],[205,19,117,19,"key"],[205,22,117,22],[205,23,117,23],[206,4,118,4],[206,8,118,8],[206,9,118,9,"isValidValue"],[206,21,118,21],[206,22,118,22,"value"],[206,27,118,27],[206,28,118,28],[206,30,118,30],[207,6,119,8],[207,12,119,14],[207,16,119,18,"Error"],[207,21,119,23],[207,22,119,24],[207,147,119,149],[207,148,119,150],[208,4,120,4],[209,4,121,4],[209,11,121,11,"ExpoSecureStore"],[209,26,121,26],[209,27,121,26,"default"],[209,34,121,26],[209,35,121,27,"setValueWithKeySync"],[209,54,121,46],[209,55,121,47,"value"],[209,60,121,52],[209,62,121,54,"key"],[209,65,121,57],[209,67,121,59,"options"],[209,74,121,66],[209,75,121,67],[210,2,122,0],[211,2,123,0],[212,0,124,0],[213,0,125,0],[214,0,126,0],[215,0,127,0],[216,0,128,0],[217,0,129,0],[218,0,130,0],[219,0,131,0],[220,0,132,0],[221,2,133,7],[221,11,133,16,"getItem"],[221,18,133,23,"getItem"],[221,19,133,24,"key"],[221,22,133,27],[221,24,133,43],[222,4,133,43],[222,8,133,29,"options"],[222,15,133,36],[222,18,133,36,"arguments"],[222,27,133,36],[222,28,133,36,"length"],[222,34,133,36],[222,42,133,36,"arguments"],[222,51,133,36],[222,59,133,36,"undefined"],[222,68,133,36],[222,71,133,36,"arguments"],[222,80,133,36],[222,86,133,39],[222,87,133,40],[222,88,133,41],[223,4,134,4,"ensureValidKey"],[223,18,134,18],[223,19,134,19,"key"],[223,22,134,22],[223,23,134,23],[224,4,135,4],[224,11,135,11,"ExpoSecureStore"],[224,26,135,26],[224,27,135,26,"default"],[224,34,135,26],[224,35,135,27,"getValueWithKeySync"],[224,54,135,46],[224,55,135,47,"key"],[224,58,135,50],[224,60,135,52,"options"],[224,67,135,59],[224,68,135,60],[225,2,136,0],[226,2,137,0],[227,0,138,0],[228,0,139,0],[229,0,140,0],[230,0,141,0],[231,0,142,0],[232,2,143,7],[232,11,143,16,"canUseBiometricAuthentication"],[232,40,143,45,"canUseBiometricAuthentication"],[232,41,143,45],[232,43,143,48],[233,4,144,4],[233,11,144,11,"ExpoSecureStore"],[233,26,144,26],[233,27,144,26,"default"],[233,34,144,26],[233,35,144,27,"canUseBiometricAuthentication"],[233,64,144,56],[233,65,144,57],[233,66,144,58],[234,2,145,0],[235,2,146,0],[235,11,146,9,"ensureValidKey"],[235,25,146,23,"ensureValidKey"],[235,26,146,24,"key"],[235,29,146,27],[235,31,146,29],[236,4,147,4],[236,8,147,8],[236,9,147,9,"isValidKey"],[236,19,147,19],[236,20,147,20,"key"],[236,23,147,23],[236,24,147,24],[236,26,147,26],[237,6,148,8],[237,12,148,14],[237,16,148,18,"Error"],[237,21,148,23],[237,22,148,24],[237,144,148,146],[237,145,148,147],[238,4,149,4],[239,2,150,0],[240,2,151,0],[240,11,151,9,"isValidKey"],[240,21,151,19,"isValidKey"],[240,22,151,20,"key"],[240,25,151,23],[240,27,151,25],[241,4,152,4],[241,11,152,11],[241,18,152,18,"key"],[241,21,152,21],[241,26,152,26],[241,34,152,34],[241,38,152,38],[241,49,152,49],[241,50,152,50,"test"],[241,54,152,54],[241,55,152,55,"key"],[241,58,152,58],[241,59,152,59],[242,2,153,0],[243,2,154,0],[243,11,154,9,"isValidValue"],[243,23,154,21,"isValidValue"],[243,24,154,22,"value"],[243,29,154,27],[243,31,154,29],[244,4,155,4],[244,8,155,8],[244,15,155,15,"value"],[244,20,155,20],[244,25,155,25],[244,33,155,33],[244,35,155,35],[245,6,156,8],[245,13,156,15],[245,18,156,20],[246,4,157,4],[247,4,158,4],[247,8,158,8],[247,12,158,8,"byteCountOverLimit"],[247,24,158,26],[247,25,158,26,"byteCountOverLimit"],[247,43,158,26],[247,45,158,27,"value"],[247,50,158,32],[247,52,158,34,"VALUE_BYTES_LIMIT"],[247,64,158,51],[247,65,158,51,"VALUE_BYTES_LIMIT"],[247,82,158,51],[247,83,158,52],[247,85,158,54],[248,6,159,8,"console"],[248,13,159,15],[248,14,159,16,"warn"],[248,18,159,20],[248,19,159,21],[248,71,159,73,"VALUE_BYTES_LIMIT"],[248,83,159,90],[248,84,159,90,"VALUE_BYTES_LIMIT"],[248,101,159,90],[248,203,159,192],[248,204,159,193],[249,4,160,4],[250,4,161,4],[250,11,161,11],[250,15,161,15],[251,2,162,0],[252,0,162,1],[252,3]],"functionMap":{"names":["<global>","isAvailableAsync","deleteItemAsync","getItemAsync","setItemAsync","setItem","getItem","canUseBiometricAuthentication","ensureValidKey","isValidKey","isValidValue"],"mappings":"AAA;OCuD;CDE;OEU;CFG;OGe;CHG;OIW;CJM;OKU;CLM;OMW;CNG;OOO;CPE;AQC;CRI;ASC;CTE;AUC;CVQ"},"hasCjsExports":false},"type":"js/module"}]} |