@hobenakicoffee/libraries 5.7.0 → 5.9.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/types/supabase.ts +21 -0
package/package.json
CHANGED
package/src/types/supabase.ts
CHANGED
|
@@ -3093,6 +3093,26 @@ export type Database = {
|
|
|
3093
3093
|
Args: { p_profile_id: string; p_service_type: string };
|
|
3094
3094
|
Returns: number;
|
|
3095
3095
|
};
|
|
3096
|
+
get_creator_public_activities: {
|
|
3097
|
+
Args: {
|
|
3098
|
+
p_creator_profile_id: string;
|
|
3099
|
+
p_cursor_created_at?: string;
|
|
3100
|
+
p_cursor_id?: string;
|
|
3101
|
+
p_limit?: number;
|
|
3102
|
+
};
|
|
3103
|
+
Returns: {
|
|
3104
|
+
counterparty_profile_id: string;
|
|
3105
|
+
cp_avatar_url: string;
|
|
3106
|
+
cp_display_name: string;
|
|
3107
|
+
cp_id: string;
|
|
3108
|
+
cp_username: string;
|
|
3109
|
+
created_at: string;
|
|
3110
|
+
id: string;
|
|
3111
|
+
metadata: Json;
|
|
3112
|
+
service_type: string;
|
|
3113
|
+
visibility: Database["public"]["Enums"]["visibility_enum"];
|
|
3114
|
+
}[];
|
|
3115
|
+
};
|
|
3096
3116
|
get_explore_creators: {
|
|
3097
3117
|
Args: {
|
|
3098
3118
|
p_category?: string;
|
|
@@ -3277,6 +3297,7 @@ export type Database = {
|
|
|
3277
3297
|
p_filter?: string;
|
|
3278
3298
|
p_from?: string;
|
|
3279
3299
|
p_limit?: number;
|
|
3300
|
+
p_profile_id?: string;
|
|
3280
3301
|
p_search?: string;
|
|
3281
3302
|
p_to?: string;
|
|
3282
3303
|
};
|