@glissandoo/lib 1.62.3 → 1.62.4
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.gen.d.ts +10 -8
- package/types/supabase.gen.ts +10 -8
package/package.json
CHANGED
package/types/supabase.gen.d.ts
CHANGED
|
@@ -195,6 +195,7 @@ export interface Database {
|
|
|
195
195
|
invitationLink: string | null;
|
|
196
196
|
locality: string;
|
|
197
197
|
location: unknown;
|
|
198
|
+
location_lonlat: Database['public']['CompositeTypes']['lonlat'];
|
|
198
199
|
metadata: Json;
|
|
199
200
|
musicStyle: string;
|
|
200
201
|
onboardingMessages: Json[];
|
|
@@ -235,6 +236,7 @@ export interface Database {
|
|
|
235
236
|
invitationLink?: string | null;
|
|
236
237
|
locality: string;
|
|
237
238
|
location: unknown;
|
|
239
|
+
location_lonlat?: Database['public']['CompositeTypes']['lonlat'];
|
|
238
240
|
metadata: Json;
|
|
239
241
|
musicStyle: string;
|
|
240
242
|
onboardingMessages: Json[];
|
|
@@ -275,6 +277,7 @@ export interface Database {
|
|
|
275
277
|
invitationLink?: string | null;
|
|
276
278
|
locality?: string;
|
|
277
279
|
location?: unknown;
|
|
280
|
+
location_lonlat?: Database['public']['CompositeTypes']['lonlat'];
|
|
278
281
|
metadata?: Json;
|
|
279
282
|
musicStyle?: string;
|
|
280
283
|
onboardingMessages?: Json[];
|
|
@@ -332,6 +335,7 @@ export interface Database {
|
|
|
332
335
|
id: string;
|
|
333
336
|
name: string;
|
|
334
337
|
owner: string | null;
|
|
338
|
+
owner_id: string | null;
|
|
335
339
|
public: boolean | null;
|
|
336
340
|
updated_at: string | null;
|
|
337
341
|
};
|
|
@@ -343,6 +347,7 @@ export interface Database {
|
|
|
343
347
|
id: string;
|
|
344
348
|
name: string;
|
|
345
349
|
owner?: string | null;
|
|
350
|
+
owner_id?: string | null;
|
|
346
351
|
public?: boolean | null;
|
|
347
352
|
updated_at?: string | null;
|
|
348
353
|
};
|
|
@@ -354,17 +359,11 @@ export interface Database {
|
|
|
354
359
|
id?: string;
|
|
355
360
|
name?: string;
|
|
356
361
|
owner?: string | null;
|
|
362
|
+
owner_id?: string | null;
|
|
357
363
|
public?: boolean | null;
|
|
358
364
|
updated_at?: string | null;
|
|
359
365
|
};
|
|
360
|
-
Relationships: [
|
|
361
|
-
{
|
|
362
|
-
foreignKeyName: 'buckets_owner_fkey';
|
|
363
|
-
columns: ['owner'];
|
|
364
|
-
referencedRelation: 'users';
|
|
365
|
-
referencedColumns: ['id'];
|
|
366
|
-
}
|
|
367
|
-
];
|
|
366
|
+
Relationships: [];
|
|
368
367
|
};
|
|
369
368
|
migrations: {
|
|
370
369
|
Row: {
|
|
@@ -396,6 +395,7 @@ export interface Database {
|
|
|
396
395
|
metadata: Json | null;
|
|
397
396
|
name: string | null;
|
|
398
397
|
owner: string | null;
|
|
398
|
+
owner_id: string | null;
|
|
399
399
|
path_tokens: string[] | null;
|
|
400
400
|
updated_at: string | null;
|
|
401
401
|
version: string | null;
|
|
@@ -408,6 +408,7 @@ export interface Database {
|
|
|
408
408
|
metadata?: Json | null;
|
|
409
409
|
name?: string | null;
|
|
410
410
|
owner?: string | null;
|
|
411
|
+
owner_id?: string | null;
|
|
411
412
|
path_tokens?: string[] | null;
|
|
412
413
|
updated_at?: string | null;
|
|
413
414
|
version?: string | null;
|
|
@@ -420,6 +421,7 @@ export interface Database {
|
|
|
420
421
|
metadata?: Json | null;
|
|
421
422
|
name?: string | null;
|
|
422
423
|
owner?: string | null;
|
|
424
|
+
owner_id?: string | null;
|
|
423
425
|
path_tokens?: string[] | null;
|
|
424
426
|
updated_at?: string | null;
|
|
425
427
|
version?: string | null;
|
package/types/supabase.gen.ts
CHANGED
|
@@ -194,6 +194,7 @@ export interface Database {
|
|
|
194
194
|
invitationLink: string | null;
|
|
195
195
|
locality: string;
|
|
196
196
|
location: unknown;
|
|
197
|
+
location_lonlat: Database['public']['CompositeTypes']['lonlat'];
|
|
197
198
|
metadata: Json;
|
|
198
199
|
musicStyle: string;
|
|
199
200
|
onboardingMessages: Json[];
|
|
@@ -234,6 +235,7 @@ export interface Database {
|
|
|
234
235
|
invitationLink?: string | null;
|
|
235
236
|
locality: string;
|
|
236
237
|
location: unknown;
|
|
238
|
+
location_lonlat?: Database['public']['CompositeTypes']['lonlat'];
|
|
237
239
|
metadata: Json;
|
|
238
240
|
musicStyle: string;
|
|
239
241
|
onboardingMessages: Json[];
|
|
@@ -274,6 +276,7 @@ export interface Database {
|
|
|
274
276
|
invitationLink?: string | null;
|
|
275
277
|
locality?: string;
|
|
276
278
|
location?: unknown;
|
|
279
|
+
location_lonlat?: Database['public']['CompositeTypes']['lonlat'];
|
|
277
280
|
metadata?: Json;
|
|
278
281
|
musicStyle?: string;
|
|
279
282
|
onboardingMessages?: Json[];
|
|
@@ -331,6 +334,7 @@ export interface Database {
|
|
|
331
334
|
id: string;
|
|
332
335
|
name: string;
|
|
333
336
|
owner: string | null;
|
|
337
|
+
owner_id: string | null;
|
|
334
338
|
public: boolean | null;
|
|
335
339
|
updated_at: string | null;
|
|
336
340
|
};
|
|
@@ -342,6 +346,7 @@ export interface Database {
|
|
|
342
346
|
id: string;
|
|
343
347
|
name: string;
|
|
344
348
|
owner?: string | null;
|
|
349
|
+
owner_id?: string | null;
|
|
345
350
|
public?: boolean | null;
|
|
346
351
|
updated_at?: string | null;
|
|
347
352
|
};
|
|
@@ -353,17 +358,11 @@ export interface Database {
|
|
|
353
358
|
id?: string;
|
|
354
359
|
name?: string;
|
|
355
360
|
owner?: string | null;
|
|
361
|
+
owner_id?: string | null;
|
|
356
362
|
public?: boolean | null;
|
|
357
363
|
updated_at?: string | null;
|
|
358
364
|
};
|
|
359
|
-
Relationships: [
|
|
360
|
-
{
|
|
361
|
-
foreignKeyName: 'buckets_owner_fkey';
|
|
362
|
-
columns: ['owner'];
|
|
363
|
-
referencedRelation: 'users';
|
|
364
|
-
referencedColumns: ['id'];
|
|
365
|
-
}
|
|
366
|
-
];
|
|
365
|
+
Relationships: [];
|
|
367
366
|
};
|
|
368
367
|
migrations: {
|
|
369
368
|
Row: {
|
|
@@ -395,6 +394,7 @@ export interface Database {
|
|
|
395
394
|
metadata: Json | null;
|
|
396
395
|
name: string | null;
|
|
397
396
|
owner: string | null;
|
|
397
|
+
owner_id: string | null;
|
|
398
398
|
path_tokens: string[] | null;
|
|
399
399
|
updated_at: string | null;
|
|
400
400
|
version: string | null;
|
|
@@ -407,6 +407,7 @@ export interface Database {
|
|
|
407
407
|
metadata?: Json | null;
|
|
408
408
|
name?: string | null;
|
|
409
409
|
owner?: string | null;
|
|
410
|
+
owner_id?: string | null;
|
|
410
411
|
path_tokens?: string[] | null;
|
|
411
412
|
updated_at?: string | null;
|
|
412
413
|
version?: string | null;
|
|
@@ -419,6 +420,7 @@ export interface Database {
|
|
|
419
420
|
metadata?: Json | null;
|
|
420
421
|
name?: string | null;
|
|
421
422
|
owner?: string | null;
|
|
423
|
+
owner_id?: string | null;
|
|
422
424
|
path_tokens?: string[] | null;
|
|
423
425
|
updated_at?: string | null;
|
|
424
426
|
version?: string | null;
|