@duvdu-v1/duvdu 1.1.343 → 1.1.344

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.
@@ -37,6 +37,7 @@ export interface IFundedTransaction {
37
37
  withdrawMethod: Types.ObjectId;
38
38
  contract: Types.ObjectId;
39
39
  ticketNumber: string;
40
+ completedAt: Date;
40
41
  }
41
42
  export declare const FundedTransaction: import("mongoose").Model<IFundedTransaction, {}, {}, {}, import("mongoose").Document<unknown, {}, IFundedTransaction> & IFundedTransaction & {
42
43
  _id: Types.ObjectId;
@@ -22,4 +22,5 @@ exports.FundedTransaction = (0, mongoose_1.model)(model_names_1.MODELS.fundedTra
22
22
  status: { type: String, default: FundedTransactionStatus.PENDING },
23
23
  withdrawMethod: { type: mongoose_1.Schema.Types.ObjectId, ref: model_names_1.MODELS.withdrawMethod },
24
24
  ticketNumber: { type: String, default: generateFundedTransactionTicketNumber, unique: true, sparse: true },
25
+ completedAt: { type: Date, default: null },
25
26
  }, { timestamps: true, collection: model_names_1.MODELS.fundedTransaction }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duvdu-v1/duvdu",
3
- "version": "1.1.343",
3
+ "version": "1.1.344",
4
4
  "main": "./build/index.js",
5
5
  "types": "./build/index.d.ts",
6
6
  "files": [