@everylanguage/shared-types 1.0.23-dev.20260112.235954.205 → 1.0.23-dev.20260113.114958.209
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/database.d.ts +34 -93
package/package.json
CHANGED
package/types/database.d.ts
CHANGED
|
@@ -2047,7 +2047,6 @@ export type Database = {
|
|
|
2047
2047
|
id: string;
|
|
2048
2048
|
is_bible_audio: boolean | null;
|
|
2049
2049
|
language_entity_id: string;
|
|
2050
|
-
local_path: string | null;
|
|
2051
2050
|
media_type: Database["public"]["Enums"]["media_type"];
|
|
2052
2051
|
object_key: string | null;
|
|
2053
2052
|
original_filename: string | null;
|
|
@@ -2074,7 +2073,6 @@ export type Database = {
|
|
|
2074
2073
|
id?: string;
|
|
2075
2074
|
is_bible_audio?: boolean | null;
|
|
2076
2075
|
language_entity_id: string;
|
|
2077
|
-
local_path?: string | null;
|
|
2078
2076
|
media_type: Database["public"]["Enums"]["media_type"];
|
|
2079
2077
|
object_key?: string | null;
|
|
2080
2078
|
original_filename?: string | null;
|
|
@@ -2101,7 +2099,6 @@ export type Database = {
|
|
|
2101
2099
|
id?: string;
|
|
2102
2100
|
is_bible_audio?: boolean | null;
|
|
2103
2101
|
language_entity_id?: string;
|
|
2104
|
-
local_path?: string | null;
|
|
2105
2102
|
media_type?: Database["public"]["Enums"]["media_type"];
|
|
2106
2103
|
object_key?: string | null;
|
|
2107
2104
|
original_filename?: string | null;
|
|
@@ -3701,10 +3698,17 @@ export type Database = {
|
|
|
3701
3698
|
created_at: string | null;
|
|
3702
3699
|
created_by: string | null;
|
|
3703
3700
|
deleted_at: string | null;
|
|
3701
|
+
file_type: string | null;
|
|
3704
3702
|
id: string;
|
|
3705
|
-
|
|
3703
|
+
is_deleted: boolean | null;
|
|
3704
|
+
is_numbered: boolean | null;
|
|
3705
|
+
object_key: string | null;
|
|
3706
|
+
original_filename: string | null;
|
|
3706
3707
|
project_id: string | null;
|
|
3707
|
-
|
|
3708
|
+
segment_color: string | null;
|
|
3709
|
+
segment_index: number | null;
|
|
3710
|
+
sequence_id: string;
|
|
3711
|
+
storage_provider: string | null;
|
|
3708
3712
|
type: Database["public"]["Enums"]["segment_type"];
|
|
3709
3713
|
updated_at: string | null;
|
|
3710
3714
|
};
|
|
@@ -3712,10 +3716,17 @@ export type Database = {
|
|
|
3712
3716
|
created_at?: string | null;
|
|
3713
3717
|
created_by?: string | null;
|
|
3714
3718
|
deleted_at?: string | null;
|
|
3719
|
+
file_type?: string | null;
|
|
3715
3720
|
id?: string;
|
|
3716
|
-
|
|
3721
|
+
is_deleted?: boolean | null;
|
|
3722
|
+
is_numbered?: boolean | null;
|
|
3723
|
+
object_key?: string | null;
|
|
3724
|
+
original_filename?: string | null;
|
|
3717
3725
|
project_id?: string | null;
|
|
3718
|
-
|
|
3726
|
+
segment_color?: string | null;
|
|
3727
|
+
segment_index?: number | null;
|
|
3728
|
+
sequence_id: string;
|
|
3729
|
+
storage_provider?: string | null;
|
|
3719
3730
|
type: Database["public"]["Enums"]["segment_type"];
|
|
3720
3731
|
updated_at?: string | null;
|
|
3721
3732
|
};
|
|
@@ -3723,10 +3734,17 @@ export type Database = {
|
|
|
3723
3734
|
created_at?: string | null;
|
|
3724
3735
|
created_by?: string | null;
|
|
3725
3736
|
deleted_at?: string | null;
|
|
3737
|
+
file_type?: string | null;
|
|
3726
3738
|
id?: string;
|
|
3727
|
-
|
|
3739
|
+
is_deleted?: boolean | null;
|
|
3740
|
+
is_numbered?: boolean | null;
|
|
3741
|
+
object_key?: string | null;
|
|
3742
|
+
original_filename?: string | null;
|
|
3728
3743
|
project_id?: string | null;
|
|
3729
|
-
|
|
3744
|
+
segment_color?: string | null;
|
|
3745
|
+
segment_index?: number | null;
|
|
3746
|
+
sequence_id?: string;
|
|
3747
|
+
storage_provider?: string | null;
|
|
3730
3748
|
type?: Database["public"]["Enums"]["segment_type"];
|
|
3731
3749
|
updated_at?: string | null;
|
|
3732
3750
|
};
|
|
@@ -3751,6 +3769,13 @@ export type Database = {
|
|
|
3751
3769
|
isOneToOne: false;
|
|
3752
3770
|
referencedRelation: "user_projects";
|
|
3753
3771
|
referencedColumns: ["id"];
|
|
3772
|
+
},
|
|
3773
|
+
{
|
|
3774
|
+
foreignKeyName: "segments_sequence_id_fkey";
|
|
3775
|
+
columns: ["sequence_id"];
|
|
3776
|
+
isOneToOne: false;
|
|
3777
|
+
referencedRelation: "sequences";
|
|
3778
|
+
referencedColumns: ["id"];
|
|
3754
3779
|
}
|
|
3755
3780
|
];
|
|
3756
3781
|
};
|
|
@@ -3868,90 +3893,6 @@ export type Database = {
|
|
|
3868
3893
|
}
|
|
3869
3894
|
];
|
|
3870
3895
|
};
|
|
3871
|
-
sequences_segments: {
|
|
3872
|
-
Row: {
|
|
3873
|
-
created_at: string | null;
|
|
3874
|
-
created_by: string | null;
|
|
3875
|
-
id: string;
|
|
3876
|
-
is_deleted: boolean | null;
|
|
3877
|
-
is_hidden: boolean | null;
|
|
3878
|
-
is_numbered: boolean | null;
|
|
3879
|
-
project_id: string | null;
|
|
3880
|
-
segment_color: string | null;
|
|
3881
|
-
segment_id: string;
|
|
3882
|
-
segment_index: number;
|
|
3883
|
-
sequence_id: string;
|
|
3884
|
-
updated_at: string | null;
|
|
3885
|
-
verse_number: number;
|
|
3886
|
-
};
|
|
3887
|
-
Insert: {
|
|
3888
|
-
created_at?: string | null;
|
|
3889
|
-
created_by?: string | null;
|
|
3890
|
-
id?: string;
|
|
3891
|
-
is_deleted?: boolean | null;
|
|
3892
|
-
is_hidden?: boolean | null;
|
|
3893
|
-
is_numbered?: boolean | null;
|
|
3894
|
-
project_id?: string | null;
|
|
3895
|
-
segment_color?: string | null;
|
|
3896
|
-
segment_id: string;
|
|
3897
|
-
segment_index: number;
|
|
3898
|
-
sequence_id: string;
|
|
3899
|
-
updated_at?: string | null;
|
|
3900
|
-
verse_number?: number;
|
|
3901
|
-
};
|
|
3902
|
-
Update: {
|
|
3903
|
-
created_at?: string | null;
|
|
3904
|
-
created_by?: string | null;
|
|
3905
|
-
id?: string;
|
|
3906
|
-
is_deleted?: boolean | null;
|
|
3907
|
-
is_hidden?: boolean | null;
|
|
3908
|
-
is_numbered?: boolean | null;
|
|
3909
|
-
project_id?: string | null;
|
|
3910
|
-
segment_color?: string | null;
|
|
3911
|
-
segment_id?: string;
|
|
3912
|
-
segment_index?: number;
|
|
3913
|
-
sequence_id?: string;
|
|
3914
|
-
updated_at?: string | null;
|
|
3915
|
-
verse_number?: number;
|
|
3916
|
-
};
|
|
3917
|
-
Relationships: [
|
|
3918
|
-
{
|
|
3919
|
-
foreignKeyName: "sequences_segments_created_by_fkey";
|
|
3920
|
-
columns: ["created_by"];
|
|
3921
|
-
isOneToOne: false;
|
|
3922
|
-
referencedRelation: "users";
|
|
3923
|
-
referencedColumns: ["id"];
|
|
3924
|
-
},
|
|
3925
|
-
{
|
|
3926
|
-
foreignKeyName: "sequences_segments_project_id_fkey";
|
|
3927
|
-
columns: ["project_id"];
|
|
3928
|
-
isOneToOne: false;
|
|
3929
|
-
referencedRelation: "projects";
|
|
3930
|
-
referencedColumns: ["id"];
|
|
3931
|
-
},
|
|
3932
|
-
{
|
|
3933
|
-
foreignKeyName: "sequences_segments_project_id_fkey";
|
|
3934
|
-
columns: ["project_id"];
|
|
3935
|
-
isOneToOne: false;
|
|
3936
|
-
referencedRelation: "user_projects";
|
|
3937
|
-
referencedColumns: ["id"];
|
|
3938
|
-
},
|
|
3939
|
-
{
|
|
3940
|
-
foreignKeyName: "sequences_segments_segment_id_fkey";
|
|
3941
|
-
columns: ["segment_id"];
|
|
3942
|
-
isOneToOne: false;
|
|
3943
|
-
referencedRelation: "segments";
|
|
3944
|
-
referencedColumns: ["id"];
|
|
3945
|
-
},
|
|
3946
|
-
{
|
|
3947
|
-
foreignKeyName: "sequences_segments_sequence_id_fkey";
|
|
3948
|
-
columns: ["sequence_id"];
|
|
3949
|
-
isOneToOne: false;
|
|
3950
|
-
referencedRelation: "sequences";
|
|
3951
|
-
referencedColumns: ["id"];
|
|
3952
|
-
}
|
|
3953
|
-
];
|
|
3954
|
-
};
|
|
3955
3896
|
sessions: {
|
|
3956
3897
|
Row: {
|
|
3957
3898
|
app_download_id: string | null;
|