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