@koloseum/types 0.3.3 → 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 +35 -7
- package/package.json +1 -1
|
@@ -4087,6 +4087,10 @@ export type Database = {
|
|
|
4087
4087
|
};
|
|
4088
4088
|
Returns: string;
|
|
4089
4089
|
};
|
|
4090
|
+
current_player_id: {
|
|
4091
|
+
Args: never;
|
|
4092
|
+
Returns: string;
|
|
4093
|
+
};
|
|
4090
4094
|
custom_access_token_hook: {
|
|
4091
4095
|
Args: {
|
|
4092
4096
|
event: Json;
|
|
@@ -5373,17 +5377,24 @@ export type Database = {
|
|
|
5373
5377
|
};
|
|
5374
5378
|
Relationships: [
|
|
5375
5379
|
{
|
|
5376
|
-
foreignKeyName: "
|
|
5377
|
-
columns: ["
|
|
5380
|
+
foreignKeyName: "player_sessions_lounge_branch_id_requested_station_id_fkey";
|
|
5381
|
+
columns: ["lounge_branch_id", "requested_station_id"];
|
|
5378
5382
|
isOneToOne: false;
|
|
5379
|
-
referencedRelation: "
|
|
5380
|
-
referencedColumns: ["id"];
|
|
5383
|
+
referencedRelation: "lounge_branch_stations";
|
|
5384
|
+
referencedColumns: ["lounge_branch_id", "id"];
|
|
5381
5385
|
},
|
|
5382
5386
|
{
|
|
5383
|
-
foreignKeyName: "
|
|
5384
|
-
columns: ["
|
|
5387
|
+
foreignKeyName: "player_sessions_lounge_branch_id_station_id_fkey";
|
|
5388
|
+
columns: ["lounge_branch_id", "station_id"];
|
|
5385
5389
|
isOneToOne: false;
|
|
5386
5390
|
referencedRelation: "lounge_branch_stations";
|
|
5391
|
+
referencedColumns: ["lounge_branch_id", "id"];
|
|
5392
|
+
},
|
|
5393
|
+
{
|
|
5394
|
+
foreignKeyName: "player_sessions_luggage_slot_id_fkey";
|
|
5395
|
+
columns: ["luggage_slot_id"];
|
|
5396
|
+
isOneToOne: false;
|
|
5397
|
+
referencedRelation: "lounge_branch_luggage_slots";
|
|
5387
5398
|
referencedColumns: ["id"];
|
|
5388
5399
|
},
|
|
5389
5400
|
{
|
|
@@ -5400,7 +5411,24 @@ export type Database = {
|
|
|
5400
5411
|
[_ in never]: never;
|
|
5401
5412
|
};
|
|
5402
5413
|
Functions: {
|
|
5403
|
-
|
|
5414
|
+
is_active_session_member: {
|
|
5415
|
+
Args: {
|
|
5416
|
+
p_session_id: string;
|
|
5417
|
+
};
|
|
5418
|
+
Returns: boolean;
|
|
5419
|
+
};
|
|
5420
|
+
is_session_owner: {
|
|
5421
|
+
Args: {
|
|
5422
|
+
p_session_id: string;
|
|
5423
|
+
};
|
|
5424
|
+
Returns: boolean;
|
|
5425
|
+
};
|
|
5426
|
+
lounge_branch_owned_by_current_user: {
|
|
5427
|
+
Args: {
|
|
5428
|
+
p_lounge_branch_id: string;
|
|
5429
|
+
};
|
|
5430
|
+
Returns: boolean;
|
|
5431
|
+
};
|
|
5404
5432
|
};
|
|
5405
5433
|
Enums: {
|
|
5406
5434
|
lounge_branch_station_status: "available" | "occupied";
|