@hobenakicoffee/libraries 6.1.0 → 6.3.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/README.md CHANGED
@@ -52,7 +52,7 @@ bun add @hobenakicoffee/libraries
52
52
 
53
53
  ## Usage
54
54
 
55
- This package exposes multiple entry points:
55
+ This package exposes multiple entry points. You can import from the main entry or specific submodules.
56
56
 
57
57
  ```ts
58
58
  // Main entry - constants
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hobenakicoffee/libraries",
3
- "version": "6.1.0",
3
+ "version": "6.3.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "types": "src/index.ts",
@@ -16,3 +16,14 @@ export const ShopApprovalStatuses = {
16
16
 
17
17
  export type ShopApprovalStatus =
18
18
  (typeof ShopApprovalStatuses)[keyof typeof ShopApprovalStatuses];
19
+
20
+ export const ShopPolicyTypes = {
21
+ return_refund: "return_refund",
22
+ digital_products: "digital_products",
23
+ shipping: "shipping",
24
+ privacy: "privacy",
25
+ terms_of_service: "terms_of_service",
26
+ } as const;
27
+
28
+ export type ShopPolicyType =
29
+ (typeof ShopPolicyTypes)[keyof typeof ShopPolicyTypes];
@@ -2494,6 +2494,7 @@ export type Database = {
2494
2494
  processing_min_days: number | null;
2495
2495
  profile_id: string;
2496
2496
  requires_shipping: boolean;
2497
+ seo_custom_meta_tags: Json | null;
2497
2498
  seo_description: string | null;
2498
2499
  seo_title: string | null;
2499
2500
  shipping_fee_inside_dhaka: number | null;
@@ -2520,6 +2521,7 @@ export type Database = {
2520
2521
  processing_min_days?: number | null;
2521
2522
  profile_id: string;
2522
2523
  requires_shipping?: boolean;
2524
+ seo_custom_meta_tags?: Json | null;
2523
2525
  seo_description?: string | null;
2524
2526
  seo_title?: string | null;
2525
2527
  shipping_fee_inside_dhaka?: number | null;
@@ -2546,6 +2548,7 @@ export type Database = {
2546
2548
  processing_min_days?: number | null;
2547
2549
  profile_id?: string;
2548
2550
  requires_shipping?: boolean;
2551
+ seo_custom_meta_tags?: Json | null;
2549
2552
  seo_description?: string | null;
2550
2553
  seo_title?: string | null;
2551
2554
  shipping_fee_inside_dhaka?: number | null;
@@ -4001,6 +4004,7 @@ export type Database = {
4001
4004
  p_processing_max_days?: number;
4002
4005
  p_processing_min_days?: number;
4003
4006
  p_requires_shipping?: boolean;
4007
+ p_seo_custom_meta_tags?: Json;
4004
4008
  p_seo_description?: string;
4005
4009
  p_seo_title?: string;
4006
4010
  p_shipping_fee_inside_dhaka?: number;