@hobenakicoffee/libraries 6.12.0 → 6.15.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/index.ts +3 -0
- package/src/types/supabase.ts +5 -0
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -49,9 +49,11 @@ export type ActivityMetadata = {
|
|
|
49
49
|
plan_id?: string;
|
|
50
50
|
plan_name?: string;
|
|
51
51
|
service_type?: string;
|
|
52
|
+
subscription_id?: string;
|
|
52
53
|
billing_cycle?: string;
|
|
53
54
|
activity_type?: ActivityType;
|
|
54
55
|
period_end?: string;
|
|
56
|
+
period_start?: string;
|
|
55
57
|
rejection_reason?: string;
|
|
56
58
|
category_id?: string;
|
|
57
59
|
category_name?: string;
|
|
@@ -64,6 +66,7 @@ export type ActivityMetadata = {
|
|
|
64
66
|
old_status?: string;
|
|
65
67
|
new_status?: string;
|
|
66
68
|
resolution_note?: string;
|
|
69
|
+
notification_type?: string;
|
|
67
70
|
action?: "follow" | "unfollow";
|
|
68
71
|
};
|
|
69
72
|
|
package/src/types/supabase.ts
CHANGED
|
@@ -1891,6 +1891,7 @@ export type Database = {
|
|
|
1891
1891
|
has_first_service: boolean | null;
|
|
1892
1892
|
has_wallet_balance: boolean | null;
|
|
1893
1893
|
id: string;
|
|
1894
|
+
is_founder_discount: boolean;
|
|
1894
1895
|
is_kyc_verified: boolean;
|
|
1895
1896
|
is_page_active: boolean | null;
|
|
1896
1897
|
is_verified: boolean;
|
|
@@ -1925,6 +1926,7 @@ export type Database = {
|
|
|
1925
1926
|
has_first_service?: boolean | null;
|
|
1926
1927
|
has_wallet_balance?: boolean | null;
|
|
1927
1928
|
id: string;
|
|
1929
|
+
is_founder_discount?: boolean;
|
|
1928
1930
|
is_kyc_verified?: boolean;
|
|
1929
1931
|
is_page_active?: boolean | null;
|
|
1930
1932
|
is_verified?: boolean;
|
|
@@ -1959,6 +1961,7 @@ export type Database = {
|
|
|
1959
1961
|
has_first_service?: boolean | null;
|
|
1960
1962
|
has_wallet_balance?: boolean | null;
|
|
1961
1963
|
id?: string;
|
|
1964
|
+
is_founder_discount?: boolean;
|
|
1962
1965
|
is_kyc_verified?: boolean;
|
|
1963
1966
|
is_page_active?: boolean | null;
|
|
1964
1967
|
is_verified?: boolean;
|
|
@@ -3928,6 +3931,7 @@ export type Database = {
|
|
|
3928
3931
|
Args: {
|
|
3929
3932
|
p_direction?: Database["public"]["Enums"]["transaction_direction_enum"];
|
|
3930
3933
|
p_from?: string;
|
|
3934
|
+
p_limit?: number;
|
|
3931
3935
|
p_to?: string;
|
|
3932
3936
|
};
|
|
3933
3937
|
Returns: {
|
|
@@ -4090,6 +4094,7 @@ export type Database = {
|
|
|
4090
4094
|
Args: {
|
|
4091
4095
|
p_allow_gifting?: boolean;
|
|
4092
4096
|
p_allow_subs?: boolean;
|
|
4097
|
+
p_is_founder_discount?: boolean;
|
|
4093
4098
|
p_is_page_active?: boolean;
|
|
4094
4099
|
p_user_id: string;
|
|
4095
4100
|
};
|