@arbiwallet/contracts 1.0.95 → 1.0.97

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 CHANGED
@@ -124,9 +124,8 @@ export interface FaqItem {
124
124
 
125
125
  export interface About {
126
126
  id: number;
127
- imageUrl: string;
127
+ imageUrl?: string | undefined;
128
128
  body?: string | undefined;
129
- address?: string | undefined;
130
129
  latitude?: number | undefined;
131
130
  longitude?: number | undefined;
132
131
  }
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.95",
4
+ "version": "1.0.97",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -139,9 +139,8 @@ message FaqItem {
139
139
 
140
140
  message About {
141
141
  int32 id = 1;
142
- string image_url = 2;
142
+ optional string image_url = 2;
143
143
  optional string body = 3;
144
- optional string address = 4;
145
- optional double latitude = 5;
146
- optional double longitude = 6;
144
+ optional double latitude = 4;
145
+ optional double longitude = 5;
147
146
  }