@usteam/contracts 1.4.0 → 1.4.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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// versions:
|
|
3
3
|
// protoc-gen-ts_proto v2.10.1
|
|
4
4
|
// protoc v4.25.9
|
|
5
|
-
// source:
|
|
5
|
+
// source: screening.proto
|
|
6
6
|
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
import { GrpcMethod, GrpcStreamMethod } from "@nestjs/microservices";
|
|
@@ -14,8 +14,8 @@ export const protobufPackage = "screening.v1";
|
|
|
14
14
|
export interface CreateScreeningRequest {
|
|
15
15
|
eventId: string;
|
|
16
16
|
sectorId: string;
|
|
17
|
-
startAt:
|
|
18
|
-
endAt:
|
|
17
|
+
startAt: string;
|
|
18
|
+
endAt: string;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
export interface CreateScreeningResponse {
|
package/gen/ts/sector.ts
CHANGED
package/package.json
CHANGED
|
@@ -18,8 +18,8 @@ service ScreeningService {
|
|
|
18
18
|
message CreateScreeningRequest {
|
|
19
19
|
string event_id = 1;
|
|
20
20
|
string sector_id = 2;
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
string start_at = 3;
|
|
22
|
+
string end_at = 4;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
message CreateScreeningResponse {
|