@platfformx/proto-contracts 1.1.0 → 1.1.1

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.
@@ -49,7 +49,7 @@ export interface TokenRefreshResponse {
49
49
  }
50
50
  export interface ConfirmAccountRequest {
51
51
  identifier: string;
52
- type?: string | undefined;
52
+ token?: string | undefined;
53
53
  code?: string | undefined;
54
54
  }
55
55
  export interface ConfirmAccountResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -66,7 +66,7 @@ message TokenRefreshResponse {
66
66
  message ConfirmAccountRequest {
67
67
  string identifier = 1;
68
68
  oneof confirm_method {
69
- string type = 2;
69
+ string token = 2;
70
70
  string code = 3;
71
71
  }
72
72
  }