@flowio/types 11.24.74 → 11.24.75
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/api-internal.d.ts +397 -55
- package/dist/api.d.ts +9 -1
- package/package.json +2 -2
- package/src/api-internal.ts +590 -101
- package/src/api.ts +10 -1
package/dist/api.d.ts
CHANGED
|
@@ -496,6 +496,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
496
496
|
readonly status: io.flow.stripe.v0.enums.PaymentIntentStatus;
|
|
497
497
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
498
498
|
readonly transfer_group?: string;
|
|
499
|
+
readonly shipping?: io.flow.stripe.v0.models.PaymentIntentShipping;
|
|
499
500
|
}
|
|
500
501
|
interface PaymentIntentCancellationForm {
|
|
501
502
|
readonly cancellation_reason?: io.flow.stripe.v0.enums.CancellationReason;
|
|
@@ -547,6 +548,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
547
548
|
readonly statement_descriptor_suffix?: string;
|
|
548
549
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
549
550
|
readonly transfer_group?: string;
|
|
551
|
+
readonly shipping?: io.flow.stripe.v0.models.PaymentIntentShipping;
|
|
552
|
+
}
|
|
553
|
+
interface PaymentIntentShipping {
|
|
554
|
+
readonly address: io.flow.stripe.v0.models.Address;
|
|
555
|
+
readonly name: string;
|
|
556
|
+
readonly phone?: string;
|
|
550
557
|
}
|
|
551
558
|
interface PaymentIntentUpdateForm {
|
|
552
559
|
readonly amount: number;
|
|
@@ -10527,7 +10534,8 @@ declare namespace io.flow.v0.models {
|
|
|
10527
10534
|
}
|
|
10528
10535
|
interface TransactionMetadataManual {
|
|
10529
10536
|
readonly discriminator: 'manual';
|
|
10530
|
-
readonly original
|
|
10537
|
+
readonly original?: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
10538
|
+
readonly url?: string;
|
|
10531
10539
|
}
|
|
10532
10540
|
interface TransactionMetadataOriginalTransaction {
|
|
10533
10541
|
readonly id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.75",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "8ec8b535c64db79aa4a49bf6bd6eb53f46deee7d"
|
|
29
29
|
}
|