@flowio/types 11.24.58 → 11.24.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/dist/api-internal.d.ts +282 -27
- package/dist/api.d.ts +17 -2
- package/package.json +2 -2
- package/src/api-internal.ts +359 -34
- package/src/api.ts +22 -2
package/src/api.ts
CHANGED
|
@@ -4101,6 +4101,16 @@ declare namespace io.flow.v0.models {
|
|
|
4101
4101
|
readonly viewport: io.flow.v0.enums.ThreedsTwoChallengeViewport;
|
|
4102
4102
|
}
|
|
4103
4103
|
|
|
4104
|
+
interface CardConfirmationSummary {
|
|
4105
|
+
readonly discriminator: 'card_confirmation_summary';
|
|
4106
|
+
readonly type?: io.flow.v0.enums.CardType;
|
|
4107
|
+
readonly funding_type?: string;
|
|
4108
|
+
readonly expiration?: io.flow.v0.models.Expiration;
|
|
4109
|
+
readonly iin?: string;
|
|
4110
|
+
readonly issuer?: io.flow.v0.models.IssuerSummary;
|
|
4111
|
+
readonly last4?: string;
|
|
4112
|
+
}
|
|
4113
|
+
|
|
4104
4114
|
interface CardDeleted {
|
|
4105
4115
|
readonly discriminator: 'card_deleted';
|
|
4106
4116
|
readonly event_id: string;
|
|
@@ -9261,6 +9271,11 @@ declare namespace io.flow.v0.models {
|
|
|
9261
9271
|
readonly capabilities?: io.flow.v0.enums.PaymentMethodCapability[];
|
|
9262
9272
|
}
|
|
9263
9273
|
|
|
9274
|
+
interface PaymentMethodActionCancellation {
|
|
9275
|
+
readonly reason_code?: io.flow.v0.enums.PaymentFailureCode;
|
|
9276
|
+
readonly data?: any /*object*/;
|
|
9277
|
+
}
|
|
9278
|
+
|
|
9264
9279
|
interface PaymentMethodBrand {
|
|
9265
9280
|
readonly id: string;
|
|
9266
9281
|
readonly name: string;
|
|
@@ -11456,7 +11471,7 @@ declare namespace io.flow.v0.models {
|
|
|
11456
11471
|
readonly order_identifier?: string;
|
|
11457
11472
|
readonly fulfillment_key?: string;
|
|
11458
11473
|
readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
11459
|
-
readonly updated_at
|
|
11474
|
+
readonly updated_at?: string;
|
|
11460
11475
|
}
|
|
11461
11476
|
|
|
11462
11477
|
interface ShippingNotificationVersion {
|
|
@@ -12905,7 +12920,9 @@ declare namespace io.flow.v0.unions {
|
|
|
12905
12920
|
type CheckoutTokenForm =
|
|
12906
12921
|
| io.flow.v0.models.CheckoutTokenOrderForm
|
|
12907
12922
|
| io.flow.v0.models.CheckoutTokenReferenceForm;
|
|
12908
|
-
type ConfirmationDetails =
|
|
12923
|
+
type ConfirmationDetails =
|
|
12924
|
+
| io.flow.v0.models.DirectDebit
|
|
12925
|
+
| io.flow.v0.models.CardConfirmationSummary;
|
|
12909
12926
|
type ConsumerInvoiceLine =
|
|
12910
12927
|
| io.flow.v0.models.ConsumerInvoiceLineItem
|
|
12911
12928
|
| io.flow.v0.models.ConsumerInvoiceLineDiscount
|
|
@@ -13645,6 +13662,7 @@ export type CardAuthorizationUpsertedV2 =
|
|
|
13645
13662
|
io.flow.v0.models.CardAuthorizationUpsertedV2;
|
|
13646
13663
|
export type CardBrowserActionConfiguration =
|
|
13647
13664
|
io.flow.v0.models.CardBrowserActionConfiguration;
|
|
13665
|
+
export type CardConfirmationSummary = io.flow.v0.models.CardConfirmationSummary;
|
|
13648
13666
|
export type CardDeleted = io.flow.v0.models.CardDeleted;
|
|
13649
13667
|
export type CardDeletedV2 = io.flow.v0.models.CardDeletedV2;
|
|
13650
13668
|
export type CardError = io.flow.v0.models.CardError;
|
|
@@ -14759,6 +14777,8 @@ export type PaymentFailureCode = io.flow.v0.enums.PaymentFailureCode;
|
|
|
14759
14777
|
export type PaymentForm = io.flow.v0.unions.PaymentForm;
|
|
14760
14778
|
export type PaymentInformation = io.flow.v0.models.PaymentInformation;
|
|
14761
14779
|
export type PaymentMethod = io.flow.v0.models.PaymentMethod;
|
|
14780
|
+
export type PaymentMethodActionCancellation =
|
|
14781
|
+
io.flow.v0.models.PaymentMethodActionCancellation;
|
|
14762
14782
|
export type PaymentMethodBrand = io.flow.v0.models.PaymentMethodBrand;
|
|
14763
14783
|
export type PaymentMethodCapability = io.flow.v0.enums.PaymentMethodCapability;
|
|
14764
14784
|
export type PaymentMethodCard = io.flow.v0.unions.PaymentMethodCard;
|