@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 CHANGED
@@ -125,10 +125,10 @@ export interface FaqItem {
125
125
  export interface About {
126
126
  id: number;
127
127
  imageUrl: string;
128
- body?: string | undefined;
129
- address?: string | undefined;
130
- latitude?: number | undefined;
131
- longitude?: number | undefined;
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.95",
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
  },
@@ -140,8 +140,8 @@ message FaqItem {
140
140
  message About {
141
141
  int32 id = 1;
142
142
  string image_url = 2;
143
- optional string body = 3;
144
- optional string address = 4;
145
- optional double latitude = 5;
146
- optional double longitude = 6;
143
+ string body = 3;
144
+ string address = 4;
145
+ double latitude = 5;
146
+ double longitude = 6;
147
147
  }