@formo/analytics-react-native 0.1.3 → 0.1.4
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/lib/commonjs/constants/events.js +1 -1
- package/lib/commonjs/version.js +1 -1
- package/lib/module/constants/events.js +1 -1
- package/lib/module/version.js +1 -1
- package/lib/typescript/constants/events.d.ts +1 -1
- package/lib/typescript/version.d.ts +1 -1
- package/package.json +11 -8
- package/src/constants/events.ts +1 -1
- package/src/version.ts +1 -1
|
@@ -26,5 +26,5 @@ let EventChannel = exports.EventChannel = /*#__PURE__*/function (EventChannel) {
|
|
|
26
26
|
}({});
|
|
27
27
|
// React Native SDK uses mobile channel
|
|
28
28
|
const CHANNEL = exports.CHANNEL = "mobile";
|
|
29
|
-
const VERSION = exports.VERSION = "
|
|
29
|
+
const VERSION = exports.VERSION = "0";
|
|
30
30
|
//# sourceMappingURL=events.js.map
|
package/lib/commonjs/version.js
CHANGED
|
@@ -6,5 +6,5 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.version = void 0;
|
|
7
7
|
// This file is auto-generated by scripts/update-version.js during npm version
|
|
8
8
|
// Do not edit manually - it will be overwritten
|
|
9
|
-
const version = exports.version = '0.1.
|
|
9
|
+
const version = exports.version = '0.1.4';
|
|
10
10
|
//# sourceMappingURL=version.js.map
|
package/lib/module/version.js
CHANGED
|
@@ -19,5 +19,5 @@ export declare enum EventChannel {
|
|
|
19
19
|
export type TEventType = Lowercase<EventType>;
|
|
20
20
|
export type TEventChannel = Lowercase<EventChannel>;
|
|
21
21
|
export declare const CHANNEL: TEventChannel;
|
|
22
|
-
export declare const VERSION = "
|
|
22
|
+
export declare const VERSION = "0";
|
|
23
23
|
//# sourceMappingURL=events.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "0.1.
|
|
1
|
+
export declare const version = "0.1.4";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formo/analytics-react-native",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Formo Analytics SDK for React Native - Track wallet events and user analytics in mobile dApps",
|
|
5
5
|
"packageManager": "pnpm@10.27.0",
|
|
6
6
|
"repository": {
|
|
@@ -113,23 +113,26 @@
|
|
|
113
113
|
},
|
|
114
114
|
"pnpm": {
|
|
115
115
|
"overrides": {
|
|
116
|
+
"@react-native-community/cli": ">=17.0.1",
|
|
117
|
+
"@react-native-community/cli-server-api": ">=17.0.1",
|
|
118
|
+
"@xmldom/xmldom": ">=0.8.12",
|
|
119
|
+
"brace-expansion@1": ">=1.1.13 <2",
|
|
120
|
+
"brace-expansion@2": ">=2.0.3 <3",
|
|
116
121
|
"fast-xml-parser": ">=4.5.5",
|
|
117
|
-
"node-forge": ">=1.4.0",
|
|
118
|
-
"undici": ">=6.24.1 <7",
|
|
119
|
-
"tar": ">=7.5.13",
|
|
120
122
|
"minimatch@3": ">=3.1.5 <4",
|
|
121
123
|
"minimatch@5": ">=5.1.9 <6",
|
|
122
124
|
"minimatch@9": ">=9.0.9 <10",
|
|
123
125
|
"minimatch@10": ">=10.2.4",
|
|
126
|
+
"node-forge": ">=1.4.0",
|
|
124
127
|
"picomatch@2": ">=2.3.2 <3",
|
|
125
128
|
"picomatch@3": ">=3.0.2 <4",
|
|
126
129
|
"picomatch@4": ">=4.0.4",
|
|
127
|
-
"yaml@2": ">=2.8.3 <3",
|
|
128
|
-
"brace-expansion@1": ">=1.1.13 <2",
|
|
129
130
|
"semver@5": ">=7.7.4",
|
|
130
131
|
"semver@6": ">=7.7.4",
|
|
131
|
-
"
|
|
132
|
-
"
|
|
132
|
+
"tar": ">=7.5.13",
|
|
133
|
+
"undici": ">=6.24.1 <7",
|
|
134
|
+
"yaml@1": ">=1.10.3 <2",
|
|
135
|
+
"yaml@2": ">=2.8.3 <3"
|
|
133
136
|
}
|
|
134
137
|
},
|
|
135
138
|
"react-native-builder-bob": {
|
package/src/constants/events.ts
CHANGED
package/src/version.ts
CHANGED