@flowio/types 11.24.33 → 11.24.35
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 +278 -40
- package/dist/api.d.ts +32 -1
- package/package.json +2 -2
- package/src/api-internal.ts +369 -53
- package/src/api.ts +42 -1
package/src/api-internal.ts
CHANGED
|
@@ -381,6 +381,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
381
381
|
| 'inactive'
|
|
382
382
|
| 'deactivated'
|
|
383
383
|
| 'provisioned';
|
|
384
|
+
type OrganizationType = 'standalone' | 'channel';
|
|
384
385
|
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
385
386
|
type Role = 'admin' | 'member';
|
|
386
387
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
@@ -682,6 +683,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
682
683
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
683
684
|
readonly created_at?: string;
|
|
684
685
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
686
|
+
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
685
687
|
}
|
|
686
688
|
|
|
687
689
|
interface OrganizationDefaults {
|
|
@@ -1844,7 +1846,12 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1844
1846
|
| 'reversed';
|
|
1845
1847
|
type AvsCode = 'match' | 'partial' | 'unsupported' | 'no_match';
|
|
1846
1848
|
type CaptureDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1847
|
-
type CaptureStatus =
|
|
1849
|
+
type CaptureStatus =
|
|
1850
|
+
| 'initiated'
|
|
1851
|
+
| 'pending'
|
|
1852
|
+
| 'succeeded'
|
|
1853
|
+
| 'failed'
|
|
1854
|
+
| 'canceled';
|
|
1848
1855
|
type CardErrorCode =
|
|
1849
1856
|
| 'invalid_address'
|
|
1850
1857
|
| 'invalid_currency'
|
|
@@ -3805,6 +3812,7 @@ declare namespace io.flow.customer.v0.models {
|
|
|
3805
3812
|
}
|
|
3806
3813
|
|
|
3807
3814
|
declare namespace io.flow.label.v0.enums {
|
|
3815
|
+
type CostEstimateSource = 'flow' | 'channel';
|
|
3808
3816
|
type Direction = 'outbound' | 'return';
|
|
3809
3817
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3810
3818
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
@@ -3877,9 +3885,11 @@ declare namespace io.flow.label.v0.models {
|
|
|
3877
3885
|
interface ShippingLabel {
|
|
3878
3886
|
readonly id: string;
|
|
3879
3887
|
readonly hop?: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
3888
|
+
readonly reference_id?: string;
|
|
3880
3889
|
readonly attributes: Record<string, string>;
|
|
3881
3890
|
readonly carrier_tracking_number: string;
|
|
3882
3891
|
readonly carrier_tracking_number_url: string;
|
|
3892
|
+
readonly cost_estimate_source?: io.flow.label.v0.enums.CostEstimateSource;
|
|
3883
3893
|
readonly cost?: io.flow.common.v0.models.Price;
|
|
3884
3894
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3885
3895
|
readonly flow_tracking_number: string;
|
|
@@ -5186,7 +5196,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
5186
5196
|
| 'SECOND_CHARGEBACK'
|
|
5187
5197
|
| 'PREARBITRATION_WON'
|
|
5188
5198
|
| 'PREARBITRATION_LOST';
|
|
5189
|
-
type
|
|
5199
|
+
type HttpRedirectMethod = 'GET' | 'POST';
|
|
5190
5200
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
5191
5201
|
type PaymentMethod =
|
|
5192
5202
|
| 'ach'
|
|
@@ -5195,6 +5205,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
5195
5205
|
| 'amex'
|
|
5196
5206
|
| 'bankTransfer_IBAN'
|
|
5197
5207
|
| 'bcmc'
|
|
5208
|
+
| 'bcmc_mobile'
|
|
5198
5209
|
| 'cartebancaire'
|
|
5199
5210
|
| 'cup'
|
|
5200
5211
|
| 'diners'
|
|
@@ -5257,6 +5268,11 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5257
5268
|
readonly currency: string;
|
|
5258
5269
|
}
|
|
5259
5270
|
|
|
5271
|
+
interface Applepay {
|
|
5272
|
+
readonly type: 'applepay';
|
|
5273
|
+
readonly applePayToken: string;
|
|
5274
|
+
}
|
|
5275
|
+
|
|
5260
5276
|
interface Authentication {
|
|
5261
5277
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
5262
5278
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -5284,6 +5300,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5284
5300
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
5285
5301
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
5286
5302
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
5303
|
+
readonly mcc?: string;
|
|
5304
|
+
readonly metadata?: any /*object*/;
|
|
5287
5305
|
}
|
|
5288
5306
|
|
|
5289
5307
|
interface AuthorizeRequest3D {
|
|
@@ -5440,6 +5458,14 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5440
5458
|
readonly paymentData?: string;
|
|
5441
5459
|
}
|
|
5442
5460
|
|
|
5461
|
+
interface PaymentDetailsV663Ds2Challenge {
|
|
5462
|
+
readonly 'threeds2.challengeResult': string;
|
|
5463
|
+
}
|
|
5464
|
+
|
|
5465
|
+
interface PaymentDetailsV663Ds2Fingerprint {
|
|
5466
|
+
readonly 'threeds2.fingerprint': string;
|
|
5467
|
+
}
|
|
5468
|
+
|
|
5443
5469
|
interface PaymentRequest {
|
|
5444
5470
|
readonly reference: string;
|
|
5445
5471
|
readonly merchantAccount: string;
|
|
@@ -5461,7 +5487,11 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5461
5487
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
5462
5488
|
readonly origin?: string;
|
|
5463
5489
|
readonly channel?: io.flow.adyen.v0.enums.Channel;
|
|
5464
|
-
readonly
|
|
5490
|
+
readonly returnUrl?: string;
|
|
5491
|
+
readonly mcc?: string;
|
|
5492
|
+
readonly metadata?: any /*object*/;
|
|
5493
|
+
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5494
|
+
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5465
5495
|
}
|
|
5466
5496
|
|
|
5467
5497
|
interface PaymentResponse {
|
|
@@ -5478,12 +5508,43 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5478
5508
|
interface PaymentResponseAdditionalData {
|
|
5479
5509
|
readonly authCode?: string;
|
|
5480
5510
|
readonly avsResultRaw?: string;
|
|
5511
|
+
readonly avsResult?: string;
|
|
5481
5512
|
readonly cvcResultRaw?: string;
|
|
5513
|
+
readonly cvcResult?: string;
|
|
5514
|
+
readonly refusalReasonRaw?: string;
|
|
5482
5515
|
readonly liabilityShift?: string;
|
|
5483
5516
|
readonly threeDAuthenticated?: string;
|
|
5484
5517
|
readonly threeDAuthenticatedResponse?: string;
|
|
5485
5518
|
readonly threeDOffered?: string;
|
|
5486
5519
|
readonly threeDOfferedResponse?: string;
|
|
5520
|
+
readonly threeDSVersion?: string;
|
|
5521
|
+
readonly eci?: string;
|
|
5522
|
+
readonly scaExemptionRequested?: string;
|
|
5523
|
+
readonly paymentMethod?: string;
|
|
5524
|
+
readonly paymentMethodVariant?: string;
|
|
5525
|
+
readonly tokenTxVariant?: string;
|
|
5526
|
+
readonly acquirerCode?: string;
|
|
5527
|
+
readonly acquirerAccountCode?: string;
|
|
5528
|
+
readonly cardPaymentMethod?: string;
|
|
5529
|
+
readonly coBrandedWith?: string;
|
|
5530
|
+
readonly cardIssuingCountry?: string;
|
|
5531
|
+
readonly cardIssuingCurrency?: string;
|
|
5532
|
+
readonly cardIssuingBank?: string;
|
|
5533
|
+
readonly cardBin?: string;
|
|
5534
|
+
readonly issuerBin?: string;
|
|
5535
|
+
readonly cardSummary?: string;
|
|
5536
|
+
readonly untokenisedCardSummary?: string;
|
|
5537
|
+
readonly ownerName?: string;
|
|
5538
|
+
readonly bankName?: string;
|
|
5539
|
+
readonly issuerCountry?: string;
|
|
5540
|
+
readonly iban?: string;
|
|
5541
|
+
readonly bic?: string;
|
|
5542
|
+
readonly iDealConsumerAccountNumber?: string;
|
|
5543
|
+
readonly iDealConsumerBIC?: string;
|
|
5544
|
+
readonly iDealConsumerCity?: string;
|
|
5545
|
+
readonly iDealConsumerIBAN?: string;
|
|
5546
|
+
readonly iDealConsumerName?: string;
|
|
5547
|
+
readonly iDealTransactionId?: string;
|
|
5487
5548
|
}
|
|
5488
5549
|
|
|
5489
5550
|
interface Recurring {
|
|
@@ -5492,7 +5553,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5492
5553
|
|
|
5493
5554
|
interface Redirect {
|
|
5494
5555
|
readonly data?: io.flow.adyen.v0.models.RedirectData;
|
|
5495
|
-
readonly method?: io.flow.adyen.v0.enums.
|
|
5556
|
+
readonly method?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5496
5557
|
readonly url?: string;
|
|
5497
5558
|
}
|
|
5498
5559
|
|
|
@@ -5517,6 +5578,15 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5517
5578
|
readonly cvc?: string;
|
|
5518
5579
|
}
|
|
5519
5580
|
|
|
5581
|
+
interface SdkV3OnCompleteData {
|
|
5582
|
+
readonly details: any /*object*/;
|
|
5583
|
+
readonly payment_data?: string;
|
|
5584
|
+
}
|
|
5585
|
+
|
|
5586
|
+
interface SdkV3OnCompleteResult {
|
|
5587
|
+
readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
5588
|
+
}
|
|
5589
|
+
|
|
5520
5590
|
interface ThreeDSecureData {
|
|
5521
5591
|
readonly authenticationResponse?: string;
|
|
5522
5592
|
readonly cavv?: string;
|
|
@@ -5548,7 +5618,9 @@ declare namespace io.flow.adyen.v0.unions {
|
|
|
5548
5618
|
type BrowserInfo =
|
|
5549
5619
|
| io.flow.adyen.v0.models.BrowserInfo3Ds1
|
|
5550
5620
|
| io.flow.adyen.v0.models.BrowserInfo3Ds2;
|
|
5551
|
-
type PaymentMethodData =
|
|
5621
|
+
type PaymentMethodData =
|
|
5622
|
+
| io.flow.adyen.v0.models.Scheme
|
|
5623
|
+
| io.flow.adyen.v0.models.Applepay;
|
|
5552
5624
|
}
|
|
5553
5625
|
|
|
5554
5626
|
declare namespace io.flow.order.management.v0.enums {
|
|
@@ -7831,6 +7903,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7831
7903
|
interface PaymentCaptureForm {
|
|
7832
7904
|
readonly amount?: number;
|
|
7833
7905
|
readonly currency?: string;
|
|
7906
|
+
readonly attributes?: Record<string, string>;
|
|
7834
7907
|
}
|
|
7835
7908
|
|
|
7836
7909
|
interface PaymentCaptureOptionAutomaticImmediate {
|
|
@@ -11259,11 +11332,21 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11259
11332
|
readonly url: string;
|
|
11260
11333
|
}
|
|
11261
11334
|
|
|
11335
|
+
interface BankAccountForm {
|
|
11336
|
+
readonly last4: string;
|
|
11337
|
+
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
11338
|
+
}
|
|
11339
|
+
|
|
11262
11340
|
interface BillingChannelOrderSummary {
|
|
11341
|
+
readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
|
|
11263
11342
|
readonly number: string;
|
|
11264
11343
|
readonly identifiers?: Record<string, string>;
|
|
11265
11344
|
}
|
|
11266
11345
|
|
|
11346
|
+
interface BillingChannelOrganizationSummary {
|
|
11347
|
+
readonly id: string;
|
|
11348
|
+
}
|
|
11349
|
+
|
|
11267
11350
|
interface BillingChannelPaymentRequestReference {
|
|
11268
11351
|
readonly id: string;
|
|
11269
11352
|
readonly reference?: string;
|
|
@@ -11307,6 +11390,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11307
11390
|
readonly placeholder?: string;
|
|
11308
11391
|
}
|
|
11309
11392
|
|
|
11393
|
+
interface OrganizationBankAccount {
|
|
11394
|
+
readonly id: string;
|
|
11395
|
+
readonly last4: string;
|
|
11396
|
+
}
|
|
11397
|
+
|
|
11310
11398
|
interface Payout {
|
|
11311
11399
|
readonly discriminator: 'payout';
|
|
11312
11400
|
readonly status: io.flow.billing.v0.models.PayoutStatus;
|
|
@@ -12811,6 +12899,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
12811
12899
|
readonly parent_id?: string;
|
|
12812
12900
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
12813
12901
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
12902
|
+
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
12814
12903
|
}
|
|
12815
12904
|
|
|
12816
12905
|
interface OrganizationPutForm {
|
|
@@ -12956,6 +13045,19 @@ declare namespace io.flow.session.v0.unions {
|
|
|
12956
13045
|
io.flow.session.v0.models.OrganizationSessionAuthorization;
|
|
12957
13046
|
}
|
|
12958
13047
|
|
|
13048
|
+
declare namespace io.flow.billing.bank.account.v0.models {
|
|
13049
|
+
interface BankAccountInfoUsa {
|
|
13050
|
+
readonly discriminator: 'usa';
|
|
13051
|
+
readonly routing_number: string;
|
|
13052
|
+
readonly account_number: string;
|
|
13053
|
+
}
|
|
13054
|
+
}
|
|
13055
|
+
|
|
13056
|
+
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
13057
|
+
type BankAccountInfo =
|
|
13058
|
+
io.flow.billing.bank.account.v0.models.BankAccountInfoUsa;
|
|
13059
|
+
}
|
|
13060
|
+
|
|
12959
13061
|
declare namespace io.flow.internal.v0.enums {
|
|
12960
13062
|
type AccountType = 'channel' | 'organization';
|
|
12961
13063
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
@@ -13010,10 +13112,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13010
13112
|
| 'all';
|
|
13011
13113
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
13012
13114
|
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
13013
|
-
type BillingTransactionStatus =
|
|
13014
|
-
| 'pending'
|
|
13015
|
-
| 'pending_fulfillment_proof'
|
|
13016
|
-
| 'posted';
|
|
13115
|
+
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
13017
13116
|
type BillingTransactionType =
|
|
13018
13117
|
| 'manual'
|
|
13019
13118
|
| 'subscription'
|
|
@@ -13411,9 +13510,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13411
13510
|
| 'billing_statement_deleted'
|
|
13412
13511
|
| 'tax_remittance_transaction_upserted'
|
|
13413
13512
|
| 'tax_remittance_transaction_deleted'
|
|
13414
|
-
| '
|
|
13513
|
+
| 'channel_account_upserted_v2'
|
|
13415
13514
|
| 'channel_account_deleted'
|
|
13416
|
-
| '
|
|
13515
|
+
| 'organization_account_upserted_v2'
|
|
13417
13516
|
| 'organization_account_deleted'
|
|
13418
13517
|
| 'account_transactions_export_request'
|
|
13419
13518
|
| 'account_orders_export_request'
|
|
@@ -13509,10 +13608,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13509
13608
|
| 'billing_organization_processing_rates_deleted'
|
|
13510
13609
|
| 'billing_organization_settings_upserted'
|
|
13511
13610
|
| 'billing_organization_settings_deleted'
|
|
13611
|
+
| 'billing_statement_batch_upserted'
|
|
13612
|
+
| 'billing_statement_batch_deleted'
|
|
13613
|
+
| 'billing_statement_batch_statement_upserted'
|
|
13614
|
+
| 'billing_statement_batch_statement_deleted'
|
|
13512
13615
|
| 'platform_fee_change_upserted'
|
|
13513
13616
|
| 'platform_fee_change_deleted'
|
|
13514
|
-
| 'fx_revenue_recognition_upserted'
|
|
13515
|
-
| 'fx_revenue_recognition_deleted'
|
|
13516
13617
|
| 'fraud_review_upserted'
|
|
13517
13618
|
| 'fraud_review_deleted'
|
|
13518
13619
|
| 'fraud_pending_review_upserted'
|
|
@@ -13569,8 +13670,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13569
13670
|
| 'fulfillment_cancel'
|
|
13570
13671
|
| 'order_shipped'
|
|
13571
13672
|
| 'items_shipped'
|
|
13673
|
+
| 'organization_restriction_approval_upserted'
|
|
13572
13674
|
| 'organization_restriction_snapshot_upserted'
|
|
13573
13675
|
| 'organization_restriction_snapshot_deleted'
|
|
13676
|
+
| 'organization_restriction_status_upserted'
|
|
13574
13677
|
| 'internal_authorization_upserted'
|
|
13575
13678
|
| 'internal_authorization_deleted'
|
|
13576
13679
|
| 'afterpay_authorization_upserted'
|
|
@@ -13702,10 +13805,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13702
13805
|
| 'low_value_goods_tax'
|
|
13703
13806
|
| 'high_value_goods_tax'
|
|
13704
13807
|
| 'duties';
|
|
13705
|
-
type MainTransactionStatus = 'scheduled' | '
|
|
13808
|
+
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
13706
13809
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13707
13810
|
type ManualTransactionCategory =
|
|
13708
13811
|
| 'cancelled_order_refund'
|
|
13812
|
+
| 'channel_partner_initiated'
|
|
13709
13813
|
| 'client_accepted_chargeback'
|
|
13710
13814
|
| 'fee_reimbursement'
|
|
13711
13815
|
| 'partial_refund'
|
|
@@ -13821,6 +13925,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13821
13925
|
type OrderTransactionType = 'adjustment' | 'order_service';
|
|
13822
13926
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
13823
13927
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
13928
|
+
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
13929
|
+
type OrganizationRestrictionRiskLevel = '5' | '10' | '15';
|
|
13930
|
+
type OrganizationRestrictionScreeningStatus =
|
|
13931
|
+
| 'approved'
|
|
13932
|
+
| 'pending'
|
|
13933
|
+
| 'rejected'
|
|
13934
|
+
| 'unscreened';
|
|
13824
13935
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
13825
13936
|
type Owner = 'flow' | 'organization';
|
|
13826
13937
|
type PaymentSummaryStatus =
|
|
@@ -13978,13 +14089,17 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13978
14089
|
| 'billing_account'
|
|
13979
14090
|
| 'order_messenger'
|
|
13980
14091
|
| 'harmonization'
|
|
14092
|
+
| 'fraud_review'
|
|
13981
14093
|
| 'carrier_account'
|
|
13982
|
-
| '
|
|
14094
|
+
| 'payment'
|
|
14095
|
+
| 'currency'
|
|
14096
|
+
| 'label_generation_settings'
|
|
14097
|
+
| 'ratecard';
|
|
13983
14098
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
13984
14099
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
13985
14100
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
13986
14101
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
13987
|
-
type TransactionPostingMethod = 'time' | '
|
|
14102
|
+
type TransactionPostingMethod = 'time' | 'proof';
|
|
13988
14103
|
type TransferMethod = 'ach';
|
|
13989
14104
|
type UnclassifiedProductStatus =
|
|
13990
14105
|
| 'ignored'
|
|
@@ -14021,6 +14136,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14021
14136
|
readonly first_name?: string;
|
|
14022
14137
|
readonly last_name?: string;
|
|
14023
14138
|
readonly phone?: string;
|
|
14139
|
+
readonly account?: io.flow.internal.v0.models.SimpleAccountReference;
|
|
14024
14140
|
}
|
|
14025
14141
|
|
|
14026
14142
|
interface AccountContactDeleted {
|
|
@@ -14935,6 +15051,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14935
15051
|
interface BillingStatementBatch {
|
|
14936
15052
|
readonly id: string;
|
|
14937
15053
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
15054
|
+
readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
15055
|
+
}
|
|
15056
|
+
|
|
15057
|
+
interface BillingStatementBatchDeleted {
|
|
15058
|
+
readonly discriminator: 'billing_statement_batch_deleted';
|
|
15059
|
+
readonly event_id: string;
|
|
15060
|
+
readonly timestamp: string;
|
|
15061
|
+
readonly id: string;
|
|
15062
|
+
}
|
|
15063
|
+
|
|
15064
|
+
interface BillingStatementBatchReconciliation {
|
|
15065
|
+
readonly month: string;
|
|
15066
|
+
}
|
|
15067
|
+
|
|
15068
|
+
interface BillingStatementBatchReference {
|
|
15069
|
+
readonly id: string;
|
|
15070
|
+
}
|
|
15071
|
+
|
|
15072
|
+
interface BillingStatementBatchStatement {
|
|
15073
|
+
readonly id: string;
|
|
15074
|
+
readonly batch: io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
15075
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
15076
|
+
}
|
|
15077
|
+
|
|
15078
|
+
interface BillingStatementBatchStatementDeleted {
|
|
15079
|
+
readonly discriminator: 'billing_statement_batch_statement_deleted';
|
|
15080
|
+
readonly event_id: string;
|
|
15081
|
+
readonly timestamp: string;
|
|
15082
|
+
readonly id: string;
|
|
15083
|
+
}
|
|
15084
|
+
|
|
15085
|
+
interface BillingStatementBatchStatementUpserted {
|
|
15086
|
+
readonly discriminator: 'billing_statement_batch_statement_upserted';
|
|
15087
|
+
readonly event_id: string;
|
|
15088
|
+
readonly timestamp: string;
|
|
15089
|
+
readonly billing_statement_batch_statement: io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
15090
|
+
}
|
|
15091
|
+
|
|
15092
|
+
interface BillingStatementBatchUpserted {
|
|
15093
|
+
readonly discriminator: 'billing_statement_batch_upserted';
|
|
15094
|
+
readonly event_id: string;
|
|
15095
|
+
readonly timestamp: string;
|
|
15096
|
+
readonly billing_statement_batch: io.flow.internal.v0.models.BillingStatementBatch;
|
|
14938
15097
|
}
|
|
14939
15098
|
|
|
14940
15099
|
interface BillingStatementDeleted {
|
|
@@ -15289,6 +15448,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15289
15448
|
readonly displayed?: io.flow.internal.v0.models.BrowserBundlePaymentMethod[];
|
|
15290
15449
|
}
|
|
15291
15450
|
|
|
15451
|
+
interface BulkClassificationAction {
|
|
15452
|
+
readonly discriminator: 'bulk';
|
|
15453
|
+
readonly actions: io.flow.internal.v0.models.SingleClassificationAction[];
|
|
15454
|
+
}
|
|
15455
|
+
|
|
15292
15456
|
interface ByRuleSnapshot {
|
|
15293
15457
|
readonly id: string;
|
|
15294
15458
|
readonly name: string;
|
|
@@ -15433,9 +15597,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15433
15597
|
}
|
|
15434
15598
|
|
|
15435
15599
|
interface ChannelAccount {
|
|
15436
|
-
readonly id: string;
|
|
15437
15600
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
15438
|
-
readonly
|
|
15601
|
+
readonly id: string;
|
|
15602
|
+
readonly currency: string;
|
|
15603
|
+
readonly updated_at: string;
|
|
15604
|
+
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
15605
|
+
readonly payment_schedule: io.flow.common.v0.unions.RepeatSchedule;
|
|
15606
|
+
readonly payment_conditions?: string;
|
|
15607
|
+
readonly deposit_rule?: io.flow.internal.v0.models.AccountDepositRule;
|
|
15608
|
+
readonly center_key?: string;
|
|
15609
|
+
readonly statistics: io.flow.internal.v0.models.AccountStatistics;
|
|
15610
|
+
readonly next_statement: io.flow.internal.v0.models.NextBillingStatement;
|
|
15611
|
+
readonly created_at: string;
|
|
15439
15612
|
}
|
|
15440
15613
|
|
|
15441
15614
|
interface ChannelAccountDeleted {
|
|
@@ -15445,8 +15618,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15445
15618
|
readonly id: string;
|
|
15446
15619
|
}
|
|
15447
15620
|
|
|
15448
|
-
interface
|
|
15449
|
-
readonly discriminator: '
|
|
15621
|
+
interface ChannelAccountUpsertedV2 {
|
|
15622
|
+
readonly discriminator: 'channel_account_upserted_v2';
|
|
15450
15623
|
readonly event_id: string;
|
|
15451
15624
|
readonly timestamp: string;
|
|
15452
15625
|
readonly channel_account: io.flow.internal.v0.models.ChannelAccount;
|
|
@@ -17807,6 +17980,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17807
17980
|
readonly score?: number;
|
|
17808
17981
|
}
|
|
17809
17982
|
|
|
17983
|
+
interface ClassificationActionFormUndo {
|
|
17984
|
+
readonly discriminator: 'undo';
|
|
17985
|
+
readonly organization_id: string;
|
|
17986
|
+
readonly item_numbers: string[];
|
|
17987
|
+
}
|
|
17988
|
+
|
|
17810
17989
|
interface ClassificationDetails {
|
|
17811
17990
|
readonly updated_by_user_id: string;
|
|
17812
17991
|
readonly organization_id: string;
|
|
@@ -18250,6 +18429,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18250
18429
|
readonly capture_id?: string;
|
|
18251
18430
|
readonly refund_id?: string;
|
|
18252
18431
|
readonly order_identifier?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
18432
|
+
readonly authorization_id?: string;
|
|
18253
18433
|
}
|
|
18254
18434
|
|
|
18255
18435
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
@@ -18270,7 +18450,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18270
18450
|
readonly id: string;
|
|
18271
18451
|
readonly status: io.flow.internal.v0.models.DebugTransactionDetailsStatus;
|
|
18272
18452
|
readonly fx?: io.flow.internal.v0.models.DebugTransactionFx;
|
|
18273
|
-
readonly queue?: io.flow.internal.v0.models.DebugTransactionQueued;
|
|
18274
18453
|
}
|
|
18275
18454
|
|
|
18276
18455
|
interface DebugTransactionDetailsStatus {
|
|
@@ -18278,6 +18457,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18278
18457
|
readonly description: string;
|
|
18279
18458
|
}
|
|
18280
18459
|
|
|
18460
|
+
interface DebugTransactionForm {
|
|
18461
|
+
readonly transaction_id?: string;
|
|
18462
|
+
readonly capture_id?: string;
|
|
18463
|
+
readonly refund_id?: string;
|
|
18464
|
+
}
|
|
18465
|
+
|
|
18281
18466
|
interface DebugTransactionFx {
|
|
18282
18467
|
readonly timestamp?: string;
|
|
18283
18468
|
readonly market: io.flow.internal.v0.models.DebugTransactionFxRate[];
|
|
@@ -18389,6 +18574,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18389
18574
|
readonly description: io.flow.internal.v0.models.ContentLabel;
|
|
18390
18575
|
}
|
|
18391
18576
|
|
|
18577
|
+
interface Discount {
|
|
18578
|
+
readonly amount: number;
|
|
18579
|
+
readonly description?: string;
|
|
18580
|
+
}
|
|
18581
|
+
|
|
18392
18582
|
interface DiscountCode {
|
|
18393
18583
|
readonly code: string;
|
|
18394
18584
|
}
|
|
@@ -19560,13 +19750,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19560
19750
|
readonly value: number;
|
|
19561
19751
|
}
|
|
19562
19752
|
|
|
19563
|
-
interface FxRevenueRecognitionDeleted {
|
|
19564
|
-
readonly discriminator: 'fx_revenue_recognition_deleted';
|
|
19565
|
-
readonly event_id: string;
|
|
19566
|
-
readonly timestamp: string;
|
|
19567
|
-
readonly id: string;
|
|
19568
|
-
}
|
|
19569
|
-
|
|
19570
19753
|
interface FxRevenueRecognitionOrder {
|
|
19571
19754
|
readonly number: string;
|
|
19572
19755
|
readonly submitted_at: string;
|
|
@@ -19588,13 +19771,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19588
19771
|
readonly transaction_created_at: string;
|
|
19589
19772
|
}
|
|
19590
19773
|
|
|
19591
|
-
interface FxRevenueRecognitionUpserted {
|
|
19592
|
-
readonly discriminator: 'fx_revenue_recognition_upserted';
|
|
19593
|
-
readonly event_id: string;
|
|
19594
|
-
readonly timestamp: string;
|
|
19595
|
-
readonly fx_revenue_recognition: io.flow.internal.v0.models.FxRevenueRecognition;
|
|
19596
|
-
}
|
|
19597
|
-
|
|
19598
19774
|
interface GiftCard {
|
|
19599
19775
|
readonly id: string;
|
|
19600
19776
|
readonly number: string;
|
|
@@ -20536,8 +20712,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20536
20712
|
}
|
|
20537
20713
|
|
|
20538
20714
|
interface InternalDebugTransaction {
|
|
20539
|
-
readonly debug
|
|
20715
|
+
readonly debug?: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
20540
20716
|
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
20717
|
+
readonly queue?: io.flow.internal.v0.models.DebugTransactionQueued;
|
|
20541
20718
|
}
|
|
20542
20719
|
|
|
20543
20720
|
interface InternalExclusionRuleForm {
|
|
@@ -21428,14 +21605,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21428
21605
|
readonly description: string;
|
|
21429
21606
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
21430
21607
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
21608
|
+
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
21609
|
+
readonly attributes?: Record<string, string>;
|
|
21431
21610
|
readonly created_at: string;
|
|
21432
21611
|
}
|
|
21433
21612
|
|
|
21434
21613
|
interface ManualTransactionForm {
|
|
21435
21614
|
readonly amount: number;
|
|
21615
|
+
readonly currency?: string;
|
|
21436
21616
|
readonly description: string;
|
|
21437
21617
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
21438
21618
|
readonly posted_at?: string;
|
|
21619
|
+
readonly order?: io.flow.internal.v0.models.ManualTransactionFormOrder;
|
|
21620
|
+
readonly attributes?: Record<string, string>;
|
|
21621
|
+
}
|
|
21622
|
+
|
|
21623
|
+
interface ManualTransactionFormOrder {
|
|
21624
|
+
readonly organization_id: string;
|
|
21625
|
+
readonly number: string;
|
|
21439
21626
|
}
|
|
21440
21627
|
|
|
21441
21628
|
interface MarketingGatewayChannel {
|
|
@@ -22038,9 +22225,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22038
22225
|
}
|
|
22039
22226
|
|
|
22040
22227
|
interface OrganizationAccount {
|
|
22041
|
-
readonly id: string;
|
|
22042
22228
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
22043
|
-
readonly
|
|
22229
|
+
readonly id: string;
|
|
22230
|
+
readonly currency: string;
|
|
22231
|
+
readonly updated_at: string;
|
|
22232
|
+
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
22233
|
+
readonly payment_schedule: io.flow.common.v0.unions.RepeatSchedule;
|
|
22234
|
+
readonly payment_conditions?: string;
|
|
22235
|
+
readonly deposit_rule?: io.flow.internal.v0.models.AccountDepositRule;
|
|
22236
|
+
readonly center_key?: string;
|
|
22237
|
+
readonly statistics: io.flow.internal.v0.models.AccountStatistics;
|
|
22238
|
+
readonly next_statement: io.flow.internal.v0.models.NextBillingStatement;
|
|
22239
|
+
readonly created_at: string;
|
|
22044
22240
|
}
|
|
22045
22241
|
|
|
22046
22242
|
interface OrganizationAccountDeleted {
|
|
@@ -22050,8 +22246,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22050
22246
|
readonly id: string;
|
|
22051
22247
|
}
|
|
22052
22248
|
|
|
22053
|
-
interface
|
|
22054
|
-
readonly discriminator: '
|
|
22249
|
+
interface OrganizationAccountUpsertedV2 {
|
|
22250
|
+
readonly discriminator: 'organization_account_upserted_v2';
|
|
22055
22251
|
readonly event_id: string;
|
|
22056
22252
|
readonly timestamp: string;
|
|
22057
22253
|
readonly organization_account: io.flow.internal.v0.models.OrganizationAccount;
|
|
@@ -22123,8 +22319,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22123
22319
|
}
|
|
22124
22320
|
|
|
22125
22321
|
interface OrganizationDebugTransaction {
|
|
22126
|
-
readonly debug
|
|
22322
|
+
readonly debug?: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
22127
22323
|
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
22324
|
+
readonly queue?: io.flow.internal.v0.models.DebugTransactionQueued;
|
|
22128
22325
|
}
|
|
22129
22326
|
|
|
22130
22327
|
interface OrganizationInvitationAcceptForm {
|
|
@@ -22185,6 +22382,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22185
22382
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
22186
22383
|
}
|
|
22187
22384
|
|
|
22385
|
+
interface OrganizationRestrictionApproval {
|
|
22386
|
+
readonly status: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
22387
|
+
readonly reason?: string;
|
|
22388
|
+
readonly updated_at: string;
|
|
22389
|
+
}
|
|
22390
|
+
|
|
22391
|
+
interface OrganizationRestrictionApprovalUpserted {
|
|
22392
|
+
readonly discriminator: 'organization_restriction_approval_upserted';
|
|
22393
|
+
readonly event_id: string;
|
|
22394
|
+
readonly timestamp: string;
|
|
22395
|
+
readonly organization: string;
|
|
22396
|
+
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
22397
|
+
}
|
|
22398
|
+
|
|
22399
|
+
interface OrganizationRestrictionScreeningDecisionForm {
|
|
22400
|
+
readonly organization_id: string;
|
|
22401
|
+
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
22402
|
+
readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
22403
|
+
readonly hs_code?: string;
|
|
22404
|
+
readonly note?: string;
|
|
22405
|
+
}
|
|
22406
|
+
|
|
22188
22407
|
interface OrganizationRestrictionSnapshot {
|
|
22189
22408
|
readonly id: string;
|
|
22190
22409
|
readonly organization_id: string;
|
|
@@ -22213,6 +22432,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22213
22432
|
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
22214
22433
|
}
|
|
22215
22434
|
|
|
22435
|
+
interface OrganizationRestrictionStatus {
|
|
22436
|
+
readonly id: string;
|
|
22437
|
+
readonly organization_id: string;
|
|
22438
|
+
readonly approval: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
22439
|
+
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
22440
|
+
readonly risk_level: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
22441
|
+
readonly selective_review_start_date?: string;
|
|
22442
|
+
readonly selective_review_end_date?: string;
|
|
22443
|
+
readonly full_review_start_date?: string;
|
|
22444
|
+
readonly full_review_end_date?: string;
|
|
22445
|
+
}
|
|
22446
|
+
|
|
22447
|
+
interface OrganizationRestrictionStatusUpserted {
|
|
22448
|
+
readonly discriminator: 'organization_restriction_status_upserted';
|
|
22449
|
+
readonly event_id: string;
|
|
22450
|
+
readonly timestamp: string;
|
|
22451
|
+
readonly organization_restriction_status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
22452
|
+
}
|
|
22453
|
+
|
|
22216
22454
|
interface OrganizationRestrictionSummary {
|
|
22217
22455
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
22218
22456
|
readonly earliest_date: string;
|
|
@@ -22869,6 +23107,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22869
23107
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
22870
23108
|
}
|
|
22871
23109
|
|
|
23110
|
+
interface ProofOfPostingFulfilled {
|
|
23111
|
+
readonly discriminator: 'fulfilled';
|
|
23112
|
+
readonly billable_label_id: string;
|
|
23113
|
+
}
|
|
23114
|
+
|
|
23115
|
+
interface ProofOfPostingFullyRefunded {
|
|
23116
|
+
readonly discriminator: 'fully_refunded';
|
|
23117
|
+
readonly capture_id: string;
|
|
23118
|
+
readonly refund_ids: string[];
|
|
23119
|
+
}
|
|
23120
|
+
|
|
22872
23121
|
interface QuoteRequest {
|
|
22873
23122
|
readonly id: string;
|
|
22874
23123
|
readonly request_type: io.flow.internal.v0.enums.QuoteRequestType;
|
|
@@ -23968,6 +24217,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23968
24217
|
readonly children: io.flow.internal.v0.unions.SimplifiedClassificationTaxonomy[];
|
|
23969
24218
|
}
|
|
23970
24219
|
|
|
24220
|
+
interface SingleClassificationAction {
|
|
24221
|
+
readonly discriminator: 'single';
|
|
24222
|
+
readonly organization_id: string;
|
|
24223
|
+
readonly item_summary: io.flow.internal.v0.models.HarmonizationItemSummary;
|
|
24224
|
+
readonly customs_description: string;
|
|
24225
|
+
readonly labels?: io.flow.internal.v0.models.ProductLabels;
|
|
24226
|
+
readonly updated_at: string;
|
|
24227
|
+
}
|
|
24228
|
+
|
|
23971
24229
|
interface SingleClassificationForm {
|
|
23972
24230
|
readonly discriminator: 'single_classification_form';
|
|
23973
24231
|
readonly product_id: string;
|
|
@@ -25342,6 +25600,11 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25342
25600
|
io.flow.internal.v0.models.CheckoutSubmitOrderBundle;
|
|
25343
25601
|
type CheckoutSubmitOrderForms =
|
|
25344
25602
|
io.flow.internal.v0.models.CheckoutSubmitOrderForm;
|
|
25603
|
+
type ClassificationAction =
|
|
25604
|
+
| io.flow.internal.v0.models.SingleClassificationAction
|
|
25605
|
+
| io.flow.internal.v0.models.BulkClassificationAction;
|
|
25606
|
+
type ClassificationActionForm =
|
|
25607
|
+
io.flow.internal.v0.models.ClassificationActionFormUndo;
|
|
25345
25608
|
type ClassificationForm =
|
|
25346
25609
|
| io.flow.internal.v0.models.SingleClassificationForm
|
|
25347
25610
|
| io.flow.internal.v0.models.EmptyClassificationForm;
|
|
@@ -25401,9 +25664,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25401
25664
|
| io.flow.internal.v0.models.BillingStatementDeleted
|
|
25402
25665
|
| io.flow.internal.v0.models.TaxRemittanceTransactionUpserted
|
|
25403
25666
|
| io.flow.internal.v0.models.TaxRemittanceTransactionDeleted
|
|
25404
|
-
| io.flow.internal.v0.models.
|
|
25667
|
+
| io.flow.internal.v0.models.ChannelAccountUpsertedV2
|
|
25405
25668
|
| io.flow.internal.v0.models.ChannelAccountDeleted
|
|
25406
|
-
| io.flow.internal.v0.models.
|
|
25669
|
+
| io.flow.internal.v0.models.OrganizationAccountUpsertedV2
|
|
25407
25670
|
| io.flow.internal.v0.models.OrganizationAccountDeleted
|
|
25408
25671
|
| io.flow.internal.v0.models.AccountTransactionsExportRequest
|
|
25409
25672
|
| io.flow.internal.v0.models.AccountOrdersExportRequest
|
|
@@ -25499,10 +25762,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25499
25762
|
| io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted
|
|
25500
25763
|
| io.flow.internal.v0.models.BillingOrganizationSettingsUpserted
|
|
25501
25764
|
| io.flow.internal.v0.models.BillingOrganizationSettingsDeleted
|
|
25765
|
+
| io.flow.internal.v0.models.BillingStatementBatchUpserted
|
|
25766
|
+
| io.flow.internal.v0.models.BillingStatementBatchDeleted
|
|
25767
|
+
| io.flow.internal.v0.models.BillingStatementBatchStatementUpserted
|
|
25768
|
+
| io.flow.internal.v0.models.BillingStatementBatchStatementDeleted
|
|
25502
25769
|
| io.flow.internal.v0.models.PlatformFeeChangeUpserted
|
|
25503
25770
|
| io.flow.internal.v0.models.PlatformFeeChangeDeleted
|
|
25504
|
-
| io.flow.internal.v0.models.FxRevenueRecognitionUpserted
|
|
25505
|
-
| io.flow.internal.v0.models.FxRevenueRecognitionDeleted
|
|
25506
25771
|
| io.flow.internal.v0.models.FraudReviewUpserted
|
|
25507
25772
|
| io.flow.internal.v0.models.FraudReviewDeleted
|
|
25508
25773
|
| io.flow.internal.v0.models.FraudPendingReviewUpserted
|
|
@@ -25559,8 +25824,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25559
25824
|
| io.flow.internal.v0.models.FulfillmentCancel
|
|
25560
25825
|
| io.flow.internal.v0.models.OrderShipped
|
|
25561
25826
|
| io.flow.internal.v0.models.ItemsShipped
|
|
25827
|
+
| io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted
|
|
25562
25828
|
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted
|
|
25563
25829
|
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted
|
|
25830
|
+
| io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted
|
|
25564
25831
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
25565
25832
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
25566
25833
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -25807,6 +26074,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25807
26074
|
| io.flow.internal.v0.models.AdyenMerchantPutForm
|
|
25808
26075
|
| io.flow.internal.v0.models.FiservMerchantPutForm
|
|
25809
26076
|
| io.flow.internal.v0.models.PaypalMerchantPutForm;
|
|
26077
|
+
type ProofOfPosting =
|
|
26078
|
+
| io.flow.internal.v0.models.ProofOfPostingFulfilled
|
|
26079
|
+
| io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
25810
26080
|
type RoutingEntity =
|
|
25811
26081
|
| io.flow.internal.v0.models.RoutingProcessor
|
|
25812
26082
|
| io.flow.internal.v0.models.RoutingAccount
|
|
@@ -26098,8 +26368,22 @@ export type BillingStatementAttachmentKey =
|
|
|
26098
26368
|
io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
26099
26369
|
export type BillingStatementBatch =
|
|
26100
26370
|
io.flow.internal.v0.models.BillingStatementBatch;
|
|
26371
|
+
export type BillingStatementBatchDeleted =
|
|
26372
|
+
io.flow.internal.v0.models.BillingStatementBatchDeleted;
|
|
26101
26373
|
export type BillingStatementBatchFileKey =
|
|
26102
26374
|
io.flow.internal.v0.enums.BillingStatementBatchFileKey;
|
|
26375
|
+
export type BillingStatementBatchReconciliation =
|
|
26376
|
+
io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
26377
|
+
export type BillingStatementBatchReference =
|
|
26378
|
+
io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
26379
|
+
export type BillingStatementBatchStatement =
|
|
26380
|
+
io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
26381
|
+
export type BillingStatementBatchStatementDeleted =
|
|
26382
|
+
io.flow.internal.v0.models.BillingStatementBatchStatementDeleted;
|
|
26383
|
+
export type BillingStatementBatchStatementUpserted =
|
|
26384
|
+
io.flow.internal.v0.models.BillingStatementBatchStatementUpserted;
|
|
26385
|
+
export type BillingStatementBatchUpserted =
|
|
26386
|
+
io.flow.internal.v0.models.BillingStatementBatchUpserted;
|
|
26103
26387
|
export type BillingStatementDeleted =
|
|
26104
26388
|
io.flow.internal.v0.models.BillingStatementDeleted;
|
|
26105
26389
|
export type BillingStatementPendingReview =
|
|
@@ -26213,6 +26497,8 @@ export type BrowserBundlePaymentMethodForm =
|
|
|
26213
26497
|
io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
|
|
26214
26498
|
export type BrowserBundlePaymentMethods =
|
|
26215
26499
|
io.flow.internal.v0.models.BrowserBundlePaymentMethods;
|
|
26500
|
+
export type BulkClassificationAction =
|
|
26501
|
+
io.flow.internal.v0.models.BulkClassificationAction;
|
|
26216
26502
|
export type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
26217
26503
|
export type CalculatedTaxAmount =
|
|
26218
26504
|
io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
@@ -26258,8 +26544,8 @@ export type ChangeSettingsIndexTask =
|
|
|
26258
26544
|
export type ChannelAccount = io.flow.internal.v0.models.ChannelAccount;
|
|
26259
26545
|
export type ChannelAccountDeleted =
|
|
26260
26546
|
io.flow.internal.v0.models.ChannelAccountDeleted;
|
|
26261
|
-
export type
|
|
26262
|
-
io.flow.internal.v0.models.
|
|
26547
|
+
export type ChannelAccountUpsertedV2 =
|
|
26548
|
+
io.flow.internal.v0.models.ChannelAccountUpsertedV2;
|
|
26263
26549
|
export type ChannelBillingStatement =
|
|
26264
26550
|
io.flow.internal.v0.models.ChannelBillingStatement;
|
|
26265
26551
|
export type ChannelCurrencyForm =
|
|
@@ -27350,6 +27636,12 @@ export type CipherReference = io.flow.internal.v0.models.CipherReference;
|
|
|
27350
27636
|
export type ClassicPaymentRedirectForm =
|
|
27351
27637
|
io.flow.internal.v0.models.ClassicPaymentRedirectForm;
|
|
27352
27638
|
export type Classification = io.flow.internal.v0.models.Classification;
|
|
27639
|
+
export type ClassificationAction =
|
|
27640
|
+
io.flow.internal.v0.unions.ClassificationAction;
|
|
27641
|
+
export type ClassificationActionForm =
|
|
27642
|
+
io.flow.internal.v0.unions.ClassificationActionForm;
|
|
27643
|
+
export type ClassificationActionFormUndo =
|
|
27644
|
+
io.flow.internal.v0.models.ClassificationActionFormUndo;
|
|
27353
27645
|
export type ClassificationDetails =
|
|
27354
27646
|
io.flow.internal.v0.models.ClassificationDetails;
|
|
27355
27647
|
export type ClassificationError =
|
|
@@ -27478,6 +27770,8 @@ export type DebugTransactionDetails =
|
|
|
27478
27770
|
io.flow.internal.v0.models.DebugTransactionDetails;
|
|
27479
27771
|
export type DebugTransactionDetailsStatus =
|
|
27480
27772
|
io.flow.internal.v0.models.DebugTransactionDetailsStatus;
|
|
27773
|
+
export type DebugTransactionForm =
|
|
27774
|
+
io.flow.internal.v0.models.DebugTransactionForm;
|
|
27481
27775
|
export type DebugTransactionFx = io.flow.internal.v0.models.DebugTransactionFx;
|
|
27482
27776
|
export type DebugTransactionFxRate =
|
|
27483
27777
|
io.flow.internal.v0.models.DebugTransactionFxRate;
|
|
@@ -27510,6 +27804,7 @@ export type Details = io.flow.internal.v0.models.Details;
|
|
|
27510
27804
|
export type Dhl = io.flow.internal.v0.models.Dhl;
|
|
27511
27805
|
export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
27512
27806
|
export type Dict = io.flow.internal.v0.models.Dict;
|
|
27807
|
+
export type Discount = io.flow.internal.v0.models.Discount;
|
|
27513
27808
|
export type DiscountCode = io.flow.internal.v0.models.DiscountCode;
|
|
27514
27809
|
export type DiscountRequestForm =
|
|
27515
27810
|
io.flow.internal.v0.models.DiscountRequestForm;
|
|
@@ -27814,8 +28109,6 @@ export type FxRevenueRecognitionAccount =
|
|
|
27814
28109
|
io.flow.internal.v0.models.FxRevenueRecognitionAccount;
|
|
27815
28110
|
export type FxRevenueRecognitionAccountRate =
|
|
27816
28111
|
io.flow.internal.v0.models.FxRevenueRecognitionAccountRate;
|
|
27817
|
-
export type FxRevenueRecognitionDeleted =
|
|
27818
|
-
io.flow.internal.v0.models.FxRevenueRecognitionDeleted;
|
|
27819
28112
|
export type FxRevenueRecognitionOrder =
|
|
27820
28113
|
io.flow.internal.v0.models.FxRevenueRecognitionOrder;
|
|
27821
28114
|
export type FxRevenueRecognitionOrganization =
|
|
@@ -27824,8 +28117,6 @@ export type FxRevenueRecognitionRate =
|
|
|
27824
28117
|
io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
27825
28118
|
export type FxRevenueRecognitionSource =
|
|
27826
28119
|
io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
27827
|
-
export type FxRevenueRecognitionUpserted =
|
|
27828
|
-
io.flow.internal.v0.models.FxRevenueRecognitionUpserted;
|
|
27829
28120
|
export type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
27830
28121
|
export type GiftCardAuthorizationError =
|
|
27831
28122
|
io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
@@ -28200,6 +28491,8 @@ export type ManualTransactionCategory =
|
|
|
28200
28491
|
io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
28201
28492
|
export type ManualTransactionForm =
|
|
28202
28493
|
io.flow.internal.v0.models.ManualTransactionForm;
|
|
28494
|
+
export type ManualTransactionFormOrder =
|
|
28495
|
+
io.flow.internal.v0.models.ManualTransactionFormOrder;
|
|
28203
28496
|
export type MarketingGatewayAccountConnectionStatus =
|
|
28204
28497
|
io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus;
|
|
28205
28498
|
export type MarketingGatewayChannel =
|
|
@@ -28406,8 +28699,8 @@ export type OrganizationAccount =
|
|
|
28406
28699
|
io.flow.internal.v0.models.OrganizationAccount;
|
|
28407
28700
|
export type OrganizationAccountDeleted =
|
|
28408
28701
|
io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
28409
|
-
export type
|
|
28410
|
-
io.flow.internal.v0.models.
|
|
28702
|
+
export type OrganizationAccountUpsertedV2 =
|
|
28703
|
+
io.flow.internal.v0.models.OrganizationAccountUpsertedV2;
|
|
28411
28704
|
export type OrganizationBillingStatement =
|
|
28412
28705
|
io.flow.internal.v0.models.OrganizationBillingStatement;
|
|
28413
28706
|
export type OrganizationBooleanValue =
|
|
@@ -28448,12 +28741,28 @@ export type OrganizationPaymentSettingVersion =
|
|
|
28448
28741
|
io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
28449
28742
|
export type OrganizationPaymentStatus =
|
|
28450
28743
|
io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
28744
|
+
export type OrganizationRestrictionApproval =
|
|
28745
|
+
io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
28746
|
+
export type OrganizationRestrictionApprovalStatus =
|
|
28747
|
+
io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
28748
|
+
export type OrganizationRestrictionApprovalUpserted =
|
|
28749
|
+
io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted;
|
|
28750
|
+
export type OrganizationRestrictionRiskLevel =
|
|
28751
|
+
io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
28752
|
+
export type OrganizationRestrictionScreeningDecisionForm =
|
|
28753
|
+
io.flow.internal.v0.models.OrganizationRestrictionScreeningDecisionForm;
|
|
28754
|
+
export type OrganizationRestrictionScreeningStatus =
|
|
28755
|
+
io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
28451
28756
|
export type OrganizationRestrictionSnapshot =
|
|
28452
28757
|
io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
28453
28758
|
export type OrganizationRestrictionSnapshotDeleted =
|
|
28454
28759
|
io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted;
|
|
28455
28760
|
export type OrganizationRestrictionSnapshotUpserted =
|
|
28456
28761
|
io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
28762
|
+
export type OrganizationRestrictionStatus =
|
|
28763
|
+
io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
28764
|
+
export type OrganizationRestrictionStatusUpserted =
|
|
28765
|
+
io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted;
|
|
28457
28766
|
export type OrganizationRestrictionSummary =
|
|
28458
28767
|
io.flow.internal.v0.models.OrganizationRestrictionSummary;
|
|
28459
28768
|
export type OrganizationSettings =
|
|
@@ -28638,6 +28947,11 @@ export type PromptCheckoutDisplayPosition =
|
|
|
28638
28947
|
io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
28639
28948
|
export type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
|
|
28640
28949
|
export type PromptTarget = io.flow.internal.v0.enums.PromptTarget;
|
|
28950
|
+
export type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
28951
|
+
export type ProofOfPostingFulfilled =
|
|
28952
|
+
io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
28953
|
+
export type ProofOfPostingFullyRefunded =
|
|
28954
|
+
io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
28641
28955
|
export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
28642
28956
|
export type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
28643
28957
|
export type RateAndRuleItem = io.flow.internal.v0.models.RateAndRuleItem;
|
|
@@ -28955,6 +29269,8 @@ export type SimplifiedItemLabel =
|
|
|
28955
29269
|
io.flow.internal.v0.models.SimplifiedItemLabel;
|
|
28956
29270
|
export type SimplifiedTaxonomyCategory =
|
|
28957
29271
|
io.flow.internal.v0.models.SimplifiedTaxonomyCategory;
|
|
29272
|
+
export type SingleClassificationAction =
|
|
29273
|
+
io.flow.internal.v0.models.SingleClassificationAction;
|
|
28958
29274
|
export type SingleClassificationForm =
|
|
28959
29275
|
io.flow.internal.v0.models.SingleClassificationForm;
|
|
28960
29276
|
export type SnapchatPixel = io.flow.internal.v0.models.SnapchatPixel;
|