You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/cmd/catalog/list.go
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,11 @@ const (
30
30
31
31
This command lists the Catalog items of a company. It works with Mia-Platform Console v14.0.0 or later.
32
32
33
+
Results are paginated. By default, only the first page is shown.
34
+
33
35
you can also specify the following flags:
34
36
- --public - if this flag is set, the command fetches not only the items from the requested company, but also the public Catalog items from other companies.
37
+
- -- page - specify the page to fetch, default is 1
Copy file name to clipboardExpand all lines: internal/cmd/item-type-definition/list.go
+19-7Lines changed: 19 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ import (
31
31
typeGetItdsOptionsstruct {
32
32
CompanyIDstring
33
33
Publicbool
34
+
Pageint
34
35
}
35
36
36
37
const (
@@ -39,8 +40,11 @@ const (
39
40
40
41
This command lists the Item Type Definitions of a company. It works with Mia-Platform Console v14.1.0 or later.
41
42
43
+
Results are paginated. By default, only the first page is shown.
44
+
42
45
you can also specify the following flags:
43
46
- --public - if this flag is set, the command fetches not only the items from the requested company, but also the public Catalog items from other companies.
47
+
- --page - specify the page to fetch, default is 1
0 commit comments