hevy-shared 1.0.707 → 1.0.708
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/built/index.d.ts +2 -8
- package/built/index.js +0 -1
- package/package.json +1 -1
- package/built/adjustEventTokens.d.ts +0 -15
- package/built/adjustEventTokens.js +0 -17
package/built/index.d.ts
CHANGED
|
@@ -17,7 +17,6 @@ export * from './routineUtils';
|
|
|
17
17
|
export * from './typeUtils';
|
|
18
18
|
export * from './async';
|
|
19
19
|
export * from './adminPermissions';
|
|
20
|
-
export * from './adjustEventTokens';
|
|
21
20
|
export * from './hevyTrainer';
|
|
22
21
|
export declare const supportedLanguages: readonly ["en", "es", "de", "fr", "it", "pt", "tr", "zh_CN", "zh_TW", "ru", "ja", "ko"];
|
|
23
22
|
export type Language = Lookup<typeof supportedLanguages>;
|
|
@@ -1199,6 +1198,8 @@ export interface OutstandingInvitesForCoachTeamResponse {
|
|
|
1199
1198
|
invites: CoachTeamInvite[];
|
|
1200
1199
|
}
|
|
1201
1200
|
export interface HevyTrainerProgram {
|
|
1201
|
+
created_at: string;
|
|
1202
|
+
updated_at: string;
|
|
1202
1203
|
title: string;
|
|
1203
1204
|
level: TrainingLevel;
|
|
1204
1205
|
goal: TrainingGoal;
|
|
@@ -1444,9 +1445,6 @@ export interface UserMetadataRequest {
|
|
|
1444
1445
|
platformVersion: string;
|
|
1445
1446
|
appVersion: string;
|
|
1446
1447
|
securityId?: string;
|
|
1447
|
-
googleAdId?: string;
|
|
1448
|
-
appleIdfv?: string;
|
|
1449
|
-
adjustAdId?: string;
|
|
1450
1448
|
}
|
|
1451
1449
|
export type NetworkType = 'wifi' | 'cellular' | 'unknown';
|
|
1452
1450
|
export interface UserMetadataResponse {
|
|
@@ -1460,10 +1458,6 @@ export interface UserMetadataResponse {
|
|
|
1460
1458
|
geoip_city: string | null;
|
|
1461
1459
|
geoip_timezone: string | null;
|
|
1462
1460
|
security_id: string | null;
|
|
1463
|
-
adjust_adid: string | null;
|
|
1464
|
-
google_adid: string | null;
|
|
1465
|
-
apple_idfv: string | null;
|
|
1466
|
-
last_ip: string | null;
|
|
1467
1461
|
}
|
|
1468
1462
|
export interface NetworkInfoRequest {
|
|
1469
1463
|
networkType: NetworkType;
|
package/built/index.js
CHANGED
|
@@ -35,7 +35,6 @@ __exportStar(require("./routineUtils"), exports);
|
|
|
35
35
|
__exportStar(require("./typeUtils"), exports);
|
|
36
36
|
__exportStar(require("./async"), exports);
|
|
37
37
|
__exportStar(require("./adminPermissions"), exports);
|
|
38
|
-
__exportStar(require("./adjustEventTokens"), exports);
|
|
39
38
|
__exportStar(require("./hevyTrainer"), exports);
|
|
40
39
|
exports.supportedLanguages = [
|
|
41
40
|
'en',
|
package/package.json
CHANGED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Manage adjust events at https://suite.adjust.com/apps/na3q7q6avq4g/events
|
|
3
|
-
*/
|
|
4
|
-
export declare const ADJUST_EVENT_TOKENS: {
|
|
5
|
-
logWorkout: string;
|
|
6
|
-
purchase: string;
|
|
7
|
-
signupComplete: string;
|
|
8
|
-
updateSexMale: string;
|
|
9
|
-
updateSexFemale: string;
|
|
10
|
-
updateSexOther: string;
|
|
11
|
-
updateAge18Through28: string;
|
|
12
|
-
updateAge29Through44: string;
|
|
13
|
-
updateAge45AndUp: string;
|
|
14
|
-
};
|
|
15
|
-
export type AdjustEventToken = typeof ADJUST_EVENT_TOKENS[keyof typeof ADJUST_EVENT_TOKENS];
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ADJUST_EVENT_TOKENS = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* Manage adjust events at https://suite.adjust.com/apps/na3q7q6avq4g/events
|
|
6
|
-
*/
|
|
7
|
-
exports.ADJUST_EVENT_TOKENS = {
|
|
8
|
-
logWorkout: 'e3xe9l',
|
|
9
|
-
purchase: 'qf1l8r',
|
|
10
|
-
signupComplete: 'n46d1z',
|
|
11
|
-
updateSexMale: 'kbdp5b',
|
|
12
|
-
updateSexFemale: 'jkkjka',
|
|
13
|
-
updateSexOther: 'z4awr3',
|
|
14
|
-
updateAge18Through28: 'o5f1gc',
|
|
15
|
-
updateAge29Through44: 'vvhb17',
|
|
16
|
-
updateAge45AndUp: '3meyo6',
|
|
17
|
-
};
|