@arbiwallet/contracts 1.0.148 → 1.0.149

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/auth.ts CHANGED
@@ -54,6 +54,9 @@ export interface AuthExchangeCodeResponse {
54
54
 
55
55
  export interface AppleAuthRequest {
56
56
  identityToken: string;
57
+ authorizationCode?: string | undefined;
58
+ firstName?: string | undefined;
59
+ lastName?: string | undefined;
57
60
  }
58
61
 
59
62
  export interface ContactCodeRequest {
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.148",
4
+ "version": "1.0.149",
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/auth.proto CHANGED
@@ -60,6 +60,9 @@ message AuthExchangeCodeResponse {
60
60
 
61
61
  message AppleAuthRequest {
62
62
  string identity_token = 1;
63
+ optional string authorization_code = 2;
64
+ optional string first_name = 3;
65
+ optional string last_name = 4;
63
66
  }
64
67
 
65
68
  message ContactCodeRequest {