@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.d.ts CHANGED
@@ -2733,6 +2733,15 @@ declare namespace io.flow.v0.models {
2733
2733
  readonly discriminator: 'card_browser_action_configuration';
2734
2734
  readonly viewport: io.flow.v0.enums.ThreedsTwoChallengeViewport;
2735
2735
  }
2736
+ interface CardConfirmationSummary {
2737
+ readonly discriminator: 'card_confirmation_summary';
2738
+ readonly type?: io.flow.v0.enums.CardType;
2739
+ readonly funding_type?: string;
2740
+ readonly expiration?: io.flow.v0.models.Expiration;
2741
+ readonly iin?: string;
2742
+ readonly issuer?: io.flow.v0.models.IssuerSummary;
2743
+ readonly last4?: string;
2744
+ }
2736
2745
  interface CardDeleted {
2737
2746
  readonly discriminator: 'card_deleted';
2738
2747
  readonly event_id: string;
@@ -7158,6 +7167,10 @@ declare namespace io.flow.v0.models {
7158
7167
  readonly regions: string[];
7159
7168
  readonly capabilities?: io.flow.v0.enums.PaymentMethodCapability[];
7160
7169
  }
7170
+ interface PaymentMethodActionCancellation {
7171
+ readonly reason_code?: io.flow.v0.enums.PaymentFailureCode;
7172
+ readonly data?: any;
7173
+ }
7161
7174
  interface PaymentMethodBrand {
7162
7175
  readonly id: string;
7163
7176
  readonly name: string;
@@ -9039,7 +9052,7 @@ declare namespace io.flow.v0.models {
9039
9052
  readonly order_identifier?: string;
9040
9053
  readonly fulfillment_key?: string;
9041
9054
  readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
9042
- readonly updated_at: string;
9055
+ readonly updated_at?: string;
9043
9056
  }
9044
9057
  interface ShippingNotificationVersion {
9045
9058
  readonly id: string;
@@ -10253,7 +10266,7 @@ declare namespace io.flow.v0.unions {
10253
10266
  type CardAuthorizationActionResult = io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4;
10254
10267
  type CardNumber = io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher;
10255
10268
  type CheckoutTokenForm = io.flow.v0.models.CheckoutTokenOrderForm | io.flow.v0.models.CheckoutTokenReferenceForm;
10256
- type ConfirmationDetails = io.flow.v0.models.DirectDebit;
10269
+ type ConfirmationDetails = io.flow.v0.models.DirectDebit | io.flow.v0.models.CardConfirmationSummary;
10257
10270
  type ConsumerInvoiceLine = io.flow.v0.models.ConsumerInvoiceLineItem | io.flow.v0.models.ConsumerInvoiceLineDiscount | io.flow.v0.models.ConsumerInvoiceLineShipping;
10258
10271
  type ConsumerInvoiceLineForm = io.flow.v0.models.ConsumerInvoiceLineItemForm | io.flow.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.v0.models.ConsumerInvoiceLineShippingForm;
10259
10272
  type Delivery = io.flow.v0.models.DigitalDelivery | io.flow.v0.models.PhysicalDelivery;
@@ -10520,6 +10533,7 @@ export declare type CardAuthorizationActionResult = io.flow.v0.unions.CardAuthor
10520
10533
  export declare type CardAuthorizationDeletedV2 = io.flow.v0.models.CardAuthorizationDeletedV2;
10521
10534
  export declare type CardAuthorizationUpsertedV2 = io.flow.v0.models.CardAuthorizationUpsertedV2;
10522
10535
  export declare type CardBrowserActionConfiguration = io.flow.v0.models.CardBrowserActionConfiguration;
10536
+ export declare type CardConfirmationSummary = io.flow.v0.models.CardConfirmationSummary;
10523
10537
  export declare type CardDeleted = io.flow.v0.models.CardDeleted;
10524
10538
  export declare type CardDeletedV2 = io.flow.v0.models.CardDeletedV2;
10525
10539
  export declare type CardError = io.flow.v0.models.CardError;
@@ -11404,6 +11418,7 @@ export declare type PaymentFailureCode = io.flow.v0.enums.PaymentFailureCode;
11404
11418
  export declare type PaymentForm = io.flow.v0.unions.PaymentForm;
11405
11419
  export declare type PaymentInformation = io.flow.v0.models.PaymentInformation;
11406
11420
  export declare type PaymentMethod = io.flow.v0.models.PaymentMethod;
11421
+ export declare type PaymentMethodActionCancellation = io.flow.v0.models.PaymentMethodActionCancellation;
11407
11422
  export declare type PaymentMethodBrand = io.flow.v0.models.PaymentMethodBrand;
11408
11423
  export declare type PaymentMethodCapability = io.flow.v0.enums.PaymentMethodCapability;
11409
11424
  export declare type PaymentMethodCard = io.flow.v0.unions.PaymentMethodCard;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/types",
3
- "version": "11.24.58",
3
+ "version": "11.24.60",
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": "90cb83a0f0ad5fc6cb0d732c27d1f5e1389e1645"
28
+ "gitHead": "ad876b01a126395eae5d27ad56893b2c69b3944f"
29
29
  }