@arbiwallet/contracts 1.0.95 → 1.0.96
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 -4
- package/package.json +1 -1
- package/proto/content.proto +4 -4
package/gen/content.ts
CHANGED
|
@@ -125,10 +125,10 @@ export interface FaqItem {
|
|
|
125
125
|
export interface About {
|
|
126
126
|
id: number;
|
|
127
127
|
imageUrl: string;
|
|
128
|
-
body
|
|
129
|
-
address
|
|
130
|
-
latitude
|
|
131
|
-
longitude
|
|
128
|
+
body: string;
|
|
129
|
+
address: string;
|
|
130
|
+
latitude: number;
|
|
131
|
+
longitude: number;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
export const CONTENT_V1_PACKAGE_NAME = "content.v1";
|
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.96",
|
|
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
|
@@ -140,8 +140,8 @@ message FaqItem {
|
|
|
140
140
|
message About {
|
|
141
141
|
int32 id = 1;
|
|
142
142
|
string image_url = 2;
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
143
|
+
string body = 3;
|
|
144
|
+
string address = 4;
|
|
145
|
+
double latitude = 5;
|
|
146
|
+
double longitude = 6;
|
|
147
147
|
}
|