@hobenakicoffee/libraries 5.8.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hobenakicoffee/libraries",
3
- "version": "5.8.0",
3
+ "version": "5.9.0",
4
4
  "type": "module",
5
5
  "types": "src/index.ts",
6
6
  "repository": {
@@ -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;