@mamindom/contracts 1.0.174 → 1.0.175

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.
@@ -22,6 +22,7 @@ export interface LoginRequest {
22
22
  identifier: string;
23
23
  type: string;
24
24
  password: string;
25
+ audience?: string | undefined;
25
26
  }
26
27
  export interface RegisterRequest {
27
28
  firstName: string;
@@ -40,6 +40,7 @@ message LoginRequest {
40
40
  string identifier = 1;
41
41
  string type = 2;
42
42
  string password = 3;
43
+ optional string audience = 4;
43
44
  }
44
45
 
45
46
  message RegisterRequest {
package/gen/auth.ts CHANGED
@@ -37,6 +37,7 @@ export interface LoginRequest {
37
37
  identifier: string;
38
38
  type: string;
39
39
  password: string;
40
+ audience?: string | undefined;
40
41
  }
41
42
 
42
43
  export interface RegisterRequest {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.174",
4
+ "version": "1.0.175",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
package/proto/auth.proto CHANGED
@@ -40,6 +40,7 @@ message LoginRequest {
40
40
  string identifier = 1;
41
41
  string type = 2;
42
42
  string password = 3;
43
+ optional string audience = 4;
43
44
  }
44
45
 
45
46
  message RegisterRequest {