@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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
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
|
*/
|