@koloseum/types 0.1.6 → 0.1.7
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/database-generated.d.ts +13 -7
- package/types/database.d.ts +1 -1
package/package.json
CHANGED
|
@@ -136,7 +136,7 @@ export type Database = {
|
|
|
136
136
|
};
|
|
137
137
|
lounge_company_verification_attempts: {
|
|
138
138
|
Row: {
|
|
139
|
-
company_data: Json;
|
|
139
|
+
company_data: Json | null;
|
|
140
140
|
company_number: string;
|
|
141
141
|
country_code: string;
|
|
142
142
|
created_at: string;
|
|
@@ -144,7 +144,7 @@ export type Database = {
|
|
|
144
144
|
user_id: string;
|
|
145
145
|
};
|
|
146
146
|
Insert: {
|
|
147
|
-
company_data
|
|
147
|
+
company_data?: Json | null;
|
|
148
148
|
company_number: string;
|
|
149
149
|
country_code: string;
|
|
150
150
|
created_at?: string;
|
|
@@ -152,7 +152,7 @@ export type Database = {
|
|
|
152
152
|
user_id?: string;
|
|
153
153
|
};
|
|
154
154
|
Update: {
|
|
155
|
-
company_data?: Json;
|
|
155
|
+
company_data?: Json | null;
|
|
156
156
|
company_number?: string;
|
|
157
157
|
country_code?: string;
|
|
158
158
|
created_at?: string;
|
|
@@ -245,7 +245,7 @@ export type Database = {
|
|
|
245
245
|
}
|
|
246
246
|
];
|
|
247
247
|
};
|
|
248
|
-
|
|
248
|
+
lounge_staff_id_verification_attempts: {
|
|
249
249
|
Row: {
|
|
250
250
|
created_at: string;
|
|
251
251
|
id: string;
|
|
@@ -821,7 +821,7 @@ export type Database = {
|
|
|
821
821
|
id_country: string;
|
|
822
822
|
id_number: string;
|
|
823
823
|
id_type: Database["compliance"]["Enums"]["id_type"];
|
|
824
|
-
issued_on: string;
|
|
824
|
+
issued_on: string | null;
|
|
825
825
|
user_id: string;
|
|
826
826
|
valid_until: string | null;
|
|
827
827
|
};
|
|
@@ -830,7 +830,7 @@ export type Database = {
|
|
|
830
830
|
id_country: string;
|
|
831
831
|
id_number: string;
|
|
832
832
|
id_type: Database["compliance"]["Enums"]["id_type"];
|
|
833
|
-
issued_on
|
|
833
|
+
issued_on?: string | null;
|
|
834
834
|
user_id?: string;
|
|
835
835
|
valid_until?: string | null;
|
|
836
836
|
};
|
|
@@ -839,7 +839,7 @@ export type Database = {
|
|
|
839
839
|
id_country?: string;
|
|
840
840
|
id_number?: string;
|
|
841
841
|
id_type?: Database["compliance"]["Enums"]["id_type"];
|
|
842
|
-
issued_on?: string;
|
|
842
|
+
issued_on?: string | null;
|
|
843
843
|
user_id?: string;
|
|
844
844
|
valid_until?: string | null;
|
|
845
845
|
};
|
|
@@ -1459,16 +1459,19 @@ export type Database = {
|
|
|
1459
1459
|
Views: {
|
|
1460
1460
|
active_lounges: {
|
|
1461
1461
|
Row: {
|
|
1462
|
+
created_at: string | null;
|
|
1462
1463
|
id: string | null;
|
|
1463
1464
|
name: string | null;
|
|
1464
1465
|
registration_date: string | null;
|
|
1465
1466
|
};
|
|
1466
1467
|
Insert: {
|
|
1468
|
+
created_at?: string | null;
|
|
1467
1469
|
id?: string | null;
|
|
1468
1470
|
name?: never;
|
|
1469
1471
|
registration_date?: string | null;
|
|
1470
1472
|
};
|
|
1471
1473
|
Update: {
|
|
1474
|
+
created_at?: string | null;
|
|
1472
1475
|
id?: string | null;
|
|
1473
1476
|
name?: never;
|
|
1474
1477
|
registration_date?: string | null;
|
|
@@ -1486,6 +1489,7 @@ export type Database = {
|
|
|
1486
1489
|
active_players: {
|
|
1487
1490
|
Row: {
|
|
1488
1491
|
birth_date: string | null;
|
|
1492
|
+
created_at: string | null;
|
|
1489
1493
|
first_name: string | null;
|
|
1490
1494
|
id: string | null;
|
|
1491
1495
|
last_name: string | null;
|
|
@@ -1496,6 +1500,7 @@ export type Database = {
|
|
|
1496
1500
|
};
|
|
1497
1501
|
Insert: {
|
|
1498
1502
|
birth_date?: never;
|
|
1503
|
+
created_at?: string | null;
|
|
1499
1504
|
first_name?: string | null;
|
|
1500
1505
|
id?: string | null;
|
|
1501
1506
|
last_name?: string | null;
|
|
@@ -1506,6 +1511,7 @@ export type Database = {
|
|
|
1506
1511
|
};
|
|
1507
1512
|
Update: {
|
|
1508
1513
|
birth_date?: never;
|
|
1514
|
+
created_at?: string | null;
|
|
1509
1515
|
first_name?: string | null;
|
|
1510
1516
|
id?: string | null;
|
|
1511
1517
|
last_name?: string | null;
|
package/types/database.d.ts
CHANGED