@glissandoo/lib 1.103.8 → 1.104.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/functions/event.d.ts +13 -4
- package/functions/event.js +1 -0
- package/functions/eventPlayer.d.ts +6 -1
- package/functions/index.d.ts +1 -0
- package/functions/index.js +1 -0
- package/functions/regions.js +1 -0
- package/helpers/notifications/index.d.ts +1 -0
- package/helpers/notifications/index.js +5 -0
- package/lang/ca.json +210 -195
- package/lang/de.json +252 -237
- package/lang/en.json +207 -192
- package/lang/es.json +198 -183
- package/lang/eu.json +214 -199
- package/lang/fr.json +204 -189
- package/lang/gl.json +207 -192
- package/lang/it.json +204 -189
- package/lang/nl.json +205 -190
- package/lang/pt.json +210 -195
- package/models/Evento/Player/basic.d.ts +1 -0
- package/models/Evento/Player/basic.js +3 -0
- package/models/Evento/Player/types.d.ts +12 -6
- package/models/Evento/index.d.ts +6 -0
- package/models/Evento/index.js +29 -7
- package/models/Evento/types.d.ts +17 -3
- package/models/Group/index.d.ts +28 -0
- package/models/Group/index.js +13 -1
- package/models/Group/types.d.ts +17 -0
- package/models/Notification/types.d.ts +3 -0
- package/models/Notification/types.js +3 -0
- package/package.json +2 -2
- package/types/supabase/generated.d.ts +0 -208
- package/types/supabase/generated.ts +86 -196
|
@@ -30,50 +30,51 @@ export type Database = {
|
|
|
30
30
|
Tables: {
|
|
31
31
|
event: {
|
|
32
32
|
Row: {
|
|
33
|
-
activeInvitationLink: boolean;
|
|
34
|
-
coverURL: string | null;
|
|
35
|
-
createdAt: string;
|
|
36
|
-
createdOn: Database['public']['Enums']['created_on'];
|
|
37
|
-
datetime: string;
|
|
38
|
-
datetimeEnd: string;
|
|
39
|
-
deletedAt: string | null;
|
|
40
|
-
deletedBy: string | null;
|
|
41
|
-
description: string | null;
|
|
42
|
-
descriptionSlate: Json[];
|
|
43
|
-
displayName: string | null;
|
|
44
|
-
id: string;
|
|
45
|
-
invitationLink: string | null;
|
|
46
|
-
locality: string | null;
|
|
47
|
-
location: unknown;
|
|
48
|
-
location_lonlat: Database['public']['CompositeTypes']['lonlat'];
|
|
49
|
-
maxAttendance: number | null;
|
|
50
|
-
notifyAt: string;
|
|
51
|
-
online: boolean;
|
|
52
|
-
owner: string | null;
|
|
53
|
-
playerIds: string[];
|
|
54
|
-
players: Json;
|
|
33
|
+
// activeInvitationLink: boolean;
|
|
34
|
+
// coverURL: string | null;
|
|
35
|
+
// createdAt: string;
|
|
36
|
+
// createdOn: Database['public']['Enums']['created_on'];
|
|
37
|
+
// datetime: string;
|
|
38
|
+
// datetimeEnd: string;
|
|
39
|
+
// deletedAt: string | null;
|
|
40
|
+
// deletedBy: string | null;
|
|
41
|
+
// description: string | null;
|
|
42
|
+
// descriptionSlate: Json[];
|
|
43
|
+
// displayName: string | null;
|
|
44
|
+
// id: string;
|
|
45
|
+
// invitationLink: string | null;
|
|
46
|
+
// locality: string | null;
|
|
47
|
+
// location: unknown;
|
|
48
|
+
// location_lonlat: Database['public']['CompositeTypes']['lonlat'];
|
|
49
|
+
// maxAttendance: number | null;
|
|
50
|
+
// notifyAt: string;
|
|
51
|
+
// online: boolean;
|
|
52
|
+
// owner: string | null;
|
|
53
|
+
// playerIds: string[];
|
|
54
|
+
// players: Json;
|
|
55
|
+
|
|
56
|
+
// relEvents: string[];
|
|
57
|
+
// repeat: Json | null;
|
|
58
|
+
// repertory: Json;
|
|
59
|
+
// repertoryIds: string[];
|
|
60
|
+
// responseDeadline: Json;
|
|
61
|
+
// responseDeadlineAt: string;
|
|
62
|
+
// rollCalledAt: string | null;
|
|
63
|
+
// rollCalledBy: string | null;
|
|
64
|
+
// rollCallHistory: Json[];
|
|
65
|
+
// rollCallReminderAt: string | null;
|
|
66
|
+
// selectionMode: Database['public']['Enums']['event_selection_mode'] | null;
|
|
67
|
+
// selectionModeClosedAt: string | null;
|
|
68
|
+
// shortDynamicLink: string | null;
|
|
69
|
+
// sites: boolean;
|
|
70
|
+
// stage: Json | null;
|
|
71
|
+
// stageTemplateId: string | null;
|
|
72
|
+
// templateId: string | null;
|
|
73
|
+
// timezone: string;
|
|
74
|
+
// type: Database['public']['Enums']['event_type'];
|
|
75
|
+
// updatedAt: string;
|
|
76
|
+
// videoURL: string | null;
|
|
55
77
|
promoter: string | null;
|
|
56
|
-
relEvents: string[];
|
|
57
|
-
repeat: Json | null;
|
|
58
|
-
repertory: Json;
|
|
59
|
-
repertoryIds: string[];
|
|
60
|
-
responseDeadline: Json;
|
|
61
|
-
responseDeadlineAt: string;
|
|
62
|
-
rollCalledAt: string | null;
|
|
63
|
-
rollCalledBy: string | null;
|
|
64
|
-
rollCallHistory: Json[];
|
|
65
|
-
rollCallReminderAt: string | null;
|
|
66
|
-
selectionMode: Database['public']['Enums']['event_selection_mode'] | null;
|
|
67
|
-
selectionModeClosedAt: string | null;
|
|
68
|
-
shortDynamicLink: string | null;
|
|
69
|
-
sites: boolean;
|
|
70
|
-
stage: Json | null;
|
|
71
|
-
stageTemplateId: string | null;
|
|
72
|
-
templateId: string | null;
|
|
73
|
-
timezone: string;
|
|
74
|
-
type: Database['public']['Enums']['event_type'];
|
|
75
|
-
updatedAt: string;
|
|
76
|
-
videoURL: string | null;
|
|
77
78
|
};
|
|
78
79
|
Insert: {
|
|
79
80
|
activeInvitationLink: boolean;
|
|
@@ -179,48 +180,49 @@ export type Database = {
|
|
|
179
180
|
};
|
|
180
181
|
group: {
|
|
181
182
|
Row: {
|
|
182
|
-
activeInvitationLink: boolean;
|
|
183
|
-
addresses: Json[];
|
|
184
|
-
administrators: string[];
|
|
185
|
-
config: Json;
|
|
186
|
-
configSites: Json;
|
|
187
|
-
country: string;
|
|
188
|
-
createdAt: string;
|
|
189
|
-
createdOn: Database['public']['Enums']['created_on'];
|
|
190
|
-
customerId: string | null;
|
|
191
|
-
deletedAt: string | null;
|
|
192
|
-
deletedBy: string | null;
|
|
193
|
-
description: string | null;
|
|
194
|
-
displayName: string;
|
|
183
|
+
// activeInvitationLink: boolean;
|
|
184
|
+
// addresses: Json[];
|
|
185
|
+
// administrators: string[];
|
|
186
|
+
// config: Json;
|
|
187
|
+
// configSites: Json;
|
|
188
|
+
// country: string;
|
|
189
|
+
// createdAt: string;
|
|
190
|
+
// createdOn: Database['public']['Enums']['created_on'];
|
|
191
|
+
// customerId: string | null;
|
|
192
|
+
// deletedAt: string | null;
|
|
193
|
+
// deletedBy: string | null;
|
|
194
|
+
// description: string | null;
|
|
195
|
+
// displayName: string;
|
|
196
|
+
|
|
197
|
+
// instruments: Json;
|
|
198
|
+
// intercomId: string | null;
|
|
199
|
+
// invitationEmails: string[];
|
|
200
|
+
// invitationLink: string | null;
|
|
201
|
+
// locality: string;
|
|
202
|
+
// location: unknown;
|
|
203
|
+
// location_lonlat: Database['public']['CompositeTypes']['lonlat'];
|
|
204
|
+
// metadata: Json;
|
|
205
|
+
// musicStyle: string;
|
|
206
|
+
// onboardingMessages: Json[];
|
|
207
|
+
// owner: string | null;
|
|
208
|
+
// partnershipId: string | null;
|
|
209
|
+
// photoURL: string;
|
|
210
|
+
// planId: Database['public']['Enums']['group_plan'];
|
|
211
|
+
// playerIds: string[];
|
|
212
|
+
// players: Json;
|
|
213
|
+
// repertoireTags: Json;
|
|
214
|
+
// rollcallLink: string | null;
|
|
215
|
+
// satisfactionIndex: Json;
|
|
216
|
+
// shortDynamicLink: string | null;
|
|
217
|
+
// socialNetworks: Json | null;
|
|
218
|
+
// status: Database['public']['Enums']['group_status'];
|
|
219
|
+
// subscriptionId: string | null;
|
|
220
|
+
// templates: Json;
|
|
221
|
+
// trialEndAt: string | null;
|
|
222
|
+
// updatedAt: string;
|
|
223
|
+
// username: string;
|
|
224
|
+
// visitedDashboardAt: Json;
|
|
195
225
|
id: string;
|
|
196
|
-
instruments: Json;
|
|
197
|
-
intercomId: string | null;
|
|
198
|
-
invitationEmails: string[];
|
|
199
|
-
invitationLink: string | null;
|
|
200
|
-
locality: string;
|
|
201
|
-
location: unknown;
|
|
202
|
-
location_lonlat: Database['public']['CompositeTypes']['lonlat'];
|
|
203
|
-
metadata: Json;
|
|
204
|
-
musicStyle: string;
|
|
205
|
-
onboardingMessages: Json[];
|
|
206
|
-
owner: string | null;
|
|
207
|
-
partnershipId: string | null;
|
|
208
|
-
photoURL: string;
|
|
209
|
-
planId: Database['public']['Enums']['group_plan'];
|
|
210
|
-
playerIds: string[];
|
|
211
|
-
players: Json;
|
|
212
|
-
repertoireTags: Json;
|
|
213
|
-
rollcallLink: string | null;
|
|
214
|
-
satisfactionIndex: Json;
|
|
215
|
-
shortDynamicLink: string | null;
|
|
216
|
-
socialNetworks: Json | null;
|
|
217
|
-
status: Database['public']['Enums']['group_status'];
|
|
218
|
-
subscriptionId: string | null;
|
|
219
|
-
templates: Json;
|
|
220
|
-
trialEndAt: string | null;
|
|
221
|
-
updatedAt: string;
|
|
222
|
-
username: string;
|
|
223
|
-
visitedDashboardAt: Json;
|
|
224
226
|
};
|
|
225
227
|
Insert: {
|
|
226
228
|
activeInvitationLink: boolean;
|
|
@@ -503,7 +505,6 @@ export type Database = {
|
|
|
503
505
|
created_at: string | null;
|
|
504
506
|
id: string;
|
|
505
507
|
last_accessed_at: string | null;
|
|
506
|
-
level: number | null;
|
|
507
508
|
metadata: Json | null;
|
|
508
509
|
name: string | null;
|
|
509
510
|
owner: string | null;
|
|
@@ -518,7 +519,6 @@ export type Database = {
|
|
|
518
519
|
created_at?: string | null;
|
|
519
520
|
id?: string;
|
|
520
521
|
last_accessed_at?: string | null;
|
|
521
|
-
level?: number | null;
|
|
522
522
|
metadata?: Json | null;
|
|
523
523
|
name?: string | null;
|
|
524
524
|
owner?: string | null;
|
|
@@ -533,7 +533,6 @@ export type Database = {
|
|
|
533
533
|
created_at?: string | null;
|
|
534
534
|
id?: string;
|
|
535
535
|
last_accessed_at?: string | null;
|
|
536
|
-
level?: number | null;
|
|
537
536
|
metadata?: Json | null;
|
|
538
537
|
name?: string | null;
|
|
539
538
|
owner?: string | null;
|
|
@@ -553,38 +552,6 @@ export type Database = {
|
|
|
553
552
|
}
|
|
554
553
|
];
|
|
555
554
|
};
|
|
556
|
-
prefixes: {
|
|
557
|
-
Row: {
|
|
558
|
-
bucket_id: string;
|
|
559
|
-
created_at: string | null;
|
|
560
|
-
level: number;
|
|
561
|
-
name: string;
|
|
562
|
-
updated_at: string | null;
|
|
563
|
-
};
|
|
564
|
-
Insert: {
|
|
565
|
-
bucket_id: string;
|
|
566
|
-
created_at?: string | null;
|
|
567
|
-
level?: number;
|
|
568
|
-
name: string;
|
|
569
|
-
updated_at?: string | null;
|
|
570
|
-
};
|
|
571
|
-
Update: {
|
|
572
|
-
bucket_id?: string;
|
|
573
|
-
created_at?: string | null;
|
|
574
|
-
level?: number;
|
|
575
|
-
name?: string;
|
|
576
|
-
updated_at?: string | null;
|
|
577
|
-
};
|
|
578
|
-
Relationships: [
|
|
579
|
-
{
|
|
580
|
-
foreignKeyName: 'prefixes_bucketId_fkey';
|
|
581
|
-
columns: ['bucket_id'];
|
|
582
|
-
isOneToOne: false;
|
|
583
|
-
referencedRelation: 'buckets';
|
|
584
|
-
referencedColumns: ['id'];
|
|
585
|
-
}
|
|
586
|
-
];
|
|
587
|
-
};
|
|
588
555
|
s3_multipart_uploads: {
|
|
589
556
|
Row: {
|
|
590
557
|
bucket_id: string;
|
|
@@ -688,18 +655,10 @@ export type Database = {
|
|
|
688
655
|
[_ in never]: never;
|
|
689
656
|
};
|
|
690
657
|
Functions: {
|
|
691
|
-
add_prefixes: {
|
|
692
|
-
Args: { _bucket_id: string; _name: string };
|
|
693
|
-
Returns: undefined;
|
|
694
|
-
};
|
|
695
658
|
can_insert_object: {
|
|
696
659
|
Args: { bucketid: string; name: string; owner: string; metadata: Json };
|
|
697
660
|
Returns: undefined;
|
|
698
661
|
};
|
|
699
|
-
delete_prefix: {
|
|
700
|
-
Args: { _bucket_id: string; _name: string };
|
|
701
|
-
Returns: boolean;
|
|
702
|
-
};
|
|
703
662
|
extension: {
|
|
704
663
|
Args: { name: string };
|
|
705
664
|
Returns: string;
|
|
@@ -712,18 +671,6 @@ export type Database = {
|
|
|
712
671
|
Args: { name: string };
|
|
713
672
|
Returns: string[];
|
|
714
673
|
};
|
|
715
|
-
get_level: {
|
|
716
|
-
Args: { name: string };
|
|
717
|
-
Returns: number;
|
|
718
|
-
};
|
|
719
|
-
get_prefix: {
|
|
720
|
-
Args: { name: string };
|
|
721
|
-
Returns: string;
|
|
722
|
-
};
|
|
723
|
-
get_prefixes: {
|
|
724
|
-
Args: { name: string };
|
|
725
|
-
Returns: string[];
|
|
726
|
-
};
|
|
727
674
|
get_size_by_bucket: {
|
|
728
675
|
Args: Record<PropertyKey, never>;
|
|
729
676
|
Returns: {
|
|
@@ -786,63 +733,6 @@ export type Database = {
|
|
|
786
733
|
metadata: Json;
|
|
787
734
|
}[];
|
|
788
735
|
};
|
|
789
|
-
search_legacy_v1: {
|
|
790
|
-
Args: {
|
|
791
|
-
prefix: string;
|
|
792
|
-
bucketname: string;
|
|
793
|
-
limits?: number;
|
|
794
|
-
levels?: number;
|
|
795
|
-
offsets?: number;
|
|
796
|
-
search?: string;
|
|
797
|
-
sortcolumn?: string;
|
|
798
|
-
sortorder?: string;
|
|
799
|
-
};
|
|
800
|
-
Returns: {
|
|
801
|
-
name: string;
|
|
802
|
-
id: string;
|
|
803
|
-
updated_at: string;
|
|
804
|
-
created_at: string;
|
|
805
|
-
last_accessed_at: string;
|
|
806
|
-
metadata: Json;
|
|
807
|
-
}[];
|
|
808
|
-
};
|
|
809
|
-
search_v1_optimised: {
|
|
810
|
-
Args: {
|
|
811
|
-
prefix: string;
|
|
812
|
-
bucketname: string;
|
|
813
|
-
limits?: number;
|
|
814
|
-
levels?: number;
|
|
815
|
-
offsets?: number;
|
|
816
|
-
search?: string;
|
|
817
|
-
sortcolumn?: string;
|
|
818
|
-
sortorder?: string;
|
|
819
|
-
};
|
|
820
|
-
Returns: {
|
|
821
|
-
name: string;
|
|
822
|
-
id: string;
|
|
823
|
-
updated_at: string;
|
|
824
|
-
created_at: string;
|
|
825
|
-
last_accessed_at: string;
|
|
826
|
-
metadata: Json;
|
|
827
|
-
}[];
|
|
828
|
-
};
|
|
829
|
-
search_v2: {
|
|
830
|
-
Args: {
|
|
831
|
-
prefix: string;
|
|
832
|
-
bucket_name: string;
|
|
833
|
-
limits?: number;
|
|
834
|
-
levels?: number;
|
|
835
|
-
start_after?: string;
|
|
836
|
-
};
|
|
837
|
-
Returns: {
|
|
838
|
-
key: string;
|
|
839
|
-
name: string;
|
|
840
|
-
id: string;
|
|
841
|
-
updated_at: string;
|
|
842
|
-
created_at: string;
|
|
843
|
-
metadata: Json;
|
|
844
|
-
}[];
|
|
845
|
-
};
|
|
846
736
|
};
|
|
847
737
|
Enums: {
|
|
848
738
|
[_ in never]: never;
|