@glissandoo/lib 1.107.1 → 1.108.0
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/index.d.ts +0 -1
- package/functions/index.js +1 -1
- package/functions/regions.js +1 -1
- package/helpers/notifications/index.d.ts +1 -0
- package/helpers/notifications/index.js +35 -1
- package/lang/ca.json +65 -0
- package/lang/de.json +65 -0
- package/lang/en.json +65 -0
- package/lang/es.json +65 -0
- package/lang/eu.json +65 -0
- package/lang/fr.json +65 -0
- package/lang/gl.json +65 -0
- package/lang/it.json +65 -0
- package/lang/nl.json +65 -0
- package/lang/pt.json +65 -0
- package/models/Evento/types.d.ts +2 -1
- package/models/Evento/types.js +1 -0
- package/models/Notification/types.d.ts +32 -0
- package/models/Notification/types.js +32 -0
- package/package.json +1 -1
- package/types/supabase/generated.d.ts +14 -602
- package/types/supabase/generated.js +1 -9
- package/types/supabase/generated.ts +14 -552
|
@@ -5,37 +5,12 @@ export type Database = {
|
|
|
5
5
|
__InternalSupabase: {
|
|
6
6
|
PostgrestVersion: '12.2.3 (519615d)';
|
|
7
7
|
};
|
|
8
|
-
graphql_public: {
|
|
9
|
-
Tables: {
|
|
10
|
-
[_ in never]: never;
|
|
11
|
-
};
|
|
12
|
-
Views: {
|
|
13
|
-
[_ in never]: never;
|
|
14
|
-
};
|
|
15
|
-
Functions: {
|
|
16
|
-
graphql: {
|
|
17
|
-
Args: {
|
|
18
|
-
extensions?: Json;
|
|
19
|
-
operationName?: string;
|
|
20
|
-
query?: string;
|
|
21
|
-
variables?: Json;
|
|
22
|
-
};
|
|
23
|
-
Returns: Json;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
Enums: {
|
|
27
|
-
[_ in never]: never;
|
|
28
|
-
};
|
|
29
|
-
CompositeTypes: {
|
|
30
|
-
[_ in never]: never;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
8
|
public: {
|
|
34
9
|
Tables: {
|
|
35
10
|
comm: {
|
|
36
11
|
Row: {
|
|
37
|
-
block_answers: boolean
|
|
38
|
-
comments_count: number
|
|
12
|
+
block_answers: boolean;
|
|
13
|
+
comments_count: number;
|
|
39
14
|
created_at: string;
|
|
40
15
|
deleted_at: string | null;
|
|
41
16
|
deleted_by: string | null;
|
|
@@ -45,15 +20,15 @@ export type Database = {
|
|
|
45
20
|
id: string;
|
|
46
21
|
owner_id: string;
|
|
47
22
|
recipients: string[];
|
|
48
|
-
server: boolean
|
|
23
|
+
server: boolean;
|
|
49
24
|
server_template: string | null;
|
|
50
25
|
template_id: string | null;
|
|
51
26
|
title: string;
|
|
52
27
|
type: string;
|
|
53
28
|
};
|
|
54
29
|
Insert: {
|
|
55
|
-
block_answers?: boolean
|
|
56
|
-
comments_count?: number
|
|
30
|
+
block_answers?: boolean;
|
|
31
|
+
comments_count?: number;
|
|
57
32
|
created_at?: string;
|
|
58
33
|
deleted_at?: string | null;
|
|
59
34
|
deleted_by?: string | null;
|
|
@@ -63,15 +38,15 @@ export type Database = {
|
|
|
63
38
|
id: string;
|
|
64
39
|
owner_id: string;
|
|
65
40
|
recipients: string[];
|
|
66
|
-
server
|
|
41
|
+
server: boolean;
|
|
67
42
|
server_template?: string | null;
|
|
68
43
|
template_id?: string | null;
|
|
69
44
|
title: string;
|
|
70
45
|
type: string;
|
|
71
46
|
};
|
|
72
47
|
Update: {
|
|
73
|
-
block_answers?: boolean
|
|
74
|
-
comments_count?: number
|
|
48
|
+
block_answers?: boolean;
|
|
49
|
+
comments_count?: number;
|
|
75
50
|
created_at?: string;
|
|
76
51
|
deleted_at?: string | null;
|
|
77
52
|
deleted_by?: string | null;
|
|
@@ -81,7 +56,7 @@ export type Database = {
|
|
|
81
56
|
id?: string;
|
|
82
57
|
owner_id?: string;
|
|
83
58
|
recipients?: string[];
|
|
84
|
-
server?: boolean
|
|
59
|
+
server?: boolean;
|
|
85
60
|
server_template?: string | null;
|
|
86
61
|
template_id?: string | null;
|
|
87
62
|
title?: string;
|
|
@@ -606,7 +581,7 @@ export type Database = {
|
|
|
606
581
|
compositor: string | null;
|
|
607
582
|
created_at: string;
|
|
608
583
|
events: string[];
|
|
609
|
-
group_id: string
|
|
584
|
+
group_id: string;
|
|
610
585
|
id: string;
|
|
611
586
|
last_event_datetime: string | null;
|
|
612
587
|
owner_id: string;
|
|
@@ -618,7 +593,7 @@ export type Database = {
|
|
|
618
593
|
compositor?: string | null;
|
|
619
594
|
created_at?: string;
|
|
620
595
|
events: string[];
|
|
621
|
-
group_id
|
|
596
|
+
group_id: string;
|
|
622
597
|
id: string;
|
|
623
598
|
last_event_datetime?: string | null;
|
|
624
599
|
owner_id: string;
|
|
@@ -630,7 +605,7 @@ export type Database = {
|
|
|
630
605
|
compositor?: string | null;
|
|
631
606
|
created_at?: string;
|
|
632
607
|
events?: string[];
|
|
633
|
-
group_id?: string
|
|
608
|
+
group_id?: string;
|
|
634
609
|
id?: string;
|
|
635
610
|
last_event_datetime?: string | null;
|
|
636
611
|
owner_id?: string;
|
|
@@ -683,7 +658,7 @@ export type Database = {
|
|
|
683
658
|
Enums: {
|
|
684
659
|
created_on: 'app' | 'dashboard' | 'auth' | 'web';
|
|
685
660
|
event_selection_mode: 'open' | 'closed';
|
|
686
|
-
event_type: 'practice' | 'performance';
|
|
661
|
+
event_type: 'practice' | 'performance' | 'other';
|
|
687
662
|
group_plan: 'piano' | 'mezzopiano' | 'mezzoforte' | 'forte' | 'fortissimo' | 'tutti';
|
|
688
663
|
group_plan_period: 'yearly' | 'monthly';
|
|
689
664
|
group_status: 'premium' | 'trial' | 'inactive' | 'deleted';
|
|
@@ -697,561 +672,6 @@ export type Database = {
|
|
|
697
672
|
};
|
|
698
673
|
};
|
|
699
674
|
};
|
|
700
|
-
storage: {
|
|
701
|
-
Tables: {
|
|
702
|
-
buckets: {
|
|
703
|
-
Row: {
|
|
704
|
-
allowed_mime_types: string[] | null;
|
|
705
|
-
avif_autodetection: boolean | null;
|
|
706
|
-
created_at: string | null;
|
|
707
|
-
file_size_limit: number | null;
|
|
708
|
-
id: string;
|
|
709
|
-
name: string;
|
|
710
|
-
owner: string | null;
|
|
711
|
-
owner_id: string | null;
|
|
712
|
-
public: boolean | null;
|
|
713
|
-
type: Database['storage']['Enums']['buckettype'];
|
|
714
|
-
updated_at: string | null;
|
|
715
|
-
};
|
|
716
|
-
Insert: {
|
|
717
|
-
allowed_mime_types?: string[] | null;
|
|
718
|
-
avif_autodetection?: boolean | null;
|
|
719
|
-
created_at?: string | null;
|
|
720
|
-
file_size_limit?: number | null;
|
|
721
|
-
id: string;
|
|
722
|
-
name: string;
|
|
723
|
-
owner?: string | null;
|
|
724
|
-
owner_id?: string | null;
|
|
725
|
-
public?: boolean | null;
|
|
726
|
-
type?: Database['storage']['Enums']['buckettype'];
|
|
727
|
-
updated_at?: string | null;
|
|
728
|
-
};
|
|
729
|
-
Update: {
|
|
730
|
-
allowed_mime_types?: string[] | null;
|
|
731
|
-
avif_autodetection?: boolean | null;
|
|
732
|
-
created_at?: string | null;
|
|
733
|
-
file_size_limit?: number | null;
|
|
734
|
-
id?: string;
|
|
735
|
-
name?: string;
|
|
736
|
-
owner?: string | null;
|
|
737
|
-
owner_id?: string | null;
|
|
738
|
-
public?: boolean | null;
|
|
739
|
-
type?: Database['storage']['Enums']['buckettype'];
|
|
740
|
-
updated_at?: string | null;
|
|
741
|
-
};
|
|
742
|
-
Relationships: [];
|
|
743
|
-
};
|
|
744
|
-
buckets_analytics: {
|
|
745
|
-
Row: {
|
|
746
|
-
created_at: string;
|
|
747
|
-
deleted_at: string | null;
|
|
748
|
-
format: string;
|
|
749
|
-
id: string;
|
|
750
|
-
name: string;
|
|
751
|
-
type: Database['storage']['Enums']['buckettype'];
|
|
752
|
-
updated_at: string;
|
|
753
|
-
};
|
|
754
|
-
Insert: {
|
|
755
|
-
created_at?: string;
|
|
756
|
-
deleted_at?: string | null;
|
|
757
|
-
format?: string;
|
|
758
|
-
id?: string;
|
|
759
|
-
name: string;
|
|
760
|
-
type?: Database['storage']['Enums']['buckettype'];
|
|
761
|
-
updated_at?: string;
|
|
762
|
-
};
|
|
763
|
-
Update: {
|
|
764
|
-
created_at?: string;
|
|
765
|
-
deleted_at?: string | null;
|
|
766
|
-
format?: string;
|
|
767
|
-
id?: string;
|
|
768
|
-
name?: string;
|
|
769
|
-
type?: Database['storage']['Enums']['buckettype'];
|
|
770
|
-
updated_at?: string;
|
|
771
|
-
};
|
|
772
|
-
Relationships: [];
|
|
773
|
-
};
|
|
774
|
-
buckets_vectors: {
|
|
775
|
-
Row: {
|
|
776
|
-
created_at: string;
|
|
777
|
-
id: string;
|
|
778
|
-
type: Database['storage']['Enums']['buckettype'];
|
|
779
|
-
updated_at: string;
|
|
780
|
-
};
|
|
781
|
-
Insert: {
|
|
782
|
-
created_at?: string;
|
|
783
|
-
id: string;
|
|
784
|
-
type?: Database['storage']['Enums']['buckettype'];
|
|
785
|
-
updated_at?: string;
|
|
786
|
-
};
|
|
787
|
-
Update: {
|
|
788
|
-
created_at?: string;
|
|
789
|
-
id?: string;
|
|
790
|
-
type?: Database['storage']['Enums']['buckettype'];
|
|
791
|
-
updated_at?: string;
|
|
792
|
-
};
|
|
793
|
-
Relationships: [];
|
|
794
|
-
};
|
|
795
|
-
migrations: {
|
|
796
|
-
Row: {
|
|
797
|
-
executed_at: string | null;
|
|
798
|
-
hash: string;
|
|
799
|
-
id: number;
|
|
800
|
-
name: string;
|
|
801
|
-
};
|
|
802
|
-
Insert: {
|
|
803
|
-
executed_at?: string | null;
|
|
804
|
-
hash: string;
|
|
805
|
-
id: number;
|
|
806
|
-
name: string;
|
|
807
|
-
};
|
|
808
|
-
Update: {
|
|
809
|
-
executed_at?: string | null;
|
|
810
|
-
hash?: string;
|
|
811
|
-
id?: number;
|
|
812
|
-
name?: string;
|
|
813
|
-
};
|
|
814
|
-
Relationships: [];
|
|
815
|
-
};
|
|
816
|
-
objects: {
|
|
817
|
-
Row: {
|
|
818
|
-
bucket_id: string | null;
|
|
819
|
-
created_at: string | null;
|
|
820
|
-
id: string;
|
|
821
|
-
last_accessed_at: string | null;
|
|
822
|
-
level: number | null;
|
|
823
|
-
metadata: Json | null;
|
|
824
|
-
name: string | null;
|
|
825
|
-
owner: string | null;
|
|
826
|
-
owner_id: string | null;
|
|
827
|
-
path_tokens: string[] | null;
|
|
828
|
-
updated_at: string | null;
|
|
829
|
-
user_metadata: Json | null;
|
|
830
|
-
version: string | null;
|
|
831
|
-
};
|
|
832
|
-
Insert: {
|
|
833
|
-
bucket_id?: string | null;
|
|
834
|
-
created_at?: string | null;
|
|
835
|
-
id?: string;
|
|
836
|
-
last_accessed_at?: string | null;
|
|
837
|
-
level?: number | null;
|
|
838
|
-
metadata?: Json | null;
|
|
839
|
-
name?: string | null;
|
|
840
|
-
owner?: string | null;
|
|
841
|
-
owner_id?: string | null;
|
|
842
|
-
path_tokens?: string[] | null;
|
|
843
|
-
updated_at?: string | null;
|
|
844
|
-
user_metadata?: Json | null;
|
|
845
|
-
version?: string | null;
|
|
846
|
-
};
|
|
847
|
-
Update: {
|
|
848
|
-
bucket_id?: string | null;
|
|
849
|
-
created_at?: string | null;
|
|
850
|
-
id?: string;
|
|
851
|
-
last_accessed_at?: string | null;
|
|
852
|
-
level?: number | null;
|
|
853
|
-
metadata?: Json | null;
|
|
854
|
-
name?: string | null;
|
|
855
|
-
owner?: string | null;
|
|
856
|
-
owner_id?: string | null;
|
|
857
|
-
path_tokens?: string[] | null;
|
|
858
|
-
updated_at?: string | null;
|
|
859
|
-
user_metadata?: Json | null;
|
|
860
|
-
version?: string | null;
|
|
861
|
-
};
|
|
862
|
-
Relationships: [
|
|
863
|
-
{
|
|
864
|
-
foreignKeyName: 'objects_bucketId_fkey';
|
|
865
|
-
columns: ['bucket_id'];
|
|
866
|
-
isOneToOne: false;
|
|
867
|
-
referencedRelation: 'buckets';
|
|
868
|
-
referencedColumns: ['id'];
|
|
869
|
-
}
|
|
870
|
-
];
|
|
871
|
-
};
|
|
872
|
-
prefixes: {
|
|
873
|
-
Row: {
|
|
874
|
-
bucket_id: string;
|
|
875
|
-
created_at: string | null;
|
|
876
|
-
level: number;
|
|
877
|
-
name: string;
|
|
878
|
-
updated_at: string | null;
|
|
879
|
-
};
|
|
880
|
-
Insert: {
|
|
881
|
-
bucket_id: string;
|
|
882
|
-
created_at?: string | null;
|
|
883
|
-
level?: number;
|
|
884
|
-
name: string;
|
|
885
|
-
updated_at?: string | null;
|
|
886
|
-
};
|
|
887
|
-
Update: {
|
|
888
|
-
bucket_id?: string;
|
|
889
|
-
created_at?: string | null;
|
|
890
|
-
level?: number;
|
|
891
|
-
name?: string;
|
|
892
|
-
updated_at?: string | null;
|
|
893
|
-
};
|
|
894
|
-
Relationships: [
|
|
895
|
-
{
|
|
896
|
-
foreignKeyName: 'prefixes_bucketId_fkey';
|
|
897
|
-
columns: ['bucket_id'];
|
|
898
|
-
isOneToOne: false;
|
|
899
|
-
referencedRelation: 'buckets';
|
|
900
|
-
referencedColumns: ['id'];
|
|
901
|
-
}
|
|
902
|
-
];
|
|
903
|
-
};
|
|
904
|
-
s3_multipart_uploads: {
|
|
905
|
-
Row: {
|
|
906
|
-
bucket_id: string;
|
|
907
|
-
created_at: string;
|
|
908
|
-
id: string;
|
|
909
|
-
in_progress_size: number;
|
|
910
|
-
key: string;
|
|
911
|
-
owner_id: string | null;
|
|
912
|
-
upload_signature: string;
|
|
913
|
-
user_metadata: Json | null;
|
|
914
|
-
version: string;
|
|
915
|
-
};
|
|
916
|
-
Insert: {
|
|
917
|
-
bucket_id: string;
|
|
918
|
-
created_at?: string;
|
|
919
|
-
id: string;
|
|
920
|
-
in_progress_size?: number;
|
|
921
|
-
key: string;
|
|
922
|
-
owner_id?: string | null;
|
|
923
|
-
upload_signature: string;
|
|
924
|
-
user_metadata?: Json | null;
|
|
925
|
-
version: string;
|
|
926
|
-
};
|
|
927
|
-
Update: {
|
|
928
|
-
bucket_id?: string;
|
|
929
|
-
created_at?: string;
|
|
930
|
-
id?: string;
|
|
931
|
-
in_progress_size?: number;
|
|
932
|
-
key?: string;
|
|
933
|
-
owner_id?: string | null;
|
|
934
|
-
upload_signature?: string;
|
|
935
|
-
user_metadata?: Json | null;
|
|
936
|
-
version?: string;
|
|
937
|
-
};
|
|
938
|
-
Relationships: [
|
|
939
|
-
{
|
|
940
|
-
foreignKeyName: 's3_multipart_uploads_bucket_id_fkey';
|
|
941
|
-
columns: ['bucket_id'];
|
|
942
|
-
isOneToOne: false;
|
|
943
|
-
referencedRelation: 'buckets';
|
|
944
|
-
referencedColumns: ['id'];
|
|
945
|
-
}
|
|
946
|
-
];
|
|
947
|
-
};
|
|
948
|
-
s3_multipart_uploads_parts: {
|
|
949
|
-
Row: {
|
|
950
|
-
bucket_id: string;
|
|
951
|
-
created_at: string;
|
|
952
|
-
etag: string;
|
|
953
|
-
id: string;
|
|
954
|
-
key: string;
|
|
955
|
-
owner_id: string | null;
|
|
956
|
-
part_number: number;
|
|
957
|
-
size: number;
|
|
958
|
-
upload_id: string;
|
|
959
|
-
version: string;
|
|
960
|
-
};
|
|
961
|
-
Insert: {
|
|
962
|
-
bucket_id: string;
|
|
963
|
-
created_at?: string;
|
|
964
|
-
etag: string;
|
|
965
|
-
id?: string;
|
|
966
|
-
key: string;
|
|
967
|
-
owner_id?: string | null;
|
|
968
|
-
part_number: number;
|
|
969
|
-
size?: number;
|
|
970
|
-
upload_id: string;
|
|
971
|
-
version: string;
|
|
972
|
-
};
|
|
973
|
-
Update: {
|
|
974
|
-
bucket_id?: string;
|
|
975
|
-
created_at?: string;
|
|
976
|
-
etag?: string;
|
|
977
|
-
id?: string;
|
|
978
|
-
key?: string;
|
|
979
|
-
owner_id?: string | null;
|
|
980
|
-
part_number?: number;
|
|
981
|
-
size?: number;
|
|
982
|
-
upload_id?: string;
|
|
983
|
-
version?: string;
|
|
984
|
-
};
|
|
985
|
-
Relationships: [
|
|
986
|
-
{
|
|
987
|
-
foreignKeyName: 's3_multipart_uploads_parts_bucket_id_fkey';
|
|
988
|
-
columns: ['bucket_id'];
|
|
989
|
-
isOneToOne: false;
|
|
990
|
-
referencedRelation: 'buckets';
|
|
991
|
-
referencedColumns: ['id'];
|
|
992
|
-
},
|
|
993
|
-
{
|
|
994
|
-
foreignKeyName: 's3_multipart_uploads_parts_upload_id_fkey';
|
|
995
|
-
columns: ['upload_id'];
|
|
996
|
-
isOneToOne: false;
|
|
997
|
-
referencedRelation: 's3_multipart_uploads';
|
|
998
|
-
referencedColumns: ['id'];
|
|
999
|
-
}
|
|
1000
|
-
];
|
|
1001
|
-
};
|
|
1002
|
-
vector_indexes: {
|
|
1003
|
-
Row: {
|
|
1004
|
-
bucket_id: string;
|
|
1005
|
-
created_at: string;
|
|
1006
|
-
data_type: string;
|
|
1007
|
-
dimension: number;
|
|
1008
|
-
distance_metric: string;
|
|
1009
|
-
id: string;
|
|
1010
|
-
metadata_configuration: Json | null;
|
|
1011
|
-
name: string;
|
|
1012
|
-
updated_at: string;
|
|
1013
|
-
};
|
|
1014
|
-
Insert: {
|
|
1015
|
-
bucket_id: string;
|
|
1016
|
-
created_at?: string;
|
|
1017
|
-
data_type: string;
|
|
1018
|
-
dimension: number;
|
|
1019
|
-
distance_metric: string;
|
|
1020
|
-
id?: string;
|
|
1021
|
-
metadata_configuration?: Json | null;
|
|
1022
|
-
name: string;
|
|
1023
|
-
updated_at?: string;
|
|
1024
|
-
};
|
|
1025
|
-
Update: {
|
|
1026
|
-
bucket_id?: string;
|
|
1027
|
-
created_at?: string;
|
|
1028
|
-
data_type?: string;
|
|
1029
|
-
dimension?: number;
|
|
1030
|
-
distance_metric?: string;
|
|
1031
|
-
id?: string;
|
|
1032
|
-
metadata_configuration?: Json | null;
|
|
1033
|
-
name?: string;
|
|
1034
|
-
updated_at?: string;
|
|
1035
|
-
};
|
|
1036
|
-
Relationships: [
|
|
1037
|
-
{
|
|
1038
|
-
foreignKeyName: 'vector_indexes_bucket_id_fkey';
|
|
1039
|
-
columns: ['bucket_id'];
|
|
1040
|
-
isOneToOne: false;
|
|
1041
|
-
referencedRelation: 'buckets_vectors';
|
|
1042
|
-
referencedColumns: ['id'];
|
|
1043
|
-
}
|
|
1044
|
-
];
|
|
1045
|
-
};
|
|
1046
|
-
};
|
|
1047
|
-
Views: {
|
|
1048
|
-
[_ in never]: never;
|
|
1049
|
-
};
|
|
1050
|
-
Functions: {
|
|
1051
|
-
add_prefixes: {
|
|
1052
|
-
Args: {
|
|
1053
|
-
_bucket_id: string;
|
|
1054
|
-
_name: string;
|
|
1055
|
-
};
|
|
1056
|
-
Returns: undefined;
|
|
1057
|
-
};
|
|
1058
|
-
can_insert_object: {
|
|
1059
|
-
Args: {
|
|
1060
|
-
bucketid: string;
|
|
1061
|
-
metadata: Json;
|
|
1062
|
-
name: string;
|
|
1063
|
-
owner: string;
|
|
1064
|
-
};
|
|
1065
|
-
Returns: undefined;
|
|
1066
|
-
};
|
|
1067
|
-
delete_leaf_prefixes: {
|
|
1068
|
-
Args: {
|
|
1069
|
-
bucket_ids: string[];
|
|
1070
|
-
names: string[];
|
|
1071
|
-
};
|
|
1072
|
-
Returns: undefined;
|
|
1073
|
-
};
|
|
1074
|
-
delete_prefix: {
|
|
1075
|
-
Args: {
|
|
1076
|
-
_bucket_id: string;
|
|
1077
|
-
_name: string;
|
|
1078
|
-
};
|
|
1079
|
-
Returns: boolean;
|
|
1080
|
-
};
|
|
1081
|
-
extension: {
|
|
1082
|
-
Args: {
|
|
1083
|
-
name: string;
|
|
1084
|
-
};
|
|
1085
|
-
Returns: string;
|
|
1086
|
-
};
|
|
1087
|
-
filename: {
|
|
1088
|
-
Args: {
|
|
1089
|
-
name: string;
|
|
1090
|
-
};
|
|
1091
|
-
Returns: string;
|
|
1092
|
-
};
|
|
1093
|
-
foldername: {
|
|
1094
|
-
Args: {
|
|
1095
|
-
name: string;
|
|
1096
|
-
};
|
|
1097
|
-
Returns: string[];
|
|
1098
|
-
};
|
|
1099
|
-
get_level: {
|
|
1100
|
-
Args: {
|
|
1101
|
-
name: string;
|
|
1102
|
-
};
|
|
1103
|
-
Returns: number;
|
|
1104
|
-
};
|
|
1105
|
-
get_prefix: {
|
|
1106
|
-
Args: {
|
|
1107
|
-
name: string;
|
|
1108
|
-
};
|
|
1109
|
-
Returns: string;
|
|
1110
|
-
};
|
|
1111
|
-
get_prefixes: {
|
|
1112
|
-
Args: {
|
|
1113
|
-
name: string;
|
|
1114
|
-
};
|
|
1115
|
-
Returns: string[];
|
|
1116
|
-
};
|
|
1117
|
-
get_size_by_bucket: {
|
|
1118
|
-
Args: never;
|
|
1119
|
-
Returns: {
|
|
1120
|
-
bucket_id: string;
|
|
1121
|
-
size: number;
|
|
1122
|
-
}[];
|
|
1123
|
-
};
|
|
1124
|
-
list_multipart_uploads_with_delimiter: {
|
|
1125
|
-
Args: {
|
|
1126
|
-
bucket_id: string;
|
|
1127
|
-
delimiter_param: string;
|
|
1128
|
-
max_keys?: number;
|
|
1129
|
-
next_key_token?: string;
|
|
1130
|
-
next_upload_token?: string;
|
|
1131
|
-
prefix_param: string;
|
|
1132
|
-
};
|
|
1133
|
-
Returns: {
|
|
1134
|
-
created_at: string;
|
|
1135
|
-
id: string;
|
|
1136
|
-
key: string;
|
|
1137
|
-
}[];
|
|
1138
|
-
};
|
|
1139
|
-
list_objects_with_delimiter: {
|
|
1140
|
-
Args: {
|
|
1141
|
-
bucket_id: string;
|
|
1142
|
-
delimiter_param: string;
|
|
1143
|
-
max_keys?: number;
|
|
1144
|
-
next_token?: string;
|
|
1145
|
-
prefix_param: string;
|
|
1146
|
-
start_after?: string;
|
|
1147
|
-
};
|
|
1148
|
-
Returns: {
|
|
1149
|
-
id: string;
|
|
1150
|
-
metadata: Json;
|
|
1151
|
-
name: string;
|
|
1152
|
-
updated_at: string;
|
|
1153
|
-
}[];
|
|
1154
|
-
};
|
|
1155
|
-
lock_top_prefixes: {
|
|
1156
|
-
Args: {
|
|
1157
|
-
bucket_ids: string[];
|
|
1158
|
-
names: string[];
|
|
1159
|
-
};
|
|
1160
|
-
Returns: undefined;
|
|
1161
|
-
};
|
|
1162
|
-
operation: {
|
|
1163
|
-
Args: never;
|
|
1164
|
-
Returns: string;
|
|
1165
|
-
};
|
|
1166
|
-
search: {
|
|
1167
|
-
Args: {
|
|
1168
|
-
bucketname: string;
|
|
1169
|
-
levels?: number;
|
|
1170
|
-
limits?: number;
|
|
1171
|
-
offsets?: number;
|
|
1172
|
-
prefix: string;
|
|
1173
|
-
search?: string;
|
|
1174
|
-
sortcolumn?: string;
|
|
1175
|
-
sortorder?: string;
|
|
1176
|
-
};
|
|
1177
|
-
Returns: {
|
|
1178
|
-
created_at: string;
|
|
1179
|
-
id: string;
|
|
1180
|
-
last_accessed_at: string;
|
|
1181
|
-
metadata: Json;
|
|
1182
|
-
name: string;
|
|
1183
|
-
updated_at: string;
|
|
1184
|
-
}[];
|
|
1185
|
-
};
|
|
1186
|
-
search_legacy_v1: {
|
|
1187
|
-
Args: {
|
|
1188
|
-
bucketname: string;
|
|
1189
|
-
levels?: number;
|
|
1190
|
-
limits?: number;
|
|
1191
|
-
offsets?: number;
|
|
1192
|
-
prefix: string;
|
|
1193
|
-
search?: string;
|
|
1194
|
-
sortcolumn?: string;
|
|
1195
|
-
sortorder?: string;
|
|
1196
|
-
};
|
|
1197
|
-
Returns: {
|
|
1198
|
-
created_at: string;
|
|
1199
|
-
id: string;
|
|
1200
|
-
last_accessed_at: string;
|
|
1201
|
-
metadata: Json;
|
|
1202
|
-
name: string;
|
|
1203
|
-
updated_at: string;
|
|
1204
|
-
}[];
|
|
1205
|
-
};
|
|
1206
|
-
search_v1_optimised: {
|
|
1207
|
-
Args: {
|
|
1208
|
-
bucketname: string;
|
|
1209
|
-
levels?: number;
|
|
1210
|
-
limits?: number;
|
|
1211
|
-
offsets?: number;
|
|
1212
|
-
prefix: string;
|
|
1213
|
-
search?: string;
|
|
1214
|
-
sortcolumn?: string;
|
|
1215
|
-
sortorder?: string;
|
|
1216
|
-
};
|
|
1217
|
-
Returns: {
|
|
1218
|
-
created_at: string;
|
|
1219
|
-
id: string;
|
|
1220
|
-
last_accessed_at: string;
|
|
1221
|
-
metadata: Json;
|
|
1222
|
-
name: string;
|
|
1223
|
-
updated_at: string;
|
|
1224
|
-
}[];
|
|
1225
|
-
};
|
|
1226
|
-
search_v2: {
|
|
1227
|
-
Args: {
|
|
1228
|
-
bucket_name: string;
|
|
1229
|
-
levels?: number;
|
|
1230
|
-
limits?: number;
|
|
1231
|
-
prefix: string;
|
|
1232
|
-
sort_column?: string;
|
|
1233
|
-
sort_column_after?: string;
|
|
1234
|
-
sort_order?: string;
|
|
1235
|
-
start_after?: string;
|
|
1236
|
-
};
|
|
1237
|
-
Returns: {
|
|
1238
|
-
created_at: string;
|
|
1239
|
-
id: string;
|
|
1240
|
-
key: string;
|
|
1241
|
-
last_accessed_at: string;
|
|
1242
|
-
metadata: Json;
|
|
1243
|
-
name: string;
|
|
1244
|
-
updated_at: string;
|
|
1245
|
-
}[];
|
|
1246
|
-
};
|
|
1247
|
-
};
|
|
1248
|
-
Enums: {
|
|
1249
|
-
buckettype: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
1250
|
-
};
|
|
1251
|
-
CompositeTypes: {
|
|
1252
|
-
[_ in never]: never;
|
|
1253
|
-
};
|
|
1254
|
-
};
|
|
1255
675
|
};
|
|
1256
676
|
type DatabaseWithoutInternals = Omit<Database, '__InternalSupabase'>;
|
|
1257
677
|
type DefaultSchema = DatabaseWithoutInternals[Extract<keyof Database, 'public'>];
|
|
@@ -1303,14 +723,11 @@ export type CompositeTypes<PublicCompositeTypeNameOrOptions extends keyof Defaul
|
|
|
1303
723
|
schema: keyof DatabaseWithoutInternals;
|
|
1304
724
|
} ? DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions['schema']]['CompositeTypes'][CompositeTypeName] : PublicCompositeTypeNameOrOptions extends keyof DefaultSchema['CompositeTypes'] ? DefaultSchema['CompositeTypes'][PublicCompositeTypeNameOrOptions] : never;
|
|
1305
725
|
export declare const Constants: {
|
|
1306
|
-
readonly graphql_public: {
|
|
1307
|
-
readonly Enums: {};
|
|
1308
|
-
};
|
|
1309
726
|
readonly public: {
|
|
1310
727
|
readonly Enums: {
|
|
1311
728
|
readonly created_on: readonly ["app", "dashboard", "auth", "web"];
|
|
1312
729
|
readonly event_selection_mode: readonly ["open", "closed"];
|
|
1313
|
-
readonly event_type: readonly ["practice", "performance"];
|
|
730
|
+
readonly event_type: readonly ["practice", "performance", "other"];
|
|
1314
731
|
readonly group_plan: readonly ["piano", "mezzopiano", "mezzoforte", "forte", "fortissimo", "tutti"];
|
|
1315
732
|
readonly group_plan_period: readonly ["yearly", "monthly"];
|
|
1316
733
|
readonly group_status: readonly ["premium", "trial", "inactive", "deleted"];
|
|
@@ -1318,10 +735,5 @@ export declare const Constants: {
|
|
|
1318
735
|
readonly social_network: readonly ["facebook", "twitter", "instagram", "youtube"];
|
|
1319
736
|
};
|
|
1320
737
|
};
|
|
1321
|
-
readonly storage: {
|
|
1322
|
-
readonly Enums: {
|
|
1323
|
-
readonly buckettype: readonly ["STANDARD", "ANALYTICS", "VECTOR"];
|
|
1324
|
-
};
|
|
1325
|
-
};
|
|
1326
738
|
};
|
|
1327
739
|
export {};
|