@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
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "lockfileVersion": 1,
3
- "configVersion": 0,
4
3
  "workspaces": {
5
4
  "": {
6
5
  "name": "@phygitallabs/tapquest-core",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phygitallabs/tapquest-core",
3
- "version": "6.7.3",
3
+ "version": "6.7.4",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -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;