@alebooking/contracts 1.0.1 → 1.0.3

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
@@ -20,7 +20,7 @@ export interface SendOtpResponse {
20
20
  }
21
21
 
22
22
  export interface VerifyOtpRequest {
23
- identifirt: string;
23
+ identifier: string;
24
24
  type: string;
25
25
  code: string;
26
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alebooking/contracts",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Protobug definitions and generated TypeScript types",
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
@@ -17,7 +17,7 @@ message SendOtpResponse {
17
17
  }
18
18
 
19
19
  message VerifyOtpRequest {
20
- string identifirt = 1;
20
+ string identifier = 1;
21
21
  string type = 2;
22
22
  string code = 3;
23
23
  }