volleyballsimtypes 0.0.369 → 0.0.371

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.
@@ -9,6 +9,7 @@ export type AutoDismissSettings = Record<string, AutoDismissRarityConfig>;
9
9
  export interface UserSettingsAttributes {
10
10
  user_id: string;
11
11
  auto_dismiss: AutoDismissSettings;
12
+ locale: string | null;
12
13
  }
13
14
  export type UserSettingsPk = 'user_id';
14
15
  export type UserSettingsId = UserSettingsModel[UserSettingsPk];
@@ -16,6 +17,7 @@ export type UserSettingsCreationAttributes = UserSettingsAttributes;
16
17
  export declare class UserSettingsModel extends Model<UserSettingsAttributes, UserSettingsCreationAttributes> implements UserSettingsAttributes {
17
18
  user_id: string;
18
19
  auto_dismiss: AutoDismissSettings;
20
+ locale: string | null;
19
21
  user: AuthUserModel;
20
22
  getUser: Sequelize.BelongsToGetAssociationMixin<AuthUserModel>;
21
23
  setUser: Sequelize.BelongsToSetAssociationMixin<AuthUserModel, AuthUserId>;
@@ -18,6 +18,11 @@ class UserSettingsModel extends sequelize_1.Model {
18
18
  type: sequelize_1.DataTypes.JSONB,
19
19
  allowNull: false,
20
20
  defaultValue: {}
21
+ },
22
+ locale: {
23
+ type: sequelize_1.DataTypes.STRING(8),
24
+ allowNull: true,
25
+ defaultValue: null
21
26
  }
22
27
  }, {
23
28
  sequelize,
@@ -9,6 +9,7 @@ export type AutoDismissSettings = Record<string, AutoDismissRarityConfig>;
9
9
  export interface UserSettingsAttributes {
10
10
  user_id: string;
11
11
  auto_dismiss: AutoDismissSettings;
12
+ locale: string | null;
12
13
  }
13
14
  export type UserSettingsPk = 'user_id';
14
15
  export type UserSettingsId = UserSettingsModel[UserSettingsPk];
@@ -16,6 +17,7 @@ export type UserSettingsCreationAttributes = UserSettingsAttributes;
16
17
  export declare class UserSettingsModel extends Model<UserSettingsAttributes, UserSettingsCreationAttributes> implements UserSettingsAttributes {
17
18
  user_id: string;
18
19
  auto_dismiss: AutoDismissSettings;
20
+ locale: string | null;
19
21
  user: AuthUserModel;
20
22
  getUser: Sequelize.BelongsToGetAssociationMixin<AuthUserModel>;
21
23
  setUser: Sequelize.BelongsToSetAssociationMixin<AuthUserModel, AuthUserId>;
@@ -15,6 +15,11 @@ export class UserSettingsModel extends Model {
15
15
  type: DataTypes.JSONB,
16
16
  allowNull: false,
17
17
  defaultValue: {}
18
+ },
19
+ locale: {
20
+ type: DataTypes.STRING(8),
21
+ allowNull: true,
22
+ defaultValue: null
18
23
  }
19
24
  }, {
20
25
  sequelize,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "volleyballsimtypes",
3
- "version": "0.0.369",
3
+ "version": "0.0.371",
4
4
  "description": "vbsim types",
5
5
  "main": "./dist/cjs/src/index.js",
6
6
  "module": "./dist/esm/src/index.js",