@hobenakicoffee/libraries 4.2.0 → 4.2.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": "4.2.0",
3
+ "version": "4.2.1",
4
4
  "type": "module",
5
5
  "types": "src/index.ts",
6
6
  "repository": {
@@ -1,9 +1,9 @@
1
1
  export const MAX_PRODUCT_PRICE = 9_999_999_999;
2
2
 
3
- export const ShopProductType = {
3
+ export const ShopProductTypes = {
4
4
  digital: "digital",
5
5
  physical: "physical",
6
6
  } as const;
7
7
 
8
8
  export type ShopProductType =
9
- (typeof ShopProductType)[keyof typeof ShopProductType];
9
+ (typeof ShopProductTypes)[keyof typeof ShopProductTypes];