@arbiwallet/contracts 1.0.105 → 1.0.106
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 +4 -0
- package/package.json +1 -1
- package/proto/content.proto +4 -0
package/gen/content.ts
CHANGED
|
@@ -116,6 +116,8 @@ export interface CreateFilialRequest {
|
|
|
116
116
|
address: string;
|
|
117
117
|
order: number;
|
|
118
118
|
description?: string | undefined;
|
|
119
|
+
longitude?: number | undefined;
|
|
120
|
+
latitude?: number | undefined;
|
|
119
121
|
}
|
|
120
122
|
|
|
121
123
|
export interface CreateFilialResponse {
|
|
@@ -232,6 +234,8 @@ export interface Filial {
|
|
|
232
234
|
address: string;
|
|
233
235
|
order: number;
|
|
234
236
|
description?: string | undefined;
|
|
237
|
+
longitude?: number | undefined;
|
|
238
|
+
latitude?: number | undefined;
|
|
235
239
|
}
|
|
236
240
|
|
|
237
241
|
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.106",
|
|
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
|
@@ -149,6 +149,8 @@ message CreateFilialRequest {
|
|
|
149
149
|
string address = 3;
|
|
150
150
|
int32 order = 4;
|
|
151
151
|
optional string description = 5;
|
|
152
|
+
optional double longitude = 6;
|
|
153
|
+
optional double latitude = 7;
|
|
152
154
|
}
|
|
153
155
|
|
|
154
156
|
message CreateFilialResponse {
|
|
@@ -261,6 +263,8 @@ message Filial {
|
|
|
261
263
|
string address = 4;
|
|
262
264
|
int32 order = 5;
|
|
263
265
|
optional string description = 6;
|
|
266
|
+
optional double longitude = 7;
|
|
267
|
+
optional double latitude = 8;
|
|
264
268
|
}
|
|
265
269
|
|
|
266
270
|
message Partner {
|