@trash-streamers/contracts 1.1.21 → 1.1.22

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.
@@ -54,8 +54,8 @@ export interface Account {
54
54
  email: string;
55
55
  isPhoneVerified: boolean;
56
56
  isEmailVerified: boolean;
57
- userId: string;
58
57
  role: Role;
58
+ userId: string;
59
59
  createdAt: Timestamp | undefined;
60
60
  updatedAt: Timestamp | undefined;
61
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trash-streamers/contracts",
3
- "version": "1.1.21",
3
+ "version": "1.1.22",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {
@@ -77,8 +77,8 @@ message Account {
77
77
  string email = 3;
78
78
  bool is_phone_verified = 4;
79
79
  bool is_email_verified = 5;
80
- string user_id = 6;
81
- Role role = 7;
80
+ Role role = 6;
81
+ string user_id = 7;
82
82
  google.protobuf.Timestamp created_at = 8;
83
83
  google.protobuf.Timestamp updated_at = 9;
84
84
  }