@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 +10 -1
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +10 -1
- package/src/api.js +10 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-prop-types",
|
|
3
|
-
"version": "10.16.
|
|
3
|
+
"version": "10.16.60",
|
|
4
4
|
"description": "PropType validators that work with Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"prop-types": "^15.7.0"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "8ec8b535c64db79aa4a49bf6bd6eb53f46deee7d"
|
|
33
33
|
}
|
package/src/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'
|
|
12132
|
+
readonly 'original'?: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
12133
|
+
readonly 'url'?: string;
|
|
12125
12134
|
}
|
|
12126
12135
|
|
|
12127
12136
|
interface TransactionMetadataOriginalTransaction {
|
package/src/api.js
CHANGED
|
@@ -1103,6 +1103,12 @@ T['io.flow.stripe.v0.models.visa_checkout'] = PropTypes.exact({
|
|
|
1103
1103
|
dynamic_last4: PropTypes.string,
|
|
1104
1104
|
});
|
|
1105
1105
|
|
|
1106
|
+
T['io.flow.stripe.v0.models.payment_intent_shipping'] = PropTypes.exact({
|
|
1107
|
+
address: T['io.flow.stripe.v0.models.address'].isRequired,
|
|
1108
|
+
name: PropTypes.string.isRequired,
|
|
1109
|
+
phone: PropTypes.string,
|
|
1110
|
+
});
|
|
1111
|
+
|
|
1106
1112
|
T['io.flow.stripe.v0.models.shipping'] = PropTypes.exact({
|
|
1107
1113
|
address: T['io.flow.stripe.v0.models.address'].isRequired,
|
|
1108
1114
|
name: PropTypes.string,
|
|
@@ -1334,6 +1340,7 @@ T['io.flow.stripe.v0.models.payment_intent_form'] = PropTypes.exact({
|
|
|
1334
1340
|
statement_descriptor_suffix: PropTypes.string,
|
|
1335
1341
|
transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
|
|
1336
1342
|
transfer_group: PropTypes.string,
|
|
1343
|
+
shipping: T['io.flow.stripe.v0.models.payment_intent_shipping'],
|
|
1337
1344
|
});
|
|
1338
1345
|
|
|
1339
1346
|
T['io.flow.stripe.v0.models.charge_destination'] = PropTypes.exact({
|
|
@@ -1731,6 +1738,7 @@ T['io.flow.stripe.v0.models.payment_intent'] = PropTypes.exact({
|
|
|
1731
1738
|
status: T['io.flow.stripe.v0.enums.payment_intent_status'].isRequired,
|
|
1732
1739
|
transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
|
|
1733
1740
|
transfer_group: PropTypes.string,
|
|
1741
|
+
shipping: T['io.flow.stripe.v0.models.payment_intent_shipping'],
|
|
1734
1742
|
});
|
|
1735
1743
|
|
|
1736
1744
|
T['io.flow.stripe.v0.models.stripe_error'] = PropTypes.exact({
|
|
@@ -6798,7 +6806,8 @@ T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
6798
6806
|
|
|
6799
6807
|
T['io.flow.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
6800
6808
|
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
6801
|
-
original: T['io.flow.v0.models.transaction_metadata_original_transaction']
|
|
6809
|
+
original: T['io.flow.v0.models.transaction_metadata_original_transaction'],
|
|
6810
|
+
url: PropTypes.string,
|
|
6802
6811
|
});
|
|
6803
6812
|
|
|
6804
6813
|
T['io.flow.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|