@daocloud-proto/leopard 0.1.0-dev7 → 0.1.0-dev8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/leopard",
3
- "version":"0.1.0-dev7",
3
+ "version":"0.1.0-dev8",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -27,10 +27,14 @@ export type Pagination = {
27
27
  pageSize?: number
28
28
  }
29
29
 
30
+ export type FilterStringArr = {
31
+ values?: string[]
32
+ }
33
+
30
34
  export type ListProductSkusRequest = {
31
35
  product?: string
32
36
  regionId?: string
33
- filter?: {[key: string]: string}
37
+ filter?: {[key: string]: FilterStringArr}
34
38
  page?: number
35
39
  pageSize?: number
36
40
  }