@aepstore-dev/contracts 1.0.1 → 1.0.2

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
@@ -11,7 +11,7 @@ import { Observable } from "rxjs";
11
11
  export const protobufPackage = "auth.v1";
12
12
 
13
13
  export interface SendOtpRequest {
14
- indentifier: string;
14
+ identifier: string;
15
15
  type: string;
16
16
  }
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Protobuf definitions for aepstore microservices",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
package/proto/auth.proto CHANGED
@@ -7,7 +7,7 @@ service AuthService {
7
7
  }
8
8
 
9
9
  message SendOtpRequest {
10
- string indentifier = 1;
10
+ string identifier = 1;
11
11
  string type = 2;
12
12
  }
13
13