@flowio/types 11.24.53 → 11.24.54
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 +251 -66
- package/dist/api.d.ts +74 -28
- package/package.json +2 -2
- package/src/api-internal.ts +329 -75
- package/src/api.ts +88 -35
package/src/api-internal.ts
CHANGED
|
@@ -6425,7 +6425,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6425
6425
|
readonly id: number;
|
|
6426
6426
|
readonly quantity: number;
|
|
6427
6427
|
readonly fulfillable_quantity?: number;
|
|
6428
|
-
readonly fulfillment_service: string;
|
|
6429
6428
|
readonly fulfillment_status?: io.flow.shopify.external.v0.enums.FulfillmentStatusType;
|
|
6430
6429
|
readonly grams?: number;
|
|
6431
6430
|
readonly price?: string;
|
|
@@ -6446,7 +6445,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6446
6445
|
|
|
6447
6446
|
interface ShopifyLineItemForm {
|
|
6448
6447
|
readonly fulfillable_quantity?: number;
|
|
6449
|
-
readonly fulfillment_service: string;
|
|
6450
6448
|
readonly fulfillment_status?: io.flow.shopify.external.v0.enums.FulfillmentStatusType;
|
|
6451
6449
|
readonly grams?: number;
|
|
6452
6450
|
readonly price?: string;
|
|
@@ -6627,7 +6625,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6627
6625
|
readonly title: string;
|
|
6628
6626
|
readonly tax_lines: io.flow.shopify.external.v0.models.ShopifyTaxLine[];
|
|
6629
6627
|
readonly carrier_identifier?: string;
|
|
6630
|
-
readonly requested_fulfillment_service_id?: string;
|
|
6631
6628
|
}
|
|
6632
6629
|
|
|
6633
6630
|
interface ShopifyTaxLine {
|
|
@@ -6900,6 +6897,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6900
6897
|
| 'locations/create'
|
|
6901
6898
|
| 'locations/update'
|
|
6902
6899
|
| 'locations/delete'
|
|
6900
|
+
| 'order_transactions/create'
|
|
6903
6901
|
| 'orders/cancelled'
|
|
6904
6902
|
| 'orders/create'
|
|
6905
6903
|
| 'orders/fulfilled'
|
|
@@ -7238,10 +7236,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7238
7236
|
readonly updated_at?: string;
|
|
7239
7237
|
readonly first_name?: string;
|
|
7240
7238
|
readonly last_name?: string;
|
|
7241
|
-
readonly orders_count?: number;
|
|
7242
7239
|
readonly state?: string;
|
|
7243
|
-
readonly total_spent?: string;
|
|
7244
|
-
readonly last_order_id?: number;
|
|
7245
7240
|
readonly note?: string;
|
|
7246
7241
|
readonly verified_email?: boolean;
|
|
7247
7242
|
readonly multipass_identifier?: string;
|
|
@@ -7249,7 +7244,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7249
7244
|
readonly tax_exemptions?: any /*json*/[];
|
|
7250
7245
|
readonly phone?: string;
|
|
7251
7246
|
readonly tags?: string;
|
|
7252
|
-
readonly last_order_name?: string;
|
|
7253
7247
|
readonly currency?: string;
|
|
7254
7248
|
readonly addresses?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
7255
7249
|
readonly default_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
@@ -7339,7 +7333,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7339
7333
|
|
|
7340
7334
|
interface ShopifyOrderLineItem {
|
|
7341
7335
|
readonly fulfillable_quantity?: number;
|
|
7342
|
-
readonly fulfillment_service: string;
|
|
7343
7336
|
readonly fulfillment_status?: io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType;
|
|
7344
7337
|
readonly grams?: number;
|
|
7345
7338
|
readonly id: number;
|
|
@@ -7363,7 +7356,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7363
7356
|
readonly total_discount?: string;
|
|
7364
7357
|
readonly total_discount_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7365
7358
|
readonly discount_allocations?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
|
|
7366
|
-
readonly origin_location?: io.flow.shopify.markets.v0.models.ShopifyOrderOriginLocation;
|
|
7367
7359
|
readonly variant_inventory_management?: string;
|
|
7368
7360
|
readonly product_exists?: boolean;
|
|
7369
7361
|
readonly duties: io.flow.shopify.markets.v0.models.ShopifyOrderDuty[];
|
|
@@ -7452,7 +7444,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7452
7444
|
readonly title: string;
|
|
7453
7445
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
7454
7446
|
readonly carrier_identifier?: string;
|
|
7455
|
-
readonly requested_fulfillment_service_id?: string;
|
|
7456
7447
|
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7457
7448
|
readonly discounted_price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7458
7449
|
}
|
|
@@ -7472,7 +7463,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7472
7463
|
readonly currency: string;
|
|
7473
7464
|
readonly status?: io.flow.shopify.markets.v0.enums.ShopifyOrderTransactionStatus;
|
|
7474
7465
|
readonly payment_details?: io.flow.shopify.markets.v0.models.ShopifyOrderPaymentDetail;
|
|
7475
|
-
readonly receipt
|
|
7466
|
+
readonly receipt?: any /*object*/;
|
|
7476
7467
|
readonly authorization?: string;
|
|
7477
7468
|
readonly created_at: string;
|
|
7478
7469
|
readonly device_id?: number;
|
|
@@ -11541,7 +11532,6 @@ declare namespace io.flow.item.v0.models {
|
|
|
11541
11532
|
}
|
|
11542
11533
|
|
|
11543
11534
|
declare namespace io.flow.billing.v0.enums {
|
|
11544
|
-
type AttachmentType = 'csv';
|
|
11545
11535
|
type FeeDeductionType =
|
|
11546
11536
|
| 'duty_guarantee'
|
|
11547
11537
|
| 'mor'
|
|
@@ -11550,12 +11540,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11550
11540
|
| 'processing'
|
|
11551
11541
|
| 'rate_lock'
|
|
11552
11542
|
| 'transfer';
|
|
11553
|
-
type
|
|
11554
|
-
|
|
11555
|
-
|
|
11556
|
-
| 'cancelled'
|
|
11557
|
-
| 'failed'
|
|
11558
|
-
| 'succeeded';
|
|
11543
|
+
type PayoutAttachmentType = 'transactions';
|
|
11544
|
+
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
11545
|
+
type StatementAttachmentType = 'csv';
|
|
11559
11546
|
type TransactionSource =
|
|
11560
11547
|
| 'capture'
|
|
11561
11548
|
| 'refund'
|
|
@@ -11585,7 +11572,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11585
11572
|
}
|
|
11586
11573
|
|
|
11587
11574
|
interface Attachment {
|
|
11588
|
-
readonly type: io.flow.billing.v0.enums.
|
|
11575
|
+
readonly type: io.flow.billing.v0.enums.StatementAttachmentType;
|
|
11589
11576
|
readonly url: string;
|
|
11590
11577
|
}
|
|
11591
11578
|
|
|
@@ -11622,6 +11609,16 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11622
11609
|
readonly description?: string;
|
|
11623
11610
|
}
|
|
11624
11611
|
|
|
11612
|
+
interface ChannelPayout {
|
|
11613
|
+
readonly id: string;
|
|
11614
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11615
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
11616
|
+
readonly amount: number;
|
|
11617
|
+
readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
|
|
11618
|
+
readonly created_at: string;
|
|
11619
|
+
readonly updated_at: string;
|
|
11620
|
+
}
|
|
11621
|
+
|
|
11625
11622
|
interface ChannelStatement {
|
|
11626
11623
|
readonly id: string;
|
|
11627
11624
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -11632,12 +11629,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11632
11629
|
}
|
|
11633
11630
|
|
|
11634
11631
|
interface ChannelTransaction {
|
|
11632
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11635
11633
|
readonly id: string;
|
|
11636
11634
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
11637
|
-
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11638
11635
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
11639
11636
|
readonly currency: string;
|
|
11640
11637
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
11638
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
11641
11639
|
readonly gross: number;
|
|
11642
11640
|
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
11643
11641
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
@@ -11645,6 +11643,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11645
11643
|
readonly net: number;
|
|
11646
11644
|
readonly identifiers: Record<string, string>;
|
|
11647
11645
|
readonly created_at: string;
|
|
11646
|
+
readonly updated_at: string;
|
|
11648
11647
|
}
|
|
11649
11648
|
|
|
11650
11649
|
interface DefaultBankAccountForm {
|
|
@@ -11657,11 +11656,6 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11657
11656
|
readonly description?: string;
|
|
11658
11657
|
}
|
|
11659
11658
|
|
|
11660
|
-
interface NoPayout {
|
|
11661
|
-
readonly discriminator: 'no_payout';
|
|
11662
|
-
readonly placeholder?: string;
|
|
11663
|
-
}
|
|
11664
|
-
|
|
11665
11659
|
interface OrganizationBankAccount {
|
|
11666
11660
|
readonly id: string;
|
|
11667
11661
|
readonly last4: string;
|
|
@@ -11672,16 +11666,69 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11672
11666
|
readonly bank_account: io.flow.billing.v0.models.BankAccountReference;
|
|
11673
11667
|
}
|
|
11674
11668
|
|
|
11675
|
-
interface
|
|
11676
|
-
readonly
|
|
11677
|
-
readonly
|
|
11669
|
+
interface OrganizationPayout {
|
|
11670
|
+
readonly id: string;
|
|
11671
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11672
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
11678
11673
|
readonly amount: number;
|
|
11679
|
-
readonly
|
|
11674
|
+
readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
|
|
11675
|
+
readonly created_at: string;
|
|
11676
|
+
readonly updated_at: string;
|
|
11680
11677
|
}
|
|
11681
11678
|
|
|
11682
|
-
interface
|
|
11683
|
-
readonly
|
|
11684
|
-
readonly
|
|
11679
|
+
interface ParentTransactionSummary {
|
|
11680
|
+
readonly id: string;
|
|
11681
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
11682
|
+
}
|
|
11683
|
+
|
|
11684
|
+
interface PayoutAttachment {
|
|
11685
|
+
readonly type: io.flow.billing.v0.enums.PayoutAttachmentType;
|
|
11686
|
+
readonly url: string;
|
|
11687
|
+
}
|
|
11688
|
+
|
|
11689
|
+
interface PayoutStatusFailed {
|
|
11690
|
+
readonly code: 'failed';
|
|
11691
|
+
readonly timestamp: string;
|
|
11692
|
+
readonly reason: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
11693
|
+
}
|
|
11694
|
+
|
|
11695
|
+
interface PayoutStatusScheduled {
|
|
11696
|
+
readonly code: 'scheduled';
|
|
11697
|
+
readonly placeholder?: string;
|
|
11698
|
+
}
|
|
11699
|
+
|
|
11700
|
+
interface PayoutStatusSent {
|
|
11701
|
+
readonly code: 'sent';
|
|
11702
|
+
readonly timestamp: string;
|
|
11703
|
+
}
|
|
11704
|
+
|
|
11705
|
+
interface PayoutTransaction {
|
|
11706
|
+
readonly id: string;
|
|
11707
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
11708
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
11709
|
+
readonly currency: string;
|
|
11710
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
11711
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
11712
|
+
readonly gross: number;
|
|
11713
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
11714
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
11715
|
+
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
11716
|
+
readonly net: number;
|
|
11717
|
+
readonly identifiers: Record<string, string>;
|
|
11718
|
+
readonly created_at: string;
|
|
11719
|
+
readonly updated_at: string;
|
|
11720
|
+
}
|
|
11721
|
+
|
|
11722
|
+
interface SettlementNoPayout {
|
|
11723
|
+
readonly discriminator: 'no_payout';
|
|
11724
|
+
readonly placeholder?: string;
|
|
11725
|
+
}
|
|
11726
|
+
|
|
11727
|
+
interface SettlementPayout {
|
|
11728
|
+
readonly discriminator: 'payout';
|
|
11729
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
11730
|
+
readonly amount: number;
|
|
11731
|
+
readonly sent_on?: string;
|
|
11685
11732
|
}
|
|
11686
11733
|
|
|
11687
11734
|
interface Statement {
|
|
@@ -11694,12 +11741,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11694
11741
|
}
|
|
11695
11742
|
|
|
11696
11743
|
interface Transaction {
|
|
11744
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11697
11745
|
readonly id: string;
|
|
11698
11746
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
11699
|
-
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11700
11747
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
11701
11748
|
readonly currency: string;
|
|
11702
11749
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
11750
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
11703
11751
|
readonly gross: number;
|
|
11704
11752
|
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
11705
11753
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
@@ -11707,6 +11755,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11707
11755
|
readonly net: number;
|
|
11708
11756
|
readonly identifiers: Record<string, string>;
|
|
11709
11757
|
readonly created_at: string;
|
|
11758
|
+
readonly updated_at: string;
|
|
11710
11759
|
}
|
|
11711
11760
|
|
|
11712
11761
|
interface WithholdingDeduction {
|
|
@@ -11717,9 +11766,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11717
11766
|
}
|
|
11718
11767
|
|
|
11719
11768
|
declare namespace io.flow.billing.v0.unions {
|
|
11769
|
+
type PayoutStatus =
|
|
11770
|
+
| io.flow.billing.v0.models.PayoutStatusScheduled
|
|
11771
|
+
| io.flow.billing.v0.models.PayoutStatusSent
|
|
11772
|
+
| io.flow.billing.v0.models.PayoutStatusFailed;
|
|
11720
11773
|
type Settlement =
|
|
11721
|
-
| io.flow.billing.v0.models.
|
|
11722
|
-
| io.flow.billing.v0.models.
|
|
11774
|
+
| io.flow.billing.v0.models.SettlementNoPayout
|
|
11775
|
+
| io.flow.billing.v0.models.SettlementPayout;
|
|
11723
11776
|
}
|
|
11724
11777
|
|
|
11725
11778
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -12866,8 +12919,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
12866
12919
|
| 'email'
|
|
12867
12920
|
| 'name'
|
|
12868
12921
|
| 'phone'
|
|
12869
|
-
| '
|
|
12870
|
-
| '
|
|
12922
|
+
| 'postalAddress'
|
|
12923
|
+
| 'phoneticName';
|
|
12871
12924
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
12872
12925
|
type ApplePayMerchantCapability =
|
|
12873
12926
|
| 'supports3DS'
|
|
@@ -12893,7 +12946,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
12893
12946
|
interface ApplePayLineItem {
|
|
12894
12947
|
readonly label: string;
|
|
12895
12948
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
12896
|
-
readonly amount:
|
|
12949
|
+
readonly amount: string;
|
|
12897
12950
|
}
|
|
12898
12951
|
|
|
12899
12952
|
interface ApplePayPaymentContact {
|
|
@@ -12944,7 +12997,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
12944
12997
|
interface ApplePayShippingMethod {
|
|
12945
12998
|
readonly label: string;
|
|
12946
12999
|
readonly detail: string;
|
|
12947
|
-
readonly amount:
|
|
13000
|
+
readonly amount: string;
|
|
12948
13001
|
readonly identifier: string;
|
|
12949
13002
|
}
|
|
12950
13003
|
}
|
|
@@ -13054,7 +13107,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13054
13107
|
|
|
13055
13108
|
interface SetupCompleted {
|
|
13056
13109
|
readonly discriminator: 'setup_completed';
|
|
13057
|
-
readonly
|
|
13110
|
+
readonly third_party_logistics_guid: string;
|
|
13058
13111
|
}
|
|
13059
13112
|
|
|
13060
13113
|
interface SetupInProgress {
|
|
@@ -13431,6 +13484,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13431
13484
|
| 'duty_rates_data_event'
|
|
13432
13485
|
| 'integration_test'
|
|
13433
13486
|
| 'unit_test';
|
|
13487
|
+
type BankPaymentStatusCode = 'sent' | 'failed';
|
|
13434
13488
|
type BillingAllocationKey =
|
|
13435
13489
|
| 'freight_cost'
|
|
13436
13490
|
| 'adjustment'
|
|
@@ -13522,6 +13576,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13522
13576
|
| 'adjustment'
|
|
13523
13577
|
| 'reversal'
|
|
13524
13578
|
| 'channel_initiated';
|
|
13579
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject';
|
|
13525
13580
|
type ChannelOrderAcceptanceRejectionReason =
|
|
13526
13581
|
| 'unsupported_origin_country'
|
|
13527
13582
|
| 'unsupported_destination_country'
|
|
@@ -13531,10 +13586,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13531
13586
|
| 'missing_order_information'
|
|
13532
13587
|
| 'unsupported_payment_information'
|
|
13533
13588
|
| 'unsupported_shop_currency'
|
|
13534
|
-
| '
|
|
13589
|
+
| 'unsupported_free_order'
|
|
13535
13590
|
| 'extracting_distribution_info_failed'
|
|
13536
13591
|
| 'shipping_estimation_failed'
|
|
13537
|
-
| 'payment_authorization_failed'
|
|
13592
|
+
| 'payment_authorization_failed'
|
|
13593
|
+
| 'unsupported_subsidized_order';
|
|
13538
13594
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
13539
13595
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
13540
13596
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -13878,6 +13934,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13878
13934
|
| 'adyen_capture_upserted'
|
|
13879
13935
|
| 'adyen_refund_deleted'
|
|
13880
13936
|
| 'adyen_refund_upserted'
|
|
13937
|
+
| 'test_upserted'
|
|
13938
|
+
| 'test_deleted'
|
|
13881
13939
|
| 'account_upserted'
|
|
13882
13940
|
| 'account_upserted_v2'
|
|
13883
13941
|
| 'account_deleted_v2'
|
|
@@ -14063,6 +14121,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14063
14121
|
| 'fulfillment_cancel'
|
|
14064
14122
|
| 'order_shipped'
|
|
14065
14123
|
| 'items_shipped'
|
|
14124
|
+
| 'organization_business_entity_deleted'
|
|
14125
|
+
| 'organization_business_entity_upserted'
|
|
14066
14126
|
| 'organization_restriction_approval_upserted'
|
|
14067
14127
|
| 'organization_restriction_approval_deleted'
|
|
14068
14128
|
| 'internal_authorization_upserted'
|
|
@@ -14104,6 +14164,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14104
14164
|
| 'ratecard_service_fee_deleted'
|
|
14105
14165
|
| 'ratecard_lane_aggregate_upserted'
|
|
14106
14166
|
| 'ratecard_lane_aggregate_deleted'
|
|
14167
|
+
| 'ratecard_rate_level_upserted'
|
|
14168
|
+
| 'ratecard_rate_level_deleted'
|
|
14169
|
+
| 'ratecard_rate_level_ratecard_upserted'
|
|
14170
|
+
| 'ratecard_rate_level_ratecard_deleted'
|
|
14171
|
+
| 'ratecard_rate_level_organization_upserted'
|
|
14172
|
+
| 'ratecard_rate_level_organization_deleted'
|
|
14107
14173
|
| 'organization_restriction_snapshot_upserted'
|
|
14108
14174
|
| 'organization_restriction_snapshot_deleted'
|
|
14109
14175
|
| 'restriction_organization_status_upserted'
|
|
@@ -14397,6 +14463,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14397
14463
|
type RateSource = 'calculated' | 'market';
|
|
14398
14464
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
14399
14465
|
type RedirectReason = 'three_d_secure';
|
|
14466
|
+
type RejectionReason =
|
|
14467
|
+
| 'suspicious_behavior'
|
|
14468
|
+
| 'suspicious_past_activity'
|
|
14469
|
+
| 'risky_velocity'
|
|
14470
|
+
| 'previous_chargebacks'
|
|
14471
|
+
| 'restricted_party_screening';
|
|
14400
14472
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14401
14473
|
type ReportingScheme =
|
|
14402
14474
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -14532,20 +14604,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14532
14604
|
readonly accepted_at: string;
|
|
14533
14605
|
}
|
|
14534
14606
|
|
|
14535
|
-
interface Account {
|
|
14536
|
-
readonly id: string;
|
|
14537
|
-
readonly currency: string;
|
|
14538
|
-
readonly updated_at: string;
|
|
14539
|
-
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
14540
|
-
readonly payment_schedule: io.flow.common.v0.unions.RepeatSchedule;
|
|
14541
|
-
readonly payment_conditions?: string;
|
|
14542
|
-
readonly deposit_rule?: io.flow.internal.v0.models.AccountDepositRule;
|
|
14543
|
-
readonly center_key?: string;
|
|
14544
|
-
readonly statistics: io.flow.internal.v0.models.AccountStatistics;
|
|
14545
|
-
readonly next_statement: io.flow.internal.v0.models.NextBillingStatement;
|
|
14546
|
-
readonly created_at: string;
|
|
14547
|
-
}
|
|
14548
|
-
|
|
14549
14607
|
interface AccountContact {
|
|
14550
14608
|
readonly id: string;
|
|
14551
14609
|
readonly email: string;
|
|
@@ -14659,11 +14717,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14659
14717
|
readonly rates: io.flow.internal.v0.models.AccountProcessingRates;
|
|
14660
14718
|
}
|
|
14661
14719
|
|
|
14662
|
-
interface AccountReference {
|
|
14663
|
-
readonly id: string;
|
|
14664
|
-
readonly currency: string;
|
|
14665
|
-
}
|
|
14666
|
-
|
|
14667
14720
|
interface AccountSettingLabelFees {
|
|
14668
14721
|
readonly flow?: io.flow.internal.v0.models.TieredFee;
|
|
14669
14722
|
readonly organization?: io.flow.internal.v0.models.TieredFee;
|
|
@@ -14748,14 +14801,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14748
14801
|
readonly event_id: string;
|
|
14749
14802
|
readonly timestamp: string;
|
|
14750
14803
|
readonly organization: string;
|
|
14751
|
-
readonly account: io.flow.internal.v0.models.
|
|
14804
|
+
readonly account: io.flow.internal.v0.models.OrganizationAccount;
|
|
14752
14805
|
}
|
|
14753
14806
|
|
|
14754
14807
|
interface AccountUpsertedV2 {
|
|
14755
14808
|
readonly discriminator: 'account_upserted_v2';
|
|
14756
14809
|
readonly event_id: string;
|
|
14757
14810
|
readonly timestamp: string;
|
|
14758
|
-
readonly account: io.flow.internal.v0.models.
|
|
14811
|
+
readonly account: io.flow.internal.v0.models.FlowAccount;
|
|
14759
14812
|
}
|
|
14760
14813
|
|
|
14761
14814
|
interface ActionQuantity {
|
|
@@ -15304,10 +15357,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15304
15357
|
interface BankPayment {
|
|
15305
15358
|
readonly id: string;
|
|
15306
15359
|
readonly key: string;
|
|
15307
|
-
readonly account: io.flow.
|
|
15360
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
15308
15361
|
readonly reference?: string;
|
|
15309
15362
|
readonly sent_on: string;
|
|
15310
|
-
readonly status: io.flow.billing.v0.
|
|
15363
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
15311
15364
|
readonly expected_delivery_by: string;
|
|
15312
15365
|
readonly total: io.flow.common.v0.models.Price;
|
|
15313
15366
|
}
|
|
@@ -15338,8 +15391,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15338
15391
|
}
|
|
15339
15392
|
|
|
15340
15393
|
interface BankPaymentStatusForm {
|
|
15341
|
-
readonly code: io.flow.
|
|
15342
|
-
readonly
|
|
15394
|
+
readonly code: io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
15395
|
+
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
15343
15396
|
}
|
|
15344
15397
|
|
|
15345
15398
|
interface BankPaymentUpserted {
|
|
@@ -15538,7 +15591,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15538
15591
|
|
|
15539
15592
|
interface BillingStatementSummary {
|
|
15540
15593
|
readonly id: string;
|
|
15541
|
-
readonly account: io.flow.
|
|
15594
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
15542
15595
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
15543
15596
|
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
15544
15597
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -16098,7 +16151,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16098
16151
|
|
|
16099
16152
|
interface ChannelBillingStatement {
|
|
16100
16153
|
readonly id: string;
|
|
16101
|
-
readonly account: io.flow.
|
|
16154
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
16102
16155
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
16103
16156
|
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
16104
16157
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -18584,6 +18637,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18584
18637
|
readonly classified_by: string;
|
|
18585
18638
|
}
|
|
18586
18639
|
|
|
18640
|
+
interface CommercialInvoiceComparison {
|
|
18641
|
+
readonly urls: string[];
|
|
18642
|
+
}
|
|
18643
|
+
|
|
18587
18644
|
interface Compliance {
|
|
18588
18645
|
readonly id: string;
|
|
18589
18646
|
readonly destination: string;
|
|
@@ -18990,6 +19047,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18990
19047
|
readonly decline_reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
18991
19048
|
}
|
|
18992
19049
|
|
|
19050
|
+
interface DeclineReasonFraud {
|
|
19051
|
+
readonly discriminator: 'fraud';
|
|
19052
|
+
readonly rejection_reason: io.flow.internal.v0.enums.RejectionReason;
|
|
19053
|
+
}
|
|
19054
|
+
|
|
18993
19055
|
interface DecryptCipherForm {
|
|
18994
19056
|
readonly id: string;
|
|
18995
19057
|
readonly password: string;
|
|
@@ -20072,6 +20134,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20072
20134
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
20073
20135
|
}
|
|
20074
20136
|
|
|
20137
|
+
interface FlowAccount {
|
|
20138
|
+
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
20139
|
+
readonly id: string;
|
|
20140
|
+
readonly currency: string;
|
|
20141
|
+
readonly updated_at: string;
|
|
20142
|
+
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
20143
|
+
readonly payment_schedule: io.flow.common.v0.unions.RepeatSchedule;
|
|
20144
|
+
readonly payment_conditions?: string;
|
|
20145
|
+
readonly deposit_rule?: io.flow.internal.v0.models.AccountDepositRule;
|
|
20146
|
+
readonly center_key?: string;
|
|
20147
|
+
readonly statistics: io.flow.internal.v0.models.AccountStatistics;
|
|
20148
|
+
readonly next_statement: io.flow.internal.v0.models.NextBillingStatement;
|
|
20149
|
+
readonly created_at: string;
|
|
20150
|
+
}
|
|
20151
|
+
|
|
20152
|
+
interface FlowChannelOrganization {
|
|
20153
|
+
readonly placeholder?: string;
|
|
20154
|
+
}
|
|
20155
|
+
|
|
20075
20156
|
interface FlowLabProject {
|
|
20076
20157
|
readonly id: string;
|
|
20077
20158
|
readonly key: string;
|
|
@@ -20392,6 +20473,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20392
20473
|
readonly transaction_created_at: string;
|
|
20393
20474
|
}
|
|
20394
20475
|
|
|
20476
|
+
interface GenerateLoad {
|
|
20477
|
+
readonly organization_id: string;
|
|
20478
|
+
readonly num_events: number;
|
|
20479
|
+
}
|
|
20480
|
+
|
|
20395
20481
|
interface GiftCard {
|
|
20396
20482
|
readonly id: string;
|
|
20397
20483
|
readonly number: string;
|
|
@@ -22201,7 +22287,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22201
22287
|
|
|
22202
22288
|
interface MainTransaction {
|
|
22203
22289
|
readonly id: string;
|
|
22204
|
-
readonly account: io.flow.
|
|
22290
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
22205
22291
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22206
22292
|
readonly value: io.flow.common.v0.models.Price;
|
|
22207
22293
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -22962,7 +23048,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22962
23048
|
|
|
22963
23049
|
interface OrganizationBillingStatement {
|
|
22964
23050
|
readonly id: string;
|
|
22965
|
-
readonly account: io.flow.
|
|
23051
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
22966
23052
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
22967
23053
|
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
22968
23054
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -22989,6 +23075,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22989
23075
|
readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
22990
23076
|
}
|
|
22991
23077
|
|
|
23078
|
+
interface OrganizationBusinessEntity {
|
|
23079
|
+
readonly id: string;
|
|
23080
|
+
readonly name: string;
|
|
23081
|
+
readonly streets: string[];
|
|
23082
|
+
readonly city: string;
|
|
23083
|
+
readonly province?: string;
|
|
23084
|
+
readonly postal?: string;
|
|
23085
|
+
readonly country: string;
|
|
23086
|
+
}
|
|
23087
|
+
|
|
23088
|
+
interface OrganizationBusinessEntityDeleted {
|
|
23089
|
+
readonly discriminator: 'organization_business_entity_deleted';
|
|
23090
|
+
readonly event_id: string;
|
|
23091
|
+
readonly timestamp: string;
|
|
23092
|
+
readonly organization: string;
|
|
23093
|
+
readonly business_entity: io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
23094
|
+
readonly id: string;
|
|
23095
|
+
}
|
|
23096
|
+
|
|
23097
|
+
interface OrganizationBusinessEntityUpserted {
|
|
23098
|
+
readonly discriminator: 'organization_business_entity_upserted';
|
|
23099
|
+
readonly event_id: string;
|
|
23100
|
+
readonly timestamp: string;
|
|
23101
|
+
readonly organization: string;
|
|
23102
|
+
readonly business_entity: io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
23103
|
+
}
|
|
23104
|
+
|
|
22992
23105
|
interface OrganizationCurrencySetting {
|
|
22993
23106
|
readonly id: string;
|
|
22994
23107
|
readonly organization: string;
|
|
@@ -23540,7 +23653,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23540
23653
|
|
|
23541
23654
|
interface PendingBankPayment {
|
|
23542
23655
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
23543
|
-
readonly account: io.flow.
|
|
23656
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
23544
23657
|
readonly recommended_reference: string;
|
|
23545
23658
|
readonly total: io.flow.common.v0.models.Price;
|
|
23546
23659
|
readonly details: io.flow.internal.v0.models.PendingBankPaymentDetail[];
|
|
@@ -23948,6 +24061,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23948
24061
|
readonly rate_freshness_summary: io.flow.internal.v0.models.RateFreshnessSummary;
|
|
23949
24062
|
}
|
|
23950
24063
|
|
|
24064
|
+
interface RateLevel {
|
|
24065
|
+
readonly id: string;
|
|
24066
|
+
readonly name: string;
|
|
24067
|
+
}
|
|
24068
|
+
|
|
24069
|
+
interface RateLevelForm {
|
|
24070
|
+
readonly name: string;
|
|
24071
|
+
}
|
|
24072
|
+
|
|
24073
|
+
interface RateLevelOrganization {
|
|
24074
|
+
readonly id: string;
|
|
24075
|
+
readonly organization_id: string;
|
|
24076
|
+
readonly rate_level_id: string;
|
|
24077
|
+
readonly effective_at: string;
|
|
24078
|
+
}
|
|
24079
|
+
|
|
24080
|
+
interface RateLevelOrganizationForm {
|
|
24081
|
+
readonly rate_level_id: string;
|
|
24082
|
+
readonly effective_at: string;
|
|
24083
|
+
}
|
|
24084
|
+
|
|
24085
|
+
interface RateLevelRatecard {
|
|
24086
|
+
readonly id: string;
|
|
24087
|
+
readonly ratecard_id: string;
|
|
24088
|
+
readonly rate_level_id: string;
|
|
24089
|
+
}
|
|
24090
|
+
|
|
24091
|
+
interface RateLevelRatecardForm {
|
|
24092
|
+
readonly ratecard_id: string;
|
|
24093
|
+
}
|
|
24094
|
+
|
|
23951
24095
|
interface RateNameSummary {
|
|
23952
24096
|
readonly name: string;
|
|
23953
24097
|
readonly long_name?: string;
|
|
@@ -24083,6 +24227,50 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24083
24227
|
readonly data: io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
24084
24228
|
}
|
|
24085
24229
|
|
|
24230
|
+
interface RatecardRateLevelDeleted {
|
|
24231
|
+
readonly discriminator: 'ratecard_rate_level_deleted';
|
|
24232
|
+
readonly event_id: string;
|
|
24233
|
+
readonly timestamp: string;
|
|
24234
|
+
readonly rate_level: io.flow.internal.v0.models.RateLevel;
|
|
24235
|
+
}
|
|
24236
|
+
|
|
24237
|
+
interface RatecardRateLevelOrganizationDeleted {
|
|
24238
|
+
readonly discriminator: 'ratecard_rate_level_organization_deleted';
|
|
24239
|
+
readonly event_id: string;
|
|
24240
|
+
readonly timestamp: string;
|
|
24241
|
+
readonly organization: string;
|
|
24242
|
+
readonly rate_level_organization: io.flow.internal.v0.models.RateLevelOrganization;
|
|
24243
|
+
}
|
|
24244
|
+
|
|
24245
|
+
interface RatecardRateLevelOrganizationUpserted {
|
|
24246
|
+
readonly discriminator: 'ratecard_rate_level_organization_upserted';
|
|
24247
|
+
readonly event_id: string;
|
|
24248
|
+
readonly timestamp: string;
|
|
24249
|
+
readonly organization: string;
|
|
24250
|
+
readonly rate_level_organization: io.flow.internal.v0.models.RateLevelOrganization;
|
|
24251
|
+
}
|
|
24252
|
+
|
|
24253
|
+
interface RatecardRateLevelRatecardDeleted {
|
|
24254
|
+
readonly discriminator: 'ratecard_rate_level_ratecard_deleted';
|
|
24255
|
+
readonly event_id: string;
|
|
24256
|
+
readonly timestamp: string;
|
|
24257
|
+
readonly rate_level_ratecard: io.flow.internal.v0.models.RateLevelRatecard;
|
|
24258
|
+
}
|
|
24259
|
+
|
|
24260
|
+
interface RatecardRateLevelRatecardUpserted {
|
|
24261
|
+
readonly discriminator: 'ratecard_rate_level_ratecard_upserted';
|
|
24262
|
+
readonly event_id: string;
|
|
24263
|
+
readonly timestamp: string;
|
|
24264
|
+
readonly rate_level_ratecard: io.flow.internal.v0.models.RateLevelRatecard;
|
|
24265
|
+
}
|
|
24266
|
+
|
|
24267
|
+
interface RatecardRateLevelUpserted {
|
|
24268
|
+
readonly discriminator: 'ratecard_rate_level_upserted';
|
|
24269
|
+
readonly event_id: string;
|
|
24270
|
+
readonly timestamp: string;
|
|
24271
|
+
readonly rate_level: io.flow.internal.v0.models.RateLevel;
|
|
24272
|
+
}
|
|
24273
|
+
|
|
24086
24274
|
interface RatecardServiceFeeDeleted {
|
|
24087
24275
|
readonly discriminator: 'ratecard_service_fee_deleted';
|
|
24088
24276
|
readonly event_id: string;
|
|
@@ -25658,10 +25846,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25658
25846
|
readonly name: string;
|
|
25659
25847
|
}
|
|
25660
25848
|
|
|
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
|
+
|
|
25661
25857
|
interface TestForm {
|
|
25662
25858
|
readonly name: string;
|
|
25663
25859
|
}
|
|
25664
25860
|
|
|
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
|
+
|
|
25665
25869
|
interface ThirdPartyLogisticsPartner {
|
|
25666
25870
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
25667
25871
|
readonly warehouse_url?: string;
|
|
@@ -26572,7 +26776,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26572
26776
|
| io.flow.internal.v0.models.ContentLabel
|
|
26573
26777
|
| io.flow.internal.v0.models.Load;
|
|
26574
26778
|
type DeclineReason =
|
|
26575
|
-
io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance
|
|
26779
|
+
| io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance
|
|
26780
|
+
| io.flow.internal.v0.models.DeclineReasonFraud;
|
|
26576
26781
|
type DiscountRequestOfferForm =
|
|
26577
26782
|
io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
26578
26783
|
type DisputeDetails =
|
|
@@ -26590,6 +26795,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26590
26795
|
| io.flow.internal.v0.models.AdyenCaptureUpserted
|
|
26591
26796
|
| io.flow.internal.v0.models.AdyenRefundDeleted
|
|
26592
26797
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
26798
|
+
| io.flow.internal.v0.models.TestUpserted
|
|
26799
|
+
| io.flow.internal.v0.models.TestDeleted
|
|
26593
26800
|
| io.flow.internal.v0.models.AccountUpserted
|
|
26594
26801
|
| io.flow.internal.v0.models.AccountUpsertedV2
|
|
26595
26802
|
| io.flow.internal.v0.models.AccountDeletedV2
|
|
@@ -26775,6 +26982,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26775
26982
|
| io.flow.internal.v0.models.FulfillmentCancel
|
|
26776
26983
|
| io.flow.internal.v0.models.OrderShipped
|
|
26777
26984
|
| io.flow.internal.v0.models.ItemsShipped
|
|
26985
|
+
| io.flow.internal.v0.models.OrganizationBusinessEntityDeleted
|
|
26986
|
+
| io.flow.internal.v0.models.OrganizationBusinessEntityUpserted
|
|
26778
26987
|
| io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted
|
|
26779
26988
|
| io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted
|
|
26780
26989
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
@@ -26816,6 +27025,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26816
27025
|
| io.flow.internal.v0.models.RatecardServiceFeeDeleted
|
|
26817
27026
|
| io.flow.internal.v0.models.RatecardLaneAggregateUpserted
|
|
26818
27027
|
| io.flow.internal.v0.models.RatecardLaneAggregateDeleted
|
|
27028
|
+
| io.flow.internal.v0.models.RatecardRateLevelUpserted
|
|
27029
|
+
| io.flow.internal.v0.models.RatecardRateLevelDeleted
|
|
27030
|
+
| io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted
|
|
27031
|
+
| io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted
|
|
27032
|
+
| io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted
|
|
27033
|
+
| io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted
|
|
26819
27034
|
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted
|
|
26820
27035
|
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted
|
|
26821
27036
|
| io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted
|
|
@@ -27114,7 +27329,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27114
27329
|
}
|
|
27115
27330
|
|
|
27116
27331
|
export type Acceptance = io.flow.internal.v0.models.Acceptance;
|
|
27117
|
-
export type Account = io.flow.internal.v0.models.Account;
|
|
27118
27332
|
export type AccountContact = io.flow.internal.v0.models.AccountContact;
|
|
27119
27333
|
export type AccountContactDeleted =
|
|
27120
27334
|
io.flow.internal.v0.models.AccountContactDeleted;
|
|
@@ -27138,7 +27352,6 @@ export type AccountProcessingRatesForm =
|
|
|
27138
27352
|
io.flow.internal.v0.models.AccountProcessingRatesForm;
|
|
27139
27353
|
export type AccountProcessingRatesUpserted =
|
|
27140
27354
|
io.flow.internal.v0.models.AccountProcessingRatesUpserted;
|
|
27141
|
-
export type AccountReference = io.flow.internal.v0.models.AccountReference;
|
|
27142
27355
|
export type AccountSettingLabelFees =
|
|
27143
27356
|
io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
27144
27357
|
export type AccountSettingLiabilitiesMethod =
|
|
@@ -27308,6 +27521,8 @@ export type BankPaymentDeleted = io.flow.internal.v0.models.BankPaymentDeleted;
|
|
|
27308
27521
|
export type BankPaymentDeletedV2 =
|
|
27309
27522
|
io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
27310
27523
|
export type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
27524
|
+
export type BankPaymentStatusCode =
|
|
27525
|
+
io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
27311
27526
|
export type BankPaymentStatusForm =
|
|
27312
27527
|
io.flow.internal.v0.models.BankPaymentStatusForm;
|
|
27313
27528
|
export type BankPaymentUpserted =
|
|
@@ -27567,6 +27782,8 @@ export type ChannelOrderAcceptance =
|
|
|
27567
27782
|
io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
27568
27783
|
export type ChannelOrderAcceptanceDeleted =
|
|
27569
27784
|
io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted;
|
|
27785
|
+
export type ChannelOrderAcceptanceErrorAction =
|
|
27786
|
+
io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
27570
27787
|
export type ChannelOrderAcceptanceForm =
|
|
27571
27788
|
io.flow.internal.v0.models.ChannelOrderAcceptanceForm;
|
|
27572
27789
|
export type ChannelOrderAcceptanceReason =
|
|
@@ -28682,6 +28899,8 @@ export type ClassificationWrapper =
|
|
|
28682
28899
|
export type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
28683
28900
|
export type ClassifiedProductDetail =
|
|
28684
28901
|
io.flow.internal.v0.models.ClassifiedProductDetail;
|
|
28902
|
+
export type CommercialInvoiceComparison =
|
|
28903
|
+
io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
28685
28904
|
export type Compliance = io.flow.internal.v0.models.Compliance;
|
|
28686
28905
|
export type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
28687
28906
|
export type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
|
|
@@ -28784,6 +29003,7 @@ export type Decision = io.flow.internal.v0.models.Decision;
|
|
|
28784
29003
|
export type DeclineReason = io.flow.internal.v0.unions.DeclineReason;
|
|
28785
29004
|
export type DeclineReasonChannelOrderAcceptance =
|
|
28786
29005
|
io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance;
|
|
29006
|
+
export type DeclineReasonFraud = io.flow.internal.v0.models.DeclineReasonFraud;
|
|
28787
29007
|
export type DecryptCipherForm = io.flow.internal.v0.models.DecryptCipherForm;
|
|
28788
29008
|
export type DecryptedCipher = io.flow.internal.v0.models.DecryptedCipher;
|
|
28789
29009
|
export type DeleteIndexTask = io.flow.internal.v0.models.DeleteIndexTask;
|
|
@@ -29067,7 +29287,10 @@ export type FiservMerchantModificationForm =
|
|
|
29067
29287
|
io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
29068
29288
|
export type FiservMerchantPutForm =
|
|
29069
29289
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
29290
|
+
export type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
29070
29291
|
export type FlowApp = io.flow.internal.v0.enums.FlowApp;
|
|
29292
|
+
export type FlowChannelOrganization =
|
|
29293
|
+
io.flow.internal.v0.models.FlowChannelOrganization;
|
|
29071
29294
|
export type FlowLabProject = io.flow.internal.v0.models.FlowLabProject;
|
|
29072
29295
|
export type FlowLabProjectPostForm =
|
|
29073
29296
|
io.flow.internal.v0.models.FlowLabProjectPostForm;
|
|
@@ -29152,6 +29375,7 @@ export type FxRevenueRecognitionRate =
|
|
|
29152
29375
|
io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
29153
29376
|
export type FxRevenueRecognitionSource =
|
|
29154
29377
|
io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
29378
|
+
export type GenerateLoad = io.flow.internal.v0.models.GenerateLoad;
|
|
29155
29379
|
export type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
29156
29380
|
export type GiftCardAuthorizationError =
|
|
29157
29381
|
io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
@@ -29769,6 +29993,12 @@ export type OrganizationBooleanValueDeleted =
|
|
|
29769
29993
|
io.flow.internal.v0.models.OrganizationBooleanValueDeleted;
|
|
29770
29994
|
export type OrganizationBooleanValueUpserted =
|
|
29771
29995
|
io.flow.internal.v0.models.OrganizationBooleanValueUpserted;
|
|
29996
|
+
export type OrganizationBusinessEntity =
|
|
29997
|
+
io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
29998
|
+
export type OrganizationBusinessEntityDeleted =
|
|
29999
|
+
io.flow.internal.v0.models.OrganizationBusinessEntityDeleted;
|
|
30000
|
+
export type OrganizationBusinessEntityUpserted =
|
|
30001
|
+
io.flow.internal.v0.models.OrganizationBusinessEntityUpserted;
|
|
29772
30002
|
export type OrganizationCapability =
|
|
29773
30003
|
io.flow.internal.v0.enums.OrganizationCapability;
|
|
29774
30004
|
export type OrganizationCurrencySetting =
|
|
@@ -30042,6 +30272,15 @@ export type RateFreshnessSummaryDeleted =
|
|
|
30042
30272
|
io.flow.internal.v0.models.RateFreshnessSummaryDeleted;
|
|
30043
30273
|
export type RateFreshnessSummaryUpserted =
|
|
30044
30274
|
io.flow.internal.v0.models.RateFreshnessSummaryUpserted;
|
|
30275
|
+
export type RateLevel = io.flow.internal.v0.models.RateLevel;
|
|
30276
|
+
export type RateLevelForm = io.flow.internal.v0.models.RateLevelForm;
|
|
30277
|
+
export type RateLevelOrganization =
|
|
30278
|
+
io.flow.internal.v0.models.RateLevelOrganization;
|
|
30279
|
+
export type RateLevelOrganizationForm =
|
|
30280
|
+
io.flow.internal.v0.models.RateLevelOrganizationForm;
|
|
30281
|
+
export type RateLevelRatecard = io.flow.internal.v0.models.RateLevelRatecard;
|
|
30282
|
+
export type RateLevelRatecardForm =
|
|
30283
|
+
io.flow.internal.v0.models.RateLevelRatecardForm;
|
|
30045
30284
|
export type RateNameSummary = io.flow.internal.v0.models.RateNameSummary;
|
|
30046
30285
|
export type RateSource = io.flow.internal.v0.enums.RateSource;
|
|
30047
30286
|
export type RateSourceCompositionSummary =
|
|
@@ -30070,6 +30309,18 @@ export type RatecardLaneAggregateUpserted =
|
|
|
30070
30309
|
io.flow.internal.v0.models.RatecardLaneAggregateUpserted;
|
|
30071
30310
|
export type RatecardLanesImportRequest =
|
|
30072
30311
|
io.flow.internal.v0.models.RatecardLanesImportRequest;
|
|
30312
|
+
export type RatecardRateLevelDeleted =
|
|
30313
|
+
io.flow.internal.v0.models.RatecardRateLevelDeleted;
|
|
30314
|
+
export type RatecardRateLevelOrganizationDeleted =
|
|
30315
|
+
io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted;
|
|
30316
|
+
export type RatecardRateLevelOrganizationUpserted =
|
|
30317
|
+
io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted;
|
|
30318
|
+
export type RatecardRateLevelRatecardDeleted =
|
|
30319
|
+
io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted;
|
|
30320
|
+
export type RatecardRateLevelRatecardUpserted =
|
|
30321
|
+
io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted;
|
|
30322
|
+
export type RatecardRateLevelUpserted =
|
|
30323
|
+
io.flow.internal.v0.models.RatecardRateLevelUpserted;
|
|
30073
30324
|
export type RatecardServiceFeeDeleted =
|
|
30074
30325
|
io.flow.internal.v0.models.RatecardServiceFeeDeleted;
|
|
30075
30326
|
export type RatecardServiceFeeUpserted =
|
|
@@ -30105,6 +30356,7 @@ export type RegisteredExporterTariffEligibilityData =
|
|
|
30105
30356
|
io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
30106
30357
|
export type RegisteredExporterTariffEligibilityForm =
|
|
30107
30358
|
io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
30359
|
+
export type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
30108
30360
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
30109
30361
|
export type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
30110
30362
|
export type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
@@ -30520,7 +30772,9 @@ export type TaxTransactionUpserted =
|
|
|
30520
30772
|
export type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
|
|
30521
30773
|
export type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
30522
30774
|
export type Test = io.flow.internal.v0.models.Test;
|
|
30775
|
+
export type TestDeleted = io.flow.internal.v0.models.TestDeleted;
|
|
30523
30776
|
export type TestForm = io.flow.internal.v0.models.TestForm;
|
|
30777
|
+
export type TestUpserted = io.flow.internal.v0.models.TestUpserted;
|
|
30524
30778
|
export type ThirdPartyLogisticsPartner =
|
|
30525
30779
|
io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
30526
30780
|
export type ThirdPartyLogisticsPickUpTimeWindow =
|