@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.
@@ -2,4 +2,5 @@ export declare const PROTO_PATHS: {
2
2
  readonly AUTH: string;
3
3
  readonly ACCOUNT: string;
4
4
  readonly USERS: string;
5
+ readonly MEDIA: string;
5
6
  };
@@ -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
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-ts_proto v2.12.0
3
+ // protoc-gen-ts_proto v2.12.2
4
4
  // protoc v3.21.12
5
5
  // source: account.proto
6
6
 
package/gen/ts/auth.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-ts_proto v2.12.0
3
+ // protoc-gen-ts_proto v2.12.2
4
4
  // protoc v3.21.12
5
5
  // source: auth.proto
6
6
 
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-ts_proto v2.12.0
3
+ // protoc-gen-ts_proto v2.12.2
4
4
  // protoc v3.21.12
5
5
  // source: google/protobuf/empty.proto
6
6
 
package/gen/ts/media.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-ts_proto v2.12.0
3
+ // protoc-gen-ts_proto v2.12.2
4
4
  // protoc v3.21.12
5
5
  // source: media.proto
6
6
 
package/gen/ts/users.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-ts_proto v2.12.0
3
+ // protoc-gen-ts_proto v2.12.2
4
4
  // protoc v3.21.12
5
5
  // source: users.proto
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesticketcinema/contracts",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Protobuf definitions and generated Typescript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.js",
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 TelegramInit(google.protobuf.Empty) returns (TelegramInitResponse);
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 {