@arbiwallet/contracts 1.0.121 → 1.0.122
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
|
@@ -57,6 +57,7 @@ export interface GetPublicStoriesResponse {
|
|
|
57
57
|
export interface CreateBannerRequest {
|
|
58
58
|
imageUrl: string;
|
|
59
59
|
order: number;
|
|
60
|
+
link?: string | undefined;
|
|
60
61
|
}
|
|
61
62
|
|
|
62
63
|
export interface CreateBannerResponse {
|
|
@@ -363,6 +364,7 @@ export interface Banner {
|
|
|
363
364
|
id: number;
|
|
364
365
|
imageUrl: string;
|
|
365
366
|
order: number;
|
|
367
|
+
link?: string | undefined;
|
|
366
368
|
}
|
|
367
369
|
|
|
368
370
|
export interface FaqItem {
|
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.122",
|
|
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
|
@@ -117,6 +117,7 @@ message GetPublicStoriesResponse {
|
|
|
117
117
|
message CreateBannerRequest {
|
|
118
118
|
string image_url = 1;
|
|
119
119
|
int32 order = 2;
|
|
120
|
+
optional string link = 3;
|
|
120
121
|
}
|
|
121
122
|
|
|
122
123
|
message CreateBannerResponse {
|
|
@@ -413,6 +414,7 @@ message Banner {
|
|
|
413
414
|
int32 id = 1;
|
|
414
415
|
string image_url = 2;
|
|
415
416
|
int32 order = 3;
|
|
417
|
+
optional string link = 4;
|
|
416
418
|
}
|
|
417
419
|
|
|
418
420
|
message FaqItem {
|