@formo/analytics 1.35.0 → 1.35.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/src/FormoAnalytics.js +11 -0
- package/dist/cjs/src/version.d.ts +1 -1
- package/dist/cjs/src/version.js +1 -1
- package/dist/esm/src/FormoAnalytics.js +11 -0
- package/dist/esm/src/version.d.ts +1 -1
- package/dist/esm/src/version.js +1 -1
- package/dist/index.umd.min.js +1 -1
- package/package.json +2 -2
|
@@ -151,7 +151,18 @@ var FormoAnalytics = /** @class */ (function () {
|
|
|
151
151
|
this.transaction = this.transaction.bind(this);
|
|
152
152
|
this.detect = this.detect.bind(this);
|
|
153
153
|
this.track = this.track.bind(this);
|
|
154
|
+
this.page = this.page.bind(this);
|
|
155
|
+
this.reset = this.reset.bind(this);
|
|
156
|
+
this.cleanup = this.cleanup.bind(this);
|
|
157
|
+
this.optOutTracking = this.optOutTracking.bind(this);
|
|
158
|
+
this.optInTracking = this.optInTracking.bind(this);
|
|
159
|
+
this.hasOptedOutTracking = this.hasOptedOutTracking.bind(this);
|
|
154
160
|
this.isAutocaptureEnabled = this.isAutocaptureEnabled.bind(this);
|
|
161
|
+
this.syncPrivyActiveChain = this.syncPrivyActiveChain.bind(this);
|
|
162
|
+
this.isTrackingSuppressed = this.isTrackingSuppressed.bind(this);
|
|
163
|
+
this.getTrackedProvidersCount = this.getTrackedProvidersCount.bind(this);
|
|
164
|
+
this.getProviderState = this.getProviderState.bind(this);
|
|
165
|
+
this.syncWalletState = this.syncWalletState.bind(this);
|
|
155
166
|
// Initialize logger with configuration from options
|
|
156
167
|
logger_1.Logger.init({
|
|
157
168
|
enabled: ((_b = options.logger) === null || _b === void 0 ? void 0 : _b.enabled) || false,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "1.35.
|
|
1
|
+
export declare const version = "1.35.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/cjs/src/version.js
CHANGED
|
@@ -3,5 +3,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.version = void 0;
|
|
4
4
|
// This file is auto-generated by scripts/update-version.js during npm version
|
|
5
5
|
// Do not edit manually - it will be overwritten
|
|
6
|
-
exports.version = '1.35.
|
|
6
|
+
exports.version = '1.35.1';
|
|
7
7
|
//# sourceMappingURL=version.js.map
|
|
@@ -148,7 +148,18 @@ var FormoAnalytics = /** @class */ (function () {
|
|
|
148
148
|
this.transaction = this.transaction.bind(this);
|
|
149
149
|
this.detect = this.detect.bind(this);
|
|
150
150
|
this.track = this.track.bind(this);
|
|
151
|
+
this.page = this.page.bind(this);
|
|
152
|
+
this.reset = this.reset.bind(this);
|
|
153
|
+
this.cleanup = this.cleanup.bind(this);
|
|
154
|
+
this.optOutTracking = this.optOutTracking.bind(this);
|
|
155
|
+
this.optInTracking = this.optInTracking.bind(this);
|
|
156
|
+
this.hasOptedOutTracking = this.hasOptedOutTracking.bind(this);
|
|
151
157
|
this.isAutocaptureEnabled = this.isAutocaptureEnabled.bind(this);
|
|
158
|
+
this.syncPrivyActiveChain = this.syncPrivyActiveChain.bind(this);
|
|
159
|
+
this.isTrackingSuppressed = this.isTrackingSuppressed.bind(this);
|
|
160
|
+
this.getTrackedProvidersCount = this.getTrackedProvidersCount.bind(this);
|
|
161
|
+
this.getProviderState = this.getProviderState.bind(this);
|
|
162
|
+
this.syncWalletState = this.syncWalletState.bind(this);
|
|
152
163
|
// Initialize logger with configuration from options
|
|
153
164
|
Logger.init({
|
|
154
165
|
enabled: ((_b = options.logger) === null || _b === void 0 ? void 0 : _b.enabled) || false,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "1.35.
|
|
1
|
+
export declare const version = "1.35.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/esm/src/version.js
CHANGED