@arbiwallet/contracts 1.0.102 → 1.0.103
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/gen/content.ts +2 -0
- package/package.json +1 -1
- package/proto/content.proto +2 -0
package/gen/content.ts
CHANGED
|
@@ -115,6 +115,7 @@ export interface CreateFilialRequest {
|
|
|
115
115
|
title: string;
|
|
116
116
|
address: string;
|
|
117
117
|
order: number;
|
|
118
|
+
description?: string | undefined;
|
|
118
119
|
}
|
|
119
120
|
|
|
120
121
|
export interface CreateFilialResponse {
|
|
@@ -230,6 +231,7 @@ export interface Filial {
|
|
|
230
231
|
title: string;
|
|
231
232
|
address: string;
|
|
232
233
|
order: number;
|
|
234
|
+
description?: string | undefined;
|
|
233
235
|
}
|
|
234
236
|
|
|
235
237
|
export interface Partner {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbiwallet/contracts",
|
|
3
3
|
"descriptions": "Generate and manage smart contracts for ArbiWallet",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.103",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
|
|
7
7
|
},
|
package/proto/content.proto
CHANGED
|
@@ -148,6 +148,7 @@ message CreateFilialRequest {
|
|
|
148
148
|
string title = 2;
|
|
149
149
|
string address = 3;
|
|
150
150
|
int32 order = 4;
|
|
151
|
+
optional string description = 5;
|
|
151
152
|
}
|
|
152
153
|
|
|
153
154
|
message CreateFilialResponse {
|
|
@@ -259,6 +260,7 @@ message Filial {
|
|
|
259
260
|
string title = 3;
|
|
260
261
|
string address = 4;
|
|
261
262
|
int32 order = 5;
|
|
263
|
+
optional string description = 6;
|
|
262
264
|
}
|
|
263
265
|
|
|
264
266
|
message Partner {
|