@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/src/api.ts
CHANGED
|
@@ -775,6 +775,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
775
775
|
readonly status: io.flow.stripe.v0.enums.PaymentIntentStatus;
|
|
776
776
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
777
777
|
readonly transfer_group?: string;
|
|
778
|
+
readonly shipping?: io.flow.stripe.v0.models.PaymentIntentShipping;
|
|
778
779
|
}
|
|
779
780
|
|
|
780
781
|
interface PaymentIntentCancellationForm {
|
|
@@ -831,6 +832,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
831
832
|
readonly statement_descriptor_suffix?: string;
|
|
832
833
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
833
834
|
readonly transfer_group?: string;
|
|
835
|
+
readonly shipping?: io.flow.stripe.v0.models.PaymentIntentShipping;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
interface PaymentIntentShipping {
|
|
839
|
+
readonly address: io.flow.stripe.v0.models.Address;
|
|
840
|
+
readonly name: string;
|
|
841
|
+
readonly phone?: string;
|
|
834
842
|
}
|
|
835
843
|
|
|
836
844
|
interface PaymentIntentUpdateForm {
|
|
@@ -13287,7 +13295,8 @@ declare namespace io.flow.v0.models {
|
|
|
13287
13295
|
|
|
13288
13296
|
interface TransactionMetadataManual {
|
|
13289
13297
|
readonly discriminator: 'manual';
|
|
13290
|
-
readonly original
|
|
13298
|
+
readonly original?: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
13299
|
+
readonly url?: string;
|
|
13291
13300
|
}
|
|
13292
13301
|
|
|
13293
13302
|
interface TransactionMetadataOriginalTransaction {
|