@arbiwallet/contracts 1.0.96 → 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,11 +124,10 @@ export interface FaqItem {
124
124
 
125
125
  export interface About {
126
126
  id: number;
127
- imageUrl: string;
128
- body: string;
129
- address: string;
130
- latitude: number;
131
- longitude: number;
127
+ imageUrl?: string | undefined;
128
+ body?: string | undefined;
129
+ latitude?: number | undefined;
130
+ longitude?: number | undefined;
132
131
  }
133
132
 
134
133
  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.96",
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;
143
- string body = 3;
144
- string address = 4;
145
- double latitude = 5;
146
- double longitude = 6;
142
+ optional string image_url = 2;
143
+ optional string body = 3;
144
+ optional double latitude = 4;
145
+ optional double longitude = 5;
147
146
  }