@playbasis-ai/qwikcard-sdk 2.3.6 → 2.3.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playbasis-ai/qwikcard-sdk",
3
- "version": "2.3.6",
3
+ "version": "2.3.8",
4
4
  "description": "Playbasis SDK for QwikCard College Rewards - React Native gamification integration",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -73,14 +73,14 @@
73
73
  "license": "MIT",
74
74
  "repository": {
75
75
  "type": "git",
76
- "url": "https://github.com/playbasis/playbasis-platform.git",
76
+ "url": "https://github.com/Playbasis/playbasis-platform.git",
77
77
  "directory": "client-sdks/qwikcard-sdk-v1.3.0-pkg"
78
78
  },
79
79
  "bugs": {
80
- "url": "https://github.com/playbasis/playbasis-platform/issues"
80
+ "url": "https://github.com/Playbasis/playbasis-platform/issues"
81
81
  },
82
- "homepage": "https://github.com/playbasis/playbasis-platform/tree/main/client-sdks/qwikcard-sdk-v1.3.0-pkg#readme",
82
+ "homepage": "https://github.com/Playbasis/playbasis-platform/tree/main/client-sdks/qwikcard-sdk-v1.3.0-pkg#readme",
83
83
  "publishConfig": {
84
- "registry": "https://registry.npmjs.org/"
84
+ "registry": "https://registry.npmjs.org"
85
85
  }
86
- }
86
+ }
@@ -75,7 +75,7 @@ export function usePoints(): UsePointsReturn {
75
75
 
76
76
  // Helper getters for common currencies
77
77
  const xp = balances.find((b) => b.currency === 'xp')?.balance ?? 0;
78
- const qwikCoins = balances.find((b) => b.currency === 'qwik-coins')?.balance ?? 0;
78
+ const qwikCoins = balances.find((b) => b.currency === 'coins')?.balance ?? 0;
79
79
 
80
80
  return {
81
81
  balances,
@@ -34,7 +34,7 @@ export interface PointBalance {
34
34
  updatedAt: string;
35
35
  }
36
36
 
37
- export type Currency = 'xp' | 'qwik-coins';
37
+ export type Currency = 'xp' | 'coins';
38
38
 
39
39
  // ─────────────────────────────────────────────────────────────────────────────
40
40
  // Quests