@flowio/types 11.24.54 → 11.24.56
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 +1587 -1421
- package/dist/api.d.ts +130 -12
- package/package.json +2 -2
- package/src/api-internal.ts +6459 -6242
- package/src/api.ts +172 -10
package/src/api.ts
CHANGED
|
@@ -2003,8 +2003,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
2003
2003
|
| 'email'
|
|
2004
2004
|
| 'name'
|
|
2005
2005
|
| 'phone'
|
|
2006
|
-
| '
|
|
2007
|
-
| '
|
|
2006
|
+
| 'postal_address'
|
|
2007
|
+
| 'phonetic_name';
|
|
2008
2008
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
2009
2009
|
type ApplePayMerchantCapability =
|
|
2010
2010
|
| 'supports3DS'
|
|
@@ -2030,7 +2030,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2030
2030
|
interface ApplePayLineItem {
|
|
2031
2031
|
readonly label: string;
|
|
2032
2032
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
2033
|
-
readonly amount:
|
|
2033
|
+
readonly amount: number;
|
|
2034
2034
|
}
|
|
2035
2035
|
|
|
2036
2036
|
interface ApplePayPaymentContact {
|
|
@@ -2081,7 +2081,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2081
2081
|
interface ApplePayShippingMethod {
|
|
2082
2082
|
readonly label: string;
|
|
2083
2083
|
readonly detail: string;
|
|
2084
|
-
readonly amount:
|
|
2084
|
+
readonly amount: number;
|
|
2085
2085
|
readonly identifier: string;
|
|
2086
2086
|
}
|
|
2087
2087
|
}
|
|
@@ -2299,6 +2299,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2299
2299
|
type EntityIdentifierType = 'ioss' | 'voec';
|
|
2300
2300
|
type Environment = 'sandbox' | 'production';
|
|
2301
2301
|
type EventType =
|
|
2302
|
+
| 'test_upserted'
|
|
2302
2303
|
| 'transaction_upserted'
|
|
2303
2304
|
| 'organization_transaction_upserted'
|
|
2304
2305
|
| 'organization_transaction_deleted'
|
|
@@ -2309,6 +2310,10 @@ declare namespace io.flow.v0.enums {
|
|
|
2309
2310
|
| 'channel_transaction_deleted_v2'
|
|
2310
2311
|
| 'channel_statement_upserted'
|
|
2311
2312
|
| 'channel_statement_deleted'
|
|
2313
|
+
| 'channel_payout_upserted'
|
|
2314
|
+
| 'channel_payout_deleted'
|
|
2315
|
+
| 'organization_payout_upserted'
|
|
2316
|
+
| 'organization_payout_deleted'
|
|
2312
2317
|
| 'attribute_upserted'
|
|
2313
2318
|
| 'attribute_deleted'
|
|
2314
2319
|
| 'attribute_upserted_v2'
|
|
@@ -2523,6 +2528,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2523
2528
|
type FulfillmentItemQuantityStatus = 'new' | 'shipped' | 'cancelled';
|
|
2524
2529
|
type FulfillmentMethodType = 'fulfillment_method';
|
|
2525
2530
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
2531
|
+
type FulfillmentRouting = 'fulfilled_from_center' | 'fulfillment_service';
|
|
2526
2532
|
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
2527
2533
|
type GoodsSupply = 'export' | 'intra_community' | 'local';
|
|
2528
2534
|
type HolidayCalendar = 'us_bank_holidays' | 'jewish_holidays';
|
|
@@ -2799,6 +2805,18 @@ declare namespace io.flow.v0.enums {
|
|
|
2799
2805
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
2800
2806
|
type PaymentMethodRuleContentKey = 'description';
|
|
2801
2807
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
2808
|
+
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
2809
|
+
type PaymentRequestReviewCheckType =
|
|
2810
|
+
| 'restricted_party_screening'
|
|
2811
|
+
| 'fraud_suspicious_behavior'
|
|
2812
|
+
| 'fraud_suspicious_past_activity'
|
|
2813
|
+
| 'fraud_risky_velocity'
|
|
2814
|
+
| 'fraud_previous_chargebacks'
|
|
2815
|
+
| 'order_restricted_goods'
|
|
2816
|
+
| 'order_unsupported_destination'
|
|
2817
|
+
| 'order_missing_information'
|
|
2818
|
+
| 'order_domestic';
|
|
2819
|
+
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
2802
2820
|
type PaymentSourceConfirmationActionType =
|
|
2803
2821
|
| 'cvv'
|
|
2804
2822
|
| 'billing_address'
|
|
@@ -3485,6 +3503,17 @@ declare namespace io.flow.v0.models {
|
|
|
3485
3503
|
readonly display_name?: string;
|
|
3486
3504
|
}
|
|
3487
3505
|
|
|
3506
|
+
interface ApplepaySdkCreateResultActionDetails {
|
|
3507
|
+
readonly discriminator: 'applepay_sdk_create_result_action_details';
|
|
3508
|
+
readonly merchant_identifier: string;
|
|
3509
|
+
readonly payment_data_request: any /*object*/;
|
|
3510
|
+
}
|
|
3511
|
+
|
|
3512
|
+
interface ApplepaySdkValidateResultActionDetails {
|
|
3513
|
+
readonly discriminator: 'applepay_sdk_validate_result_action_details';
|
|
3514
|
+
readonly payment_session: any /*object*/;
|
|
3515
|
+
}
|
|
3516
|
+
|
|
3488
3517
|
interface AtCost {
|
|
3489
3518
|
readonly discriminator: 'at_cost';
|
|
3490
3519
|
readonly ignore?: string;
|
|
@@ -3825,7 +3854,6 @@ declare namespace io.flow.v0.models {
|
|
|
3825
3854
|
}
|
|
3826
3855
|
|
|
3827
3856
|
interface BankAccountForm {
|
|
3828
|
-
readonly last4: string;
|
|
3829
3857
|
readonly info: io.flow.v0.unions.BankAccountInfo;
|
|
3830
3858
|
}
|
|
3831
3859
|
|
|
@@ -3839,6 +3867,10 @@ declare namespace io.flow.v0.models {
|
|
|
3839
3867
|
readonly id: string;
|
|
3840
3868
|
}
|
|
3841
3869
|
|
|
3870
|
+
interface BankAccountSummary {
|
|
3871
|
+
readonly last4: string;
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3842
3874
|
interface BehaviorAudit {
|
|
3843
3875
|
readonly behavior: io.flow.v0.enums.FlowBehavior;
|
|
3844
3876
|
readonly authentication_techniques: io.flow.v0.enums.AuthenticationTechnique[];
|
|
@@ -4404,6 +4436,12 @@ declare namespace io.flow.v0.models {
|
|
|
4404
4436
|
readonly channel_id: string;
|
|
4405
4437
|
}
|
|
4406
4438
|
|
|
4439
|
+
interface ChannelBankAccount {
|
|
4440
|
+
readonly id: string;
|
|
4441
|
+
readonly key: string;
|
|
4442
|
+
readonly last4: string;
|
|
4443
|
+
}
|
|
4444
|
+
|
|
4407
4445
|
interface ChannelCurrency {
|
|
4408
4446
|
readonly id: string;
|
|
4409
4447
|
readonly currency: string;
|
|
@@ -4425,6 +4463,11 @@ declare namespace io.flow.v0.models {
|
|
|
4425
4463
|
readonly channel_currency: io.flow.v0.models.ChannelCurrency;
|
|
4426
4464
|
}
|
|
4427
4465
|
|
|
4466
|
+
interface ChannelDefaultBankAccount {
|
|
4467
|
+
readonly id: string;
|
|
4468
|
+
readonly bank_account: io.flow.v0.models.BankAccountReference;
|
|
4469
|
+
}
|
|
4470
|
+
|
|
4428
4471
|
interface ChannelDeleted {
|
|
4429
4472
|
readonly discriminator: 'channel_deleted';
|
|
4430
4473
|
readonly event_id: string;
|
|
@@ -4485,12 +4528,29 @@ declare namespace io.flow.v0.models {
|
|
|
4485
4528
|
readonly id: string;
|
|
4486
4529
|
readonly account: io.flow.v0.models.AccountReference;
|
|
4487
4530
|
readonly status: io.flow.v0.unions.PayoutStatus;
|
|
4531
|
+
readonly bank_account?: io.flow.v0.models.BankAccountSummary;
|
|
4488
4532
|
readonly amount: number;
|
|
4489
4533
|
readonly attachments: io.flow.v0.models.PayoutAttachment[];
|
|
4490
4534
|
readonly created_at: string;
|
|
4491
4535
|
readonly updated_at: string;
|
|
4492
4536
|
}
|
|
4493
4537
|
|
|
4538
|
+
interface ChannelPayoutDeleted {
|
|
4539
|
+
readonly discriminator: 'channel_payout_deleted';
|
|
4540
|
+
readonly event_id: string;
|
|
4541
|
+
readonly timestamp: string;
|
|
4542
|
+
readonly channel_id: string;
|
|
4543
|
+
readonly id: string;
|
|
4544
|
+
}
|
|
4545
|
+
|
|
4546
|
+
interface ChannelPayoutUpserted {
|
|
4547
|
+
readonly discriminator: 'channel_payout_upserted';
|
|
4548
|
+
readonly event_id: string;
|
|
4549
|
+
readonly timestamp: string;
|
|
4550
|
+
readonly channel_id: string;
|
|
4551
|
+
readonly payout: io.flow.v0.models.ChannelPayout;
|
|
4552
|
+
}
|
|
4553
|
+
|
|
4494
4554
|
interface ChannelRate {
|
|
4495
4555
|
readonly placeholder?: string;
|
|
4496
4556
|
}
|
|
@@ -4548,9 +4608,9 @@ declare namespace io.flow.v0.models {
|
|
|
4548
4608
|
}
|
|
4549
4609
|
|
|
4550
4610
|
interface ChannelTransaction {
|
|
4611
|
+
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
4551
4612
|
readonly id: string;
|
|
4552
4613
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
4553
|
-
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
4554
4614
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
4555
4615
|
readonly currency: string;
|
|
4556
4616
|
readonly source: io.flow.v0.enums.TransactionSource;
|
|
@@ -5429,8 +5489,15 @@ declare namespace io.flow.v0.models {
|
|
|
5429
5489
|
readonly type: 'browser';
|
|
5430
5490
|
readonly user_agent: string;
|
|
5431
5491
|
readonly origin: string;
|
|
5432
|
-
readonly accept_language
|
|
5492
|
+
readonly accept_language?: string;
|
|
5433
5493
|
readonly ip?: string;
|
|
5494
|
+
readonly time_zone_offset?: number;
|
|
5495
|
+
readonly date_string?: string;
|
|
5496
|
+
readonly navigator_language?: string;
|
|
5497
|
+
readonly navigator_hardware_concurrency?: number;
|
|
5498
|
+
readonly cookie_created_at?: number;
|
|
5499
|
+
readonly session_duration?: number;
|
|
5500
|
+
readonly fingerprint?: string;
|
|
5434
5501
|
}
|
|
5435
5502
|
|
|
5436
5503
|
interface DeviceFingerprintDetailsBrowser {
|
|
@@ -8705,6 +8772,7 @@ declare namespace io.flow.v0.models {
|
|
|
8705
8772
|
|
|
8706
8773
|
interface OrganizationBankAccount {
|
|
8707
8774
|
readonly id: string;
|
|
8775
|
+
readonly key: string;
|
|
8708
8776
|
readonly last4: string;
|
|
8709
8777
|
}
|
|
8710
8778
|
|
|
@@ -8800,12 +8868,29 @@ declare namespace io.flow.v0.models {
|
|
|
8800
8868
|
readonly id: string;
|
|
8801
8869
|
readonly account: io.flow.v0.models.AccountReference;
|
|
8802
8870
|
readonly status: io.flow.v0.unions.PayoutStatus;
|
|
8871
|
+
readonly bank_account?: io.flow.v0.models.BankAccountSummary;
|
|
8803
8872
|
readonly amount: number;
|
|
8804
8873
|
readonly attachments: io.flow.v0.models.PayoutAttachment[];
|
|
8805
8874
|
readonly created_at: string;
|
|
8806
8875
|
readonly updated_at: string;
|
|
8807
8876
|
}
|
|
8808
8877
|
|
|
8878
|
+
interface OrganizationPayoutDeleted {
|
|
8879
|
+
readonly discriminator: 'organization_payout_deleted';
|
|
8880
|
+
readonly event_id: string;
|
|
8881
|
+
readonly timestamp: string;
|
|
8882
|
+
readonly organization: string;
|
|
8883
|
+
readonly id: string;
|
|
8884
|
+
}
|
|
8885
|
+
|
|
8886
|
+
interface OrganizationPayoutUpserted {
|
|
8887
|
+
readonly discriminator: 'organization_payout_upserted';
|
|
8888
|
+
readonly event_id: string;
|
|
8889
|
+
readonly timestamp: string;
|
|
8890
|
+
readonly organization: string;
|
|
8891
|
+
readonly payout: io.flow.v0.models.OrganizationPayout;
|
|
8892
|
+
}
|
|
8893
|
+
|
|
8809
8894
|
interface OrganizationPutForm {
|
|
8810
8895
|
readonly name?: string;
|
|
8811
8896
|
readonly environment?: io.flow.v0.enums.Environment;
|
|
@@ -9212,7 +9297,7 @@ declare namespace io.flow.v0.models {
|
|
|
9212
9297
|
|
|
9213
9298
|
interface PaymentMethodDataAuthorizeApplepayResultFailure {
|
|
9214
9299
|
readonly type: 'failure';
|
|
9215
|
-
readonly
|
|
9300
|
+
readonly message: string;
|
|
9216
9301
|
}
|
|
9217
9302
|
|
|
9218
9303
|
interface PaymentMethodDataAuthorizeApplepayResultSuccess {
|
|
@@ -9524,6 +9609,7 @@ declare namespace io.flow.v0.models {
|
|
|
9524
9609
|
readonly payment_information: io.flow.v0.models.PaymentInformation;
|
|
9525
9610
|
readonly supported_actions: io.flow.v0.enums.PaymentActionType[];
|
|
9526
9611
|
readonly payment_capture_option?: io.flow.v0.unions.PaymentCaptureOption;
|
|
9612
|
+
readonly review?: io.flow.v0.models.PaymentRequestReview;
|
|
9527
9613
|
}
|
|
9528
9614
|
|
|
9529
9615
|
interface PaymentRequestBilling {
|
|
@@ -9564,6 +9650,16 @@ declare namespace io.flow.v0.models {
|
|
|
9564
9650
|
readonly reference?: string;
|
|
9565
9651
|
}
|
|
9566
9652
|
|
|
9653
|
+
interface PaymentRequestReview {
|
|
9654
|
+
readonly status: io.flow.v0.enums.PaymentRequestReviewStatus;
|
|
9655
|
+
readonly checks: io.flow.v0.models.PaymentRequestReviewCheck[];
|
|
9656
|
+
}
|
|
9657
|
+
|
|
9658
|
+
interface PaymentRequestReviewCheck {
|
|
9659
|
+
readonly type: io.flow.v0.enums.PaymentRequestReviewCheckType;
|
|
9660
|
+
readonly status: io.flow.v0.enums.PaymentRequestReviewCheckStatus;
|
|
9661
|
+
}
|
|
9662
|
+
|
|
9567
9663
|
interface PaymentRequestUpserted {
|
|
9568
9664
|
readonly discriminator: 'payment_request_upserted';
|
|
9569
9665
|
readonly event_id: string;
|
|
@@ -9637,6 +9733,23 @@ declare namespace io.flow.v0.models {
|
|
|
9637
9733
|
readonly timestamp: string;
|
|
9638
9734
|
}
|
|
9639
9735
|
|
|
9736
|
+
interface PayoutTransaction {
|
|
9737
|
+
readonly id: string;
|
|
9738
|
+
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
9739
|
+
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
9740
|
+
readonly currency: string;
|
|
9741
|
+
readonly source: io.flow.v0.enums.TransactionSource;
|
|
9742
|
+
readonly parent?: io.flow.v0.models.ParentTransactionSummary;
|
|
9743
|
+
readonly gross: number;
|
|
9744
|
+
readonly fees: io.flow.v0.models.FeeDeduction[];
|
|
9745
|
+
readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
|
|
9746
|
+
readonly discounts: io.flow.v0.models.BillingDiscount[];
|
|
9747
|
+
readonly net: number;
|
|
9748
|
+
readonly identifiers: Record<string, string>;
|
|
9749
|
+
readonly created_at: string;
|
|
9750
|
+
readonly updated_at: string;
|
|
9751
|
+
}
|
|
9752
|
+
|
|
9640
9753
|
interface PaypalAuthorizationDetails {
|
|
9641
9754
|
readonly discriminator: 'paypal_authorization_details';
|
|
9642
9755
|
readonly payment_id: string;
|
|
@@ -9725,6 +9838,8 @@ declare namespace io.flow.v0.models {
|
|
|
9725
9838
|
readonly id: string;
|
|
9726
9839
|
readonly key?: string;
|
|
9727
9840
|
readonly center?: io.flow.v0.models.CenterSummary;
|
|
9841
|
+
readonly fulfillment_routing?: io.flow.v0.enums.FulfillmentRouting;
|
|
9842
|
+
readonly ship_from_country?: string;
|
|
9728
9843
|
readonly items: io.flow.v0.models.DeliveryItem[];
|
|
9729
9844
|
readonly options: io.flow.v0.models.DeliveryOption[];
|
|
9730
9845
|
readonly special_services?: io.flow.v0.enums.PhysicalDeliverySpecialSerivce[];
|
|
@@ -11066,7 +11181,7 @@ declare namespace io.flow.v0.models {
|
|
|
11066
11181
|
|
|
11067
11182
|
interface SetupCompleted {
|
|
11068
11183
|
readonly discriminator: 'setup_completed';
|
|
11069
|
-
readonly third_party_logistics_guid
|
|
11184
|
+
readonly third_party_logistics_guid?: string;
|
|
11070
11185
|
}
|
|
11071
11186
|
|
|
11072
11187
|
interface SetupInProgress {
|
|
@@ -11227,6 +11342,7 @@ declare namespace io.flow.v0.models {
|
|
|
11227
11342
|
|
|
11228
11343
|
interface ShippingLabelDocument {
|
|
11229
11344
|
readonly zpl?: string;
|
|
11345
|
+
readonly zpl_url?: string;
|
|
11230
11346
|
readonly pdf?: string;
|
|
11231
11347
|
readonly pdf_data?: string;
|
|
11232
11348
|
readonly png?: string;
|
|
@@ -12110,6 +12226,18 @@ declare namespace io.flow.v0.models {
|
|
|
12110
12226
|
readonly email_recipients?: string[];
|
|
12111
12227
|
}
|
|
12112
12228
|
|
|
12229
|
+
interface Test {
|
|
12230
|
+
readonly id: string;
|
|
12231
|
+
}
|
|
12232
|
+
|
|
12233
|
+
interface TestUpserted {
|
|
12234
|
+
readonly discriminator: 'test_upserted';
|
|
12235
|
+
readonly event_id: string;
|
|
12236
|
+
readonly timestamp: string;
|
|
12237
|
+
readonly organization: string;
|
|
12238
|
+
readonly test: io.flow.v0.models.Test;
|
|
12239
|
+
}
|
|
12240
|
+
|
|
12113
12241
|
interface ThirdPartyLogisticsPartner {
|
|
12114
12242
|
readonly warehouse_address: io.flow.v0.models.MerchantOnboardingAddress;
|
|
12115
12243
|
readonly warehouse_url?: string;
|
|
@@ -12433,9 +12561,9 @@ declare namespace io.flow.v0.models {
|
|
|
12433
12561
|
}
|
|
12434
12562
|
|
|
12435
12563
|
interface Transaction {
|
|
12564
|
+
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
12436
12565
|
readonly id: string;
|
|
12437
12566
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
12438
|
-
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
12439
12567
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
12440
12568
|
readonly currency: string;
|
|
12441
12569
|
readonly source: io.flow.v0.enums.TransactionSource;
|
|
@@ -12758,6 +12886,8 @@ declare namespace io.flow.v0.unions {
|
|
|
12758
12886
|
| io.flow.v0.models.StripeAuthorizationResultActionDetails
|
|
12759
12887
|
| io.flow.v0.models.ThreedsIdentifyActionDetails
|
|
12760
12888
|
| io.flow.v0.models.ThreedsChallengeActionDetails
|
|
12889
|
+
| io.flow.v0.models.ApplepaySdkCreateResultActionDetails
|
|
12890
|
+
| io.flow.v0.models.ApplepaySdkValidateResultActionDetails
|
|
12761
12891
|
| io.flow.v0.models.KlarnaSdkAuthorizationResultActionDetails
|
|
12762
12892
|
| io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
12763
12893
|
type AvailableFilter =
|
|
@@ -12805,6 +12935,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12805
12935
|
| io.flow.v0.models.EmailNotificationDataRefund
|
|
12806
12936
|
| io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
12807
12937
|
type Event =
|
|
12938
|
+
| io.flow.v0.models.TestUpserted
|
|
12808
12939
|
| io.flow.v0.models.TransactionUpserted
|
|
12809
12940
|
| io.flow.v0.models.OrganizationTransactionUpserted
|
|
12810
12941
|
| io.flow.v0.models.OrganizationTransactionDeleted
|
|
@@ -12815,6 +12946,10 @@ declare namespace io.flow.v0.unions {
|
|
|
12815
12946
|
| io.flow.v0.models.ChannelTransactionDeletedV2
|
|
12816
12947
|
| io.flow.v0.models.ChannelStatementUpserted
|
|
12817
12948
|
| io.flow.v0.models.ChannelStatementDeleted
|
|
12949
|
+
| io.flow.v0.models.ChannelPayoutUpserted
|
|
12950
|
+
| io.flow.v0.models.ChannelPayoutDeleted
|
|
12951
|
+
| io.flow.v0.models.OrganizationPayoutUpserted
|
|
12952
|
+
| io.flow.v0.models.OrganizationPayoutDeleted
|
|
12818
12953
|
| io.flow.v0.models.AttributeUpserted
|
|
12819
12954
|
| io.flow.v0.models.AttributeDeleted
|
|
12820
12955
|
| io.flow.v0.models.AttributeUpsertedV2
|
|
@@ -13369,6 +13504,10 @@ export type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
|
13369
13504
|
export type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
13370
13505
|
export type ApplePayMerchantValidationPayload =
|
|
13371
13506
|
io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
13507
|
+
export type ApplepaySdkCreateResultActionDetails =
|
|
13508
|
+
io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
13509
|
+
export type ApplepaySdkValidateResultActionDetails =
|
|
13510
|
+
io.flow.v0.models.ApplepaySdkValidateResultActionDetails;
|
|
13372
13511
|
export type AtCost = io.flow.v0.models.AtCost;
|
|
13373
13512
|
export type Attachment = io.flow.v0.models.Attachment;
|
|
13374
13513
|
export type Attribute = io.flow.v0.models.Attribute;
|
|
@@ -13455,6 +13594,7 @@ export type BankAccountForm = io.flow.v0.models.BankAccountForm;
|
|
|
13455
13594
|
export type BankAccountInfo = io.flow.v0.unions.BankAccountInfo;
|
|
13456
13595
|
export type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
13457
13596
|
export type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
13597
|
+
export type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
13458
13598
|
export type BehaviorAudit = io.flow.v0.models.BehaviorAudit;
|
|
13459
13599
|
export type BillingAddress = io.flow.v0.models.BillingAddress;
|
|
13460
13600
|
export type BillingChannelOrderSummary =
|
|
@@ -13562,11 +13702,14 @@ export type Channel = io.flow.v0.models.Channel;
|
|
|
13562
13702
|
export type ChannelAuthorization = io.flow.v0.models.ChannelAuthorization;
|
|
13563
13703
|
export type ChannelAuthorizationForm =
|
|
13564
13704
|
io.flow.v0.models.ChannelAuthorizationForm;
|
|
13705
|
+
export type ChannelBankAccount = io.flow.v0.models.ChannelBankAccount;
|
|
13565
13706
|
export type ChannelCurrency = io.flow.v0.models.ChannelCurrency;
|
|
13566
13707
|
export type ChannelCurrencyCapability =
|
|
13567
13708
|
io.flow.v0.enums.ChannelCurrencyCapability;
|
|
13568
13709
|
export type ChannelCurrencyDeleted = io.flow.v0.models.ChannelCurrencyDeleted;
|
|
13569
13710
|
export type ChannelCurrencyUpserted = io.flow.v0.models.ChannelCurrencyUpserted;
|
|
13711
|
+
export type ChannelDefaultBankAccount =
|
|
13712
|
+
io.flow.v0.models.ChannelDefaultBankAccount;
|
|
13570
13713
|
export type ChannelDeleted = io.flow.v0.models.ChannelDeleted;
|
|
13571
13714
|
export type ChannelOrganization = io.flow.v0.models.ChannelOrganization;
|
|
13572
13715
|
export type ChannelOrganizationAuthorization =
|
|
@@ -13581,6 +13724,8 @@ export type ChannelOrganizationPutForm =
|
|
|
13581
13724
|
export type ChannelOrganizationUpserted =
|
|
13582
13725
|
io.flow.v0.models.ChannelOrganizationUpserted;
|
|
13583
13726
|
export type ChannelPayout = io.flow.v0.models.ChannelPayout;
|
|
13727
|
+
export type ChannelPayoutDeleted = io.flow.v0.models.ChannelPayoutDeleted;
|
|
13728
|
+
export type ChannelPayoutUpserted = io.flow.v0.models.ChannelPayoutUpserted;
|
|
13584
13729
|
export type ChannelRate = io.flow.v0.models.ChannelRate;
|
|
13585
13730
|
export type ChannelReference = io.flow.v0.models.ChannelReference;
|
|
13586
13731
|
export type ChannelStatement = io.flow.v0.models.ChannelStatement;
|
|
@@ -14031,6 +14176,7 @@ export type FulfillmentLineCancelForm =
|
|
|
14031
14176
|
io.flow.v0.models.FulfillmentLineCancelForm;
|
|
14032
14177
|
export type FulfillmentMethodType = io.flow.v0.enums.FulfillmentMethodType;
|
|
14033
14178
|
export type FulfillmentMethodValue = io.flow.v0.enums.FulfillmentMethodValue;
|
|
14179
|
+
export type FulfillmentRouting = io.flow.v0.enums.FulfillmentRouting;
|
|
14034
14180
|
export type FullyHarmonizedItemUpserted =
|
|
14035
14181
|
io.flow.v0.models.FullyHarmonizedItemUpserted;
|
|
14036
14182
|
export type GatewayAuthenticationData =
|
|
@@ -14536,6 +14682,10 @@ export type OrganizationOnboardingStateUpserted =
|
|
|
14536
14682
|
export type OrganizationPaymentMethodTag =
|
|
14537
14683
|
io.flow.v0.enums.OrganizationPaymentMethodTag;
|
|
14538
14684
|
export type OrganizationPayout = io.flow.v0.models.OrganizationPayout;
|
|
14685
|
+
export type OrganizationPayoutDeleted =
|
|
14686
|
+
io.flow.v0.models.OrganizationPayoutDeleted;
|
|
14687
|
+
export type OrganizationPayoutUpserted =
|
|
14688
|
+
io.flow.v0.models.OrganizationPayoutUpserted;
|
|
14539
14689
|
export type OrganizationPutForm = io.flow.v0.models.OrganizationPutForm;
|
|
14540
14690
|
export type OrganizationRatesData = io.flow.v0.models.OrganizationRatesData;
|
|
14541
14691
|
export type OrganizationRatesPublished =
|
|
@@ -14735,6 +14885,15 @@ export type PaymentRequestBundleForm =
|
|
|
14735
14885
|
io.flow.v0.models.PaymentRequestBundleForm;
|
|
14736
14886
|
export type PaymentRequestForm = io.flow.v0.models.PaymentRequestForm;
|
|
14737
14887
|
export type PaymentRequestReference = io.flow.v0.models.PaymentRequestReference;
|
|
14888
|
+
export type PaymentRequestReview = io.flow.v0.models.PaymentRequestReview;
|
|
14889
|
+
export type PaymentRequestReviewCheck =
|
|
14890
|
+
io.flow.v0.models.PaymentRequestReviewCheck;
|
|
14891
|
+
export type PaymentRequestReviewCheckStatus =
|
|
14892
|
+
io.flow.v0.enums.PaymentRequestReviewCheckStatus;
|
|
14893
|
+
export type PaymentRequestReviewCheckType =
|
|
14894
|
+
io.flow.v0.enums.PaymentRequestReviewCheckType;
|
|
14895
|
+
export type PaymentRequestReviewStatus =
|
|
14896
|
+
io.flow.v0.enums.PaymentRequestReviewStatus;
|
|
14738
14897
|
export type PaymentRequestUpserted = io.flow.v0.models.PaymentRequestUpserted;
|
|
14739
14898
|
export type PaymentReversal = io.flow.v0.models.PaymentReversal;
|
|
14740
14899
|
export type PaymentReversalForm = io.flow.v0.models.PaymentReversalForm;
|
|
@@ -14757,6 +14916,7 @@ export type PayoutStatusFailed = io.flow.v0.models.PayoutStatusFailed;
|
|
|
14757
14916
|
export type PayoutStatusFailureCode = io.flow.v0.enums.PayoutStatusFailureCode;
|
|
14758
14917
|
export type PayoutStatusScheduled = io.flow.v0.models.PayoutStatusScheduled;
|
|
14759
14918
|
export type PayoutStatusSent = io.flow.v0.models.PayoutStatusSent;
|
|
14919
|
+
export type PayoutTransaction = io.flow.v0.models.PayoutTransaction;
|
|
14760
14920
|
export type PaypalAuthorizationDetails =
|
|
14761
14921
|
io.flow.v0.models.PaypalAuthorizationDetails;
|
|
14762
14922
|
export type PaypalAuthorizationForm = io.flow.v0.models.PaypalAuthorizationForm;
|
|
@@ -15251,6 +15411,8 @@ export type TaxSetting = io.flow.v0.unions.TaxSetting;
|
|
|
15251
15411
|
export type TaxVerificationResult = io.flow.v0.enums.TaxVerificationResult;
|
|
15252
15412
|
export type TaxabilityType = io.flow.v0.enums.TaxabilityType;
|
|
15253
15413
|
export type TaxabilityValue = io.flow.v0.enums.TaxabilityValue;
|
|
15414
|
+
export type Test = io.flow.v0.models.Test;
|
|
15415
|
+
export type TestUpserted = io.flow.v0.models.TestUpserted;
|
|
15254
15416
|
export type ThirdPartyLogisticsPartner =
|
|
15255
15417
|
io.flow.v0.models.ThirdPartyLogisticsPartner;
|
|
15256
15418
|
export type ThreeDSecure = io.flow.v0.models.ThreeDSecure;
|