@flowio/types 11.24.53 → 11.24.55

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/src/api.ts CHANGED
@@ -1678,7 +1678,6 @@ declare namespace io.flow.shopify.external.v0.models {
1678
1678
  readonly id: number;
1679
1679
  readonly quantity: number;
1680
1680
  readonly fulfillable_quantity?: number;
1681
- readonly fulfillment_service: string;
1682
1681
  readonly fulfillment_status?: io.flow.shopify.external.v0.enums.FulfillmentStatusType;
1683
1682
  readonly grams?: number;
1684
1683
  readonly price?: string;
@@ -1699,7 +1698,6 @@ declare namespace io.flow.shopify.external.v0.models {
1699
1698
 
1700
1699
  interface ShopifyLineItemForm {
1701
1700
  readonly fulfillable_quantity?: number;
1702
- readonly fulfillment_service: string;
1703
1701
  readonly fulfillment_status?: io.flow.shopify.external.v0.enums.FulfillmentStatusType;
1704
1702
  readonly grams?: number;
1705
1703
  readonly price?: string;
@@ -1880,7 +1878,6 @@ declare namespace io.flow.shopify.external.v0.models {
1880
1878
  readonly title: string;
1881
1879
  readonly tax_lines: io.flow.shopify.external.v0.models.ShopifyTaxLine[];
1882
1880
  readonly carrier_identifier?: string;
1883
- readonly requested_fulfillment_service_id?: string;
1884
1881
  }
1885
1882
 
1886
1883
  interface ShopifyTaxLine {
@@ -2006,8 +2003,8 @@ declare namespace io.flow.apple.pay.v0.enums {
2006
2003
  | 'email'
2007
2004
  | 'name'
2008
2005
  | 'phone'
2009
- | 'postal_address'
2010
- | 'phonetic_name';
2006
+ | 'postalAddress'
2007
+ | 'phoneticName';
2011
2008
  type ApplePayLineItemType = 'final' | 'pending';
2012
2009
  type ApplePayMerchantCapability =
2013
2010
  | 'supports3DS'
@@ -2033,7 +2030,7 @@ declare namespace io.flow.apple.pay.v0.models {
2033
2030
  interface ApplePayLineItem {
2034
2031
  readonly label: string;
2035
2032
  readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
2036
- readonly amount: number;
2033
+ readonly amount: string;
2037
2034
  }
2038
2035
 
2039
2036
  interface ApplePayPaymentContact {
@@ -2084,7 +2081,7 @@ declare namespace io.flow.apple.pay.v0.models {
2084
2081
  interface ApplePayShippingMethod {
2085
2082
  readonly label: string;
2086
2083
  readonly detail: string;
2087
- readonly amount: number;
2084
+ readonly amount: string;
2088
2085
  readonly identifier: string;
2089
2086
  }
2090
2087
  }
@@ -2111,7 +2108,6 @@ declare namespace io.flow.v0.enums {
2111
2108
  | 'not_matched';
2112
2109
  type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
2113
2110
  type Aggregate = 'maximum' | 'minimum';
2114
- type AttachmentType = 'csv';
2115
2111
  type AttributeDataType =
2116
2112
  | 'boolean'
2117
2113
  | 'integer'
@@ -2303,6 +2299,7 @@ declare namespace io.flow.v0.enums {
2303
2299
  type EntityIdentifierType = 'ioss' | 'voec';
2304
2300
  type Environment = 'sandbox' | 'production';
2305
2301
  type EventType =
2302
+ | 'test_upserted'
2306
2303
  | 'transaction_upserted'
2307
2304
  | 'organization_transaction_upserted'
2308
2305
  | 'organization_transaction_deleted'
@@ -2803,6 +2800,18 @@ declare namespace io.flow.v0.enums {
2803
2800
  type PaymentMethodDataOptionType = 'ideal_issuer_option';
2804
2801
  type PaymentMethodRuleContentKey = 'description';
2805
2802
  type PaymentMethodType = 'card' | 'online' | 'offline';
2803
+ type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
2804
+ type PaymentRequestReviewCheckType =
2805
+ | 'restricted_party_screening'
2806
+ | 'fraud_suspicious_behavior'
2807
+ | 'fraud_suspicious_past_activity'
2808
+ | 'fraud_risky_velocity'
2809
+ | 'fraud_previous_chargebacks'
2810
+ | 'order_restricted_goods'
2811
+ | 'order_unsupported_destination'
2812
+ | 'order_missing_information'
2813
+ | 'order_domestic';
2814
+ type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
2806
2815
  type PaymentSourceConfirmationActionType =
2807
2816
  | 'cvv'
2808
2817
  | 'billing_address'
@@ -2829,12 +2838,8 @@ declare namespace io.flow.v0.enums {
2829
2838
  | 'sofort'
2830
2839
  | 'afterpay'
2831
2840
  | 'bancontact';
2832
- type PayoutStatusCode =
2833
- | 'scheduled'
2834
- | 'sent'
2835
- | 'cancelled'
2836
- | 'failed'
2837
- | 'succeeded';
2841
+ type PayoutAttachmentType = 'transactions';
2842
+ type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
2838
2843
  type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
2839
2844
  type PhysicalDeliverySpecialSerivce =
2840
2845
  | 'cold_storage'
@@ -2954,6 +2959,7 @@ declare namespace io.flow.v0.enums {
2954
2959
  type ShopifyLocalizationMethod = 'api' | 'ssr';
2955
2960
  type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
2956
2961
  type SortDirection = 'ascending' | 'descending';
2962
+ type StatementAttachmentType = 'csv';
2957
2963
  type Strategy = 'range' | 'from' | 'to';
2958
2964
  type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
2959
2965
  type SurchargeResponsibleParty = 'organization' | 'customer';
@@ -3492,13 +3498,19 @@ declare namespace io.flow.v0.models {
3492
3498
  readonly display_name?: string;
3493
3499
  }
3494
3500
 
3501
+ interface ApplepaySdkAuthorizationResultActionDetails {
3502
+ readonly discriminator: 'applepay_sdk_authorization_result_action_details';
3503
+ readonly merchant_identifier: string;
3504
+ readonly payment_data_request: any /*object*/;
3505
+ }
3506
+
3495
3507
  interface AtCost {
3496
3508
  readonly discriminator: 'at_cost';
3497
3509
  readonly ignore?: string;
3498
3510
  }
3499
3511
 
3500
3512
  interface Attachment {
3501
- readonly type: io.flow.v0.enums.AttachmentType;
3513
+ readonly type: io.flow.v0.enums.StatementAttachmentType;
3502
3514
  readonly url: string;
3503
3515
  }
3504
3516
 
@@ -3832,7 +3844,6 @@ declare namespace io.flow.v0.models {
3832
3844
  }
3833
3845
 
3834
3846
  interface BankAccountForm {
3835
- readonly last4: string;
3836
3847
  readonly info: io.flow.v0.unions.BankAccountInfo;
3837
3848
  }
3838
3849
 
@@ -3846,6 +3857,10 @@ declare namespace io.flow.v0.models {
3846
3857
  readonly id: string;
3847
3858
  }
3848
3859
 
3860
+ interface BankAccountSummary {
3861
+ readonly last4: string;
3862
+ }
3863
+
3849
3864
  interface BehaviorAudit {
3850
3865
  readonly behavior: io.flow.v0.enums.FlowBehavior;
3851
3866
  readonly authentication_techniques: io.flow.v0.enums.AuthenticationTechnique[];
@@ -4411,6 +4426,12 @@ declare namespace io.flow.v0.models {
4411
4426
  readonly channel_id: string;
4412
4427
  }
4413
4428
 
4429
+ interface ChannelBankAccount {
4430
+ readonly id: string;
4431
+ readonly key: string;
4432
+ readonly last4: string;
4433
+ }
4434
+
4414
4435
  interface ChannelCurrency {
4415
4436
  readonly id: string;
4416
4437
  readonly currency: string;
@@ -4432,6 +4453,11 @@ declare namespace io.flow.v0.models {
4432
4453
  readonly channel_currency: io.flow.v0.models.ChannelCurrency;
4433
4454
  }
4434
4455
 
4456
+ interface ChannelDefaultBankAccount {
4457
+ readonly id: string;
4458
+ readonly bank_account: io.flow.v0.models.BankAccountReference;
4459
+ }
4460
+
4435
4461
  interface ChannelDeleted {
4436
4462
  readonly discriminator: 'channel_deleted';
4437
4463
  readonly event_id: string;
@@ -4488,6 +4514,17 @@ declare namespace io.flow.v0.models {
4488
4514
  readonly channel_organization: io.flow.v0.models.ChannelOrganization;
4489
4515
  }
4490
4516
 
4517
+ interface ChannelPayout {
4518
+ readonly id: string;
4519
+ readonly account: io.flow.v0.models.AccountReference;
4520
+ readonly status: io.flow.v0.unions.PayoutStatus;
4521
+ readonly bank_account?: io.flow.v0.models.BankAccountSummary;
4522
+ readonly amount: number;
4523
+ readonly attachments: io.flow.v0.models.PayoutAttachment[];
4524
+ readonly created_at: string;
4525
+ readonly updated_at: string;
4526
+ }
4527
+
4491
4528
  interface ChannelRate {
4492
4529
  readonly placeholder?: string;
4493
4530
  }
@@ -4545,12 +4582,13 @@ declare namespace io.flow.v0.models {
4545
4582
  }
4546
4583
 
4547
4584
  interface ChannelTransaction {
4585
+ readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
4548
4586
  readonly id: string;
4549
4587
  readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
4550
- readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
4551
4588
  readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
4552
4589
  readonly currency: string;
4553
4590
  readonly source: io.flow.v0.enums.TransactionSource;
4591
+ readonly parent?: io.flow.v0.models.ParentTransactionSummary;
4554
4592
  readonly gross: number;
4555
4593
  readonly fees: io.flow.v0.models.FeeDeduction[];
4556
4594
  readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
@@ -4558,6 +4596,7 @@ declare namespace io.flow.v0.models {
4558
4596
  readonly net: number;
4559
4597
  readonly identifiers: Record<string, string>;
4560
4598
  readonly created_at: string;
4599
+ readonly updated_at: string;
4561
4600
  }
4562
4601
 
4563
4602
  interface ChannelTransactionDeleted {
@@ -7801,11 +7840,6 @@ declare namespace io.flow.v0.models {
7801
7840
  readonly available_quantity: number;
7802
7841
  }
7803
7842
 
7804
- interface NoPayout {
7805
- readonly discriminator: 'no_payout';
7806
- readonly placeholder?: string;
7807
- }
7808
-
7809
7843
  interface NotificationDeletedV2 {
7810
7844
  readonly discriminator: 'notification_deleted_v2';
7811
7845
  readonly event_id: string;
@@ -8705,6 +8739,7 @@ declare namespace io.flow.v0.models {
8705
8739
 
8706
8740
  interface OrganizationBankAccount {
8707
8741
  readonly id: string;
8742
+ readonly key: string;
8708
8743
  readonly last4: string;
8709
8744
  }
8710
8745
 
@@ -8796,6 +8831,17 @@ declare namespace io.flow.v0.models {
8796
8831
  readonly organization_onboarding_state: io.flow.v0.models.OrganizationOnboardingState;
8797
8832
  }
8798
8833
 
8834
+ interface OrganizationPayout {
8835
+ readonly id: string;
8836
+ readonly account: io.flow.v0.models.AccountReference;
8837
+ readonly status: io.flow.v0.unions.PayoutStatus;
8838
+ readonly bank_account?: io.flow.v0.models.BankAccountSummary;
8839
+ readonly amount: number;
8840
+ readonly attachments: io.flow.v0.models.PayoutAttachment[];
8841
+ readonly created_at: string;
8842
+ readonly updated_at: string;
8843
+ }
8844
+
8799
8845
  interface OrganizationPutForm {
8800
8846
  readonly name?: string;
8801
8847
  readonly environment?: io.flow.v0.enums.Environment;
@@ -8966,6 +9012,11 @@ declare namespace io.flow.v0.models {
8966
9012
  readonly number?: string;
8967
9013
  }
8968
9014
 
9015
+ interface ParentTransactionSummary {
9016
+ readonly id: string;
9017
+ readonly source: io.flow.v0.enums.TransactionSource;
9018
+ }
9019
+
8969
9020
  interface PartnerCenter {
8970
9021
  readonly partner_reference: io.flow.v0.models.PartnerReference;
8971
9022
  readonly number?: string;
@@ -9509,6 +9560,7 @@ declare namespace io.flow.v0.models {
9509
9560
  readonly payment_information: io.flow.v0.models.PaymentInformation;
9510
9561
  readonly supported_actions: io.flow.v0.enums.PaymentActionType[];
9511
9562
  readonly payment_capture_option?: io.flow.v0.unions.PaymentCaptureOption;
9563
+ readonly review?: io.flow.v0.models.PaymentRequestReview;
9512
9564
  }
9513
9565
 
9514
9566
  interface PaymentRequestBilling {
@@ -9549,6 +9601,16 @@ declare namespace io.flow.v0.models {
9549
9601
  readonly reference?: string;
9550
9602
  }
9551
9603
 
9604
+ interface PaymentRequestReview {
9605
+ readonly status: io.flow.v0.enums.PaymentRequestReviewStatus;
9606
+ readonly checks: io.flow.v0.models.PaymentRequestReviewCheck[];
9607
+ }
9608
+
9609
+ interface PaymentRequestReviewCheck {
9610
+ readonly type: io.flow.v0.enums.PaymentRequestReviewCheckType;
9611
+ readonly status: io.flow.v0.enums.PaymentRequestReviewCheckStatus;
9612
+ }
9613
+
9552
9614
  interface PaymentRequestUpserted {
9553
9615
  readonly discriminator: 'payment_request_upserted';
9554
9616
  readonly event_id: string;
@@ -9601,16 +9663,42 @@ declare namespace io.flow.v0.models {
9601
9663
  readonly payment: io.flow.v0.unions.Payment;
9602
9664
  }
9603
9665
 
9604
- interface Payout {
9605
- readonly discriminator: 'payout';
9606
- readonly status: io.flow.v0.models.PayoutStatus;
9607
- readonly amount: number;
9608
- readonly sent_on?: string;
9666
+ interface PayoutAttachment {
9667
+ readonly type: io.flow.v0.enums.PayoutAttachmentType;
9668
+ readonly url: string;
9609
9669
  }
9610
9670
 
9611
- interface PayoutStatus {
9612
- readonly code: io.flow.v0.enums.PayoutStatusCode;
9613
- readonly reason?: string;
9671
+ interface PayoutStatusFailed {
9672
+ readonly code: 'failed';
9673
+ readonly timestamp: string;
9674
+ readonly reason: io.flow.v0.enums.PayoutStatusFailureCode;
9675
+ }
9676
+
9677
+ interface PayoutStatusScheduled {
9678
+ readonly code: 'scheduled';
9679
+ readonly placeholder?: string;
9680
+ }
9681
+
9682
+ interface PayoutStatusSent {
9683
+ readonly code: 'sent';
9684
+ readonly timestamp: string;
9685
+ }
9686
+
9687
+ interface PayoutTransaction {
9688
+ readonly id: string;
9689
+ readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
9690
+ readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
9691
+ readonly currency: string;
9692
+ readonly source: io.flow.v0.enums.TransactionSource;
9693
+ readonly parent?: io.flow.v0.models.ParentTransactionSummary;
9694
+ readonly gross: number;
9695
+ readonly fees: io.flow.v0.models.FeeDeduction[];
9696
+ readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
9697
+ readonly discounts: io.flow.v0.models.BillingDiscount[];
9698
+ readonly net: number;
9699
+ readonly identifiers: Record<string, string>;
9700
+ readonly created_at: string;
9701
+ readonly updated_at: string;
9614
9702
  }
9615
9703
 
9616
9704
  interface PaypalAuthorizationDetails {
@@ -11023,6 +11111,18 @@ declare namespace io.flow.v0.models {
11023
11111
  readonly id: string;
11024
11112
  }
11025
11113
 
11114
+ interface SettlementNoPayout {
11115
+ readonly discriminator: 'no_payout';
11116
+ readonly placeholder?: string;
11117
+ }
11118
+
11119
+ interface SettlementPayout {
11120
+ readonly discriminator: 'payout';
11121
+ readonly status: io.flow.v0.unions.PayoutStatus;
11122
+ readonly amount: number;
11123
+ readonly sent_on?: string;
11124
+ }
11125
+
11026
11126
  interface SetupBlocked {
11027
11127
  readonly discriminator: 'setup_blocked';
11028
11128
  readonly reasons: io.flow.v0.enums.OnboardingBlockedReason[];
@@ -11030,7 +11130,7 @@ declare namespace io.flow.v0.models {
11030
11130
 
11031
11131
  interface SetupCompleted {
11032
11132
  readonly discriminator: 'setup_completed';
11033
- readonly placeholder?: boolean;
11133
+ readonly third_party_logistics_guid?: string;
11034
11134
  }
11035
11135
 
11036
11136
  interface SetupInProgress {
@@ -12074,6 +12174,18 @@ declare namespace io.flow.v0.models {
12074
12174
  readonly email_recipients?: string[];
12075
12175
  }
12076
12176
 
12177
+ interface Test {
12178
+ readonly id: string;
12179
+ }
12180
+
12181
+ interface TestUpserted {
12182
+ readonly discriminator: 'test_upserted';
12183
+ readonly event_id: string;
12184
+ readonly timestamp: string;
12185
+ readonly organization: string;
12186
+ readonly test: io.flow.v0.models.Test;
12187
+ }
12188
+
12077
12189
  interface ThirdPartyLogisticsPartner {
12078
12190
  readonly warehouse_address: io.flow.v0.models.MerchantOnboardingAddress;
12079
12191
  readonly warehouse_url?: string;
@@ -12397,12 +12509,13 @@ declare namespace io.flow.v0.models {
12397
12509
  }
12398
12510
 
12399
12511
  interface Transaction {
12512
+ readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
12400
12513
  readonly id: string;
12401
12514
  readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
12402
- readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
12403
12515
  readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
12404
12516
  readonly currency: string;
12405
12517
  readonly source: io.flow.v0.enums.TransactionSource;
12518
+ readonly parent?: io.flow.v0.models.ParentTransactionSummary;
12406
12519
  readonly gross: number;
12407
12520
  readonly fees: io.flow.v0.models.FeeDeduction[];
12408
12521
  readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
@@ -12410,6 +12523,7 @@ declare namespace io.flow.v0.models {
12410
12523
  readonly net: number;
12411
12524
  readonly identifiers: Record<string, string>;
12412
12525
  readonly created_at: string;
12526
+ readonly updated_at: string;
12413
12527
  }
12414
12528
 
12415
12529
  interface TransactionDetailsCard {
@@ -12720,6 +12834,7 @@ declare namespace io.flow.v0.unions {
12720
12834
  | io.flow.v0.models.StripeAuthorizationResultActionDetails
12721
12835
  | io.flow.v0.models.ThreedsIdentifyActionDetails
12722
12836
  | io.flow.v0.models.ThreedsChallengeActionDetails
12837
+ | io.flow.v0.models.ApplepaySdkAuthorizationResultActionDetails
12723
12838
  | io.flow.v0.models.KlarnaSdkAuthorizationResultActionDetails
12724
12839
  | io.flow.v0.models.SelectIssuerOptionActionDetails;
12725
12840
  type AvailableFilter =
@@ -12767,6 +12882,7 @@ declare namespace io.flow.v0.unions {
12767
12882
  | io.flow.v0.models.EmailNotificationDataRefund
12768
12883
  | io.flow.v0.models.EmailNotificationAbandonedOrder;
12769
12884
  type Event =
12885
+ | io.flow.v0.models.TestUpserted
12770
12886
  | io.flow.v0.models.TransactionUpserted
12771
12887
  | io.flow.v0.models.OrganizationTransactionUpserted
12772
12888
  | io.flow.v0.models.OrganizationTransactionDeleted
@@ -13134,6 +13250,10 @@ declare namespace io.flow.v0.unions {
13134
13250
  | io.flow.v0.models.PaymentPaymentRequestReference;
13135
13251
  type PaymentSource = io.flow.v0.models.CardPaymentSource;
13136
13252
  type PaymentSourceForm = io.flow.v0.models.CardPaymentSourceForm;
13253
+ type PayoutStatus =
13254
+ | io.flow.v0.models.PayoutStatusScheduled
13255
+ | io.flow.v0.models.PayoutStatusSent
13256
+ | io.flow.v0.models.PayoutStatusFailed;
13137
13257
  type PriceSource =
13138
13258
  | io.flow.v0.models.PriceSourcePriceBook
13139
13259
  | io.flow.v0.models.PriceSourceCatalog
@@ -13192,7 +13312,9 @@ declare namespace io.flow.v0.unions {
13192
13312
  type Session = io.flow.v0.models.OrganizationSession;
13193
13313
  type SessionAuthorization =
13194
13314
  io.flow.v0.models.OrganizationSessionAuthorization;
13195
- type Settlement = io.flow.v0.models.NoPayout | io.flow.v0.models.Payout;
13315
+ type Settlement =
13316
+ | io.flow.v0.models.SettlementNoPayout
13317
+ | io.flow.v0.models.SettlementPayout;
13196
13318
  type ShippingLabelForm =
13197
13319
  | io.flow.v0.models.DetailedShippingLabelForm
13198
13320
  | io.flow.v0.models.SummaryShippingLabelForm;
@@ -13325,9 +13447,10 @@ export type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
13325
13447
  export type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
13326
13448
  export type ApplePayMerchantValidationPayload =
13327
13449
  io.flow.v0.models.ApplePayMerchantValidationPayload;
13450
+ export type ApplepaySdkAuthorizationResultActionDetails =
13451
+ io.flow.v0.models.ApplepaySdkAuthorizationResultActionDetails;
13328
13452
  export type AtCost = io.flow.v0.models.AtCost;
13329
13453
  export type Attachment = io.flow.v0.models.Attachment;
13330
- export type AttachmentType = io.flow.v0.enums.AttachmentType;
13331
13454
  export type Attribute = io.flow.v0.models.Attribute;
13332
13455
  export type AttributeDataType = io.flow.v0.enums.AttributeDataType;
13333
13456
  export type AttributeDeleted = io.flow.v0.models.AttributeDeleted;
@@ -13412,6 +13535,7 @@ export type BankAccountForm = io.flow.v0.models.BankAccountForm;
13412
13535
  export type BankAccountInfo = io.flow.v0.unions.BankAccountInfo;
13413
13536
  export type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
13414
13537
  export type BankAccountReference = io.flow.v0.models.BankAccountReference;
13538
+ export type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
13415
13539
  export type BehaviorAudit = io.flow.v0.models.BehaviorAudit;
13416
13540
  export type BillingAddress = io.flow.v0.models.BillingAddress;
13417
13541
  export type BillingChannelOrderSummary =
@@ -13519,11 +13643,14 @@ export type Channel = io.flow.v0.models.Channel;
13519
13643
  export type ChannelAuthorization = io.flow.v0.models.ChannelAuthorization;
13520
13644
  export type ChannelAuthorizationForm =
13521
13645
  io.flow.v0.models.ChannelAuthorizationForm;
13646
+ export type ChannelBankAccount = io.flow.v0.models.ChannelBankAccount;
13522
13647
  export type ChannelCurrency = io.flow.v0.models.ChannelCurrency;
13523
13648
  export type ChannelCurrencyCapability =
13524
13649
  io.flow.v0.enums.ChannelCurrencyCapability;
13525
13650
  export type ChannelCurrencyDeleted = io.flow.v0.models.ChannelCurrencyDeleted;
13526
13651
  export type ChannelCurrencyUpserted = io.flow.v0.models.ChannelCurrencyUpserted;
13652
+ export type ChannelDefaultBankAccount =
13653
+ io.flow.v0.models.ChannelDefaultBankAccount;
13527
13654
  export type ChannelDeleted = io.flow.v0.models.ChannelDeleted;
13528
13655
  export type ChannelOrganization = io.flow.v0.models.ChannelOrganization;
13529
13656
  export type ChannelOrganizationAuthorization =
@@ -13537,6 +13664,7 @@ export type ChannelOrganizationPutForm =
13537
13664
  io.flow.v0.models.ChannelOrganizationPutForm;
13538
13665
  export type ChannelOrganizationUpserted =
13539
13666
  io.flow.v0.models.ChannelOrganizationUpserted;
13667
+ export type ChannelPayout = io.flow.v0.models.ChannelPayout;
13540
13668
  export type ChannelRate = io.flow.v0.models.ChannelRate;
13541
13669
  export type ChannelReference = io.flow.v0.models.ChannelReference;
13542
13670
  export type ChannelStatement = io.flow.v0.models.ChannelStatement;
@@ -14274,7 +14402,6 @@ export type NoInventoryReservationError =
14274
14402
  io.flow.v0.models.NoInventoryReservationError;
14275
14403
  export type NoInventoryReservationErrorItem =
14276
14404
  io.flow.v0.models.NoInventoryReservationErrorItem;
14277
- export type NoPayout = io.flow.v0.models.NoPayout;
14278
14405
  export type NotificationDeletedV2 = io.flow.v0.models.NotificationDeletedV2;
14279
14406
  export type NotificationUpsertedV2 = io.flow.v0.models.NotificationUpsertedV2;
14280
14407
  export type NumberRange = io.flow.v0.models.NumberRange;
@@ -14492,6 +14619,7 @@ export type OrganizationOnboardingStateUpserted =
14492
14619
  io.flow.v0.models.OrganizationOnboardingStateUpserted;
14493
14620
  export type OrganizationPaymentMethodTag =
14494
14621
  io.flow.v0.enums.OrganizationPaymentMethodTag;
14622
+ export type OrganizationPayout = io.flow.v0.models.OrganizationPayout;
14495
14623
  export type OrganizationPutForm = io.flow.v0.models.OrganizationPutForm;
14496
14624
  export type OrganizationRatesData = io.flow.v0.models.OrganizationRatesData;
14497
14625
  export type OrganizationRatesPublished =
@@ -14523,6 +14651,8 @@ export type OutboundCartonFee = io.flow.v0.models.OutboundCartonFee;
14523
14651
  export type OversizedShipmentRatecardFee =
14524
14652
  io.flow.v0.models.OversizedShipmentRatecardFee;
14525
14653
  export type Packaging = io.flow.v0.models.Packaging;
14654
+ export type ParentTransactionSummary =
14655
+ io.flow.v0.models.ParentTransactionSummary;
14526
14656
  export type PartnerCenter = io.flow.v0.models.PartnerCenter;
14527
14657
  export type PartnerCenterFee = io.flow.v0.unions.PartnerCenterFee;
14528
14658
  export type PartnerCenterForm = io.flow.v0.models.PartnerCenterForm;
@@ -14689,6 +14819,15 @@ export type PaymentRequestBundleForm =
14689
14819
  io.flow.v0.models.PaymentRequestBundleForm;
14690
14820
  export type PaymentRequestForm = io.flow.v0.models.PaymentRequestForm;
14691
14821
  export type PaymentRequestReference = io.flow.v0.models.PaymentRequestReference;
14822
+ export type PaymentRequestReview = io.flow.v0.models.PaymentRequestReview;
14823
+ export type PaymentRequestReviewCheck =
14824
+ io.flow.v0.models.PaymentRequestReviewCheck;
14825
+ export type PaymentRequestReviewCheckStatus =
14826
+ io.flow.v0.enums.PaymentRequestReviewCheckStatus;
14827
+ export type PaymentRequestReviewCheckType =
14828
+ io.flow.v0.enums.PaymentRequestReviewCheckType;
14829
+ export type PaymentRequestReviewStatus =
14830
+ io.flow.v0.enums.PaymentRequestReviewStatus;
14692
14831
  export type PaymentRequestUpserted = io.flow.v0.models.PaymentRequestUpserted;
14693
14832
  export type PaymentReversal = io.flow.v0.models.PaymentReversal;
14694
14833
  export type PaymentReversalForm = io.flow.v0.models.PaymentReversalForm;
@@ -14704,9 +14843,14 @@ export type PaymentTax = io.flow.v0.models.PaymentTax;
14704
14843
  export type PaymentType = io.flow.v0.enums.PaymentType;
14705
14844
  export type PaymentUpserted = io.flow.v0.models.PaymentUpserted;
14706
14845
  export type PaymentVersion = io.flow.v0.models.PaymentVersion;
14707
- export type Payout = io.flow.v0.models.Payout;
14708
- export type PayoutStatus = io.flow.v0.models.PayoutStatus;
14709
- export type PayoutStatusCode = io.flow.v0.enums.PayoutStatusCode;
14846
+ export type PayoutAttachment = io.flow.v0.models.PayoutAttachment;
14847
+ export type PayoutAttachmentType = io.flow.v0.enums.PayoutAttachmentType;
14848
+ export type PayoutStatus = io.flow.v0.unions.PayoutStatus;
14849
+ export type PayoutStatusFailed = io.flow.v0.models.PayoutStatusFailed;
14850
+ export type PayoutStatusFailureCode = io.flow.v0.enums.PayoutStatusFailureCode;
14851
+ export type PayoutStatusScheduled = io.flow.v0.models.PayoutStatusScheduled;
14852
+ export type PayoutStatusSent = io.flow.v0.models.PayoutStatusSent;
14853
+ export type PayoutTransaction = io.flow.v0.models.PayoutTransaction;
14710
14854
  export type PaypalAuthorizationDetails =
14711
14855
  io.flow.v0.models.PaypalAuthorizationDetails;
14712
14856
  export type PaypalAuthorizationForm = io.flow.v0.models.PaypalAuthorizationForm;
@@ -14972,6 +15116,8 @@ export type SessionReference = io.flow.v0.models.SessionReference;
14972
15116
  export type SessionVisit = io.flow.v0.models.SessionVisit;
14973
15117
  export type SessionVisitor = io.flow.v0.models.SessionVisitor;
14974
15118
  export type Settlement = io.flow.v0.unions.Settlement;
15119
+ export type SettlementNoPayout = io.flow.v0.models.SettlementNoPayout;
15120
+ export type SettlementPayout = io.flow.v0.models.SettlementPayout;
14975
15121
  export type SetupBlocked = io.flow.v0.models.SetupBlocked;
14976
15122
  export type SetupCompleted = io.flow.v0.models.SetupCompleted;
14977
15123
  export type SetupInProgress = io.flow.v0.models.SetupInProgress;
@@ -15121,6 +15267,7 @@ export type SolidusVariantExportType =
15121
15267
  io.flow.v0.models.SolidusVariantExportType;
15122
15268
  export type SortDirection = io.flow.v0.enums.SortDirection;
15123
15269
  export type Statement = io.flow.v0.models.Statement;
15270
+ export type StatementAttachmentType = io.flow.v0.enums.StatementAttachmentType;
15124
15271
  export type StatementDeleted = io.flow.v0.models.StatementDeleted;
15125
15272
  export type StatementUpserted = io.flow.v0.models.StatementUpserted;
15126
15273
  export type Strategy = io.flow.v0.enums.Strategy;
@@ -15198,6 +15345,8 @@ export type TaxSetting = io.flow.v0.unions.TaxSetting;
15198
15345
  export type TaxVerificationResult = io.flow.v0.enums.TaxVerificationResult;
15199
15346
  export type TaxabilityType = io.flow.v0.enums.TaxabilityType;
15200
15347
  export type TaxabilityValue = io.flow.v0.enums.TaxabilityValue;
15348
+ export type Test = io.flow.v0.models.Test;
15349
+ export type TestUpserted = io.flow.v0.models.TestUpserted;
15201
15350
  export type ThirdPartyLogisticsPartner =
15202
15351
  io.flow.v0.models.ThirdPartyLogisticsPartner;
15203
15352
  export type ThreeDSecure = io.flow.v0.models.ThreeDSecure;