@go-avro/avro-js 0.0.2-beta.74 → 0.0.2-beta.76

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.
@@ -128,8 +128,8 @@ declare module '../client/QueryClient' {
128
128
  email: string;
129
129
  password: string;
130
130
  phone_number: string;
131
- code: string;
132
- invite_token: string;
131
+ code?: string;
132
+ invite_token?: string;
133
133
  }>>;
134
134
  useCreateSessionBreak(): ReturnType<typeof useMutation<{
135
135
  id: string;
@@ -216,6 +216,7 @@ export interface User {
216
216
  autopay: boolean | null;
217
217
  chats: Chat[];
218
218
  bills: BillUser[];
219
+ is_root: boolean;
219
220
  }
220
221
  export interface Break {
221
222
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@go-avro/avro-js",
3
- "version": "0.0.2-beta.74",
3
+ "version": "0.0.2-beta.76",
4
4
  "description": "JS client for Avro backend integration.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",