@channelpayments/node-sdk 1.39.0 → 1.40.0

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.
@@ -64,6 +64,12 @@ export interface TransactionRefundEntity {
64
64
  * @memberof TransactionRefundEntity
65
65
  */
66
66
  currency?: string;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof TransactionRefundEntity
71
+ */
72
+ refundIntegrationId?: string;
67
73
  }
68
74
  /**
69
75
  * @export
@@ -54,6 +54,7 @@ function TransactionRefundEntityFromJSONTyped(json, ignoreDiscriminator) {
54
54
  'updatedAt': (new Date(json['updatedAt'])),
55
55
  'status': json['status'],
56
56
  'currency': !(0, runtime_1.exists)(json, 'currency') ? undefined : json['currency'],
57
+ 'refundIntegrationId': !(0, runtime_1.exists)(json, 'refundIntegrationId') ? undefined : json['refundIntegrationId'],
57
58
  };
58
59
  return (0, runtime_1.removeNullUndefined)(typed);
59
60
  }
@@ -75,6 +76,7 @@ function TransactionRefundEntityToJSON(value) {
75
76
  'updatedAt': (value.updatedAt.toISOString()),
76
77
  'status': value.status,
77
78
  'currency': value.currency,
79
+ 'refundIntegrationId': value.refundIntegrationId,
78
80
  };
79
81
  }
80
82
  exports.TransactionRefundEntityToJSON = TransactionRefundEntityToJSON;
@@ -64,6 +64,12 @@ export interface TransactionRefundEntity {
64
64
  * @memberof TransactionRefundEntity
65
65
  */
66
66
  currency?: string;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof TransactionRefundEntity
71
+ */
72
+ refundIntegrationId?: string;
67
73
  }
68
74
  /**
69
75
  * @export
@@ -49,6 +49,7 @@ export function TransactionRefundEntityFromJSONTyped(json, ignoreDiscriminator)
49
49
  'updatedAt': (new Date(json['updatedAt'])),
50
50
  'status': json['status'],
51
51
  'currency': !exists(json, 'currency') ? undefined : json['currency'],
52
+ 'refundIntegrationId': !exists(json, 'refundIntegrationId') ? undefined : json['refundIntegrationId'],
52
53
  };
53
54
  return removeNullUndefined(typed);
54
55
  }
@@ -69,5 +70,6 @@ export function TransactionRefundEntityToJSON(value) {
69
70
  'updatedAt': (value.updatedAt.toISOString()),
70
71
  'status': value.status,
71
72
  'currency': value.currency,
73
+ 'refundIntegrationId': value.refundIntegrationId,
72
74
  };
73
75
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@channelpayments/node-sdk",
3
3
  "description": "Channel Payments nodejs sdk",
4
- "version": "1.39.0",
4
+ "version": "1.40.0",
5
5
  "author": "Channel Payments",
6
6
  "license": "ISC",
7
7
  "main": "dist/cjs/index.js",