@glissandoo/lib 1.123.0 → 1.123.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.
- package/package.json +1 -1
- package/types/supabase/generated.d.ts +0 -36
- package/types/supabase/generated.ts +0 -36
- package/models/supabase/User/Group/types.d.ts +0 -6
- package/models/supabase/User/Group/types.js +0 -2
- package/models/supabase/User/types.d.ts +0 -6
- package/models/supabase/User/types.js +0 -2
package/package.json
CHANGED
|
@@ -1434,42 +1434,6 @@ export type Database = {
|
|
|
1434
1434
|
};
|
|
1435
1435
|
Relationships: [];
|
|
1436
1436
|
};
|
|
1437
|
-
userGroup: {
|
|
1438
|
-
Row: {
|
|
1439
|
-
groupId: string;
|
|
1440
|
-
instruments: string[];
|
|
1441
|
-
isAdmin: boolean;
|
|
1442
|
-
joinedAt: string | null;
|
|
1443
|
-
mainInstrument: string | null;
|
|
1444
|
-
permissions: string[];
|
|
1445
|
-
role: string;
|
|
1446
|
-
updatedAt: string;
|
|
1447
|
-
userId: string;
|
|
1448
|
-
};
|
|
1449
|
-
Insert: {
|
|
1450
|
-
groupId: string;
|
|
1451
|
-
instruments?: string[];
|
|
1452
|
-
isAdmin?: boolean;
|
|
1453
|
-
joinedAt?: string | null;
|
|
1454
|
-
mainInstrument?: string | null;
|
|
1455
|
-
permissions?: string[];
|
|
1456
|
-
role: string;
|
|
1457
|
-
updatedAt?: string;
|
|
1458
|
-
userId: string;
|
|
1459
|
-
};
|
|
1460
|
-
Update: {
|
|
1461
|
-
groupId?: string;
|
|
1462
|
-
instruments?: string[];
|
|
1463
|
-
isAdmin?: boolean;
|
|
1464
|
-
joinedAt?: string | null;
|
|
1465
|
-
mainInstrument?: string | null;
|
|
1466
|
-
permissions?: string[];
|
|
1467
|
-
role?: string;
|
|
1468
|
-
updatedAt?: string;
|
|
1469
|
-
userId?: string;
|
|
1470
|
-
};
|
|
1471
|
-
Relationships: [];
|
|
1472
|
-
};
|
|
1473
1437
|
};
|
|
1474
1438
|
Views: {
|
|
1475
1439
|
[_ in never]: never;
|
|
@@ -1443,42 +1443,6 @@ export type Database = {
|
|
|
1443
1443
|
};
|
|
1444
1444
|
Relationships: [];
|
|
1445
1445
|
};
|
|
1446
|
-
userGroup: {
|
|
1447
|
-
Row: {
|
|
1448
|
-
groupId: string;
|
|
1449
|
-
instruments: string[];
|
|
1450
|
-
isAdmin: boolean;
|
|
1451
|
-
joinedAt: string | null;
|
|
1452
|
-
mainInstrument: string | null;
|
|
1453
|
-
permissions: string[];
|
|
1454
|
-
role: string;
|
|
1455
|
-
updatedAt: string;
|
|
1456
|
-
userId: string;
|
|
1457
|
-
};
|
|
1458
|
-
Insert: {
|
|
1459
|
-
groupId: string;
|
|
1460
|
-
instruments?: string[];
|
|
1461
|
-
isAdmin?: boolean;
|
|
1462
|
-
joinedAt?: string | null;
|
|
1463
|
-
mainInstrument?: string | null;
|
|
1464
|
-
permissions?: string[];
|
|
1465
|
-
role: string;
|
|
1466
|
-
updatedAt?: string;
|
|
1467
|
-
userId: string;
|
|
1468
|
-
};
|
|
1469
|
-
Update: {
|
|
1470
|
-
groupId?: string;
|
|
1471
|
-
instruments?: string[];
|
|
1472
|
-
isAdmin?: boolean;
|
|
1473
|
-
joinedAt?: string | null;
|
|
1474
|
-
mainInstrument?: string | null;
|
|
1475
|
-
permissions?: string[];
|
|
1476
|
-
role?: string;
|
|
1477
|
-
updatedAt?: string;
|
|
1478
|
-
userId?: string;
|
|
1479
|
-
};
|
|
1480
|
-
Relationships: [];
|
|
1481
|
-
};
|
|
1482
1446
|
};
|
|
1483
1447
|
Views: {
|
|
1484
1448
|
[_ in never]: never;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { Database } from '../../../../types/supabase';
|
|
2
|
-
type UserGroupTable = Database['public']['Tables']['userGroup'];
|
|
3
|
-
export type UserGroupModelData = UserGroupTable['Row'];
|
|
4
|
-
export type UserGroupInsertData = UserGroupTable['Insert'];
|
|
5
|
-
export type UserGroupUpdateData = UserGroupTable['Update'];
|
|
6
|
-
export {};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { Database } from '../../../types/supabase';
|
|
2
|
-
type UserTable = Database['public']['Tables']['user'];
|
|
3
|
-
export type UserModelData = UserTable['Row'];
|
|
4
|
-
export type UserInsertData = UserTable['Insert'];
|
|
5
|
-
export type UserUpdateData = UserTable['Update'];
|
|
6
|
-
export {};
|