@you-are-hired/contracts 1.1.6 → 1.1.7

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.
@@ -58,6 +58,7 @@ export interface ListQuestionsResponse {
58
58
  export interface AttachTagToQuestionRequest {
59
59
  questionId: string;
60
60
  tagId: string;
61
+ tagIds: string[];
61
62
  }
62
63
 
63
64
  export interface AttachTagToQuestionResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@you-are-hired/contracts",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "Proto || RabbitMQ",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -58,6 +58,7 @@ message ListQuestionsResponse {
58
58
  message AttachTagToQuestionRequest {
59
59
  string question_id = 1;
60
60
  string tag_id = 2;
61
+ repeated string tag_ids = 3;
61
62
  }
62
63
 
63
64
  message AttachTagToQuestionResponse {