@ticket-sales/contracts 1.0.11 → 1.0.13
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/package.json +2 -2
- package/proto/account.proto +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ticket-sales/contracts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "Protobuf Definitions & Generated TypeScript types",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@ticket-sales/core": "^1.0.6",
|
|
32
32
|
"@types/bun": "latest",
|
|
33
|
-
"@types/node": "^25.0.
|
|
33
|
+
"@types/node": "^25.0.6",
|
|
34
34
|
"prettier": "^3.7.4",
|
|
35
35
|
"typescript": "^5.9.3"
|
|
36
36
|
}
|
package/proto/account.proto
CHANGED
|
@@ -27,7 +27,7 @@ message GetAccountResponse{
|
|
|
27
27
|
|
|
28
28
|
message InitEmailChangeRequest{
|
|
29
29
|
string email = 1;
|
|
30
|
-
string user_id =
|
|
30
|
+
string user_id = 2;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
message InitEmailChangeResponse{
|
|
@@ -46,7 +46,7 @@ message ConfirmEmailChangeResponse{
|
|
|
46
46
|
|
|
47
47
|
message InitPhoneChangeRequest{
|
|
48
48
|
string phone = 1;
|
|
49
|
-
string user_id =
|
|
49
|
+
string user_id = 2;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
message InitPhoneChangeResponse{
|