@daocloud-proto/leopard 0.10.0-dev2 → 0.10.0-dev4

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.10.0-dev2",
3
+ "version":"0.10.0-dev4",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -99,12 +99,21 @@ export type VirtualWallet = {
99
99
  arrearsStop?: boolean
100
100
  }
101
101
 
102
+ export type Pagination = {
103
+ total?: number
104
+ page?: number
105
+ pageSize?: number
106
+ }
107
+
102
108
  export type ListVirtualWalletsResponse = {
103
109
  items?: VirtualWallet[]
110
+ pagination?: Pagination
104
111
  }
105
112
 
106
113
  export type ListVirtualWalletsRequest = {
107
114
  username?: string
115
+ page?: number
116
+ pageSize?: number
108
117
  }
109
118
 
110
119
  export type CreateVirtualWalletRequest = {