@hobenakicoffee/libraries 6.12.0 → 6.14.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": "6.12.0",
3
+ "version": "6.14.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "types": "src/index.ts",
@@ -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
  };