@riocrypto/common-server 1.0.899 → 1.0.901

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.
@@ -8,7 +8,7 @@ interface BridgeTransferModel extends Model<BridgeTransferDoc> {
8
8
  }
9
9
  interface BridgeTransferDoc extends Document {
10
10
  _id: string;
11
- userId: string;
11
+ orderId: string;
12
12
  bridgeTransferId: string;
13
13
  }
14
14
  declare const buildBridgeTransfer: (mongoose: Mongoose) => BridgeTransferModel;
@@ -7,7 +7,7 @@ const buildBridgeTransfer = (mongoose) => {
7
7
  return mongoose.model("BridgeTransfer");
8
8
  }
9
9
  const bridgeTransferSchema = new mongoose.Schema({
10
- userId: {
10
+ orderId: {
11
11
  type: String,
12
12
  required: true,
13
13
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.899",
3
+ "version": "1.0.901",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -24,7 +24,7 @@
24
24
  "@aws-sdk/client-s3": "^3.297.0",
25
25
  "@everapi/currencyapi-js": "^1.0.6",
26
26
  "@google-cloud/storage": "^6.9.5",
27
- "@riocrypto/common": "^1.0.769",
27
+ "@riocrypto/common": "^1.0.771",
28
28
  "@types/express": "^4.17.13",
29
29
  "axios": "^0.27.2",
30
30
  "ccxt": "^3.0.30",