@winible/winible-typed 2.6.0 → 2.6.1

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.
@@ -109,7 +109,7 @@ User.init({
109
109
  defaultValue: 0,
110
110
  },
111
111
  referringUserId: {
112
- type: sequelize_1.DataTypes.BIGINT,
112
+ type: sequelize_1.DataTypes.STRING,
113
113
  field: "referring_user_id",
114
114
  },
115
115
  referralPercentage: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@winible/winible-typed",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -39,7 +39,7 @@ class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> {
39
39
  declare units?: number;
40
40
  declare winPercentage?: number;
41
41
 
42
- declare referringUserId?: number;
42
+ declare referringUserId?: string;
43
43
  declare referralPercentage?: number;
44
44
  declare masspayUserToken?: string;
45
45
  declare stytchUserId?: string;
@@ -155,7 +155,7 @@ User.init(
155
155
  defaultValue: 0,
156
156
  },
157
157
  referringUserId: {
158
- type: DataTypes.BIGINT,
158
+ type: DataTypes.STRING,
159
159
  field: "referring_user_id",
160
160
  },
161
161
  referralPercentage: {