@requ1emz/contracts 1.0.24 → 1.0.25
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/notification.ts +2 -2
- package/package.json +1 -1
- package/proto/notification.proto +1 -1
package/gen/notification.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
import { GrpcMethod, GrpcStreamMethod } from "@nestjs/microservices";
|
|
9
9
|
import { Observable } from "rxjs";
|
|
10
10
|
|
|
11
|
-
export const protobufPackage = "notification";
|
|
11
|
+
export const protobufPackage = "notification.v1";
|
|
12
12
|
|
|
13
13
|
export interface GetNotificationsRequest {
|
|
14
14
|
userId: string;
|
|
@@ -47,7 +47,7 @@ export interface InviteUserResponse {
|
|
|
47
47
|
status: boolean;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
export const
|
|
50
|
+
export const NOTIFICATION_V1_PACKAGE_NAME = "notification.v1";
|
|
51
51
|
|
|
52
52
|
export interface NotificationServiceClient {
|
|
53
53
|
getNotifications(request: GetNotificationsRequest): Observable<GetNotificationsResponse>;
|
package/package.json
CHANGED