@orcarail/node 1.0.4 → 1.0.5

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.
package/dist/index.d.mts CHANGED
@@ -186,9 +186,13 @@ interface PaymentIntent {
186
186
  */
187
187
  amount: string;
188
188
  /**
189
- * Currency code
189
+ * Currency code (from currency relation)
190
190
  */
191
191
  currency: string;
192
+ /**
193
+ * Currency entity ID (from currency relation)
194
+ */
195
+ currency_id?: string;
192
196
  /**
193
197
  * Current status (enum value from API)
194
198
  */
package/dist/index.d.ts CHANGED
@@ -186,9 +186,13 @@ interface PaymentIntent {
186
186
  */
187
187
  amount: string;
188
188
  /**
189
- * Currency code
189
+ * Currency code (from currency relation)
190
190
  */
191
191
  currency: string;
192
+ /**
193
+ * Currency entity ID (from currency relation)
194
+ */
195
+ currency_id?: string;
192
196
  /**
193
197
  * Current status (enum value from API)
194
198
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orcarail/node",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Official Node.js SDK for OrcaRail - Accept crypto payments with Payment Intents",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",