Skip to content

Commit

Permalink
user: fix duplicated enum
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaud-roland committed Jan 13, 2025
1 parent 4c501bc commit 7a3466b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { BatchSDK } from "../../types";
import { BatchUserAttribute } from "./user/userAttributes";

export enum BatchUserAttributeType {
STRING = 1,
STRING = 0,
BOOLEAN = 1,
INTEGER = 2,
DOUBLE = 3,
Expand Down
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export declare namespace BatchSDK {
* This enum's implementation is available on batch.user.BatchUserAttributeType.
*/
enum BatchUserAttributeType {
STRING = 1,
STRING = 0,
BOOLEAN = 1,
INTEGER = 2,
DOUBLE = 3,
Expand Down

0 comments on commit 7a3466b

Please sign in to comment.