@commercelayer/cli-plugin-metrics 1.0.4 → 1.0.6
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 +1 -1
- package/lib/commands/metrics/search.js +1 -1
- package/oclif.manifest.json +2 -2
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -174,7 +174,7 @@ ALIASES
|
|
|
174
174
|
$ commercelayer search
|
|
175
175
|
|
|
176
176
|
EXAMPLES
|
|
177
|
-
|
|
177
|
+
$ commercelayer metrics:search orders -l 5 -s asc -b order.placed_at -f order.id,order.number,order.placed_at,customer.email
|
|
178
178
|
```
|
|
179
179
|
|
|
180
180
|
_See code: [src/commands/metrics/search.ts](https://github.com/commercelayer/commercelayer-cli-plugin-metrics/blob/main/src/commands/metrics/search.ts)_
|
|
@@ -10,7 +10,7 @@ class MetricsSearch extends base_1.BaseResourceCommand {
|
|
|
10
10
|
static aliases = [MetricsSearch.operation];
|
|
11
11
|
static description = 'perform a search query on the Metrics API endpoint';
|
|
12
12
|
static examples = [
|
|
13
|
-
'
|
|
13
|
+
'commercelayer metrics:search orders -l 5 -s asc -b order.placed_at -f order.id,order.number,order.placed_at,customer.email'
|
|
14
14
|
];
|
|
15
15
|
static flags = {
|
|
16
16
|
limit: core_1.Flags.integer({
|
package/oclif.manifest.json
CHANGED
|
@@ -447,7 +447,7 @@
|
|
|
447
447
|
},
|
|
448
448
|
"description": "perform a search query on the Metrics API endpoint",
|
|
449
449
|
"examples": [
|
|
450
|
-
"
|
|
450
|
+
"commercelayer metrics:search orders -l 5 -s asc -b order.placed_at -f order.id,order.number,order.placed_at,customer.email"
|
|
451
451
|
],
|
|
452
452
|
"flags": {
|
|
453
453
|
"organization": {
|
|
@@ -687,5 +687,5 @@
|
|
|
687
687
|
]
|
|
688
688
|
}
|
|
689
689
|
},
|
|
690
|
-
"version": "1.0.
|
|
690
|
+
"version": "1.0.6"
|
|
691
691
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercelayer/cli-plugin-metrics",
|
|
3
3
|
"description": "Commerce Layer CLI metrics plugin",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.6",
|
|
5
5
|
"author": "Pierluigi Viti <pierluigi@commercelayer.io>",
|
|
6
6
|
"bugs": "https://github.com/commercelayer/commercelayer-cli-plugin-metrics/issues",
|
|
7
7
|
"engines": {
|
|
@@ -55,28 +55,28 @@
|
|
|
55
55
|
},
|
|
56
56
|
"types": "lib/index.d.ts",
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@commercelayer/cli-dev": "^3.0.
|
|
58
|
+
"@commercelayer/cli-dev": "^3.0.8",
|
|
59
59
|
"@commercelayer/eslint-config-ts": "^1.4.5",
|
|
60
|
-
"@oclif/plugin-help": "^6.2.
|
|
60
|
+
"@oclif/plugin-help": "^6.2.33",
|
|
61
61
|
"@oclif/test": "^3.2.15",
|
|
62
62
|
"@semantic-release/changelog": "^6.0.3",
|
|
63
63
|
"@semantic-release/git": "^10.0.1",
|
|
64
64
|
"@types/chai": "^4.3.20",
|
|
65
65
|
"@types/mocha": "^10.0.10",
|
|
66
|
-
"@types/node": "^
|
|
66
|
+
"@types/node": "^24.9.1",
|
|
67
67
|
"chai": "^4.5.0",
|
|
68
68
|
"eslint": "^8.57.1",
|
|
69
69
|
"mocha": "^10.8.2",
|
|
70
70
|
"nyc": "^15.1.0",
|
|
71
|
-
"oclif": "^4.22.
|
|
72
|
-
"semantic-release": "^
|
|
73
|
-
"tsx": "^4.20.
|
|
74
|
-
"typescript": "5.
|
|
71
|
+
"oclif": "^4.22.32",
|
|
72
|
+
"semantic-release": "^25.0.1",
|
|
73
|
+
"tsx": "^4.20.6",
|
|
74
|
+
"typescript": "5.9.3"
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
|
-
"@commercelayer/cli-core": "^5.10.
|
|
78
|
-
"@commercelayer/cli-ux": "^1.0.
|
|
79
|
-
"@commercelayer/sdk": "^6.
|
|
77
|
+
"@commercelayer/cli-core": "^5.10.4",
|
|
78
|
+
"@commercelayer/cli-ux": "^1.0.10",
|
|
79
|
+
"@commercelayer/sdk": "^6.49.0",
|
|
80
80
|
"@oclif/core": "^3.27.0",
|
|
81
81
|
"tslib": "^2.8.1"
|
|
82
82
|
},
|