@riocrypto/common-server 1.0.2867 → 1.0.2869

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.
@@ -19,7 +19,6 @@ interface AlfinPayinNotificationDoc extends Document {
19
19
  amount: number;
20
20
  processedAt: Date;
21
21
  payload: Record<string, any>;
22
- reconciledMovimientoUId?: number;
23
22
  }
24
23
  interface AlfinPayinNotificationModel extends Model<AlfinPayinNotificationDoc> {
25
24
  build(attrs: AlfinPayinNotificationAttrs): HydratedDocument<AlfinPayinNotificationDoc>;
@@ -37,9 +37,6 @@ const buildAlfinPayinNotification = (mongoose) => {
37
37
  payload: {
38
38
  type: mongoose.Schema.Types.Mixed,
39
39
  },
40
- reconciledMovimientoUId: {
41
- type: Number,
42
- },
43
40
  }, {
44
41
  toJSON: {
45
42
  transform(doc, ret) {
@@ -49,14 +46,6 @@ const buildAlfinPayinNotification = (mongoose) => {
49
46
  },
50
47
  },
51
48
  });
52
- // Supports the treasury import's reconciliation lookup, which searches for an
53
- // unreconciled payin of a given currency and amount around a movement's date.
54
- AlfinPayinNotificationSchema.index({
55
- fiat: 1,
56
- amount: 1,
57
- reconciledMovimientoUId: 1,
58
- processedAt: 1,
59
- });
60
49
  AlfinPayinNotificationSchema.statics.build = (attrs) => {
61
50
  return new AlfinPayinNotification(attrs);
62
51
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.2867",
3
+ "version": "1.0.2869",
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.6.0",
29
29
  "@google-cloud/storage": "^7.19.0",
30
30
  "@hyperdx/node-opentelemetry": "^0.10.3",
31
- "@riocrypto/common": "1.0.2687",
31
+ "@riocrypto/common": "1.0.2688",
32
32
  "@slack/web-api": "^7.15.0",
33
33
  "@types/express": "^4.17.25",
34
34
  "axios": "1.16.0",