@thiscargo/contracts 0.0.11 → 0.0.12

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/gen/server.ts CHANGED
@@ -13,7 +13,7 @@ export const protobufPackage = "server.v1";
13
13
  export interface Server {
14
14
  id: string;
15
15
  name: string;
16
- ip: string;
16
+ host: string;
17
17
  port: number;
18
18
  isActive: boolean;
19
19
  createdAt: Timestamp | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thiscargo/contracts",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,7 +8,7 @@ import "company.proto"; // Импорт для связи
8
8
  message Server {
9
9
  string id = 1;
10
10
  string name = 2;
11
- string ip = 3;
11
+ string host = 3;
12
12
  int32 port = 4;
13
13
  bool is_active = 5;
14
14
  google.protobuf.Timestamp created_at = 6;