@salesticketcinema/contracts 1.1.7 → 1.1.8
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/paths.d.ts +1 -0
- package/dist/proto/paths.js +1 -0
- package/gen/ts/account.ts +1 -1
- package/gen/ts/auth.ts +1 -1
- package/gen/ts/google/protobuf/empty.ts +1 -1
- package/gen/ts/media.ts +1 -1
- package/gen/ts/users.ts +1 -1
- package/package.json +1 -1
- package/proto/auth.proto +1 -1
- package/proto/media.proto +1 -1
package/dist/proto/paths.d.ts
CHANGED
package/dist/proto/paths.js
CHANGED
|
@@ -6,4 +6,5 @@ exports.PROTO_PATHS = {
|
|
|
6
6
|
AUTH: (0, path_1.join)(__dirname, "../../proto/auth.proto"),
|
|
7
7
|
ACCOUNT: (0, path_1.join)(__dirname, "../../proto/account.proto"),
|
|
8
8
|
USERS: (0, path_1.join)(__dirname, "../../proto/users.proto"),
|
|
9
|
+
MEDIA: (0, path_1.join)(__dirname, "../../proto/media.proto"),
|
|
9
10
|
};
|
package/gen/ts/account.ts
CHANGED
package/gen/ts/auth.ts
CHANGED
package/gen/ts/media.ts
CHANGED
package/gen/ts/users.ts
CHANGED
package/package.json
CHANGED
package/proto/auth.proto
CHANGED
|
@@ -9,7 +9,7 @@ service AuthService {
|
|
|
9
9
|
rpc VerifyOtp(VerifyOtpRequest) returns (VerifyOtpResponse);
|
|
10
10
|
rpc Refresh(RefreshRequest) returns (RefreshResponse);
|
|
11
11
|
|
|
12
|
-
rpc
|
|
12
|
+
rpc TelegramInit(google.protobuf.Empty) returns (TelegramInitResponse);
|
|
13
13
|
rpc TelegramVerify(TelegramVerifyRequest) returns (TelegramVerifyResponse);
|
|
14
14
|
rpc TelegramComplete (TelegramCompleteRequest) returns (TelegramCompleteResponse);
|
|
15
15
|
rpc TelegramConsume (TelegramConsumeRequest) returns (TelegramConsumeResponse);
|
package/proto/media.proto
CHANGED
|
@@ -2,7 +2,7 @@ syntax = "proto3";
|
|
|
2
2
|
|
|
3
3
|
package media.v1;
|
|
4
4
|
|
|
5
|
-
option go_package = "github.com/fullstackcinema/contracts/gen/go/media;media";
|
|
5
|
+
option go_package = "github.com/fullstackcinema/contracts/gen/ts/go/media;media";
|
|
6
6
|
option java_multiple_files = true;
|
|
7
7
|
|
|
8
8
|
service MediaService {
|