@koloseum/types 0.3.4 → 0.3.5
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/dist/database-generated.d.ts +13 -7
- package/package.json +1 -1
|
@@ -5376,6 +5376,13 @@ export type Database = {
|
|
|
5376
5376
|
user_id?: string | null;
|
|
5377
5377
|
};
|
|
5378
5378
|
Relationships: [
|
|
5379
|
+
{
|
|
5380
|
+
foreignKeyName: "player_sessions_lounge_branch_id_requested_station_id_fkey";
|
|
5381
|
+
columns: ["lounge_branch_id", "requested_station_id"];
|
|
5382
|
+
isOneToOne: false;
|
|
5383
|
+
referencedRelation: "lounge_branch_stations";
|
|
5384
|
+
referencedColumns: ["lounge_branch_id", "id"];
|
|
5385
|
+
},
|
|
5379
5386
|
{
|
|
5380
5387
|
foreignKeyName: "player_sessions_lounge_branch_id_station_id_fkey";
|
|
5381
5388
|
columns: ["lounge_branch_id", "station_id"];
|
|
@@ -5390,13 +5397,6 @@ export type Database = {
|
|
|
5390
5397
|
referencedRelation: "lounge_branch_luggage_slots";
|
|
5391
5398
|
referencedColumns: ["id"];
|
|
5392
5399
|
},
|
|
5393
|
-
{
|
|
5394
|
-
foreignKeyName: "player_sessions_requested_station_id_fkey";
|
|
5395
|
-
columns: ["requested_station_id"];
|
|
5396
|
-
isOneToOne: false;
|
|
5397
|
-
referencedRelation: "lounge_branch_stations";
|
|
5398
|
-
referencedColumns: ["id"];
|
|
5399
|
-
},
|
|
5400
5400
|
{
|
|
5401
5401
|
foreignKeyName: "player_sessions_station_id_fkey";
|
|
5402
5402
|
columns: ["station_id"];
|
|
@@ -5423,6 +5423,12 @@ export type Database = {
|
|
|
5423
5423
|
};
|
|
5424
5424
|
Returns: boolean;
|
|
5425
5425
|
};
|
|
5426
|
+
lounge_branch_owned_by_current_user: {
|
|
5427
|
+
Args: {
|
|
5428
|
+
p_lounge_branch_id: string;
|
|
5429
|
+
};
|
|
5430
|
+
Returns: boolean;
|
|
5431
|
+
};
|
|
5426
5432
|
};
|
|
5427
5433
|
Enums: {
|
|
5428
5434
|
lounge_branch_station_status: "available" | "occupied";
|