@gastroly.io/contracts 1.0.11 → 1.0.13
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/dist/proto/account.proto +0 -3
- package/dist/proto/paths.js +2 -2
- package/generated/account.ts +0 -3
- package/package.json +1 -1
package/dist/proto/account.proto
CHANGED
package/dist/proto/paths.js
CHANGED
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.PROTO_PATHS = void 0;
|
|
4
4
|
const path_1 = require("path");
|
|
5
5
|
exports.PROTO_PATHS = {
|
|
6
|
-
AUTH: (0, path_1.join)(__dirname, "
|
|
7
|
-
ACCOUNT: (0, path_1.join)(__dirname, "
|
|
6
|
+
AUTH: (0, path_1.join)(__dirname, "auth.proto"),
|
|
7
|
+
ACCOUNT: (0, path_1.join)(__dirname, "account.proto"),
|
|
8
8
|
};
|
package/generated/account.ts
CHANGED
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
import type { Metadata } from "@grpc/grpc-js";
|
|
9
9
|
import { GrpcMethod, GrpcStreamMethod } from "@nestjs/microservices";
|
|
10
10
|
import { Observable } from "rxjs";
|
|
11
|
-
import { Timestamp } from "./google/protobuf/timestamp";
|
|
12
11
|
|
|
13
12
|
export const protobufPackage = "account.v1";
|
|
14
13
|
|
|
@@ -22,8 +21,6 @@ export interface GetAccountResponse {
|
|
|
22
21
|
email: string;
|
|
23
22
|
isPhoneVerified: boolean;
|
|
24
23
|
isEmailVerified: boolean;
|
|
25
|
-
createdAt: Timestamp | undefined;
|
|
26
|
-
updatedAt: Timestamp | undefined;
|
|
27
24
|
}
|
|
28
25
|
|
|
29
26
|
export const ACCOUNT_V1_PACKAGE_NAME = "account.v1";
|