posthog-react-native 2.3.0-alpha1 → 2.4.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/CHANGELOG.md +16 -0
- package/README.md +0 -132
- package/lib/posthog-core/src/index.d.ts +5 -0
- package/lib/posthog-core/src/index.js +1 -1
- package/lib/posthog-core/src/index.js.map +1 -1
- package/lib/posthog-core/src/types.d.ts +5 -0
- package/lib/posthog-core/src/types.js.map +1 -1
- package/lib/posthog-react-native/src/PostHogProvider.js +1 -1
- package/lib/posthog-react-native/src/PostHogProvider.js.map +1 -1
- package/lib/posthog-react-native/src/version.d.ts +1 -1
- package/lib/posthog-react-native/src/version.js +1 -1
- package/lib/posthog-react-native/src/version.js.map +1 -1
- package/lib/posthog-react-native/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# 2.4.0 - 2023-01-27
|
|
2
|
+
|
|
3
|
+
- Adds support for https://github.com/wix/react-native-navigation
|
|
4
|
+
- Allows passing of promise based `PostHog.initAsync` to `<PostHogProvider client={...} />`
|
|
5
|
+
- Captures text content in autocapture (configurable via autocapture option `propsToCapture`)
|
|
6
|
+
|
|
7
|
+
# 2.3.0 - 2022-1-26
|
|
8
|
+
|
|
9
|
+
1. uses v3 decide endpoint
|
|
10
|
+
2. JSON payloads will be returned with feature flags
|
|
11
|
+
3. Feature flags will gracefully fail and optimistically save evaluated flags if server is down
|
|
12
|
+
|
|
13
|
+
# 2.2.3 - 2023-01-25
|
|
14
|
+
|
|
15
|
+
- Ensures the distinctId used in `.groupIdentify` is the same as the currently identified user
|
|
16
|
+
|
|
1
17
|
# 2.2.2 - 2023-01-05
|
|
2
18
|
|
|
3
19
|
- Fixes an issue with PostHogProvider where autocapture={false} would still capture lifecycle and navigation events.
|
package/README.md
CHANGED
|
@@ -8,138 +8,6 @@ Specifically, the [React Native integration](https://www.posthog.com/docs/integr
|
|
|
8
8
|
|
|
9
9
|
### [Join our Slack community.](https://join.slack.com/t/posthogusers/shared_invite/enQtOTY0MzU5NjAwMDY3LTc2MWQ0OTZlNjhkODk3ZDI3NDVjMDE1YjgxY2I4ZjI4MzJhZmVmNjJkN2NmMGJmMzc2N2U3Yjc3ZjI5NGFlZDQ)
|
|
10
10
|
|
|
11
|
-
## Installation
|
|
12
|
-
|
|
13
|
-
### Expo Apps
|
|
14
|
-
|
|
15
|
-
```sh
|
|
16
|
-
expo install posthog-react-native expo-file-system expo-application expo-device expo-localization
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
### React Native Apps
|
|
20
|
-
|
|
21
|
-
```sh
|
|
22
|
-
yarn add posthog-react-native @react-native-async-storage/async-storage react-native-device-info
|
|
23
|
-
# or
|
|
24
|
-
npm i -s posthog-react-native @react-native-async-storage/async-storage react-native-device-info
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
## Usage
|
|
28
|
-
|
|
29
|
-
### With the PosthogProvider
|
|
30
|
-
|
|
31
|
-
The best way to use PostHog is via the `PosthogProvider` which enables featues like `Autocapture` as well as providing posthog through your app via `context`.
|
|
32
|
-
|
|
33
|
-
```jsx
|
|
34
|
-
// App.(js|ts)
|
|
35
|
-
import { usePostHog, PostHogProvider } from 'posthog-react-native'
|
|
36
|
-
...
|
|
37
|
-
|
|
38
|
-
export function MyApp() {
|
|
39
|
-
return (
|
|
40
|
-
<PostHogProvider apiKey="<ph_project_api_key>" options={{
|
|
41
|
-
// (Optional) PostHog API host (https://app.posthog.com by default)
|
|
42
|
-
host: '<ph_instance_address>',
|
|
43
|
-
}}>
|
|
44
|
-
<MyComponent />
|
|
45
|
-
</PostHogProvider>
|
|
46
|
-
)
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// Now you can simply access posthog elsewhere in the app like so
|
|
50
|
-
|
|
51
|
-
const MyComponent = () => {
|
|
52
|
-
const posthog = usePostHog()
|
|
53
|
-
|
|
54
|
-
useEffect(() => {
|
|
55
|
-
posthog.capture("MyComponent loaded", { foo: "bar" })
|
|
56
|
-
}, [])
|
|
57
|
-
}
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
### Without the PosthogProvider
|
|
61
|
-
|
|
62
|
-
Due to the Async nature of React Native, PostHog needs to be initialised asynchronously in order for the persisted state to be loaded properly. The `PosthogProvider` takes care of this under-the-hood but you can alternatively create the instance yourself like so:
|
|
63
|
-
|
|
64
|
-
```tsx
|
|
65
|
-
// posthog.ts
|
|
66
|
-
import PostHog from 'posthog-react-native'
|
|
67
|
-
|
|
68
|
-
export let posthog: PostHog | undefined = undefined
|
|
69
|
-
|
|
70
|
-
export const posthogPromise: Promise<PostHog> = PostHog.initAsync('<ph_project_api_key>', {
|
|
71
|
-
// PostHog API host (https://app.posthog.com by default)
|
|
72
|
-
host: '<ph_instance_address>',
|
|
73
|
-
})
|
|
74
|
-
|
|
75
|
-
posthogPromise.then((client) => {
|
|
76
|
-
posthog = client
|
|
77
|
-
})
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
// app.ts
|
|
81
|
-
import { posthog, posthogPromise} from './posthog'
|
|
82
|
-
|
|
83
|
-
export function MyApp1() {
|
|
84
|
-
useEffect(() => {
|
|
85
|
-
// Use posthog optionally with the possibility that it may still be loading
|
|
86
|
-
posthog?.capture('MyApp1 loaded')
|
|
87
|
-
// OR use posthog via the promise
|
|
88
|
-
posthogPromise.then(ph => ph.capture('MyApp1 loaded')
|
|
89
|
-
}, [])
|
|
90
|
-
|
|
91
|
-
return <View>{...}</View>
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
// You can even use this instance with the PostHogProvider
|
|
96
|
-
export function MyApp2() {
|
|
97
|
-
return <PostHogProvider client={posthog}>{/* Your app code */}</PostHogProvider>
|
|
98
|
-
}
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
### Implementing a custom solution for native dependencies
|
|
102
|
-
|
|
103
|
-
If you do not want to use either the `expo` libraries or the `async-storage / react-native-device-info` dependencies listed in the installation you can instead pass in the required information from whatever library you choose.
|
|
104
|
-
|
|
105
|
-
```sh
|
|
106
|
-
# You don't need to install any other dependencies
|
|
107
|
-
yarn add posthog-react-native
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
```tsx
|
|
111
|
-
const customAppProperties = {
|
|
112
|
-
/** Build number like "1.2.2" or "122" */
|
|
113
|
-
$app_build?: string | null,
|
|
114
|
-
/** Name of the app as displayed below the icon like "PostHog" */
|
|
115
|
-
$app_name?: string | null,
|
|
116
|
-
/** Namespace of the app usually like "com.posthog.app" */
|
|
117
|
-
$app_namespace?: string | null,
|
|
118
|
-
/** Human friendly app version like what a user would see in the app store like "1.2.2" */
|
|
119
|
-
$app_version?: string | null,
|
|
120
|
-
/** Manufacturer like "Apple", "Samsung" or "Android" */
|
|
121
|
-
$device_manufacturer?: string | null,
|
|
122
|
-
/** Readable model name like "iPhone 12" */
|
|
123
|
-
$device_name?: string | null,
|
|
124
|
-
/** Operating system name like iOS or Android */
|
|
125
|
-
$os_name?: string | null,
|
|
126
|
-
/** Operating system version "14.0" */
|
|
127
|
-
$os_version?: string | null,
|
|
128
|
-
/** Locale (language) of the device like "en-US" */
|
|
129
|
-
$locale?: string | null,
|
|
130
|
-
/** Timezone of the device like "Europe/Berlin" */
|
|
131
|
-
$timezone?: string | null
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
const posthog = new PostHog({
|
|
135
|
-
customAppProperties,
|
|
136
|
-
customAsyncStorage: {
|
|
137
|
-
getItem: (key: string): Promise<string | null> => { /* IMPLEMENT */},
|
|
138
|
-
setItem (key: string, value: string): Promise<void> => { /* IMPLEMENT */}
|
|
139
|
-
}
|
|
140
|
-
})
|
|
141
|
-
```
|
|
142
|
-
|
|
143
11
|
# Development
|
|
144
12
|
|
|
145
13
|
## Building and deploying
|
|
@@ -83,7 +83,12 @@ export declare abstract class PostHogCore {
|
|
|
83
83
|
getFeatureFlag(key: string): boolean | string | undefined;
|
|
84
84
|
getFeatureFlagPayload(key: string): JsonType | undefined;
|
|
85
85
|
getFeatureFlagPayloads(): PostHogDecideResponse['featureFlagPayloads'] | undefined;
|
|
86
|
+
_parsePayload(response: any): any;
|
|
86
87
|
getFeatureFlags(): PostHogDecideResponse['featureFlags'] | undefined;
|
|
88
|
+
getFeatureFlagsAndPayloads(): {
|
|
89
|
+
flags: PostHogDecideResponse['featureFlags'] | undefined;
|
|
90
|
+
payloads: PostHogDecideResponse['featureFlagPayloads'] | undefined;
|
|
91
|
+
};
|
|
87
92
|
isFeatureEnabled(key: string): boolean | undefined;
|
|
88
93
|
reloadFeatureFlagsAsync(sendAnonDistinctId?: boolean): Promise<PostHogDecideResponse['featureFlags']>;
|
|
89
94
|
onFeatureFlags(cb: (flags: PostHogDecideResponse['featureFlags']) => void): () => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");var _typeof=require("@babel/runtime/helpers/typeof");Object.defineProperty(exports,"__esModule",{value:true});var _exportNames={PostHogCore:true,utils:true,LZString:true};Object.defineProperty(exports,"LZString",{enumerable:true,get:function get(){return _lzString.LZString;}});exports.utils=exports.PostHogCore=void 0;var _regenerator=_interopRequireDefault(require("@babel/runtime/regenerator"));var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _toConsumableArray2=_interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));var _defineProperty2=_interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _classCallCheck2=_interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));var _createClass2=_interopRequireDefault(require("@babel/runtime/helpers/createClass"));var _types=require("./types");Object.keys(_types).forEach(function(key){if(key==="default"||key==="__esModule")return;if(Object.prototype.hasOwnProperty.call(_exportNames,key))return;if(key in exports&&exports[key]===_types[key])return;Object.defineProperty(exports,key,{enumerable:true,get:function get(){return _types[key];}});});var _utils=_interopRequireWildcard(require("./utils"));exports.utils=_utils;var _lzString=require("./lz-string");var _eventemitter=require("./eventemitter");function _getRequireWildcardCache(nodeInterop){if(typeof WeakMap!=="function")return null;var cacheBabelInterop=new WeakMap();var cacheNodeInterop=new WeakMap();return(_getRequireWildcardCache=function _getRequireWildcardCache(nodeInterop){return nodeInterop?cacheNodeInterop:cacheBabelInterop;})(nodeInterop);}function _interopRequireWildcard(obj,nodeInterop){if(!nodeInterop&&obj&&obj.__esModule){return obj;}if(obj===null||_typeof(obj)!=="object"&&typeof obj!=="function"){return{"default":obj};}var cache=_getRequireWildcardCache(nodeInterop);if(cache&&cache.has(obj)){return cache.get(obj);}var newObj={};var hasPropertyDescriptor=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var key in obj){if(key!=="default"&&Object.prototype.hasOwnProperty.call(obj,key)){var desc=hasPropertyDescriptor?Object.getOwnPropertyDescriptor(obj,key):null;if(desc&&(desc.get||desc.set)){Object.defineProperty(newObj,key,desc);}else{newObj[key]=obj[key];}}}newObj["default"]=obj;if(cache){cache.set(obj,newObj);}return newObj;}function ownKeys(object,enumerableOnly){var keys=Object.keys(object);if(Object.getOwnPropertySymbols){var symbols=Object.getOwnPropertySymbols(object);enumerableOnly&&(symbols=symbols.filter(function(sym){return Object.getOwnPropertyDescriptor(object,sym).enumerable;})),keys.push.apply(keys,symbols);}return keys;}function _objectSpread(target){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?ownKeys(Object(source),!0).forEach(function(key){(0,_defineProperty2["default"])(target,key,source[key]);}):Object.getOwnPropertyDescriptors?Object.defineProperties(target,Object.getOwnPropertyDescriptors(source)):ownKeys(Object(source)).forEach(function(key){Object.defineProperty(target,key,Object.getOwnPropertyDescriptor(source,key));});}return target;}var PostHogCore=function(){function PostHogCore(apiKey,options){var _this=this;(0,_classCallCheck2["default"])(this,PostHogCore);var _a,_b,_c,_d,_e,_f;this.flagCallReported={};this._events=new _eventemitter.SimpleEventEmitter();(0,_utils.assert)(apiKey,"You must pass your PostHog project's api key.");this.apiKey=apiKey;this.host=(0,_utils.removeTrailingSlash)((options===null||options===void 0?void 0:options.host)||'https://app.posthog.com');this.flushAt=(options===null||options===void 0?void 0:options.flushAt)?Math.max(options===null||options===void 0?void 0:options.flushAt,1):20;this.flushInterval=(_a=options===null||options===void 0?void 0:options.flushInterval)!==null&&_a!==void 0?_a:10000;this.captureMode=(options===null||options===void 0?void 0:options.captureMode)||'form';this.sendFeatureFlagEvent=(_b=options===null||options===void 0?void 0:options.sendFeatureFlagEvent)!==null&&_b!==void 0?_b:true;this._optoutOverride=(options===null||options===void 0?void 0:options.enable)===false;this._retryOptions={retryCount:(_c=options===null||options===void 0?void 0:options.fetchRetryCount)!==null&&_c!==void 0?_c:3,retryDelay:(_d=options===null||options===void 0?void 0:options.fetchRetryDelay)!==null&&_d!==void 0?_d:3000};this.requestTimeout=(_e=options===null||options===void 0?void 0:options.requestTimeout)!==null&&_e!==void 0?_e:10000;this._sessionExpirationTimeSeconds=(_f=options===null||options===void 0?void 0:options.sessionExpirationTimeSeconds)!==null&&_f!==void 0?_f:1800;if((options===null||options===void 0?void 0:options.preloadFeatureFlags)!==false){(0,_utils.safeSetTimeout)(function(){void _this.reloadFeatureFlagsAsync();},1);}}(0,_createClass2["default"])(PostHogCore,[{key:"getCommonEventProperties",value:function getCommonEventProperties(){var featureFlags=this.getFeatureFlags();var featureVariantProperties={};if(featureFlags){for(var _i=0,_Object$entries=Object.entries(featureFlags);_i<_Object$entries.length;_i++){var _Object$entries$_i=(0,_slicedToArray2["default"])(_Object$entries[_i],2),feature=_Object$entries$_i[0],variant=_Object$entries$_i[1];featureVariantProperties["$feature/".concat(feature)]=variant;}}return _objectSpread({$lib:this.getLibraryId(),$lib_version:this.getLibraryVersion(),$active_feature_flags:featureFlags?Object.keys(featureFlags):undefined},featureVariantProperties);}},{key:"setupBootstrap",value:function setupBootstrap(options){var _a,_b,_c,_d;if((_a=options===null||options===void 0?void 0:options.bootstrap)===null||_a===void 0?void 0:_a.distinctId){if((_b=options===null||options===void 0?void 0:options.bootstrap)===null||_b===void 0?void 0:_b.isIdentifiedId){this.setPersistedProperty(_types.PostHogPersistedProperty.DistinctId,options.bootstrap.distinctId);}else{this.setPersistedProperty(_types.PostHogPersistedProperty.AnonymousId,options.bootstrap.distinctId);}}if((_c=options===null||options===void 0?void 0:options.bootstrap)===null||_c===void 0?void 0:_c.featureFlags){var activeFlags=Object.keys(((_d=options.bootstrap)===null||_d===void 0?void 0:_d.featureFlags)||{}).filter(function(flag){var _a,_b;return!!((_b=(_a=options.bootstrap)===null||_a===void 0?void 0:_a.featureFlags)===null||_b===void 0?void 0:_b[flag]);}).reduce(function(res,key){var _a,_b;return res[key]=((_b=(_a=options.bootstrap)===null||_a===void 0?void 0:_a.featureFlags)===null||_b===void 0?void 0:_b[key])||false,res;},{});this.setKnownFeatureFlags(activeFlags);}}},{key:"props",get:function get(){if(!this._props){this._props=this.getPersistedProperty(_types.PostHogPersistedProperty.Props);}return this._props||{};},set:function set(val){this._props=val;}},{key:"clearProps",value:function clearProps(){this.props=undefined;}},{key:"optedOut",get:function get(){var _a,_b;return(_b=(_a=this.getPersistedProperty(_types.PostHogPersistedProperty.OptedOut))!==null&&_a!==void 0?_a:this._optoutOverride)!==null&&_b!==void 0?_b:false;}},{key:"optIn",value:function optIn(){this.setPersistedProperty(_types.PostHogPersistedProperty.OptedOut,false);}},{key:"optOut",value:function optOut(){this.setPersistedProperty(_types.PostHogPersistedProperty.OptedOut,true);}},{key:"on",value:function on(event,cb){return this._events.on(event,cb);}},{key:"reset",value:function reset(propertiesToKeep){var allPropertiesToKeep=[_types.PostHogPersistedProperty.Queue].concat((0,_toConsumableArray2["default"])(propertiesToKeep||[]));this.clearProps();for(var _i2=0,_Object$keys=Object.keys(_types.PostHogPersistedProperty);_i2<_Object$keys.length;_i2++){var key=_Object$keys[_i2];if(!allPropertiesToKeep.includes(_types.PostHogPersistedProperty[key])){this.setPersistedProperty(_types.PostHogPersistedProperty[key],null);}}}},{key:"debug",value:function debug(){var enabled=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;var _a;(_a=this.removeDebugCallback)===null||_a===void 0?void 0:_a.call(this);if(enabled){this.removeDebugCallback=this.on('*',function(event,payload){return console.log('PostHog Debug',event,payload);});}}},{key:"buildPayload",value:function buildPayload(payload){return{distinct_id:payload.distinct_id||this.getDistinctId(),event:payload.event,properties:_objectSpread(_objectSpread(_objectSpread(_objectSpread({},this.props),payload.properties||{}),this.getCommonEventProperties()),{},{$session_id:this.getSessionId()})};}},{key:"getSessionId",value:function getSessionId(){var sessionId=this.getPersistedProperty(_types.PostHogPersistedProperty.SessionId);var sessionTimestamp=this.getPersistedProperty(_types.PostHogPersistedProperty.SessionLastTimestamp)||0;if(!sessionId||Date.now()-sessionTimestamp>this._sessionExpirationTimeSeconds*1000){sessionId=(0,_utils.generateUUID)(globalThis);this.setPersistedProperty(_types.PostHogPersistedProperty.SessionId,sessionId);}this.setPersistedProperty(_types.PostHogPersistedProperty.SessionLastTimestamp,Date.now());return sessionId;}},{key:"resetSessionId",value:function resetSessionId(){this.setPersistedProperty(_types.PostHogPersistedProperty.SessionId,null);}},{key:"getAnonymousId",value:function getAnonymousId(){var anonId=this.getPersistedProperty(_types.PostHogPersistedProperty.AnonymousId);if(!anonId){anonId=(0,_utils.generateUUID)(globalThis);this.setPersistedProperty(_types.PostHogPersistedProperty.AnonymousId,anonId);}return anonId;}},{key:"getDistinctId",value:function getDistinctId(){return this.getPersistedProperty(_types.PostHogPersistedProperty.DistinctId)||this.getAnonymousId();}},{key:"register",value:function register(properties){this.props=_objectSpread(_objectSpread({},this.props),properties);this.setPersistedProperty(_types.PostHogPersistedProperty.Props,this.props);}},{key:"unregister",value:function unregister(property){delete this.props[property];this.setPersistedProperty(_types.PostHogPersistedProperty.Props,this.props);}},{key:"identify",value:function identify(distinctId,properties){var previousDistinctId=this.getDistinctId();distinctId=distinctId||previousDistinctId;if(properties===null||properties===void 0?void 0:properties.$groups){this.groups(properties.$groups);}var payload=_objectSpread(_objectSpread({},this.buildPayload({distinct_id:distinctId,event:'$identify',properties:_objectSpread(_objectSpread({},properties||{}),{},{$anon_distinct_id:this.getAnonymousId()})})),{},{$set:properties});if(distinctId!==previousDistinctId){this.setPersistedProperty(_types.PostHogPersistedProperty.AnonymousId,previousDistinctId);this.setPersistedProperty(_types.PostHogPersistedProperty.DistinctId,distinctId);if(this.getFeatureFlags()){void this.reloadFeatureFlagsAsync();}}this.enqueue('identify',payload);return this;}},{key:"capture",value:function capture(event,properties){var forceSendFeatureFlags=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;if(properties===null||properties===void 0?void 0:properties.$groups){this.groups(properties.$groups);}if(forceSendFeatureFlags){this._sendFeatureFlags(event,properties);}else{var payload=this.buildPayload({event:event,properties:properties});this.enqueue('capture',payload);}return this;}},{key:"alias",value:function alias(_alias){var distinctId=this.getDistinctId();var payload=this.buildPayload({event:'$create_alias',properties:{distinct_id:distinctId,alias:_alias}});this.enqueue('alias',payload);return this;}},{key:"autocapture",value:function autocapture(eventType,elements){var properties=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{};var payload=this.buildPayload({event:'$autocapture',properties:_objectSpread(_objectSpread({},properties),{},{$event_type:eventType,$elements:elements})});this.enqueue('autocapture',payload);return this;}},{key:"groups",value:function groups(_groups){var existingGroups=this.props.$groups||{};this.register({$groups:_objectSpread(_objectSpread({},existingGroups),_groups)});if(Object.keys(_groups).find(function(type){return existingGroups[type]!==_groups[type];})&&this.getFeatureFlags()){void this.reloadFeatureFlagsAsync();}return this;}},{key:"group",value:function group(groupType,groupKey,groupProperties){this.groups((0,_defineProperty2["default"])({},groupType,groupKey));if(groupProperties){this.groupIdentify(groupType,groupKey,groupProperties);}return this;}},{key:"groupIdentify",value:function groupIdentify(groupType,groupKey,groupProperties){var payload={event:'$groupidentify',distinctId:"$".concat(groupType,"_").concat(groupKey),properties:_objectSpread({$group_type:groupType,$group_key:groupKey,$group_set:groupProperties||{}},this.getCommonEventProperties())};this.enqueue('capture',payload);return this;}},{key:"personProperties",value:function personProperties(properties){var existingProperties=this.getPersistedProperty(_types.PostHogPersistedProperty.PersonProperties)||{};this.setPersistedProperty(_types.PostHogPersistedProperty.PersonProperties,_objectSpread(_objectSpread({},existingProperties),properties));return this;}},{key:"groupProperties",value:function groupProperties(properties){var existingProperties=this.getPersistedProperty(_types.PostHogPersistedProperty.GroupProperties)||{};if(Object.keys(existingProperties).length!==0){Object.keys(existingProperties).forEach(function(groupType){existingProperties[groupType]=_objectSpread(_objectSpread({},existingProperties[groupType]),properties[groupType]);delete properties[groupType];});}this.setPersistedProperty(_types.PostHogPersistedProperty.GroupProperties,_objectSpread(_objectSpread({},existingProperties),properties));return this;}},{key:"decideAsync",value:function decideAsync(){var sendAnonDistinctId=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;if(this._decideResponsePromise){return this._decideResponsePromise;}return this._decideAsync(sendAnonDistinctId);}},{key:"_decideAsync",value:function(){var _decideAsync2=(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee(){var _this2=this;var sendAnonDistinctId,url,distinctId,groups,personProperties,groupProperties,fetchOptions,_args=arguments;return _regenerator["default"].wrap(function _callee$(_context){while(1){switch(_context.prev=_context.next){case 0:sendAnonDistinctId=_args.length>0&&_args[0]!==undefined?_args[0]:true;url="".concat(this.host,"/decide/?v=3");distinctId=this.getDistinctId();groups=this.props.$groups||{};personProperties=this.getPersistedProperty(_types.PostHogPersistedProperty.PersonProperties)||{};groupProperties=this.getPersistedProperty(_types.PostHogPersistedProperty.GroupProperties)||{};fetchOptions={method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({token:this.apiKey,distinct_id:distinctId,$anon_distinct_id:sendAnonDistinctId?this.getAnonymousId():undefined,groups:groups,person_properties:personProperties,group_properties:groupProperties})};this._decideResponsePromise=this.fetchWithRetry(url,fetchOptions).then(function(r){return r.json();}).then(function(res){if(res.featureFlags){var newFeatureFlags=res.featureFlags;var newFeatureFlagPayloads=res.featureFlagPayloads;if(res.errorsWhileComputingFlags){var currentFlags=_this2.getPersistedProperty(_types.PostHogPersistedProperty.FeatureFlags);var currentFlagPayloads=_this2.getPersistedProperty(_types.PostHogPersistedProperty.FeatureFlagPayloads);newFeatureFlags=_objectSpread(_objectSpread({},currentFlags),res.featureFlags);newFeatureFlagPayloads=_objectSpread(_objectSpread({},currentFlagPayloads),res.featureFlagPayloads);}_this2.setKnownFeatureFlags(newFeatureFlags);_this2.setKnownFeatureFlagPayloads(newFeatureFlagPayloads);}return res;})["finally"](function(){_this2._decideResponsePromise=undefined;});return _context.abrupt("return",this._decideResponsePromise);case 9:case"end":return _context.stop();}}},_callee,this);}));function _decideAsync(){return _decideAsync2.apply(this,arguments);}return _decideAsync;}()},{key:"setKnownFeatureFlags",value:function setKnownFeatureFlags(featureFlags){this.setPersistedProperty(_types.PostHogPersistedProperty.FeatureFlags,featureFlags);this._events.emit('featureflags',featureFlags);}},{key:"setKnownFeatureFlagPayloads",value:function setKnownFeatureFlagPayloads(featureFlagPayloads){this.setPersistedProperty(_types.PostHogPersistedProperty.FeatureFlagPayloads,featureFlagPayloads);}},{key:"getFeatureFlag",value:function getFeatureFlag(key){var featureFlags=this.getFeatureFlags();if(!featureFlags){return undefined;}var response=featureFlags[key];if(response===undefined){response=false;}if(this.sendFeatureFlagEvent&&!this.flagCallReported[key]){this.flagCallReported[key]=true;this.capture('$feature_flag_called',{$feature_flag:key,$feature_flag_response:response});}return response;}},{key:"getFeatureFlagPayload",value:function getFeatureFlagPayload(key){var payloads=this.getFeatureFlagPayloads();if(!payloads){return undefined;}var response=payloads[key];if(response===undefined){return null;}return response;}},{key:"getFeatureFlagPayloads",value:function getFeatureFlagPayloads(){var payloads=this.getPersistedProperty(_types.PostHogPersistedProperty.FeatureFlagPayloads);return payloads;}},{key:"getFeatureFlags",value:function getFeatureFlags(){var flags=this.getPersistedProperty(_types.PostHogPersistedProperty.FeatureFlags);var overriddenFlags=this.getPersistedProperty(_types.PostHogPersistedProperty.OverrideFeatureFlags);if(!overriddenFlags){return flags;}flags=flags||{};for(var key in overriddenFlags){if(!overriddenFlags[key]){delete flags[key];}else{flags[key]=overriddenFlags[key];}}return flags;}},{key:"isFeatureEnabled",value:function isFeatureEnabled(key){var response=this.getFeatureFlag(key);if(response===undefined){return undefined;}return!!response;}},{key:"reloadFeatureFlagsAsync",value:function(){var _reloadFeatureFlagsAsync=(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee2(){var sendAnonDistinctId,_args2=arguments;return _regenerator["default"].wrap(function _callee2$(_context2){while(1){switch(_context2.prev=_context2.next){case 0:sendAnonDistinctId=_args2.length>0&&_args2[0]!==undefined?_args2[0]:true;_context2.next=3;return this.decideAsync(sendAnonDistinctId);case 3:return _context2.abrupt("return",_context2.sent.featureFlags);case 4:case"end":return _context2.stop();}}},_callee2,this);}));function reloadFeatureFlagsAsync(){return _reloadFeatureFlagsAsync.apply(this,arguments);}return reloadFeatureFlagsAsync;}()},{key:"onFeatureFlags",value:function onFeatureFlags(cb){var _this3=this;return this.on('featureflags',(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee3(){var flags;return _regenerator["default"].wrap(function _callee3$(_context3){while(1){switch(_context3.prev=_context3.next){case 0:flags=_this3.getFeatureFlags();if(flags){cb(flags);}case 2:case"end":return _context3.stop();}}},_callee3);})));}},{key:"onFeatureFlag",value:function onFeatureFlag(key,cb){var _this4=this;return this.on('featureflags',(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee4(){var flagResponse;return _regenerator["default"].wrap(function _callee4$(_context4){while(1){switch(_context4.prev=_context4.next){case 0:flagResponse=_this4.getFeatureFlag(key);if(flagResponse!==undefined){cb(flagResponse);}case 2:case"end":return _context4.stop();}}},_callee4);})));}},{key:"overrideFeatureFlag",value:function overrideFeatureFlag(flags){if(flags===null){return this.setPersistedProperty(_types.PostHogPersistedProperty.OverrideFeatureFlags,null);}return this.setPersistedProperty(_types.PostHogPersistedProperty.OverrideFeatureFlags,flags);}},{key:"_sendFeatureFlags",value:function _sendFeatureFlags(event,properties){var _this5=this;this.reloadFeatureFlagsAsync(false)["finally"](function(){var payload=_this5.buildPayload({event:event,properties:properties});_this5.enqueue('capture',payload);});}},{key:"enqueue",value:function enqueue(type,_message){var _this6=this;if(this.optedOut){return;}var message=_objectSpread(_objectSpread({},_message),{},{type:type,library:this.getLibraryId(),library_version:this.getLibraryVersion(),timestamp:_message.timestamp?_message.timestamp:(0,_utils.currentISOTime)()});if(message.distinctId){message.distinct_id=message.distinctId;delete message.distinctId;}var queue=this.getPersistedProperty(_types.PostHogPersistedProperty.Queue)||[];queue.push({message:message});this.setPersistedProperty(_types.PostHogPersistedProperty.Queue,queue);this._events.emit(type,message);if(queue.length>=this.flushAt){this.flush();}if(this.flushInterval&&!this._flushTimer){this._flushTimer=(0,_utils.safeSetTimeout)(function(){return _this6.flush();},this.flushInterval);}}},{key:"flushAsync",value:function flushAsync(){var _this7=this;return new Promise(function(resolve,reject){_this7.flush(function(err,data){return err?reject(err):resolve(data);});});}},{key:"flush",value:function flush(callback){var _this8=this;if(this.optedOut){return callback===null||callback===void 0?void 0:callback();}if(this._flushTimer){clearTimeout(this._flushTimer);this._flushTimer=null;}var queue=this.getPersistedProperty(_types.PostHogPersistedProperty.Queue)||[];if(!queue.length){return callback===null||callback===void 0?void 0:callback();}var items=queue.splice(0,this.flushAt);this.setPersistedProperty(_types.PostHogPersistedProperty.Queue,queue);var messages=items.map(function(item){return item.message;});var data={api_key:this.apiKey,batch:messages,sent_at:(0,_utils.currentISOTime)()};var done=function done(err){callback===null||callback===void 0?void 0:callback(err,messages);_this8._events.emit('flush',messages);};var customUserAgent=this.getCustomUserAgent();var headers={};if(customUserAgent){headers['user-agent']=customUserAgent;}var payload=JSON.stringify(data);var url=this.captureMode==='form'?"".concat(this.host,"/e/?ip=1&_=").concat((0,_utils.currentTimestamp)(),"&v=").concat(this.getLibraryVersion()):"".concat(this.host,"/batch/");var fetchOptions=this.captureMode==='form'?{method:'POST',mode:'no-cors',credentials:'omit',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:"data=".concat(encodeURIComponent(_lzString.LZString.compressToBase64(payload)),"&compression=lz64")}:{method:'POST',headers:{'Content-Type':'application/json'},body:payload};this.fetchWithRetry(url,fetchOptions).then(function(){return done();})["catch"](function(err){if(err.response){var error=new Error(err.response.statusText);return done(error);}done(err);});}},{key:"fetchWithRetry",value:function(){var _fetchWithRetry=(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee5(url,options,retryOptions){var _this9=this;var _a,_b;return _regenerator["default"].wrap(function _callee5$(_context5){while(1){switch(_context5.prev=_context5.next){case 0:;(_a=(_b=AbortSignal).timeout)!==null&&_a!==void 0?_a:_b.timeout=function timeout(ms){var ctrl=new AbortController();setTimeout(function(){return ctrl.abort();},ms);return ctrl.signal;};return _context5.abrupt("return",(0,_utils.retriable)(function(){return _this9.fetch(url,_objectSpread({signal:AbortSignal.timeout(_this9.requestTimeout)},options));},retryOptions||this._retryOptions));case 3:case"end":return _context5.stop();}}},_callee5,this);}));function fetchWithRetry(_x,_x2,_x3){return _fetchWithRetry.apply(this,arguments);}return fetchWithRetry;}()},{key:"shutdownAsync",value:function(){var _shutdownAsync=(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee6(){return _regenerator["default"].wrap(function _callee6$(_context6){while(1){switch(_context6.prev=_context6.next){case 0:clearTimeout(this._flushTimer);_context6.next=3;return this.flushAsync();case 3:case"end":return _context6.stop();}}},_callee6,this);}));function shutdownAsync(){return _shutdownAsync.apply(this,arguments);}return shutdownAsync;}()},{key:"shutdown",value:function shutdown(){void this.shutdownAsync();}}]);return PostHogCore;}();exports.PostHogCore=PostHogCore;
|
|
1
|
+
"use strict";var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");var _typeof=require("@babel/runtime/helpers/typeof");Object.defineProperty(exports,"__esModule",{value:true});var _exportNames={PostHogCore:true,utils:true,LZString:true};Object.defineProperty(exports,"LZString",{enumerable:true,get:function get(){return _lzString.LZString;}});exports.utils=exports.PostHogCore=void 0;var _regenerator=_interopRequireDefault(require("@babel/runtime/regenerator"));var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _toConsumableArray2=_interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));var _defineProperty2=_interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _classCallCheck2=_interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));var _createClass2=_interopRequireDefault(require("@babel/runtime/helpers/createClass"));var _types=require("./types");Object.keys(_types).forEach(function(key){if(key==="default"||key==="__esModule")return;if(Object.prototype.hasOwnProperty.call(_exportNames,key))return;if(key in exports&&exports[key]===_types[key])return;Object.defineProperty(exports,key,{enumerable:true,get:function get(){return _types[key];}});});var _utils=_interopRequireWildcard(require("./utils"));exports.utils=_utils;var _lzString=require("./lz-string");var _eventemitter=require("./eventemitter");function _getRequireWildcardCache(nodeInterop){if(typeof WeakMap!=="function")return null;var cacheBabelInterop=new WeakMap();var cacheNodeInterop=new WeakMap();return(_getRequireWildcardCache=function _getRequireWildcardCache(nodeInterop){return nodeInterop?cacheNodeInterop:cacheBabelInterop;})(nodeInterop);}function _interopRequireWildcard(obj,nodeInterop){if(!nodeInterop&&obj&&obj.__esModule){return obj;}if(obj===null||_typeof(obj)!=="object"&&typeof obj!=="function"){return{"default":obj};}var cache=_getRequireWildcardCache(nodeInterop);if(cache&&cache.has(obj)){return cache.get(obj);}var newObj={};var hasPropertyDescriptor=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var key in obj){if(key!=="default"&&Object.prototype.hasOwnProperty.call(obj,key)){var desc=hasPropertyDescriptor?Object.getOwnPropertyDescriptor(obj,key):null;if(desc&&(desc.get||desc.set)){Object.defineProperty(newObj,key,desc);}else{newObj[key]=obj[key];}}}newObj["default"]=obj;if(cache){cache.set(obj,newObj);}return newObj;}function ownKeys(object,enumerableOnly){var keys=Object.keys(object);if(Object.getOwnPropertySymbols){var symbols=Object.getOwnPropertySymbols(object);enumerableOnly&&(symbols=symbols.filter(function(sym){return Object.getOwnPropertyDescriptor(object,sym).enumerable;})),keys.push.apply(keys,symbols);}return keys;}function _objectSpread(target){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?ownKeys(Object(source),!0).forEach(function(key){(0,_defineProperty2["default"])(target,key,source[key]);}):Object.getOwnPropertyDescriptors?Object.defineProperties(target,Object.getOwnPropertyDescriptors(source)):ownKeys(Object(source)).forEach(function(key){Object.defineProperty(target,key,Object.getOwnPropertyDescriptor(source,key));});}return target;}var PostHogCore=function(){function PostHogCore(apiKey,options){var _this=this;(0,_classCallCheck2["default"])(this,PostHogCore);var _a,_b,_c,_d,_e,_f;this.flagCallReported={};this._events=new _eventemitter.SimpleEventEmitter();(0,_utils.assert)(apiKey,"You must pass your PostHog project's api key.");this.apiKey=apiKey;this.host=(0,_utils.removeTrailingSlash)((options===null||options===void 0?void 0:options.host)||'https://app.posthog.com');this.flushAt=(options===null||options===void 0?void 0:options.flushAt)?Math.max(options===null||options===void 0?void 0:options.flushAt,1):20;this.flushInterval=(_a=options===null||options===void 0?void 0:options.flushInterval)!==null&&_a!==void 0?_a:10000;this.captureMode=(options===null||options===void 0?void 0:options.captureMode)||'form';this.sendFeatureFlagEvent=(_b=options===null||options===void 0?void 0:options.sendFeatureFlagEvent)!==null&&_b!==void 0?_b:true;this._optoutOverride=(options===null||options===void 0?void 0:options.enable)===false;this._retryOptions={retryCount:(_c=options===null||options===void 0?void 0:options.fetchRetryCount)!==null&&_c!==void 0?_c:3,retryDelay:(_d=options===null||options===void 0?void 0:options.fetchRetryDelay)!==null&&_d!==void 0?_d:3000};this.requestTimeout=(_e=options===null||options===void 0?void 0:options.requestTimeout)!==null&&_e!==void 0?_e:10000;this._sessionExpirationTimeSeconds=(_f=options===null||options===void 0?void 0:options.sessionExpirationTimeSeconds)!==null&&_f!==void 0?_f:1800;if((options===null||options===void 0?void 0:options.preloadFeatureFlags)!==false){(0,_utils.safeSetTimeout)(function(){void _this.reloadFeatureFlagsAsync();},1);}}(0,_createClass2["default"])(PostHogCore,[{key:"getCommonEventProperties",value:function getCommonEventProperties(){var featureFlags=this.getFeatureFlags();var featureVariantProperties={};if(featureFlags){for(var _i=0,_Object$entries=Object.entries(featureFlags);_i<_Object$entries.length;_i++){var _Object$entries$_i=(0,_slicedToArray2["default"])(_Object$entries[_i],2),feature=_Object$entries$_i[0],variant=_Object$entries$_i[1];featureVariantProperties["$feature/".concat(feature)]=variant;}}return _objectSpread({$lib:this.getLibraryId(),$lib_version:this.getLibraryVersion(),$active_feature_flags:featureFlags?Object.keys(featureFlags):undefined},featureVariantProperties);}},{key:"setupBootstrap",value:function setupBootstrap(options){var _a,_b,_c,_d;if((_a=options===null||options===void 0?void 0:options.bootstrap)===null||_a===void 0?void 0:_a.distinctId){if((_b=options===null||options===void 0?void 0:options.bootstrap)===null||_b===void 0?void 0:_b.isIdentifiedId){this.setPersistedProperty(_types.PostHogPersistedProperty.DistinctId,options.bootstrap.distinctId);}else{this.setPersistedProperty(_types.PostHogPersistedProperty.AnonymousId,options.bootstrap.distinctId);}}if((_c=options===null||options===void 0?void 0:options.bootstrap)===null||_c===void 0?void 0:_c.featureFlags){var activeFlags=Object.keys(((_d=options.bootstrap)===null||_d===void 0?void 0:_d.featureFlags)||{}).filter(function(flag){var _a,_b;return!!((_b=(_a=options.bootstrap)===null||_a===void 0?void 0:_a.featureFlags)===null||_b===void 0?void 0:_b[flag]);}).reduce(function(res,key){var _a,_b;return res[key]=((_b=(_a=options.bootstrap)===null||_a===void 0?void 0:_a.featureFlags)===null||_b===void 0?void 0:_b[key])||false,res;},{});this.setKnownFeatureFlags(activeFlags);(options===null||options===void 0?void 0:options.bootstrap.featureFlagPayloads)&&this.setKnownFeatureFlagPayloads(options===null||options===void 0?void 0:options.bootstrap.featureFlagPayloads);}}},{key:"props",get:function get(){if(!this._props){this._props=this.getPersistedProperty(_types.PostHogPersistedProperty.Props);}return this._props||{};},set:function set(val){this._props=val;}},{key:"clearProps",value:function clearProps(){this.props=undefined;}},{key:"optedOut",get:function get(){var _a,_b;return(_b=(_a=this.getPersistedProperty(_types.PostHogPersistedProperty.OptedOut))!==null&&_a!==void 0?_a:this._optoutOverride)!==null&&_b!==void 0?_b:false;}},{key:"optIn",value:function optIn(){this.setPersistedProperty(_types.PostHogPersistedProperty.OptedOut,false);}},{key:"optOut",value:function optOut(){this.setPersistedProperty(_types.PostHogPersistedProperty.OptedOut,true);}},{key:"on",value:function on(event,cb){return this._events.on(event,cb);}},{key:"reset",value:function reset(propertiesToKeep){var allPropertiesToKeep=[_types.PostHogPersistedProperty.Queue].concat((0,_toConsumableArray2["default"])(propertiesToKeep||[]));this.clearProps();for(var _i2=0,_Object$keys=Object.keys(_types.PostHogPersistedProperty);_i2<_Object$keys.length;_i2++){var key=_Object$keys[_i2];if(!allPropertiesToKeep.includes(_types.PostHogPersistedProperty[key])){this.setPersistedProperty(_types.PostHogPersistedProperty[key],null);}}}},{key:"debug",value:function debug(){var enabled=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;var _a;(_a=this.removeDebugCallback)===null||_a===void 0?void 0:_a.call(this);if(enabled){this.removeDebugCallback=this.on('*',function(event,payload){return console.log('PostHog Debug',event,payload);});}}},{key:"buildPayload",value:function buildPayload(payload){return{distinct_id:payload.distinct_id||this.getDistinctId(),event:payload.event,properties:_objectSpread(_objectSpread(_objectSpread(_objectSpread({},this.props),payload.properties||{}),this.getCommonEventProperties()),{},{$session_id:this.getSessionId()})};}},{key:"getSessionId",value:function getSessionId(){var sessionId=this.getPersistedProperty(_types.PostHogPersistedProperty.SessionId);var sessionTimestamp=this.getPersistedProperty(_types.PostHogPersistedProperty.SessionLastTimestamp)||0;if(!sessionId||Date.now()-sessionTimestamp>this._sessionExpirationTimeSeconds*1000){sessionId=(0,_utils.generateUUID)(globalThis);this.setPersistedProperty(_types.PostHogPersistedProperty.SessionId,sessionId);}this.setPersistedProperty(_types.PostHogPersistedProperty.SessionLastTimestamp,Date.now());return sessionId;}},{key:"resetSessionId",value:function resetSessionId(){this.setPersistedProperty(_types.PostHogPersistedProperty.SessionId,null);}},{key:"getAnonymousId",value:function getAnonymousId(){var anonId=this.getPersistedProperty(_types.PostHogPersistedProperty.AnonymousId);if(!anonId){anonId=(0,_utils.generateUUID)(globalThis);this.setPersistedProperty(_types.PostHogPersistedProperty.AnonymousId,anonId);}return anonId;}},{key:"getDistinctId",value:function getDistinctId(){return this.getPersistedProperty(_types.PostHogPersistedProperty.DistinctId)||this.getAnonymousId();}},{key:"register",value:function register(properties){this.props=_objectSpread(_objectSpread({},this.props),properties);this.setPersistedProperty(_types.PostHogPersistedProperty.Props,this.props);}},{key:"unregister",value:function unregister(property){delete this.props[property];this.setPersistedProperty(_types.PostHogPersistedProperty.Props,this.props);}},{key:"identify",value:function identify(distinctId,properties){var previousDistinctId=this.getDistinctId();distinctId=distinctId||previousDistinctId;if(properties===null||properties===void 0?void 0:properties.$groups){this.groups(properties.$groups);}var payload=_objectSpread(_objectSpread({},this.buildPayload({distinct_id:distinctId,event:'$identify',properties:_objectSpread(_objectSpread({},properties||{}),{},{$anon_distinct_id:this.getAnonymousId()})})),{},{$set:properties});if(distinctId!==previousDistinctId){this.setPersistedProperty(_types.PostHogPersistedProperty.AnonymousId,previousDistinctId);this.setPersistedProperty(_types.PostHogPersistedProperty.DistinctId,distinctId);if(this.getFeatureFlags()){void this.reloadFeatureFlagsAsync();}}this.enqueue('identify',payload);return this;}},{key:"capture",value:function capture(event,properties){var forceSendFeatureFlags=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;if(properties===null||properties===void 0?void 0:properties.$groups){this.groups(properties.$groups);}if(forceSendFeatureFlags){this._sendFeatureFlags(event,properties);}else{var payload=this.buildPayload({event:event,properties:properties});this.enqueue('capture',payload);}return this;}},{key:"alias",value:function alias(_alias){var distinctId=this.getDistinctId();var payload=this.buildPayload({event:'$create_alias',properties:{distinct_id:distinctId,alias:_alias}});this.enqueue('alias',payload);return this;}},{key:"autocapture",value:function autocapture(eventType,elements){var properties=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{};var payload=this.buildPayload({event:'$autocapture',properties:_objectSpread(_objectSpread({},properties),{},{$event_type:eventType,$elements:elements})});this.enqueue('autocapture',payload);return this;}},{key:"groups",value:function groups(_groups){var existingGroups=this.props.$groups||{};this.register({$groups:_objectSpread(_objectSpread({},existingGroups),_groups)});if(Object.keys(_groups).find(function(type){return existingGroups[type]!==_groups[type];})&&this.getFeatureFlags()){void this.reloadFeatureFlagsAsync();}return this;}},{key:"group",value:function group(groupType,groupKey,groupProperties){this.groups((0,_defineProperty2["default"])({},groupType,groupKey));if(groupProperties){this.groupIdentify(groupType,groupKey,groupProperties);}return this;}},{key:"groupIdentify",value:function groupIdentify(groupType,groupKey,groupProperties){var payload=this.buildPayload({event:'$groupidentify',properties:_objectSpread({$group_type:groupType,$group_key:groupKey,$group_set:groupProperties||{}},this.getCommonEventProperties())});this.enqueue('capture',payload);return this;}},{key:"personProperties",value:function personProperties(properties){var existingProperties=this.getPersistedProperty(_types.PostHogPersistedProperty.PersonProperties)||{};this.setPersistedProperty(_types.PostHogPersistedProperty.PersonProperties,_objectSpread(_objectSpread({},existingProperties),properties));return this;}},{key:"groupProperties",value:function groupProperties(properties){var existingProperties=this.getPersistedProperty(_types.PostHogPersistedProperty.GroupProperties)||{};if(Object.keys(existingProperties).length!==0){Object.keys(existingProperties).forEach(function(groupType){existingProperties[groupType]=_objectSpread(_objectSpread({},existingProperties[groupType]),properties[groupType]);delete properties[groupType];});}this.setPersistedProperty(_types.PostHogPersistedProperty.GroupProperties,_objectSpread(_objectSpread({},existingProperties),properties));return this;}},{key:"decideAsync",value:function decideAsync(){var sendAnonDistinctId=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;if(this._decideResponsePromise){return this._decideResponsePromise;}return this._decideAsync(sendAnonDistinctId);}},{key:"_decideAsync",value:function(){var _decideAsync2=(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee(){var _this2=this;var sendAnonDistinctId,url,distinctId,groups,personProperties,groupProperties,fetchOptions,_args=arguments;return _regenerator["default"].wrap(function _callee$(_context){while(1){switch(_context.prev=_context.next){case 0:sendAnonDistinctId=_args.length>0&&_args[0]!==undefined?_args[0]:true;url="".concat(this.host,"/decide/?v=3");distinctId=this.getDistinctId();groups=this.props.$groups||{};personProperties=this.getPersistedProperty(_types.PostHogPersistedProperty.PersonProperties)||{};groupProperties=this.getPersistedProperty(_types.PostHogPersistedProperty.GroupProperties)||{};fetchOptions={method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({token:this.apiKey,distinct_id:distinctId,$anon_distinct_id:sendAnonDistinctId?this.getAnonymousId():undefined,groups:groups,person_properties:personProperties,group_properties:groupProperties})};this._decideResponsePromise=this.fetchWithRetry(url,fetchOptions).then(function(r){return r.json();}).then(function(res){if(res.featureFlags){var newFeatureFlags=res.featureFlags;var newFeatureFlagPayloads=res.featureFlagPayloads;if(res.errorsWhileComputingFlags){var currentFlags=_this2.getPersistedProperty(_types.PostHogPersistedProperty.FeatureFlags);var currentFlagPayloads=_this2.getPersistedProperty(_types.PostHogPersistedProperty.FeatureFlagPayloads);newFeatureFlags=_objectSpread(_objectSpread({},currentFlags),res.featureFlags);newFeatureFlagPayloads=_objectSpread(_objectSpread({},currentFlagPayloads),res.featureFlagPayloads);}_this2.setKnownFeatureFlags(newFeatureFlags);_this2.setKnownFeatureFlagPayloads(newFeatureFlagPayloads);}return res;})["finally"](function(){_this2._decideResponsePromise=undefined;});return _context.abrupt("return",this._decideResponsePromise);case 9:case"end":return _context.stop();}}},_callee,this);}));function _decideAsync(){return _decideAsync2.apply(this,arguments);}return _decideAsync;}()},{key:"setKnownFeatureFlags",value:function setKnownFeatureFlags(featureFlags){this.setPersistedProperty(_types.PostHogPersistedProperty.FeatureFlags,featureFlags);this._events.emit('featureflags',featureFlags);}},{key:"setKnownFeatureFlagPayloads",value:function setKnownFeatureFlagPayloads(featureFlagPayloads){this.setPersistedProperty(_types.PostHogPersistedProperty.FeatureFlagPayloads,featureFlagPayloads);}},{key:"getFeatureFlag",value:function getFeatureFlag(key){var featureFlags=this.getFeatureFlags();if(!featureFlags){return undefined;}var response=featureFlags[key];if(response===undefined){response=false;}if(this.sendFeatureFlagEvent&&!this.flagCallReported[key]){this.flagCallReported[key]=true;this.capture('$feature_flag_called',{$feature_flag:key,$feature_flag_response:response});}return response;}},{key:"getFeatureFlagPayload",value:function getFeatureFlagPayload(key){var payloads=this.getFeatureFlagPayloads();if(!payloads){return undefined;}var response=payloads[key];if(response===undefined){return null;}return this._parsePayload(response);}},{key:"getFeatureFlagPayloads",value:function getFeatureFlagPayloads(){var _this3=this;var payloads=this.getPersistedProperty(_types.PostHogPersistedProperty.FeatureFlagPayloads);if(payloads){return Object.fromEntries(Object.entries(payloads).map(function(_ref){var _ref2=(0,_slicedToArray2["default"])(_ref,2),k=_ref2[0],v=_ref2[1];return[k,_this3._parsePayload(v)];}));}return payloads;}},{key:"_parsePayload",value:function _parsePayload(response){try{return JSON.parse(response);}catch(_a){return response;}}},{key:"getFeatureFlags",value:function getFeatureFlags(){var flags=this.getPersistedProperty(_types.PostHogPersistedProperty.FeatureFlags);var overriddenFlags=this.getPersistedProperty(_types.PostHogPersistedProperty.OverrideFeatureFlags);if(!overriddenFlags){return flags;}flags=flags||{};for(var key in overriddenFlags){if(!overriddenFlags[key]){delete flags[key];}else{flags[key]=overriddenFlags[key];}}return flags;}},{key:"getFeatureFlagsAndPayloads",value:function getFeatureFlagsAndPayloads(){var flags=this.getFeatureFlags();var payloads=this.getFeatureFlagPayloads();return{flags:flags,payloads:payloads};}},{key:"isFeatureEnabled",value:function isFeatureEnabled(key){var response=this.getFeatureFlag(key);if(response===undefined){return undefined;}return!!response;}},{key:"reloadFeatureFlagsAsync",value:function(){var _reloadFeatureFlagsAsync=(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee2(){var sendAnonDistinctId,_args2=arguments;return _regenerator["default"].wrap(function _callee2$(_context2){while(1){switch(_context2.prev=_context2.next){case 0:sendAnonDistinctId=_args2.length>0&&_args2[0]!==undefined?_args2[0]:true;_context2.next=3;return this.decideAsync(sendAnonDistinctId);case 3:return _context2.abrupt("return",_context2.sent.featureFlags);case 4:case"end":return _context2.stop();}}},_callee2,this);}));function reloadFeatureFlagsAsync(){return _reloadFeatureFlagsAsync.apply(this,arguments);}return reloadFeatureFlagsAsync;}()},{key:"onFeatureFlags",value:function onFeatureFlags(cb){var _this4=this;return this.on('featureflags',(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee3(){var flags;return _regenerator["default"].wrap(function _callee3$(_context3){while(1){switch(_context3.prev=_context3.next){case 0:flags=_this4.getFeatureFlags();if(flags){cb(flags);}case 2:case"end":return _context3.stop();}}},_callee3);})));}},{key:"onFeatureFlag",value:function onFeatureFlag(key,cb){var _this5=this;return this.on('featureflags',(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee4(){var flagResponse;return _regenerator["default"].wrap(function _callee4$(_context4){while(1){switch(_context4.prev=_context4.next){case 0:flagResponse=_this5.getFeatureFlag(key);if(flagResponse!==undefined){cb(flagResponse);}case 2:case"end":return _context4.stop();}}},_callee4);})));}},{key:"overrideFeatureFlag",value:function overrideFeatureFlag(flags){if(flags===null){return this.setPersistedProperty(_types.PostHogPersistedProperty.OverrideFeatureFlags,null);}return this.setPersistedProperty(_types.PostHogPersistedProperty.OverrideFeatureFlags,flags);}},{key:"_sendFeatureFlags",value:function _sendFeatureFlags(event,properties){var _this6=this;this.reloadFeatureFlagsAsync(false)["finally"](function(){var payload=_this6.buildPayload({event:event,properties:properties});_this6.enqueue('capture',payload);});}},{key:"enqueue",value:function enqueue(type,_message){var _this7=this;if(this.optedOut){return;}var message=_objectSpread(_objectSpread({},_message),{},{type:type,library:this.getLibraryId(),library_version:this.getLibraryVersion(),timestamp:_message.timestamp?_message.timestamp:(0,_utils.currentISOTime)()});if(message.distinctId){message.distinct_id=message.distinctId;delete message.distinctId;}var queue=this.getPersistedProperty(_types.PostHogPersistedProperty.Queue)||[];queue.push({message:message});this.setPersistedProperty(_types.PostHogPersistedProperty.Queue,queue);this._events.emit(type,message);if(queue.length>=this.flushAt){this.flush();}if(this.flushInterval&&!this._flushTimer){this._flushTimer=(0,_utils.safeSetTimeout)(function(){return _this7.flush();},this.flushInterval);}}},{key:"flushAsync",value:function flushAsync(){var _this8=this;return new Promise(function(resolve,reject){_this8.flush(function(err,data){return err?reject(err):resolve(data);});});}},{key:"flush",value:function flush(callback){var _this9=this;if(this.optedOut){return callback===null||callback===void 0?void 0:callback();}if(this._flushTimer){clearTimeout(this._flushTimer);this._flushTimer=null;}var queue=this.getPersistedProperty(_types.PostHogPersistedProperty.Queue)||[];if(!queue.length){return callback===null||callback===void 0?void 0:callback();}var items=queue.splice(0,this.flushAt);this.setPersistedProperty(_types.PostHogPersistedProperty.Queue,queue);var messages=items.map(function(item){return item.message;});var data={api_key:this.apiKey,batch:messages,sent_at:(0,_utils.currentISOTime)()};var done=function done(err){callback===null||callback===void 0?void 0:callback(err,messages);_this9._events.emit('flush',messages);};var customUserAgent=this.getCustomUserAgent();var headers={};if(customUserAgent){headers['user-agent']=customUserAgent;}var payload=JSON.stringify(data);var url=this.captureMode==='form'?"".concat(this.host,"/e/?ip=1&_=").concat((0,_utils.currentTimestamp)(),"&v=").concat(this.getLibraryVersion()):"".concat(this.host,"/batch/");var fetchOptions=this.captureMode==='form'?{method:'POST',mode:'no-cors',credentials:'omit',headers:{'Content-Type':'application/x-www-form-urlencoded'},body:"data=".concat(encodeURIComponent(_lzString.LZString.compressToBase64(payload)),"&compression=lz64")}:{method:'POST',headers:{'Content-Type':'application/json'},body:payload};this.fetchWithRetry(url,fetchOptions).then(function(){return done();})["catch"](function(err){if(err.response){var error=new Error(err.response.statusText);return done(error);}done(err);});}},{key:"fetchWithRetry",value:function(){var _fetchWithRetry=(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee5(url,options,retryOptions){var _this10=this;var _a,_b;return _regenerator["default"].wrap(function _callee5$(_context5){while(1){switch(_context5.prev=_context5.next){case 0:;(_a=(_b=AbortSignal).timeout)!==null&&_a!==void 0?_a:_b.timeout=function timeout(ms){var ctrl=new AbortController();setTimeout(function(){return ctrl.abort();},ms);return ctrl.signal;};return _context5.abrupt("return",(0,_utils.retriable)(function(){return _this10.fetch(url,_objectSpread({signal:AbortSignal.timeout(_this10.requestTimeout)},options));},retryOptions||this._retryOptions));case 3:case"end":return _context5.stop();}}},_callee5,this);}));function fetchWithRetry(_x,_x2,_x3){return _fetchWithRetry.apply(this,arguments);}return fetchWithRetry;}()},{key:"shutdownAsync",value:function(){var _shutdownAsync=(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee6(){return _regenerator["default"].wrap(function _callee6$(_context6){while(1){switch(_context6.prev=_context6.next){case 0:clearTimeout(this._flushTimer);_context6.next=3;return this.flushAsync();case 3:case"end":return _context6.stop();}}},_callee6,this);}));function shutdownAsync(){return _shutdownAsync.apply(this,arguments);}return shutdownAsync;}()},{key:"shutdown",value:function shutdown(){void this.shutdownAsync();}}]);return PostHogCore;}();exports.PostHogCore=PostHogCore;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../posthog-core/src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../posthog-core/src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -9,6 +9,7 @@ export declare type PosthogCoreOptions = {
|
|
|
9
9
|
distinctId?: string;
|
|
10
10
|
isIdentifiedId?: boolean;
|
|
11
11
|
featureFlags?: Record<string, boolean | string>;
|
|
12
|
+
featureFlagPayloads?: Record<string, JsonType>;
|
|
12
13
|
};
|
|
13
14
|
fetchRetryCount?: number;
|
|
14
15
|
fetchRetryDelay?: number;
|
|
@@ -81,6 +82,10 @@ export declare type PostHogDecideResponse = {
|
|
|
81
82
|
errorsWhileComputingFlags: boolean;
|
|
82
83
|
sessionRecording: boolean;
|
|
83
84
|
};
|
|
85
|
+
export declare type PosthogFlagsAndPayloadsResponse = {
|
|
86
|
+
featureFlags: PostHogDecideResponse['featureFlags'];
|
|
87
|
+
featureFlagPayloads: PostHogDecideResponse['featureFlagPayloads'];
|
|
88
|
+
};
|
|
84
89
|
export declare type JsonType = string | number | boolean | null | {
|
|
85
90
|
[key: string]: JsonType;
|
|
86
91
|
} | Array<JsonType>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../posthog-core/src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../posthog-core/src/types.ts"],"names":[],"mappings":"AAgCA,MAAM,CAAN,IAAY,wBAaX;AAbD,WAAY,wBAAwB;IAClC,wDAA4B,CAAA;IAC5B,sDAA0B,CAAA;IAC1B,2CAAe,CAAA;IACf,0DAA8B,CAAA;IAC9B,yEAA6C,CAAA;IAC7C,2EAA+C,CAAA;IAC/C,2CAAe,CAAA;IACf,kDAAsB,CAAA;IACtB,oDAAwB,CAAA;IACxB,sEAA0C,CAAA;IAC1C,kEAAsC,CAAA;IACtC,gEAAoC,CAAA;AACtC,CAAC,EAbW,wBAAwB,KAAxB,wBAAwB,QAanC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");var _typeof=require("@babel/runtime/helpers/typeof");Object.defineProperty(exports,"__esModule",{value:true});exports.PostHogProvider=void 0;var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _react=_interopRequireWildcard(require("react"));var _reactNative=require("react-native");var _posthogRn=require("./posthog-rn");var _autocapture=require("./autocapture");var _useNavigationTracker=require("./hooks/useNavigationTracker");var _useLifecycleTracker=require("./hooks/useLifecycleTracker");var _PosthogContext=require("./PosthogContext");var _this=void 0,_jsxFileName="/home/runner/work/posthog-js-lite/posthog-js-lite/posthog-react-native/lib/posthog-react-native/src/PostHogProvider.js";function _getRequireWildcardCache(nodeInterop){if(typeof WeakMap!=="function")return null;var cacheBabelInterop=new WeakMap();var cacheNodeInterop=new WeakMap();return(_getRequireWildcardCache=function _getRequireWildcardCache(nodeInterop){return nodeInterop?cacheNodeInterop:cacheBabelInterop;})(nodeInterop);}function _interopRequireWildcard(obj,nodeInterop){if(!nodeInterop&&obj&&obj.__esModule){return obj;}if(obj===null||_typeof(obj)!=="object"&&typeof obj!=="function"){return{"default":obj};}var cache=_getRequireWildcardCache(nodeInterop);if(cache&&cache.has(obj)){return cache.get(obj);}var newObj={};var hasPropertyDescriptor=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var key in obj){if(key!=="default"&&Object.prototype.hasOwnProperty.call(obj,key)){var desc=hasPropertyDescriptor?Object.getOwnPropertyDescriptor(obj,key):null;if(desc&&(desc.get||desc.set)){Object.defineProperty(newObj,key,desc);}else{newObj[key]=obj[key];}}}newObj["default"]=obj;if(cache){cache.set(obj,newObj);}return newObj;}function PostHogNavigationHook(_ref){var options=_ref.options;(0,_useNavigationTracker.useNavigationTracker)(options===null||options===void 0?void 0:options.navigation);return null;}function PostHogLifecycleHook(){(0,_useLifecycleTracker.useLifecycleTracker)();return null;}var PostHogProvider=function PostHogProvider(_ref2){var children=_ref2.children,client=_ref2.client,options=_ref2.options,apiKey=_ref2.apiKey,autocapture=_ref2.autocapture,style=_ref2.style,_ref2$debug=_ref2.debug,debug=_ref2$debug===void 0?false:_ref2$debug;var _a,_b;var _useState=(0,_react.useState)(client instanceof Promise?undefined:client),_useState2=(0,_slicedToArray2["default"])(_useState,2),posthog=_useState2[0],setPosthog=_useState2[1];var autocaptureOptions=autocapture&&typeof autocapture!=='boolean'?autocapture:{};var captureAll=autocapture===true;var captureNone=autocapture===false;var captureTouches=!captureNone&&posthog&&(captureAll||(autocaptureOptions===null||autocaptureOptions===void 0?void 0:autocaptureOptions.captureTouches));var captureScreens=!captureNone&&posthog&&(captureAll||((_a=autocaptureOptions===null||autocaptureOptions===void 0?void 0:autocaptureOptions.captureScreens)!==null&&_a!==void 0?_a:true));var captureLifecycle=!captureNone&&posthog&&(captureAll||((_b=autocaptureOptions===null||autocaptureOptions===void 0?void 0:autocaptureOptions.captureLifecycleEvents)!==null&&_b!==void 0?_b:true));(0,_react.useEffect)(function(){if(!posthog&&client){if(client instanceof Promise){client.then(setPosthog);}else{setPosthog(client);}}
|
|
1
|
+
"use strict";var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");var _typeof=require("@babel/runtime/helpers/typeof");Object.defineProperty(exports,"__esModule",{value:true});exports.PostHogProvider=void 0;var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _react=_interopRequireWildcard(require("react"));var _reactNative=require("react-native");var _posthogRn=require("./posthog-rn");var _autocapture=require("./autocapture");var _useNavigationTracker=require("./hooks/useNavigationTracker");var _useLifecycleTracker=require("./hooks/useLifecycleTracker");var _PosthogContext=require("./PosthogContext");var _this=void 0,_jsxFileName="/home/runner/work/posthog-js-lite/posthog-js-lite/posthog-react-native/lib/posthog-react-native/src/PostHogProvider.js";function _getRequireWildcardCache(nodeInterop){if(typeof WeakMap!=="function")return null;var cacheBabelInterop=new WeakMap();var cacheNodeInterop=new WeakMap();return(_getRequireWildcardCache=function _getRequireWildcardCache(nodeInterop){return nodeInterop?cacheNodeInterop:cacheBabelInterop;})(nodeInterop);}function _interopRequireWildcard(obj,nodeInterop){if(!nodeInterop&&obj&&obj.__esModule){return obj;}if(obj===null||_typeof(obj)!=="object"&&typeof obj!=="function"){return{"default":obj};}var cache=_getRequireWildcardCache(nodeInterop);if(cache&&cache.has(obj)){return cache.get(obj);}var newObj={};var hasPropertyDescriptor=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var key in obj){if(key!=="default"&&Object.prototype.hasOwnProperty.call(obj,key)){var desc=hasPropertyDescriptor?Object.getOwnPropertyDescriptor(obj,key):null;if(desc&&(desc.get||desc.set)){Object.defineProperty(newObj,key,desc);}else{newObj[key]=obj[key];}}}newObj["default"]=obj;if(cache){cache.set(obj,newObj);}return newObj;}function PostHogNavigationHook(_ref){var options=_ref.options;(0,_useNavigationTracker.useNavigationTracker)(options===null||options===void 0?void 0:options.navigation);return null;}function PostHogLifecycleHook(){(0,_useLifecycleTracker.useLifecycleTracker)();return null;}var PostHogProvider=function PostHogProvider(_ref2){var children=_ref2.children,client=_ref2.client,options=_ref2.options,apiKey=_ref2.apiKey,autocapture=_ref2.autocapture,style=_ref2.style,_ref2$debug=_ref2.debug,debug=_ref2$debug===void 0?false:_ref2$debug;var _a,_b;var _useState=(0,_react.useState)(client instanceof Promise?undefined:client),_useState2=(0,_slicedToArray2["default"])(_useState,2),posthog=_useState2[0],setPosthog=_useState2[1];var autocaptureOptions=autocapture&&typeof autocapture!=='boolean'?autocapture:{};var captureAll=autocapture===true;var captureNone=autocapture===false;var captureTouches=!captureNone&&posthog&&(captureAll||(autocaptureOptions===null||autocaptureOptions===void 0?void 0:autocaptureOptions.captureTouches));var captureScreens=!captureNone&&posthog&&(captureAll||((_a=autocaptureOptions===null||autocaptureOptions===void 0?void 0:autocaptureOptions.captureScreens)!==null&&_a!==void 0?_a:true));var captureLifecycle=!captureNone&&posthog&&(captureAll||((_b=autocaptureOptions===null||autocaptureOptions===void 0?void 0:autocaptureOptions.captureLifecycleEvents)!==null&&_b!==void 0?_b:true));(0,_react.useEffect)(function(){if(client&&apiKey){console.warn('You have provided both a client and an apiKey to PostHogProvider. The apiKey will be ignored in favour of the client.');}if(!posthog&&client){if(client instanceof Promise){client.then(setPosthog);}else{setPosthog(client);}}else if(!posthog&&apiKey){_posthogRn.PostHog.initAsync(apiKey,options).then(setPosthog);}},[client,apiKey]);(0,_react.useEffect)(function(){if(!posthog){return;}posthog.debug(debug);},[debug,posthog]);var onTouch=(0,_react.useCallback)(function(type,e){if(!captureTouches){return;}if(type==='end'){(0,_autocapture.autocaptureFromTouchEvent)(e,posthog,autocaptureOptions);}},[posthog,autocapture]);return _react["default"].createElement(_reactNative.View,{"ph-label":"PostHogProvider",style:style||{flex:1},onTouchEndCapture:captureTouches?function(e){return onTouch('end',e);}:undefined,__self:_this,__source:{fileName:_jsxFileName,lineNumber:58,columnNumber:13}},_react["default"].createElement(_PosthogContext.PostHogContext.Provider,{value:{client:posthog},__self:_this,__source:{fileName:_jsxFileName,lineNumber:59,columnNumber:7}},_react["default"].createElement(_react["default"].Fragment,null,captureScreens?_react["default"].createElement(PostHogNavigationHook,{options:autocaptureOptions,__self:_this,__source:{fileName:_jsxFileName,lineNumber:61,columnNumber:29}}):null,captureLifecycle?_react["default"].createElement(PostHogLifecycleHook,{__self:_this,__source:{fileName:_jsxFileName,lineNumber:62,columnNumber:31}}):null),children));};exports.PostHogProvider=PostHogProvider;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PostHogProvider.js","sourceRoot":"","sources":["../../../src/PostHogProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,WAAW,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAC/D,OAAO,EAAoC,IAAI,EAAa,MAAM,cAAc,CAAA;AAChF,OAAO,EAAE,OAAO,EAAkB,MAAM,cAAc,CAAA;AACtD,OAAO,EAAE,yBAAyB,EAAE,MAAM,eAAe,CAAA;AACzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAA;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAA;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAajD,SAAS,qBAAqB,CAAC,EAAE,OAAO,EAA2C;IACjF,oBAAoB,CAAC,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,UAAU,CAAC,CAAA;IACzC,OAAO,IAAI,CAAA;AACb,CAAC;AAED,SAAS,oBAAoB;IAC3B,mBAAmB,EAAE,CAAA;IACrB,OAAO,IAAI,CAAA;AACb,CAAC;AAED,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,EAC9B,QAAQ,EACR,MAAM,EACN,OAAO,EACP,MAAM,EACN,WAAW,EACX,KAAK,EACL,KAAK,GAAG,KAAK,GACQ,EAAsB,EAAE;;IAC7C,wDAAwD;IACxD,MAAM,CAAC,OAAO,EAAE,UAAU,CAAC,GAAG,QAAQ,CAAsB,MAAM,YAAY,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;IAE3G,MAAM,kBAAkB,GAAG,WAAW,IAAI,OAAO,WAAW,KAAK,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAA;IAC7F,MAAM,UAAU,GAAG,WAAW,KAAK,IAAI,CAAA;IACvC,MAAM,WAAW,GAAG,WAAW,KAAK,KAAK,CAAA;IAEzC,MAAM,cAAc,GAAG,CAAC,WAAW,IAAI,OAAO,IAAI,CAAC,UAAU,KAAI,kBAAkB,aAAlB,kBAAkB,uBAAlB,kBAAkB,CAAE,cAAc,CAAA,CAAC,CAAA;IACpG,MAAM,cAAc,GAAG,CAAC,WAAW,IAAI,OAAO,IAAI,CAAC,UAAU,IAAI,CAAC,MAAA,kBAAkB,aAAlB,kBAAkB,uBAAlB,kBAAkB,CAAE,cAAc,mCAAI,IAAI,CAAC,CAAC,CAAA,CAAC,6BAA6B;IAC5I,MAAM,gBAAgB,GACpB,CAAC,WAAW,IAAI,OAAO,IAAI,CAAC,UAAU,IAAI,CAAC,MAAA,kBAAkB,aAAlB,kBAAkB,uBAAlB,kBAAkB,CAAE,sBAAsB,mCAAI,IAAI,CAAC,CAAC,CAAA,CAAC,6BAA6B;IAE/H,0CAA0C;IAC1C,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,CAAC,OAAO,IAAI,MAAM,EAAE;YACtB,IAAI,MAAM,YAAY,OAAO,EAAE;gBAC7B,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;aACxB;iBAAM;gBACL,UAAU,CAAC,MAAM,CAAC,CAAA;aACnB;SACF;
|
|
1
|
+
{"version":3,"file":"PostHogProvider.js","sourceRoot":"","sources":["../../../src/PostHogProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,WAAW,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAC/D,OAAO,EAAoC,IAAI,EAAa,MAAM,cAAc,CAAA;AAChF,OAAO,EAAE,OAAO,EAAkB,MAAM,cAAc,CAAA;AACtD,OAAO,EAAE,yBAAyB,EAAE,MAAM,eAAe,CAAA;AACzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAA;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAA;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAajD,SAAS,qBAAqB,CAAC,EAAE,OAAO,EAA2C;IACjF,oBAAoB,CAAC,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,UAAU,CAAC,CAAA;IACzC,OAAO,IAAI,CAAA;AACb,CAAC;AAED,SAAS,oBAAoB;IAC3B,mBAAmB,EAAE,CAAA;IACrB,OAAO,IAAI,CAAA;AACb,CAAC;AAED,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,EAC9B,QAAQ,EACR,MAAM,EACN,OAAO,EACP,MAAM,EACN,WAAW,EACX,KAAK,EACL,KAAK,GAAG,KAAK,GACQ,EAAsB,EAAE;;IAC7C,wDAAwD;IACxD,MAAM,CAAC,OAAO,EAAE,UAAU,CAAC,GAAG,QAAQ,CAAsB,MAAM,YAAY,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;IAE3G,MAAM,kBAAkB,GAAG,WAAW,IAAI,OAAO,WAAW,KAAK,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAA;IAC7F,MAAM,UAAU,GAAG,WAAW,KAAK,IAAI,CAAA;IACvC,MAAM,WAAW,GAAG,WAAW,KAAK,KAAK,CAAA;IAEzC,MAAM,cAAc,GAAG,CAAC,WAAW,IAAI,OAAO,IAAI,CAAC,UAAU,KAAI,kBAAkB,aAAlB,kBAAkB,uBAAlB,kBAAkB,CAAE,cAAc,CAAA,CAAC,CAAA;IACpG,MAAM,cAAc,GAAG,CAAC,WAAW,IAAI,OAAO,IAAI,CAAC,UAAU,IAAI,CAAC,MAAA,kBAAkB,aAAlB,kBAAkB,uBAAlB,kBAAkB,CAAE,cAAc,mCAAI,IAAI,CAAC,CAAC,CAAA,CAAC,6BAA6B;IAC5I,MAAM,gBAAgB,GACpB,CAAC,WAAW,IAAI,OAAO,IAAI,CAAC,UAAU,IAAI,CAAC,MAAA,kBAAkB,aAAlB,kBAAkB,uBAAlB,kBAAkB,CAAE,sBAAsB,mCAAI,IAAI,CAAC,CAAC,CAAA,CAAC,6BAA6B;IAE/H,0CAA0C;IAC1C,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,MAAM,IAAI,MAAM,EAAE;YACpB,OAAO,CAAC,IAAI,CACV,uHAAuH,CACxH,CAAA;SACF;QAED,IAAI,CAAC,OAAO,IAAI,MAAM,EAAE;YACtB,IAAI,MAAM,YAAY,OAAO,EAAE;gBAC7B,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;aACxB;iBAAM;gBACL,UAAU,CAAC,MAAM,CAAC,CAAA;aACnB;SACF;aAAM,IAAI,CAAC,OAAO,IAAI,MAAM,EAAE;YAC7B,OAAO,CAAC,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;SACpD;IACH,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;IAEpB,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,CAAC,OAAO,EAAE;YACZ,OAAM;SACP;QAED,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;IACtB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAA;IAEpB,MAAM,OAAO,GAAG,WAAW,CACzB,CAAC,IAA8B,EAAE,CAAwB,EAAE,EAAE;QAC3D,+FAA+F;QAC/F,IAAI,CAAC,cAAc,EAAE;YACnB,OAAM;SACP;QAED,IAAI,IAAI,KAAK,KAAK,EAAE;YAClB,yBAAyB,CAAC,CAAC,EAAE,OAAO,EAAE,kBAAkB,CAAC,CAAA;SAC1D;IACH,CAAC,EACD,CAAC,OAAO,EAAE,WAAW,CAAC,CACvB,CAAA;IAED,OAAO,CACL,CAAC,IAAI,CACH,QAAQ,CAAC,iBAAiB,CAC1B,KAAK,CAAC,CAAC,KAAK,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAC5B,iBAAiB,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAEzE;MAAA,CAAC,cAAc,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,CAClD;QAAA,EACE;UAAA,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,qBAAqB,CAAC,OAAO,CAAC,CAAC,kBAAkB,CAAC,EAAG,CAAC,CAAC,CAAC,IAAI,CAC/E;UAAA,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,oBAAoB,CAAC,AAAD,EAAG,CAAC,CAAC,CAAC,IAAI,CACrD;QAAA,GACA;QAAA,CAAC,QAAQ,CACX;MAAA,EAAE,cAAc,CAAC,QAAQ,CAC3B;IAAA,EAAE,IAAI,CAAC,CACR,CAAA;AACH,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.
|
|
1
|
+
export declare const version = "2.4.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.version=void 0;var version="2.
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.version=void 0;var version="2.4.0";exports.version=version;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/react-native/globals.d.ts","../../../node_modules/@types/react-native/legacy-properties.d.ts","../../../node_modules/@types/react-native/BatchedBridge.d.ts","../../../node_modules/@types/react-native/Codegen.d.ts","../../../node_modules/@types/react-native/Devtools.d.ts","../../../node_modules/@types/react-native/LaunchScreen.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react-native/index.d.ts","../../../posthog-core/src/types.ts","../../../posthog-core/src/utils.ts","../../../posthog-core/src/lz-string.ts","../../../posthog-core/src/eventemitter.ts","../../../posthog-core/src/index.ts","../../../posthog-core/src/storage-memory.ts","../../../node_modules/expo-application/build/Application.d.ts","../../src/optional/OptionalExpoApplication.ts","../../../node_modules/expo-file-system/build/FileSystem.types.d.ts","../../../node_modules/expo-file-system/build/FileSystem.d.ts","../../../node_modules/expo-file-system/build/index.d.ts","../../src/optional/OptionalExpoFileSystem.ts","../../src/legacy.ts","../../src/types.ts","../../src/storage.ts","../../src/version.ts","../../../node_modules/@react-native-async-storage/async-storage/lib/typescript/types.d.ts","../../../node_modules/@react-native-async-storage/async-storage/lib/typescript/AsyncStorage.d.ts","../../../node_modules/@react-native-async-storage/async-storage/lib/typescript/hooks.d.ts","../../../node_modules/@react-native-async-storage/async-storage/lib/typescript/index.d.ts","../../src/optional/OptionalAsyncStorage.ts","../../../node_modules/expo-device/build/Device.types.d.ts","../../../node_modules/expo-device/build/Device.d.ts","../../src/optional/OptionalExpoDevice.ts","../../../node_modules/expo-localization/build/Localization.types.d.ts","../../../node_modules/expo-localization/build/Localization.d.ts","../../src/optional/OptionalExpoLocalization.ts","../../../node_modules/react-native-device-info/lib/typescript/internal/types.d.ts","../../../node_modules/react-native-device-info/lib/typescript/internal/privateTypes.d.ts","../../../node_modules/react-native-device-info/lib/typescript/index.d.ts","../../src/optional/OptionalReactNativeDeviceInfo.ts","../../src/native-deps.tsx","../../../node_modules/react-native-navigation/lib/dist/interfaces/ComponentEvents.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/Events.d.ts","../../../node_modules/react-native-navigation/lib/dist/adapters/NativeEventsReceiver.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/EventSubscription.d.ts","../../../node_modules/react-native-navigation/lib/dist/adapters/UniqueIdProvider.d.ts","../../../node_modules/react-native-navigation/lib/dist/events/CommandsObserver.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/NavigationComponentListener.d.ts","../../../node_modules/react-native-navigation/lib/dist/components/ComponentWrapper.d.ts","../../../node_modules/react-native-navigation/lib/dist/components/Store.d.ts","../../../node_modules/react-native-navigation/lib/dist/events/ComponentEventsObserver.d.ts","../../../node_modules/react-native-navigation/lib/dist/events/EventsRegistry.d.ts","../../../node_modules/react-native-navigation/lib/dist/adapters/Constants.d.ts","../../../node_modules/react-native-navigation/lib/dist/adapters/TouchablePreview.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/Options.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/Layout.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/ProcessorSubscription.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/CommandName.d.ts","../../../node_modules/react-native-navigation/lib/dist/Navigation.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/NavigationComponentProps.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/NavigationComponent.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/NavigationFunctionComponent.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/Processors.d.ts","../../../node_modules/react-native-navigation/lib/dist/index.d.ts","../../src/optional/OptionalReactNativeNavigationWix.ts","../../src/frameworks/wix-navigation.ts","../../src/posthog-rn.ts","../../src/PosthogContext.ts","../../src/hooks/usePostHog.ts","../../src/hooks/useLifecycleTracker.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/types.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/CommonActions.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/BaseRouter.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/StackRouter.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/TabRouter.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/DrawerRouter.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/index.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/types.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/BaseNavigationContainer.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/createNavigatorFactory.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/NavigationHelpersContext.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/NavigationContext.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/NavigationRouteContext.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/CurrentRenderContext.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useNavigationBuilder.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useNavigation.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useRoute.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useFocusEffect.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useIsFocused.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useNavigationState.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/getStateFromPath.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/getPathFromState.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/getActionFromState.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/getFocusedRouteNameFromRoute.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/index.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/types.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/NavigationContainer.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useBackButton.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useScrollToTop.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/theming/DefaultTheme.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/theming/DarkTheme.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/theming/ThemeProvider.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/theming/useTheme.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/Link.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useLinking.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useLinkTo.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useLinkProps.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useLinkBuilder.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/ServerContext.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/ServerContainer.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/index.d.ts","../../src/optional/OptionalReactNativeNavigation.ts","../../src/hooks/useNavigationTracker.ts","../../src/hooks/useFeatureFlags.ts","../../src/hooks/useFeatureFlag.ts","../../src/autocapture.tsx","../../src/PostHogProvider.tsx","../../index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"a76bbd53b4eafb985c6200962d1c9ec1ded8fa80c06ade7488be971e9eaa0e2d","affectsGlobalScope":true},"840dd3c9c22dc9f99d2cd7861d105f2275ba34b40c01a65f3a0f33b07b09ab4b",{"version":"efd32b1ab5e3897f64ed3d0f236657c3c9c7bcc669449e608ebee1ad9dbe396a","affectsGlobalScope":true},"196fecca8b301eb0e46652a8d67e57821622f9a964b36b2674265f3421e47119","7fb3279c4bf36d993b1e8b339cded5908f7b2ec1b6e0ac2feaa842b5b6b143f1","234b97ac9af46707f2315ff395a9b340d37b7dbc8290d91f5d6bd97189d220f3",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"e870860b52176fc9c884bbd62b6dbb4982e84a3dd33782333b952653979911eb","affectsGlobalScope":true},{"version":"1afc36a3ba1e47d60667ddda22c692efcb3c286cfd53555386929739ce8c428f","affectsGlobalScope":true},{"version":"1cb0643b48b3fe13425c350bd4b207b3f54ed3381d78575c639e40b83199c19c","signature":"8c013f5637338fd174e65934ffbb31a3eb9783cfa7377d12499d8716fe43e268"},{"version":"217798b8e5eb9e1049880433b0d2c085d7ed4ee5cbbf6adfc5869b6ec8bd6dd7","signature":"7af0f759711b72ff64f5383eaf2118715ffe278b3b67070b66f74ef09fcab94a"},{"version":"4b64f552ead98156fd27ed14600f43d992c28be337537d8a9754493efd38d26a","signature":"f9ce1bc48a437290408037aa2a4faf010735a40d5bec9f4cdd1644d136248492"},{"version":"3a3cc0a57d183b6e93d949cd381f17ccb607c3ff00a6134830ffdca90a66d086","signature":"9e8e78e2e87a477b0a031ac9a9593d75d76123933953f2ce1bebf0d78a0f60ca"},{"version":"ecb8fd67de31568fb35a4065d41688b907d87d47cdf76fafa75bc835eaedfd47","signature":"e4142be6fe6cdf6abf7e45a6cb07e632f4e473da901a715a4858aff632674d15"},{"version":"c6529f1dd4f469e64dacb1848e7e06313f1194681ce0e876e62c8ab69032b88b","signature":"a96bd3c10373407c6baed7e98dde2874c335e15dca119b6df0aea46080212932"},"c8d95250c2c33fce1284e2bdebe87b5f841d14a3e47f6d9bd4b52d555437f16f",{"version":"80e47e9330f37a333b24b66ccff96bc323105ac5bdbb421e4eacebb53a82de70","signature":"2caa0fe9101d333edbc735ab69b9f9e4d2809d4affa4fbbc90ebb399debdf965"},"6c0bb5aaf989e6ca53e841e3659c2022648a5156e4c8b13c9cadef0811747f79","824b5b9ddde4d85aca20f2b83fc1f9bc0e7f920d59a6f44c97f5146915ea0c07","912ed7d844d84c9b932a2e867e83f4642c58765d7c6e4e381fdc42b8ca2adbcd",{"version":"2b2ea1103c10668cd4e703d7d68c086c2fea56d41cc45aadcd410198f192c3c6","signature":"ac61bbf4646cac282c1b851ba97026565449d0a4e073e0f184f364fe4c123e80"},{"version":"834bd2149bb1ed6b3b06c16a1b7a60f65c7f37773faf94c69ecad757b88fed70","signature":"a18ce8de91ed7a239027bc452f7e8780a8d199dd305b1c4f4f81338a2d5c1e87"},{"version":"2548acc62b46c4e83ddcc307fbd96197ec66eeb96532356618e196c6f3cd63c5","signature":"89a82263fa273d14271a6ff8d12f491f7dd3699cb15bda054dd605e476a64ef5"},{"version":"3023a9dd1395f8b0b2faf63b4499e51245865b99d6c00007aa9637190e4128d2","signature":"a115596127585b897d9db9c1a6a9475fef0833ffb8e2ca8245c0260d12ca5899"},{"version":"cdea5953f096a5f2304e8060446f8381115f9c10b6b97b4e3708777a0e9f20fd","signature":"05be6e6d34c341c8f50dc20413d1f5dc69e1b63c22c0f21b13d586d9dba3b577"},"d484e86eea08f99ff45d0be0eac549cd6c7f35b73a6ebb326fef7b139c49261b","30e8451280b91dc54fccda397b4c740a91c3bf38945a424bb2071b88d07e8b0a","3fb9c2775948463ddc4c9b58d27b0cccb2312ec7ca1013a6b17c5bdd31fb2187","7e0d06d3d089799d382b8d79a7b6ee439cddfc49196925205414a08a7ca3990a",{"version":"6b05a6a8b6967204fb5d6268c0800ea7d7e85c055f5c56029d8f277b76379cdd","signature":"6fc50cf64bb23f280f1b830eff2b1d79f930fcddb558509ffb3267dacd3b62d7"},"31364966b995a47b4265b4e10b3595526edf2c1cee39533c71168a9b0fbfb19d","49924b0b585b8ee2dc6200b0b7496e46f7100770b6a6550f9bde30cb6a2e258c",{"version":"753400160fd2200366ceb1d6dfbe3320c178efeb45cb352da3ab5a80f336f3e9","signature":"66b257a369914b183b6c5e1e645fb5c2b22f76b211d893a58c66b3aafd3777f1"},"3c0aba5da8d05fb5849d2d8c7371cc0d5059f7e9b677b38428c840f61d0c9d5b","1d07436b9c7d67bed895a7dd62cbf2f50df0926d873fcfea7732dddd15a31ae1",{"version":"ffb9464ee32ba5c23268cdfa88340e238082ae584f594896ac42b27936906177","signature":"3855f37575b32e6b8f3898c7bb2ca800398802bdc1ad4f76df0484b092071cd6"},"242914f7a5bf6e4279c46a431683980a9858b55d2a89d89ac986dd1549627426","67750900603c03e2aeb316f2a19a1eb5402e11df61ce4b327f2ab025b5c4be5d","0c35c07d886c588ca96fd2ac5f0576c10316fc6e50a4f0862251162f41244af2",{"version":"91a9d0dc2ee0c383ff79e6674367329f5888ff3a34be2a3dcb00ff299aeef35c","signature":"25f92ea685a767483f6282fad7ce21410412cf8413c1d3666ad9af9fe7ba8f61"},{"version":"be833a0104c5c8e9db3fe46ab75fdb541a88fa1e55b4f7646172c4e14207f066","signature":"a6a9c7cf10b36cc5081065b93d4126d83cdb1f60b098581bed118384f7baa451"},"f30f77149139a6be3766f2db47f96fd175dd186313e7b6c51e4643ac39794a6d","96cb8bfd5e1b3e326f487db44cde59a77d5efd2c7b3268c0d4f44b94fdcbc3f3","1a4015e82f81cd075cc3d4174e812dc40786bd72c50e3c4991e29a945ea0ae16","daaaedb2ab7955bd28d0068fb7b84990771d76384b51d1eb960895a6589e7383","57ee4dbe0cf89d22c13415f192610230717b856939d42b255823b11f5f8077b5","e7f7ad6d4e3f39574f33140b53d62223554146770c950786a6a7d984172a1968","89fc154ddc4f1d5bde9f3096daaad3b6509747b62fc3688a5722570647dde021","c00df3a96b92b68f891e8203adce12a77e55db3b5aeefbb1206570edbcb27ac8","d807ddd0b087b423bb7f0bdb4863e6c9953020da6f45437ecc450060b672496d","fc02c8acfb65b0479e01eec792344c8930fb362aae523c6cfb068ee68d3c2d04","7e1795cd9405cfe599d2a08c2ab8b27c4199872c6996882cdf7509332cb3cac3","6fc2b7c056fc5a4fab2cda7f12d5e1117189ba66974a0d4bd300fca0494069f0","13e7ce31a323e5768142dd6a8e6722a0829444143b6604505cd52357fa434c5a","057311339a3d533a02b06094b15643eeecc9f50e11a3e6b41d705654c24ec8e4","f121d5ca2164a2aedde1abc913db36e1e7002846560b8e09a87cc349bc1f27d9","03fe48ae3a88a53a1ab02a8c54e2ecdcf5a496125f1369999a68f29b12091b7f","30014aedc5a0c637b187190e9a9d2f2ad16e7995bdbe77723442fad3f6edcacf","eaa5d7e585f8d38fdc60261502881a54b6271c5a30468b401f1a54d70b1ab839","60046eee785424cc84b29e37df8b0739680be9075d5593f8e47f16d0d2d6d698","24f236bb92b119d3fa7391f97bb6e245d5e590018ee7d5ade3f3e1e4428e2fc8","64fc8f83f616af8bd5dd0536aa888bc54f3f78c76606144fa161f8f0f91ca8d8","15c4f4bbaa4b9c8c87b3d676f4971da1c50bd7d0cc5ce95245f20e560182a55f","c1b4b85b6dfe75325d249e763b4c835218ca336598f274d4b240d8a4bbfa2454",{"version":"8ff990ee906fadb637e6480a7040b06738c0f3626257093a95c44894018df700","signature":"e3b85d65af286db17572bd404d3d4720a5fc6385d729df6699638c8ac073ce9b"},{"version":"46a20810952d2a9e8a170398e1bfe7d348a8870da91f293268fa050b2f79f32a","signature":"abbd9e536adc3d8d8890017b7ee94f52c246dfa60e4052028cbc8e85dab20ca8"},{"version":"18f006e7380b14585bfff93fa9f2d629e329a3e745affb25770da1d8e913c0df","signature":"66bccfc5b8358b3934caf4997d8a9a8257eef6cfd7781fa4311c15c6ece0e398"},{"version":"9ea7d0074517d549db36bf52f755aab4b66f7310d60251a80061fef97f4e6de2","signature":"f75ed4001a92554f813badd9486e5efacb5785f78571c68496e7ce222b1d4d61"},{"version":"858145b02005b61f0675a3fa2ab9557f834dbb7523a533afa28aef665115cf54","signature":"33ab1a593478120c9bb55f8f5231883cc34054577831e2304a1cb957a9a09458"},{"version":"8c1e520ad56250c5dbcbdc1cf05dfdb339f119e50b67b8f3553f3a090feb2748","signature":"dbeb115f3593f8e7e80a0b06c12c92140198bad9ea4cb13e831c3b53e70863bd"},"ee70ab6700186ebe597963119bd63bd3c9d0230c0d137c7dad8b9a2cb6afc629","12e65dea0fad953d453eaab41b15808552f50d99c0d5181bf55e540b89af09d7","97e0fe27ea413e79bb2b76721eb4bef93f8b6c130de69a79d6739444ba7a4079","8a876f161417bc675dfa413c324362dafa6a95a8d24660fee994cd12fb429616","c827805d423f217de1c2562e5f982d1ab880bbd350a67d268f2751c444bc804b","334e2f04b6b775998676a0b92db1010b1e0c6e9f235a23935789a7fcb914db43","a3e06486315a5d6aca5c6c51ad338591c46a9abb9f032c0a880f4fc23c58990d","c7c020aeacc3fd98752a976508579f3d207f811307993be26a0ca0f4c72d9c3e","3154aae94a314b670d4ca825e7089fc4f4c4e31db5473367dfed10ce93ae68f8","4e246414756d2471a5f57ec9b83245524d44ece2ef79d869b5a531208add6780","8e7fbcd85a88cff952bfddf018a878437ff3721a3ef9d5a82e4aa33540fd166c","99cff8d8ecff76cf6d2c01c36a67fbf7961122748c07020d11f17b5e15f64422","f9261b84d8004d9f496ef8e6e6801aea969a451cca6809fb014c9ef6ee2c4b4c","717c85e439a2e28054138caa84613aa81252448a4a9f4f4c8e66cf430f399cf9","58b560202bde6e8c9ab6f5257ffaa81eee63eeadf3d112acce1acef76ed7a9cf","b2880926ee002e26613daa950b99eaaf54767e88c02d6019b545a0b787e03eaf","c8792295a56e3f685129308d41efab07e27f267f0947cd817cb9f4a7617663de","948355e572a01fac5781b65489e7c0ac98656f760ed3ad57721a55a344d1315e","9ebbaba0e0405c1de896520d4fb403abf8d8ee72d26f002d4ae880b04e3fe504","3f330b6ffb4b66966103db9aec9228228e109aea2d14366f04b12222dc1d3361","e4e14f80a180dbdad64eef8f0700e2cd5ce49dce687d2f565552044bf3b70a99","7ed03aac31eba23b636b60ac2a346c05e7d1c1624e4f3b060fc8273de5770851","1d0455ddcb4af33500472e8f5085a971f07706347a0ca230af85d0db87e46bd6","96af48f58c93f75f41576b49d8f8a3f6bcdee294d9e3f6579eea742d95d8dd1c","3f7013acbcc83982dbc09a9c77e1453482d6209f3cb48b0db293002ee2553b1c","d89abed9cc3462bfbc92b43a96a9efa48286a06bf6816a79d2d91178c0f0bf55","8401397ae7b67ac7994bec9f9d6ddbacd5b40203af5646e2a05986b0174d1d31","27315fbee0aee7886e5991a8b2edbb693ae53d332c4fd1bd8f510aa8e3096feb","c2d455a045f1bc5de7ef50102f4916f6e4b6c948ffc861c313f473fc1da5b6c0","48f3e2543105da93484b51b1979764f345befa92e4d2031109cf2297739c3c95","528e7087c8e41701cd1af78e52bdc107553eeb44245885c5cd92b2dd3209a6b4","b08950d68c97431fb98c2f6faa5da8b012d49145559c8218416be5ec3214c521","2f2275fb011f92825710c151ae9cd29d9aa1dedbcd99fcdd412dbbe644757e4d","6477985c5202f923b093ef846f6419b9ad622e4a8f8622ebe48f84baadaa3e16","8097775a576145e0f19952e0d6e40ada6b8d05a34b324ec8278e8ee45c8b1723","1d9c1b01bf97e67e186f94aa133d4611bd5fc581968ed2aad913009cc0ea9005","a056a887393061b50c78c9216fa368b498bc6bade79ed32f00afd142bdc78ef8","fded4150da5c204dd68ce7603bc36950d6a24f7768d7848df3ff232889213616","6e2cbb13f526e6f7c70ea3a4bdc9634301f018fa3965f2dde7f1d37a8e5c7e9c","2fd3c27eab8f2e941560b8f1d9b2480d558a3bfecb9f7450478a758c9ce96cb0","6e51a400a1bfb0d2a9dc4432fb4577001f02dada8caa68b357d2afa4e8f0d751",{"version":"34044e99c4c314c5d766a85590d3e2596fe428abb25d97fc395359ac029ea688","signature":"eb8a29953c7787e6d5b06d40598677fd0be33e1cdedfc90f193f09861e85b86d"},{"version":"f2ee2ff2e183e54192b225bed4daf64f61d17157016667eba601fbe0245da9c2","signature":"0d6d1e08027b3d4f75f033dbdbe6c0653456c54254b04b8ca3bf671e68d2f45c"},{"version":"570653792153bde68fbf85ae6cff544f9db76473032d68da9979b925585b9f2d","signature":"bfe259a60c63ef4b39bb8a46f33f13706b3dbdd471d7c025c0cbc23e539813be"},{"version":"b1547b3cd6fc265f1bdd39eff91bc2bd48356b17c1b6d6bfc8721456915e5cd3","signature":"91ab44bb9875877c7be931c1788f42ffa2e5d2df813723af430903f14f1b78a5"},{"version":"1ad30d698afc59d15209dcfa6c9dae95b699f2420d8a14f57458190b9af2b812","signature":"1ff2997cebb89533ea5b436d2d1665ba8cfca667442509ee97c0e9ce97d7d183"},{"version":"09e1bed9dddad9c3234d2bbc4a8594f6e2860f3c080c8ba70b795c39898c7de8","signature":"37c5b5012e54983ea8eeb035b573a78528747a5bd41439359ccede0ce2e37dca"},{"version":"5445469774e6da25c888172952430addb264d252110626a5129e3d543a7e5adb","signature":"8855e67b5a208871ed6b83fe64f4c1c0dfdcbce464d11881e05478b6dd557474"},"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","34ec1daf3566f26c43dbab380af0de1aac29166e57e4f9ef379a2f154e0cb290","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"2f60ac046e587e917d739f1edc77540eb0ec34f83090dae4ebd5f96c1c9578d4","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","d4fc97ea27a8226c5429b73efe7f0d9d78c0269e2995f6dba8bac64fc1b132dc","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","29d613c3964ea75b2b4e0d17098245c34529282e9cc72b7e4eeb2a7b12c27cb7",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"82fc37849846a3a0264047621d5beb6ce2ddeb2f83bdee2c79523af3c3282d97","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d982cdd2610155b3cbcbfa62ccabcf2d2b739f821518ef113348d160ef0010d9","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"1de1ad6a1929317171d8cfcd55bb2732257680c1bf89bcd53e1d46a4d8dbda22","affectsGlobalScope":true}],"options":{"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":3,"module":99,"noEmitOnError":true,"outDir":"..","removeComments":false,"rootDir":"../../..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5},"fileIdsList":[[218,227],[81,218],[81,82,83,218],[218],[63,133,218],[63,218],[63,132,218],[63,132,133,218],[132,133,218],[132,218],[132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,218],[54,63,64,150,218],[63,150,151,218],[63,151,164,218],[150,151,152,153,154,155,156,157,158,159,160,161,162,163,165,218],[151,218],[63,151,218],[166,218],[150,218],[63,150,218],[126,218],[126,130,218],[126,127,128,129,130,131,218],[127,218],[218,229,231],[174,218],[177,218],[178,183,218],[179,189,190,197,206,217,218],[179,180,189,197,218],[181,218],[182,183,190,198,218],[183,206,214,218],[184,186,189,197,218],[185,218],[186,187,218],[188,189,218],[189,218],[189,190,191,206,217,218],[189,190,191,206,209,218],[218,222],[192,197,206,217,218],[189,190,192,193,197,206,214,217,218],[192,194,206,214,217,218],[174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224],[189,195,218],[196,217,218],[186,189,197,206,218],[198,218],[199,218],[177,200,218],[201,216,218,222],[202,218],[203,218],[189,204,218],[204,205,218,220],[189,206,207,208,209,218],[206,208,218],[206,207,218],[209,218],[210,218],[189,212,213,218],[212,213,218],[183,197,206,214,218],[215,218],[197,216,218],[178,192,203,217,218],[183,218],[206,218,219],[218,220],[218,221],[178,183,189,191,200,206,217,218,220,222],[206,218,223],[54,64,218],[57,218],[53,54,55,56,57,58,63,218],[59,60,61,62,218],[86,218],[73,74,218],[74,218],[89,218],[218,229],[218,226,230],[218,228],[92,93,218],[54,64,92,218],[54,64,107,108,109,110,111,112,113,218],[54,64,97,98,218],[54,61,63,64,218],[54,63,64,105,106,218],[54,63,64,104,218],[100,101,218],[63,97,99,100,103,105,218],[54,63,64,97,98,99,100,102,103,106,218],[97,98,100,103,107,108,110,111,113,114,115,116,117,118,218],[110,218],[63,97,110,115,218],[97,218],[63,110,115,218],[111,113,218],[65,66,67,68,218],[65,218],[78,122,124,125,168,169,170,172,218],[54,63,64,78,122,123,125,168,171,218],[63,122,218],[69,78,122,218],[54,64,78,120,122,218],[63,124,218],[63,69,122,124,218],[54,63,64,122,124,218],[63,78,122,124,167,218],[63,122,123,218],[54,64,72,76,218],[72,76,78,85,88,91,95,218],[84,218],[71,218],[87,218],[75,218],[90,218],[94,218],[119,218],[54,64,69,70,77,78,79,80,96,121,218],[78,218],[65,66,67,68],[65],[78,122,124,125,168,169,170,172],[54,63,64,78,122],[63,122],[78,122],[69,122],[122],[78],[84],[71],[87],[75],[90],[94],[166],[119],[69,78,79]],"referencedMap":[[228,1],[82,2],[83,2],[84,3],[81,4],[134,5],[139,6],[137,5],[136,5],[138,7],[135,8],[148,9],[149,10],[147,9],[146,9],[150,11],[133,7],[143,4],[144,4],[141,9],[140,8],[145,10],[142,9],[159,12],[152,13],[165,14],[164,6],[166,15],[156,16],[155,16],[157,17],[158,18],[151,19],[153,20],[163,4],[162,12],[161,4],[160,13],[154,6],[128,21],[127,21],[131,22],[129,21],[130,21],[132,23],[126,24],[227,4],[232,25],[174,26],[175,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,36],[187,36],[188,37],[189,38],[190,39],[191,40],[176,41],[224,4],[192,42],[193,43],[194,44],[225,45],[195,46],[196,47],[197,48],[198,49],[199,50],[200,51],[201,52],[202,53],[203,54],[204,55],[205,56],[206,57],[208,58],[207,59],[209,60],[210,61],[211,4],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[222,72],[223,73],[61,4],[55,4],[56,74],[57,75],[58,4],[53,4],[64,76],[54,74],[59,4],[63,77],[62,4],[226,4],[60,4],[71,4],[87,78],[86,4],[74,79],[73,4],[75,80],[90,81],[89,4],[230,82],[231,83],[229,84],[94,85],[93,86],[92,4],[114,87],[108,4],[99,88],[109,89],[101,4],[104,90],[105,91],[102,92],[106,93],[107,94],[119,95],[113,4],[97,4],[100,4],[98,4],[111,96],[116,97],[103,98],[115,4],[117,99],[110,74],[112,4],[118,100],[12,4],[11,4],[2,4],[13,4],[14,4],[15,4],[16,4],[17,4],[18,4],[19,4],[20,4],[3,4],[4,4],[24,4],[21,4],[22,4],[23,4],[25,4],[26,4],[27,4],[5,4],[28,4],[29,4],[30,4],[31,4],[6,4],[32,4],[33,4],[34,4],[35,4],[7,4],[36,4],[41,4],[42,4],[37,4],[38,4],[39,4],[40,4],[8,4],[46,4],[43,4],[44,4],[45,4],[47,4],[9,4],[48,4],[49,4],[50,4],[51,4],[1,4],[10,4],[52,4],[68,4],[69,101],[67,4],[70,102],[65,4],[66,4],[173,103],[172,104],[123,105],[171,106],[121,107],[170,108],[169,109],[125,110],[168,111],[124,112],[77,113],[96,114],[85,115],[72,116],[88,117],[76,118],[91,119],[95,120],[167,18],[120,121],[122,122],[79,123],[78,4],[80,4]],"exportedModulesMap":[[228,1],[82,2],[83,2],[84,3],[81,4],[134,5],[139,6],[137,5],[136,5],[138,7],[135,8],[148,9],[149,10],[147,9],[146,9],[150,11],[133,7],[143,4],[144,4],[141,9],[140,8],[145,10],[142,9],[159,12],[152,13],[165,14],[164,6],[166,15],[156,16],[155,16],[157,17],[158,18],[151,19],[153,20],[163,4],[162,12],[161,4],[160,13],[154,6],[128,21],[127,21],[131,22],[129,21],[130,21],[132,23],[126,24],[227,4],[232,25],[174,26],[175,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,36],[187,36],[188,37],[189,38],[190,39],[191,40],[176,41],[224,4],[192,42],[193,43],[194,44],[225,45],[195,46],[196,47],[197,48],[198,49],[199,50],[200,51],[201,52],[202,53],[203,54],[204,55],[205,56],[206,57],[208,58],[207,59],[209,60],[210,61],[211,4],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[222,72],[223,73],[61,4],[55,4],[56,74],[57,75],[58,4],[53,4],[64,76],[54,74],[59,4],[63,77],[62,4],[226,4],[60,4],[71,4],[87,78],[86,4],[74,79],[73,4],[75,80],[90,81],[89,4],[230,82],[231,83],[229,84],[94,85],[93,86],[92,4],[114,87],[108,4],[99,88],[109,89],[101,4],[104,90],[105,91],[102,92],[106,93],[107,94],[119,95],[113,4],[97,4],[100,4],[98,4],[111,96],[116,97],[103,98],[115,4],[117,99],[110,74],[112,4],[118,100],[12,4],[11,4],[2,4],[13,4],[14,4],[15,4],[16,4],[17,4],[18,4],[19,4],[20,4],[3,4],[4,4],[24,4],[21,4],[22,4],[23,4],[25,4],[26,4],[27,4],[5,4],[28,4],[29,4],[30,4],[31,4],[6,4],[32,4],[33,4],[34,4],[35,4],[7,4],[36,4],[41,4],[42,4],[37,4],[38,4],[39,4],[40,4],[8,4],[46,4],[43,4],[44,4],[45,4],[47,4],[9,4],[48,4],[49,4],[50,4],[51,4],[1,4],[10,4],[52,4],[69,124],[70,125],[173,126],[172,127],[123,128],[171,129],[121,129],[169,130],[125,131],[168,129],[124,131],[96,132],[85,133],[72,134],[88,135],[76,136],[91,137],[95,138],[167,139],[120,140],[122,141],[79,132]],"semanticDiagnosticsPerFile":[228,82,83,84,81,134,139,137,136,138,135,148,149,147,146,150,133,143,144,141,140,145,142,159,152,165,164,166,156,155,157,158,151,153,163,162,161,160,154,128,127,131,129,130,132,126,227,232,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,224,192,193,194,225,195,196,197,198,199,200,201,202,203,204,205,206,208,207,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,61,55,56,57,58,53,64,54,59,63,62,226,60,71,87,86,74,73,75,90,89,230,231,229,94,93,92,114,108,99,109,101,104,105,102,106,107,119,113,97,100,98,111,116,103,115,117,110,112,118,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,36,41,42,37,38,39,40,8,46,43,44,45,47,9,48,49,50,51,1,10,52,68,69,67,70,65,66,173,172,123,171,121,170,169,125,168,124,77,96,85,72,88,76,91,95,167,120,122,79,78,80]},"version":"4.7.4"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/react-native/globals.d.ts","../../../node_modules/@types/react-native/legacy-properties.d.ts","../../../node_modules/@types/react-native/BatchedBridge.d.ts","../../../node_modules/@types/react-native/Codegen.d.ts","../../../node_modules/@types/react-native/Devtools.d.ts","../../../node_modules/@types/react-native/LaunchScreen.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react-native/index.d.ts","../../../posthog-core/src/types.ts","../../../posthog-core/src/utils.ts","../../../posthog-core/src/lz-string.ts","../../../posthog-core/src/eventemitter.ts","../../../posthog-core/src/index.ts","../../../posthog-core/src/storage-memory.ts","../../../node_modules/expo-application/build/Application.d.ts","../../src/optional/OptionalExpoApplication.ts","../../../node_modules/expo-file-system/build/FileSystem.types.d.ts","../../../node_modules/expo-file-system/build/FileSystem.d.ts","../../../node_modules/expo-file-system/build/index.d.ts","../../src/optional/OptionalExpoFileSystem.ts","../../src/legacy.ts","../../src/types.ts","../../src/storage.ts","../../src/version.ts","../../../node_modules/@react-native-async-storage/async-storage/lib/typescript/types.d.ts","../../../node_modules/@react-native-async-storage/async-storage/lib/typescript/AsyncStorage.d.ts","../../../node_modules/@react-native-async-storage/async-storage/lib/typescript/hooks.d.ts","../../../node_modules/@react-native-async-storage/async-storage/lib/typescript/index.d.ts","../../src/optional/OptionalAsyncStorage.ts","../../../node_modules/expo-device/build/Device.types.d.ts","../../../node_modules/expo-device/build/Device.d.ts","../../src/optional/OptionalExpoDevice.ts","../../../node_modules/expo-localization/build/Localization.types.d.ts","../../../node_modules/expo-localization/build/Localization.d.ts","../../src/optional/OptionalExpoLocalization.ts","../../../node_modules/react-native-device-info/lib/typescript/internal/types.d.ts","../../../node_modules/react-native-device-info/lib/typescript/internal/privateTypes.d.ts","../../../node_modules/react-native-device-info/lib/typescript/index.d.ts","../../src/optional/OptionalReactNativeDeviceInfo.ts","../../src/native-deps.tsx","../../../node_modules/react-native-navigation/lib/dist/interfaces/ComponentEvents.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/Events.d.ts","../../../node_modules/react-native-navigation/lib/dist/adapters/NativeEventsReceiver.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/EventSubscription.d.ts","../../../node_modules/react-native-navigation/lib/dist/adapters/UniqueIdProvider.d.ts","../../../node_modules/react-native-navigation/lib/dist/events/CommandsObserver.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/NavigationComponentListener.d.ts","../../../node_modules/react-native-navigation/lib/dist/components/ComponentWrapper.d.ts","../../../node_modules/react-native-navigation/lib/dist/components/Store.d.ts","../../../node_modules/react-native-navigation/lib/dist/events/ComponentEventsObserver.d.ts","../../../node_modules/react-native-navigation/lib/dist/events/EventsRegistry.d.ts","../../../node_modules/react-native-navigation/lib/dist/adapters/Constants.d.ts","../../../node_modules/react-native-navigation/lib/dist/adapters/TouchablePreview.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/Options.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/Layout.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/ProcessorSubscription.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/CommandName.d.ts","../../../node_modules/react-native-navigation/lib/dist/Navigation.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/NavigationComponentProps.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/NavigationComponent.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/NavigationFunctionComponent.d.ts","../../../node_modules/react-native-navigation/lib/dist/interfaces/Processors.d.ts","../../../node_modules/react-native-navigation/lib/dist/index.d.ts","../../src/optional/OptionalReactNativeNavigationWix.ts","../../src/frameworks/wix-navigation.ts","../../src/posthog-rn.ts","../../src/PosthogContext.ts","../../src/hooks/usePostHog.ts","../../src/hooks/useLifecycleTracker.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/types.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/CommonActions.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/BaseRouter.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/StackRouter.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/TabRouter.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/DrawerRouter.d.ts","../../../node_modules/@react-navigation/routers/lib/typescript/src/index.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/types.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/BaseNavigationContainer.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/createNavigatorFactory.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/NavigationHelpersContext.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/NavigationContext.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/NavigationRouteContext.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/CurrentRenderContext.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useNavigationBuilder.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useNavigation.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useRoute.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useFocusEffect.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useIsFocused.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/useNavigationState.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/getStateFromPath.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/getPathFromState.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/getActionFromState.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/getFocusedRouteNameFromRoute.d.ts","../../../node_modules/@react-navigation/core/lib/typescript/src/index.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/types.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/NavigationContainer.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useBackButton.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useScrollToTop.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/theming/DefaultTheme.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/theming/DarkTheme.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/theming/ThemeProvider.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/theming/useTheme.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/Link.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useLinking.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useLinkTo.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useLinkProps.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/useLinkBuilder.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/ServerContext.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/ServerContainer.d.ts","../../../node_modules/@react-navigation/native/lib/typescript/src/index.d.ts","../../src/optional/OptionalReactNativeNavigation.ts","../../src/hooks/useNavigationTracker.ts","../../src/hooks/useFeatureFlags.ts","../../src/hooks/useFeatureFlag.ts","../../src/autocapture.tsx","../../src/PostHogProvider.tsx","../../index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"a76bbd53b4eafb985c6200962d1c9ec1ded8fa80c06ade7488be971e9eaa0e2d","affectsGlobalScope":true},"840dd3c9c22dc9f99d2cd7861d105f2275ba34b40c01a65f3a0f33b07b09ab4b",{"version":"efd32b1ab5e3897f64ed3d0f236657c3c9c7bcc669449e608ebee1ad9dbe396a","affectsGlobalScope":true},"196fecca8b301eb0e46652a8d67e57821622f9a964b36b2674265f3421e47119","7fb3279c4bf36d993b1e8b339cded5908f7b2ec1b6e0ac2feaa842b5b6b143f1","234b97ac9af46707f2315ff395a9b340d37b7dbc8290d91f5d6bd97189d220f3",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"e870860b52176fc9c884bbd62b6dbb4982e84a3dd33782333b952653979911eb","affectsGlobalScope":true},{"version":"1afc36a3ba1e47d60667ddda22c692efcb3c286cfd53555386929739ce8c428f","affectsGlobalScope":true},{"version":"4f643cb93254e87c982272524c9a4e57871145da381013fe08732bc11f29ec5c","signature":"acecbc5c48fe8d6af6db118d8d0fc5fae52c964ab494fd374f4953ddafe84dc9"},{"version":"217798b8e5eb9e1049880433b0d2c085d7ed4ee5cbbf6adfc5869b6ec8bd6dd7","signature":"7af0f759711b72ff64f5383eaf2118715ffe278b3b67070b66f74ef09fcab94a"},{"version":"4b64f552ead98156fd27ed14600f43d992c28be337537d8a9754493efd38d26a","signature":"f9ce1bc48a437290408037aa2a4faf010735a40d5bec9f4cdd1644d136248492"},{"version":"3a3cc0a57d183b6e93d949cd381f17ccb607c3ff00a6134830ffdca90a66d086","signature":"9e8e78e2e87a477b0a031ac9a9593d75d76123933953f2ce1bebf0d78a0f60ca"},{"version":"9cc8febc9dc737f6cef3a41d6edcb791fd6f53fad144654e3e9ff3b68d3e3aca","signature":"75aa024e8b4dd2fced3728e363234c060e4b08201db7a9ee148ebef63d4cbadb"},{"version":"c6529f1dd4f469e64dacb1848e7e06313f1194681ce0e876e62c8ab69032b88b","signature":"a96bd3c10373407c6baed7e98dde2874c335e15dca119b6df0aea46080212932"},"c8d95250c2c33fce1284e2bdebe87b5f841d14a3e47f6d9bd4b52d555437f16f",{"version":"80e47e9330f37a333b24b66ccff96bc323105ac5bdbb421e4eacebb53a82de70","signature":"2caa0fe9101d333edbc735ab69b9f9e4d2809d4affa4fbbc90ebb399debdf965"},"6c0bb5aaf989e6ca53e841e3659c2022648a5156e4c8b13c9cadef0811747f79","824b5b9ddde4d85aca20f2b83fc1f9bc0e7f920d59a6f44c97f5146915ea0c07","912ed7d844d84c9b932a2e867e83f4642c58765d7c6e4e381fdc42b8ca2adbcd",{"version":"2b2ea1103c10668cd4e703d7d68c086c2fea56d41cc45aadcd410198f192c3c6","signature":"ac61bbf4646cac282c1b851ba97026565449d0a4e073e0f184f364fe4c123e80"},{"version":"834bd2149bb1ed6b3b06c16a1b7a60f65c7f37773faf94c69ecad757b88fed70","signature":"a18ce8de91ed7a239027bc452f7e8780a8d199dd305b1c4f4f81338a2d5c1e87"},{"version":"2548acc62b46c4e83ddcc307fbd96197ec66eeb96532356618e196c6f3cd63c5","signature":"89a82263fa273d14271a6ff8d12f491f7dd3699cb15bda054dd605e476a64ef5"},{"version":"3023a9dd1395f8b0b2faf63b4499e51245865b99d6c00007aa9637190e4128d2","signature":"a115596127585b897d9db9c1a6a9475fef0833ffb8e2ca8245c0260d12ca5899"},{"version":"9ec96a65c8e39457e89999554d779eb7fa55d081f74a74dd243e9acb248a1189","signature":"501ae3d4207246df39edbca26a130496e436e65a5df08667f747b13a2f477ec6"},"d484e86eea08f99ff45d0be0eac549cd6c7f35b73a6ebb326fef7b139c49261b","30e8451280b91dc54fccda397b4c740a91c3bf38945a424bb2071b88d07e8b0a","3fb9c2775948463ddc4c9b58d27b0cccb2312ec7ca1013a6b17c5bdd31fb2187","7e0d06d3d089799d382b8d79a7b6ee439cddfc49196925205414a08a7ca3990a",{"version":"6b05a6a8b6967204fb5d6268c0800ea7d7e85c055f5c56029d8f277b76379cdd","signature":"6fc50cf64bb23f280f1b830eff2b1d79f930fcddb558509ffb3267dacd3b62d7"},"31364966b995a47b4265b4e10b3595526edf2c1cee39533c71168a9b0fbfb19d","49924b0b585b8ee2dc6200b0b7496e46f7100770b6a6550f9bde30cb6a2e258c",{"version":"753400160fd2200366ceb1d6dfbe3320c178efeb45cb352da3ab5a80f336f3e9","signature":"66b257a369914b183b6c5e1e645fb5c2b22f76b211d893a58c66b3aafd3777f1"},"3c0aba5da8d05fb5849d2d8c7371cc0d5059f7e9b677b38428c840f61d0c9d5b","1d07436b9c7d67bed895a7dd62cbf2f50df0926d873fcfea7732dddd15a31ae1",{"version":"ffb9464ee32ba5c23268cdfa88340e238082ae584f594896ac42b27936906177","signature":"3855f37575b32e6b8f3898c7bb2ca800398802bdc1ad4f76df0484b092071cd6"},"242914f7a5bf6e4279c46a431683980a9858b55d2a89d89ac986dd1549627426","67750900603c03e2aeb316f2a19a1eb5402e11df61ce4b327f2ab025b5c4be5d","0c35c07d886c588ca96fd2ac5f0576c10316fc6e50a4f0862251162f41244af2",{"version":"91a9d0dc2ee0c383ff79e6674367329f5888ff3a34be2a3dcb00ff299aeef35c","signature":"25f92ea685a767483f6282fad7ce21410412cf8413c1d3666ad9af9fe7ba8f61"},{"version":"be833a0104c5c8e9db3fe46ab75fdb541a88fa1e55b4f7646172c4e14207f066","signature":"a6a9c7cf10b36cc5081065b93d4126d83cdb1f60b098581bed118384f7baa451"},"f30f77149139a6be3766f2db47f96fd175dd186313e7b6c51e4643ac39794a6d","96cb8bfd5e1b3e326f487db44cde59a77d5efd2c7b3268c0d4f44b94fdcbc3f3","1a4015e82f81cd075cc3d4174e812dc40786bd72c50e3c4991e29a945ea0ae16","daaaedb2ab7955bd28d0068fb7b84990771d76384b51d1eb960895a6589e7383","57ee4dbe0cf89d22c13415f192610230717b856939d42b255823b11f5f8077b5","e7f7ad6d4e3f39574f33140b53d62223554146770c950786a6a7d984172a1968","89fc154ddc4f1d5bde9f3096daaad3b6509747b62fc3688a5722570647dde021","c00df3a96b92b68f891e8203adce12a77e55db3b5aeefbb1206570edbcb27ac8","d807ddd0b087b423bb7f0bdb4863e6c9953020da6f45437ecc450060b672496d","fc02c8acfb65b0479e01eec792344c8930fb362aae523c6cfb068ee68d3c2d04","7e1795cd9405cfe599d2a08c2ab8b27c4199872c6996882cdf7509332cb3cac3","6fc2b7c056fc5a4fab2cda7f12d5e1117189ba66974a0d4bd300fca0494069f0","13e7ce31a323e5768142dd6a8e6722a0829444143b6604505cd52357fa434c5a","057311339a3d533a02b06094b15643eeecc9f50e11a3e6b41d705654c24ec8e4","f121d5ca2164a2aedde1abc913db36e1e7002846560b8e09a87cc349bc1f27d9","03fe48ae3a88a53a1ab02a8c54e2ecdcf5a496125f1369999a68f29b12091b7f","30014aedc5a0c637b187190e9a9d2f2ad16e7995bdbe77723442fad3f6edcacf","eaa5d7e585f8d38fdc60261502881a54b6271c5a30468b401f1a54d70b1ab839","60046eee785424cc84b29e37df8b0739680be9075d5593f8e47f16d0d2d6d698","24f236bb92b119d3fa7391f97bb6e245d5e590018ee7d5ade3f3e1e4428e2fc8","64fc8f83f616af8bd5dd0536aa888bc54f3f78c76606144fa161f8f0f91ca8d8","15c4f4bbaa4b9c8c87b3d676f4971da1c50bd7d0cc5ce95245f20e560182a55f","c1b4b85b6dfe75325d249e763b4c835218ca336598f274d4b240d8a4bbfa2454",{"version":"8ff990ee906fadb637e6480a7040b06738c0f3626257093a95c44894018df700","signature":"e3b85d65af286db17572bd404d3d4720a5fc6385d729df6699638c8ac073ce9b"},{"version":"46a20810952d2a9e8a170398e1bfe7d348a8870da91f293268fa050b2f79f32a","signature":"abbd9e536adc3d8d8890017b7ee94f52c246dfa60e4052028cbc8e85dab20ca8"},{"version":"18f006e7380b14585bfff93fa9f2d629e329a3e745affb25770da1d8e913c0df","signature":"66bccfc5b8358b3934caf4997d8a9a8257eef6cfd7781fa4311c15c6ece0e398"},{"version":"9ea7d0074517d549db36bf52f755aab4b66f7310d60251a80061fef97f4e6de2","signature":"f75ed4001a92554f813badd9486e5efacb5785f78571c68496e7ce222b1d4d61"},{"version":"858145b02005b61f0675a3fa2ab9557f834dbb7523a533afa28aef665115cf54","signature":"33ab1a593478120c9bb55f8f5231883cc34054577831e2304a1cb957a9a09458"},{"version":"8c1e520ad56250c5dbcbdc1cf05dfdb339f119e50b67b8f3553f3a090feb2748","signature":"dbeb115f3593f8e7e80a0b06c12c92140198bad9ea4cb13e831c3b53e70863bd"},"ee70ab6700186ebe597963119bd63bd3c9d0230c0d137c7dad8b9a2cb6afc629","12e65dea0fad953d453eaab41b15808552f50d99c0d5181bf55e540b89af09d7","97e0fe27ea413e79bb2b76721eb4bef93f8b6c130de69a79d6739444ba7a4079","8a876f161417bc675dfa413c324362dafa6a95a8d24660fee994cd12fb429616","c827805d423f217de1c2562e5f982d1ab880bbd350a67d268f2751c444bc804b","334e2f04b6b775998676a0b92db1010b1e0c6e9f235a23935789a7fcb914db43","a3e06486315a5d6aca5c6c51ad338591c46a9abb9f032c0a880f4fc23c58990d","c7c020aeacc3fd98752a976508579f3d207f811307993be26a0ca0f4c72d9c3e","3154aae94a314b670d4ca825e7089fc4f4c4e31db5473367dfed10ce93ae68f8","4e246414756d2471a5f57ec9b83245524d44ece2ef79d869b5a531208add6780","8e7fbcd85a88cff952bfddf018a878437ff3721a3ef9d5a82e4aa33540fd166c","99cff8d8ecff76cf6d2c01c36a67fbf7961122748c07020d11f17b5e15f64422","f9261b84d8004d9f496ef8e6e6801aea969a451cca6809fb014c9ef6ee2c4b4c","717c85e439a2e28054138caa84613aa81252448a4a9f4f4c8e66cf430f399cf9","58b560202bde6e8c9ab6f5257ffaa81eee63eeadf3d112acce1acef76ed7a9cf","b2880926ee002e26613daa950b99eaaf54767e88c02d6019b545a0b787e03eaf","c8792295a56e3f685129308d41efab07e27f267f0947cd817cb9f4a7617663de","948355e572a01fac5781b65489e7c0ac98656f760ed3ad57721a55a344d1315e","9ebbaba0e0405c1de896520d4fb403abf8d8ee72d26f002d4ae880b04e3fe504","3f330b6ffb4b66966103db9aec9228228e109aea2d14366f04b12222dc1d3361","e4e14f80a180dbdad64eef8f0700e2cd5ce49dce687d2f565552044bf3b70a99","7ed03aac31eba23b636b60ac2a346c05e7d1c1624e4f3b060fc8273de5770851","1d0455ddcb4af33500472e8f5085a971f07706347a0ca230af85d0db87e46bd6","96af48f58c93f75f41576b49d8f8a3f6bcdee294d9e3f6579eea742d95d8dd1c","3f7013acbcc83982dbc09a9c77e1453482d6209f3cb48b0db293002ee2553b1c","d89abed9cc3462bfbc92b43a96a9efa48286a06bf6816a79d2d91178c0f0bf55","8401397ae7b67ac7994bec9f9d6ddbacd5b40203af5646e2a05986b0174d1d31","27315fbee0aee7886e5991a8b2edbb693ae53d332c4fd1bd8f510aa8e3096feb","c2d455a045f1bc5de7ef50102f4916f6e4b6c948ffc861c313f473fc1da5b6c0","48f3e2543105da93484b51b1979764f345befa92e4d2031109cf2297739c3c95","528e7087c8e41701cd1af78e52bdc107553eeb44245885c5cd92b2dd3209a6b4","b08950d68c97431fb98c2f6faa5da8b012d49145559c8218416be5ec3214c521","2f2275fb011f92825710c151ae9cd29d9aa1dedbcd99fcdd412dbbe644757e4d","6477985c5202f923b093ef846f6419b9ad622e4a8f8622ebe48f84baadaa3e16","8097775a576145e0f19952e0d6e40ada6b8d05a34b324ec8278e8ee45c8b1723","1d9c1b01bf97e67e186f94aa133d4611bd5fc581968ed2aad913009cc0ea9005","a056a887393061b50c78c9216fa368b498bc6bade79ed32f00afd142bdc78ef8","fded4150da5c204dd68ce7603bc36950d6a24f7768d7848df3ff232889213616","6e2cbb13f526e6f7c70ea3a4bdc9634301f018fa3965f2dde7f1d37a8e5c7e9c","2fd3c27eab8f2e941560b8f1d9b2480d558a3bfecb9f7450478a758c9ce96cb0","6e51a400a1bfb0d2a9dc4432fb4577001f02dada8caa68b357d2afa4e8f0d751",{"version":"34044e99c4c314c5d766a85590d3e2596fe428abb25d97fc395359ac029ea688","signature":"eb8a29953c7787e6d5b06d40598677fd0be33e1cdedfc90f193f09861e85b86d"},{"version":"f2ee2ff2e183e54192b225bed4daf64f61d17157016667eba601fbe0245da9c2","signature":"0d6d1e08027b3d4f75f033dbdbe6c0653456c54254b04b8ca3bf671e68d2f45c"},{"version":"570653792153bde68fbf85ae6cff544f9db76473032d68da9979b925585b9f2d","signature":"bfe259a60c63ef4b39bb8a46f33f13706b3dbdd471d7c025c0cbc23e539813be"},{"version":"b1547b3cd6fc265f1bdd39eff91bc2bd48356b17c1b6d6bfc8721456915e5cd3","signature":"91ab44bb9875877c7be931c1788f42ffa2e5d2df813723af430903f14f1b78a5"},{"version":"1ad30d698afc59d15209dcfa6c9dae95b699f2420d8a14f57458190b9af2b812","signature":"1ff2997cebb89533ea5b436d2d1665ba8cfca667442509ee97c0e9ce97d7d183"},{"version":"1b94468bf479e03ec1de34d046643e4b7346baf4d58dd490bb2209c3868772ed","signature":"37c5b5012e54983ea8eeb035b573a78528747a5bd41439359ccede0ce2e37dca"},{"version":"5445469774e6da25c888172952430addb264d252110626a5129e3d543a7e5adb","signature":"8855e67b5a208871ed6b83fe64f4c1c0dfdcbce464d11881e05478b6dd557474"},"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","34ec1daf3566f26c43dbab380af0de1aac29166e57e4f9ef379a2f154e0cb290","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"2f60ac046e587e917d739f1edc77540eb0ec34f83090dae4ebd5f96c1c9578d4","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","d4fc97ea27a8226c5429b73efe7f0d9d78c0269e2995f6dba8bac64fc1b132dc","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","29d613c3964ea75b2b4e0d17098245c34529282e9cc72b7e4eeb2a7b12c27cb7",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"82fc37849846a3a0264047621d5beb6ce2ddeb2f83bdee2c79523af3c3282d97","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d982cdd2610155b3cbcbfa62ccabcf2d2b739f821518ef113348d160ef0010d9","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"1de1ad6a1929317171d8cfcd55bb2732257680c1bf89bcd53e1d46a4d8dbda22","affectsGlobalScope":true}],"options":{"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":3,"module":99,"noEmitOnError":true,"outDir":"..","removeComments":false,"rootDir":"../../..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5},"fileIdsList":[[218,227],[81,218],[81,82,83,218],[218],[63,133,218],[63,218],[63,132,218],[63,132,133,218],[132,133,218],[132,218],[132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,218],[54,63,64,150,218],[63,150,151,218],[63,151,164,218],[150,151,152,153,154,155,156,157,158,159,160,161,162,163,165,218],[151,218],[63,151,218],[166,218],[150,218],[63,150,218],[126,218],[126,130,218],[126,127,128,129,130,131,218],[127,218],[218,229,231],[174,218],[177,218],[178,183,218],[179,189,190,197,206,217,218],[179,180,189,197,218],[181,218],[182,183,190,198,218],[183,206,214,218],[184,186,189,197,218],[185,218],[186,187,218],[188,189,218],[189,218],[189,190,191,206,217,218],[189,190,191,206,209,218],[218,222],[192,197,206,217,218],[189,190,192,193,197,206,214,217,218],[192,194,206,214,217,218],[174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224],[189,195,218],[196,217,218],[186,189,197,206,218],[198,218],[199,218],[177,200,218],[201,216,218,222],[202,218],[203,218],[189,204,218],[204,205,218,220],[189,206,207,208,209,218],[206,208,218],[206,207,218],[209,218],[210,218],[189,212,213,218],[212,213,218],[183,197,206,214,218],[215,218],[197,216,218],[178,192,203,217,218],[183,218],[206,218,219],[218,220],[218,221],[178,183,189,191,200,206,217,218,220,222],[206,218,223],[54,64,218],[57,218],[53,54,55,56,57,58,63,218],[59,60,61,62,218],[86,218],[73,74,218],[74,218],[89,218],[218,229],[218,226,230],[218,228],[92,93,218],[54,64,92,218],[54,64,107,108,109,110,111,112,113,218],[54,64,97,98,218],[54,61,63,64,218],[54,63,64,105,106,218],[54,63,64,104,218],[100,101,218],[63,97,99,100,103,105,218],[54,63,64,97,98,99,100,102,103,106,218],[97,98,100,103,107,108,110,111,113,114,115,116,117,118,218],[110,218],[63,97,110,115,218],[97,218],[63,110,115,218],[111,113,218],[65,66,67,68,218],[65,218],[78,122,124,125,168,169,170,172,218],[54,63,64,78,122,123,125,168,171,218],[63,122,218],[69,78,122,218],[54,64,78,120,122,218],[63,124,218],[63,69,122,124,218],[54,63,64,122,124,218],[63,78,122,124,167,218],[63,122,123,218],[54,64,72,76,218],[72,76,78,85,88,91,95,218],[84,218],[71,218],[87,218],[75,218],[90,218],[94,218],[119,218],[54,64,69,70,77,78,79,80,96,121,218],[78,218],[65,66,67,68],[65],[78,122,124,125,168,169,170,172],[54,63,64,78,122],[63,122],[78,122],[69,122],[122],[78],[84],[71],[87],[75],[90],[94],[166],[119],[69,78,79]],"referencedMap":[[228,1],[82,2],[83,2],[84,3],[81,4],[134,5],[139,6],[137,5],[136,5],[138,7],[135,8],[148,9],[149,10],[147,9],[146,9],[150,11],[133,7],[143,4],[144,4],[141,9],[140,8],[145,10],[142,9],[159,12],[152,13],[165,14],[164,6],[166,15],[156,16],[155,16],[157,17],[158,18],[151,19],[153,20],[163,4],[162,12],[161,4],[160,13],[154,6],[128,21],[127,21],[131,22],[129,21],[130,21],[132,23],[126,24],[227,4],[232,25],[174,26],[175,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,36],[187,36],[188,37],[189,38],[190,39],[191,40],[176,41],[224,4],[192,42],[193,43],[194,44],[225,45],[195,46],[196,47],[197,48],[198,49],[199,50],[200,51],[201,52],[202,53],[203,54],[204,55],[205,56],[206,57],[208,58],[207,59],[209,60],[210,61],[211,4],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[222,72],[223,73],[61,4],[55,4],[56,74],[57,75],[58,4],[53,4],[64,76],[54,74],[59,4],[63,77],[62,4],[226,4],[60,4],[71,4],[87,78],[86,4],[74,79],[73,4],[75,80],[90,81],[89,4],[230,82],[231,83],[229,84],[94,85],[93,86],[92,4],[114,87],[108,4],[99,88],[109,89],[101,4],[104,90],[105,91],[102,92],[106,93],[107,94],[119,95],[113,4],[97,4],[100,4],[98,4],[111,96],[116,97],[103,98],[115,4],[117,99],[110,74],[112,4],[118,100],[12,4],[11,4],[2,4],[13,4],[14,4],[15,4],[16,4],[17,4],[18,4],[19,4],[20,4],[3,4],[4,4],[24,4],[21,4],[22,4],[23,4],[25,4],[26,4],[27,4],[5,4],[28,4],[29,4],[30,4],[31,4],[6,4],[32,4],[33,4],[34,4],[35,4],[7,4],[36,4],[41,4],[42,4],[37,4],[38,4],[39,4],[40,4],[8,4],[46,4],[43,4],[44,4],[45,4],[47,4],[9,4],[48,4],[49,4],[50,4],[51,4],[1,4],[10,4],[52,4],[68,4],[69,101],[67,4],[70,102],[65,4],[66,4],[173,103],[172,104],[123,105],[171,106],[121,107],[170,108],[169,109],[125,110],[168,111],[124,112],[77,113],[96,114],[85,115],[72,116],[88,117],[76,118],[91,119],[95,120],[167,18],[120,121],[122,122],[79,123],[78,4],[80,4]],"exportedModulesMap":[[228,1],[82,2],[83,2],[84,3],[81,4],[134,5],[139,6],[137,5],[136,5],[138,7],[135,8],[148,9],[149,10],[147,9],[146,9],[150,11],[133,7],[143,4],[144,4],[141,9],[140,8],[145,10],[142,9],[159,12],[152,13],[165,14],[164,6],[166,15],[156,16],[155,16],[157,17],[158,18],[151,19],[153,20],[163,4],[162,12],[161,4],[160,13],[154,6],[128,21],[127,21],[131,22],[129,21],[130,21],[132,23],[126,24],[227,4],[232,25],[174,26],[175,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,36],[187,36],[188,37],[189,38],[190,39],[191,40],[176,41],[224,4],[192,42],[193,43],[194,44],[225,45],[195,46],[196,47],[197,48],[198,49],[199,50],[200,51],[201,52],[202,53],[203,54],[204,55],[205,56],[206,57],[208,58],[207,59],[209,60],[210,61],[211,4],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[222,72],[223,73],[61,4],[55,4],[56,74],[57,75],[58,4],[53,4],[64,76],[54,74],[59,4],[63,77],[62,4],[226,4],[60,4],[71,4],[87,78],[86,4],[74,79],[73,4],[75,80],[90,81],[89,4],[230,82],[231,83],[229,84],[94,85],[93,86],[92,4],[114,87],[108,4],[99,88],[109,89],[101,4],[104,90],[105,91],[102,92],[106,93],[107,94],[119,95],[113,4],[97,4],[100,4],[98,4],[111,96],[116,97],[103,98],[115,4],[117,99],[110,74],[112,4],[118,100],[12,4],[11,4],[2,4],[13,4],[14,4],[15,4],[16,4],[17,4],[18,4],[19,4],[20,4],[3,4],[4,4],[24,4],[21,4],[22,4],[23,4],[25,4],[26,4],[27,4],[5,4],[28,4],[29,4],[30,4],[31,4],[6,4],[32,4],[33,4],[34,4],[35,4],[7,4],[36,4],[41,4],[42,4],[37,4],[38,4],[39,4],[40,4],[8,4],[46,4],[43,4],[44,4],[45,4],[47,4],[9,4],[48,4],[49,4],[50,4],[51,4],[1,4],[10,4],[52,4],[69,124],[70,125],[173,126],[172,127],[123,128],[171,129],[121,129],[169,130],[125,131],[168,129],[124,131],[96,132],[85,133],[72,134],[88,135],[76,136],[91,137],[95,138],[167,139],[120,140],[122,141],[79,132]],"semanticDiagnosticsPerFile":[228,82,83,84,81,134,139,137,136,138,135,148,149,147,146,150,133,143,144,141,140,145,142,159,152,165,164,166,156,155,157,158,151,153,163,162,161,160,154,128,127,131,129,130,132,126,227,232,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,224,192,193,194,225,195,196,197,198,199,200,201,202,203,204,205,206,208,207,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,61,55,56,57,58,53,64,54,59,63,62,226,60,71,87,86,74,73,75,90,89,230,231,229,94,93,92,114,108,99,109,101,104,105,102,106,107,119,113,97,100,98,111,116,103,115,117,110,112,118,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,36,41,42,37,38,39,40,8,46,43,44,45,47,9,48,49,50,51,1,10,52,68,69,67,70,65,66,173,172,123,171,121,170,169,125,168,124,77,96,85,72,88,76,91,95,167,120,122,79,78,80]},"version":"4.7.4"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "posthog-react-native",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"main": "lib/posthog-react-native/index.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"lib/"
|
|
@@ -59,6 +59,9 @@
|
|
|
59
59
|
},
|
|
60
60
|
"react-native-device-info": {
|
|
61
61
|
"optional": true
|
|
62
|
+
},
|
|
63
|
+
"react-native-navigation": {
|
|
64
|
+
"optional": true
|
|
62
65
|
}
|
|
63
66
|
}
|
|
64
67
|
}
|