@flowio/types 11.24.32 → 11.24.34
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 +393 -43
- package/dist/api.d.ts +63 -24
- package/package.json +2 -2
- package/src/api-internal.ts +546 -52
- package/src/api.ts +78 -27
package/dist/api-internal.d.ts
CHANGED
|
@@ -250,6 +250,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
250
250
|
type MerchantOfRecord = 'flow' | 'organization';
|
|
251
251
|
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
252
252
|
type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
|
|
253
|
+
type OrganizationType = 'standalone' | 'channel';
|
|
253
254
|
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
254
255
|
type Role = 'admin' | 'member';
|
|
255
256
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
@@ -412,6 +413,21 @@ declare namespace io.flow.common.v0.models {
|
|
|
412
413
|
interface LineItemQuantityForm {
|
|
413
414
|
readonly quantity: number;
|
|
414
415
|
}
|
|
416
|
+
interface LogoImageSetStatic {
|
|
417
|
+
readonly discriminator: 'static';
|
|
418
|
+
readonly small?: io.flow.common.v0.models.LogoImageStatic;
|
|
419
|
+
readonly medium: io.flow.common.v0.models.LogoImageStatic;
|
|
420
|
+
readonly large?: io.flow.common.v0.models.LogoImageStatic;
|
|
421
|
+
}
|
|
422
|
+
interface LogoImageStatic {
|
|
423
|
+
readonly url: string;
|
|
424
|
+
readonly width: number;
|
|
425
|
+
readonly height: number;
|
|
426
|
+
}
|
|
427
|
+
interface LogoImageSvg {
|
|
428
|
+
readonly discriminator: 'svg';
|
|
429
|
+
readonly url: string;
|
|
430
|
+
}
|
|
415
431
|
interface Margin {
|
|
416
432
|
readonly type: io.flow.common.v0.enums.MarginType;
|
|
417
433
|
readonly value: number;
|
|
@@ -480,6 +496,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
480
496
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
481
497
|
readonly created_at?: string;
|
|
482
498
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
499
|
+
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
483
500
|
}
|
|
484
501
|
interface OrganizationDefaults {
|
|
485
502
|
readonly country: string;
|
|
@@ -589,6 +606,7 @@ declare namespace io.flow.common.v0.unions {
|
|
|
589
606
|
type ExpandableOrganization = io.flow.common.v0.models.Organization | io.flow.common.v0.models.OrganizationReference;
|
|
590
607
|
type ExpandableUser = io.flow.common.v0.models.User | io.flow.common.v0.models.UserReference;
|
|
591
608
|
type InputSpecificationLimitation = io.flow.common.v0.models.InputSpecificationLimitationMax;
|
|
609
|
+
type LogoImage = io.flow.common.v0.models.LogoImageSvg | io.flow.common.v0.models.LogoImageSetStatic;
|
|
592
610
|
type PriceSource = io.flow.common.v0.models.PriceSourcePriceBook | io.flow.common.v0.models.PriceSourceCatalog | io.flow.common.v0.models.PriceSourceProvided;
|
|
593
611
|
type RepeatSchedule = io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly;
|
|
594
612
|
}
|
|
@@ -1373,7 +1391,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1373
1391
|
type AuthorizationStatus = 'initiated' | 'pending' | 'expired' | 'authorized' | 'review' | 'declined' | 'reversed';
|
|
1374
1392
|
type AvsCode = 'match' | 'partial' | 'unsupported' | 'no_match';
|
|
1375
1393
|
type CaptureDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1376
|
-
type CaptureStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
1394
|
+
type CaptureStatus = 'initiated' | 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
1377
1395
|
type CardErrorCode = 'invalid_address' | 'invalid_currency' | 'invalid_name' | 'invalid_number' | 'invalid_expiration' | 'invalid_token_type' | 'avs' | 'cvv' | 'fraud' | 'unknown';
|
|
1378
1396
|
type CardType = 'american_express' | 'cartes_bancaires' | 'china_union_pay' | 'dankort' | 'diners_club' | 'discover' | 'jcb' | 'maestro' | 'mastercard' | 'visa';
|
|
1379
1397
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
@@ -2524,7 +2542,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2524
2542
|
readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
2525
2543
|
readonly payment_method_types?: string[];
|
|
2526
2544
|
readonly receipt_email?: string;
|
|
2527
|
-
readonly save_payment_method
|
|
2545
|
+
readonly save_payment_method?: boolean;
|
|
2528
2546
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2529
2547
|
}
|
|
2530
2548
|
interface PaymentIntentForm {
|
|
@@ -2544,7 +2562,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2544
2562
|
readonly payment_method_types?: string[];
|
|
2545
2563
|
readonly receipt_email?: string;
|
|
2546
2564
|
readonly return_url?: string;
|
|
2547
|
-
readonly save_payment_method
|
|
2565
|
+
readonly save_payment_method?: boolean;
|
|
2548
2566
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2549
2567
|
readonly statement_descriptor?: string;
|
|
2550
2568
|
readonly statement_descriptor_suffix?: string;
|
|
@@ -2560,7 +2578,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2560
2578
|
readonly payment_method?: string;
|
|
2561
2579
|
readonly payment_method_types?: string[];
|
|
2562
2580
|
readonly receipt_email?: string;
|
|
2563
|
-
readonly save_payment_method
|
|
2581
|
+
readonly save_payment_method?: boolean;
|
|
2564
2582
|
readonly statement_descriptor?: string;
|
|
2565
2583
|
readonly statement_descriptor_suffix?: string;
|
|
2566
2584
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
@@ -2902,6 +2920,7 @@ declare namespace io.flow.customer.v0.models {
|
|
|
2902
2920
|
}
|
|
2903
2921
|
}
|
|
2904
2922
|
declare namespace io.flow.label.v0.enums {
|
|
2923
|
+
type CostEstimateSource = 'flow' | 'channel';
|
|
2905
2924
|
type Direction = 'outbound' | 'return';
|
|
2906
2925
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
2907
2926
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
@@ -2965,9 +2984,11 @@ declare namespace io.flow.label.v0.models {
|
|
|
2965
2984
|
interface ShippingLabel {
|
|
2966
2985
|
readonly id: string;
|
|
2967
2986
|
readonly hop?: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
2987
|
+
readonly reference_id: string;
|
|
2968
2988
|
readonly attributes: Record<string, string>;
|
|
2969
2989
|
readonly carrier_tracking_number: string;
|
|
2970
2990
|
readonly carrier_tracking_number_url: string;
|
|
2991
|
+
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
2971
2992
|
readonly cost?: io.flow.common.v0.models.Price;
|
|
2972
2993
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
2973
2994
|
readonly flow_tracking_number: string;
|
|
@@ -3544,14 +3565,14 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
3544
3565
|
readonly currency: string;
|
|
3545
3566
|
readonly posData?: string;
|
|
3546
3567
|
readonly notificationURL?: string;
|
|
3547
|
-
readonly transactionSpeed
|
|
3568
|
+
readonly transactionSpeed?: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
3548
3569
|
readonly fullNotifications?: boolean;
|
|
3549
3570
|
readonly notificationEmail?: string;
|
|
3550
3571
|
readonly redirectURL?: string;
|
|
3551
3572
|
readonly orderId?: string;
|
|
3552
3573
|
readonly itemDesc?: string;
|
|
3553
3574
|
readonly itemCode?: string;
|
|
3554
|
-
readonly physical
|
|
3575
|
+
readonly physical?: boolean;
|
|
3555
3576
|
readonly buyerName?: string;
|
|
3556
3577
|
readonly buyerAddress1?: string;
|
|
3557
3578
|
readonly buyerAddress2?: string;
|
|
@@ -3602,12 +3623,12 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
3602
3623
|
readonly currency: string;
|
|
3603
3624
|
readonly posData?: string;
|
|
3604
3625
|
readonly notificationURL?: string;
|
|
3605
|
-
readonly transactionSpeed
|
|
3626
|
+
readonly transactionSpeed?: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
3606
3627
|
readonly fullNotifications?: boolean;
|
|
3607
3628
|
readonly extendedNotifications?: boolean;
|
|
3608
3629
|
readonly redirectURL?: string;
|
|
3609
3630
|
readonly orderId?: string;
|
|
3610
|
-
readonly physical
|
|
3631
|
+
readonly physical?: boolean;
|
|
3611
3632
|
readonly buyerName?: string;
|
|
3612
3633
|
readonly buyerAddress1?: string;
|
|
3613
3634
|
readonly buyerAddress2?: string;
|
|
@@ -4295,7 +4316,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4295
4316
|
interface Product {
|
|
4296
4317
|
readonly id: number;
|
|
4297
4318
|
readonly handle: string;
|
|
4298
|
-
readonly variants
|
|
4319
|
+
readonly variants?: io.flow.shopify.external.v0.models.ProductVariant[];
|
|
4299
4320
|
readonly images: io.flow.shopify.external.v0.models.ProductImage[];
|
|
4300
4321
|
readonly title: string;
|
|
4301
4322
|
readonly vendor?: string;
|
|
@@ -4450,7 +4471,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4450
4471
|
readonly title: string;
|
|
4451
4472
|
}
|
|
4452
4473
|
interface ShopifyClientDetail {
|
|
4453
|
-
readonly accept_language
|
|
4474
|
+
readonly accept_language?: boolean;
|
|
4454
4475
|
readonly browser_height?: number;
|
|
4455
4476
|
readonly browser_ip?: string;
|
|
4456
4477
|
readonly browser_width?: number;
|
|
@@ -4465,7 +4486,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4465
4486
|
readonly tax_exempt: boolean;
|
|
4466
4487
|
readonly verified_email: boolean;
|
|
4467
4488
|
readonly state: io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
4468
|
-
readonly accepts_marketing
|
|
4489
|
+
readonly accepts_marketing?: boolean;
|
|
4469
4490
|
readonly default_address?: any;
|
|
4470
4491
|
readonly email?: string;
|
|
4471
4492
|
readonly first_name?: string;
|
|
@@ -4537,7 +4558,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4537
4558
|
readonly requires_shipping: boolean;
|
|
4538
4559
|
readonly currency?: string;
|
|
4539
4560
|
readonly items: io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
4540
|
-
readonly cart_level_discount_applications
|
|
4561
|
+
readonly cart_level_discount_applications?: io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
4541
4562
|
}
|
|
4542
4563
|
interface ShopifyExternalCartItem {
|
|
4543
4564
|
readonly id: number;
|
|
@@ -4551,7 +4572,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4551
4572
|
readonly original_line_price: number;
|
|
4552
4573
|
readonly total_discount: number;
|
|
4553
4574
|
readonly discounted_price: number;
|
|
4554
|
-
readonly discounts
|
|
4575
|
+
readonly discounts?: io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
4555
4576
|
readonly taxable: boolean;
|
|
4556
4577
|
readonly quantity: number;
|
|
4557
4578
|
readonly sku?: string;
|
|
@@ -4569,8 +4590,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4569
4590
|
readonly product_description?: string;
|
|
4570
4591
|
readonly product_type: string;
|
|
4571
4592
|
readonly variant_title?: string;
|
|
4572
|
-
readonly variant_options
|
|
4573
|
-
readonly line_level_discount_allocations
|
|
4593
|
+
readonly variant_options?: string[];
|
|
4594
|
+
readonly line_level_discount_allocations?: io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
4574
4595
|
}
|
|
4575
4596
|
interface ShopifyFulfillment {
|
|
4576
4597
|
readonly location_id: number;
|
|
@@ -4790,11 +4811,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4790
4811
|
readonly updated_at?: string;
|
|
4791
4812
|
readonly user_id?: number;
|
|
4792
4813
|
readonly order_status_url?: string;
|
|
4793
|
-
readonly inventory_behaviour
|
|
4814
|
+
readonly inventory_behaviour?: io.flow.shopify.external.v0.enums.InventoryBehaviour;
|
|
4794
4815
|
readonly gateway?: string;
|
|
4795
4816
|
readonly transactions?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
4796
4817
|
readonly send_receipt?: boolean;
|
|
4797
|
-
readonly metafields
|
|
4818
|
+
readonly metafields?: io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
4798
4819
|
}
|
|
4799
4820
|
interface ShopifyOrderCount {
|
|
4800
4821
|
readonly count: number;
|
|
@@ -4915,7 +4936,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4915
4936
|
}
|
|
4916
4937
|
interface ShopifyWebhookOrder {
|
|
4917
4938
|
readonly id?: number;
|
|
4918
|
-
readonly line_items
|
|
4939
|
+
readonly line_items?: io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
4919
4940
|
}
|
|
4920
4941
|
interface ShopifyWebhookOrderCancelled {
|
|
4921
4942
|
readonly id: number;
|
|
@@ -5184,7 +5205,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5184
5205
|
readonly updated_at?: string;
|
|
5185
5206
|
readonly user_id?: number;
|
|
5186
5207
|
readonly order_status_url?: string;
|
|
5187
|
-
readonly inventory_behaviour
|
|
5208
|
+
readonly inventory_behaviour?: io.flow.shopify.markets.v0.enums.ShopifyOrderInventoryBehaviour;
|
|
5188
5209
|
readonly gateway?: string;
|
|
5189
5210
|
readonly transactions?: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction[];
|
|
5190
5211
|
readonly send_receipt?: boolean;
|
|
@@ -5218,7 +5239,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5218
5239
|
readonly refund: io.flow.shopify.markets.v0.models.ShopifyRefund;
|
|
5219
5240
|
}
|
|
5220
5241
|
interface ShopifyOrderClientDetail {
|
|
5221
|
-
readonly accept_language
|
|
5242
|
+
readonly accept_language?: string;
|
|
5222
5243
|
readonly browser_height?: number;
|
|
5223
5244
|
readonly browser_ip?: string;
|
|
5224
5245
|
readonly browser_width?: number;
|
|
@@ -5439,7 +5460,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5439
5460
|
readonly kind: io.flow.shopify.markets.v0.enums.ShopifyOrderKindType;
|
|
5440
5461
|
readonly gateway: string;
|
|
5441
5462
|
readonly currency: string;
|
|
5442
|
-
readonly status
|
|
5463
|
+
readonly status?: io.flow.shopify.markets.v0.enums.ShopifyOrderTransactionStatus;
|
|
5443
5464
|
readonly payment_details?: io.flow.shopify.markets.v0.models.ShopifyOrderPaymentDetail;
|
|
5444
5465
|
readonly receipt: any;
|
|
5445
5466
|
readonly authorization?: string;
|
|
@@ -5899,6 +5920,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
5899
5920
|
interface PaymentCaptureForm {
|
|
5900
5921
|
readonly amount?: number;
|
|
5901
5922
|
readonly currency?: string;
|
|
5923
|
+
readonly attributes?: Record<string, string>;
|
|
5902
5924
|
}
|
|
5903
5925
|
interface PaymentCaptureOptionAutomaticImmediate {
|
|
5904
5926
|
readonly type: 'automatic_immediate';
|
|
@@ -7153,6 +7175,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7153
7175
|
interface PaymentMethodIssuer {
|
|
7154
7176
|
readonly id: string;
|
|
7155
7177
|
readonly name: string;
|
|
7178
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
7156
7179
|
}
|
|
7157
7180
|
interface PaymentMethodRule {
|
|
7158
7181
|
readonly tags: io.flow.experience.v0.unions.PaymentMethodTag[];
|
|
@@ -7952,7 +7975,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
7952
7975
|
readonly organization_reference: io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
|
|
7953
7976
|
readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
7954
7977
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7955
|
-
readonly indirect_tax_number?: string;
|
|
7956
7978
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
7957
7979
|
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7958
7980
|
readonly beneficiary?: string;
|
|
@@ -7981,7 +8003,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
7981
8003
|
interface ShopifyMerchantApplicationForm {
|
|
7982
8004
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
7983
8005
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7984
|
-
readonly indirect_tax_number?: string;
|
|
7985
8006
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
7986
8007
|
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7987
8008
|
readonly beneficiary?: string;
|
|
@@ -8561,6 +8582,115 @@ declare namespace io.flow.item.v0.models {
|
|
|
8561
8582
|
readonly price_attributes?: Record<string, io.flow.item.v0.models.LocalItemAttributePricing>;
|
|
8562
8583
|
}
|
|
8563
8584
|
}
|
|
8585
|
+
declare namespace io.flow.billing.v0.enums {
|
|
8586
|
+
type AttachmentType = 'csv';
|
|
8587
|
+
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
8588
|
+
type PayoutStatusCode = 'scheduled' | 'sent' | 'cancelled' | 'failed' | 'succeeded';
|
|
8589
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8590
|
+
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
8591
|
+
}
|
|
8592
|
+
declare namespace io.flow.billing.v0.models {
|
|
8593
|
+
interface AccountReference {
|
|
8594
|
+
readonly id: string;
|
|
8595
|
+
readonly currency: string;
|
|
8596
|
+
}
|
|
8597
|
+
interface Attachment {
|
|
8598
|
+
readonly type: io.flow.billing.v0.enums.AttachmentType;
|
|
8599
|
+
readonly url: string;
|
|
8600
|
+
}
|
|
8601
|
+
interface BankAccountForm {
|
|
8602
|
+
readonly last4: string;
|
|
8603
|
+
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
8604
|
+
}
|
|
8605
|
+
interface BillingChannelOrderSummary {
|
|
8606
|
+
readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
|
|
8607
|
+
readonly number: string;
|
|
8608
|
+
readonly identifiers?: Record<string, string>;
|
|
8609
|
+
}
|
|
8610
|
+
interface BillingChannelOrganizationSummary {
|
|
8611
|
+
readonly id: string;
|
|
8612
|
+
}
|
|
8613
|
+
interface BillingChannelPaymentRequestReference {
|
|
8614
|
+
readonly id: string;
|
|
8615
|
+
readonly reference?: string;
|
|
8616
|
+
}
|
|
8617
|
+
interface BillingChannelStatementReference {
|
|
8618
|
+
readonly id: string;
|
|
8619
|
+
}
|
|
8620
|
+
interface ChannelStatement {
|
|
8621
|
+
readonly id: string;
|
|
8622
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
8623
|
+
readonly ending_balance: number;
|
|
8624
|
+
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
8625
|
+
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
8626
|
+
readonly created_at: string;
|
|
8627
|
+
}
|
|
8628
|
+
interface ChannelTransaction {
|
|
8629
|
+
readonly id: string;
|
|
8630
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
8631
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
8632
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
8633
|
+
readonly currency: string;
|
|
8634
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
8635
|
+
readonly gross: number;
|
|
8636
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
8637
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
8638
|
+
readonly net: number;
|
|
8639
|
+
readonly created_at: string;
|
|
8640
|
+
}
|
|
8641
|
+
interface FeeDeduction {
|
|
8642
|
+
readonly type: io.flow.billing.v0.enums.FeeDeductionType;
|
|
8643
|
+
readonly amount: number;
|
|
8644
|
+
readonly description?: string;
|
|
8645
|
+
}
|
|
8646
|
+
interface NoPayout {
|
|
8647
|
+
readonly discriminator: 'no_payout';
|
|
8648
|
+
readonly placeholder?: string;
|
|
8649
|
+
}
|
|
8650
|
+
interface OrganizationBankAccount {
|
|
8651
|
+
readonly id: string;
|
|
8652
|
+
readonly last4: string;
|
|
8653
|
+
}
|
|
8654
|
+
interface Payout {
|
|
8655
|
+
readonly discriminator: 'payout';
|
|
8656
|
+
readonly status: io.flow.billing.v0.models.PayoutStatus;
|
|
8657
|
+
readonly amount: number;
|
|
8658
|
+
readonly sent_on?: string;
|
|
8659
|
+
}
|
|
8660
|
+
interface PayoutStatus {
|
|
8661
|
+
readonly code: io.flow.billing.v0.enums.PayoutStatusCode;
|
|
8662
|
+
readonly reason?: string;
|
|
8663
|
+
}
|
|
8664
|
+
interface Statement {
|
|
8665
|
+
readonly id: string;
|
|
8666
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
8667
|
+
readonly ending_balance: number;
|
|
8668
|
+
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
8669
|
+
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
8670
|
+
readonly created_at: string;
|
|
8671
|
+
}
|
|
8672
|
+
interface Transaction {
|
|
8673
|
+
readonly id: string;
|
|
8674
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
8675
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
8676
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
8677
|
+
readonly currency: string;
|
|
8678
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
8679
|
+
readonly gross: number;
|
|
8680
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
8681
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
8682
|
+
readonly net: number;
|
|
8683
|
+
readonly created_at: string;
|
|
8684
|
+
}
|
|
8685
|
+
interface WithholdingDeduction {
|
|
8686
|
+
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
8687
|
+
readonly amount: number;
|
|
8688
|
+
readonly description?: string;
|
|
8689
|
+
}
|
|
8690
|
+
}
|
|
8691
|
+
declare namespace io.flow.billing.v0.unions {
|
|
8692
|
+
type Settlement = io.flow.billing.v0.models.NoPayout | io.flow.billing.v0.models.Payout;
|
|
8693
|
+
}
|
|
8564
8694
|
declare namespace io.flow.harmonization.v0.enums {
|
|
8565
8695
|
type TaxApplicability = 'none' | 'all';
|
|
8566
8696
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -9864,16 +9994,27 @@ declare namespace io.flow.session.v0.unions {
|
|
|
9864
9994
|
type Session = io.flow.session.v0.models.OrganizationSession;
|
|
9865
9995
|
type SessionAuthorization = io.flow.session.v0.models.OrganizationSessionAuthorization;
|
|
9866
9996
|
}
|
|
9997
|
+
declare namespace io.flow.billing.bank.account.v0.models {
|
|
9998
|
+
interface BankAccountInfoUsa {
|
|
9999
|
+
readonly discriminator: 'usa';
|
|
10000
|
+
readonly routing_number: string;
|
|
10001
|
+
readonly account_number: string;
|
|
10002
|
+
}
|
|
10003
|
+
}
|
|
10004
|
+
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
10005
|
+
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa;
|
|
10006
|
+
}
|
|
9867
10007
|
declare namespace io.flow.internal.v0.enums {
|
|
9868
10008
|
type AccountType = 'channel' | 'organization';
|
|
9869
10009
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
10010
|
+
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
9870
10011
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
9871
10012
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
9872
10013
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
9873
10014
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'all';
|
|
9874
10015
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
9875
10016
|
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
9876
|
-
type BillingTransactionStatus = 'pending' | '
|
|
10017
|
+
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
9877
10018
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order';
|
|
9878
10019
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
9879
10020
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
@@ -9883,6 +10024,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
9883
10024
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
9884
10025
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information';
|
|
9885
10026
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
10027
|
+
type ChannelTransactionType = 'adjustment' | 'processing';
|
|
9886
10028
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
9887
10029
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
9888
10030
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -9984,7 +10126,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
9984
10126
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
9985
10127
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
9986
10128
|
type EmptyAttribute = 'irrelevant';
|
|
9987
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'billable_label_upserted' | 'billable_label_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted' | 'channel_account_deleted' | 'organization_account_upserted' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | '
|
|
10129
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'billable_label_upserted' | 'billable_label_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted' | 'channel_account_deleted' | 'organization_account_upserted' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_restriction_approval_upserted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
9988
10130
|
type ExperienceImportType = 'experience_with_settings';
|
|
9989
10131
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
9990
10132
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10018,7 +10160,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10018
10160
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
10019
10161
|
type LabelTransactionType = 'adjustment' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10020
10162
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
10021
|
-
type MainTransactionStatus = 'scheduled' | '
|
|
10163
|
+
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
10022
10164
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
10023
10165
|
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit';
|
|
10024
10166
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
@@ -10045,6 +10187,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10045
10187
|
type OrderTransactionType = 'adjustment' | 'order_service';
|
|
10046
10188
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
10047
10189
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
10190
|
+
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
10048
10191
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
10049
10192
|
type Owner = 'flow' | 'organization';
|
|
10050
10193
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
@@ -10096,12 +10239,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10096
10239
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
10097
10240
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
10098
10241
|
type TariffEligibilityType = 'rex';
|
|
10099
|
-
type TaskProcessorKey = 'billing_account' | 'carrier_account';
|
|
10242
|
+
type TaskProcessorKey = 'billing_account' | 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings';
|
|
10100
10243
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10101
10244
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10102
10245
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
10103
10246
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
10104
|
-
type TransactionPostingMethod = 'time' | '
|
|
10247
|
+
type TransactionPostingMethod = 'time' | 'proof';
|
|
10105
10248
|
type TransferMethod = 'ach';
|
|
10106
10249
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
10107
10250
|
}
|
|
@@ -10129,6 +10272,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10129
10272
|
readonly first_name?: string;
|
|
10130
10273
|
readonly last_name?: string;
|
|
10131
10274
|
readonly phone?: string;
|
|
10275
|
+
readonly account?: io.flow.internal.v0.models.SimpleAccountReference;
|
|
10132
10276
|
}
|
|
10133
10277
|
interface AccountContactDeleted {
|
|
10134
10278
|
readonly discriminator: 'account_contact_deleted';
|
|
@@ -10371,6 +10515,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10371
10515
|
readonly account_id: string;
|
|
10372
10516
|
readonly merchant_account: string;
|
|
10373
10517
|
readonly origin_key?: string;
|
|
10518
|
+
readonly integration_type?: io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
10374
10519
|
}
|
|
10375
10520
|
interface AdyenAuthenticationForm {
|
|
10376
10521
|
readonly username: string;
|
|
@@ -10922,6 +11067,42 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10922
11067
|
interface BillingStatementBatch {
|
|
10923
11068
|
readonly id: string;
|
|
10924
11069
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
11070
|
+
readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
11071
|
+
}
|
|
11072
|
+
interface BillingStatementBatchDeleted {
|
|
11073
|
+
readonly discriminator: 'billing_statement_batch_deleted';
|
|
11074
|
+
readonly event_id: string;
|
|
11075
|
+
readonly timestamp: string;
|
|
11076
|
+
readonly id: string;
|
|
11077
|
+
}
|
|
11078
|
+
interface BillingStatementBatchReconciliation {
|
|
11079
|
+
readonly month: string;
|
|
11080
|
+
}
|
|
11081
|
+
interface BillingStatementBatchReference {
|
|
11082
|
+
readonly id: string;
|
|
11083
|
+
}
|
|
11084
|
+
interface BillingStatementBatchStatement {
|
|
11085
|
+
readonly id: string;
|
|
11086
|
+
readonly batch: io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
11087
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
11088
|
+
}
|
|
11089
|
+
interface BillingStatementBatchStatementDeleted {
|
|
11090
|
+
readonly discriminator: 'billing_statement_batch_statement_deleted';
|
|
11091
|
+
readonly event_id: string;
|
|
11092
|
+
readonly timestamp: string;
|
|
11093
|
+
readonly id: string;
|
|
11094
|
+
}
|
|
11095
|
+
interface BillingStatementBatchStatementUpserted {
|
|
11096
|
+
readonly discriminator: 'billing_statement_batch_statement_upserted';
|
|
11097
|
+
readonly event_id: string;
|
|
11098
|
+
readonly timestamp: string;
|
|
11099
|
+
readonly billing_statement_batch_statement: io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
11100
|
+
}
|
|
11101
|
+
interface BillingStatementBatchUpserted {
|
|
11102
|
+
readonly discriminator: 'billing_statement_batch_upserted';
|
|
11103
|
+
readonly event_id: string;
|
|
11104
|
+
readonly timestamp: string;
|
|
11105
|
+
readonly billing_statement_batch: io.flow.internal.v0.models.BillingStatementBatch;
|
|
10925
11106
|
}
|
|
10926
11107
|
interface BillingStatementDeleted {
|
|
10927
11108
|
readonly discriminator: 'billing_statement_deleted';
|
|
@@ -11424,6 +11605,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11424
11605
|
readonly payment_request_id?: string;
|
|
11425
11606
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
11426
11607
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
11608
|
+
readonly order_created_at?: string;
|
|
11427
11609
|
}
|
|
11428
11610
|
interface ChannelOrderAcceptanceDeleted {
|
|
11429
11611
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -12667,6 +12849,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12667
12849
|
interface CheckoutPaymentMethodIssuer {
|
|
12668
12850
|
readonly id: string;
|
|
12669
12851
|
readonly name: string;
|
|
12852
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
12670
12853
|
}
|
|
12671
12854
|
interface CheckoutPaymentSourceOption {
|
|
12672
12855
|
readonly id: string;
|
|
@@ -13637,6 +13820,82 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13637
13820
|
readonly organization_id: string;
|
|
13638
13821
|
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
13639
13822
|
}
|
|
13823
|
+
interface DebugDetails {
|
|
13824
|
+
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
13825
|
+
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
13826
|
+
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
13827
|
+
}
|
|
13828
|
+
interface DebugLabel {
|
|
13829
|
+
readonly carrier_id: string;
|
|
13830
|
+
readonly carrier_tracking_number: string;
|
|
13831
|
+
readonly billable_label_id?: string;
|
|
13832
|
+
readonly transactions?: io.flow.internal.v0.models.DebugLabelTransactionSummary[];
|
|
13833
|
+
}
|
|
13834
|
+
interface DebugLabelTransactionSummary {
|
|
13835
|
+
readonly id: string;
|
|
13836
|
+
readonly type: string;
|
|
13837
|
+
}
|
|
13838
|
+
interface DebugOrder {
|
|
13839
|
+
readonly organization_id: string;
|
|
13840
|
+
readonly number: string;
|
|
13841
|
+
readonly identifiers?: Record<string, string>;
|
|
13842
|
+
readonly submitted_at?: string;
|
|
13843
|
+
}
|
|
13844
|
+
interface DebugOrderTransaction {
|
|
13845
|
+
readonly order: io.flow.internal.v0.models.DebugOrder;
|
|
13846
|
+
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
13847
|
+
readonly transactions: io.flow.billing.v0.models.Transaction[];
|
|
13848
|
+
}
|
|
13849
|
+
interface DebugOrderTransactionForm {
|
|
13850
|
+
readonly order_id?: string;
|
|
13851
|
+
readonly organization_id?: string;
|
|
13852
|
+
readonly order_number?: string;
|
|
13853
|
+
readonly transaction_id?: string;
|
|
13854
|
+
readonly capture_id?: string;
|
|
13855
|
+
readonly refund_id?: string;
|
|
13856
|
+
readonly order_identifier?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
13857
|
+
readonly authorization_id?: string;
|
|
13858
|
+
}
|
|
13859
|
+
interface DebugOrderTransactionFormOrderIdentifier {
|
|
13860
|
+
readonly key?: string;
|
|
13861
|
+
readonly value?: string;
|
|
13862
|
+
}
|
|
13863
|
+
interface DebugPaymentTransactionSummary {
|
|
13864
|
+
readonly id: string;
|
|
13865
|
+
readonly type: string;
|
|
13866
|
+
readonly processing_transaction_id?: string;
|
|
13867
|
+
readonly queue_errors?: string[];
|
|
13868
|
+
readonly processing_transaction_ignore_reason?: string;
|
|
13869
|
+
readonly channel_transaction_ignore_reason?: string;
|
|
13870
|
+
}
|
|
13871
|
+
interface DebugTransactionDetails {
|
|
13872
|
+
readonly id: string;
|
|
13873
|
+
readonly status: io.flow.internal.v0.models.DebugTransactionDetailsStatus;
|
|
13874
|
+
readonly fx?: io.flow.internal.v0.models.DebugTransactionFx;
|
|
13875
|
+
}
|
|
13876
|
+
interface DebugTransactionDetailsStatus {
|
|
13877
|
+
readonly status: io.flow.internal.v0.enums.MainTransactionStatus;
|
|
13878
|
+
readonly description: string;
|
|
13879
|
+
}
|
|
13880
|
+
interface DebugTransactionForm {
|
|
13881
|
+
readonly transaction_id?: string;
|
|
13882
|
+
readonly capture_id?: string;
|
|
13883
|
+
readonly refund_id?: string;
|
|
13884
|
+
}
|
|
13885
|
+
interface DebugTransactionFx {
|
|
13886
|
+
readonly timestamp?: string;
|
|
13887
|
+
readonly market: io.flow.internal.v0.models.DebugTransactionFxRate[];
|
|
13888
|
+
readonly order_effective_rate?: io.flow.internal.v0.models.DebugTransactionFxRate;
|
|
13889
|
+
readonly transaction_effective_rate?: io.flow.internal.v0.models.DebugTransactionFxRate;
|
|
13890
|
+
}
|
|
13891
|
+
interface DebugTransactionFxRate {
|
|
13892
|
+
readonly base: string;
|
|
13893
|
+
readonly target: string;
|
|
13894
|
+
readonly value: number;
|
|
13895
|
+
}
|
|
13896
|
+
interface DebugTransactionQueued {
|
|
13897
|
+
readonly reasons: string[];
|
|
13898
|
+
}
|
|
13640
13899
|
interface Decision {
|
|
13641
13900
|
readonly id: string;
|
|
13642
13901
|
readonly status: string;
|
|
@@ -14732,12 +14991,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14732
14991
|
interface FxRevenueRecognitionAccountRate {
|
|
14733
14992
|
readonly value: number;
|
|
14734
14993
|
}
|
|
14735
|
-
interface FxRevenueRecognitionDeleted {
|
|
14736
|
-
readonly discriminator: 'fx_revenue_recognition_deleted';
|
|
14737
|
-
readonly event_id: string;
|
|
14738
|
-
readonly timestamp: string;
|
|
14739
|
-
readonly id: string;
|
|
14740
|
-
}
|
|
14741
14994
|
interface FxRevenueRecognitionOrder {
|
|
14742
14995
|
readonly number: string;
|
|
14743
14996
|
readonly submitted_at: string;
|
|
@@ -14755,12 +15008,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14755
15008
|
readonly local: io.flow.common.v0.models.Money;
|
|
14756
15009
|
readonly transaction_created_at: string;
|
|
14757
15010
|
}
|
|
14758
|
-
interface FxRevenueRecognitionUpserted {
|
|
14759
|
-
readonly discriminator: 'fx_revenue_recognition_upserted';
|
|
14760
|
-
readonly event_id: string;
|
|
14761
|
-
readonly timestamp: string;
|
|
14762
|
-
readonly fx_revenue_recognition: io.flow.internal.v0.models.FxRevenueRecognition;
|
|
14763
|
-
}
|
|
14764
15011
|
interface GiftCard {
|
|
14765
15012
|
readonly id: string;
|
|
14766
15013
|
readonly number: string;
|
|
@@ -15610,6 +15857,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15610
15857
|
readonly timestamp: string;
|
|
15611
15858
|
readonly rate: io.flow.internal.v0.models.InternalChannelRate;
|
|
15612
15859
|
}
|
|
15860
|
+
interface InternalDebugTransaction {
|
|
15861
|
+
readonly debug?: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
15862
|
+
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
15863
|
+
readonly queue?: io.flow.internal.v0.models.DebugTransactionQueued;
|
|
15864
|
+
}
|
|
15613
15865
|
interface InternalExclusionRuleForm {
|
|
15614
15866
|
readonly id: string;
|
|
15615
15867
|
readonly export_id: string;
|
|
@@ -16971,6 +17223,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16971
17223
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
16972
17224
|
readonly organization_currency_setting: io.flow.internal.v0.models.OrganizationCurrencySetting;
|
|
16973
17225
|
}
|
|
17226
|
+
interface OrganizationDebugTransaction {
|
|
17227
|
+
readonly debug?: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
17228
|
+
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
17229
|
+
readonly queue?: io.flow.internal.v0.models.DebugTransactionQueued;
|
|
17230
|
+
}
|
|
16974
17231
|
interface OrganizationInvitationAcceptForm {
|
|
16975
17232
|
readonly email: string;
|
|
16976
17233
|
}
|
|
@@ -16994,6 +17251,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16994
17251
|
readonly created_at: string;
|
|
16995
17252
|
readonly updated_at: string;
|
|
16996
17253
|
}
|
|
17254
|
+
interface OrganizationPaymentSettingDeleted {
|
|
17255
|
+
readonly discriminator: 'organization_payment_setting_deleted';
|
|
17256
|
+
readonly event_id: string;
|
|
17257
|
+
readonly timestamp: string;
|
|
17258
|
+
readonly organization: string;
|
|
17259
|
+
readonly id: string;
|
|
17260
|
+
}
|
|
16997
17261
|
interface OrganizationPaymentSettingForm {
|
|
16998
17262
|
readonly default_capture_option: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
16999
17263
|
readonly status: io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
@@ -17001,13 +17265,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17001
17265
|
readonly merchant_category_code?: string;
|
|
17002
17266
|
readonly payment_statement_suffix?: string;
|
|
17003
17267
|
}
|
|
17268
|
+
interface OrganizationPaymentSettingUpserted {
|
|
17269
|
+
readonly discriminator: 'organization_payment_setting_upserted';
|
|
17270
|
+
readonly event_id: string;
|
|
17271
|
+
readonly timestamp: string;
|
|
17272
|
+
readonly organization: string;
|
|
17273
|
+
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
17274
|
+
}
|
|
17004
17275
|
interface OrganizationPaymentSettingVersion {
|
|
17005
17276
|
readonly id: string;
|
|
17006
17277
|
readonly timestamp: string;
|
|
17007
17278
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
17008
17279
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
17009
17280
|
}
|
|
17281
|
+
interface OrganizationRestrictionApproval {
|
|
17282
|
+
readonly status: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
17283
|
+
readonly reason?: string;
|
|
17284
|
+
readonly updated_at: string;
|
|
17285
|
+
}
|
|
17286
|
+
interface OrganizationRestrictionApprovalUpserted {
|
|
17287
|
+
readonly discriminator: 'organization_restriction_approval_upserted';
|
|
17288
|
+
readonly event_id: string;
|
|
17289
|
+
readonly timestamp: string;
|
|
17290
|
+
readonly organization: string;
|
|
17291
|
+
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
17292
|
+
}
|
|
17010
17293
|
interface OrganizationRestrictionSnapshot {
|
|
17294
|
+
readonly id: string;
|
|
17011
17295
|
readonly organization_id: string;
|
|
17012
17296
|
readonly organization_channel_id: string;
|
|
17013
17297
|
readonly organization_status: string;
|
|
@@ -17019,6 +17303,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17019
17303
|
readonly earliest_product_receipt_date: string;
|
|
17020
17304
|
readonly date: string;
|
|
17021
17305
|
}
|
|
17306
|
+
interface OrganizationRestrictionSnapshotDeleted {
|
|
17307
|
+
readonly discriminator: 'organization_restriction_snapshot_deleted';
|
|
17308
|
+
readonly event_id: string;
|
|
17309
|
+
readonly timestamp: string;
|
|
17310
|
+
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
17311
|
+
}
|
|
17312
|
+
interface OrganizationRestrictionSnapshotUpserted {
|
|
17313
|
+
readonly discriminator: 'organization_restriction_snapshot_upserted';
|
|
17314
|
+
readonly event_id: string;
|
|
17315
|
+
readonly timestamp: string;
|
|
17316
|
+
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
17317
|
+
}
|
|
17022
17318
|
interface OrganizationRestrictionSummary {
|
|
17023
17319
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
17024
17320
|
readonly earliest_date: string;
|
|
@@ -17111,6 +17407,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17111
17407
|
readonly id: string;
|
|
17112
17408
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
17113
17409
|
}
|
|
17410
|
+
interface PaymentMethodDetail {
|
|
17411
|
+
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
17412
|
+
readonly method_options?: io.flow.internal.v0.models.PaymentMethodOption[];
|
|
17413
|
+
}
|
|
17414
|
+
interface PaymentMethodOption {
|
|
17415
|
+
readonly id: string;
|
|
17416
|
+
readonly name: string;
|
|
17417
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
17418
|
+
}
|
|
17114
17419
|
interface PaymentOrganizationSettings {
|
|
17115
17420
|
readonly id: string;
|
|
17116
17421
|
readonly enable_auto_capture: boolean;
|
|
@@ -17583,6 +17888,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17583
17888
|
readonly product_id: string;
|
|
17584
17889
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
17585
17890
|
}
|
|
17891
|
+
interface ProofOfPostingFulfilled {
|
|
17892
|
+
readonly discriminator: 'fulfilled';
|
|
17893
|
+
readonly billable_label_id: string;
|
|
17894
|
+
}
|
|
17895
|
+
interface ProofOfPostingFullyRefunded {
|
|
17896
|
+
readonly discriminator: 'fully_refunded';
|
|
17897
|
+
readonly capture_id: string;
|
|
17898
|
+
readonly refund_ids: string[];
|
|
17899
|
+
}
|
|
17586
17900
|
interface QuoteRequest {
|
|
17587
17901
|
readonly id: string;
|
|
17588
17902
|
readonly request_type: io.flow.internal.v0.enums.QuoteRequestType;
|
|
@@ -19467,7 +19781,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
19467
19781
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
19468
19782
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
19469
19783
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
19470
|
-
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.BillableLabelUpserted | io.flow.internal.v0.models.BillableLabelDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpserted | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpserted | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FxRevenueRecognitionUpserted | io.flow.internal.v0.models.FxRevenueRecognitionDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
19784
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.BillableLabelUpserted | io.flow.internal.v0.models.BillableLabelDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpserted | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpserted | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
19471
19785
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
19472
19786
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
19473
19787
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -19503,6 +19817,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
19503
19817
|
type ProcessorMerchantForm = io.flow.internal.v0.models.StripeMerchantForm;
|
|
19504
19818
|
type ProcessorMerchantModificationForm = io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm;
|
|
19505
19819
|
type ProcessorMerchantPutForm = io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm;
|
|
19820
|
+
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
19506
19821
|
type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
|
|
19507
19822
|
type ShopifyPromotionOfferDiscount = io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
19508
19823
|
type ShopifyPromotionOfferEntitlement = io.flow.internal.v0.models.ShopifyPromotionItemEntitlement | io.flow.internal.v0.models.ShopifyPromotionOrderEntitlement;
|
|
@@ -19568,6 +19883,7 @@ export declare type AdyenCancelDeleted = io.flow.internal.v0.models.AdyenCancelD
|
|
|
19568
19883
|
export declare type AdyenCancelUpserted = io.flow.internal.v0.models.AdyenCancelUpserted;
|
|
19569
19884
|
export declare type AdyenCaptureDeleted = io.flow.internal.v0.models.AdyenCaptureDeleted;
|
|
19570
19885
|
export declare type AdyenCaptureUpserted = io.flow.internal.v0.models.AdyenCaptureUpserted;
|
|
19886
|
+
export declare type AdyenIntegrationType = io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
19571
19887
|
export declare type AdyenInternalAuthorization = io.flow.internal.v0.models.AdyenInternalAuthorization;
|
|
19572
19888
|
export declare type AdyenInternalCancel = io.flow.internal.v0.models.AdyenInternalCancel;
|
|
19573
19889
|
export declare type AdyenInternalCapture = io.flow.internal.v0.models.AdyenInternalCapture;
|
|
@@ -19653,7 +19969,14 @@ export declare type BillingOrganizationSettingsUpserted = io.flow.internal.v0.mo
|
|
|
19653
19969
|
export declare type BillingStatementAttachment = io.flow.internal.v0.models.BillingStatementAttachment;
|
|
19654
19970
|
export declare type BillingStatementAttachmentKey = io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
19655
19971
|
export declare type BillingStatementBatch = io.flow.internal.v0.models.BillingStatementBatch;
|
|
19972
|
+
export declare type BillingStatementBatchDeleted = io.flow.internal.v0.models.BillingStatementBatchDeleted;
|
|
19656
19973
|
export declare type BillingStatementBatchFileKey = io.flow.internal.v0.enums.BillingStatementBatchFileKey;
|
|
19974
|
+
export declare type BillingStatementBatchReconciliation = io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
19975
|
+
export declare type BillingStatementBatchReference = io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
19976
|
+
export declare type BillingStatementBatchStatement = io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
19977
|
+
export declare type BillingStatementBatchStatementDeleted = io.flow.internal.v0.models.BillingStatementBatchStatementDeleted;
|
|
19978
|
+
export declare type BillingStatementBatchStatementUpserted = io.flow.internal.v0.models.BillingStatementBatchStatementUpserted;
|
|
19979
|
+
export declare type BillingStatementBatchUpserted = io.flow.internal.v0.models.BillingStatementBatchUpserted;
|
|
19657
19980
|
export declare type BillingStatementDeleted = io.flow.internal.v0.models.BillingStatementDeleted;
|
|
19658
19981
|
export declare type BillingStatementPendingReview = io.flow.internal.v0.models.BillingStatementPendingReview;
|
|
19659
19982
|
export declare type BillingStatementReference = io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -19770,6 +20093,7 @@ export declare type ChannelRateMetadataIdentity = io.flow.internal.v0.models.Cha
|
|
|
19770
20093
|
export declare type ChannelRateMetadataRate = io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
19771
20094
|
export declare type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
19772
20095
|
export declare type ChannelTransactionRate = io.flow.internal.v0.models.ChannelTransactionRate;
|
|
20096
|
+
export declare type ChannelTransactionType = io.flow.internal.v0.enums.ChannelTransactionType;
|
|
19773
20097
|
export declare type Chargeback = io.flow.internal.v0.models.Chargeback;
|
|
19774
20098
|
export declare type ChargebackDeleted = io.flow.internal.v0.models.ChargebackDeleted;
|
|
19775
20099
|
export declare type ChargebackPaymentStatus = io.flow.internal.v0.enums.ChargebackPaymentStatus;
|
|
@@ -20377,6 +20701,20 @@ export declare type DailyExperimentEngineResults = io.flow.internal.v0.models.Da
|
|
|
20377
20701
|
export declare type DailyExperimentResults = io.flow.internal.v0.models.DailyExperimentResults;
|
|
20378
20702
|
export declare type DailyExperimentResultsDeleted = io.flow.internal.v0.models.DailyExperimentResultsDeleted;
|
|
20379
20703
|
export declare type DailyExperimentResultsUpserted = io.flow.internal.v0.models.DailyExperimentResultsUpserted;
|
|
20704
|
+
export declare type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
20705
|
+
export declare type DebugLabel = io.flow.internal.v0.models.DebugLabel;
|
|
20706
|
+
export declare type DebugLabelTransactionSummary = io.flow.internal.v0.models.DebugLabelTransactionSummary;
|
|
20707
|
+
export declare type DebugOrder = io.flow.internal.v0.models.DebugOrder;
|
|
20708
|
+
export declare type DebugOrderTransaction = io.flow.internal.v0.models.DebugOrderTransaction;
|
|
20709
|
+
export declare type DebugOrderTransactionForm = io.flow.internal.v0.models.DebugOrderTransactionForm;
|
|
20710
|
+
export declare type DebugOrderTransactionFormOrderIdentifier = io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
20711
|
+
export declare type DebugPaymentTransactionSummary = io.flow.internal.v0.models.DebugPaymentTransactionSummary;
|
|
20712
|
+
export declare type DebugTransactionDetails = io.flow.internal.v0.models.DebugTransactionDetails;
|
|
20713
|
+
export declare type DebugTransactionDetailsStatus = io.flow.internal.v0.models.DebugTransactionDetailsStatus;
|
|
20714
|
+
export declare type DebugTransactionForm = io.flow.internal.v0.models.DebugTransactionForm;
|
|
20715
|
+
export declare type DebugTransactionFx = io.flow.internal.v0.models.DebugTransactionFx;
|
|
20716
|
+
export declare type DebugTransactionFxRate = io.flow.internal.v0.models.DebugTransactionFxRate;
|
|
20717
|
+
export declare type DebugTransactionQueued = io.flow.internal.v0.models.DebugTransactionQueued;
|
|
20380
20718
|
export declare type Decision = io.flow.internal.v0.models.Decision;
|
|
20381
20719
|
export declare type DeclineReason = io.flow.internal.v0.unions.DeclineReason;
|
|
20382
20720
|
export declare type DeclineReasonChannelOrderAcceptance = io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance;
|
|
@@ -20599,12 +20937,10 @@ export declare type FxFee = io.flow.internal.v0.models.FxFee;
|
|
|
20599
20937
|
export declare type FxRevenueRecognition = io.flow.internal.v0.models.FxRevenueRecognition;
|
|
20600
20938
|
export declare type FxRevenueRecognitionAccount = io.flow.internal.v0.models.FxRevenueRecognitionAccount;
|
|
20601
20939
|
export declare type FxRevenueRecognitionAccountRate = io.flow.internal.v0.models.FxRevenueRecognitionAccountRate;
|
|
20602
|
-
export declare type FxRevenueRecognitionDeleted = io.flow.internal.v0.models.FxRevenueRecognitionDeleted;
|
|
20603
20940
|
export declare type FxRevenueRecognitionOrder = io.flow.internal.v0.models.FxRevenueRecognitionOrder;
|
|
20604
20941
|
export declare type FxRevenueRecognitionOrganization = io.flow.internal.v0.models.FxRevenueRecognitionOrganization;
|
|
20605
20942
|
export declare type FxRevenueRecognitionRate = io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
20606
20943
|
export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
20607
|
-
export declare type FxRevenueRecognitionUpserted = io.flow.internal.v0.models.FxRevenueRecognitionUpserted;
|
|
20608
20944
|
export declare type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
20609
20945
|
export declare type GiftCardAuthorizationError = io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
20610
20946
|
export declare type GiftCardForm = io.flow.internal.v0.models.GiftCardForm;
|
|
@@ -20704,6 +21040,7 @@ export declare type InternalCardAuthorizationDetails = io.flow.internal.v0.model
|
|
|
20704
21040
|
export declare type InternalChannelRate = io.flow.internal.v0.models.InternalChannelRate;
|
|
20705
21041
|
export declare type InternalChannelRateDeleted = io.flow.internal.v0.models.InternalChannelRateDeleted;
|
|
20706
21042
|
export declare type InternalChannelRateUpserted = io.flow.internal.v0.models.InternalChannelRateUpserted;
|
|
21043
|
+
export declare type InternalDebugTransaction = io.flow.internal.v0.models.InternalDebugTransaction;
|
|
20707
21044
|
export declare type InternalExclusionRuleForm = io.flow.internal.v0.models.InternalExclusionRuleForm;
|
|
20708
21045
|
export declare type InternalFiservAuthorizationDetails = io.flow.internal.v0.models.InternalFiservAuthorizationDetails;
|
|
20709
21046
|
export declare type InternalHarmonizationStatistic = io.flow.internal.v0.unions.InternalHarmonizationStatistic;
|
|
@@ -20965,14 +21302,22 @@ export declare type OrganizationCurrencySettingDeleted = io.flow.internal.v0.mod
|
|
|
20965
21302
|
export declare type OrganizationCurrencySettingForm = io.flow.internal.v0.models.OrganizationCurrencySettingForm;
|
|
20966
21303
|
export declare type OrganizationCurrencySettingUpserted = io.flow.internal.v0.models.OrganizationCurrencySettingUpserted;
|
|
20967
21304
|
export declare type OrganizationCurrencySettingVersion = io.flow.internal.v0.models.OrganizationCurrencySettingVersion;
|
|
21305
|
+
export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.OrganizationDebugTransaction;
|
|
20968
21306
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
20969
21307
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
20970
21308
|
export declare type OrganizationMembershipCopyForm = io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
20971
21309
|
export declare type OrganizationPaymentSetting = io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
21310
|
+
export declare type OrganizationPaymentSettingDeleted = io.flow.internal.v0.models.OrganizationPaymentSettingDeleted;
|
|
20972
21311
|
export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.OrganizationPaymentSettingForm;
|
|
21312
|
+
export declare type OrganizationPaymentSettingUpserted = io.flow.internal.v0.models.OrganizationPaymentSettingUpserted;
|
|
20973
21313
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
20974
21314
|
export declare type OrganizationPaymentStatus = io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
21315
|
+
export declare type OrganizationRestrictionApproval = io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
21316
|
+
export declare type OrganizationRestrictionApprovalStatus = io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
21317
|
+
export declare type OrganizationRestrictionApprovalUpserted = io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted;
|
|
20975
21318
|
export declare type OrganizationRestrictionSnapshot = io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
21319
|
+
export declare type OrganizationRestrictionSnapshotDeleted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted;
|
|
21320
|
+
export declare type OrganizationRestrictionSnapshotUpserted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
20976
21321
|
export declare type OrganizationRestrictionSummary = io.flow.internal.v0.models.OrganizationRestrictionSummary;
|
|
20977
21322
|
export declare type OrganizationSettings = io.flow.internal.v0.models.OrganizationSettings;
|
|
20978
21323
|
export declare type OrganizationSettingsForm = io.flow.internal.v0.models.OrganizationSettingsForm;
|
|
@@ -20992,6 +21337,8 @@ export declare type PartnerOrganizationAuthorizationForm = io.flow.internal.v0.m
|
|
|
20992
21337
|
export declare type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
20993
21338
|
export declare type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
20994
21339
|
export declare type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
21340
|
+
export declare type PaymentMethodDetail = io.flow.internal.v0.models.PaymentMethodDetail;
|
|
21341
|
+
export declare type PaymentMethodOption = io.flow.internal.v0.models.PaymentMethodOption;
|
|
20995
21342
|
export declare type PaymentOrganizationSettings = io.flow.internal.v0.models.PaymentOrganizationSettings;
|
|
20996
21343
|
export declare type PaymentOrganizationSettingsPutForm = io.flow.internal.v0.models.PaymentOrganizationSettingsPutForm;
|
|
20997
21344
|
export declare type PaymentProcessorAccountDeleted = io.flow.internal.v0.models.PaymentProcessorAccountDeleted;
|
|
@@ -21080,6 +21427,9 @@ export declare type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
|
21080
21427
|
export declare type PromptCheckoutDisplayPosition = io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
21081
21428
|
export declare type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
|
|
21082
21429
|
export declare type PromptTarget = io.flow.internal.v0.enums.PromptTarget;
|
|
21430
|
+
export declare type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
21431
|
+
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
21432
|
+
export declare type ProofOfPostingFullyRefunded = io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
21083
21433
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
21084
21434
|
export declare type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
21085
21435
|
export declare type RateAndRuleItem = io.flow.internal.v0.models.RateAndRuleItem;
|