@pumper/server-sdk 1.0.2 → 1.0.3

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/index.d.mts CHANGED
@@ -26,7 +26,7 @@ declare class PumpClient {
26
26
  playerId: string;
27
27
  txId: string;
28
28
  kind: "admin:credit" | "admin:tip" | "affiliate:commission" | "affiliate:leaderboard" | "community:battle" | "community:case" | "giveaway:discord" | "giveaway:kick" | "giveaway:telegram" | "giveaway:twitter" | "offer:signup-cases" | "promocode:discord" | "promocode:kick" | "race:payouts" | "raffle:payouts" | "rain:base" | "rain:tips" | "rain:tax" | "rakeback:daily-case" | "rakeback:daily" | "rakeback:level" | "rakeback:monthly" | "rakeback:weekly" | "vip:bonus" | "vip:lossback";
29
- amountUSD: number;
29
+ amountUSD: string;
30
30
  timestamp: Date;
31
31
  }) => Promise<{
32
32
  eventId: string;
package/dist/index.d.ts CHANGED
@@ -26,7 +26,7 @@ declare class PumpClient {
26
26
  playerId: string;
27
27
  txId: string;
28
28
  kind: "admin:credit" | "admin:tip" | "affiliate:commission" | "affiliate:leaderboard" | "community:battle" | "community:case" | "giveaway:discord" | "giveaway:kick" | "giveaway:telegram" | "giveaway:twitter" | "offer:signup-cases" | "promocode:discord" | "promocode:kick" | "race:payouts" | "raffle:payouts" | "rain:base" | "rain:tips" | "rain:tax" | "rakeback:daily-case" | "rakeback:daily" | "rakeback:level" | "rakeback:monthly" | "rakeback:weekly" | "vip:bonus" | "vip:lossback";
29
- amountUSD: number;
29
+ amountUSD: string;
30
30
  timestamp: Date;
31
31
  }) => Promise<{
32
32
  eventId: string;
package/dist/index.js CHANGED
@@ -128,7 +128,7 @@ var bonusSchema = createContract({
128
128
  playerId: v_exports.string(),
129
129
  txId: v_exports.string(),
130
130
  kind: v_exports.enum(bonusKinds),
131
- amountUSD: v_exports.number(),
131
+ amountUSD: v_exports.string(),
132
132
  timestamp: v_exports.date()
133
133
  }),
134
134
  res: v_exports.custom()
package/dist/index.mjs CHANGED
@@ -110,7 +110,7 @@ var bonusSchema = createContract({
110
110
  playerId: v_exports.string(),
111
111
  txId: v_exports.string(),
112
112
  kind: v_exports.enum(bonusKinds),
113
- amountUSD: v_exports.number(),
113
+ amountUSD: v_exports.string(),
114
114
  timestamp: v_exports.date()
115
115
  }),
116
116
  res: v_exports.custom()
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pumper/server-sdk",
3
3
  "description": "The Official TypeScript SDK for PumpTech",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "files": ["dist"],
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",