@flowio/api-prop-types 10.16.59 → 10.16.60

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/lib/api.d.ts CHANGED
@@ -553,6 +553,7 @@ declare namespace io.flow.stripe.v0.models {
553
553
  readonly 'status': io.flow.stripe.v0.enums.PaymentIntentStatus;
554
554
  readonly 'transfer_data'?: io.flow.stripe.v0.models.TransferData;
555
555
  readonly 'transfer_group'?: string;
556
+ readonly 'shipping'?: io.flow.stripe.v0.models.PaymentIntentShipping;
556
557
  }
557
558
 
558
559
  interface PaymentIntentCancellationForm {
@@ -609,6 +610,13 @@ declare namespace io.flow.stripe.v0.models {
609
610
  readonly 'statement_descriptor_suffix'?: string;
610
611
  readonly 'transfer_data'?: io.flow.stripe.v0.models.TransferData;
611
612
  readonly 'transfer_group'?: string;
613
+ readonly 'shipping'?: io.flow.stripe.v0.models.PaymentIntentShipping;
614
+ }
615
+
616
+ interface PaymentIntentShipping {
617
+ readonly 'address': io.flow.stripe.v0.models.Address;
618
+ readonly 'name': string;
619
+ readonly 'phone'?: string;
612
620
  }
613
621
 
614
622
  interface PaymentIntentUpdateForm {
@@ -12121,7 +12129,8 @@ declare namespace io.flow.v0.models {
12121
12129
 
12122
12130
  interface TransactionMetadataManual {
12123
12131
  readonly 'discriminator': 'manual';
12124
- readonly 'original': io.flow.v0.models.TransactionMetadataOriginalTransaction;
12132
+ readonly 'original'?: io.flow.v0.models.TransactionMetadataOriginalTransaction;
12133
+ readonly 'url'?: string;
12125
12134
  }
12126
12135
 
12127
12136
  interface TransactionMetadataOriginalTransaction {