mage-remote-run 1.3.0 → 1.3.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.
package/lib/commands/company.js
CHANGED
|
@@ -102,7 +102,7 @@ function registerRoleCommands(company) {
|
|
|
102
102
|
.addHelpText('after', `
|
|
103
103
|
Examples:
|
|
104
104
|
$ mage-remote-run company role list
|
|
105
|
-
$ mage-remote-run company role list --filter "role_name
|
|
105
|
+
$ mage-remote-run company role list --filter "role_name=*Admin*"
|
|
106
106
|
$ mage-remote-run company role list --sort "role_name:ASC"
|
|
107
107
|
`)
|
|
108
108
|
.action(listRolesAction);
|
|
@@ -26,7 +26,7 @@ Examples:
|
|
|
26
26
|
$ mage-remote-run customer list
|
|
27
27
|
$ mage-remote-run customer list --page 2 --size 50
|
|
28
28
|
$ mage-remote-run customer list --format json
|
|
29
|
-
$ mage-remote-run customer list --filter "email
|
|
29
|
+
$ mage-remote-run customer list --filter "email=*@example.com*" --filter "group_id=1"
|
|
30
30
|
$ mage-remote-run customer list --sort "firstname:ASC" --sort "created_at:DESC"
|
|
31
31
|
`)
|
|
32
32
|
.action(listCustomersAction);
|
|
@@ -94,7 +94,7 @@ Examples:
|
|
|
94
94
|
$ mage-remote-run customer group list
|
|
95
95
|
$ mage-remote-run customer group list --page 1 --size 50
|
|
96
96
|
$ mage-remote-run customer group list --format json
|
|
97
|
-
$ mage-remote-run customer group list --filter "code
|
|
97
|
+
$ mage-remote-run customer group list --filter "code=*VIP*"
|
|
98
98
|
$ mage-remote-run customer group list --sort "code:ASC"
|
|
99
99
|
`)
|
|
100
100
|
.action(listCustomerGroupsAction);
|
package/lib/commands/eav.js
CHANGED
|
@@ -17,7 +17,7 @@ export function registerEavCommands(program) {
|
|
|
17
17
|
Examples:
|
|
18
18
|
$ mage-remote-run eav attribute-set list
|
|
19
19
|
$ mage-remote-run eav attribute-set list --page 1 --size 50
|
|
20
|
-
$ mage-remote-run eav attribute-set list --filter "attribute_set_name
|
|
20
|
+
$ mage-remote-run eav attribute-set list --filter "attribute_set_name=*Default*"
|
|
21
21
|
$ mage-remote-run eav attribute-set list --sort "sort_order:ASC"
|
|
22
22
|
`)
|
|
23
23
|
.action(listAttributeSetsAction);
|
|
@@ -22,7 +22,7 @@ export function registerInventoryCommands(program) {
|
|
|
22
22
|
.addHelpText('after', `
|
|
23
23
|
Examples:
|
|
24
24
|
$ mage-remote-run inventory stock list
|
|
25
|
-
$ mage-remote-run inventory stock list --filter "name
|
|
25
|
+
$ mage-remote-run inventory stock list --filter "name=*US*"
|
|
26
26
|
$ mage-remote-run inventory stock list --sort "stock_id:ASC"
|
|
27
27
|
`)
|
|
28
28
|
.action(listStocksAction);
|
package/lib/commands/stores.js
CHANGED
|
@@ -22,7 +22,7 @@ export function registerStoresCommands(program) {
|
|
|
22
22
|
Examples:
|
|
23
23
|
$ mage-remote-run store group list
|
|
24
24
|
$ mage-remote-run store group list --format json
|
|
25
|
-
$ mage-remote-run store group list --filter "code
|
|
25
|
+
$ mage-remote-run store group list --filter "code=*main*"
|
|
26
26
|
`)
|
|
27
27
|
.action(listStoreGroupsAction);
|
|
28
28
|
|
|
@@ -58,7 +58,7 @@ Examples:
|
|
|
58
58
|
Examples:
|
|
59
59
|
$ mage-remote-run store view list
|
|
60
60
|
$ mage-remote-run store view list --format json
|
|
61
|
-
$ mage-remote-run store view list --filter "code
|
|
61
|
+
$ mage-remote-run store view list --filter "code=*en*"
|
|
62
62
|
`)
|
|
63
63
|
.action(listStoreViewsAction);
|
|
64
64
|
|