@ciganov/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/odd.d.ts CHANGED
@@ -19,6 +19,7 @@ export interface GetRandomEventsResponse {
19
19
  export interface CreateCategoryRequest {
20
20
  name: string;
21
21
  slug: string;
22
+ description: string;
22
23
  }
23
24
  export interface CreateCategoryResponse {
24
25
  ok: boolean;
@@ -96,6 +97,7 @@ export interface Category {
96
97
  name: string;
97
98
  slug: string;
98
99
  isActive: boolean;
100
+ description: string;
99
101
  }
100
102
  export interface Outcome {
101
103
  id: string;
@@ -31,6 +31,7 @@ message GetRandomEventsResponse {
31
31
  message CreateCategoryRequest {
32
32
  string name = 1;
33
33
  string slug = 2;
34
+ string description = 3;
34
35
  }
35
36
 
36
37
  message CreateCategoryResponse {
@@ -132,6 +133,7 @@ message Category {
132
133
  string name = 2;
133
134
  string slug = 3;
134
135
  bool is_active = 4;
136
+ string description = 5;
135
137
  }
136
138
 
137
139
  message Outcome {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ciganov/contracts",
3
- "version": "1.1.19",
3
+ "version": "1.1.21",
4
4
  "description": "Protobuf definitions and generated ts types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",