@flowio/types 11.24.54 → 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/dist/api-internal.d.ts +93 -54
- package/dist/api.d.ts +76 -7
- package/package.json +2 -2
- package/src/api-internal.ts +124 -64
- package/src/api.ts +100 -4
package/src/api-internal.ts
CHANGED
|
@@ -1966,6 +1966,12 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1966
1966
|
readonly display_name?: string;
|
|
1967
1967
|
}
|
|
1968
1968
|
|
|
1969
|
+
interface ApplepaySdkAuthorizationResultActionDetails {
|
|
1970
|
+
readonly discriminator: 'applepay_sdk_authorization_result_action_details';
|
|
1971
|
+
readonly merchant_identifier: string;
|
|
1972
|
+
readonly payment_data_request: any /*object*/;
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1969
1975
|
interface AuthorizationCode {
|
|
1970
1976
|
readonly result_code: string;
|
|
1971
1977
|
readonly code: string;
|
|
@@ -2826,6 +2832,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2826
2832
|
| io.flow.payment.v0.models.StripeAuthorizationResultActionDetails
|
|
2827
2833
|
| io.flow.payment.v0.models.ThreedsIdentifyActionDetails
|
|
2828
2834
|
| io.flow.payment.v0.models.ThreedsChallengeActionDetails
|
|
2835
|
+
| io.flow.payment.v0.models.ApplepaySdkAuthorizationResultActionDetails
|
|
2829
2836
|
| io.flow.payment.v0.models.KlarnaSdkAuthorizationResultActionDetails
|
|
2830
2837
|
| io.flow.payment.v0.models.SelectIssuerOptionActionDetails;
|
|
2831
2838
|
type BrowserActionConfiguration =
|
|
@@ -7208,7 +7215,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7208
7215
|
|
|
7209
7216
|
interface ShopifyOrderAttribute {
|
|
7210
7217
|
readonly name: string;
|
|
7211
|
-
readonly value:
|
|
7218
|
+
readonly value: any /*json*/;
|
|
7212
7219
|
}
|
|
7213
7220
|
|
|
7214
7221
|
interface ShopifyOrderCancellationForm {
|
|
@@ -7843,6 +7850,18 @@ declare namespace io.flow.payment.gateway.v0.enums {
|
|
|
7843
7850
|
| 'error'
|
|
7844
7851
|
| 'payment_checks_declined';
|
|
7845
7852
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
7853
|
+
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
7854
|
+
type PaymentRequestReviewCheckType =
|
|
7855
|
+
| 'restricted_party_screening'
|
|
7856
|
+
| 'fraud_suspicious_behavior'
|
|
7857
|
+
| 'fraud_suspicious_past_activity'
|
|
7858
|
+
| 'fraud_risky_velocity'
|
|
7859
|
+
| 'fraud_previous_chargebacks'
|
|
7860
|
+
| 'order_restricted_goods'
|
|
7861
|
+
| 'order_unsupported_destination'
|
|
7862
|
+
| 'order_missing_information'
|
|
7863
|
+
| 'order_domestic';
|
|
7864
|
+
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
7846
7865
|
type PaymentStatus =
|
|
7847
7866
|
| 'requires_payment_method'
|
|
7848
7867
|
| 'requires_action'
|
|
@@ -8398,6 +8417,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
8398
8417
|
readonly payment_information: io.flow.payment.gateway.v0.models.PaymentInformation;
|
|
8399
8418
|
readonly supported_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
|
|
8400
8419
|
readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
8420
|
+
readonly review?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
|
|
8401
8421
|
}
|
|
8402
8422
|
|
|
8403
8423
|
interface PaymentRequestForm {
|
|
@@ -8419,6 +8439,16 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
8419
8439
|
readonly reference?: string;
|
|
8420
8440
|
}
|
|
8421
8441
|
|
|
8442
|
+
interface PaymentRequestReview {
|
|
8443
|
+
readonly status: io.flow.payment.gateway.v0.enums.PaymentRequestReviewStatus;
|
|
8444
|
+
readonly checks: io.flow.payment.gateway.v0.models.PaymentRequestReviewCheck[];
|
|
8445
|
+
}
|
|
8446
|
+
|
|
8447
|
+
interface PaymentRequestReviewCheck {
|
|
8448
|
+
readonly type: io.flow.payment.gateway.v0.enums.PaymentRequestReviewCheckType;
|
|
8449
|
+
readonly status: io.flow.payment.gateway.v0.enums.PaymentRequestReviewCheckStatus;
|
|
8450
|
+
}
|
|
8451
|
+
|
|
8422
8452
|
interface PaymentReversal {
|
|
8423
8453
|
readonly id: string;
|
|
8424
8454
|
readonly amount: number;
|
|
@@ -11577,7 +11607,6 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11577
11607
|
}
|
|
11578
11608
|
|
|
11579
11609
|
interface BankAccountForm {
|
|
11580
|
-
readonly last4: string;
|
|
11581
11610
|
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
11582
11611
|
}
|
|
11583
11612
|
|
|
@@ -11585,6 +11614,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11585
11614
|
readonly id: string;
|
|
11586
11615
|
}
|
|
11587
11616
|
|
|
11617
|
+
interface BankAccountSummary {
|
|
11618
|
+
readonly last4: string;
|
|
11619
|
+
}
|
|
11620
|
+
|
|
11588
11621
|
interface BillingChannelOrderSummary {
|
|
11589
11622
|
readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
|
|
11590
11623
|
readonly number: string;
|
|
@@ -11609,10 +11642,22 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11609
11642
|
readonly description?: string;
|
|
11610
11643
|
}
|
|
11611
11644
|
|
|
11645
|
+
interface ChannelBankAccount {
|
|
11646
|
+
readonly id: string;
|
|
11647
|
+
readonly key: string;
|
|
11648
|
+
readonly last4: string;
|
|
11649
|
+
}
|
|
11650
|
+
|
|
11651
|
+
interface ChannelDefaultBankAccount {
|
|
11652
|
+
readonly id: string;
|
|
11653
|
+
readonly bank_account: io.flow.billing.v0.models.BankAccountReference;
|
|
11654
|
+
}
|
|
11655
|
+
|
|
11612
11656
|
interface ChannelPayout {
|
|
11613
11657
|
readonly id: string;
|
|
11614
11658
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11615
11659
|
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
11660
|
+
readonly bank_account?: io.flow.billing.v0.models.BankAccountSummary;
|
|
11616
11661
|
readonly amount: number;
|
|
11617
11662
|
readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
|
|
11618
11663
|
readonly created_at: string;
|
|
@@ -11658,6 +11703,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11658
11703
|
|
|
11659
11704
|
interface OrganizationBankAccount {
|
|
11660
11705
|
readonly id: string;
|
|
11706
|
+
readonly key: string;
|
|
11661
11707
|
readonly last4: string;
|
|
11662
11708
|
}
|
|
11663
11709
|
|
|
@@ -11670,6 +11716,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11670
11716
|
readonly id: string;
|
|
11671
11717
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11672
11718
|
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
11719
|
+
readonly bank_account?: io.flow.billing.v0.models.BankAccountSummary;
|
|
11673
11720
|
readonly amount: number;
|
|
11674
11721
|
readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
|
|
11675
11722
|
readonly created_at: string;
|
|
@@ -13107,7 +13154,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13107
13154
|
|
|
13108
13155
|
interface SetupCompleted {
|
|
13109
13156
|
readonly discriminator: 'setup_completed';
|
|
13110
|
-
readonly third_party_logistics_guid
|
|
13157
|
+
readonly third_party_logistics_guid?: string;
|
|
13111
13158
|
}
|
|
13112
13159
|
|
|
13113
13160
|
interface SetupInProgress {
|
|
@@ -13484,7 +13531,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13484
13531
|
| 'duty_rates_data_event'
|
|
13485
13532
|
| 'integration_test'
|
|
13486
13533
|
| 'unit_test';
|
|
13487
|
-
type BankPaymentStatusCode = 'sent' | 'failed';
|
|
13534
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13488
13535
|
type BillingAllocationKey =
|
|
13489
13536
|
| 'freight_cost'
|
|
13490
13537
|
| 'adjustment'
|
|
@@ -13528,7 +13575,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13528
13575
|
| 'tax'
|
|
13529
13576
|
| 'all';
|
|
13530
13577
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
13531
|
-
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
13532
13578
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
13533
13579
|
type BillingTransactionType =
|
|
13534
13580
|
| 'manual'
|
|
@@ -13590,7 +13636,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13590
13636
|
| 'extracting_distribution_info_failed'
|
|
13591
13637
|
| 'shipping_estimation_failed'
|
|
13592
13638
|
| 'payment_authorization_failed'
|
|
13593
|
-
| 'unsupported_subsidized_order'
|
|
13639
|
+
| 'unsupported_subsidized_order'
|
|
13640
|
+
| 'unsupported_virtual_goods';
|
|
13594
13641
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
13595
13642
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
13596
13643
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -13934,8 +13981,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13934
13981
|
| 'adyen_capture_upserted'
|
|
13935
13982
|
| 'adyen_refund_deleted'
|
|
13936
13983
|
| 'adyen_refund_upserted'
|
|
13937
|
-
| 'test_upserted'
|
|
13938
|
-
| 'test_deleted'
|
|
13939
13984
|
| 'account_upserted'
|
|
13940
13985
|
| 'account_upserted_v2'
|
|
13941
13986
|
| 'account_deleted_v2'
|
|
@@ -13990,6 +14035,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13990
14035
|
| 'return_policy_deleted'
|
|
13991
14036
|
| 'return_policy_item_result_upserted'
|
|
13992
14037
|
| 'return_policy_item_result_deleted'
|
|
14038
|
+
| 'catalog_settings_upserted'
|
|
14039
|
+
| 'catalog_settings_deleted'
|
|
13993
14040
|
| 'channel_order_acceptance_upserted'
|
|
13994
14041
|
| 'channel_order_acceptance_deleted'
|
|
13995
14042
|
| 'checkout_configuration_upserted'
|
|
@@ -14773,6 +14820,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14773
14820
|
readonly pending: io.flow.common.v0.models.Price;
|
|
14774
14821
|
}
|
|
14775
14822
|
|
|
14823
|
+
interface AccountSummary {
|
|
14824
|
+
readonly id: string;
|
|
14825
|
+
readonly currency: string;
|
|
14826
|
+
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
14827
|
+
}
|
|
14828
|
+
|
|
14776
14829
|
interface AccountTransactionsExportRequest {
|
|
14777
14830
|
readonly discriminator: 'account_transactions_export_request';
|
|
14778
14831
|
readonly event_id: string;
|
|
@@ -15359,9 +15412,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15359
15412
|
readonly key: string;
|
|
15360
15413
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
15361
15414
|
readonly reference?: string;
|
|
15362
|
-
readonly sent_on
|
|
15415
|
+
readonly sent_on?: string;
|
|
15363
15416
|
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
15364
|
-
readonly expected_delivery_by
|
|
15417
|
+
readonly expected_delivery_by?: string;
|
|
15365
15418
|
readonly total: io.flow.common.v0.models.Price;
|
|
15366
15419
|
}
|
|
15367
15420
|
|
|
@@ -15383,8 +15436,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15383
15436
|
interface BankPaymentForm {
|
|
15384
15437
|
readonly account_id: string;
|
|
15385
15438
|
readonly reference?: string;
|
|
15386
|
-
readonly sent_on
|
|
15387
|
-
readonly expected_delivery_by
|
|
15439
|
+
readonly sent_on?: string;
|
|
15440
|
+
readonly expected_delivery_by?: string;
|
|
15388
15441
|
readonly amount: number;
|
|
15389
15442
|
readonly currency: string;
|
|
15390
15443
|
readonly transfer_transaction_ids: string[];
|
|
@@ -15568,27 +15621,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15568
15621
|
readonly id: string;
|
|
15569
15622
|
}
|
|
15570
15623
|
|
|
15571
|
-
interface BillingStatementPendingReview {
|
|
15572
|
-
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
15573
|
-
readonly statement: io.flow.internal.v0.models.BillingStatementSummary;
|
|
15574
|
-
}
|
|
15575
|
-
|
|
15576
15624
|
interface BillingStatementReference {
|
|
15577
15625
|
readonly id: string;
|
|
15578
15626
|
}
|
|
15579
15627
|
|
|
15580
|
-
interface BillingStatementReview {
|
|
15581
|
-
readonly id: string;
|
|
15582
|
-
readonly billing_statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
15583
|
-
readonly reviewed_by: io.flow.common.v0.models.UserReference;
|
|
15584
|
-
readonly reviewed_at: string;
|
|
15585
|
-
}
|
|
15586
|
-
|
|
15587
|
-
interface BillingStatementReviewForm {
|
|
15588
|
-
readonly reviewed_by_id: string;
|
|
15589
|
-
readonly reviewed_at: string;
|
|
15590
|
-
}
|
|
15591
|
-
|
|
15592
15628
|
interface BillingStatementSummary {
|
|
15593
15629
|
readonly id: string;
|
|
15594
15630
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -16045,13 +16081,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16045
16081
|
}
|
|
16046
16082
|
|
|
16047
16083
|
interface CatalogSettings {
|
|
16084
|
+
readonly id: string;
|
|
16048
16085
|
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
16049
16086
|
}
|
|
16050
16087
|
|
|
16088
|
+
interface CatalogSettingsDeleted {
|
|
16089
|
+
readonly discriminator: 'catalog_settings_deleted';
|
|
16090
|
+
readonly event_id: string;
|
|
16091
|
+
readonly timestamp: string;
|
|
16092
|
+
readonly organization: string;
|
|
16093
|
+
readonly id: string;
|
|
16094
|
+
}
|
|
16095
|
+
|
|
16051
16096
|
interface CatalogSettingsPutForm {
|
|
16052
16097
|
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
16053
16098
|
}
|
|
16054
16099
|
|
|
16100
|
+
interface CatalogSettingsUpserted {
|
|
16101
|
+
readonly discriminator: 'catalog_settings_upserted';
|
|
16102
|
+
readonly event_id: string;
|
|
16103
|
+
readonly timestamp: string;
|
|
16104
|
+
readonly organization: string;
|
|
16105
|
+
readonly catalog_settings: io.flow.internal.v0.models.CatalogSettings;
|
|
16106
|
+
}
|
|
16107
|
+
|
|
16055
16108
|
interface CenterDefaults {
|
|
16056
16109
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
16057
16110
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
@@ -20020,6 +20073,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20020
20073
|
readonly statements: number;
|
|
20021
20074
|
}
|
|
20022
20075
|
|
|
20076
|
+
interface FinanceBankAccount {
|
|
20077
|
+
readonly id: string;
|
|
20078
|
+
readonly account: io.flow.internal.v0.models.AccountSummary;
|
|
20079
|
+
readonly last4: string;
|
|
20080
|
+
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
20081
|
+
readonly owner: io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
20082
|
+
}
|
|
20083
|
+
|
|
20084
|
+
interface FinanceBankAccountOwner {
|
|
20085
|
+
readonly name: string;
|
|
20086
|
+
}
|
|
20087
|
+
|
|
20023
20088
|
interface FinancialMerchantCategory {
|
|
20024
20089
|
readonly id: string;
|
|
20025
20090
|
readonly iso_18245_4: string;
|
|
@@ -20473,7 +20538,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20473
20538
|
readonly transaction_created_at: string;
|
|
20474
20539
|
}
|
|
20475
20540
|
|
|
20476
|
-
interface
|
|
20541
|
+
interface GenerateLoadMultipleOrgs {
|
|
20542
|
+
readonly discriminator: 'generate_load_multiple_orgs';
|
|
20543
|
+
readonly organization_ids: string[];
|
|
20544
|
+
readonly num_events: number;
|
|
20545
|
+
}
|
|
20546
|
+
|
|
20547
|
+
interface GenerateLoadSingleOrg {
|
|
20548
|
+
readonly discriminator: 'generate_load_single_org';
|
|
20477
20549
|
readonly organization_id: string;
|
|
20478
20550
|
readonly num_events: number;
|
|
20479
20551
|
}
|
|
@@ -22295,7 +22367,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22295
22367
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22296
22368
|
readonly created_at: string;
|
|
22297
22369
|
readonly original_at?: string;
|
|
22298
|
-
readonly disposition?: io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
22299
22370
|
}
|
|
22300
22371
|
|
|
22301
22372
|
interface MainTransactionDeleted {
|
|
@@ -22730,6 +22801,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22730
22801
|
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
22731
22802
|
readonly setup_completed_at?: string;
|
|
22732
22803
|
readonly gmv: number;
|
|
22804
|
+
readonly health_score: number;
|
|
22733
22805
|
}
|
|
22734
22806
|
|
|
22735
22807
|
interface OneTimeTokenRedemptionForm {
|
|
@@ -23652,9 +23724,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23652
23724
|
}
|
|
23653
23725
|
|
|
23654
23726
|
interface PendingBankPayment {
|
|
23655
|
-
readonly
|
|
23656
|
-
readonly account: io.flow.
|
|
23657
|
-
readonly recommended_reference: string;
|
|
23727
|
+
readonly id: string;
|
|
23728
|
+
readonly account: io.flow.internal.v0.models.AccountSummary;
|
|
23658
23729
|
readonly total: io.flow.common.v0.models.Price;
|
|
23659
23730
|
readonly details: io.flow.internal.v0.models.PendingBankPaymentDetail[];
|
|
23660
23731
|
}
|
|
@@ -23812,7 +23883,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23812
23883
|
readonly flow_rate: number;
|
|
23813
23884
|
readonly flow_margin: number;
|
|
23814
23885
|
readonly revenue_share?: io.flow.common.v0.models.Price;
|
|
23815
|
-
readonly disposition?: io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
23816
23886
|
readonly id: string;
|
|
23817
23887
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
23818
23888
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -24503,6 +24573,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24503
24573
|
readonly full_review_start_date?: string;
|
|
24504
24574
|
readonly full_review_end_date?: string;
|
|
24505
24575
|
readonly reason?: string;
|
|
24576
|
+
readonly updated_at: string;
|
|
24506
24577
|
}
|
|
24507
24578
|
|
|
24508
24579
|
interface RestrictionOrganizationStatusDeleted {
|
|
@@ -25846,26 +25917,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25846
25917
|
readonly name: string;
|
|
25847
25918
|
}
|
|
25848
25919
|
|
|
25849
|
-
interface TestDeleted {
|
|
25850
|
-
readonly discriminator: 'test_deleted';
|
|
25851
|
-
readonly event_id: string;
|
|
25852
|
-
readonly timestamp: string;
|
|
25853
|
-
readonly organization: string;
|
|
25854
|
-
readonly id: string;
|
|
25855
|
-
}
|
|
25856
|
-
|
|
25857
25920
|
interface TestForm {
|
|
25858
25921
|
readonly name: string;
|
|
25859
25922
|
}
|
|
25860
25923
|
|
|
25861
|
-
interface TestUpserted {
|
|
25862
|
-
readonly discriminator: 'test_upserted';
|
|
25863
|
-
readonly event_id: string;
|
|
25864
|
-
readonly timestamp: string;
|
|
25865
|
-
readonly organization: string;
|
|
25866
|
-
readonly test: io.flow.internal.v0.models.Test;
|
|
25867
|
-
}
|
|
25868
|
-
|
|
25869
25924
|
interface ThirdPartyLogisticsPartner {
|
|
25870
25925
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
25871
25926
|
readonly warehouse_url?: string;
|
|
@@ -26795,8 +26850,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26795
26850
|
| io.flow.internal.v0.models.AdyenCaptureUpserted
|
|
26796
26851
|
| io.flow.internal.v0.models.AdyenRefundDeleted
|
|
26797
26852
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
26798
|
-
| io.flow.internal.v0.models.TestUpserted
|
|
26799
|
-
| io.flow.internal.v0.models.TestDeleted
|
|
26800
26853
|
| io.flow.internal.v0.models.AccountUpserted
|
|
26801
26854
|
| io.flow.internal.v0.models.AccountUpsertedV2
|
|
26802
26855
|
| io.flow.internal.v0.models.AccountDeletedV2
|
|
@@ -26851,6 +26904,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26851
26904
|
| io.flow.internal.v0.models.ReturnPolicyDeleted
|
|
26852
26905
|
| io.flow.internal.v0.models.ReturnPolicyItemResultUpserted
|
|
26853
26906
|
| io.flow.internal.v0.models.ReturnPolicyItemResultDeleted
|
|
26907
|
+
| io.flow.internal.v0.models.CatalogSettingsUpserted
|
|
26908
|
+
| io.flow.internal.v0.models.CatalogSettingsDeleted
|
|
26854
26909
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted
|
|
26855
26910
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted
|
|
26856
26911
|
| io.flow.internal.v0.models.CheckoutConfigurationUpserted
|
|
@@ -27095,6 +27150,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27095
27150
|
type FuelSurchargeServiceFeePutForm =
|
|
27096
27151
|
| io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm
|
|
27097
27152
|
| io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
27153
|
+
type GenerateLoad =
|
|
27154
|
+
| io.flow.internal.v0.models.GenerateLoadSingleOrg
|
|
27155
|
+
| io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
27098
27156
|
type GlobalSearchResult =
|
|
27099
27157
|
| io.flow.internal.v0.models.SearchExperienceSummary
|
|
27100
27158
|
| io.flow.internal.v0.models.SearchExperimentSummary
|
|
@@ -27363,6 +27421,7 @@ export type AccountSettingsUpserted =
|
|
|
27363
27421
|
io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
27364
27422
|
export type AccountSource = io.flow.internal.v0.models.AccountSource;
|
|
27365
27423
|
export type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
|
|
27424
|
+
export type AccountSummary = io.flow.internal.v0.models.AccountSummary;
|
|
27366
27425
|
export type AccountTransactionsExportRequest =
|
|
27367
27426
|
io.flow.internal.v0.models.AccountTransactionsExportRequest;
|
|
27368
27427
|
export type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
@@ -27581,16 +27640,8 @@ export type BillingStatementBatchUpserted =
|
|
|
27581
27640
|
io.flow.internal.v0.models.BillingStatementBatchUpserted;
|
|
27582
27641
|
export type BillingStatementDeleted =
|
|
27583
27642
|
io.flow.internal.v0.models.BillingStatementDeleted;
|
|
27584
|
-
export type BillingStatementPendingReview =
|
|
27585
|
-
io.flow.internal.v0.models.BillingStatementPendingReview;
|
|
27586
27643
|
export type BillingStatementReference =
|
|
27587
27644
|
io.flow.internal.v0.models.BillingStatementReference;
|
|
27588
|
-
export type BillingStatementReview =
|
|
27589
|
-
io.flow.internal.v0.models.BillingStatementReview;
|
|
27590
|
-
export type BillingStatementReviewForm =
|
|
27591
|
-
io.flow.internal.v0.models.BillingStatementReviewForm;
|
|
27592
|
-
export type BillingStatementReviewStatus =
|
|
27593
|
-
io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
27594
27645
|
export type BillingStatementSummary =
|
|
27595
27646
|
io.flow.internal.v0.models.BillingStatementSummary;
|
|
27596
27647
|
export type BillingStatementTotals =
|
|
@@ -27732,8 +27783,12 @@ export type CatalogItemRegionAvailabilitiesData =
|
|
|
27732
27783
|
export type CatalogItemRegionAvailabilitiesPublished =
|
|
27733
27784
|
io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
|
|
27734
27785
|
export type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
|
|
27786
|
+
export type CatalogSettingsDeleted =
|
|
27787
|
+
io.flow.internal.v0.models.CatalogSettingsDeleted;
|
|
27735
27788
|
export type CatalogSettingsPutForm =
|
|
27736
27789
|
io.flow.internal.v0.models.CatalogSettingsPutForm;
|
|
27790
|
+
export type CatalogSettingsUpserted =
|
|
27791
|
+
io.flow.internal.v0.models.CatalogSettingsUpserted;
|
|
27737
27792
|
export type CenterDefaults = io.flow.internal.v0.models.CenterDefaults;
|
|
27738
27793
|
export type CenterDefaultsForm = io.flow.internal.v0.models.CenterDefaultsForm;
|
|
27739
27794
|
export type CenterQueryBuilder = io.flow.internal.v0.models.CenterQueryBuilder;
|
|
@@ -29263,6 +29318,9 @@ export type FileConfirmationForm =
|
|
|
29263
29318
|
io.flow.internal.v0.models.FileConfirmationForm;
|
|
29264
29319
|
export type FileMetadata = io.flow.internal.v0.models.FileMetadata;
|
|
29265
29320
|
export type FileMetadataCounts = io.flow.internal.v0.models.FileMetadataCounts;
|
|
29321
|
+
export type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
|
|
29322
|
+
export type FinanceBankAccountOwner =
|
|
29323
|
+
io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
29266
29324
|
export type FinancialMerchantCategory =
|
|
29267
29325
|
io.flow.internal.v0.models.FinancialMerchantCategory;
|
|
29268
29326
|
export type FinancialReportingResponsibleParty =
|
|
@@ -29375,7 +29433,11 @@ export type FxRevenueRecognitionRate =
|
|
|
29375
29433
|
io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
29376
29434
|
export type FxRevenueRecognitionSource =
|
|
29377
29435
|
io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
29378
|
-
export type GenerateLoad = io.flow.internal.v0.
|
|
29436
|
+
export type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
29437
|
+
export type GenerateLoadMultipleOrgs =
|
|
29438
|
+
io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
29439
|
+
export type GenerateLoadSingleOrg =
|
|
29440
|
+
io.flow.internal.v0.models.GenerateLoadSingleOrg;
|
|
29379
29441
|
export type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
29380
29442
|
export type GiftCardAuthorizationError =
|
|
29381
29443
|
io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
@@ -30772,9 +30834,7 @@ export type TaxTransactionUpserted =
|
|
|
30772
30834
|
export type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
|
|
30773
30835
|
export type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
30774
30836
|
export type Test = io.flow.internal.v0.models.Test;
|
|
30775
|
-
export type TestDeleted = io.flow.internal.v0.models.TestDeleted;
|
|
30776
30837
|
export type TestForm = io.flow.internal.v0.models.TestForm;
|
|
30777
|
-
export type TestUpserted = io.flow.internal.v0.models.TestUpserted;
|
|
30778
30838
|
export type ThirdPartyLogisticsPartner =
|
|
30779
30839
|
io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
30780
30840
|
export type ThirdPartyLogisticsPickUpTimeWindow =
|