posthog-react-native 2.3.0 → 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 CHANGED
@@ -1,8 +1,15 @@
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
+
1
7
  # 2.3.0 - 2022-1-26
2
8
 
3
- 1. uses v3 decide endpoint
9
+ 1. uses v3 decide endpoint
4
10
  2. JSON payloads will be returned with feature flags
5
11
  3. Feature flags will gracefully fail and optimistically save evaluated flags if server is down
12
+
6
13
  # 2.2.3 - 2023-01-25
7
14
 
8
15
  - Ensures the distinctId used in `.groupIdentify` is the same as the currently identified user
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
@@ -6,8 +6,9 @@ export interface PostHogProviderProps {
6
6
  children: React.ReactNode;
7
7
  options?: PostHogOptions;
8
8
  apiKey?: string;
9
- client?: PostHog;
9
+ client?: PostHog | Promise<PostHog>;
10
10
  autocapture?: boolean | PostHogAutocaptureOptions;
11
+ debug?: boolean;
11
12
  style?: StyleProp<ViewStyle>;
12
13
  }
13
- export declare const PostHogProvider: ({ children, client, options, apiKey, autocapture, style, }: PostHogProviderProps) => JSX.Element | null;
14
+ export declare const PostHogProvider: ({ children, client, options, apiKey, autocapture, style, debug, }: PostHogProviderProps) => JSX.Element | null;
@@ -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;var _a,_b;var _useState=(0,_react.useState)(client),_useState2=(0,_slicedToArray2["default"])(_useState,2),posthog=_useState2[0],setPosthog=_useState2[1];(0,_react.useEffect)(function(){if(apiKey&&!posthog){_posthogRn.PostHog.initAsync(apiKey,options).then(setPosthog);}},[apiKey]);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));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:39,columnNumber:13}},_react["default"].createElement(_PosthogContext.PostHogContext.Provider,{value:{client:posthog},__self:_this,__source:{fileName:_jsxFileName,lineNumber:40,columnNumber:7}},_react["default"].createElement(_react["default"].Fragment,null,captureScreens?_react["default"].createElement(PostHogNavigationHook,{options:autocaptureOptions,__self:_this,__source:{fileName:_jsxFileName,lineNumber:42,columnNumber:29}}):null,captureLifecycle?_react["default"].createElement(PostHogLifecycleHook,{__self:_this,__source:{fileName:_jsxFileName,lineNumber:43,columnNumber:31}}):null),children));};exports.PostHogProvider=PostHogProvider;
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":"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"}
1
+ {"version":3,"file":"PostHogProvider.js","sourceRoot":"","sources":["../../../src/PostHogProvider.tsx"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- "use strict";var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.autocaptureFromTouchEvent=void 0;var _typeof2=_interopRequireDefault(require("@babel/runtime/helpers/typeof"));function _createForOfIteratorHelper(o,allowArrayLike){var it=typeof Symbol!=="undefined"&&o[Symbol.iterator]||o["@@iterator"];if(!it){if(Array.isArray(o)||(it=_unsupportedIterableToArray(o))||allowArrayLike&&o&&typeof o.length==="number"){if(it)o=it;var i=0;var F=function F(){};return{s:F,n:function n(){if(i>=o.length)return{done:true};return{done:false,value:o[i++]};},e:function e(_e){throw _e;},f:F};}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}var normalCompletion=true,didErr=false,err;return{s:function s(){it=it.call(o);},n:function n(){var step=it.next();normalCompletion=step.done;return step;},e:function e(_e2){didErr=true;err=_e2;},f:function f(){try{if(!normalCompletion&&it["return"]!=null)it["return"]();}finally{if(didErr)throw err;}}};}function _unsupportedIterableToArray(o,minLen){if(!o)return;if(typeof o==="string")return _arrayLikeToArray(o,minLen);var n=Object.prototype.toString.call(o).slice(8,-1);if(n==="Object"&&o.constructor)n=o.constructor.name;if(n==="Map"||n==="Set")return Array.from(o);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return _arrayLikeToArray(o,minLen);}function _arrayLikeToArray(arr,len){if(len==null||len>arr.length)len=arr.length;for(var i=0,arr2=new Array(len);i<len;i++){arr2[i]=arr[i];}return arr2;}var flattenStyles=function flattenStyles(styles){var flattened={};if(Array.isArray(styles)){var _iterator=_createForOfIteratorHelper(styles),_step;try{for(_iterator.s();!(_step=_iterator.n()).done;){var style=_step.value;Object.assign(flattened,flattenStyles(style));}}catch(err){_iterator.e(err);}finally{_iterator.f();}}else{Object.assign(flattened,styles);}return flattened;};var stringifyStyle=function stringifyStyle(styles){var flattened=flattenStyles(styles);var str=Object.keys(flattened).map(function(x){return"".concat(x,":").concat(flattened[x]);}).join(';');return str;};var sanitiseLabel=function sanitiseLabel(label){return label.replace(/[^a-z0-9]+/gi,'-');};var autocaptureFromTouchEvent=function autocaptureFromTouchEvent(e,posthog){var options=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{};var _a,_b;var _options$noCapturePro=options.noCaptureProp,noCaptureProp=_options$noCapturePro===void 0?'ph-no-capture':_options$noCapturePro,_options$customLabelP=options.customLabelProp,customLabelProp=_options$customLabelP===void 0?'ph-label':_options$customLabelP,_options$maxElementsC=options.maxElementsCaptured,maxElementsCaptured=_options$maxElementsC===void 0?20:_options$maxElementsC,_options$ignoreLabels=options.ignoreLabels,ignoreLabels=_options$ignoreLabels===void 0?[]:_options$ignoreLabels,_options$propsToCaptu=options.propsToCapture,propsToCapture=_options$propsToCaptu===void 0?['style','testID','accessibilityLabel','ph-label']:_options$propsToCaptu;if(!e._targetInst){return;}var elements=[];var currentInst=e._targetInst;var _loop=function _loop(){var el={tag_name:''};var props=currentInst.memoizedProps;if(props===null||props===void 0?void 0:props[noCaptureProp]){return{v:void 0};}if(props){Object.keys(props).forEach(function(key){if(!propsToCapture.includes(key)){return;}var value=props[key];if(key==='style'){el.attr__style=stringifyStyle(value);}else if(['string','number','boolean'].includes((0,_typeof2["default"])(value))){if(key==='children'){el.$el_text=typeof value==='string'?value:JSON.stringify(value);}else{el["attr__".concat(key)]=value;}}});}var label=typeof(props===null||props===void 0?void 0:props[customLabelProp])!=='undefined'?"".concat(props[customLabelProp]):((_a=currentInst.elementType)===null||_a===void 0?void 0:_a.displayName)||((_b=currentInst.elementType)===null||_b===void 0?void 0:_b.name);if(label&&!ignoreLabels.includes(label)){el.tag_name=sanitiseLabel(label);elements.push(el);}currentInst=currentInst["return"];};while(currentInst&&elements.length<maxElementsCaptured){var _ret=_loop();if((0,_typeof2["default"])(_ret)==="object")return _ret.v;}if(elements.length){posthog.autocapture('touch',elements,{$touch_x:e.nativeEvent.pageX,$touch_y:e.nativeEvent.pageY});}};exports.autocaptureFromTouchEvent=autocaptureFromTouchEvent;
1
+ "use strict";var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.autocaptureFromTouchEvent=void 0;var _typeof2=_interopRequireDefault(require("@babel/runtime/helpers/typeof"));function _createForOfIteratorHelper(o,allowArrayLike){var it=typeof Symbol!=="undefined"&&o[Symbol.iterator]||o["@@iterator"];if(!it){if(Array.isArray(o)||(it=_unsupportedIterableToArray(o))||allowArrayLike&&o&&typeof o.length==="number"){if(it)o=it;var i=0;var F=function F(){};return{s:F,n:function n(){if(i>=o.length)return{done:true};return{done:false,value:o[i++]};},e:function e(_e){throw _e;},f:F};}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}var normalCompletion=true,didErr=false,err;return{s:function s(){it=it.call(o);},n:function n(){var step=it.next();normalCompletion=step.done;return step;},e:function e(_e2){didErr=true;err=_e2;},f:function f(){try{if(!normalCompletion&&it["return"]!=null)it["return"]();}finally{if(didErr)throw err;}}};}function _unsupportedIterableToArray(o,minLen){if(!o)return;if(typeof o==="string")return _arrayLikeToArray(o,minLen);var n=Object.prototype.toString.call(o).slice(8,-1);if(n==="Object"&&o.constructor)n=o.constructor.name;if(n==="Map"||n==="Set")return Array.from(o);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return _arrayLikeToArray(o,minLen);}function _arrayLikeToArray(arr,len){if(len==null||len>arr.length)len=arr.length;for(var i=0,arr2=new Array(len);i<len;i++){arr2[i]=arr[i];}return arr2;}var flattenStyles=function flattenStyles(styles){var flattened={};if(Array.isArray(styles)){var _iterator=_createForOfIteratorHelper(styles),_step;try{for(_iterator.s();!(_step=_iterator.n()).done;){var style=_step.value;Object.assign(flattened,flattenStyles(style));}}catch(err){_iterator.e(err);}finally{_iterator.f();}}else{Object.assign(flattened,styles);}return flattened;};var stringifyStyle=function stringifyStyle(styles){var flattened=flattenStyles(styles);var str=Object.keys(flattened).map(function(x){return"".concat(x,":").concat(flattened[x]);}).join(';');return str;};var sanitiseLabel=function sanitiseLabel(label){return label.replace(/[^a-z0-9]+/gi,'-');};var autocaptureFromTouchEvent=function autocaptureFromTouchEvent(e,posthog){var options=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{};var _a,_b;var _options$noCapturePro=options.noCaptureProp,noCaptureProp=_options$noCapturePro===void 0?'ph-no-capture':_options$noCapturePro,_options$customLabelP=options.customLabelProp,customLabelProp=_options$customLabelP===void 0?'ph-label':_options$customLabelP,_options$maxElementsC=options.maxElementsCaptured,maxElementsCaptured=_options$maxElementsC===void 0?20:_options$maxElementsC,_options$ignoreLabels=options.ignoreLabels,ignoreLabels=_options$ignoreLabels===void 0?[]:_options$ignoreLabels,_options$propsToCaptu=options.propsToCapture,propsToCapture=_options$propsToCaptu===void 0?['style','testID','accessibilityLabel','ph-label','children']:_options$propsToCaptu;if(!e._targetInst){return;}var elements=[];var currentInst=e._targetInst;var _loop=function _loop(){var el={tag_name:''};var props=currentInst.memoizedProps;if(props===null||props===void 0?void 0:props[noCaptureProp]){return{v:void 0};}if(props){Object.keys(props).forEach(function(key){if(!propsToCapture.includes(key)){return;}var value=props[key];if(key==='style'){el.attr__style=stringifyStyle(value);}else if(['string','number','boolean'].includes((0,_typeof2["default"])(value))){if(key==='children'){el.$el_text=typeof value==='string'?value:JSON.stringify(value);}else{el["attr__".concat(key)]=value;}}});}var label=typeof(props===null||props===void 0?void 0:props[customLabelProp])!=='undefined'?"".concat(props[customLabelProp]):((_a=currentInst.elementType)===null||_a===void 0?void 0:_a.displayName)||((_b=currentInst.elementType)===null||_b===void 0?void 0:_b.name);if(label&&!ignoreLabels.includes(label)){el.tag_name=sanitiseLabel(label);elements.push(el);}currentInst=currentInst["return"];};while(currentInst&&elements.length<maxElementsCaptured){var _ret=_loop();if((0,_typeof2["default"])(_ret)==="object")return _ret.v;}if(elements.length){posthog.autocapture('touch',elements,{$touch_x:e.nativeEvent.pageX,$touch_y:e.nativeEvent.pageY});}};exports.autocaptureFromTouchEvent=autocaptureFromTouchEvent;
@@ -1 +1 @@
1
- {"version":3,"file":"autocapture.js","sourceRoot":"","sources":["../../../src/autocapture.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"autocapture.js","sourceRoot":"","sources":["../../../src/autocapture.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import { PostHog } from '../posthog-rn';
2
+ import { PostHogAutocaptureOptions } from '../types';
3
+ export declare const withReactNativeNavigation: (posthog: PostHog, options?: PostHogAutocaptureOptions) => boolean;
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.withReactNativeNavigation=void 0;var _reactNative=require("react-native");var _OptionalReactNativeNavigationWix=require("../optional/OptionalReactNativeNavigationWix");var withReactNativeNavigation=function withReactNativeNavigation(posthog){var options=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};if(!_OptionalReactNativeNavigationWix.OptionalReactNativeNavigationWix){return false;}var Navigation=_OptionalReactNativeNavigationWix.OptionalReactNativeNavigationWix.Navigation;var trackLifecycle=function trackLifecycle(){var _a;if(!((_a=options.captureLifecycleEvents)!==null&&_a!==void 0?_a:true)){return;}posthog.capture('Application Opened');_reactNative.AppState.addEventListener('change',function(nextAppState){switch(nextAppState){case'active':return posthog.capture('Application Became Active');case'background':return posthog.capture('Application Backgrounded');default:return;}});};trackLifecycle();Navigation.events().registerComponentDidAppearListener(function(_ref){var componentName=_ref.componentName,passProps=_ref.passProps;var _a,_b,_c,_d,_e;if(!((_a=options.captureScreens)!==null&&_a!==void 0?_a:true)){return;}var currentRouteName=((_c=(_b=options===null||options===void 0?void 0:options.navigation)===null||_b===void 0?void 0:_b.routeToName)===null||_c===void 0?void 0:_c.call(_b,componentName,passProps||{}))||componentName||'Unknown';if(currentRouteName){var properties=(_e=(_d=options===null||options===void 0?void 0:options.navigation)===null||_d===void 0?void 0:_d.routeToProperties)===null||_e===void 0?void 0:_e.call(_d,currentRouteName,passProps||{});posthog.screen(currentRouteName,properties);}});return true;};exports.withReactNativeNavigation=withReactNativeNavigation;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wix-navigation.js","sourceRoot":"","sources":["../../../../src/frameworks/wix-navigation.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAA;AACvC,OAAO,EAAE,gCAAgC,EAAE,MAAM,8CAA8C,CAAA;AAI/F,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,OAAgB,EAAE,UAAqC,EAAE,EAAW,EAAE;IAC9G,IAAI,CAAC,gCAAgC,EAAE;QACrC,OAAO,KAAK,CAAA;KACb;IAED,MAAM,UAAU,GAAG,gCAAgC,CAAC,UAAU,CAAA;IAE9D,sCAAsC;IACtC,MAAM,cAAc,GAAG,GAAS,EAAE;;QAChC,IAAI,CAAC,CAAC,MAAA,OAAO,CAAC,sBAAsB,mCAAI,IAAI,CAAC,EAAE;YAC7C,OAAM;SACP;QAED,OAAO,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAA;QAErC,QAAQ,CAAC,gBAAgB,CAAC,QAAQ,EAAE,CAAC,YAAY,EAAE,EAAE;YACnD,QAAQ,YAAY,EAAE;gBACpB,KAAK,QAAQ;oBACX,OAAO,OAAO,CAAC,OAAO,CAAC,2BAA2B,CAAC,CAAA;gBACrD,KAAK,YAAY;oBACf,OAAO,OAAO,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAA;gBACpD;oBACE,OAAM;aACT;QACH,CAAC,CAAC,CAAA;IACJ,CAAC,CAAA;IAED,cAAc,EAAE,CAAA;IAEhB,uCAAuC;IACvC,UAAU,CAAC,MAAM,EAAE,CAAC,kCAAkC,CAAC,CAAC,EAAE,aAAa,EAAE,SAAS,EAAE,EAAE,EAAE;;QACtF,IAAI,CAAC,CAAC,MAAA,OAAO,CAAC,cAAc,mCAAI,IAAI,CAAC,EAAE;YACrC,OAAM;SACP;QAED,MAAM,gBAAgB,GACpB,CAAA,MAAA,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,UAAU,0CAAE,WAAW,mDAAG,aAAa,EAAE,SAAS,IAAI,EAAE,CAAC,KAAI,aAAa,IAAI,SAAS,CAAA;QAElG,IAAI,gBAAgB,EAAE;YACpB,MAAM,UAAU,GAAG,MAAA,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,UAAU,0CAAE,iBAAiB,mDAAG,gBAAgB,EAAE,SAAS,IAAI,EAAE,CAAC,CAAA;YAC9F,OAAO,CAAC,MAAM,CAAC,gBAAgB,EAAE,UAAU,CAAC,CAAA;SAC7C;IACH,CAAC,CAAC,CAAA;IAEF,OAAO,IAAI,CAAA;AACb,CAAC,CAAA"}
@@ -0,0 +1,2 @@
1
+ import type ReactNativeNavigationWix from 'react-native-navigation';
2
+ export declare let OptionalReactNativeNavigationWix: typeof ReactNativeNavigationWix | undefined;
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.OptionalReactNativeNavigationWix=void 0;var OptionalReactNativeNavigationWix=undefined;exports.OptionalReactNativeNavigationWix=OptionalReactNativeNavigationWix;try{exports.OptionalReactNativeNavigationWix=OptionalReactNativeNavigationWix=require('react-native-navigation');}catch(e){}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OptionalReactNativeNavigationWix.js","sourceRoot":"","sources":["../../../../src/optional/OptionalReactNativeNavigationWix.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,IAAI,gCAAgC,GAAgD,SAAS,CAAA;AAEpG,IAAI;IACF,gCAAgC,GAAG,OAAO,CAAC,yBAAyB,CAAC,CAAA;CACtE;AAAC,OAAO,CAAC,EAAE,GAAE"}
@@ -1,6 +1,6 @@
1
1
  import { PostHogCore, PosthogCoreOptions, PostHogFetchOptions, PostHogFetchResponse, PostHogPersistedProperty } from '../../posthog-core/src';
2
2
  import { SemiAsyncStorage } from './storage';
3
- import { PostHogCustomAppProperties, PostHogCustomAsyncStorage } from './types';
3
+ import { PostHogAutocaptureOptions, PostHogCustomAppProperties, PostHogCustomAsyncStorage } from './types';
4
4
  export declare type PostHogOptions = PosthogCoreOptions & {
5
5
  persistence?: 'memory' | 'file';
6
6
  customAppProperties?: PostHogCustomAppProperties;
@@ -22,4 +22,5 @@ export declare class PostHog extends PostHogCore {
22
22
  getCustomUserAgent(): void;
23
23
  getCommonEventProperties(): any;
24
24
  screen(name: string, properties?: any): this;
25
+ initReactNativeNavigation(options: PostHogAutocaptureOptions): boolean;
25
26
  }
@@ -1 +1 @@
1
- "use strict";var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.PostHog=void 0;var _regenerator=_interopRequireDefault(require("@babel/runtime/regenerator"));var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _defineProperty2=_interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));var _classCallCheck2=_interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));var _createClass2=_interopRequireDefault(require("@babel/runtime/helpers/createClass"));var _get2=_interopRequireDefault(require("@babel/runtime/helpers/get"));var _inherits2=_interopRequireDefault(require("@babel/runtime/helpers/inherits"));var _possibleConstructorReturn2=_interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));var _getPrototypeOf2=_interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));var _reactNative=require("react-native");var _src=require("../../posthog-core/src");var _storageMemory=require("../../posthog-core/src/storage-memory");var _legacy=require("./legacy");var _storage=require("./storage");var _version=require("./version");var _nativeDeps=require("./native-deps");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;}function _createSuper(Derived){var hasNativeReflectConstruct=_isNativeReflectConstruct();return function _createSuperInternal(){var Super=(0,_getPrototypeOf2["default"])(Derived),result;if(hasNativeReflectConstruct){var NewTarget=(0,_getPrototypeOf2["default"])(this).constructor;result=Reflect.construct(Super,arguments,NewTarget);}else{result=Super.apply(this,arguments);}return(0,_possibleConstructorReturn2["default"])(this,result);};}function _isNativeReflectConstruct(){if(typeof Reflect==="undefined"||!Reflect.construct)return false;if(Reflect.construct.sham)return false;if(typeof Proxy==="function")return true;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}));return true;}catch(e){return false;}}var PostHog=function(_PostHogCore){(0,_inherits2["default"])(PostHog,_PostHogCore);var _super=_createSuper(PostHog);function PostHog(apiKey,options,storage){var _this;(0,_classCallCheck2["default"])(this,PostHog);_this=_super.call(this,apiKey,options);_this._memoryStorage=new _storageMemory.PostHogMemoryStorage();_this._appProperties={};_this._persistence=options===null||options===void 0?void 0:options.persistence;_this._appProperties=(options===null||options===void 0?void 0:options.customAppProperties)||(0,_nativeDeps.getAppProperties)();_this._semiAsyncStorage=storage||new _storage.SemiAsyncStorage((options===null||options===void 0?void 0:options.customAsyncStorage)||(0,_nativeDeps.buildOptimisiticAsyncStorage)());_reactNative.AppState.addEventListener('change',function(){_this.flush();});var setupFromStorage=function setupFromStorage(){_this.setupBootstrap(options);if(!_this._semiAsyncStorage.getItem(_src.PostHogPersistedProperty.AnonymousId)){(0,_legacy.getLegacyValues)().then(function(legacyValues){if(legacyValues===null||legacyValues===void 0?void 0:legacyValues.distinctId){_this._semiAsyncStorage.setItem(_src.PostHogPersistedProperty.DistinctId,legacyValues.distinctId);_this._semiAsyncStorage.setItem(_src.PostHogPersistedProperty.AnonymousId,legacyValues.anonymousId);}});}};if(_this._semiAsyncStorage.isPreloaded){setupFromStorage();}else{void _this._semiAsyncStorage.preloadAsync().then(function(){setupFromStorage();});}return _this;}(0,_createClass2["default"])(PostHog,[{key:"getPersistedProperty",value:function getPersistedProperty(key){if(this._persistence==='memory'){return this._memoryStorage.getProperty(key);}return this._semiAsyncStorage.getItem(key)||undefined;}},{key:"setPersistedProperty",value:function setPersistedProperty(key,value){if(this._persistence==='memory'){return this._memoryStorage.setProperty(key,value);}return value!==null?this._semiAsyncStorage.setItem(key,value):this._semiAsyncStorage.removeItem(key);}},{key:"fetch",value:function(_fetch){function fetch(_x,_x2){return _fetch.apply(this,arguments);}fetch.toString=function(){return _fetch.toString();};return fetch;}(function(url,options){return fetch(url,options);})},{key:"getLibraryId",value:function getLibraryId(){return'posthog-react-native';}},{key:"getLibraryVersion",value:function getLibraryVersion(){return _version.version;}},{key:"getCustomUserAgent",value:function getCustomUserAgent(){return;}},{key:"getCommonEventProperties",value:function getCommonEventProperties(){return _objectSpread(_objectSpread(_objectSpread({},(0,_get2["default"])((0,_getPrototypeOf2["default"])(PostHog.prototype),"getCommonEventProperties",this).call(this)),this._appProperties),{},{$device_type:_reactNative.Platform.OS,$screen_height:_reactNative.Dimensions.get('screen').height,$screen_width:_reactNative.Dimensions.get('screen').width});}},{key:"screen",value:function screen(name,properties){return this.capture('$screen',_objectSpread(_objectSpread({},properties),{},{$screen_name:name}));}}],[{key:"initAsync",value:function(){var _initAsync=(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee(apiKey,options){var storage,posthog;return _regenerator["default"].wrap(function _callee$(_context){while(1){switch(_context.prev=_context.next){case 0:storage=new _storage.SemiAsyncStorage((options===null||options===void 0?void 0:options.customAsyncStorage)||(0,_nativeDeps.buildOptimisiticAsyncStorage)());posthog=new PostHog(apiKey,options,storage);_context.next=4;return posthog._semiAsyncStorage.preloadAsync();case 4:return _context.abrupt("return",posthog);case 5:case"end":return _context.stop();}}},_callee);}));function initAsync(_x3,_x4){return _initAsync.apply(this,arguments);}return initAsync;}()}]);return PostHog;}(_src.PostHogCore);exports.PostHog=PostHog;
1
+ "use strict";var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.PostHog=void 0;var _regenerator=_interopRequireDefault(require("@babel/runtime/regenerator"));var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _defineProperty2=_interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));var _classCallCheck2=_interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));var _createClass2=_interopRequireDefault(require("@babel/runtime/helpers/createClass"));var _get2=_interopRequireDefault(require("@babel/runtime/helpers/get"));var _inherits2=_interopRequireDefault(require("@babel/runtime/helpers/inherits"));var _possibleConstructorReturn2=_interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));var _getPrototypeOf2=_interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));var _reactNative=require("react-native");var _src=require("../../posthog-core/src");var _storageMemory=require("../../posthog-core/src/storage-memory");var _legacy=require("./legacy");var _storage=require("./storage");var _version=require("./version");var _nativeDeps=require("./native-deps");var _wixNavigation=require("./frameworks/wix-navigation");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;}function _createSuper(Derived){var hasNativeReflectConstruct=_isNativeReflectConstruct();return function _createSuperInternal(){var Super=(0,_getPrototypeOf2["default"])(Derived),result;if(hasNativeReflectConstruct){var NewTarget=(0,_getPrototypeOf2["default"])(this).constructor;result=Reflect.construct(Super,arguments,NewTarget);}else{result=Super.apply(this,arguments);}return(0,_possibleConstructorReturn2["default"])(this,result);};}function _isNativeReflectConstruct(){if(typeof Reflect==="undefined"||!Reflect.construct)return false;if(Reflect.construct.sham)return false;if(typeof Proxy==="function")return true;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}));return true;}catch(e){return false;}}var PostHog=function(_PostHogCore){(0,_inherits2["default"])(PostHog,_PostHogCore);var _super=_createSuper(PostHog);function PostHog(apiKey,options,storage){var _this;(0,_classCallCheck2["default"])(this,PostHog);_this=_super.call(this,apiKey,options);_this._memoryStorage=new _storageMemory.PostHogMemoryStorage();_this._appProperties={};_this._persistence=options===null||options===void 0?void 0:options.persistence;_this._appProperties=(options===null||options===void 0?void 0:options.customAppProperties)||(0,_nativeDeps.getAppProperties)();_this._semiAsyncStorage=storage||new _storage.SemiAsyncStorage((options===null||options===void 0?void 0:options.customAsyncStorage)||(0,_nativeDeps.buildOptimisiticAsyncStorage)());_reactNative.AppState.addEventListener('change',function(){_this.flush();});var setupFromStorage=function setupFromStorage(){_this.setupBootstrap(options);if(!_this._semiAsyncStorage.getItem(_src.PostHogPersistedProperty.AnonymousId)){(0,_legacy.getLegacyValues)().then(function(legacyValues){if(legacyValues===null||legacyValues===void 0?void 0:legacyValues.distinctId){_this._semiAsyncStorage.setItem(_src.PostHogPersistedProperty.DistinctId,legacyValues.distinctId);_this._semiAsyncStorage.setItem(_src.PostHogPersistedProperty.AnonymousId,legacyValues.anonymousId);}});}};if(_this._semiAsyncStorage.isPreloaded){setupFromStorage();}else{void _this._semiAsyncStorage.preloadAsync().then(function(){setupFromStorage();});}return _this;}(0,_createClass2["default"])(PostHog,[{key:"getPersistedProperty",value:function getPersistedProperty(key){if(this._persistence==='memory'){return this._memoryStorage.getProperty(key);}return this._semiAsyncStorage.getItem(key)||undefined;}},{key:"setPersistedProperty",value:function setPersistedProperty(key,value){if(this._persistence==='memory'){return this._memoryStorage.setProperty(key,value);}return value!==null?this._semiAsyncStorage.setItem(key,value):this._semiAsyncStorage.removeItem(key);}},{key:"fetch",value:function(_fetch){function fetch(_x,_x2){return _fetch.apply(this,arguments);}fetch.toString=function(){return _fetch.toString();};return fetch;}(function(url,options){return fetch(url,options);})},{key:"getLibraryId",value:function getLibraryId(){return'posthog-react-native';}},{key:"getLibraryVersion",value:function getLibraryVersion(){return _version.version;}},{key:"getCustomUserAgent",value:function getCustomUserAgent(){return;}},{key:"getCommonEventProperties",value:function getCommonEventProperties(){return _objectSpread(_objectSpread(_objectSpread({},(0,_get2["default"])((0,_getPrototypeOf2["default"])(PostHog.prototype),"getCommonEventProperties",this).call(this)),this._appProperties),{},{$device_type:_reactNative.Platform.OS,$screen_height:_reactNative.Dimensions.get('screen').height,$screen_width:_reactNative.Dimensions.get('screen').width});}},{key:"screen",value:function screen(name,properties){return this.capture('$screen',_objectSpread(_objectSpread({},properties),{},{$screen_name:name}));}},{key:"initReactNativeNavigation",value:function initReactNativeNavigation(options){return(0,_wixNavigation.withReactNativeNavigation)(this,options);}}],[{key:"initAsync",value:function(){var _initAsync=(0,_asyncToGenerator2["default"])(_regenerator["default"].mark(function _callee(apiKey,options){var storage,posthog;return _regenerator["default"].wrap(function _callee$(_context){while(1){switch(_context.prev=_context.next){case 0:storage=new _storage.SemiAsyncStorage((options===null||options===void 0?void 0:options.customAsyncStorage)||(0,_nativeDeps.buildOptimisiticAsyncStorage)());posthog=new PostHog(apiKey,options,storage);_context.next=4;return posthog._semiAsyncStorage.preloadAsync();case 4:return _context.abrupt("return",posthog);case 5:case"end":return _context.stop();}}},_callee);}));function initAsync(_x3,_x4){return _initAsync.apply(this,arguments);}return initAsync;}()}]);return PostHog;}(_src.PostHogCore);exports.PostHog=PostHog;
@@ -1 +1 @@
1
- {"version":3,"file":"posthog-rn.js","sourceRoot":"","sources":["../../../src/posthog-rn.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"posthog-rn.js","sourceRoot":"","sources":["../../../src/posthog-rn.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- export declare const version = "2.3.0";
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.3.0";exports.version=version;
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.version=void 0;var version="2.4.0";exports.version=version;
@@ -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","../../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":"16f59d9ff7dcc80c7b909b620f3633fc34e5272c90b0d4374a382872b7b86468","signature":"bd3e1dbf2139eb1948e09de1abcee4ccdc26fbfa4cca6c4f0927e68d764932a0"},"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"},{"version":"03041791a54a7b8b9fe19f93b70f4d5610199e0cf3acde75c64f5b99aac7cb03","signature":"2741dd48848cbcba6d7b6b0ce071634be60e56c45bb5d7fa8d55c1ded603bda3"},{"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":"99705d5ec5ad2bfadd5f33e1c0012d066758e66bd8ec2d096697b614bb554482","signature":"1ff2997cebb89533ea5b436d2d1665ba8cfca667442509ee97c0e9ce97d7d183"},{"version":"5cfaae58696d30ba354258bcbe17bc589078a77f2ef3417e7535ab3322cd4b1c","signature":"590e1a31b4c8d08b0ab057ce16ee393bddcad4c4492f91a1aaba39d85bf0610c"},{"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":[[193,202],[81,193],[81,82,83,193],[193],[63,108,193],[63,193],[63,107,193],[63,107,108,193],[107,108,193],[107,193],[107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,193],[54,63,64,125,193],[63,125,126,193],[63,126,139,193],[125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,193],[126,193],[63,126,193],[141,193],[125,193],[63,125,193],[101,193],[101,105,193],[101,102,103,104,105,106,193],[102,193],[193,204,206],[149,193],[152,193],[153,158,193],[154,164,165,172,181,192,193],[154,155,164,172,193],[156,193],[157,158,165,173,193],[158,181,189,193],[159,161,164,172,193],[160,193],[161,162,193],[163,164,193],[164,193],[164,165,166,181,192,193],[164,165,166,181,184,193],[193,197],[167,172,181,192,193],[164,165,167,168,172,181,189,192,193],[167,169,181,189,192,193],[149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,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],[164,170,193],[171,192,193],[161,164,172,181,193],[173,193],[174,193],[152,175,193],[176,191,193,197],[177,193],[178,193],[164,179,193],[179,180,193,195],[164,181,182,183,184,193],[181,183,193],[181,182,193],[184,193],[185,193],[164,187,188,193],[187,188,193],[158,172,181,189,193],[190,193],[172,191,193],[153,167,178,192,193],[158,193],[181,193,194],[193,195],[193,196],[153,158,164,166,175,181,192,193,195,197],[181,193,198],[54,64,193],[57,193],[53,54,55,56,57,58,63,193],[59,60,61,62,193],[86,193],[73,74,193],[74,193],[89,193],[193,204],[193,201,205],[193,203],[92,93,193],[54,64,92,193],[65,66,67,68,193],[65,193],[78,97,99,100,143,144,145,147,193],[54,63,64,78,97,98,100,143,146,193],[63,97,193],[69,78,97,193],[63,99,193],[63,69,97,99,193],[54,63,64,97,99,193],[63,78,97,99,142,193],[63,97,98,193],[54,64,72,76,193],[72,76,78,85,88,91,95,193],[84,193],[71,193],[87,193],[75,193],[90,193],[94,193],[54,64,69,70,77,78,79,80,96,193],[78,193],[65,66,67,68],[65],[78,97,99,100,143,144,145,147],[54,63,64,78,97],[63,97],[78,97],[69,97],[97],[78],[84],[71],[87],[75],[90],[94],[141],[69,78,79]],"referencedMap":[[203,1],[82,2],[83,2],[84,3],[81,4],[109,5],[114,6],[112,5],[111,5],[113,7],[110,8],[123,9],[124,10],[122,9],[121,9],[125,11],[108,7],[118,4],[119,4],[116,9],[115,8],[120,10],[117,9],[134,12],[127,13],[140,14],[139,6],[141,15],[131,16],[130,16],[132,17],[133,18],[126,19],[128,20],[138,4],[137,12],[136,4],[135,13],[129,6],[103,21],[102,21],[106,22],[104,21],[105,21],[107,23],[101,24],[202,4],[207,25],[149,26],[150,26],[152,27],[153,28],[154,29],[155,30],[156,31],[157,32],[158,33],[159,34],[160,35],[161,36],[162,36],[163,37],[164,38],[165,39],[166,40],[151,41],[199,4],[167,42],[168,43],[169,44],[200,45],[170,46],[171,47],[172,48],[173,49],[174,50],[175,51],[176,52],[177,53],[178,54],[179,55],[180,56],[181,57],[183,58],[182,59],[184,60],[185,61],[186,4],[187,62],[188,63],[189,64],[190,65],[191,66],[192,67],[193,68],[194,69],[195,70],[196,71],[197,72],[198,73],[61,4],[55,4],[56,74],[57,75],[58,4],[53,4],[64,76],[54,74],[59,4],[63,77],[62,4],[201,4],[60,4],[71,4],[87,78],[86,4],[74,79],[73,4],[75,80],[90,81],[89,4],[205,82],[206,83],[204,84],[94,85],[93,86],[92,4],[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,87],[67,4],[70,88],[65,4],[66,4],[148,89],[147,90],[98,91],[146,92],[145,93],[144,94],[100,95],[143,96],[99,97],[77,98],[96,99],[85,100],[72,101],[88,102],[76,103],[91,104],[95,105],[142,18],[97,106],[79,107],[78,4],[80,4]],"exportedModulesMap":[[203,1],[82,2],[83,2],[84,3],[81,4],[109,5],[114,6],[112,5],[111,5],[113,7],[110,8],[123,9],[124,10],[122,9],[121,9],[125,11],[108,7],[118,4],[119,4],[116,9],[115,8],[120,10],[117,9],[134,12],[127,13],[140,14],[139,6],[141,15],[131,16],[130,16],[132,17],[133,18],[126,19],[128,20],[138,4],[137,12],[136,4],[135,13],[129,6],[103,21],[102,21],[106,22],[104,21],[105,21],[107,23],[101,24],[202,4],[207,25],[149,26],[150,26],[152,27],[153,28],[154,29],[155,30],[156,31],[157,32],[158,33],[159,34],[160,35],[161,36],[162,36],[163,37],[164,38],[165,39],[166,40],[151,41],[199,4],[167,42],[168,43],[169,44],[200,45],[170,46],[171,47],[172,48],[173,49],[174,50],[175,51],[176,52],[177,53],[178,54],[179,55],[180,56],[181,57],[183,58],[182,59],[184,60],[185,61],[186,4],[187,62],[188,63],[189,64],[190,65],[191,66],[192,67],[193,68],[194,69],[195,70],[196,71],[197,72],[198,73],[61,4],[55,4],[56,74],[57,75],[58,4],[53,4],[64,76],[54,74],[59,4],[63,77],[62,4],[201,4],[60,4],[71,4],[87,78],[86,4],[74,79],[73,4],[75,80],[90,81],[89,4],[205,82],[206,83],[204,84],[94,85],[93,86],[92,4],[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,108],[70,109],[148,110],[147,111],[98,112],[146,113],[144,114],[100,115],[143,113],[99,115],[96,116],[85,117],[72,118],[88,119],[76,120],[91,121],[95,122],[142,123],[97,124],[79,116]],"semanticDiagnosticsPerFile":[203,82,83,84,81,109,114,112,111,113,110,123,124,122,121,125,108,118,119,116,115,120,117,134,127,140,139,141,131,130,132,133,126,128,138,137,136,135,129,103,102,106,104,105,107,101,202,207,149,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,151,199,167,168,169,200,170,171,172,173,174,175,176,177,178,179,180,181,183,182,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,61,55,56,57,58,53,64,54,59,63,62,201,60,71,87,86,74,73,75,90,89,205,206,204,94,93,92,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,148,147,98,146,145,144,100,143,99,77,96,85,72,88,76,91,95,142,97,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.0",
3
+ "version": "2.4.0",
4
4
  "main": "lib/posthog-react-native/index.js",
5
5
  "files": [
6
6
  "lib/"
@@ -25,7 +25,8 @@
25
25
  "jest-expo": "^46.0.1",
26
26
  "react": "^18.2.0",
27
27
  "react-native": "^0.69.1",
28
- "react-native-device-info": "^10.3.0"
28
+ "react-native-device-info": "^10.3.0",
29
+ "react-native-navigation": "^6.0.0"
29
30
  },
30
31
  "peerDependencies": {
31
32
  "@react-native-async-storage/async-storage": ">=1.0.0",
@@ -34,7 +35,8 @@
34
35
  "expo-device": ">= 4.0.0",
35
36
  "expo-file-system": ">= 13.0.0",
36
37
  "expo-localization": ">= 11.0.0",
37
- "react-native-device-info": ">= 10.0.0"
38
+ "react-native-device-info": ">= 10.0.0",
39
+ "react-native-navigation": ">=6.0.0"
38
40
  },
39
41
  "peerDependenciesMeta": {
40
42
  "@react-native-async-storage/async-storage": {
@@ -57,6 +59,9 @@
57
59
  },
58
60
  "react-native-device-info": {
59
61
  "optional": true
62
+ },
63
+ "react-native-navigation": {
64
+ "optional": true
60
65
  }
61
66
  }
62
67
  }