@flowio/types 11.24.53 → 11.24.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +320 -96
- package/dist/api.d.ts +149 -34
- package/package.json +2 -2
- package/src/api-internal.ts +425 -111
- package/src/api.ts +187 -38
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 =
|
|
@@ -6425,7 +6432,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6425
6432
|
readonly id: number;
|
|
6426
6433
|
readonly quantity: number;
|
|
6427
6434
|
readonly fulfillable_quantity?: number;
|
|
6428
|
-
readonly fulfillment_service: string;
|
|
6429
6435
|
readonly fulfillment_status?: io.flow.shopify.external.v0.enums.FulfillmentStatusType;
|
|
6430
6436
|
readonly grams?: number;
|
|
6431
6437
|
readonly price?: string;
|
|
@@ -6446,7 +6452,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6446
6452
|
|
|
6447
6453
|
interface ShopifyLineItemForm {
|
|
6448
6454
|
readonly fulfillable_quantity?: number;
|
|
6449
|
-
readonly fulfillment_service: string;
|
|
6450
6455
|
readonly fulfillment_status?: io.flow.shopify.external.v0.enums.FulfillmentStatusType;
|
|
6451
6456
|
readonly grams?: number;
|
|
6452
6457
|
readonly price?: string;
|
|
@@ -6627,7 +6632,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6627
6632
|
readonly title: string;
|
|
6628
6633
|
readonly tax_lines: io.flow.shopify.external.v0.models.ShopifyTaxLine[];
|
|
6629
6634
|
readonly carrier_identifier?: string;
|
|
6630
|
-
readonly requested_fulfillment_service_id?: string;
|
|
6631
6635
|
}
|
|
6632
6636
|
|
|
6633
6637
|
interface ShopifyTaxLine {
|
|
@@ -6900,6 +6904,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6900
6904
|
| 'locations/create'
|
|
6901
6905
|
| 'locations/update'
|
|
6902
6906
|
| 'locations/delete'
|
|
6907
|
+
| 'order_transactions/create'
|
|
6903
6908
|
| 'orders/cancelled'
|
|
6904
6909
|
| 'orders/create'
|
|
6905
6910
|
| 'orders/fulfilled'
|
|
@@ -7210,7 +7215,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7210
7215
|
|
|
7211
7216
|
interface ShopifyOrderAttribute {
|
|
7212
7217
|
readonly name: string;
|
|
7213
|
-
readonly value:
|
|
7218
|
+
readonly value: any /*json*/;
|
|
7214
7219
|
}
|
|
7215
7220
|
|
|
7216
7221
|
interface ShopifyOrderCancellationForm {
|
|
@@ -7238,10 +7243,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7238
7243
|
readonly updated_at?: string;
|
|
7239
7244
|
readonly first_name?: string;
|
|
7240
7245
|
readonly last_name?: string;
|
|
7241
|
-
readonly orders_count?: number;
|
|
7242
7246
|
readonly state?: string;
|
|
7243
|
-
readonly total_spent?: string;
|
|
7244
|
-
readonly last_order_id?: number;
|
|
7245
7247
|
readonly note?: string;
|
|
7246
7248
|
readonly verified_email?: boolean;
|
|
7247
7249
|
readonly multipass_identifier?: string;
|
|
@@ -7249,7 +7251,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7249
7251
|
readonly tax_exemptions?: any /*json*/[];
|
|
7250
7252
|
readonly phone?: string;
|
|
7251
7253
|
readonly tags?: string;
|
|
7252
|
-
readonly last_order_name?: string;
|
|
7253
7254
|
readonly currency?: string;
|
|
7254
7255
|
readonly addresses?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
7255
7256
|
readonly default_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
@@ -7339,7 +7340,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7339
7340
|
|
|
7340
7341
|
interface ShopifyOrderLineItem {
|
|
7341
7342
|
readonly fulfillable_quantity?: number;
|
|
7342
|
-
readonly fulfillment_service: string;
|
|
7343
7343
|
readonly fulfillment_status?: io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType;
|
|
7344
7344
|
readonly grams?: number;
|
|
7345
7345
|
readonly id: number;
|
|
@@ -7363,7 +7363,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7363
7363
|
readonly total_discount?: string;
|
|
7364
7364
|
readonly total_discount_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7365
7365
|
readonly discount_allocations?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
|
|
7366
|
-
readonly origin_location?: io.flow.shopify.markets.v0.models.ShopifyOrderOriginLocation;
|
|
7367
7366
|
readonly variant_inventory_management?: string;
|
|
7368
7367
|
readonly product_exists?: boolean;
|
|
7369
7368
|
readonly duties: io.flow.shopify.markets.v0.models.ShopifyOrderDuty[];
|
|
@@ -7452,7 +7451,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7452
7451
|
readonly title: string;
|
|
7453
7452
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
7454
7453
|
readonly carrier_identifier?: string;
|
|
7455
|
-
readonly requested_fulfillment_service_id?: string;
|
|
7456
7454
|
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7457
7455
|
readonly discounted_price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7458
7456
|
}
|
|
@@ -7472,7 +7470,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7472
7470
|
readonly currency: string;
|
|
7473
7471
|
readonly status?: io.flow.shopify.markets.v0.enums.ShopifyOrderTransactionStatus;
|
|
7474
7472
|
readonly payment_details?: io.flow.shopify.markets.v0.models.ShopifyOrderPaymentDetail;
|
|
7475
|
-
readonly receipt
|
|
7473
|
+
readonly receipt?: any /*object*/;
|
|
7476
7474
|
readonly authorization?: string;
|
|
7477
7475
|
readonly created_at: string;
|
|
7478
7476
|
readonly device_id?: number;
|
|
@@ -7852,6 +7850,18 @@ declare namespace io.flow.payment.gateway.v0.enums {
|
|
|
7852
7850
|
| 'error'
|
|
7853
7851
|
| 'payment_checks_declined';
|
|
7854
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';
|
|
7855
7865
|
type PaymentStatus =
|
|
7856
7866
|
| 'requires_payment_method'
|
|
7857
7867
|
| 'requires_action'
|
|
@@ -8407,6 +8417,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
8407
8417
|
readonly payment_information: io.flow.payment.gateway.v0.models.PaymentInformation;
|
|
8408
8418
|
readonly supported_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
|
|
8409
8419
|
readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
8420
|
+
readonly review?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
|
|
8410
8421
|
}
|
|
8411
8422
|
|
|
8412
8423
|
interface PaymentRequestForm {
|
|
@@ -8428,6 +8439,16 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
8428
8439
|
readonly reference?: string;
|
|
8429
8440
|
}
|
|
8430
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
|
+
|
|
8431
8452
|
interface PaymentReversal {
|
|
8432
8453
|
readonly id: string;
|
|
8433
8454
|
readonly amount: number;
|
|
@@ -11541,7 +11562,6 @@ declare namespace io.flow.item.v0.models {
|
|
|
11541
11562
|
}
|
|
11542
11563
|
|
|
11543
11564
|
declare namespace io.flow.billing.v0.enums {
|
|
11544
|
-
type AttachmentType = 'csv';
|
|
11545
11565
|
type FeeDeductionType =
|
|
11546
11566
|
| 'duty_guarantee'
|
|
11547
11567
|
| 'mor'
|
|
@@ -11550,12 +11570,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11550
11570
|
| 'processing'
|
|
11551
11571
|
| 'rate_lock'
|
|
11552
11572
|
| 'transfer';
|
|
11553
|
-
type
|
|
11554
|
-
|
|
11555
|
-
|
|
11556
|
-
| 'cancelled'
|
|
11557
|
-
| 'failed'
|
|
11558
|
-
| 'succeeded';
|
|
11573
|
+
type PayoutAttachmentType = 'transactions';
|
|
11574
|
+
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
11575
|
+
type StatementAttachmentType = 'csv';
|
|
11559
11576
|
type TransactionSource =
|
|
11560
11577
|
| 'capture'
|
|
11561
11578
|
| 'refund'
|
|
@@ -11585,12 +11602,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11585
11602
|
}
|
|
11586
11603
|
|
|
11587
11604
|
interface Attachment {
|
|
11588
|
-
readonly type: io.flow.billing.v0.enums.
|
|
11605
|
+
readonly type: io.flow.billing.v0.enums.StatementAttachmentType;
|
|
11589
11606
|
readonly url: string;
|
|
11590
11607
|
}
|
|
11591
11608
|
|
|
11592
11609
|
interface BankAccountForm {
|
|
11593
|
-
readonly last4: string;
|
|
11594
11610
|
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
11595
11611
|
}
|
|
11596
11612
|
|
|
@@ -11598,6 +11614,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11598
11614
|
readonly id: string;
|
|
11599
11615
|
}
|
|
11600
11616
|
|
|
11617
|
+
interface BankAccountSummary {
|
|
11618
|
+
readonly last4: string;
|
|
11619
|
+
}
|
|
11620
|
+
|
|
11601
11621
|
interface BillingChannelOrderSummary {
|
|
11602
11622
|
readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
|
|
11603
11623
|
readonly number: string;
|
|
@@ -11622,6 +11642,28 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11622
11642
|
readonly description?: string;
|
|
11623
11643
|
}
|
|
11624
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
|
+
|
|
11656
|
+
interface ChannelPayout {
|
|
11657
|
+
readonly id: string;
|
|
11658
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11659
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
11660
|
+
readonly bank_account?: io.flow.billing.v0.models.BankAccountSummary;
|
|
11661
|
+
readonly amount: number;
|
|
11662
|
+
readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
|
|
11663
|
+
readonly created_at: string;
|
|
11664
|
+
readonly updated_at: string;
|
|
11665
|
+
}
|
|
11666
|
+
|
|
11625
11667
|
interface ChannelStatement {
|
|
11626
11668
|
readonly id: string;
|
|
11627
11669
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -11632,12 +11674,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11632
11674
|
}
|
|
11633
11675
|
|
|
11634
11676
|
interface ChannelTransaction {
|
|
11677
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11635
11678
|
readonly id: string;
|
|
11636
11679
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
11637
|
-
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11638
11680
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
11639
11681
|
readonly currency: string;
|
|
11640
11682
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
11683
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
11641
11684
|
readonly gross: number;
|
|
11642
11685
|
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
11643
11686
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
@@ -11645,6 +11688,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11645
11688
|
readonly net: number;
|
|
11646
11689
|
readonly identifiers: Record<string, string>;
|
|
11647
11690
|
readonly created_at: string;
|
|
11691
|
+
readonly updated_at: string;
|
|
11648
11692
|
}
|
|
11649
11693
|
|
|
11650
11694
|
interface DefaultBankAccountForm {
|
|
@@ -11657,13 +11701,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11657
11701
|
readonly description?: string;
|
|
11658
11702
|
}
|
|
11659
11703
|
|
|
11660
|
-
interface NoPayout {
|
|
11661
|
-
readonly discriminator: 'no_payout';
|
|
11662
|
-
readonly placeholder?: string;
|
|
11663
|
-
}
|
|
11664
|
-
|
|
11665
11704
|
interface OrganizationBankAccount {
|
|
11666
11705
|
readonly id: string;
|
|
11706
|
+
readonly key: string;
|
|
11667
11707
|
readonly last4: string;
|
|
11668
11708
|
}
|
|
11669
11709
|
|
|
@@ -11672,16 +11712,70 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11672
11712
|
readonly bank_account: io.flow.billing.v0.models.BankAccountReference;
|
|
11673
11713
|
}
|
|
11674
11714
|
|
|
11675
|
-
interface
|
|
11676
|
-
readonly
|
|
11677
|
-
readonly
|
|
11715
|
+
interface OrganizationPayout {
|
|
11716
|
+
readonly id: string;
|
|
11717
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11718
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
11719
|
+
readonly bank_account?: io.flow.billing.v0.models.BankAccountSummary;
|
|
11678
11720
|
readonly amount: number;
|
|
11679
|
-
readonly
|
|
11721
|
+
readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
|
|
11722
|
+
readonly created_at: string;
|
|
11723
|
+
readonly updated_at: string;
|
|
11680
11724
|
}
|
|
11681
11725
|
|
|
11682
|
-
interface
|
|
11683
|
-
readonly
|
|
11684
|
-
readonly
|
|
11726
|
+
interface ParentTransactionSummary {
|
|
11727
|
+
readonly id: string;
|
|
11728
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
11729
|
+
}
|
|
11730
|
+
|
|
11731
|
+
interface PayoutAttachment {
|
|
11732
|
+
readonly type: io.flow.billing.v0.enums.PayoutAttachmentType;
|
|
11733
|
+
readonly url: string;
|
|
11734
|
+
}
|
|
11735
|
+
|
|
11736
|
+
interface PayoutStatusFailed {
|
|
11737
|
+
readonly code: 'failed';
|
|
11738
|
+
readonly timestamp: string;
|
|
11739
|
+
readonly reason: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
11740
|
+
}
|
|
11741
|
+
|
|
11742
|
+
interface PayoutStatusScheduled {
|
|
11743
|
+
readonly code: 'scheduled';
|
|
11744
|
+
readonly placeholder?: string;
|
|
11745
|
+
}
|
|
11746
|
+
|
|
11747
|
+
interface PayoutStatusSent {
|
|
11748
|
+
readonly code: 'sent';
|
|
11749
|
+
readonly timestamp: string;
|
|
11750
|
+
}
|
|
11751
|
+
|
|
11752
|
+
interface PayoutTransaction {
|
|
11753
|
+
readonly id: string;
|
|
11754
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
11755
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
11756
|
+
readonly currency: string;
|
|
11757
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
11758
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
11759
|
+
readonly gross: number;
|
|
11760
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
11761
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
11762
|
+
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
11763
|
+
readonly net: number;
|
|
11764
|
+
readonly identifiers: Record<string, string>;
|
|
11765
|
+
readonly created_at: string;
|
|
11766
|
+
readonly updated_at: string;
|
|
11767
|
+
}
|
|
11768
|
+
|
|
11769
|
+
interface SettlementNoPayout {
|
|
11770
|
+
readonly discriminator: 'no_payout';
|
|
11771
|
+
readonly placeholder?: string;
|
|
11772
|
+
}
|
|
11773
|
+
|
|
11774
|
+
interface SettlementPayout {
|
|
11775
|
+
readonly discriminator: 'payout';
|
|
11776
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
11777
|
+
readonly amount: number;
|
|
11778
|
+
readonly sent_on?: string;
|
|
11685
11779
|
}
|
|
11686
11780
|
|
|
11687
11781
|
interface Statement {
|
|
@@ -11694,12 +11788,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11694
11788
|
}
|
|
11695
11789
|
|
|
11696
11790
|
interface Transaction {
|
|
11791
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11697
11792
|
readonly id: string;
|
|
11698
11793
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
11699
|
-
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11700
11794
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
11701
11795
|
readonly currency: string;
|
|
11702
11796
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
11797
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
11703
11798
|
readonly gross: number;
|
|
11704
11799
|
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
11705
11800
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
@@ -11707,6 +11802,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11707
11802
|
readonly net: number;
|
|
11708
11803
|
readonly identifiers: Record<string, string>;
|
|
11709
11804
|
readonly created_at: string;
|
|
11805
|
+
readonly updated_at: string;
|
|
11710
11806
|
}
|
|
11711
11807
|
|
|
11712
11808
|
interface WithholdingDeduction {
|
|
@@ -11717,9 +11813,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11717
11813
|
}
|
|
11718
11814
|
|
|
11719
11815
|
declare namespace io.flow.billing.v0.unions {
|
|
11816
|
+
type PayoutStatus =
|
|
11817
|
+
| io.flow.billing.v0.models.PayoutStatusScheduled
|
|
11818
|
+
| io.flow.billing.v0.models.PayoutStatusSent
|
|
11819
|
+
| io.flow.billing.v0.models.PayoutStatusFailed;
|
|
11720
11820
|
type Settlement =
|
|
11721
|
-
| io.flow.billing.v0.models.
|
|
11722
|
-
| io.flow.billing.v0.models.
|
|
11821
|
+
| io.flow.billing.v0.models.SettlementNoPayout
|
|
11822
|
+
| io.flow.billing.v0.models.SettlementPayout;
|
|
11723
11823
|
}
|
|
11724
11824
|
|
|
11725
11825
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -12866,8 +12966,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
12866
12966
|
| 'email'
|
|
12867
12967
|
| 'name'
|
|
12868
12968
|
| 'phone'
|
|
12869
|
-
| '
|
|
12870
|
-
| '
|
|
12969
|
+
| 'postalAddress'
|
|
12970
|
+
| 'phoneticName';
|
|
12871
12971
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
12872
12972
|
type ApplePayMerchantCapability =
|
|
12873
12973
|
| 'supports3DS'
|
|
@@ -12893,7 +12993,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
12893
12993
|
interface ApplePayLineItem {
|
|
12894
12994
|
readonly label: string;
|
|
12895
12995
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
12896
|
-
readonly amount:
|
|
12996
|
+
readonly amount: string;
|
|
12897
12997
|
}
|
|
12898
12998
|
|
|
12899
12999
|
interface ApplePayPaymentContact {
|
|
@@ -12944,7 +13044,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
12944
13044
|
interface ApplePayShippingMethod {
|
|
12945
13045
|
readonly label: string;
|
|
12946
13046
|
readonly detail: string;
|
|
12947
|
-
readonly amount:
|
|
13047
|
+
readonly amount: string;
|
|
12948
13048
|
readonly identifier: string;
|
|
12949
13049
|
}
|
|
12950
13050
|
}
|
|
@@ -13054,7 +13154,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13054
13154
|
|
|
13055
13155
|
interface SetupCompleted {
|
|
13056
13156
|
readonly discriminator: 'setup_completed';
|
|
13057
|
-
readonly
|
|
13157
|
+
readonly third_party_logistics_guid?: string;
|
|
13058
13158
|
}
|
|
13059
13159
|
|
|
13060
13160
|
interface SetupInProgress {
|
|
@@ -13431,6 +13531,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13431
13531
|
| 'duty_rates_data_event'
|
|
13432
13532
|
| 'integration_test'
|
|
13433
13533
|
| 'unit_test';
|
|
13534
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13434
13535
|
type BillingAllocationKey =
|
|
13435
13536
|
| 'freight_cost'
|
|
13436
13537
|
| 'adjustment'
|
|
@@ -13474,7 +13575,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13474
13575
|
| 'tax'
|
|
13475
13576
|
| 'all';
|
|
13476
13577
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
13477
|
-
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
13478
13578
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
13479
13579
|
type BillingTransactionType =
|
|
13480
13580
|
| 'manual'
|
|
@@ -13522,6 +13622,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13522
13622
|
| 'adjustment'
|
|
13523
13623
|
| 'reversal'
|
|
13524
13624
|
| 'channel_initiated';
|
|
13625
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject';
|
|
13525
13626
|
type ChannelOrderAcceptanceRejectionReason =
|
|
13526
13627
|
| 'unsupported_origin_country'
|
|
13527
13628
|
| 'unsupported_destination_country'
|
|
@@ -13531,10 +13632,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13531
13632
|
| 'missing_order_information'
|
|
13532
13633
|
| 'unsupported_payment_information'
|
|
13533
13634
|
| 'unsupported_shop_currency'
|
|
13534
|
-
| '
|
|
13635
|
+
| 'unsupported_free_order'
|
|
13535
13636
|
| 'extracting_distribution_info_failed'
|
|
13536
13637
|
| 'shipping_estimation_failed'
|
|
13537
|
-
| 'payment_authorization_failed'
|
|
13638
|
+
| 'payment_authorization_failed'
|
|
13639
|
+
| 'unsupported_subsidized_order'
|
|
13640
|
+
| 'unsupported_virtual_goods';
|
|
13538
13641
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
13539
13642
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
13540
13643
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -13932,6 +14035,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13932
14035
|
| 'return_policy_deleted'
|
|
13933
14036
|
| 'return_policy_item_result_upserted'
|
|
13934
14037
|
| 'return_policy_item_result_deleted'
|
|
14038
|
+
| 'catalog_settings_upserted'
|
|
14039
|
+
| 'catalog_settings_deleted'
|
|
13935
14040
|
| 'channel_order_acceptance_upserted'
|
|
13936
14041
|
| 'channel_order_acceptance_deleted'
|
|
13937
14042
|
| 'checkout_configuration_upserted'
|
|
@@ -14063,6 +14168,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14063
14168
|
| 'fulfillment_cancel'
|
|
14064
14169
|
| 'order_shipped'
|
|
14065
14170
|
| 'items_shipped'
|
|
14171
|
+
| 'organization_business_entity_deleted'
|
|
14172
|
+
| 'organization_business_entity_upserted'
|
|
14066
14173
|
| 'organization_restriction_approval_upserted'
|
|
14067
14174
|
| 'organization_restriction_approval_deleted'
|
|
14068
14175
|
| 'internal_authorization_upserted'
|
|
@@ -14104,6 +14211,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14104
14211
|
| 'ratecard_service_fee_deleted'
|
|
14105
14212
|
| 'ratecard_lane_aggregate_upserted'
|
|
14106
14213
|
| 'ratecard_lane_aggregate_deleted'
|
|
14214
|
+
| 'ratecard_rate_level_upserted'
|
|
14215
|
+
| 'ratecard_rate_level_deleted'
|
|
14216
|
+
| 'ratecard_rate_level_ratecard_upserted'
|
|
14217
|
+
| 'ratecard_rate_level_ratecard_deleted'
|
|
14218
|
+
| 'ratecard_rate_level_organization_upserted'
|
|
14219
|
+
| 'ratecard_rate_level_organization_deleted'
|
|
14107
14220
|
| 'organization_restriction_snapshot_upserted'
|
|
14108
14221
|
| 'organization_restriction_snapshot_deleted'
|
|
14109
14222
|
| 'restriction_organization_status_upserted'
|
|
@@ -14397,6 +14510,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14397
14510
|
type RateSource = 'calculated' | 'market';
|
|
14398
14511
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
14399
14512
|
type RedirectReason = 'three_d_secure';
|
|
14513
|
+
type RejectionReason =
|
|
14514
|
+
| 'suspicious_behavior'
|
|
14515
|
+
| 'suspicious_past_activity'
|
|
14516
|
+
| 'risky_velocity'
|
|
14517
|
+
| 'previous_chargebacks'
|
|
14518
|
+
| 'restricted_party_screening';
|
|
14400
14519
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14401
14520
|
type ReportingScheme =
|
|
14402
14521
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -14532,20 +14651,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14532
14651
|
readonly accepted_at: string;
|
|
14533
14652
|
}
|
|
14534
14653
|
|
|
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
14654
|
interface AccountContact {
|
|
14550
14655
|
readonly id: string;
|
|
14551
14656
|
readonly email: string;
|
|
@@ -14659,11 +14764,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14659
14764
|
readonly rates: io.flow.internal.v0.models.AccountProcessingRates;
|
|
14660
14765
|
}
|
|
14661
14766
|
|
|
14662
|
-
interface AccountReference {
|
|
14663
|
-
readonly id: string;
|
|
14664
|
-
readonly currency: string;
|
|
14665
|
-
}
|
|
14666
|
-
|
|
14667
14767
|
interface AccountSettingLabelFees {
|
|
14668
14768
|
readonly flow?: io.flow.internal.v0.models.TieredFee;
|
|
14669
14769
|
readonly organization?: io.flow.internal.v0.models.TieredFee;
|
|
@@ -14720,6 +14820,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14720
14820
|
readonly pending: io.flow.common.v0.models.Price;
|
|
14721
14821
|
}
|
|
14722
14822
|
|
|
14823
|
+
interface AccountSummary {
|
|
14824
|
+
readonly id: string;
|
|
14825
|
+
readonly currency: string;
|
|
14826
|
+
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
14827
|
+
}
|
|
14828
|
+
|
|
14723
14829
|
interface AccountTransactionsExportRequest {
|
|
14724
14830
|
readonly discriminator: 'account_transactions_export_request';
|
|
14725
14831
|
readonly event_id: string;
|
|
@@ -14748,14 +14854,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14748
14854
|
readonly event_id: string;
|
|
14749
14855
|
readonly timestamp: string;
|
|
14750
14856
|
readonly organization: string;
|
|
14751
|
-
readonly account: io.flow.internal.v0.models.
|
|
14857
|
+
readonly account: io.flow.internal.v0.models.OrganizationAccount;
|
|
14752
14858
|
}
|
|
14753
14859
|
|
|
14754
14860
|
interface AccountUpsertedV2 {
|
|
14755
14861
|
readonly discriminator: 'account_upserted_v2';
|
|
14756
14862
|
readonly event_id: string;
|
|
14757
14863
|
readonly timestamp: string;
|
|
14758
|
-
readonly account: io.flow.internal.v0.models.
|
|
14864
|
+
readonly account: io.flow.internal.v0.models.FlowAccount;
|
|
14759
14865
|
}
|
|
14760
14866
|
|
|
14761
14867
|
interface ActionQuantity {
|
|
@@ -15304,11 +15410,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15304
15410
|
interface BankPayment {
|
|
15305
15411
|
readonly id: string;
|
|
15306
15412
|
readonly key: string;
|
|
15307
|
-
readonly account: io.flow.
|
|
15413
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
15308
15414
|
readonly reference?: string;
|
|
15309
|
-
readonly sent_on
|
|
15310
|
-
readonly status: io.flow.billing.v0.
|
|
15311
|
-
readonly expected_delivery_by
|
|
15415
|
+
readonly sent_on?: string;
|
|
15416
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
15417
|
+
readonly expected_delivery_by?: string;
|
|
15312
15418
|
readonly total: io.flow.common.v0.models.Price;
|
|
15313
15419
|
}
|
|
15314
15420
|
|
|
@@ -15330,16 +15436,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15330
15436
|
interface BankPaymentForm {
|
|
15331
15437
|
readonly account_id: string;
|
|
15332
15438
|
readonly reference?: string;
|
|
15333
|
-
readonly sent_on
|
|
15334
|
-
readonly expected_delivery_by
|
|
15439
|
+
readonly sent_on?: string;
|
|
15440
|
+
readonly expected_delivery_by?: string;
|
|
15335
15441
|
readonly amount: number;
|
|
15336
15442
|
readonly currency: string;
|
|
15337
15443
|
readonly transfer_transaction_ids: string[];
|
|
15338
15444
|
}
|
|
15339
15445
|
|
|
15340
15446
|
interface BankPaymentStatusForm {
|
|
15341
|
-
readonly code: io.flow.
|
|
15342
|
-
readonly
|
|
15447
|
+
readonly code: io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
15448
|
+
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
15343
15449
|
}
|
|
15344
15450
|
|
|
15345
15451
|
interface BankPaymentUpserted {
|
|
@@ -15515,30 +15621,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15515
15621
|
readonly id: string;
|
|
15516
15622
|
}
|
|
15517
15623
|
|
|
15518
|
-
interface BillingStatementPendingReview {
|
|
15519
|
-
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
15520
|
-
readonly statement: io.flow.internal.v0.models.BillingStatementSummary;
|
|
15521
|
-
}
|
|
15522
|
-
|
|
15523
15624
|
interface BillingStatementReference {
|
|
15524
15625
|
readonly id: string;
|
|
15525
15626
|
}
|
|
15526
15627
|
|
|
15527
|
-
interface BillingStatementReview {
|
|
15528
|
-
readonly id: string;
|
|
15529
|
-
readonly billing_statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
15530
|
-
readonly reviewed_by: io.flow.common.v0.models.UserReference;
|
|
15531
|
-
readonly reviewed_at: string;
|
|
15532
|
-
}
|
|
15533
|
-
|
|
15534
|
-
interface BillingStatementReviewForm {
|
|
15535
|
-
readonly reviewed_by_id: string;
|
|
15536
|
-
readonly reviewed_at: string;
|
|
15537
|
-
}
|
|
15538
|
-
|
|
15539
15628
|
interface BillingStatementSummary {
|
|
15540
15629
|
readonly id: string;
|
|
15541
|
-
readonly account: io.flow.
|
|
15630
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
15542
15631
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
15543
15632
|
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
15544
15633
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -15992,13 +16081,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15992
16081
|
}
|
|
15993
16082
|
|
|
15994
16083
|
interface CatalogSettings {
|
|
16084
|
+
readonly id: string;
|
|
15995
16085
|
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
15996
16086
|
}
|
|
15997
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
|
+
|
|
15998
16096
|
interface CatalogSettingsPutForm {
|
|
15999
16097
|
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
16000
16098
|
}
|
|
16001
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
|
+
|
|
16002
16108
|
interface CenterDefaults {
|
|
16003
16109
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
16004
16110
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
@@ -16098,7 +16204,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16098
16204
|
|
|
16099
16205
|
interface ChannelBillingStatement {
|
|
16100
16206
|
readonly id: string;
|
|
16101
|
-
readonly account: io.flow.
|
|
16207
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
16102
16208
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
16103
16209
|
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
16104
16210
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -18584,6 +18690,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18584
18690
|
readonly classified_by: string;
|
|
18585
18691
|
}
|
|
18586
18692
|
|
|
18693
|
+
interface CommercialInvoiceComparison {
|
|
18694
|
+
readonly urls: string[];
|
|
18695
|
+
}
|
|
18696
|
+
|
|
18587
18697
|
interface Compliance {
|
|
18588
18698
|
readonly id: string;
|
|
18589
18699
|
readonly destination: string;
|
|
@@ -18990,6 +19100,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18990
19100
|
readonly decline_reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
18991
19101
|
}
|
|
18992
19102
|
|
|
19103
|
+
interface DeclineReasonFraud {
|
|
19104
|
+
readonly discriminator: 'fraud';
|
|
19105
|
+
readonly rejection_reason: io.flow.internal.v0.enums.RejectionReason;
|
|
19106
|
+
}
|
|
19107
|
+
|
|
18993
19108
|
interface DecryptCipherForm {
|
|
18994
19109
|
readonly id: string;
|
|
18995
19110
|
readonly password: string;
|
|
@@ -19958,6 +20073,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19958
20073
|
readonly statements: number;
|
|
19959
20074
|
}
|
|
19960
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
|
+
|
|
19961
20088
|
interface FinancialMerchantCategory {
|
|
19962
20089
|
readonly id: string;
|
|
19963
20090
|
readonly iso_18245_4: string;
|
|
@@ -20072,6 +20199,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20072
20199
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
20073
20200
|
}
|
|
20074
20201
|
|
|
20202
|
+
interface FlowAccount {
|
|
20203
|
+
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
20204
|
+
readonly id: string;
|
|
20205
|
+
readonly currency: string;
|
|
20206
|
+
readonly updated_at: string;
|
|
20207
|
+
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
20208
|
+
readonly payment_schedule: io.flow.common.v0.unions.RepeatSchedule;
|
|
20209
|
+
readonly payment_conditions?: string;
|
|
20210
|
+
readonly deposit_rule?: io.flow.internal.v0.models.AccountDepositRule;
|
|
20211
|
+
readonly center_key?: string;
|
|
20212
|
+
readonly statistics: io.flow.internal.v0.models.AccountStatistics;
|
|
20213
|
+
readonly next_statement: io.flow.internal.v0.models.NextBillingStatement;
|
|
20214
|
+
readonly created_at: string;
|
|
20215
|
+
}
|
|
20216
|
+
|
|
20217
|
+
interface FlowChannelOrganization {
|
|
20218
|
+
readonly placeholder?: string;
|
|
20219
|
+
}
|
|
20220
|
+
|
|
20075
20221
|
interface FlowLabProject {
|
|
20076
20222
|
readonly id: string;
|
|
20077
20223
|
readonly key: string;
|
|
@@ -20392,6 +20538,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20392
20538
|
readonly transaction_created_at: string;
|
|
20393
20539
|
}
|
|
20394
20540
|
|
|
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';
|
|
20549
|
+
readonly organization_id: string;
|
|
20550
|
+
readonly num_events: number;
|
|
20551
|
+
}
|
|
20552
|
+
|
|
20395
20553
|
interface GiftCard {
|
|
20396
20554
|
readonly id: string;
|
|
20397
20555
|
readonly number: string;
|
|
@@ -22201,7 +22359,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22201
22359
|
|
|
22202
22360
|
interface MainTransaction {
|
|
22203
22361
|
readonly id: string;
|
|
22204
|
-
readonly account: io.flow.
|
|
22362
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
22205
22363
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22206
22364
|
readonly value: io.flow.common.v0.models.Price;
|
|
22207
22365
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -22209,7 +22367,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22209
22367
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22210
22368
|
readonly created_at: string;
|
|
22211
22369
|
readonly original_at?: string;
|
|
22212
|
-
readonly disposition?: io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
22213
22370
|
}
|
|
22214
22371
|
|
|
22215
22372
|
interface MainTransactionDeleted {
|
|
@@ -22644,6 +22801,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22644
22801
|
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
22645
22802
|
readonly setup_completed_at?: string;
|
|
22646
22803
|
readonly gmv: number;
|
|
22804
|
+
readonly health_score: number;
|
|
22647
22805
|
}
|
|
22648
22806
|
|
|
22649
22807
|
interface OneTimeTokenRedemptionForm {
|
|
@@ -22962,7 +23120,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22962
23120
|
|
|
22963
23121
|
interface OrganizationBillingStatement {
|
|
22964
23122
|
readonly id: string;
|
|
22965
|
-
readonly account: io.flow.
|
|
23123
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
22966
23124
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
22967
23125
|
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
22968
23126
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -22989,6 +23147,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22989
23147
|
readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
22990
23148
|
}
|
|
22991
23149
|
|
|
23150
|
+
interface OrganizationBusinessEntity {
|
|
23151
|
+
readonly id: string;
|
|
23152
|
+
readonly name: string;
|
|
23153
|
+
readonly streets: string[];
|
|
23154
|
+
readonly city: string;
|
|
23155
|
+
readonly province?: string;
|
|
23156
|
+
readonly postal?: string;
|
|
23157
|
+
readonly country: string;
|
|
23158
|
+
}
|
|
23159
|
+
|
|
23160
|
+
interface OrganizationBusinessEntityDeleted {
|
|
23161
|
+
readonly discriminator: 'organization_business_entity_deleted';
|
|
23162
|
+
readonly event_id: string;
|
|
23163
|
+
readonly timestamp: string;
|
|
23164
|
+
readonly organization: string;
|
|
23165
|
+
readonly business_entity: io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
23166
|
+
readonly id: string;
|
|
23167
|
+
}
|
|
23168
|
+
|
|
23169
|
+
interface OrganizationBusinessEntityUpserted {
|
|
23170
|
+
readonly discriminator: 'organization_business_entity_upserted';
|
|
23171
|
+
readonly event_id: string;
|
|
23172
|
+
readonly timestamp: string;
|
|
23173
|
+
readonly organization: string;
|
|
23174
|
+
readonly business_entity: io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
23175
|
+
}
|
|
23176
|
+
|
|
22992
23177
|
interface OrganizationCurrencySetting {
|
|
22993
23178
|
readonly id: string;
|
|
22994
23179
|
readonly organization: string;
|
|
@@ -23539,9 +23724,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23539
23724
|
}
|
|
23540
23725
|
|
|
23541
23726
|
interface PendingBankPayment {
|
|
23542
|
-
readonly
|
|
23543
|
-
readonly account: io.flow.internal.v0.models.
|
|
23544
|
-
readonly recommended_reference: string;
|
|
23727
|
+
readonly id: string;
|
|
23728
|
+
readonly account: io.flow.internal.v0.models.AccountSummary;
|
|
23545
23729
|
readonly total: io.flow.common.v0.models.Price;
|
|
23546
23730
|
readonly details: io.flow.internal.v0.models.PendingBankPaymentDetail[];
|
|
23547
23731
|
}
|
|
@@ -23699,7 +23883,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23699
23883
|
readonly flow_rate: number;
|
|
23700
23884
|
readonly flow_margin: number;
|
|
23701
23885
|
readonly revenue_share?: io.flow.common.v0.models.Price;
|
|
23702
|
-
readonly disposition?: io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
23703
23886
|
readonly id: string;
|
|
23704
23887
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
23705
23888
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -23948,6 +24131,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23948
24131
|
readonly rate_freshness_summary: io.flow.internal.v0.models.RateFreshnessSummary;
|
|
23949
24132
|
}
|
|
23950
24133
|
|
|
24134
|
+
interface RateLevel {
|
|
24135
|
+
readonly id: string;
|
|
24136
|
+
readonly name: string;
|
|
24137
|
+
}
|
|
24138
|
+
|
|
24139
|
+
interface RateLevelForm {
|
|
24140
|
+
readonly name: string;
|
|
24141
|
+
}
|
|
24142
|
+
|
|
24143
|
+
interface RateLevelOrganization {
|
|
24144
|
+
readonly id: string;
|
|
24145
|
+
readonly organization_id: string;
|
|
24146
|
+
readonly rate_level_id: string;
|
|
24147
|
+
readonly effective_at: string;
|
|
24148
|
+
}
|
|
24149
|
+
|
|
24150
|
+
interface RateLevelOrganizationForm {
|
|
24151
|
+
readonly rate_level_id: string;
|
|
24152
|
+
readonly effective_at: string;
|
|
24153
|
+
}
|
|
24154
|
+
|
|
24155
|
+
interface RateLevelRatecard {
|
|
24156
|
+
readonly id: string;
|
|
24157
|
+
readonly ratecard_id: string;
|
|
24158
|
+
readonly rate_level_id: string;
|
|
24159
|
+
}
|
|
24160
|
+
|
|
24161
|
+
interface RateLevelRatecardForm {
|
|
24162
|
+
readonly ratecard_id: string;
|
|
24163
|
+
}
|
|
24164
|
+
|
|
23951
24165
|
interface RateNameSummary {
|
|
23952
24166
|
readonly name: string;
|
|
23953
24167
|
readonly long_name?: string;
|
|
@@ -24083,6 +24297,50 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24083
24297
|
readonly data: io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
24084
24298
|
}
|
|
24085
24299
|
|
|
24300
|
+
interface RatecardRateLevelDeleted {
|
|
24301
|
+
readonly discriminator: 'ratecard_rate_level_deleted';
|
|
24302
|
+
readonly event_id: string;
|
|
24303
|
+
readonly timestamp: string;
|
|
24304
|
+
readonly rate_level: io.flow.internal.v0.models.RateLevel;
|
|
24305
|
+
}
|
|
24306
|
+
|
|
24307
|
+
interface RatecardRateLevelOrganizationDeleted {
|
|
24308
|
+
readonly discriminator: 'ratecard_rate_level_organization_deleted';
|
|
24309
|
+
readonly event_id: string;
|
|
24310
|
+
readonly timestamp: string;
|
|
24311
|
+
readonly organization: string;
|
|
24312
|
+
readonly rate_level_organization: io.flow.internal.v0.models.RateLevelOrganization;
|
|
24313
|
+
}
|
|
24314
|
+
|
|
24315
|
+
interface RatecardRateLevelOrganizationUpserted {
|
|
24316
|
+
readonly discriminator: 'ratecard_rate_level_organization_upserted';
|
|
24317
|
+
readonly event_id: string;
|
|
24318
|
+
readonly timestamp: string;
|
|
24319
|
+
readonly organization: string;
|
|
24320
|
+
readonly rate_level_organization: io.flow.internal.v0.models.RateLevelOrganization;
|
|
24321
|
+
}
|
|
24322
|
+
|
|
24323
|
+
interface RatecardRateLevelRatecardDeleted {
|
|
24324
|
+
readonly discriminator: 'ratecard_rate_level_ratecard_deleted';
|
|
24325
|
+
readonly event_id: string;
|
|
24326
|
+
readonly timestamp: string;
|
|
24327
|
+
readonly rate_level_ratecard: io.flow.internal.v0.models.RateLevelRatecard;
|
|
24328
|
+
}
|
|
24329
|
+
|
|
24330
|
+
interface RatecardRateLevelRatecardUpserted {
|
|
24331
|
+
readonly discriminator: 'ratecard_rate_level_ratecard_upserted';
|
|
24332
|
+
readonly event_id: string;
|
|
24333
|
+
readonly timestamp: string;
|
|
24334
|
+
readonly rate_level_ratecard: io.flow.internal.v0.models.RateLevelRatecard;
|
|
24335
|
+
}
|
|
24336
|
+
|
|
24337
|
+
interface RatecardRateLevelUpserted {
|
|
24338
|
+
readonly discriminator: 'ratecard_rate_level_upserted';
|
|
24339
|
+
readonly event_id: string;
|
|
24340
|
+
readonly timestamp: string;
|
|
24341
|
+
readonly rate_level: io.flow.internal.v0.models.RateLevel;
|
|
24342
|
+
}
|
|
24343
|
+
|
|
24086
24344
|
interface RatecardServiceFeeDeleted {
|
|
24087
24345
|
readonly discriminator: 'ratecard_service_fee_deleted';
|
|
24088
24346
|
readonly event_id: string;
|
|
@@ -24315,6 +24573,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24315
24573
|
readonly full_review_start_date?: string;
|
|
24316
24574
|
readonly full_review_end_date?: string;
|
|
24317
24575
|
readonly reason?: string;
|
|
24576
|
+
readonly updated_at: string;
|
|
24318
24577
|
}
|
|
24319
24578
|
|
|
24320
24579
|
interface RestrictionOrganizationStatusDeleted {
|
|
@@ -26572,7 +26831,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26572
26831
|
| io.flow.internal.v0.models.ContentLabel
|
|
26573
26832
|
| io.flow.internal.v0.models.Load;
|
|
26574
26833
|
type DeclineReason =
|
|
26575
|
-
io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance
|
|
26834
|
+
| io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance
|
|
26835
|
+
| io.flow.internal.v0.models.DeclineReasonFraud;
|
|
26576
26836
|
type DiscountRequestOfferForm =
|
|
26577
26837
|
io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
26578
26838
|
type DisputeDetails =
|
|
@@ -26644,6 +26904,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26644
26904
|
| io.flow.internal.v0.models.ReturnPolicyDeleted
|
|
26645
26905
|
| io.flow.internal.v0.models.ReturnPolicyItemResultUpserted
|
|
26646
26906
|
| io.flow.internal.v0.models.ReturnPolicyItemResultDeleted
|
|
26907
|
+
| io.flow.internal.v0.models.CatalogSettingsUpserted
|
|
26908
|
+
| io.flow.internal.v0.models.CatalogSettingsDeleted
|
|
26647
26909
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted
|
|
26648
26910
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted
|
|
26649
26911
|
| io.flow.internal.v0.models.CheckoutConfigurationUpserted
|
|
@@ -26775,6 +27037,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26775
27037
|
| io.flow.internal.v0.models.FulfillmentCancel
|
|
26776
27038
|
| io.flow.internal.v0.models.OrderShipped
|
|
26777
27039
|
| io.flow.internal.v0.models.ItemsShipped
|
|
27040
|
+
| io.flow.internal.v0.models.OrganizationBusinessEntityDeleted
|
|
27041
|
+
| io.flow.internal.v0.models.OrganizationBusinessEntityUpserted
|
|
26778
27042
|
| io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted
|
|
26779
27043
|
| io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted
|
|
26780
27044
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
@@ -26816,6 +27080,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26816
27080
|
| io.flow.internal.v0.models.RatecardServiceFeeDeleted
|
|
26817
27081
|
| io.flow.internal.v0.models.RatecardLaneAggregateUpserted
|
|
26818
27082
|
| io.flow.internal.v0.models.RatecardLaneAggregateDeleted
|
|
27083
|
+
| io.flow.internal.v0.models.RatecardRateLevelUpserted
|
|
27084
|
+
| io.flow.internal.v0.models.RatecardRateLevelDeleted
|
|
27085
|
+
| io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted
|
|
27086
|
+
| io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted
|
|
27087
|
+
| io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted
|
|
27088
|
+
| io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted
|
|
26819
27089
|
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted
|
|
26820
27090
|
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted
|
|
26821
27091
|
| io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted
|
|
@@ -26880,6 +27150,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26880
27150
|
type FuelSurchargeServiceFeePutForm =
|
|
26881
27151
|
| io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm
|
|
26882
27152
|
| io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
27153
|
+
type GenerateLoad =
|
|
27154
|
+
| io.flow.internal.v0.models.GenerateLoadSingleOrg
|
|
27155
|
+
| io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
26883
27156
|
type GlobalSearchResult =
|
|
26884
27157
|
| io.flow.internal.v0.models.SearchExperienceSummary
|
|
26885
27158
|
| io.flow.internal.v0.models.SearchExperimentSummary
|
|
@@ -27114,7 +27387,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27114
27387
|
}
|
|
27115
27388
|
|
|
27116
27389
|
export type Acceptance = io.flow.internal.v0.models.Acceptance;
|
|
27117
|
-
export type Account = io.flow.internal.v0.models.Account;
|
|
27118
27390
|
export type AccountContact = io.flow.internal.v0.models.AccountContact;
|
|
27119
27391
|
export type AccountContactDeleted =
|
|
27120
27392
|
io.flow.internal.v0.models.AccountContactDeleted;
|
|
@@ -27138,7 +27410,6 @@ export type AccountProcessingRatesForm =
|
|
|
27138
27410
|
io.flow.internal.v0.models.AccountProcessingRatesForm;
|
|
27139
27411
|
export type AccountProcessingRatesUpserted =
|
|
27140
27412
|
io.flow.internal.v0.models.AccountProcessingRatesUpserted;
|
|
27141
|
-
export type AccountReference = io.flow.internal.v0.models.AccountReference;
|
|
27142
27413
|
export type AccountSettingLabelFees =
|
|
27143
27414
|
io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
27144
27415
|
export type AccountSettingLiabilitiesMethod =
|
|
@@ -27150,6 +27421,7 @@ export type AccountSettingsUpserted =
|
|
|
27150
27421
|
io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
27151
27422
|
export type AccountSource = io.flow.internal.v0.models.AccountSource;
|
|
27152
27423
|
export type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
|
|
27424
|
+
export type AccountSummary = io.flow.internal.v0.models.AccountSummary;
|
|
27153
27425
|
export type AccountTransactionsExportRequest =
|
|
27154
27426
|
io.flow.internal.v0.models.AccountTransactionsExportRequest;
|
|
27155
27427
|
export type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
@@ -27308,6 +27580,8 @@ export type BankPaymentDeleted = io.flow.internal.v0.models.BankPaymentDeleted;
|
|
|
27308
27580
|
export type BankPaymentDeletedV2 =
|
|
27309
27581
|
io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
27310
27582
|
export type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
27583
|
+
export type BankPaymentStatusCode =
|
|
27584
|
+
io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
27311
27585
|
export type BankPaymentStatusForm =
|
|
27312
27586
|
io.flow.internal.v0.models.BankPaymentStatusForm;
|
|
27313
27587
|
export type BankPaymentUpserted =
|
|
@@ -27366,16 +27640,8 @@ export type BillingStatementBatchUpserted =
|
|
|
27366
27640
|
io.flow.internal.v0.models.BillingStatementBatchUpserted;
|
|
27367
27641
|
export type BillingStatementDeleted =
|
|
27368
27642
|
io.flow.internal.v0.models.BillingStatementDeleted;
|
|
27369
|
-
export type BillingStatementPendingReview =
|
|
27370
|
-
io.flow.internal.v0.models.BillingStatementPendingReview;
|
|
27371
27643
|
export type BillingStatementReference =
|
|
27372
27644
|
io.flow.internal.v0.models.BillingStatementReference;
|
|
27373
|
-
export type BillingStatementReview =
|
|
27374
|
-
io.flow.internal.v0.models.BillingStatementReview;
|
|
27375
|
-
export type BillingStatementReviewForm =
|
|
27376
|
-
io.flow.internal.v0.models.BillingStatementReviewForm;
|
|
27377
|
-
export type BillingStatementReviewStatus =
|
|
27378
|
-
io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
27379
27645
|
export type BillingStatementSummary =
|
|
27380
27646
|
io.flow.internal.v0.models.BillingStatementSummary;
|
|
27381
27647
|
export type BillingStatementTotals =
|
|
@@ -27517,8 +27783,12 @@ export type CatalogItemRegionAvailabilitiesData =
|
|
|
27517
27783
|
export type CatalogItemRegionAvailabilitiesPublished =
|
|
27518
27784
|
io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
|
|
27519
27785
|
export type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
|
|
27786
|
+
export type CatalogSettingsDeleted =
|
|
27787
|
+
io.flow.internal.v0.models.CatalogSettingsDeleted;
|
|
27520
27788
|
export type CatalogSettingsPutForm =
|
|
27521
27789
|
io.flow.internal.v0.models.CatalogSettingsPutForm;
|
|
27790
|
+
export type CatalogSettingsUpserted =
|
|
27791
|
+
io.flow.internal.v0.models.CatalogSettingsUpserted;
|
|
27522
27792
|
export type CenterDefaults = io.flow.internal.v0.models.CenterDefaults;
|
|
27523
27793
|
export type CenterDefaultsForm = io.flow.internal.v0.models.CenterDefaultsForm;
|
|
27524
27794
|
export type CenterQueryBuilder = io.flow.internal.v0.models.CenterQueryBuilder;
|
|
@@ -27567,6 +27837,8 @@ export type ChannelOrderAcceptance =
|
|
|
27567
27837
|
io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
27568
27838
|
export type ChannelOrderAcceptanceDeleted =
|
|
27569
27839
|
io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted;
|
|
27840
|
+
export type ChannelOrderAcceptanceErrorAction =
|
|
27841
|
+
io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
27570
27842
|
export type ChannelOrderAcceptanceForm =
|
|
27571
27843
|
io.flow.internal.v0.models.ChannelOrderAcceptanceForm;
|
|
27572
27844
|
export type ChannelOrderAcceptanceReason =
|
|
@@ -28682,6 +28954,8 @@ export type ClassificationWrapper =
|
|
|
28682
28954
|
export type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
28683
28955
|
export type ClassifiedProductDetail =
|
|
28684
28956
|
io.flow.internal.v0.models.ClassifiedProductDetail;
|
|
28957
|
+
export type CommercialInvoiceComparison =
|
|
28958
|
+
io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
28685
28959
|
export type Compliance = io.flow.internal.v0.models.Compliance;
|
|
28686
28960
|
export type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
28687
28961
|
export type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
|
|
@@ -28784,6 +29058,7 @@ export type Decision = io.flow.internal.v0.models.Decision;
|
|
|
28784
29058
|
export type DeclineReason = io.flow.internal.v0.unions.DeclineReason;
|
|
28785
29059
|
export type DeclineReasonChannelOrderAcceptance =
|
|
28786
29060
|
io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance;
|
|
29061
|
+
export type DeclineReasonFraud = io.flow.internal.v0.models.DeclineReasonFraud;
|
|
28787
29062
|
export type DecryptCipherForm = io.flow.internal.v0.models.DecryptCipherForm;
|
|
28788
29063
|
export type DecryptedCipher = io.flow.internal.v0.models.DecryptedCipher;
|
|
28789
29064
|
export type DeleteIndexTask = io.flow.internal.v0.models.DeleteIndexTask;
|
|
@@ -29043,6 +29318,9 @@ export type FileConfirmationForm =
|
|
|
29043
29318
|
io.flow.internal.v0.models.FileConfirmationForm;
|
|
29044
29319
|
export type FileMetadata = io.flow.internal.v0.models.FileMetadata;
|
|
29045
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;
|
|
29046
29324
|
export type FinancialMerchantCategory =
|
|
29047
29325
|
io.flow.internal.v0.models.FinancialMerchantCategory;
|
|
29048
29326
|
export type FinancialReportingResponsibleParty =
|
|
@@ -29067,7 +29345,10 @@ export type FiservMerchantModificationForm =
|
|
|
29067
29345
|
io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
29068
29346
|
export type FiservMerchantPutForm =
|
|
29069
29347
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
29348
|
+
export type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
29070
29349
|
export type FlowApp = io.flow.internal.v0.enums.FlowApp;
|
|
29350
|
+
export type FlowChannelOrganization =
|
|
29351
|
+
io.flow.internal.v0.models.FlowChannelOrganization;
|
|
29071
29352
|
export type FlowLabProject = io.flow.internal.v0.models.FlowLabProject;
|
|
29072
29353
|
export type FlowLabProjectPostForm =
|
|
29073
29354
|
io.flow.internal.v0.models.FlowLabProjectPostForm;
|
|
@@ -29152,6 +29433,11 @@ export type FxRevenueRecognitionRate =
|
|
|
29152
29433
|
io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
29153
29434
|
export type FxRevenueRecognitionSource =
|
|
29154
29435
|
io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
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;
|
|
29155
29441
|
export type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
29156
29442
|
export type GiftCardAuthorizationError =
|
|
29157
29443
|
io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
@@ -29769,6 +30055,12 @@ export type OrganizationBooleanValueDeleted =
|
|
|
29769
30055
|
io.flow.internal.v0.models.OrganizationBooleanValueDeleted;
|
|
29770
30056
|
export type OrganizationBooleanValueUpserted =
|
|
29771
30057
|
io.flow.internal.v0.models.OrganizationBooleanValueUpserted;
|
|
30058
|
+
export type OrganizationBusinessEntity =
|
|
30059
|
+
io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
30060
|
+
export type OrganizationBusinessEntityDeleted =
|
|
30061
|
+
io.flow.internal.v0.models.OrganizationBusinessEntityDeleted;
|
|
30062
|
+
export type OrganizationBusinessEntityUpserted =
|
|
30063
|
+
io.flow.internal.v0.models.OrganizationBusinessEntityUpserted;
|
|
29772
30064
|
export type OrganizationCapability =
|
|
29773
30065
|
io.flow.internal.v0.enums.OrganizationCapability;
|
|
29774
30066
|
export type OrganizationCurrencySetting =
|
|
@@ -30042,6 +30334,15 @@ export type RateFreshnessSummaryDeleted =
|
|
|
30042
30334
|
io.flow.internal.v0.models.RateFreshnessSummaryDeleted;
|
|
30043
30335
|
export type RateFreshnessSummaryUpserted =
|
|
30044
30336
|
io.flow.internal.v0.models.RateFreshnessSummaryUpserted;
|
|
30337
|
+
export type RateLevel = io.flow.internal.v0.models.RateLevel;
|
|
30338
|
+
export type RateLevelForm = io.flow.internal.v0.models.RateLevelForm;
|
|
30339
|
+
export type RateLevelOrganization =
|
|
30340
|
+
io.flow.internal.v0.models.RateLevelOrganization;
|
|
30341
|
+
export type RateLevelOrganizationForm =
|
|
30342
|
+
io.flow.internal.v0.models.RateLevelOrganizationForm;
|
|
30343
|
+
export type RateLevelRatecard = io.flow.internal.v0.models.RateLevelRatecard;
|
|
30344
|
+
export type RateLevelRatecardForm =
|
|
30345
|
+
io.flow.internal.v0.models.RateLevelRatecardForm;
|
|
30045
30346
|
export type RateNameSummary = io.flow.internal.v0.models.RateNameSummary;
|
|
30046
30347
|
export type RateSource = io.flow.internal.v0.enums.RateSource;
|
|
30047
30348
|
export type RateSourceCompositionSummary =
|
|
@@ -30070,6 +30371,18 @@ export type RatecardLaneAggregateUpserted =
|
|
|
30070
30371
|
io.flow.internal.v0.models.RatecardLaneAggregateUpserted;
|
|
30071
30372
|
export type RatecardLanesImportRequest =
|
|
30072
30373
|
io.flow.internal.v0.models.RatecardLanesImportRequest;
|
|
30374
|
+
export type RatecardRateLevelDeleted =
|
|
30375
|
+
io.flow.internal.v0.models.RatecardRateLevelDeleted;
|
|
30376
|
+
export type RatecardRateLevelOrganizationDeleted =
|
|
30377
|
+
io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted;
|
|
30378
|
+
export type RatecardRateLevelOrganizationUpserted =
|
|
30379
|
+
io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted;
|
|
30380
|
+
export type RatecardRateLevelRatecardDeleted =
|
|
30381
|
+
io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted;
|
|
30382
|
+
export type RatecardRateLevelRatecardUpserted =
|
|
30383
|
+
io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted;
|
|
30384
|
+
export type RatecardRateLevelUpserted =
|
|
30385
|
+
io.flow.internal.v0.models.RatecardRateLevelUpserted;
|
|
30073
30386
|
export type RatecardServiceFeeDeleted =
|
|
30074
30387
|
io.flow.internal.v0.models.RatecardServiceFeeDeleted;
|
|
30075
30388
|
export type RatecardServiceFeeUpserted =
|
|
@@ -30105,6 +30418,7 @@ export type RegisteredExporterTariffEligibilityData =
|
|
|
30105
30418
|
io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
30106
30419
|
export type RegisteredExporterTariffEligibilityForm =
|
|
30107
30420
|
io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
30421
|
+
export type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
30108
30422
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
30109
30423
|
export type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
30110
30424
|
export type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|