gst-common 1.5.2 → 1.5.4

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.cjs CHANGED
@@ -529,6 +529,10 @@ var OBJECT_QUESTION_TYPES = {
529
529
  value: "SPEAKING" /* SPEAKING */,
530
530
  label: "N\xF3i"
531
531
  },
532
+ ["WRITING" /* WRITING */]: {
533
+ value: "WRITING" /* WRITING */,
534
+ label: "Vi\u1EBFt"
535
+ },
532
536
  ["TEXT" /* TEXT */]: {
533
537
  value: "TEXT" /* TEXT */,
534
538
  label: "Ti\xEAu \u0111\u1EC1"
package/dist/index.d.cts CHANGED
@@ -688,6 +688,10 @@ declare const OBJECT_QUESTION_TYPES: {
688
688
  value: QUESTION_TYPES;
689
689
  label: string;
690
690
  };
691
+ WRITING: {
692
+ value: QUESTION_TYPES;
693
+ label: string;
694
+ };
691
695
  TEXT: {
692
696
  value: QUESTION_TYPES;
693
697
  label: string;
@@ -1007,6 +1011,9 @@ type TSubmitGroupQuestion = {
1007
1011
  speaking?: {
1008
1012
  audioId?: string | null;
1009
1013
  };
1014
+ writing?: {
1015
+ content?: string | null;
1016
+ };
1010
1017
  }[];
1011
1018
  type TGroupQuestionStudentFinishDoing = {
1012
1019
  sessionGroupQuestionId: string;
package/dist/index.d.ts CHANGED
@@ -688,6 +688,10 @@ declare const OBJECT_QUESTION_TYPES: {
688
688
  value: QUESTION_TYPES;
689
689
  label: string;
690
690
  };
691
+ WRITING: {
692
+ value: QUESTION_TYPES;
693
+ label: string;
694
+ };
691
695
  TEXT: {
692
696
  value: QUESTION_TYPES;
693
697
  label: string;
@@ -1007,6 +1011,9 @@ type TSubmitGroupQuestion = {
1007
1011
  speaking?: {
1008
1012
  audioId?: string | null;
1009
1013
  };
1014
+ writing?: {
1015
+ content?: string | null;
1016
+ };
1010
1017
  }[];
1011
1018
  type TGroupQuestionStudentFinishDoing = {
1012
1019
  sessionGroupQuestionId: string;
package/dist/index.mjs CHANGED
@@ -446,6 +446,10 @@ var OBJECT_QUESTION_TYPES = {
446
446
  value: "SPEAKING" /* SPEAKING */,
447
447
  label: "N\xF3i"
448
448
  },
449
+ ["WRITING" /* WRITING */]: {
450
+ value: "WRITING" /* WRITING */,
451
+ label: "Vi\u1EBFt"
452
+ },
449
453
  ["TEXT" /* TEXT */]: {
450
454
  value: "TEXT" /* TEXT */,
451
455
  label: "Ti\xEAu \u0111\u1EC1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",