@daocloud-proto/leopard 0.10.0-dev2 → 0.10.0-dev3
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 +1 -1
- package/v1alpha1/wallet.pb.ts +9 -0
package/package.json
CHANGED
package/v1alpha1/wallet.pb.ts
CHANGED
|
@@ -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 = {
|