gst-common 1.4.78 → 1.4.80

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
@@ -169,6 +169,7 @@ type TProposedLearningLessonEntity = {
169
169
  type TProposedLearningEntity = {
170
170
  class: TClassEntity;
171
171
  title: string;
172
+ paymentStatus: PROPOSED_LEARNING_PAYMENT_STATUS;
172
173
  description: string | null;
173
174
  } & BaseEntity;
174
175
  type TFileLessonEntity = {
@@ -264,6 +265,7 @@ type TTransactionEntity = {
264
265
  gateway: TRANSACTION_GATEWAY;
265
266
  gatewayTransactionId: string;
266
267
  gatewayData: Record<string, any>;
268
+ completedAt: string;
267
269
  };
268
270
 
269
271
  declare enum CUSTOMER_TYPE {
package/dist/index.d.ts CHANGED
@@ -169,6 +169,7 @@ type TProposedLearningLessonEntity = {
169
169
  type TProposedLearningEntity = {
170
170
  class: TClassEntity;
171
171
  title: string;
172
+ paymentStatus: PROPOSED_LEARNING_PAYMENT_STATUS;
172
173
  description: string | null;
173
174
  } & BaseEntity;
174
175
  type TFileLessonEntity = {
@@ -264,6 +265,7 @@ type TTransactionEntity = {
264
265
  gateway: TRANSACTION_GATEWAY;
265
266
  gatewayTransactionId: string;
266
267
  gatewayData: Record<string, any>;
268
+ completedAt: string;
267
269
  };
268
270
 
269
271
  declare enum CUSTOMER_TYPE {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.4.78",
3
+ "version": "1.4.80",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",