@flowio/types 11.24.135 → 11.24.136
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 +248 -76
- package/dist/api.d.ts +97 -37
- package/package.json +1 -1
- package/src/api-internal.ts +321 -106
- package/src/api.ts +122 -36
package/src/api-internal.ts
CHANGED
|
@@ -6930,11 +6930,6 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
6930
6930
|
| 'sports_and_fitness'
|
|
6931
6931
|
| 'toys_hobbies_gifts'
|
|
6932
6932
|
| 'other';
|
|
6933
|
-
type TaxAndDutyInclusivitySetting =
|
|
6934
|
-
| 'duty_exclusive_tax_exclusive'
|
|
6935
|
-
| 'duty_inclusive_tax_exclusive'
|
|
6936
|
-
| 'duty_exclusive_tax_inclusive'
|
|
6937
|
-
| 'duty_inclusive_tax_inclusive';
|
|
6938
6933
|
}
|
|
6939
6934
|
|
|
6940
6935
|
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
@@ -7018,7 +7013,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7018
7013
|
readonly organization_id: string;
|
|
7019
7014
|
readonly shopify_order_id: string;
|
|
7020
7015
|
readonly order_number: string;
|
|
7021
|
-
readonly tax_and_duty_inclusivity_setting: io.flow.
|
|
7016
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
7022
7017
|
}
|
|
7023
7018
|
|
|
7024
7019
|
interface OrderValidationError {
|
|
@@ -7123,6 +7118,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7123
7118
|
readonly access_token_masked?: string;
|
|
7124
7119
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
7125
7120
|
readonly catalog_publication_owner?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
7121
|
+
readonly fast_sellability_completed_at?: string;
|
|
7126
7122
|
}
|
|
7127
7123
|
|
|
7128
7124
|
interface ShopifyMarketsShopForm {
|
|
@@ -7249,6 +7245,11 @@ declare namespace io.flow.consumer.invoice.v0.enums {
|
|
|
7249
7245
|
| 'individual';
|
|
7250
7246
|
type ConsumerInvoiceDocumentType = 'pdf';
|
|
7251
7247
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
7248
|
+
type FeeInvoiceType =
|
|
7249
|
+
| 'mor_invoice'
|
|
7250
|
+
| 'label_invoice'
|
|
7251
|
+
| 'mor_credit_memo'
|
|
7252
|
+
| 'label_credit_memo';
|
|
7252
7253
|
type TaxJurisdictionType = 'country' | 'province';
|
|
7253
7254
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
7254
7255
|
}
|
|
@@ -7460,6 +7461,21 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
7460
7461
|
readonly attributes?: Record<string, string>;
|
|
7461
7462
|
}
|
|
7462
7463
|
|
|
7464
|
+
interface FeeInvoice {
|
|
7465
|
+
readonly id: string;
|
|
7466
|
+
readonly number: string;
|
|
7467
|
+
readonly invoice_type: io.flow.consumer.invoice.v0.enums.FeeInvoiceType;
|
|
7468
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7469
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7470
|
+
readonly date: string;
|
|
7471
|
+
readonly b2b_tax_transaction_id: string;
|
|
7472
|
+
readonly order_number: string;
|
|
7473
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
7474
|
+
readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
7475
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
7476
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
7477
|
+
}
|
|
7478
|
+
|
|
7463
7479
|
interface InvoiceExport {
|
|
7464
7480
|
readonly id: string;
|
|
7465
7481
|
}
|
|
@@ -10353,7 +10369,8 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
10353
10369
|
| 'non_matching_currencies'
|
|
10354
10370
|
| 'unsupported_order_edit'
|
|
10355
10371
|
| 'order_allocation_duties_mismatch'
|
|
10356
|
-
| 'order_missing'
|
|
10372
|
+
| 'order_missing'
|
|
10373
|
+
| 'organization_deactivated';
|
|
10357
10374
|
type ChannelOrderAcceptanceStatus =
|
|
10358
10375
|
| 'accepted'
|
|
10359
10376
|
| 'rejected'
|
|
@@ -10796,7 +10813,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
10796
10813
|
|
|
10797
10814
|
interface DiscountForm {
|
|
10798
10815
|
readonly offer: io.flow.common.v0.unions.DiscountOffer;
|
|
10799
|
-
readonly target
|
|
10816
|
+
readonly target?: io.flow.common.v0.enums.DiscountTarget;
|
|
10800
10817
|
readonly label?: string;
|
|
10801
10818
|
}
|
|
10802
10819
|
|
|
@@ -10998,7 +11015,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
10998
11015
|
readonly parent?: io.flow.common.v0.models.OrganizationReference;
|
|
10999
11016
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
11000
11017
|
readonly created_at?: string;
|
|
11001
|
-
readonly status
|
|
11018
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
11002
11019
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
11003
11020
|
}
|
|
11004
11021
|
|
|
@@ -11527,6 +11544,11 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
11527
11544
|
type PriceFacetBoundary = 'min' | 'max';
|
|
11528
11545
|
type PricingType = 'inclusive_pricing';
|
|
11529
11546
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
11547
|
+
type TaxAndDutyInclusivitySetting =
|
|
11548
|
+
| 'duty_exclusive_tax_exclusive'
|
|
11549
|
+
| 'duty_inclusive_tax_exclusive'
|
|
11550
|
+
| 'duty_exclusive_tax_inclusive'
|
|
11551
|
+
| 'duty_inclusive_tax_inclusive';
|
|
11530
11552
|
}
|
|
11531
11553
|
|
|
11532
11554
|
declare namespace io.flow.experience.v0.models {
|
|
@@ -12943,13 +12965,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12943
12965
|
readonly commercial_invoice_mode?: io.flow.label.v0.enums.CommercialInvoiceMode;
|
|
12944
12966
|
}
|
|
12945
12967
|
|
|
12946
|
-
interface RatecardEstimateSummaryForm {
|
|
12947
|
-
readonly origin?: string;
|
|
12948
|
-
readonly destination?: string;
|
|
12949
|
-
readonly service?: string;
|
|
12950
|
-
readonly center_key?: string;
|
|
12951
|
-
}
|
|
12952
|
-
|
|
12953
12968
|
interface RatecardEstimateV1 {
|
|
12954
12969
|
readonly discriminator: 'ratecard_estimate_v1';
|
|
12955
12970
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
@@ -13183,6 +13198,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13183
13198
|
}
|
|
13184
13199
|
|
|
13185
13200
|
interface ShippingRateEstimateRequest {
|
|
13201
|
+
readonly carrier_id: string;
|
|
13186
13202
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
13187
13203
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
13188
13204
|
readonly package_dimensions: io.flow.common.v0.models.Dimension;
|
|
@@ -15310,7 +15326,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15310
15326
|
| 'b2b_tax'
|
|
15311
15327
|
| 'b2b_tax_refund'
|
|
15312
15328
|
| 'b2b_fee_mor_tax'
|
|
15313
|
-
| 'b2b_fee_shipping_tax'
|
|
15329
|
+
| 'b2b_fee_shipping_tax'
|
|
15330
|
+
| 'flat_rate_label';
|
|
15314
15331
|
type TrueupSource =
|
|
15315
15332
|
| 'flow'
|
|
15316
15333
|
| 'channel'
|
|
@@ -15645,6 +15662,12 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15645
15662
|
readonly id: string;
|
|
15646
15663
|
}
|
|
15647
15664
|
|
|
15665
|
+
interface TransactionMetadataFlatRateLabel {
|
|
15666
|
+
readonly discriminator: 'flat_rate_label';
|
|
15667
|
+
readonly flat_rate?: number;
|
|
15668
|
+
readonly coefficient?: number;
|
|
15669
|
+
}
|
|
15670
|
+
|
|
15648
15671
|
interface TransactionMetadataManual {
|
|
15649
15672
|
readonly discriminator: 'manual';
|
|
15650
15673
|
readonly description: string;
|
|
@@ -15831,7 +15854,8 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
15831
15854
|
| io.flow.billing.v0.models.TransactionMetadataFailedPayout
|
|
15832
15855
|
| io.flow.billing.v0.models.TransactionMetadataPaymentTransaction
|
|
15833
15856
|
| io.flow.billing.v0.models.TransactionMetadataTaxDuty
|
|
15834
|
-
| io.flow.billing.v0.models.TransactionMetadataMerchantFee
|
|
15857
|
+
| io.flow.billing.v0.models.TransactionMetadataMerchantFee
|
|
15858
|
+
| io.flow.billing.v0.models.TransactionMetadataFlatRateLabel;
|
|
15835
15859
|
}
|
|
15836
15860
|
|
|
15837
15861
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -16117,6 +16141,7 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
16117
16141
|
| 'flow-can'
|
|
16118
16142
|
| 'ge-usa'
|
|
16119
16143
|
| 'ge-can'
|
|
16144
|
+
| 'ge-can-ship'
|
|
16120
16145
|
| 'ge-gbr'
|
|
16121
16146
|
| 'ge-irl';
|
|
16122
16147
|
}
|
|
@@ -16673,7 +16698,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16673
16698
|
| 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
16674
16699
|
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
16675
16700
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
16676
|
-
type B2BTaxLedgerDocumentType =
|
|
16701
|
+
type B2BTaxLedgerDocumentType =
|
|
16702
|
+
| 'b2b_invoice'
|
|
16703
|
+
| 'b2b_credit_memo'
|
|
16704
|
+
| 'mor_invoice'
|
|
16705
|
+
| 'mor_credit_memo'
|
|
16706
|
+
| 'label_invoice'
|
|
16707
|
+
| 'label_credit_memo';
|
|
16677
16708
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
16678
16709
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
16679
16710
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -16949,7 +16980,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16949
16980
|
| 'b2b_tax'
|
|
16950
16981
|
| 'b2b_tax_refund'
|
|
16951
16982
|
| 'b2b_fee_mor_tax'
|
|
16952
|
-
| 'b2b_fee_shipping_tax'
|
|
16983
|
+
| 'b2b_fee_shipping_tax'
|
|
16984
|
+
| 'flat_rate_label';
|
|
16953
16985
|
type BojanaItemType = 'physical' | 'digital';
|
|
16954
16986
|
type CalculatorEngine =
|
|
16955
16987
|
| 'dtce_with_deminimis'
|
|
@@ -17007,7 +17039,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17007
17039
|
| 'non_matching_currencies'
|
|
17008
17040
|
| 'unsupported_order_edit'
|
|
17009
17041
|
| 'order_allocation_duties_mismatch'
|
|
17010
|
-
| 'order_missing'
|
|
17042
|
+
| 'order_missing'
|
|
17043
|
+
| 'organization_deactivated';
|
|
17011
17044
|
type ChannelOrderAcceptanceStatus =
|
|
17012
17045
|
| 'accepted'
|
|
17013
17046
|
| 'rejected'
|
|
@@ -17146,6 +17179,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17146
17179
|
type ErpFileType = 'vendor';
|
|
17147
17180
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
17148
17181
|
type EventType =
|
|
17182
|
+
| 'adaptive_shipping_rate_upserted'
|
|
17183
|
+
| 'adaptive_shipping_rate_deleted'
|
|
17149
17184
|
| 'adyen_authorization_deleted'
|
|
17150
17185
|
| 'adyen_authorization_upserted'
|
|
17151
17186
|
| 'adyen_cancel_deleted'
|
|
@@ -17285,6 +17320,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17285
17320
|
| 'bank_payment_order_deleted'
|
|
17286
17321
|
| 'shipping_cost_upserted'
|
|
17287
17322
|
| 'shipping_cost_deleted'
|
|
17323
|
+
| 'mor_cost_upserted'
|
|
17324
|
+
| 'mor_cost_deleted'
|
|
17288
17325
|
| 'fraud_review_upserted'
|
|
17289
17326
|
| 'fraud_review_deleted'
|
|
17290
17327
|
| 'fraud_pending_review_upserted'
|
|
@@ -17413,8 +17450,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17413
17450
|
| 'ratecard_dimension_estimate_upserted'
|
|
17414
17451
|
| 'ratecard_dimension_estimate_deleted'
|
|
17415
17452
|
| 'ratecard_lanes_import_request'
|
|
17416
|
-
| 'ratecard_standard_configuration_upserted'
|
|
17417
|
-
| 'ratecard_standard_configuration_deleted'
|
|
17418
17453
|
| 'ratecard_service_fee_upserted'
|
|
17419
17454
|
| 'ratecard_service_fee_deleted'
|
|
17420
17455
|
| 'ratecard_rate_level_upserted'
|
|
@@ -17506,10 +17541,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17506
17541
|
| 'stripe_connect_report_record_deleted'
|
|
17507
17542
|
| 'liability_remittance_plan_upserted'
|
|
17508
17543
|
| 'liability_remittance_plan_deleted'
|
|
17544
|
+
| 'b2b_tax_transaction_upserted'
|
|
17545
|
+
| 'b2b_tax_transaction_deleted'
|
|
17509
17546
|
| 'gabriel_item_upserted'
|
|
17510
17547
|
| 'gabriel_item_deleted'
|
|
17511
17548
|
| 'chenglin_item_upserted'
|
|
17512
17549
|
| 'chenglin_item_deleted'
|
|
17550
|
+
| 'bojana_item_upserted'
|
|
17551
|
+
| 'bojana_item_deleted'
|
|
17513
17552
|
| 'tracking_processing_error_upserted'
|
|
17514
17553
|
| 'tracking_processing_error_deleted'
|
|
17515
17554
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -17539,6 +17578,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17539
17578
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
17540
17579
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
17541
17580
|
type FileType = 'pdf';
|
|
17581
|
+
type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
17542
17582
|
type FraudProvider =
|
|
17543
17583
|
| 'flow'
|
|
17544
17584
|
| 'forter'
|
|
@@ -17641,6 +17681,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17641
17681
|
| 'order_combined_shipment'
|
|
17642
17682
|
| 'intransit_label_event'
|
|
17643
17683
|
| 'shipping_notification';
|
|
17684
|
+
type MailClass = 'standard' | 'express';
|
|
17644
17685
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
17645
17686
|
type ManualTransactionCategory =
|
|
17646
17687
|
| 'cancelled_order_refund'
|
|
@@ -17830,6 +17871,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17830
17871
|
| 'shopify_enterprise_usa'
|
|
17831
17872
|
| 'shopify_small_sdc_usa';
|
|
17832
17873
|
type RateSource = 'calculated' | 'market';
|
|
17874
|
+
type RaveenaItemType = 'physical' | 'digital';
|
|
17833
17875
|
type RedirectReason = 'three_d_secure';
|
|
17834
17876
|
type RejectionReason =
|
|
17835
17877
|
| 'merchant_policy'
|
|
@@ -18095,11 +18137,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18095
18137
|
| 'rate_levels'
|
|
18096
18138
|
| 'center_defaults'
|
|
18097
18139
|
| 'item_dimensions';
|
|
18098
|
-
type TaxAndDutyInclusivitySetting =
|
|
18099
|
-
| 'duty_exclusive_tax_exclusive'
|
|
18100
|
-
| 'duty_inclusive_tax_exclusive'
|
|
18101
|
-
| 'duty_exclusive_tax_inclusive'
|
|
18102
|
-
| 'duty_inclusive_tax_inclusive';
|
|
18103
18140
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
18104
18141
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
18105
18142
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
@@ -18392,6 +18429,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18392
18429
|
readonly quantity: number;
|
|
18393
18430
|
}
|
|
18394
18431
|
|
|
18432
|
+
interface AdaptiveShippingRate {
|
|
18433
|
+
readonly id: string;
|
|
18434
|
+
readonly organization_id: string;
|
|
18435
|
+
readonly destination_country: string;
|
|
18436
|
+
readonly coefficient: number;
|
|
18437
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
18438
|
+
readonly version_id?: string;
|
|
18439
|
+
readonly effective_at: string;
|
|
18440
|
+
readonly effective_until?: string;
|
|
18441
|
+
}
|
|
18442
|
+
|
|
18443
|
+
interface AdaptiveShippingRateDeleted {
|
|
18444
|
+
readonly discriminator: 'adaptive_shipping_rate_deleted';
|
|
18445
|
+
readonly event_id: string;
|
|
18446
|
+
readonly timestamp: string;
|
|
18447
|
+
readonly organization: string;
|
|
18448
|
+
readonly id: string;
|
|
18449
|
+
}
|
|
18450
|
+
|
|
18451
|
+
interface AdaptiveShippingRateUpserted {
|
|
18452
|
+
readonly discriminator: 'adaptive_shipping_rate_upserted';
|
|
18453
|
+
readonly event_id: string;
|
|
18454
|
+
readonly timestamp: string;
|
|
18455
|
+
readonly organization: string;
|
|
18456
|
+
readonly adaptive_shipping_rate: io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
18457
|
+
}
|
|
18458
|
+
|
|
18395
18459
|
interface AdditionalImportTax {
|
|
18396
18460
|
readonly name?: string;
|
|
18397
18461
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -18834,11 +18898,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18834
18898
|
readonly export_id: string;
|
|
18835
18899
|
}
|
|
18836
18900
|
|
|
18837
|
-
interface AllOrganizationsMembership {
|
|
18838
|
-
readonly user_id: string;
|
|
18839
|
-
readonly role: io.flow.common.v0.enums.Role;
|
|
18840
|
-
}
|
|
18841
|
-
|
|
18842
18901
|
interface AllocationItemReference {
|
|
18843
18902
|
readonly number: string;
|
|
18844
18903
|
}
|
|
@@ -19019,6 +19078,54 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19019
19078
|
readonly document_number?: string;
|
|
19020
19079
|
}
|
|
19021
19080
|
|
|
19081
|
+
interface B2BTaxTransaction {
|
|
19082
|
+
readonly id: string;
|
|
19083
|
+
readonly organization_id: string;
|
|
19084
|
+
readonly order_number: string;
|
|
19085
|
+
readonly transaction_source_id: string;
|
|
19086
|
+
readonly transaction_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
19087
|
+
readonly transaction_date: string;
|
|
19088
|
+
readonly currency: string;
|
|
19089
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
19090
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
19091
|
+
readonly taxable_items: io.flow.internal.v0.models.B2BTransactionTaxableItem[];
|
|
19092
|
+
readonly taxable_amount_total: io.flow.common.v0.models.Money;
|
|
19093
|
+
readonly tax_total: io.flow.common.v0.models.Money;
|
|
19094
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
19095
|
+
readonly document_number?: string;
|
|
19096
|
+
}
|
|
19097
|
+
|
|
19098
|
+
interface B2BTaxTransactionDeleted {
|
|
19099
|
+
readonly discriminator: 'b2b_tax_transaction_deleted';
|
|
19100
|
+
readonly event_id: string;
|
|
19101
|
+
readonly timestamp: string;
|
|
19102
|
+
readonly organization: string;
|
|
19103
|
+
readonly id: string;
|
|
19104
|
+
}
|
|
19105
|
+
|
|
19106
|
+
interface B2BTaxTransactionUpserted {
|
|
19107
|
+
readonly discriminator: 'b2b_tax_transaction_upserted';
|
|
19108
|
+
readonly event_id: string;
|
|
19109
|
+
readonly timestamp: string;
|
|
19110
|
+
readonly organization: string;
|
|
19111
|
+
readonly b2b_tax_transaction: io.flow.internal.v0.models.B2BTaxTransaction;
|
|
19112
|
+
}
|
|
19113
|
+
|
|
19114
|
+
interface B2BTransactionTaxLine {
|
|
19115
|
+
readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
|
|
19116
|
+
readonly tax_rate: number;
|
|
19117
|
+
readonly tax_amount: io.flow.common.v0.models.Money;
|
|
19118
|
+
readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
|
|
19119
|
+
}
|
|
19120
|
+
|
|
19121
|
+
interface B2BTransactionTaxableItem {
|
|
19122
|
+
readonly line_item_reference: string;
|
|
19123
|
+
readonly label: string;
|
|
19124
|
+
readonly taxable_amount: io.flow.common.v0.models.Money;
|
|
19125
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
19126
|
+
readonly taxes: io.flow.internal.v0.models.B2BTransactionTaxLine[];
|
|
19127
|
+
}
|
|
19128
|
+
|
|
19022
19129
|
interface BankAccount {
|
|
19023
19130
|
readonly status: io.flow.internal.v0.enums.BankAccountStatus;
|
|
19024
19131
|
readonly hold_created_at?: string;
|
|
@@ -19330,6 +19437,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19330
19437
|
readonly merchant_fee: io.flow.common.v0.models.Price;
|
|
19331
19438
|
readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
|
|
19332
19439
|
readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
|
|
19440
|
+
readonly flat_rate_label: io.flow.common.v0.models.Price;
|
|
19333
19441
|
}
|
|
19334
19442
|
|
|
19335
19443
|
interface BillingStatementUpserted {
|
|
@@ -19405,6 +19513,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19405
19513
|
readonly added_on: string;
|
|
19406
19514
|
}
|
|
19407
19515
|
|
|
19516
|
+
interface BojanaItemDeleted {
|
|
19517
|
+
readonly discriminator: 'bojana_item_deleted';
|
|
19518
|
+
readonly event_id: string;
|
|
19519
|
+
readonly timestamp: string;
|
|
19520
|
+
readonly id: string;
|
|
19521
|
+
}
|
|
19522
|
+
|
|
19408
19523
|
interface BojanaItemForm {
|
|
19409
19524
|
readonly number: string;
|
|
19410
19525
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -19413,6 +19528,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19413
19528
|
readonly added_on: string;
|
|
19414
19529
|
}
|
|
19415
19530
|
|
|
19531
|
+
interface BojanaItemUpserted {
|
|
19532
|
+
readonly discriminator: 'bojana_item_upserted';
|
|
19533
|
+
readonly event_id: string;
|
|
19534
|
+
readonly timestamp: string;
|
|
19535
|
+
readonly item: io.flow.internal.v0.models.BojanaItem;
|
|
19536
|
+
}
|
|
19537
|
+
|
|
19416
19538
|
interface BooleanFeatureDefaultValue {
|
|
19417
19539
|
readonly discriminator: 'boolean';
|
|
19418
19540
|
readonly value: boolean;
|
|
@@ -22196,6 +22318,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22196
22318
|
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
22197
22319
|
}
|
|
22198
22320
|
|
|
22321
|
+
interface FlatRate {
|
|
22322
|
+
readonly mail_class: io.flow.internal.v0.enums.MailClass;
|
|
22323
|
+
readonly carrier_id: string;
|
|
22324
|
+
readonly service_id: string;
|
|
22325
|
+
readonly price: io.flow.common.v0.models.Money;
|
|
22326
|
+
readonly free_shipping_threshold?: io.flow.common.v0.models.Money;
|
|
22327
|
+
readonly min_delivery_days?: number;
|
|
22328
|
+
readonly max_delivery_days?: number;
|
|
22329
|
+
}
|
|
22330
|
+
|
|
22331
|
+
interface FlatRateLabelTransaction {
|
|
22332
|
+
readonly discriminator: 'flat_rate_label_transaction';
|
|
22333
|
+
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
22334
|
+
readonly id: string;
|
|
22335
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22336
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
22337
|
+
readonly posted_at?: string;
|
|
22338
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
22339
|
+
readonly description: string;
|
|
22340
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22341
|
+
readonly created_at: string;
|
|
22342
|
+
}
|
|
22343
|
+
|
|
22199
22344
|
interface FlexeWebhook {
|
|
22200
22345
|
readonly placeholder?: boolean;
|
|
22201
22346
|
}
|
|
@@ -22532,17 +22677,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22532
22677
|
readonly ftp_file: io.flow.ftp.v0.models.FtpFile;
|
|
22533
22678
|
}
|
|
22534
22679
|
|
|
22535
|
-
interface FuelSurchargeServiceFeeAmountByWeightPutForm {
|
|
22536
|
-
readonly discriminator: 'fuel_surcharge_service_fee_amount_by_weight_put_form';
|
|
22537
|
-
readonly amount: io.flow.common.v0.models.Money;
|
|
22538
|
-
readonly weight: io.flow.ratecard.v0.models.FeeWeight;
|
|
22539
|
-
}
|
|
22540
|
-
|
|
22541
|
-
interface FuelSurchargeServiceFeePercentPutForm {
|
|
22542
|
-
readonly discriminator: 'fuel_surcharge_service_fee_percent_put_form';
|
|
22543
|
-
readonly percent: number;
|
|
22544
|
-
}
|
|
22545
|
-
|
|
22546
22680
|
interface Fulfillment {
|
|
22547
22681
|
readonly id: string;
|
|
22548
22682
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
@@ -24360,12 +24494,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24360
24494
|
readonly total: number;
|
|
24361
24495
|
}
|
|
24362
24496
|
|
|
24497
|
+
interface MerchantSurcharge {
|
|
24498
|
+
readonly type: io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
24499
|
+
readonly amount: number;
|
|
24500
|
+
}
|
|
24501
|
+
|
|
24363
24502
|
interface MerchantTransactions {
|
|
24364
24503
|
readonly adjustment: number;
|
|
24365
24504
|
readonly reversal: number;
|
|
24366
24505
|
readonly tax: number;
|
|
24367
24506
|
readonly duty: number;
|
|
24368
24507
|
readonly freight: number;
|
|
24508
|
+
readonly base_amount?: number;
|
|
24509
|
+
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
24369
24510
|
readonly total: number;
|
|
24370
24511
|
readonly tax_refund?: number;
|
|
24371
24512
|
readonly tax_reversal?: number;
|
|
@@ -24396,6 +24537,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24396
24537
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
24397
24538
|
}
|
|
24398
24539
|
|
|
24540
|
+
interface MorCostDeleted {
|
|
24541
|
+
readonly discriminator: 'mor_cost_deleted';
|
|
24542
|
+
readonly event_id: string;
|
|
24543
|
+
readonly timestamp: string;
|
|
24544
|
+
readonly organization: string;
|
|
24545
|
+
readonly id: string;
|
|
24546
|
+
}
|
|
24547
|
+
|
|
24548
|
+
interface MorCostSummary {
|
|
24549
|
+
readonly id: string;
|
|
24550
|
+
readonly organization_id: string;
|
|
24551
|
+
readonly order_number: string;
|
|
24552
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
24553
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
24554
|
+
}
|
|
24555
|
+
|
|
24556
|
+
interface MorCostUpserted {
|
|
24557
|
+
readonly discriminator: 'mor_cost_upserted';
|
|
24558
|
+
readonly event_id: string;
|
|
24559
|
+
readonly timestamp: string;
|
|
24560
|
+
readonly organization: string;
|
|
24561
|
+
readonly mor_cost: io.flow.internal.v0.models.MorCostSummary;
|
|
24562
|
+
}
|
|
24563
|
+
|
|
24399
24564
|
interface NegativeDebitMetrics {
|
|
24400
24565
|
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24401
24566
|
readonly first_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
@@ -24755,7 +24920,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24755
24920
|
readonly organization_id: string;
|
|
24756
24921
|
readonly shopify_order_id: string;
|
|
24757
24922
|
readonly order_number: string;
|
|
24758
|
-
readonly tax_and_duty_inclusivity_setting: io.flow.
|
|
24923
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
24759
24924
|
}
|
|
24760
24925
|
|
|
24761
24926
|
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
@@ -26057,6 +26222,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26057
26222
|
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
26058
26223
|
readonly rule_ids?: string[];
|
|
26059
26224
|
readonly matching_positive_keywords?: string[];
|
|
26225
|
+
readonly matching_sellability_positive_keywords?: string[];
|
|
26060
26226
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
26061
26227
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26062
26228
|
readonly fingerprint: string;
|
|
@@ -26352,6 +26518,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26352
26518
|
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
26353
26519
|
readonly rule_matches: io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch[];
|
|
26354
26520
|
readonly matching_positive_keywords?: string[];
|
|
26521
|
+
readonly matching_sellability_positive_keywords?: string[];
|
|
26355
26522
|
}
|
|
26356
26523
|
|
|
26357
26524
|
interface ProductSellabilityInternalRuleMatch {
|
|
@@ -26812,39 +26979,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26812
26979
|
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
26813
26980
|
}
|
|
26814
26981
|
|
|
26815
|
-
interface RatecardStandardConfiguration {
|
|
26816
|
-
readonly id: string;
|
|
26817
|
-
readonly key: string;
|
|
26818
|
-
readonly source_ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
26819
|
-
readonly settings: io.flow.internal.v0.models.RatecardStandardSettings;
|
|
26820
|
-
}
|
|
26821
|
-
|
|
26822
|
-
interface RatecardStandardConfigurationDeleted {
|
|
26823
|
-
readonly discriminator: 'ratecard_standard_configuration_deleted';
|
|
26824
|
-
readonly event_id: string;
|
|
26825
|
-
readonly timestamp: string;
|
|
26826
|
-
readonly organization: string;
|
|
26827
|
-
readonly id: string;
|
|
26828
|
-
}
|
|
26829
|
-
|
|
26830
|
-
interface RatecardStandardConfigurationForm {
|
|
26831
|
-
readonly source_ratecard_organization: string;
|
|
26832
|
-
readonly source_ratecard_number: string;
|
|
26833
|
-
readonly margin: number;
|
|
26834
|
-
}
|
|
26835
|
-
|
|
26836
|
-
interface RatecardStandardConfigurationUpserted {
|
|
26837
|
-
readonly discriminator: 'ratecard_standard_configuration_upserted';
|
|
26838
|
-
readonly event_id: string;
|
|
26839
|
-
readonly timestamp: string;
|
|
26840
|
-
readonly organization: string;
|
|
26841
|
-
readonly configuration: io.flow.internal.v0.models.RatecardStandardConfiguration;
|
|
26842
|
-
}
|
|
26843
|
-
|
|
26844
|
-
interface RatecardStandardSettings {
|
|
26845
|
-
readonly margin: number;
|
|
26846
|
-
}
|
|
26847
|
-
|
|
26848
26982
|
interface RatesChanged {
|
|
26849
26983
|
readonly event_id: string;
|
|
26850
26984
|
readonly timestamp: string;
|
|
@@ -26859,6 +26993,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26859
26993
|
readonly summaries: io.flow.internal.v0.models.RateNameSummary[];
|
|
26860
26994
|
}
|
|
26861
26995
|
|
|
26996
|
+
interface RaveenaItem {
|
|
26997
|
+
readonly id: string;
|
|
26998
|
+
readonly number: string;
|
|
26999
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
27000
|
+
readonly description?: string;
|
|
27001
|
+
readonly type: io.flow.internal.v0.enums.RaveenaItemType;
|
|
27002
|
+
readonly added_on: string;
|
|
27003
|
+
}
|
|
27004
|
+
|
|
27005
|
+
interface RaveenaItemForm {
|
|
27006
|
+
readonly number: string;
|
|
27007
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
27008
|
+
readonly description?: string;
|
|
27009
|
+
readonly type: io.flow.internal.v0.enums.RaveenaItemType;
|
|
27010
|
+
readonly added_on: string;
|
|
27011
|
+
}
|
|
27012
|
+
|
|
26862
27013
|
interface RecordReference {
|
|
26863
27014
|
readonly id: string;
|
|
26864
27015
|
}
|
|
@@ -26942,6 +27093,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26942
27093
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
26943
27094
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
26944
27095
|
readonly account_currency?: io.flow.internal.v0.enums.AccountCurrencyFilter;
|
|
27096
|
+
readonly channel_id?: string;
|
|
26945
27097
|
}
|
|
26946
27098
|
|
|
26947
27099
|
interface ReportForm {
|
|
@@ -27144,6 +27296,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27144
27296
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27145
27297
|
}
|
|
27146
27298
|
|
|
27299
|
+
interface ReportingMerchantFreight {
|
|
27300
|
+
readonly base_amount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27301
|
+
readonly surcharges?: io.flow.internal.v0.models.ReportingMerchantFreightSurcharges;
|
|
27302
|
+
}
|
|
27303
|
+
|
|
27304
|
+
interface ReportingMerchantFreightSurcharges {
|
|
27305
|
+
readonly duties_paid?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27306
|
+
readonly fixed_ddp?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27307
|
+
readonly fixed_currency_conversion?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27308
|
+
}
|
|
27309
|
+
|
|
27147
27310
|
interface ReportingMerchantSubsidies {
|
|
27148
27311
|
readonly shipping: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27149
27312
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -27158,6 +27321,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27158
27321
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27159
27322
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27160
27323
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27324
|
+
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
27161
27325
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27162
27326
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27163
27327
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -27288,6 +27452,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27288
27452
|
readonly excluded_rules?: string[];
|
|
27289
27453
|
}
|
|
27290
27454
|
|
|
27455
|
+
interface RestrictionBlanketOrganizationExemptionForm {
|
|
27456
|
+
readonly organization_id: string;
|
|
27457
|
+
readonly description: string;
|
|
27458
|
+
readonly is_all_rules_exempt: boolean;
|
|
27459
|
+
readonly exempt_regions?: string[];
|
|
27460
|
+
readonly excluded_rules?: string[];
|
|
27461
|
+
}
|
|
27462
|
+
|
|
27291
27463
|
interface RestrictionCategory {
|
|
27292
27464
|
readonly category: string;
|
|
27293
27465
|
}
|
|
@@ -27567,8 +27739,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27567
27739
|
readonly id: string;
|
|
27568
27740
|
readonly rule_id: string;
|
|
27569
27741
|
readonly description: string;
|
|
27570
|
-
readonly
|
|
27571
|
-
readonly
|
|
27742
|
+
readonly origin_regions: string[];
|
|
27743
|
+
readonly destination_regions: string[];
|
|
27744
|
+
}
|
|
27745
|
+
|
|
27746
|
+
interface RestrictionRuleLaneExemptionForm {
|
|
27747
|
+
readonly rule_id: string;
|
|
27748
|
+
readonly description: string;
|
|
27749
|
+
readonly origin_regions: string[];
|
|
27750
|
+
readonly destination_regions: string[];
|
|
27572
27751
|
}
|
|
27573
27752
|
|
|
27574
27753
|
interface RestrictionRuleOrganizationExemption {
|
|
@@ -27583,6 +27762,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27583
27762
|
readonly is_rule_active?: boolean;
|
|
27584
27763
|
}
|
|
27585
27764
|
|
|
27765
|
+
interface RestrictionRuleOrganizationExemptionForm {
|
|
27766
|
+
readonly organization_id: string;
|
|
27767
|
+
readonly rule_id: string;
|
|
27768
|
+
readonly description: string;
|
|
27769
|
+
readonly exempt_regions?: string[];
|
|
27770
|
+
readonly ignored_keywords?: string[];
|
|
27771
|
+
readonly additional_keywords?: string[];
|
|
27772
|
+
readonly community_exemption_override?: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
27773
|
+
readonly is_rule_active?: boolean;
|
|
27774
|
+
}
|
|
27775
|
+
|
|
27586
27776
|
interface RestrictionRuleOverride {
|
|
27587
27777
|
readonly id: string;
|
|
27588
27778
|
readonly organization_id: string;
|
|
@@ -28355,6 +28545,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28355
28545
|
readonly access_token_masked?: string;
|
|
28356
28546
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
28357
28547
|
readonly catalog_publication_owner?: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
28548
|
+
readonly fast_sellability_completed_at?: string;
|
|
28358
28549
|
}
|
|
28359
28550
|
|
|
28360
28551
|
interface ShopifyMarketsShopDeleted {
|
|
@@ -30459,6 +30650,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30459
30650
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
30460
30651
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
30461
30652
|
type Event =
|
|
30653
|
+
| io.flow.internal.v0.models.AdaptiveShippingRateUpserted
|
|
30654
|
+
| io.flow.internal.v0.models.AdaptiveShippingRateDeleted
|
|
30462
30655
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
30463
30656
|
| io.flow.internal.v0.models.AdyenAuthorizationUpserted
|
|
30464
30657
|
| io.flow.internal.v0.models.AdyenCancelDeleted
|
|
@@ -30598,6 +30791,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30598
30791
|
| io.flow.internal.v0.models.BankPaymentOrderDeleted
|
|
30599
30792
|
| io.flow.internal.v0.models.ShippingCostUpserted
|
|
30600
30793
|
| io.flow.internal.v0.models.ShippingCostDeleted
|
|
30794
|
+
| io.flow.internal.v0.models.MorCostUpserted
|
|
30795
|
+
| io.flow.internal.v0.models.MorCostDeleted
|
|
30601
30796
|
| io.flow.internal.v0.models.FraudReviewUpserted
|
|
30602
30797
|
| io.flow.internal.v0.models.FraudReviewDeleted
|
|
30603
30798
|
| io.flow.internal.v0.models.FraudPendingReviewUpserted
|
|
@@ -30726,8 +30921,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30726
30921
|
| io.flow.internal.v0.models.RatecardDimensionEstimateUpserted
|
|
30727
30922
|
| io.flow.internal.v0.models.RatecardDimensionEstimateDeleted
|
|
30728
30923
|
| io.flow.internal.v0.models.RatecardLanesImportRequest
|
|
30729
|
-
| io.flow.internal.v0.models.RatecardStandardConfigurationUpserted
|
|
30730
|
-
| io.flow.internal.v0.models.RatecardStandardConfigurationDeleted
|
|
30731
30924
|
| io.flow.internal.v0.models.RatecardServiceFeeUpserted
|
|
30732
30925
|
| io.flow.internal.v0.models.RatecardServiceFeeDeleted
|
|
30733
30926
|
| io.flow.internal.v0.models.RatecardRateLevelUpserted
|
|
@@ -30819,10 +31012,14 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30819
31012
|
| io.flow.internal.v0.models.StripeConnectReportRecordDeleted
|
|
30820
31013
|
| io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
|
|
30821
31014
|
| io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
|
|
31015
|
+
| io.flow.internal.v0.models.B2BTaxTransactionUpserted
|
|
31016
|
+
| io.flow.internal.v0.models.B2BTaxTransactionDeleted
|
|
30822
31017
|
| io.flow.internal.v0.models.GabrielItemUpserted
|
|
30823
31018
|
| io.flow.internal.v0.models.GabrielItemDeleted
|
|
30824
31019
|
| io.flow.internal.v0.models.ChenglinItemUpserted
|
|
30825
31020
|
| io.flow.internal.v0.models.ChenglinItemDeleted
|
|
31021
|
+
| io.flow.internal.v0.models.BojanaItemUpserted
|
|
31022
|
+
| io.flow.internal.v0.models.BojanaItemDeleted
|
|
30826
31023
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
30827
31024
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
30828
31025
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -30868,9 +31065,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30868
31065
|
io.flow.internal.v0.models.FraudProviderConfigurationRiskified;
|
|
30869
31066
|
type FraudProviderConfigurationForm =
|
|
30870
31067
|
io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified;
|
|
30871
|
-
type FuelSurchargeServiceFeePutForm =
|
|
30872
|
-
| io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm
|
|
30873
|
-
| io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
30874
31068
|
type FulfillmentProof =
|
|
30875
31069
|
| io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference
|
|
30876
31070
|
| io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference
|
|
@@ -31042,7 +31236,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31042
31236
|
| io.flow.internal.v0.models.CarrierChargeTransaction
|
|
31043
31237
|
| io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction
|
|
31044
31238
|
| io.flow.internal.v0.models.GeRevenueShareTransaction
|
|
31045
|
-
| io.flow.internal.v0.models.MerchantFeeTransaction
|
|
31239
|
+
| io.flow.internal.v0.models.MerchantFeeTransaction
|
|
31240
|
+
| io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
31046
31241
|
type TransactionSummary =
|
|
31047
31242
|
| io.flow.internal.v0.models.PaymentSummaryV2
|
|
31048
31243
|
| io.flow.internal.v0.models.FraudSummary;
|
|
@@ -31104,6 +31299,12 @@ export type AccountingPendingOrderMetadata =
|
|
|
31104
31299
|
export type AccountingReturnMetadata =
|
|
31105
31300
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
31106
31301
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
31302
|
+
export type AdaptiveShippingRate =
|
|
31303
|
+
io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
31304
|
+
export type AdaptiveShippingRateDeleted =
|
|
31305
|
+
io.flow.internal.v0.models.AdaptiveShippingRateDeleted;
|
|
31306
|
+
export type AdaptiveShippingRateUpserted =
|
|
31307
|
+
io.flow.internal.v0.models.AdaptiveShippingRateUpserted;
|
|
31107
31308
|
export type AdditionalImportTax =
|
|
31108
31309
|
io.flow.internal.v0.models.AdditionalImportTax;
|
|
31109
31310
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
@@ -31208,8 +31409,6 @@ export type AfterpayRefundUpserted =
|
|
|
31208
31409
|
io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
31209
31410
|
export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
31210
31411
|
export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
31211
|
-
export type AllOrganizationsMembership =
|
|
31212
|
-
io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
31213
31412
|
export type AllocationItemReference =
|
|
31214
31413
|
io.flow.internal.v0.models.AllocationItemReference;
|
|
31215
31414
|
export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
@@ -31264,6 +31463,15 @@ export type B2BTaxLedgerDocumentType =
|
|
|
31264
31463
|
io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
31265
31464
|
export type B2BTaxLedgerForm = io.flow.internal.v0.models.B2BTaxLedgerForm;
|
|
31266
31465
|
export type B2BTaxRateType = io.flow.internal.v0.enums.B2BTaxRateType;
|
|
31466
|
+
export type B2BTaxTransaction = io.flow.internal.v0.models.B2BTaxTransaction;
|
|
31467
|
+
export type B2BTaxTransactionDeleted =
|
|
31468
|
+
io.flow.internal.v0.models.B2BTaxTransactionDeleted;
|
|
31469
|
+
export type B2BTaxTransactionUpserted =
|
|
31470
|
+
io.flow.internal.v0.models.B2BTaxTransactionUpserted;
|
|
31471
|
+
export type B2BTransactionTaxLine =
|
|
31472
|
+
io.flow.internal.v0.models.B2BTransactionTaxLine;
|
|
31473
|
+
export type B2BTransactionTaxableItem =
|
|
31474
|
+
io.flow.internal.v0.models.B2BTransactionTaxableItem;
|
|
31267
31475
|
export type BankAccount = io.flow.internal.v0.models.BankAccount;
|
|
31268
31476
|
export type BankAccountReference =
|
|
31269
31477
|
io.flow.internal.v0.models.BankAccountReference;
|
|
@@ -31370,8 +31578,10 @@ export type BitpayAuthenticationDataReference =
|
|
|
31370
31578
|
export type BitpayAuthenticationForm =
|
|
31371
31579
|
io.flow.internal.v0.models.BitpayAuthenticationForm;
|
|
31372
31580
|
export type BojanaItem = io.flow.internal.v0.models.BojanaItem;
|
|
31581
|
+
export type BojanaItemDeleted = io.flow.internal.v0.models.BojanaItemDeleted;
|
|
31373
31582
|
export type BojanaItemForm = io.flow.internal.v0.models.BojanaItemForm;
|
|
31374
31583
|
export type BojanaItemType = io.flow.internal.v0.enums.BojanaItemType;
|
|
31584
|
+
export type BojanaItemUpserted = io.flow.internal.v0.models.BojanaItemUpserted;
|
|
31375
31585
|
export type BooleanFeatureDefaultValue =
|
|
31376
31586
|
io.flow.internal.v0.models.BooleanFeatureDefaultValue;
|
|
31377
31587
|
export type BooleanFeatureRule = io.flow.internal.v0.models.BooleanFeatureRule;
|
|
@@ -32117,6 +32327,11 @@ export type FiservMerchantModificationForm =
|
|
|
32117
32327
|
io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
32118
32328
|
export type FiservMerchantPutForm =
|
|
32119
32329
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
32330
|
+
export type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
32331
|
+
export type FlatRateLabelTransaction =
|
|
32332
|
+
io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
32333
|
+
export type FlatRateLabelTransactionType =
|
|
32334
|
+
io.flow.internal.v0.enums.FlatRateLabelTransactionType;
|
|
32120
32335
|
export type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
|
|
32121
32336
|
export type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
32122
32337
|
export type FlowBillingStatement =
|
|
@@ -32194,12 +32409,6 @@ export type FtpFileDeleted = io.flow.internal.v0.models.FtpFileDeleted;
|
|
|
32194
32409
|
export type FtpFileToProcessUploaded =
|
|
32195
32410
|
io.flow.internal.v0.models.FtpFileToProcessUploaded;
|
|
32196
32411
|
export type FtpFileUpserted = io.flow.internal.v0.models.FtpFileUpserted;
|
|
32197
|
-
export type FuelSurchargeServiceFeeAmountByWeightPutForm =
|
|
32198
|
-
io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
32199
|
-
export type FuelSurchargeServiceFeePercentPutForm =
|
|
32200
|
-
io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm;
|
|
32201
|
-
export type FuelSurchargeServiceFeePutForm =
|
|
32202
|
-
io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm;
|
|
32203
32412
|
export type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
32204
32413
|
export type FulfillmentActionForm =
|
|
32205
32414
|
io.flow.internal.v0.models.FulfillmentActionForm;
|
|
@@ -32569,6 +32778,7 @@ export type LoyaltyProgramReward =
|
|
|
32569
32778
|
io.flow.internal.v0.models.LoyaltyProgramReward;
|
|
32570
32779
|
export type LoyaltyProgramRewards =
|
|
32571
32780
|
io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
32781
|
+
export type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
32572
32782
|
export type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
32573
32783
|
export type MainTransactionDeleted =
|
|
32574
32784
|
io.flow.internal.v0.models.MainTransactionDeleted;
|
|
@@ -32638,6 +32848,7 @@ export type MerchantSearchResult =
|
|
|
32638
32848
|
io.flow.internal.v0.models.MerchantSearchResult;
|
|
32639
32849
|
export type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
32640
32850
|
export type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
32851
|
+
export type MerchantSurcharge = io.flow.internal.v0.models.MerchantSurcharge;
|
|
32641
32852
|
export type MerchantTransactions =
|
|
32642
32853
|
io.flow.internal.v0.models.MerchantTransactions;
|
|
32643
32854
|
export type MerchantUpserted = io.flow.internal.v0.models.MerchantUpserted;
|
|
@@ -32646,6 +32857,9 @@ export type MetadataProposition =
|
|
|
32646
32857
|
io.flow.internal.v0.models.MetadataProposition;
|
|
32647
32858
|
export type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
32648
32859
|
export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
32860
|
+
export type MorCostDeleted = io.flow.internal.v0.models.MorCostDeleted;
|
|
32861
|
+
export type MorCostSummary = io.flow.internal.v0.models.MorCostSummary;
|
|
32862
|
+
export type MorCostUpserted = io.flow.internal.v0.models.MorCostUpserted;
|
|
32649
32863
|
export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
32650
32864
|
export type NegativeDebitMetrics =
|
|
32651
32865
|
io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
@@ -33299,18 +33513,11 @@ export type RatecardServiceFeesOverride =
|
|
|
33299
33513
|
io.flow.internal.v0.models.RatecardServiceFeesOverride;
|
|
33300
33514
|
export type RatecardServiceFeesOverrideForm =
|
|
33301
33515
|
io.flow.internal.v0.models.RatecardServiceFeesOverrideForm;
|
|
33302
|
-
export type RatecardStandardConfiguration =
|
|
33303
|
-
io.flow.internal.v0.models.RatecardStandardConfiguration;
|
|
33304
|
-
export type RatecardStandardConfigurationDeleted =
|
|
33305
|
-
io.flow.internal.v0.models.RatecardStandardConfigurationDeleted;
|
|
33306
|
-
export type RatecardStandardConfigurationForm =
|
|
33307
|
-
io.flow.internal.v0.models.RatecardStandardConfigurationForm;
|
|
33308
|
-
export type RatecardStandardConfigurationUpserted =
|
|
33309
|
-
io.flow.internal.v0.models.RatecardStandardConfigurationUpserted;
|
|
33310
|
-
export type RatecardStandardSettings =
|
|
33311
|
-
io.flow.internal.v0.models.RatecardStandardSettings;
|
|
33312
33516
|
export type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
33313
33517
|
export type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
33518
|
+
export type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
33519
|
+
export type RaveenaItemForm = io.flow.internal.v0.models.RaveenaItemForm;
|
|
33520
|
+
export type RaveenaItemType = io.flow.internal.v0.enums.RaveenaItemType;
|
|
33314
33521
|
export type RecordReference = io.flow.internal.v0.models.RecordReference;
|
|
33315
33522
|
export type Redirect = io.flow.internal.v0.models.Redirect;
|
|
33316
33523
|
export type RedirectActionCompleted =
|
|
@@ -33378,6 +33585,10 @@ export type ReportingMerchantBreakdown =
|
|
|
33378
33585
|
io.flow.internal.v0.models.ReportingMerchantBreakdown;
|
|
33379
33586
|
export type ReportingMerchantFees =
|
|
33380
33587
|
io.flow.internal.v0.models.ReportingMerchantFees;
|
|
33588
|
+
export type ReportingMerchantFreight =
|
|
33589
|
+
io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
33590
|
+
export type ReportingMerchantFreightSurcharges =
|
|
33591
|
+
io.flow.internal.v0.models.ReportingMerchantFreightSurcharges;
|
|
33381
33592
|
export type ReportingMerchantSubsidies =
|
|
33382
33593
|
io.flow.internal.v0.models.ReportingMerchantSubsidies;
|
|
33383
33594
|
export type ReportingMerchantTransactions =
|
|
@@ -33427,6 +33638,8 @@ export type RestrictionAttributeRuleCondition =
|
|
|
33427
33638
|
io.flow.internal.v0.unions.RestrictionAttributeRuleCondition;
|
|
33428
33639
|
export type RestrictionBlanketOrganizationExemption =
|
|
33429
33640
|
io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption;
|
|
33641
|
+
export type RestrictionBlanketOrganizationExemptionForm =
|
|
33642
|
+
io.flow.internal.v0.models.RestrictionBlanketOrganizationExemptionForm;
|
|
33430
33643
|
export type RestrictionCategory =
|
|
33431
33644
|
io.flow.internal.v0.models.RestrictionCategory;
|
|
33432
33645
|
export type RestrictionDecision = io.flow.internal.v0.enums.RestrictionDecision;
|
|
@@ -33490,8 +33703,12 @@ export type RestrictionRuleForm =
|
|
|
33490
33703
|
io.flow.internal.v0.models.RestrictionRuleForm;
|
|
33491
33704
|
export type RestrictionRuleLaneExemption =
|
|
33492
33705
|
io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
33706
|
+
export type RestrictionRuleLaneExemptionForm =
|
|
33707
|
+
io.flow.internal.v0.models.RestrictionRuleLaneExemptionForm;
|
|
33493
33708
|
export type RestrictionRuleOrganizationExemption =
|
|
33494
33709
|
io.flow.internal.v0.models.RestrictionRuleOrganizationExemption;
|
|
33710
|
+
export type RestrictionRuleOrganizationExemptionForm =
|
|
33711
|
+
io.flow.internal.v0.models.RestrictionRuleOrganizationExemptionForm;
|
|
33495
33712
|
export type RestrictionRuleOverride =
|
|
33496
33713
|
io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
33497
33714
|
export type RestrictionRuleSummary =
|
|
@@ -34013,8 +34230,6 @@ export type TaskProcessQueuedEvent =
|
|
|
34013
34230
|
export type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
34014
34231
|
export type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
34015
34232
|
export type TaxAmount = io.flow.internal.v0.unions.TaxAmount;
|
|
34016
|
-
export type TaxAndDutyInclusivitySetting =
|
|
34017
|
-
io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
34018
34233
|
export type TaxCalculation = io.flow.internal.v0.models.TaxCalculation;
|
|
34019
34234
|
export type TaxCalculationError =
|
|
34020
34235
|
io.flow.internal.v0.models.TaxCalculationError;
|