@hobenakicoffee/libraries 5.3.0 → 5.3.1

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.3.0",
3
+ "version": "5.3.1",
4
4
  "type": "module",
5
5
  "types": "src/index.ts",
6
6
  "repository": {
@@ -16,7 +16,9 @@ export type ActivityType =
16
16
  | "post_gifted"
17
17
  | "post_gift_sent"
18
18
  | "post_approved"
19
- | "post_rejected";
19
+ | "post_rejected"
20
+ | "kyc_approved"
21
+ | "kyc_resubmit_requested";
20
22
 
21
23
  export type ActivityMetadata = {
22
24
  type?: string;
@@ -56,6 +58,7 @@ export type ActivityMetadata = {
56
58
  gift_message?: string;
57
59
  product_id?: string;
58
60
  product_title?: string;
61
+ submission_id?: string;
59
62
  action?: "follow" | "unfollow";
60
63
  };
61
64
 
@@ -2731,6 +2731,7 @@ export type Database = {
2731
2731
  Args: { p_profile_id: string };
2732
2732
  Returns: Json;
2733
2733
  };
2734
+ cleanup_orphaned_kyc_documents: { Args: never; Returns: undefined };
2734
2735
  cleanup_orphaned_post_images: { Args: never; Returns: undefined };
2735
2736
  confirm_cod_cash_received: {
2736
2737
  Args: { p_order_item_id: string };