@arbiwallet/contracts 1.0.201 → 1.0.202
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 +11 -1
- package/package.json +1 -1
- package/proto/content.proto +11 -1
package/gen/content.ts
CHANGED
|
@@ -234,6 +234,11 @@ export interface CreatePartnerRequest {
|
|
|
234
234
|
title: string;
|
|
235
235
|
url: string;
|
|
236
236
|
order: number;
|
|
237
|
+
body?: string | undefined;
|
|
238
|
+
isActive?: boolean | undefined;
|
|
239
|
+
longitude?: number | undefined;
|
|
240
|
+
latitude?: number | undefined;
|
|
241
|
+
address?: string | undefined;
|
|
237
242
|
}
|
|
238
243
|
|
|
239
244
|
export interface CreatePartnerResponse {
|
|
@@ -435,8 +440,13 @@ export interface Partner {
|
|
|
435
440
|
id: number;
|
|
436
441
|
imageUrl: string;
|
|
437
442
|
title: string;
|
|
438
|
-
url
|
|
443
|
+
url?: string | undefined;
|
|
439
444
|
order: number;
|
|
445
|
+
body?: string | undefined;
|
|
446
|
+
longitude?: number | undefined;
|
|
447
|
+
latitude?: number | undefined;
|
|
448
|
+
isActive: boolean;
|
|
449
|
+
address?: string | undefined;
|
|
440
450
|
}
|
|
441
451
|
|
|
442
452
|
export interface Blog {
|
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.202",
|
|
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
|
@@ -294,6 +294,11 @@ message CreatePartnerRequest {
|
|
|
294
294
|
string title = 2;
|
|
295
295
|
string url = 3;
|
|
296
296
|
int32 order = 4;
|
|
297
|
+
optional string body = 5;
|
|
298
|
+
optional bool is_active = 6;
|
|
299
|
+
optional double longitude = 7;
|
|
300
|
+
optional double latitude = 8;
|
|
301
|
+
optional string address = 9;
|
|
297
302
|
}
|
|
298
303
|
|
|
299
304
|
message CreatePartnerResponse {
|
|
@@ -489,8 +494,13 @@ message Partner {
|
|
|
489
494
|
int32 id = 1;
|
|
490
495
|
string image_url = 2;
|
|
491
496
|
string title = 3;
|
|
492
|
-
string url = 4;
|
|
497
|
+
optional string url = 4;
|
|
493
498
|
int32 order = 5;
|
|
499
|
+
optional string body = 6;
|
|
500
|
+
optional double longitude = 7;
|
|
501
|
+
optional double latitude = 8;
|
|
502
|
+
bool is_active = 9;
|
|
503
|
+
optional string address = 10;
|
|
494
504
|
}
|
|
495
505
|
|
|
496
506
|
message Blog {
|