@riocrypto/common-server 1.0.2089 → 1.0.2090

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.
@@ -15,6 +15,8 @@ interface PreSettlementTransactionAttrs {
15
15
  speiTrackingNumber?: string;
16
16
  spidTrackingNumber?: string;
17
17
  blockchainTransactionId?: string;
18
+ reference?: string;
19
+ CEPLink?: string;
18
20
  }
19
21
  interface PreSettlementTransactionDoc extends mongoose.Document {
20
22
  createdAt: Date;
@@ -30,6 +32,8 @@ interface PreSettlementTransactionDoc extends mongoose.Document {
30
32
  speiTrackingNumber?: string;
31
33
  spidTrackingNumber?: string;
32
34
  blockchainTransactionId?: string;
35
+ reference?: string;
36
+ CEPLink?: string;
33
37
  }
34
38
  interface PreSettlementTransactionModel extends mongoose.Model<PreSettlementTransactionDoc> {
35
39
  build(attrs: PreSettlementTransactionAttrs): PreSettlementTransactionDoc;
@@ -48,6 +48,12 @@ const buildPreSettlementTransaction = (mongoose) => {
48
48
  oppositeTransactions: {
49
49
  type: [String],
50
50
  },
51
+ reference: {
52
+ type: String,
53
+ },
54
+ CEPLink: {
55
+ type: String,
56
+ },
51
57
  }, {
52
58
  toJSON: {
53
59
  transform(doc, ret) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.2089",
3
+ "version": "1.0.2090",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -28,7 +28,7 @@
28
28
  "@google-cloud/secret-manager": "^5.3.0",
29
29
  "@google-cloud/storage": "^6.9.5",
30
30
  "@hyperdx/node-opentelemetry": "^0.7.0",
31
- "@riocrypto/common": "^1.0.1834",
31
+ "@riocrypto/common": "^1.0.1835",
32
32
  "@types/express": "^4.17.13",
33
33
  "axios": "^1.7.4",
34
34
  "crypto-js": "^4.2.0",