@ordergroove/smi-serve 1.13.2 → 1.13.4

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/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.13.4](https://github.com/ordergroove/plush-toys/compare/@ordergroove/smi-serve@1.13.3...@ordergroove/smi-serve@1.13.4) (2026-04-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * hide select-customer command from --help ([769cb1a](https://github.com/ordergroove/plush-toys/commit/769cb1ad2c2dde90f02dadbe8316e647be65ffc1))
12
+
13
+
14
+
15
+
16
+
17
+ ## [1.13.3](https://github.com/ordergroove/plush-toys/compare/@ordergroove/smi-serve@1.13.2...@ordergroove/smi-serve@1.13.3) (2026-04-16)
18
+
19
+ **Note:** Version bump only for package @ordergroove/smi-serve
20
+
21
+
22
+
23
+
24
+
6
25
  ## [1.13.2](https://github.com/ordergroove/plush-toys/compare/@ordergroove/smi-serve@1.13.1...@ordergroove/smi-serve@1.13.2) (2026-04-15)
7
26
 
8
27
  **Note:** Version bump only for package @ordergroove/smi-serve
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" ?>
2
2
  <!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
3
- <coverage lines-valid="656" lines-covered="228" line-rate="0.3475" branches-valid="234" branches-covered="45" branch-rate="0.1923" timestamp="1776273331596" complexity="0" version="0.1">
3
+ <coverage lines-valid="656" lines-covered="228" line-rate="0.3475" branches-valid="234" branches-covered="45" branch-rate="0.1923" timestamp="1777384417655" complexity="0" version="0.1">
4
4
  <sources>
5
5
  <source>/home/jenkins/agent/workspace/Ordergroove_plush-toys_master/plush-toys/packages/smi-serve</source>
6
6
  </sources>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ordergroove/smi-serve",
3
- "version": "1.13.2",
3
+ "version": "1.13.4",
4
4
  "description": "Utility to serve a Subscription Manager template locally",
5
5
  "keywords": [],
6
6
  "author": "Eugenio Lattanzio <eugenio.lattanzio@ordergroove.com>",
@@ -34,5 +34,5 @@
34
34
  "devDependencies": {
35
35
  "memfs": "^4.8.2"
36
36
  },
37
- "gitHead": "5290874d4f55db83f68777cd01e00bd54a9bb810"
37
+ "gitHead": "9448509d560a2ca3d03e45656f6754e45199516e"
38
38
  }
package/smi-serve.js CHANGED
@@ -133,7 +133,8 @@ async function program() {
133
133
  })
134
134
  .command({
135
135
  command: 'select-customer [search]',
136
- describe: 'Select a customer to impersonate for local development',
136
+ // Select a customer to impersonate for local development
137
+ describe: false,
137
138
  builder: y =>
138
139
  y.positional('search', {
139
140
  type: 'string',
@@ -141,7 +142,6 @@ async function program() {
141
142
  }),
142
143
  handler: wrapHandler(cliCallSelectCustomer)
143
144
  })
144
- .hide('select-customer')
145
145
  .option('verbose', {
146
146
  alias: 'v',
147
147
  type: 'boolean',