@phygitallabs/tapquest-core 6.7.3 → 6.7.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/bun.lock
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -72,7 +72,7 @@ type ConvertSnakeToCamel<T> = T extends (infer U)[] ? ConvertSnakeToCamel<U>[] :
|
|
|
72
72
|
declare function convertSnakeToCamel<T>(obj: T): ConvertSnakeToCamel<T>;
|
|
73
73
|
|
|
74
74
|
type TrackingEventName = "challenge_start" | "quest_start" | "challenge_complete" | "quest_complete";
|
|
75
|
-
type AchievementActionType = "tap_chip" | "create_memory" | "take_survey";
|
|
75
|
+
type AchievementActionType = "tap_chip" | "create_memory" | "take_survey" | "click_button";
|
|
76
76
|
interface AchievementTrackingContextValue {
|
|
77
77
|
trackChallengeStart: (actionType: AchievementActionType) => void;
|
|
78
78
|
trackQuestStart: () => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -72,7 +72,7 @@ type ConvertSnakeToCamel<T> = T extends (infer U)[] ? ConvertSnakeToCamel<U>[] :
|
|
|
72
72
|
declare function convertSnakeToCamel<T>(obj: T): ConvertSnakeToCamel<T>;
|
|
73
73
|
|
|
74
74
|
type TrackingEventName = "challenge_start" | "quest_start" | "challenge_complete" | "quest_complete";
|
|
75
|
-
type AchievementActionType = "tap_chip" | "create_memory" | "take_survey";
|
|
75
|
+
type AchievementActionType = "tap_chip" | "create_memory" | "take_survey" | "click_button";
|
|
76
76
|
interface AchievementTrackingContextValue {
|
|
77
77
|
trackChallengeStart: (actionType: AchievementActionType) => void;
|
|
78
78
|
trackQuestStart: () => void;
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ export type TrackingEventName =
|
|
|
7
7
|
| "challenge_complete"
|
|
8
8
|
| "quest_complete";
|
|
9
9
|
|
|
10
|
-
export type AchievementActionType = "tap_chip" | "create_memory" | "take_survey";
|
|
10
|
+
export type AchievementActionType = "tap_chip" | "create_memory" | "take_survey" | "click_button";
|
|
11
11
|
|
|
12
12
|
export interface AchievementTrackingContextValue {
|
|
13
13
|
trackChallengeStart: (actionType: AchievementActionType) => void;
|