@ciganov/contracts 1.1.23 → 1.1.24
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/odd.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export interface CreateCategoryRequest {
|
|
|
23
23
|
name: string;
|
|
24
24
|
slug: string;
|
|
25
25
|
description: string;
|
|
26
|
+
image: string;
|
|
26
27
|
}
|
|
27
28
|
export interface CreateCategoryResponse {
|
|
28
29
|
ok: boolean;
|
|
@@ -101,6 +102,7 @@ export interface Category {
|
|
|
101
102
|
slug: string;
|
|
102
103
|
isActive: boolean;
|
|
103
104
|
description: string;
|
|
105
|
+
image: string;
|
|
104
106
|
}
|
|
105
107
|
export interface Outcome {
|
|
106
108
|
id: string;
|
|
@@ -37,6 +37,7 @@ message CreateCategoryRequest {
|
|
|
37
37
|
string name = 1;
|
|
38
38
|
string slug = 2;
|
|
39
39
|
string description = 3;
|
|
40
|
+
string image = 4;
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
message CreateCategoryResponse {
|
|
@@ -139,6 +140,7 @@ message Category {
|
|
|
139
140
|
string slug = 3;
|
|
140
141
|
bool is_active = 4;
|
|
141
142
|
string description = 5;
|
|
143
|
+
string image = 6;
|
|
142
144
|
}
|
|
143
145
|
|
|
144
146
|
message Outcome {
|