@isoftdata/svelte-ecommerce 1.0.0-beta.1 → 1.0.0-beta.2

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.
@@ -121,6 +121,7 @@ export const buildEbayListing = (buildEbayListingInput) => {
121
121
  // Use latest from inventory
122
122
  // TODO: I'll need to check some of these, they may not allow changes on the config screen and inventory.* is the only truth avail
123
123
  listingDetails.quantity = inventoryRow.quantity;
124
+ listingDetails.inventoryId = inventoryRow.inventoryId;
124
125
  listingDetails.storeId = listingDetails.storeId || inventoryRow.storeId;
125
126
  listingDetails.sku = listingDetails.sku || inventoryRow.tagNumber;
126
127
  listingDetails.price = listingDetails.price || inventoryRow.retailPrice || null;
package/package.json CHANGED
@@ -1,6 +1,17 @@
1
1
  {
2
2
  "name": "@isoftdata/svelte-ecommerce",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
+ "scripts": {
5
+ "dev": "vite dev",
6
+ "build": "vite build && npm run prepack",
7
+ "preview": "vite preview",
8
+ "prepare": "svelte-kit sync || echo ''",
9
+ "prepack": "svelte-kit sync && svelte-package && publint",
10
+ "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
11
+ "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
12
+ "lint": "eslint . && prettier --check .",
13
+ "format": "prettier --write ."
14
+ },
4
15
  "files": [
5
16
  "dist",
6
17
  "!dist/**/*.test.*",
@@ -69,14 +80,5 @@
69
80
  "@lukeed/uuid": "2.0.1",
70
81
  "klona": "^2.0.6",
71
82
  "svelte": "^5.23.2"
72
- },
73
- "scripts": {
74
- "dev": "vite dev",
75
- "build": "vite build && npm run prepack",
76
- "preview": "vite preview",
77
- "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
78
- "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
79
- "lint": "eslint . && prettier --check .",
80
- "format": "prettier --write ."
81
83
  }
82
- }
84
+ }