@flowio/api-internal-prop-types 9.24.73 → 9.24.75
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/lib/api-internal.d.ts +465 -60
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +465 -60
- package/src/api-internal.js +581 -99
package/src/api-internal.d.ts
CHANGED
|
@@ -87,41 +87,6 @@ declare namespace io.flow.RESERVED_WORD_return.v0.unions {
|
|
|
87
87
|
type ReturnSource = (io.flow.RESERVED_WORD_return.v0.models.ReturnSourceFlow | io.flow.RESERVED_WORD_return.v0.models.ReturnSourceExternalVendor);
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
declare namespace io.flow.units.v0.enums {
|
|
91
|
-
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
92
|
-
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
93
|
-
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
declare namespace io.flow.order.price.v0.enums {
|
|
97
|
-
type OrderPriceDetailComponentKey = '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' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
|
|
98
|
-
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
declare namespace io.flow.order.price.v0.models {
|
|
102
|
-
interface OrderPriceDetail {
|
|
103
|
-
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
104
|
-
readonly 'currency': string;
|
|
105
|
-
readonly 'amount': number;
|
|
106
|
-
readonly 'label': string;
|
|
107
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
108
|
-
readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
109
|
-
readonly 'name'?: string;
|
|
110
|
-
readonly 'rate'?: number;
|
|
111
|
-
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
112
|
-
readonly 'rate_label'?: string;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
interface OrderPriceDetailComponent {
|
|
116
|
-
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
117
|
-
readonly 'currency': string;
|
|
118
|
-
readonly 'amount': number;
|
|
119
|
-
readonly 'label': string;
|
|
120
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
121
|
-
readonly 'name'?: string;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
90
|
declare namespace io.flow.error.v0.enums {
|
|
126
91
|
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
127
92
|
}
|
|
@@ -2259,7 +2224,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2259
2224
|
}
|
|
2260
2225
|
|
|
2261
2226
|
interface BillingCsvTransactionMetadataManual {
|
|
2262
|
-
readonly 'original'
|
|
2227
|
+
readonly 'original'?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
2228
|
+
readonly 'url'?: string;
|
|
2263
2229
|
}
|
|
2264
2230
|
|
|
2265
2231
|
interface BillingCsvTransactionMetadataShippingLabel {
|
|
@@ -2743,6 +2709,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2743
2709
|
readonly 'status': io.flow.stripe.v0.enums.PaymentIntentStatus;
|
|
2744
2710
|
readonly 'transfer_data'?: io.flow.stripe.v0.models.TransferData;
|
|
2745
2711
|
readonly 'transfer_group'?: string;
|
|
2712
|
+
readonly 'shipping'?: io.flow.stripe.v0.models.PaymentIntentShipping;
|
|
2746
2713
|
}
|
|
2747
2714
|
|
|
2748
2715
|
interface PaymentIntentCancellationForm {
|
|
@@ -2799,6 +2766,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2799
2766
|
readonly 'statement_descriptor_suffix'?: string;
|
|
2800
2767
|
readonly 'transfer_data'?: io.flow.stripe.v0.models.TransferData;
|
|
2801
2768
|
readonly 'transfer_group'?: string;
|
|
2769
|
+
readonly 'shipping'?: io.flow.stripe.v0.models.PaymentIntentShipping;
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
interface PaymentIntentShipping {
|
|
2773
|
+
readonly 'address': io.flow.stripe.v0.models.Address;
|
|
2774
|
+
readonly 'name': string;
|
|
2775
|
+
readonly 'phone'?: string;
|
|
2802
2776
|
}
|
|
2803
2777
|
|
|
2804
2778
|
interface PaymentIntentUpdateForm {
|
|
@@ -4381,6 +4355,202 @@ declare namespace io.flow.brickftp.v0.unions {
|
|
|
4381
4355
|
type Node = (io.flow.brickftp.v0.models.Directory | io.flow.brickftp.v0.models.FileSummary);
|
|
4382
4356
|
}
|
|
4383
4357
|
|
|
4358
|
+
declare namespace io.flow.units.v0.enums {
|
|
4359
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
4360
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
4361
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
4362
|
+
}
|
|
4363
|
+
|
|
4364
|
+
declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
4365
|
+
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
4366
|
+
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
4367
|
+
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
4368
|
+
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
4369
|
+
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
4370
|
+
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
4371
|
+
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
4372
|
+
}
|
|
4373
|
+
|
|
4374
|
+
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
4375
|
+
interface CatalogPublicationSyncValidationError {
|
|
4376
|
+
readonly 'message': string;
|
|
4377
|
+
readonly 'reason': string;
|
|
4378
|
+
readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
4379
|
+
}
|
|
4380
|
+
|
|
4381
|
+
interface ChannelOrderSummary {
|
|
4382
|
+
readonly 'id': string;
|
|
4383
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
4384
|
+
readonly 'external_order_reference': string;
|
|
4385
|
+
readonly 'order_number': string;
|
|
4386
|
+
readonly 'fulfullment_details': io.flow.shopify.markets.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
4387
|
+
}
|
|
4388
|
+
|
|
4389
|
+
interface ChannelOrderSummaryFulfillmentDetails {
|
|
4390
|
+
readonly 'fulfillment_status': io.flow.shopify.markets.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
|
|
4391
|
+
readonly 'timestamp': string;
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
interface FlowShopValidationError {
|
|
4395
|
+
readonly 'message': string;
|
|
4396
|
+
readonly 'reason': string;
|
|
4397
|
+
readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
interface GenericValidationError {
|
|
4401
|
+
readonly 'message': string;
|
|
4402
|
+
readonly 'reason': string;
|
|
4403
|
+
readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
4404
|
+
}
|
|
4405
|
+
|
|
4406
|
+
interface MarketsOrder {
|
|
4407
|
+
readonly 'shopify_order': io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
4408
|
+
readonly 'flow_authorization'?: io.flow.payment.v0.unions.Authorization;
|
|
4409
|
+
}
|
|
4410
|
+
|
|
4411
|
+
interface OrderValidationError {
|
|
4412
|
+
readonly 'message': string;
|
|
4413
|
+
readonly 'reason': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
4414
|
+
readonly 'action'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
4415
|
+
readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
4416
|
+
}
|
|
4417
|
+
|
|
4418
|
+
interface ProductRestrictionResultValidationError {
|
|
4419
|
+
readonly 'message': string;
|
|
4420
|
+
readonly 'reason': string;
|
|
4421
|
+
readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
4422
|
+
}
|
|
4423
|
+
|
|
4424
|
+
interface ShippingLane {
|
|
4425
|
+
readonly 'origin': string;
|
|
4426
|
+
readonly 'destination': string;
|
|
4427
|
+
}
|
|
4428
|
+
|
|
4429
|
+
interface ShopifyMarketsDiscrepancy {
|
|
4430
|
+
readonly 'organization_id': string;
|
|
4431
|
+
readonly 'count': number;
|
|
4432
|
+
}
|
|
4433
|
+
|
|
4434
|
+
interface ShopifyMarketsDiscrepancyData {
|
|
4435
|
+
readonly 'total_count': number;
|
|
4436
|
+
readonly 'discrepancies': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancy[];
|
|
4437
|
+
}
|
|
4438
|
+
|
|
4439
|
+
interface ShopifyMarketsIncorporationCountry {
|
|
4440
|
+
readonly 'country': string;
|
|
4441
|
+
readonly 'state'?: string;
|
|
4442
|
+
readonly 'province'?: string;
|
|
4443
|
+
readonly 'jurisdiction'?: string;
|
|
4444
|
+
}
|
|
4445
|
+
|
|
4446
|
+
interface ShopifyMarketsInternalOrderMetrics {
|
|
4447
|
+
readonly 'total_order_count': number;
|
|
4448
|
+
}
|
|
4449
|
+
|
|
4450
|
+
interface ShopifyMarketsOrdersMetrics {
|
|
4451
|
+
readonly 'id': string;
|
|
4452
|
+
readonly 'range': io.flow.common.v0.models.DatetimeRange;
|
|
4453
|
+
readonly 'shopify': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
4454
|
+
readonly 'internal': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
4455
|
+
readonly 'discrepancy_data': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
4456
|
+
}
|
|
4457
|
+
|
|
4458
|
+
interface ShopifyMarketsQueuedRecord {
|
|
4459
|
+
readonly 'id': string;
|
|
4460
|
+
readonly 'type': string;
|
|
4461
|
+
readonly 'type_id': string;
|
|
4462
|
+
readonly 'organization_id': string;
|
|
4463
|
+
readonly 'environment'?: string;
|
|
4464
|
+
readonly 'num_attempts': number;
|
|
4465
|
+
readonly 'next_attempt_at': string;
|
|
4466
|
+
readonly 'errors'?: string[];
|
|
4467
|
+
readonly 'stacktrace'?: string;
|
|
4468
|
+
}
|
|
4469
|
+
|
|
4470
|
+
interface ShopifyMarketsShop {
|
|
4471
|
+
readonly 'id': string;
|
|
4472
|
+
readonly 'shopify_shop_id'?: string;
|
|
4473
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
4474
|
+
readonly 'domain': string;
|
|
4475
|
+
readonly 'myshopify_domain': string;
|
|
4476
|
+
readonly 'organization_id': string;
|
|
4477
|
+
readonly 'shop': string;
|
|
4478
|
+
readonly 'created_at': string;
|
|
4479
|
+
readonly 'shared_secret_masked': string;
|
|
4480
|
+
readonly 'api_key_masked'?: string;
|
|
4481
|
+
readonly 'api_password_masked'?: string;
|
|
4482
|
+
readonly 'access_token_masked'?: string;
|
|
4483
|
+
}
|
|
4484
|
+
|
|
4485
|
+
interface ShopifyMarketsShopForm {
|
|
4486
|
+
readonly 'shop': string;
|
|
4487
|
+
readonly 'domain': string;
|
|
4488
|
+
readonly 'myshopify_domain': string;
|
|
4489
|
+
readonly 'shared_secret': string;
|
|
4490
|
+
readonly 'api_key'?: string;
|
|
4491
|
+
readonly 'api_password'?: string;
|
|
4492
|
+
readonly 'access_token'?: string;
|
|
4493
|
+
}
|
|
4494
|
+
|
|
4495
|
+
interface ShopifyMarketsShopSummary {
|
|
4496
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
|
|
4497
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
4498
|
+
}
|
|
4499
|
+
|
|
4500
|
+
interface ShopifyMarketsShopifyOrderMetrics {
|
|
4501
|
+
readonly 'total_order_count': number;
|
|
4502
|
+
}
|
|
4503
|
+
|
|
4504
|
+
interface ShopifyMarketsSubsidiaryCompany {
|
|
4505
|
+
readonly 'legal_name'?: string;
|
|
4506
|
+
readonly 'incorporation_country'?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
4507
|
+
}
|
|
4508
|
+
|
|
4509
|
+
interface ShopifyMarketsSync {
|
|
4510
|
+
readonly 'force_resync'?: boolean;
|
|
4511
|
+
}
|
|
4512
|
+
|
|
4513
|
+
interface ShopifyMarketsWebhookRegistration {
|
|
4514
|
+
readonly 'id': string;
|
|
4515
|
+
readonly 'response': io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
4516
|
+
}
|
|
4517
|
+
|
|
4518
|
+
interface ShopifyOrderCancelForm {
|
|
4519
|
+
readonly 'note'?: string;
|
|
4520
|
+
}
|
|
4521
|
+
|
|
4522
|
+
interface ShopifyOrderCancelResponse {
|
|
4523
|
+
readonly 'shopify_order_cancellation_id': string;
|
|
4524
|
+
readonly 'shopify_order_id': number;
|
|
4525
|
+
readonly 'message': string;
|
|
4526
|
+
}
|
|
4527
|
+
|
|
4528
|
+
interface ShopifyOrderDestinationForm {
|
|
4529
|
+
readonly 'destination': io.flow.common.v0.models.Address;
|
|
4530
|
+
}
|
|
4531
|
+
|
|
4532
|
+
interface ShopifyShopStatistics {
|
|
4533
|
+
readonly 'id': string;
|
|
4534
|
+
readonly 'initial_catalog_synced_at'?: string;
|
|
4535
|
+
readonly 'catalog_sync_duration'?: number;
|
|
4536
|
+
readonly 'catalog_products_count'?: number;
|
|
4537
|
+
}
|
|
4538
|
+
|
|
4539
|
+
interface ThirdPartyLogisticsPartner {
|
|
4540
|
+
readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
|
|
4541
|
+
readonly 'warehouse_url'?: string;
|
|
4542
|
+
}
|
|
4543
|
+
|
|
4544
|
+
interface ThirdPartyLogisticsPickUpTimeWindow {
|
|
4545
|
+
readonly 'from': string;
|
|
4546
|
+
readonly 'to': string;
|
|
4547
|
+
}
|
|
4548
|
+
|
|
4549
|
+
interface Webhook {
|
|
4550
|
+
readonly 'placeholder'?: any/*json*/;
|
|
4551
|
+
}
|
|
4552
|
+
}
|
|
4553
|
+
|
|
4384
4554
|
declare namespace io.flow.consumer.invoice.v0.enums {
|
|
4385
4555
|
type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
|
|
4386
4556
|
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
@@ -7479,6 +7649,100 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
7479
7649
|
type SdkAdyenV3AuthenticationToken = (io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken);
|
|
7480
7650
|
}
|
|
7481
7651
|
|
|
7652
|
+
declare namespace io.flow.order.price.v0.enums {
|
|
7653
|
+
type OrderPriceDetailComponentKey = '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' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
|
|
7654
|
+
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
|
|
7655
|
+
}
|
|
7656
|
+
|
|
7657
|
+
declare namespace io.flow.order.price.v0.models {
|
|
7658
|
+
interface OrderPriceDetail {
|
|
7659
|
+
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
7660
|
+
readonly 'currency': string;
|
|
7661
|
+
readonly 'amount': number;
|
|
7662
|
+
readonly 'label': string;
|
|
7663
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
7664
|
+
readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
7665
|
+
readonly 'name'?: string;
|
|
7666
|
+
readonly 'rate'?: number;
|
|
7667
|
+
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
7668
|
+
readonly 'rate_label'?: string;
|
|
7669
|
+
}
|
|
7670
|
+
|
|
7671
|
+
interface OrderPriceDetailComponent {
|
|
7672
|
+
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
7673
|
+
readonly 'currency': string;
|
|
7674
|
+
readonly 'amount': number;
|
|
7675
|
+
readonly 'label': string;
|
|
7676
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
7677
|
+
readonly 'name'?: string;
|
|
7678
|
+
}
|
|
7679
|
+
}
|
|
7680
|
+
|
|
7681
|
+
declare namespace io.flow.channel.internal.v0.enums {
|
|
7682
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
7683
|
+
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
7684
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies';
|
|
7685
|
+
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
7686
|
+
}
|
|
7687
|
+
|
|
7688
|
+
declare namespace io.flow.channel.internal.v0.models {
|
|
7689
|
+
interface ChannelCurrencyForm {
|
|
7690
|
+
readonly 'currency': string;
|
|
7691
|
+
readonly 'channel_id': string;
|
|
7692
|
+
readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
7693
|
+
}
|
|
7694
|
+
|
|
7695
|
+
interface ChannelForm {
|
|
7696
|
+
readonly 'name': string;
|
|
7697
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
7698
|
+
readonly 'organization_id_prefix'?: string;
|
|
7699
|
+
}
|
|
7700
|
+
|
|
7701
|
+
interface ChannelMembership {
|
|
7702
|
+
readonly 'id': string;
|
|
7703
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
7704
|
+
readonly 'user': io.flow.common.v0.unions.ExpandableUser;
|
|
7705
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
7706
|
+
}
|
|
7707
|
+
|
|
7708
|
+
interface ChannelMembershipForm {
|
|
7709
|
+
readonly 'channel_id': string;
|
|
7710
|
+
readonly 'user_id': string;
|
|
7711
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
7712
|
+
}
|
|
7713
|
+
|
|
7714
|
+
interface ChannelMembershipPutForm {
|
|
7715
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
7716
|
+
}
|
|
7717
|
+
|
|
7718
|
+
interface ChannelOrderAcceptance {
|
|
7719
|
+
readonly 'id': string;
|
|
7720
|
+
readonly 'organization_id': string;
|
|
7721
|
+
readonly 'order_number': string;
|
|
7722
|
+
readonly 'channel_id': string;
|
|
7723
|
+
readonly 'external_order_reference': string;
|
|
7724
|
+
readonly 'payment_request_id'?: string;
|
|
7725
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
7726
|
+
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
7727
|
+
readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
7728
|
+
readonly 'order_created_at'?: string;
|
|
7729
|
+
readonly 'order_updated_at'?: string;
|
|
7730
|
+
}
|
|
7731
|
+
|
|
7732
|
+
interface ChannelOrderAcceptanceForm {
|
|
7733
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
7734
|
+
}
|
|
7735
|
+
|
|
7736
|
+
interface ChannelOrderAcceptanceReason {
|
|
7737
|
+
readonly 'description': string;
|
|
7738
|
+
readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
7739
|
+
}
|
|
7740
|
+
|
|
7741
|
+
interface FlowChannelOrganization {
|
|
7742
|
+
readonly 'placeholder'?: string;
|
|
7743
|
+
}
|
|
7744
|
+
}
|
|
7745
|
+
|
|
7482
7746
|
declare namespace io.flow.payment.internal.v0.enums {
|
|
7483
7747
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
7484
7748
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -9345,6 +9609,111 @@ declare namespace io.flow.order.management.event.v0.unions {
|
|
|
9345
9609
|
type OrderManagementEvent = (io.flow.order.management.event.v0.models.OrderPlaced | io.flow.order.management.event.v0.models.OrderPlacedV2 | io.flow.order.management.event.v0.models.ReadyToFulfill | io.flow.order.management.event.v0.models.ReadyToFulfillV2);
|
|
9346
9610
|
}
|
|
9347
9611
|
|
|
9612
|
+
declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
9613
|
+
interface ChannelOrderSummaryDeleted {
|
|
9614
|
+
readonly 'discriminator': 'channel_order_summary_deleted';
|
|
9615
|
+
readonly 'event_id': string;
|
|
9616
|
+
readonly 'timestamp': string;
|
|
9617
|
+
readonly 'channel_id': string;
|
|
9618
|
+
readonly 'id': string;
|
|
9619
|
+
}
|
|
9620
|
+
|
|
9621
|
+
interface ChannelOrderSummaryUpserted {
|
|
9622
|
+
readonly 'discriminator': 'channel_order_summary_upserted';
|
|
9623
|
+
readonly 'event_id': string;
|
|
9624
|
+
readonly 'timestamp': string;
|
|
9625
|
+
readonly 'channel_id': string;
|
|
9626
|
+
readonly 'channel_order_summary': io.flow.shopify.markets.internal.v0.models.ChannelOrderSummary;
|
|
9627
|
+
}
|
|
9628
|
+
|
|
9629
|
+
interface ShopifyMarketsMetricsDeleted {
|
|
9630
|
+
readonly 'discriminator': 'shopify_markets_metrics_deleted';
|
|
9631
|
+
readonly 'event_id': string;
|
|
9632
|
+
readonly 'timestamp': string;
|
|
9633
|
+
readonly 'id': string;
|
|
9634
|
+
}
|
|
9635
|
+
|
|
9636
|
+
interface ShopifyMarketsMetricsUpserted {
|
|
9637
|
+
readonly 'discriminator': 'shopify_markets_metrics_upserted';
|
|
9638
|
+
readonly 'event_id': string;
|
|
9639
|
+
readonly 'timestamp': string;
|
|
9640
|
+
readonly 'shopify_markets_metrics': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
9641
|
+
}
|
|
9642
|
+
|
|
9643
|
+
interface ShopifyMarketsOrder {
|
|
9644
|
+
readonly 'id': string;
|
|
9645
|
+
readonly 'model': io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
9646
|
+
}
|
|
9647
|
+
|
|
9648
|
+
interface ShopifyMarketsOrderDeleted {
|
|
9649
|
+
readonly 'discriminator': 'shopify_markets_order_deleted';
|
|
9650
|
+
readonly 'event_id': string;
|
|
9651
|
+
readonly 'timestamp': string;
|
|
9652
|
+
readonly 'organization': string;
|
|
9653
|
+
readonly 'shopify_markets_order': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
9654
|
+
}
|
|
9655
|
+
|
|
9656
|
+
interface ShopifyMarketsOrderUpserted {
|
|
9657
|
+
readonly 'discriminator': 'shopify_markets_order_upserted';
|
|
9658
|
+
readonly 'event_id': string;
|
|
9659
|
+
readonly 'timestamp': string;
|
|
9660
|
+
readonly 'organization': string;
|
|
9661
|
+
readonly 'shopify_markets_order': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
9662
|
+
}
|
|
9663
|
+
|
|
9664
|
+
interface ShopifyMarketsShopDeleted {
|
|
9665
|
+
readonly 'discriminator': 'shopify_markets_shop_deleted';
|
|
9666
|
+
readonly 'event_id': string;
|
|
9667
|
+
readonly 'timestamp': string;
|
|
9668
|
+
readonly 'organization': string;
|
|
9669
|
+
readonly 'id': string;
|
|
9670
|
+
}
|
|
9671
|
+
|
|
9672
|
+
interface ShopifyMarketsShopStatisticsDeleted {
|
|
9673
|
+
readonly 'discriminator': 'shopify_markets_shop_statistics_deleted';
|
|
9674
|
+
readonly 'event_id': string;
|
|
9675
|
+
readonly 'timestamp': string;
|
|
9676
|
+
readonly 'organization': string;
|
|
9677
|
+
readonly 'id': string;
|
|
9678
|
+
}
|
|
9679
|
+
|
|
9680
|
+
interface ShopifyMarketsShopStatisticsUpserted {
|
|
9681
|
+
readonly 'discriminator': 'shopify_markets_shop_statistics_upserted';
|
|
9682
|
+
readonly 'event_id': string;
|
|
9683
|
+
readonly 'timestamp': string;
|
|
9684
|
+
readonly 'organization': string;
|
|
9685
|
+
readonly 'shopify_markets_shop_statistics': io.flow.shopify.markets.internal.v0.models.ShopifyShopStatistics;
|
|
9686
|
+
}
|
|
9687
|
+
|
|
9688
|
+
interface ShopifyMarketsShopUpserted {
|
|
9689
|
+
readonly 'discriminator': 'shopify_markets_shop_upserted';
|
|
9690
|
+
readonly 'event_id': string;
|
|
9691
|
+
readonly 'timestamp': string;
|
|
9692
|
+
readonly 'organization': string;
|
|
9693
|
+
readonly 'shopify_markets_shop': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShop;
|
|
9694
|
+
}
|
|
9695
|
+
|
|
9696
|
+
interface ShopifyMarketsWebhookRegistrationDeleted {
|
|
9697
|
+
readonly 'discriminator': 'shopify_markets_webhook_registration_deleted';
|
|
9698
|
+
readonly 'event_id': string;
|
|
9699
|
+
readonly 'timestamp': string;
|
|
9700
|
+
readonly 'organization': string;
|
|
9701
|
+
readonly 'id': string;
|
|
9702
|
+
}
|
|
9703
|
+
|
|
9704
|
+
interface ShopifyMarketsWebhookRegistrationUpserted {
|
|
9705
|
+
readonly 'discriminator': 'shopify_markets_webhook_registration_upserted';
|
|
9706
|
+
readonly 'event_id': string;
|
|
9707
|
+
readonly 'timestamp': string;
|
|
9708
|
+
readonly 'organization': string;
|
|
9709
|
+
readonly 'registration': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
9710
|
+
}
|
|
9711
|
+
}
|
|
9712
|
+
|
|
9713
|
+
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
9714
|
+
type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted);
|
|
9715
|
+
}
|
|
9716
|
+
|
|
9348
9717
|
declare namespace io.flow.experience.v0.enums {
|
|
9349
9718
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
9350
9719
|
type CreditPaymentErrorCode = 'generic_error' | 'invalid_order_number' | 'invalid_currency' | 'invalid_description' | 'duplicate' | 'amount_must_be_positive' | 'amount_exceeds_balance' | 'insufficient_amount';
|
|
@@ -12451,12 +12820,12 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
12451
12820
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
12452
12821
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12453
12822
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
12454
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit';
|
|
12823
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee';
|
|
12455
12824
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
12456
12825
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
12457
12826
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12458
12827
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
12459
|
-
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | '
|
|
12828
|
+
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
|
|
12460
12829
|
type ResponsibleParty = 'flow' | 'organization';
|
|
12461
12830
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
12462
12831
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
@@ -12536,6 +12905,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
12536
12905
|
readonly 'merchant_of_record_fee'?: number;
|
|
12537
12906
|
readonly 'duty_guarantee_fee'?: number;
|
|
12538
12907
|
readonly 'transfer_fee'?: number;
|
|
12908
|
+
readonly 'negative_balance_guarantee_fee'?: number;
|
|
12539
12909
|
readonly 'order_service_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
12540
12910
|
readonly 'label_fees'?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
|
|
12541
12911
|
readonly 'charge_label_cost_directly': boolean;
|
|
@@ -13752,7 +14122,8 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13752
14122
|
|
|
13753
14123
|
interface TransactionMetadataManual {
|
|
13754
14124
|
readonly 'discriminator': 'manual';
|
|
13755
|
-
readonly 'original'
|
|
14125
|
+
readonly 'original'?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
14126
|
+
readonly 'url'?: string;
|
|
13756
14127
|
}
|
|
13757
14128
|
|
|
13758
14129
|
interface TransactionMetadataOriginalTransaction {
|
|
@@ -15478,7 +15849,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15478
15849
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
15479
15850
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
15480
15851
|
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';
|
|
15481
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
|
|
15852
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days';
|
|
15482
15853
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'all';
|
|
15483
15854
|
type BillingStatementBatchFileKey = 'summary';
|
|
15484
15855
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -15487,6 +15858,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15487
15858
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
15488
15859
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
15489
15860
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
15861
|
+
type CarrierChargeOtherReason = 'return_to_origin' | 'other';
|
|
15490
15862
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
15491
15863
|
type CarrierValidationStatus = 'success' | 'error';
|
|
15492
15864
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
@@ -15638,9 +16010,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15638
16010
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
15639
16011
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
15640
16012
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
16013
|
+
type LogisticsResponsibility = 'organization' | 'flow';
|
|
15641
16014
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
15642
16015
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
15643
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit';
|
|
16016
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee';
|
|
15644
16017
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
15645
16018
|
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
15646
16019
|
type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
|
|
@@ -15690,7 +16063,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15690
16063
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
15691
16064
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
15692
16065
|
type PromptTarget = 'browse' | 'checkout';
|
|
15693
|
-
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | '
|
|
16066
|
+
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
|
|
15694
16067
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
15695
16068
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
15696
16069
|
type RateSource = 'calculated' | 'market';
|
|
@@ -15699,7 +16072,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15699
16072
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
15700
16073
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
15701
16074
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
15702
|
-
type ReportType = 'sales_record' | 'trueup_overview';
|
|
16075
|
+
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account';
|
|
15703
16076
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
15704
16077
|
type ResponsibleParty = 'flow' | 'organization';
|
|
15705
16078
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
@@ -15885,6 +16258,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15885
16258
|
readonly 'merchant_of_record_fee'?: number;
|
|
15886
16259
|
readonly 'duty_guarantee_fee'?: number;
|
|
15887
16260
|
readonly 'transfer_fee'?: number;
|
|
16261
|
+
readonly 'negative_balance_guarantee_fee'?: number;
|
|
15888
16262
|
readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
15889
16263
|
readonly 'label_fees'?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
15890
16264
|
readonly 'charge_label_cost_directly': boolean;
|
|
@@ -17224,9 +17598,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17224
17598
|
readonly 'attributes'?: Record<string, string>;
|
|
17225
17599
|
}
|
|
17226
17600
|
|
|
17227
|
-
interface
|
|
17228
|
-
readonly 'discriminator': '
|
|
17601
|
+
interface CarrierChargeFormOther {
|
|
17602
|
+
readonly 'discriminator': 'other';
|
|
17229
17603
|
readonly 'id': string;
|
|
17604
|
+
readonly 'reason': io.flow.internal.v0.enums.CarrierChargeOtherReason;
|
|
17230
17605
|
readonly 'organization_id': string;
|
|
17231
17606
|
readonly 'order_number': string;
|
|
17232
17607
|
readonly 'carrier_id': string;
|
|
@@ -21961,6 +22336,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21961
22336
|
interface Fulfillment {
|
|
21962
22337
|
readonly 'id': string;
|
|
21963
22338
|
readonly 'fulfilled_at': string;
|
|
22339
|
+
readonly 'owner': io.flow.internal.v0.enums.LogisticsResponsibility;
|
|
21964
22340
|
readonly 'currency': string;
|
|
21965
22341
|
readonly 'order': io.flow.internal.v0.models.OrderSummary;
|
|
21966
22342
|
readonly 'origin'?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
@@ -24618,6 +24994,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24618
24994
|
readonly 'harmonization_status': io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
24619
24995
|
}
|
|
24620
24996
|
|
|
24997
|
+
interface NonChannelPaymentBankAccount {
|
|
24998
|
+
readonly 'payment': io.flow.internal.v0.models.ReportPayment;
|
|
24999
|
+
readonly 'bank_account': io.flow.internal.v0.models.ReportBankAccount;
|
|
25000
|
+
readonly 'account': io.flow.internal.v0.models.ReportAccount;
|
|
25001
|
+
}
|
|
25002
|
+
|
|
24621
25003
|
interface Notification {
|
|
24622
25004
|
readonly 'order': io.flow.internal.v0.models.Decision;
|
|
24623
25005
|
}
|
|
@@ -26054,6 +26436,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26054
26436
|
readonly 'status': io.flow.internal.v0.enums.RestrictionStatus;
|
|
26055
26437
|
readonly 'matching_positive_keywords': string[];
|
|
26056
26438
|
readonly 'matching_negative_keywords': string[];
|
|
26439
|
+
readonly 'positive_search_matches'?: string[];
|
|
26440
|
+
readonly 'negative_search_matches'?: string[];
|
|
26057
26441
|
readonly 'updated_by_user_id': string;
|
|
26058
26442
|
}
|
|
26059
26443
|
|
|
@@ -26574,12 +26958,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26574
26958
|
readonly 'processed_at'?: string;
|
|
26575
26959
|
}
|
|
26576
26960
|
|
|
26961
|
+
interface ReportAccount {
|
|
26962
|
+
readonly 'id': string;
|
|
26963
|
+
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
26964
|
+
}
|
|
26965
|
+
|
|
26966
|
+
interface ReportBankAccount {
|
|
26967
|
+
readonly 'id'?: string;
|
|
26968
|
+
readonly 'last4'?: string;
|
|
26969
|
+
}
|
|
26970
|
+
|
|
26577
26971
|
interface ReportForm {
|
|
26578
26972
|
readonly 'from': string;
|
|
26579
26973
|
readonly 'to': string;
|
|
26580
26974
|
readonly 'type': io.flow.internal.v0.enums.ReportType;
|
|
26581
26975
|
}
|
|
26582
26976
|
|
|
26977
|
+
interface ReportPayment {
|
|
26978
|
+
readonly 'id': string;
|
|
26979
|
+
readonly 'created_at': string;
|
|
26980
|
+
}
|
|
26981
|
+
|
|
26583
26982
|
interface ReportRuleDecision {
|
|
26584
26983
|
readonly 'rule_id': string;
|
|
26585
26984
|
readonly 'rule_name': string;
|
|
@@ -26775,6 +27174,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26775
27174
|
readonly 'accepted_rules'?: string[];
|
|
26776
27175
|
readonly 'positive_keywords'?: string[];
|
|
26777
27176
|
readonly 'negative_keywords'?: string[];
|
|
27177
|
+
readonly 'positive_search_matches'?: string[];
|
|
27178
|
+
readonly 'negative_search_matches'?: string[];
|
|
26778
27179
|
readonly 'user_ids'?: string[];
|
|
26779
27180
|
readonly 'categories'?: string[];
|
|
26780
27181
|
readonly 'product_name_query'?: string;
|
|
@@ -27058,14 +27459,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27058
27459
|
readonly 'total': io.flow.common.v0.models.PriceWithBase;
|
|
27059
27460
|
}
|
|
27060
27461
|
|
|
27061
|
-
interface ShipperAccountInfoForm {
|
|
27062
|
-
readonly 'account_name'?: string;
|
|
27063
|
-
readonly 'account_number': string;
|
|
27064
|
-
readonly 'postal': string;
|
|
27065
|
-
readonly 'country': string;
|
|
27066
|
-
readonly 'invoice_info'?: io.flow.internal.v0.models.InvoiceInfoForm;
|
|
27067
|
-
}
|
|
27068
|
-
|
|
27069
27462
|
interface ShippingLane {
|
|
27070
27463
|
readonly 'origin': string;
|
|
27071
27464
|
readonly 'destination': string;
|
|
@@ -27239,6 +27632,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27239
27632
|
readonly 'shopify_markets_order': io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
27240
27633
|
}
|
|
27241
27634
|
|
|
27635
|
+
interface ShopifyMarketsOrderVersion {
|
|
27636
|
+
readonly 'id': string;
|
|
27637
|
+
readonly 'timestamp': string;
|
|
27638
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
27639
|
+
readonly 'shopify_markets_order': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
27640
|
+
}
|
|
27641
|
+
|
|
27242
27642
|
interface ShopifyMarketsOrdersMetrics {
|
|
27243
27643
|
readonly 'id': string;
|
|
27244
27644
|
readonly 'range': io.flow.common.v0.models.DatetimeRange;
|
|
@@ -28572,6 +28972,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28572
28972
|
interface TrueupLabelSummary {
|
|
28573
28973
|
readonly 'id': string;
|
|
28574
28974
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
28975
|
+
readonly 'order_number': string;
|
|
28575
28976
|
readonly 'carrier_id': string;
|
|
28576
28977
|
readonly 'carrier_service_id': string;
|
|
28577
28978
|
readonly 'carrier_tracking_number': string;
|
|
@@ -28641,11 +29042,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28641
29042
|
|
|
28642
29043
|
interface Ups {
|
|
28643
29044
|
readonly 'discriminator': 'ups';
|
|
28644
|
-
readonly '
|
|
28645
|
-
readonly '
|
|
28646
|
-
readonly 'access_license_number': string;
|
|
29045
|
+
readonly 'client_id': string;
|
|
29046
|
+
readonly 'client_secret': string;
|
|
28647
29047
|
readonly 'account_number': string;
|
|
28648
|
-
readonly 'direct_feed_location_code'?: string;
|
|
28649
29048
|
}
|
|
28650
29049
|
|
|
28651
29050
|
interface UsdSpotRate {
|
|
@@ -28829,7 +29228,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
28829
29228
|
type AuthorizedOrderCharge = (io.flow.internal.v0.models.AuthorizedShippingCharge);
|
|
28830
29229
|
type BlazeConsumerMessage = (io.flow.internal.v0.models.BlazeAddOrderAttributesMessage | io.flow.internal.v0.models.BlazeAddToCartMessage | io.flow.internal.v0.models.BlazeCreateByCartToken | io.flow.internal.v0.models.BlazeInitializeByOrderQuoteMessage | io.flow.internal.v0.models.BlazeInitializeBySessionMessage | io.flow.internal.v0.models.BlazeInitializeMessage | io.flow.internal.v0.models.BlazeSetCartItemsMessage | io.flow.internal.v0.models.BlazeSetCheckoutIdMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeUpdateCartItemsMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityResponse | io.flow.internal.v0.models.BlazeSetPromotionCodeMessage);
|
|
28831
29230
|
type BlazeProviderMessage = (io.flow.internal.v0.models.BlazeCheckoutCompleteMessage | io.flow.internal.v0.models.BlazeCheckoutProgressMessage | io.flow.internal.v0.models.BlazeCheckoutEventMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutConfirmationMessage | io.flow.internal.v0.models.BlazeRedirectConfirmationMessage | io.flow.internal.v0.models.BlazeSynInitializeMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityRequest | io.flow.internal.v0.models.BlazePaymentAuthStartMessage | io.flow.internal.v0.models.BlazePaymentAuthCompleteMessage);
|
|
28832
|
-
type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.
|
|
29231
|
+
type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther);
|
|
28833
29232
|
type CarrierCredentials = (io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex);
|
|
28834
29233
|
type ChannelRateMetadata = (io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate);
|
|
28835
29234
|
type CheckoutAddressBookEdit = (io.flow.internal.v0.models.CheckoutAddressBookContactRemoved);
|
|
@@ -29007,6 +29406,7 @@ export const blazeCheckoutEvent: PropTypes.Requireable<io.flow.internal.v0.enums
|
|
|
29007
29406
|
export const blazeCheckoutStep: PropTypes.Requireable<io.flow.internal.v0.enums.BlazeCheckoutStep>;
|
|
29008
29407
|
export const browserBundleErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.BrowserBundleErrorCode>;
|
|
29009
29408
|
export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
|
|
29409
|
+
export const carrierChargeOtherReason: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeOtherReason>;
|
|
29010
29410
|
export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
|
|
29011
29411
|
export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
|
|
29012
29412
|
export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
|
|
@@ -29158,6 +29558,7 @@ export const labelGenerationAddressFailureStatus: PropTypes.Requireable<io.flow.
|
|
|
29158
29558
|
export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
|
|
29159
29559
|
export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
|
|
29160
29560
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
29561
|
+
export const logisticsResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsResponsibility>;
|
|
29161
29562
|
export const mainTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MainTransactionStatus>;
|
|
29162
29563
|
export const manualReviewRuleStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ManualReviewRuleStatus>;
|
|
29163
29564
|
export const manualTransactionCategory: PropTypes.Requireable<io.flow.internal.v0.enums.ManualTransactionCategory>;
|
|
@@ -29469,7 +29870,7 @@ export const carrierChargeFile: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
29469
29870
|
export const carrierChargeFileForm: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFileForm>;
|
|
29470
29871
|
export const carrierChargeFileResult: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFileResult>;
|
|
29471
29872
|
export const carrierChargeFormLabel: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormLabel>;
|
|
29472
|
-
export const
|
|
29873
|
+
export const carrierChargeFormOther: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormOther>;
|
|
29473
29874
|
export const carrierChargeUnits: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeUnits>;
|
|
29474
29875
|
export const carrierInvoice: PropTypes.Requireable<io.flow.internal.v0.models.CarrierInvoice>;
|
|
29475
29876
|
export const catalogImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.CatalogImportRequest>;
|
|
@@ -30511,6 +30912,7 @@ export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
30511
30912
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
30512
30913
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
30513
30914
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
30915
|
+
export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
|
|
30514
30916
|
export const notification: PropTypes.Requireable<io.flow.internal.v0.models.Notification>;
|
|
30515
30917
|
export const onboardingAuditMessage: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditMessage>;
|
|
30516
30918
|
export const onboardingAuditReport: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditReport>;
|
|
@@ -30767,7 +31169,10 @@ export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
30767
31169
|
export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
|
|
30768
31170
|
export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm>;
|
|
30769
31171
|
export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
|
|
31172
|
+
export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
|
|
31173
|
+
export const reportBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccount>;
|
|
30770
31174
|
export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.ReportForm>;
|
|
31175
|
+
export const reportPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportPayment>;
|
|
30771
31176
|
export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
|
|
30772
31177
|
export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
|
|
30773
31178
|
export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDetails>;
|
|
@@ -30835,7 +31240,6 @@ export const sessionRolloutForm: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
30835
31240
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
30836
31241
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
30837
31242
|
export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
|
|
30838
|
-
export const shipperAccountInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.ShipperAccountInfoForm>;
|
|
30839
31243
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
30840
31244
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
30841
31245
|
export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
|
|
@@ -30865,6 +31269,7 @@ export const shopifyMarketsMetricsUpserted: PropTypes.Requireable<io.flow.intern
|
|
|
30865
31269
|
export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrder>;
|
|
30866
31270
|
export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
|
|
30867
31271
|
export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
|
|
31272
|
+
export const shopifyMarketsOrderVersion: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderVersion>;
|
|
30868
31273
|
export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
|
|
30869
31274
|
export const shopifyMarketsQueuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord>;
|
|
30870
31275
|
export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
|