@stephenchenorg/astro 5.0.0 → 5.0.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.
@@ -3,9 +3,9 @@ export interface ProductVariant {
3
3
  /** 商品規格 Key */
4
4
  combination_key: string | null;
5
5
  /** 原價 */
6
- listing_price: string;
6
+ listing_price: number;
7
7
  /** 實際售價 */
8
- selling_price: string;
8
+ selling_price: number;
9
9
  /** 商品庫存數量 */
10
10
  inventory: number;
11
11
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stephenchenorg/astro",
3
3
  "type": "module",
4
- "version": "5.0.0",
4
+ "version": "5.0.1",
5
5
  "description": "Stephenchenorg Astro 前端通用套件",
6
6
  "license": "MIT",
7
7
  "homepage": "https://stephenchenorg-astro.netlify.app",