gst-common 1.4.29 → 1.4.30

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.cts CHANGED
@@ -189,6 +189,8 @@ type TQuestionEntity = {
189
189
  content: string;
190
190
  order: number;
191
191
  type: QUESTION_TYPES;
192
+ explainContent: string;
193
+ showExplain: boolean;
192
194
  } & BaseEntity;
193
195
  type TQuestionTypeChoiceEntity = {
194
196
  content: string;
@@ -818,6 +820,10 @@ type TGroupQuestionCreate = {
818
820
  title: string;
819
821
  content: string;
820
822
  questions: {
823
+ explain: {
824
+ content: string;
825
+ show: boolean;
826
+ };
821
827
  content?: string;
822
828
  order: number;
823
829
  type: QUESTION_TYPES;
package/dist/index.d.ts CHANGED
@@ -189,6 +189,8 @@ type TQuestionEntity = {
189
189
  content: string;
190
190
  order: number;
191
191
  type: QUESTION_TYPES;
192
+ explainContent: string;
193
+ showExplain: boolean;
192
194
  } & BaseEntity;
193
195
  type TQuestionTypeChoiceEntity = {
194
196
  content: string;
@@ -818,6 +820,10 @@ type TGroupQuestionCreate = {
818
820
  title: string;
819
821
  content: string;
820
822
  questions: {
823
+ explain: {
824
+ content: string;
825
+ show: boolean;
826
+ };
821
827
  content?: string;
822
828
  order: number;
823
829
  type: QUESTION_TYPES;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.4.29",
3
+ "version": "1.4.30",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",