@experts_hub/shared 1.0.43 → 1.0.45

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/index.d.mts CHANGED
@@ -170,6 +170,7 @@ interface IFetchQuestionQuery {
170
170
  right: string;
171
171
  sortColumn?: string;
172
172
  sortBy?: string;
173
+ type?: string;
173
174
  }
174
175
  interface IFetchQuestionResponse {
175
176
  statusCode: number;
package/dist/index.d.ts CHANGED
@@ -170,6 +170,7 @@ interface IFetchQuestionQuery {
170
170
  right: string;
171
171
  sortColumn?: string;
172
172
  sortBy?: string;
173
+ type?: string;
173
174
  }
174
175
  interface IFetchQuestionResponse {
175
176
  statusCode: number;
package/dist/index.js CHANGED
@@ -621,7 +621,7 @@ var QuestionFor = /* @__PURE__ */ ((QuestionFor2) => {
621
621
  var Question = class extends BaseEntity {
622
622
  };
623
623
  __decorateClass([
624
- (0, import_typeorm6.Column)({ name: "question_id", type: "number" })
624
+ (0, import_typeorm6.Column)({ name: "question_id", type: "integer" })
625
625
  ], Question.prototype, "questionId", 2);
626
626
  __decorateClass([
627
627
  (0, import_typeorm6.Column)({ name: "question", type: "varchar", unique: true })
package/dist/index.mjs CHANGED
@@ -616,7 +616,7 @@ var QuestionFor = /* @__PURE__ */ ((QuestionFor2) => {
616
616
  var Question = class extends BaseEntity {
617
617
  };
618
618
  __decorateClass([
619
- Column6({ name: "question_id", type: "number" })
619
+ Column6({ name: "question_id", type: "integer" })
620
620
  ], Question.prototype, "questionId", 2);
621
621
  __decorateClass([
622
622
  Column6({ name: "question", type: "varchar", unique: true })
@@ -6,6 +6,7 @@ export interface IFetchQuestionQuery {
6
6
  right: string;
7
7
  sortColumn?: string;
8
8
  sortBy?: string;
9
+ type?: string;
9
10
  }
10
11
  export interface IFetchQuestionResponse {
11
12
  statusCode: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.43",
3
+ "version": "1.0.45",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",