shopstack 0.3.4 → 0.3.5

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
@@ -6,9 +6,9 @@ guest restaurant reservations.
6
6
  ## Install
7
7
 
8
8
  ```bash
9
- npm install shopstack@0.3.4
9
+ npm install shopstack@0.3.5
10
10
  # or
11
- npm install -g shopstack@0.3.4
11
+ npm install -g shopstack@0.3.5
12
12
  ```
13
13
 
14
14
  Node.js 18 or newer is required.
@@ -18,7 +18,7 @@ WebSocket (Node.js 22 or newer). It reads the authenticated checkout resource
18
18
  after each notification. Older runtimes, or a failed socket connection, use the
19
19
  bounded HTTP update wait. The one-time socket token is never placed in a URL.
20
20
 
21
- This preview release pairs `shopstack@0.3.4` with `shopstack-mcp@0.2.4`.
21
+ This preview release pairs `shopstack@0.3.5` with `shopstack-mcp@0.2.5`.
22
22
  Both packages use the `preview` distribution tag. The `latest` versions are
23
23
  unchanged. Use the exact versions above to install this release.
24
24
 
@@ -79,7 +79,7 @@ Configure any stdio MCP client to run:
79
79
  "mcpServers": {
80
80
  "shopstack": {
81
81
  "command": "npx",
82
- "args": ["-y", "shopstack-mcp@0.2.4"],
82
+ "args": ["-y", "shopstack-mcp@0.2.5"],
83
83
  "env": {
84
84
  "SHOPSTACK_API_URL": "https://shopstack-release-preview.shopstack.workers.dev/v1",
85
85
  "SHOPSTACK_CONFIG_FILE": "/absolute/private/path/shopstack-config.json"
@@ -110,7 +110,7 @@ one MCP server and three focused skills:
110
110
  - `shopstack-checkout` for checkout creation and monitoring;
111
111
  - `shopstack-onboarding` for verified signup and private local profiles.
112
112
 
113
- The plugin pins `shopstack-mcp@0.2.4`, which installs the matching
113
+ The plugin pins `shopstack-mcp@0.2.5`, which installs the matching
114
114
  reservation-capable `shopstack` client. Configure the API address
115
115
  before starting the plugin or use a profile already bound to that API. The existing top-level
116
116
  `SKILL.md` remains in the npm client package for compatibility.
package/SKILL.md CHANGED
@@ -19,8 +19,8 @@ chat to fix an environment mismatch.
19
19
  For the JavaScript client and CLI:
20
20
 
21
21
  ```bash
22
- npm install shopstack@0.3.4
23
- npm install -g shopstack@0.3.4
22
+ npm install shopstack@0.3.5
23
+ npm install -g shopstack@0.3.5
24
24
  ```
25
25
 
26
26
  For MCP clients, configure the local stdio server:
@@ -30,7 +30,7 @@ For MCP clients, configure the local stdio server:
30
30
  "mcpServers": {
31
31
  "shopstack": {
32
32
  "command": "npx",
33
- "args": ["-y", "shopstack-mcp@0.2.4"]
33
+ "args": ["-y", "shopstack-mcp@0.2.5"]
34
34
  }
35
35
  }
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopstack",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Shopstack API client and command-line checkout and reservation tools.",
5
5
  "type": "module",
6
6
  "exports": {
@@ -3163,6 +3163,10 @@
3163
3163
  "stage": {
3164
3164
  "type": "string",
3165
3165
  "enum": [
3166
+ "startup",
3167
+ "register",
3168
+ "finalize",
3169
+ "close",
3166
3170
  "read",
3167
3171
  "create",
3168
3172
  "validate_contract",