@prodoctors/contracts 1.3.0 → 1.4.0
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/catalog.ts +7 -0
- package/package.json +1 -1
- package/proto/catalog.proto +7 -0
package/gen/catalog.ts
CHANGED
|
@@ -24,6 +24,13 @@ export interface Category {
|
|
|
24
24
|
name: string;
|
|
25
25
|
createdAt: Timestamp | undefined;
|
|
26
26
|
updatedAt: Timestamp | undefined;
|
|
27
|
+
slug?: string | undefined;
|
|
28
|
+
nameRu?: string | undefined;
|
|
29
|
+
nameUz?: string | undefined;
|
|
30
|
+
icon?: string | undefined;
|
|
31
|
+
level?: number | undefined;
|
|
32
|
+
sortOrder?: number | undefined;
|
|
33
|
+
parentId?: string | undefined;
|
|
27
34
|
}
|
|
28
35
|
|
|
29
36
|
export interface InternationalName {
|
package/package.json
CHANGED
package/proto/catalog.proto
CHANGED
|
@@ -17,6 +17,13 @@ message Category {
|
|
|
17
17
|
string name = 2;
|
|
18
18
|
google.protobuf.Timestamp created_at = 3;
|
|
19
19
|
google.protobuf.Timestamp updated_at = 4;
|
|
20
|
+
optional string slug = 5;
|
|
21
|
+
optional string name_ru = 6;
|
|
22
|
+
optional string name_uz = 7;
|
|
23
|
+
optional string icon = 8;
|
|
24
|
+
optional int32 level = 9;
|
|
25
|
+
optional int32 sort_order = 10;
|
|
26
|
+
optional string parent_id = 11;
|
|
20
27
|
}
|
|
21
28
|
|
|
22
29
|
message InternationalName {
|