@hobenakicoffee/libraries 5.13.0 → 6.1.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/package.json +1 -1
- package/src/constants/services.ts +5 -5
- package/src/types/supabase.ts +26 -0
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export const ServiceTypes = {
|
|
2
2
|
GIFT: "gift",
|
|
3
|
-
DIGITAL_CONTENT: "
|
|
4
|
-
MY_SHOP: "
|
|
5
|
-
CONSULTANCY_1ON1: "
|
|
6
|
-
HIRE_ME: "
|
|
3
|
+
DIGITAL_CONTENT: "digital-content",
|
|
4
|
+
MY_SHOP: "shop",
|
|
5
|
+
CONSULTANCY_1ON1: "consultancy",
|
|
6
|
+
HIRE_ME: "hire",
|
|
7
7
|
COURSES: "courses",
|
|
8
|
-
LIVE_STREAMS: "
|
|
8
|
+
LIVE_STREAMS: "live-streaming",
|
|
9
9
|
NEWSLETTER: "newsletter",
|
|
10
10
|
WITHDRAWAL: "withdrawal",
|
|
11
11
|
FOLLOW: "follow",
|
package/src/types/supabase.ts
CHANGED
|
@@ -1023,6 +1023,30 @@ export type Database = {
|
|
|
1023
1023
|
};
|
|
1024
1024
|
Relationships: [];
|
|
1025
1025
|
};
|
|
1026
|
+
messages_2026_07: {
|
|
1027
|
+
Row: {
|
|
1028
|
+
content: string;
|
|
1029
|
+
conversation_id: string;
|
|
1030
|
+
created_at: string;
|
|
1031
|
+
id: number;
|
|
1032
|
+
sender_id: string;
|
|
1033
|
+
};
|
|
1034
|
+
Insert: {
|
|
1035
|
+
content: string;
|
|
1036
|
+
conversation_id: string;
|
|
1037
|
+
created_at?: string;
|
|
1038
|
+
id?: number;
|
|
1039
|
+
sender_id: string;
|
|
1040
|
+
};
|
|
1041
|
+
Update: {
|
|
1042
|
+
content?: string;
|
|
1043
|
+
conversation_id?: string;
|
|
1044
|
+
created_at?: string;
|
|
1045
|
+
id?: number;
|
|
1046
|
+
sender_id?: string;
|
|
1047
|
+
};
|
|
1048
|
+
Relationships: [];
|
|
1049
|
+
};
|
|
1026
1050
|
messages_default: {
|
|
1027
1051
|
Row: {
|
|
1028
1052
|
content: string;
|
|
@@ -3969,6 +3993,8 @@ export type Database = {
|
|
|
3969
3993
|
upsert_shop_settings: {
|
|
3970
3994
|
Args: {
|
|
3971
3995
|
p_banner_url?: string;
|
|
3996
|
+
p_clear_banner_url?: boolean;
|
|
3997
|
+
p_clear_logo_url?: boolean;
|
|
3972
3998
|
p_cod_enabled?: boolean;
|
|
3973
3999
|
p_is_active?: boolean;
|
|
3974
4000
|
p_logo_url?: string;
|