@hobenakicoffee/libraries 6.2.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.2.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];