@trash-streamers/contracts 1.1.19 → 1.1.21
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/gen/ts/account.d.ts +1 -1
- package/dist/gen/ts/account.js +1 -1
- package/dist/gen/ts/auth.js +1 -1
- package/dist/gen/ts/google/protobuf/timestamp.js +1 -1
- package/dist/gen/ts/users.d.ts +2 -1
- package/dist/gen/ts/users.js +1 -1
- package/package.json +2 -3
- package/proto/account.proto +2 -2
- package/proto/auth.proto +0 -1
- package/proto/users.proto +3 -2
package/dist/gen/ts/account.d.ts
CHANGED
package/dist/gen/ts/account.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
4
|
// protoc-gen-ts_proto v2.10.1
|
|
5
|
-
// protoc v6.33.
|
|
5
|
+
// protoc v6.33.5
|
|
6
6
|
// source: account.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.ACCOUNT_SERVICE_NAME = exports.ACCOUNT_V1_PACKAGE_NAME = exports.Role = exports.protobufPackage = void 0;
|
package/dist/gen/ts/auth.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
4
|
// protoc-gen-ts_proto v2.10.1
|
|
5
|
-
// protoc v6.33.
|
|
5
|
+
// protoc v6.33.5
|
|
6
6
|
// source: auth.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.AUTH_SERVICE_NAME = exports.AUTH_V1_PACKAGE_NAME = exports.AuthType = exports.protobufPackage = void 0;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
4
|
// protoc-gen-ts_proto v2.10.1
|
|
5
|
-
// protoc v6.33.
|
|
5
|
+
// protoc v6.33.5
|
|
6
6
|
// source: google/protobuf/timestamp.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.GOOGLE_PROTOBUF_PACKAGE_NAME = exports.protobufPackage = void 0;
|
package/dist/gen/ts/users.d.ts
CHANGED
|
@@ -28,8 +28,9 @@ export interface PatchUserResponse {
|
|
|
28
28
|
}
|
|
29
29
|
export interface User {
|
|
30
30
|
id: string;
|
|
31
|
-
|
|
31
|
+
userName?: string | undefined;
|
|
32
32
|
avatar?: string | undefined;
|
|
33
|
+
displayName?: string | undefined;
|
|
33
34
|
}
|
|
34
35
|
export declare const USERS_V1_PACKAGE_NAME = "users.v1";
|
|
35
36
|
export interface UsersServiceClient {
|
package/dist/gen/ts/users.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
4
|
// protoc-gen-ts_proto v2.10.1
|
|
5
|
-
// protoc v6.33.
|
|
5
|
+
// protoc v6.33.5
|
|
6
6
|
// source: users.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.USERS_SERVICE_NAME = exports.USERS_V1_PACKAGE_NAME = exports.protobufPackage = void 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trash-streamers/contracts",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.21",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
"description": "Protobuf definitions and generated TypeScript types",
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@nestjs/microservices": "^11.1.11",
|
|
20
|
-
"@trash-streamers/contracts": "^1.1.13",
|
|
21
20
|
"rxjs": "^7.8.2",
|
|
22
21
|
"ts-proto": "^2.10.1"
|
|
23
22
|
},
|
|
@@ -25,4 +24,4 @@
|
|
|
25
24
|
"@types/node": "^25.0.3",
|
|
26
25
|
"typescript": "^5.9.3"
|
|
27
26
|
}
|
|
28
|
-
}
|
|
27
|
+
}
|
package/proto/account.proto
CHANGED
|
@@ -77,8 +77,8 @@ message Account {
|
|
|
77
77
|
string email = 3;
|
|
78
78
|
bool is_phone_verified = 4;
|
|
79
79
|
bool is_email_verified = 5;
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
string user_id = 6;
|
|
81
|
+
Role role = 7;
|
|
82
82
|
google.protobuf.Timestamp created_at = 8;
|
|
83
83
|
google.protobuf.Timestamp updated_at = 9;
|
|
84
84
|
}
|
package/proto/auth.proto
CHANGED