@flowio/types 11.24.135 → 11.24.137
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 +487 -87
- package/dist/api.d.ts +131 -32
- package/package.json +1 -1
- package/src/api-internal.ts +634 -117
- package/src/api.ts +165 -31
package/src/api-internal.ts
CHANGED
|
@@ -5333,6 +5333,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
5333
5333
|
| 'dimensions_estimated'
|
|
5334
5334
|
| 'default_item_dimensions_estimated';
|
|
5335
5335
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
5336
|
+
type ShippingCostGuarantee = 'guaranteed' | 'non_guaranteed';
|
|
5336
5337
|
type ShippingLabelErrorCode =
|
|
5337
5338
|
| 'generic_error'
|
|
5338
5339
|
| 'cancelled_order'
|
|
@@ -5478,6 +5479,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
5478
5479
|
readonly created_at?: string;
|
|
5479
5480
|
readonly updated_at?: string;
|
|
5480
5481
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
5482
|
+
readonly shipping_cost_guarantee?: io.flow.label.v0.enums.ShippingCostGuarantee;
|
|
5481
5483
|
}
|
|
5482
5484
|
|
|
5483
5485
|
interface ShippingLabelDocument {
|
|
@@ -6930,11 +6932,6 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
6930
6932
|
| 'sports_and_fitness'
|
|
6931
6933
|
| 'toys_hobbies_gifts'
|
|
6932
6934
|
| '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
6935
|
}
|
|
6939
6936
|
|
|
6940
6937
|
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
@@ -7018,7 +7015,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7018
7015
|
readonly organization_id: string;
|
|
7019
7016
|
readonly shopify_order_id: string;
|
|
7020
7017
|
readonly order_number: string;
|
|
7021
|
-
readonly tax_and_duty_inclusivity_setting: io.flow.
|
|
7018
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
7022
7019
|
}
|
|
7023
7020
|
|
|
7024
7021
|
interface OrderValidationError {
|
|
@@ -7123,6 +7120,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7123
7120
|
readonly access_token_masked?: string;
|
|
7124
7121
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
7125
7122
|
readonly catalog_publication_owner?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
7123
|
+
readonly fast_sellability_completed_at?: string;
|
|
7126
7124
|
}
|
|
7127
7125
|
|
|
7128
7126
|
interface ShopifyMarketsShopForm {
|
|
@@ -7249,6 +7247,11 @@ declare namespace io.flow.consumer.invoice.v0.enums {
|
|
|
7249
7247
|
| 'individual';
|
|
7250
7248
|
type ConsumerInvoiceDocumentType = 'pdf';
|
|
7251
7249
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
7250
|
+
type FeeInvoiceType =
|
|
7251
|
+
| 'mor_invoice'
|
|
7252
|
+
| 'label_invoice'
|
|
7253
|
+
| 'mor_credit_memo'
|
|
7254
|
+
| 'label_credit_memo';
|
|
7252
7255
|
type TaxJurisdictionType = 'country' | 'province';
|
|
7253
7256
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
7254
7257
|
}
|
|
@@ -7460,6 +7463,21 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
7460
7463
|
readonly attributes?: Record<string, string>;
|
|
7461
7464
|
}
|
|
7462
7465
|
|
|
7466
|
+
interface FeeInvoice {
|
|
7467
|
+
readonly id: string;
|
|
7468
|
+
readonly number: string;
|
|
7469
|
+
readonly invoice_type: io.flow.consumer.invoice.v0.enums.FeeInvoiceType;
|
|
7470
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7471
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7472
|
+
readonly date: string;
|
|
7473
|
+
readonly b2b_tax_transaction_id: string;
|
|
7474
|
+
readonly order_number: string;
|
|
7475
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
7476
|
+
readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
7477
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
7478
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
7479
|
+
}
|
|
7480
|
+
|
|
7463
7481
|
interface InvoiceExport {
|
|
7464
7482
|
readonly id: string;
|
|
7465
7483
|
}
|
|
@@ -8298,6 +8316,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8298
8316
|
readonly count: number;
|
|
8299
8317
|
}
|
|
8300
8318
|
|
|
8319
|
+
interface GraphqlInferredProductCategory {
|
|
8320
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
8321
|
+
}
|
|
8322
|
+
|
|
8301
8323
|
interface GraphqlInventoryItem {
|
|
8302
8324
|
readonly id: string;
|
|
8303
8325
|
readonly tracked: boolean;
|
|
@@ -8354,6 +8376,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8354
8376
|
readonly updatedAt: string;
|
|
8355
8377
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
8356
8378
|
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
8379
|
+
readonly inferredProductCategory?: io.flow.shopify.external.v0.models.GraphqlInferredProductCategory;
|
|
8357
8380
|
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
8358
8381
|
}
|
|
8359
8382
|
|
|
@@ -10353,7 +10376,8 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
10353
10376
|
| 'non_matching_currencies'
|
|
10354
10377
|
| 'unsupported_order_edit'
|
|
10355
10378
|
| 'order_allocation_duties_mismatch'
|
|
10356
|
-
| 'order_missing'
|
|
10379
|
+
| 'order_missing'
|
|
10380
|
+
| 'organization_deactivated';
|
|
10357
10381
|
type ChannelOrderAcceptanceStatus =
|
|
10358
10382
|
| 'accepted'
|
|
10359
10383
|
| 'rejected'
|
|
@@ -10469,6 +10493,14 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10469
10493
|
readonly cleartext: string;
|
|
10470
10494
|
}
|
|
10471
10495
|
|
|
10496
|
+
interface ChannelShopStatistics {
|
|
10497
|
+
readonly id: string;
|
|
10498
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
10499
|
+
readonly initial_catalog_synced_at?: string;
|
|
10500
|
+
readonly catalog_sync_duration?: number;
|
|
10501
|
+
readonly catalog_products_count?: number;
|
|
10502
|
+
}
|
|
10503
|
+
|
|
10472
10504
|
interface FlowChannelOrganization {
|
|
10473
10505
|
readonly placeholder?: string;
|
|
10474
10506
|
}
|
|
@@ -10796,7 +10828,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
10796
10828
|
|
|
10797
10829
|
interface DiscountForm {
|
|
10798
10830
|
readonly offer: io.flow.common.v0.unions.DiscountOffer;
|
|
10799
|
-
readonly target
|
|
10831
|
+
readonly target?: io.flow.common.v0.enums.DiscountTarget;
|
|
10800
10832
|
readonly label?: string;
|
|
10801
10833
|
}
|
|
10802
10834
|
|
|
@@ -10998,7 +11030,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
10998
11030
|
readonly parent?: io.flow.common.v0.models.OrganizationReference;
|
|
10999
11031
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
11000
11032
|
readonly created_at?: string;
|
|
11001
|
-
readonly status
|
|
11033
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
11002
11034
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
11003
11035
|
}
|
|
11004
11036
|
|
|
@@ -11527,6 +11559,11 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
11527
11559
|
type PriceFacetBoundary = 'min' | 'max';
|
|
11528
11560
|
type PricingType = 'inclusive_pricing';
|
|
11529
11561
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
11562
|
+
type TaxAndDutyInclusivitySetting =
|
|
11563
|
+
| 'duty_exclusive_tax_exclusive'
|
|
11564
|
+
| 'duty_inclusive_tax_exclusive'
|
|
11565
|
+
| 'duty_exclusive_tax_inclusive'
|
|
11566
|
+
| 'duty_inclusive_tax_inclusive';
|
|
11530
11567
|
}
|
|
11531
11568
|
|
|
11532
11569
|
declare namespace io.flow.experience.v0.models {
|
|
@@ -12905,6 +12942,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12905
12942
|
readonly rate_level_key?: string;
|
|
12906
12943
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
12907
12944
|
readonly effective_at: string;
|
|
12945
|
+
readonly effective_until?: string;
|
|
12908
12946
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
12909
12947
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
12910
12948
|
readonly published_at?: string;
|
|
@@ -12925,6 +12963,10 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12925
12963
|
readonly pickupCenter?: string;
|
|
12926
12964
|
}
|
|
12927
12965
|
|
|
12966
|
+
interface RatecardEffectiveUntilForm {
|
|
12967
|
+
readonly effective_until?: string;
|
|
12968
|
+
}
|
|
12969
|
+
|
|
12928
12970
|
interface RatecardEstimateForm {
|
|
12929
12971
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
12930
12972
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
@@ -12943,13 +12985,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12943
12985
|
readonly commercial_invoice_mode?: io.flow.label.v0.enums.CommercialInvoiceMode;
|
|
12944
12986
|
}
|
|
12945
12987
|
|
|
12946
|
-
interface RatecardEstimateSummaryForm {
|
|
12947
|
-
readonly origin?: string;
|
|
12948
|
-
readonly destination?: string;
|
|
12949
|
-
readonly service?: string;
|
|
12950
|
-
readonly center_key?: string;
|
|
12951
|
-
}
|
|
12952
|
-
|
|
12953
12988
|
interface RatecardEstimateV1 {
|
|
12954
12989
|
readonly discriminator: 'ratecard_estimate_v1';
|
|
12955
12990
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
@@ -13183,6 +13218,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13183
13218
|
}
|
|
13184
13219
|
|
|
13185
13220
|
interface ShippingRateEstimateRequest {
|
|
13221
|
+
readonly carrier_id: string;
|
|
13186
13222
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
13187
13223
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
13188
13224
|
readonly package_dimensions: io.flow.common.v0.models.Dimension;
|
|
@@ -14009,6 +14045,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
14009
14045
|
readonly organization_id: string;
|
|
14010
14046
|
readonly number: string;
|
|
14011
14047
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
14048
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
14012
14049
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
14013
14050
|
readonly item_numbers: string[];
|
|
14014
14051
|
readonly highest_value_item_number?: string;
|
|
@@ -15310,7 +15347,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15310
15347
|
| 'b2b_tax'
|
|
15311
15348
|
| 'b2b_tax_refund'
|
|
15312
15349
|
| 'b2b_fee_mor_tax'
|
|
15313
|
-
| 'b2b_fee_shipping_tax'
|
|
15350
|
+
| 'b2b_fee_shipping_tax'
|
|
15351
|
+
| 'flat_rate_label';
|
|
15314
15352
|
type TrueupSource =
|
|
15315
15353
|
| 'flow'
|
|
15316
15354
|
| 'channel'
|
|
@@ -15645,6 +15683,12 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15645
15683
|
readonly id: string;
|
|
15646
15684
|
}
|
|
15647
15685
|
|
|
15686
|
+
interface TransactionMetadataFlatRateLabel {
|
|
15687
|
+
readonly discriminator: 'flat_rate_label';
|
|
15688
|
+
readonly flat_rate?: number;
|
|
15689
|
+
readonly coefficient?: number;
|
|
15690
|
+
}
|
|
15691
|
+
|
|
15648
15692
|
interface TransactionMetadataManual {
|
|
15649
15693
|
readonly discriminator: 'manual';
|
|
15650
15694
|
readonly description: string;
|
|
@@ -15831,7 +15875,8 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
15831
15875
|
| io.flow.billing.v0.models.TransactionMetadataFailedPayout
|
|
15832
15876
|
| io.flow.billing.v0.models.TransactionMetadataPaymentTransaction
|
|
15833
15877
|
| io.flow.billing.v0.models.TransactionMetadataTaxDuty
|
|
15834
|
-
| io.flow.billing.v0.models.TransactionMetadataMerchantFee
|
|
15878
|
+
| io.flow.billing.v0.models.TransactionMetadataMerchantFee
|
|
15879
|
+
| io.flow.billing.v0.models.TransactionMetadataFlatRateLabel;
|
|
15835
15880
|
}
|
|
15836
15881
|
|
|
15837
15882
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -16117,6 +16162,7 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
16117
16162
|
| 'flow-can'
|
|
16118
16163
|
| 'ge-usa'
|
|
16119
16164
|
| 'ge-can'
|
|
16165
|
+
| 'ge-can-ship'
|
|
16120
16166
|
| 'ge-gbr'
|
|
16121
16167
|
| 'ge-irl';
|
|
16122
16168
|
}
|
|
@@ -16613,6 +16659,18 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
16613
16659
|
|
|
16614
16660
|
interface BankAccountInfoKor {
|
|
16615
16661
|
readonly discriminator: 'kor';
|
|
16662
|
+
readonly name?: string;
|
|
16663
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
16664
|
+
readonly phone?: string;
|
|
16665
|
+
readonly email?: string;
|
|
16666
|
+
readonly bank_account_number: string;
|
|
16667
|
+
readonly bank_routing_number?: string;
|
|
16668
|
+
readonly bank_name?: string;
|
|
16669
|
+
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
16670
|
+
}
|
|
16671
|
+
|
|
16672
|
+
interface BankAccountInfoKorV2 {
|
|
16673
|
+
readonly discriminator: 'kor_v2';
|
|
16616
16674
|
readonly name: string;
|
|
16617
16675
|
readonly bank_account_number: string;
|
|
16618
16676
|
readonly bank_routing_number: string;
|
|
@@ -16633,17 +16691,19 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16633
16691
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
|
|
16634
16692
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoFra
|
|
16635
16693
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta
|
|
16636
|
-
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
16694
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
16695
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2;
|
|
16637
16696
|
}
|
|
16638
16697
|
|
|
16639
16698
|
declare namespace io.flow.internal.v0.enums {
|
|
16640
|
-
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
|
|
16699
|
+
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD' | 'KRW';
|
|
16641
16700
|
type AccountPaymentHoldReason =
|
|
16642
16701
|
| 'fraudulent'
|
|
16643
16702
|
| 'frozen'
|
|
16644
16703
|
| 'invalid_bank_account';
|
|
16645
16704
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
16646
16705
|
type AccountType = 'channel' | 'organization';
|
|
16706
|
+
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
16647
16707
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
16648
16708
|
type AdyenIntegrationType =
|
|
16649
16709
|
| 'hosted_payment_page'
|
|
@@ -16656,6 +16716,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16656
16716
|
| 'integration_test'
|
|
16657
16717
|
| 'unit_test';
|
|
16658
16718
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
16719
|
+
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
16659
16720
|
type AutoRestrictRule =
|
|
16660
16721
|
| 'prr-3ce7d556f2464314ab0a3e8eee33e0ce'
|
|
16661
16722
|
| 'prr-599c6246a1a24752aeb85e8f79030781'
|
|
@@ -16673,7 +16734,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16673
16734
|
| 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
16674
16735
|
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
16675
16736
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
16676
|
-
type B2BTaxLedgerDocumentType =
|
|
16737
|
+
type B2BTaxLedgerDocumentType =
|
|
16738
|
+
| 'b2b_invoice'
|
|
16739
|
+
| 'b2b_credit_memo'
|
|
16740
|
+
| 'mor_invoice'
|
|
16741
|
+
| 'mor_credit_memo'
|
|
16742
|
+
| 'label_invoice'
|
|
16743
|
+
| 'label_credit_memo';
|
|
16677
16744
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
16678
16745
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
16679
16746
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -16949,7 +17016,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16949
17016
|
| 'b2b_tax'
|
|
16950
17017
|
| 'b2b_tax_refund'
|
|
16951
17018
|
| 'b2b_fee_mor_tax'
|
|
16952
|
-
| 'b2b_fee_shipping_tax'
|
|
17019
|
+
| 'b2b_fee_shipping_tax'
|
|
17020
|
+
| 'flat_rate_label';
|
|
16953
17021
|
type BojanaItemType = 'physical' | 'digital';
|
|
16954
17022
|
type CalculatorEngine =
|
|
16955
17023
|
| 'dtce_with_deminimis'
|
|
@@ -17007,7 +17075,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17007
17075
|
| 'non_matching_currencies'
|
|
17008
17076
|
| 'unsupported_order_edit'
|
|
17009
17077
|
| 'order_allocation_duties_mismatch'
|
|
17010
|
-
| 'order_missing'
|
|
17078
|
+
| 'order_missing'
|
|
17079
|
+
| 'organization_deactivated';
|
|
17011
17080
|
type ChannelOrderAcceptanceStatus =
|
|
17012
17081
|
| 'accepted'
|
|
17013
17082
|
| 'rejected'
|
|
@@ -17146,6 +17215,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17146
17215
|
type ErpFileType = 'vendor';
|
|
17147
17216
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
17148
17217
|
type EventType =
|
|
17218
|
+
| 'adaptive_shipping_rate_upserted'
|
|
17219
|
+
| 'adaptive_shipping_rate_deleted'
|
|
17149
17220
|
| 'adyen_authorization_deleted'
|
|
17150
17221
|
| 'adyen_authorization_upserted'
|
|
17151
17222
|
| 'adyen_cancel_deleted'
|
|
@@ -17228,6 +17299,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17228
17299
|
| 'channel_order_acceptance_upserted'
|
|
17229
17300
|
| 'channel_order_acceptance_deleted'
|
|
17230
17301
|
| 'channel_order_acceptance_failed'
|
|
17302
|
+
| 'channel_shop_statistics_upserted'
|
|
17303
|
+
| 'channel_shop_statistics_deleted'
|
|
17231
17304
|
| 'commercial_invoice_internal_upserted'
|
|
17232
17305
|
| 'commercial_invoice_internal_deleted'
|
|
17233
17306
|
| 'internal_channel_rate_deleted'
|
|
@@ -17285,6 +17358,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17285
17358
|
| 'bank_payment_order_deleted'
|
|
17286
17359
|
| 'shipping_cost_upserted'
|
|
17287
17360
|
| 'shipping_cost_deleted'
|
|
17361
|
+
| 'mor_cost_upserted'
|
|
17362
|
+
| 'mor_cost_deleted'
|
|
17363
|
+
| 'flat_rate_label_reversal_upserted'
|
|
17364
|
+
| 'flat_rate_label_reversal_deleted'
|
|
17288
17365
|
| 'fraud_review_upserted'
|
|
17289
17366
|
| 'fraud_review_deleted'
|
|
17290
17367
|
| 'fraud_pending_review_upserted'
|
|
@@ -17341,6 +17418,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17341
17418
|
| 'order_validation_deleted'
|
|
17342
17419
|
| 'label_creation_job_upserted'
|
|
17343
17420
|
| 'label_creation_job_deleted'
|
|
17421
|
+
| 'adaptive_shipping_order_guarantee_upserted'
|
|
17422
|
+
| 'adaptive_shipping_order_guarantee_deleted'
|
|
17344
17423
|
| 'label_tracking_summary_upserted'
|
|
17345
17424
|
| 'label_tracking_summary_deleted'
|
|
17346
17425
|
| 'logistics_capabilities_upserted'
|
|
@@ -17413,8 +17492,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17413
17492
|
| 'ratecard_dimension_estimate_upserted'
|
|
17414
17493
|
| 'ratecard_dimension_estimate_deleted'
|
|
17415
17494
|
| 'ratecard_lanes_import_request'
|
|
17416
|
-
| 'ratecard_standard_configuration_upserted'
|
|
17417
|
-
| 'ratecard_standard_configuration_deleted'
|
|
17418
17495
|
| 'ratecard_service_fee_upserted'
|
|
17419
17496
|
| 'ratecard_service_fee_deleted'
|
|
17420
17497
|
| 'ratecard_rate_level_upserted'
|
|
@@ -17431,12 +17508,18 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17431
17508
|
| 'screening_status_change_deleted'
|
|
17432
17509
|
| 'restrictions_dailyops_upserted'
|
|
17433
17510
|
| 'restrictions_dailyops_deleted'
|
|
17511
|
+
| 'restrictions_athena_dailyops_pc_pv_upserted'
|
|
17512
|
+
| 'restrictions_athena_dailyops_pc_pv_deleted'
|
|
17513
|
+
| 'restrictions_athena_dailyops_fs_upserted'
|
|
17514
|
+
| 'restrictions_athena_dailyops_fs_deleted'
|
|
17434
17515
|
| 'restriction_rule_upserted'
|
|
17435
17516
|
| 'restriction_rule_deleted'
|
|
17436
17517
|
| 'restriction_rule_effect_upserted'
|
|
17437
17518
|
| 'restriction_rule_effect_deleted'
|
|
17438
17519
|
| 'taxonomy_category_hs6_ref_upserted'
|
|
17439
17520
|
| 'taxonomy_category_hs6_ref_deleted'
|
|
17521
|
+
| 'preonboarding_merchant_upserted'
|
|
17522
|
+
| 'preonboarding_merchant_deleted'
|
|
17440
17523
|
| 'shopify_hs10_codes_upserted'
|
|
17441
17524
|
| 'shopify_hs10_codes_deleted'
|
|
17442
17525
|
| 'shopify_markets_order_upserted'
|
|
@@ -17506,10 +17589,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17506
17589
|
| 'stripe_connect_report_record_deleted'
|
|
17507
17590
|
| 'liability_remittance_plan_upserted'
|
|
17508
17591
|
| 'liability_remittance_plan_deleted'
|
|
17592
|
+
| 'b2b_tax_transaction_upserted'
|
|
17593
|
+
| 'b2b_tax_transaction_deleted'
|
|
17509
17594
|
| 'gabriel_item_upserted'
|
|
17510
17595
|
| 'gabriel_item_deleted'
|
|
17511
17596
|
| 'chenglin_item_upserted'
|
|
17512
17597
|
| 'chenglin_item_deleted'
|
|
17598
|
+
| 'bojana_item_upserted'
|
|
17599
|
+
| 'bojana_item_deleted'
|
|
17600
|
+
| 'raveena_item_upserted'
|
|
17601
|
+
| 'raveena_item_deleted'
|
|
17513
17602
|
| 'tracking_processing_error_upserted'
|
|
17514
17603
|
| 'tracking_processing_error_deleted'
|
|
17515
17604
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -17539,6 +17628,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17539
17628
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
17540
17629
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
17541
17630
|
type FileType = 'pdf';
|
|
17631
|
+
type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
17542
17632
|
type FraudProvider =
|
|
17543
17633
|
| 'flow'
|
|
17544
17634
|
| 'forter'
|
|
@@ -17602,7 +17692,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17602
17692
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
17603
17693
|
type KeywordType = 'positive' | 'negative';
|
|
17604
17694
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
17605
|
-
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
17606
17695
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
17607
17696
|
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
17608
17697
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
@@ -17641,6 +17730,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17641
17730
|
| 'order_combined_shipment'
|
|
17642
17731
|
| 'intransit_label_event'
|
|
17643
17732
|
| 'shipping_notification';
|
|
17733
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
17734
|
+
type MailClass = 'standard' | 'express';
|
|
17644
17735
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
17645
17736
|
type ManualTransactionCategory =
|
|
17646
17737
|
| 'cancelled_order_refund'
|
|
@@ -17830,6 +17921,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17830
17921
|
| 'shopify_enterprise_usa'
|
|
17831
17922
|
| 'shopify_small_sdc_usa';
|
|
17832
17923
|
type RateSource = 'calculated' | 'market';
|
|
17924
|
+
type RaveenaItemType = 'physical' | 'digital';
|
|
17833
17925
|
type RedirectReason = 'three_d_secure';
|
|
17834
17926
|
type RejectionReason =
|
|
17835
17927
|
| 'merchant_policy'
|
|
@@ -17856,6 +17948,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17856
17948
|
| 'non_channel_payment_bank_account'
|
|
17857
17949
|
| 'scheduled_payment'
|
|
17858
17950
|
| 'scheduled_payment_citi'
|
|
17951
|
+
| 'scheduled_payment_citi_krw'
|
|
17952
|
+
| 'scheduled_payment_citi_krw_txt'
|
|
17859
17953
|
| 'account_quarterly_balances'
|
|
17860
17954
|
| 'invariants'
|
|
17861
17955
|
| 'payments'
|
|
@@ -18094,12 +18188,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18094
18188
|
| 'payment'
|
|
18095
18189
|
| 'rate_levels'
|
|
18096
18190
|
| 'center_defaults'
|
|
18097
|
-
| 'item_dimensions'
|
|
18098
|
-
|
|
18099
|
-
| 'duty_exclusive_tax_exclusive'
|
|
18100
|
-
| 'duty_inclusive_tax_exclusive'
|
|
18101
|
-
| 'duty_exclusive_tax_inclusive'
|
|
18102
|
-
| 'duty_inclusive_tax_inclusive';
|
|
18191
|
+
| 'item_dimensions'
|
|
18192
|
+
| 'center';
|
|
18103
18193
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
18104
18194
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
18105
18195
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
@@ -18392,6 +18482,57 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18392
18482
|
readonly quantity: number;
|
|
18393
18483
|
}
|
|
18394
18484
|
|
|
18485
|
+
interface AdaptiveShippingOrderGuarantee {
|
|
18486
|
+
readonly id: string;
|
|
18487
|
+
readonly organization_id: string;
|
|
18488
|
+
readonly order_number: string;
|
|
18489
|
+
readonly guarantee_state: io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
18490
|
+
readonly label_id?: string;
|
|
18491
|
+
readonly notification_id?: string;
|
|
18492
|
+
}
|
|
18493
|
+
|
|
18494
|
+
interface AdaptiveShippingOrderGuaranteeDeleted {
|
|
18495
|
+
readonly discriminator: 'adaptive_shipping_order_guarantee_deleted';
|
|
18496
|
+
readonly event_id: string;
|
|
18497
|
+
readonly timestamp: string;
|
|
18498
|
+
readonly organization: string;
|
|
18499
|
+
readonly id: string;
|
|
18500
|
+
}
|
|
18501
|
+
|
|
18502
|
+
interface AdaptiveShippingOrderGuaranteeUpserted {
|
|
18503
|
+
readonly discriminator: 'adaptive_shipping_order_guarantee_upserted';
|
|
18504
|
+
readonly event_id: string;
|
|
18505
|
+
readonly timestamp: string;
|
|
18506
|
+
readonly organization: string;
|
|
18507
|
+
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
18508
|
+
}
|
|
18509
|
+
|
|
18510
|
+
interface AdaptiveShippingRate {
|
|
18511
|
+
readonly id: string;
|
|
18512
|
+
readonly organization_id: string;
|
|
18513
|
+
readonly destination_country: string;
|
|
18514
|
+
readonly coefficient: number;
|
|
18515
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
18516
|
+
readonly effective_at: string;
|
|
18517
|
+
readonly effective_until?: string;
|
|
18518
|
+
}
|
|
18519
|
+
|
|
18520
|
+
interface AdaptiveShippingRateDeleted {
|
|
18521
|
+
readonly discriminator: 'adaptive_shipping_rate_deleted';
|
|
18522
|
+
readonly event_id: string;
|
|
18523
|
+
readonly timestamp: string;
|
|
18524
|
+
readonly organization: string;
|
|
18525
|
+
readonly id: string;
|
|
18526
|
+
}
|
|
18527
|
+
|
|
18528
|
+
interface AdaptiveShippingRateUpserted {
|
|
18529
|
+
readonly discriminator: 'adaptive_shipping_rate_upserted';
|
|
18530
|
+
readonly event_id: string;
|
|
18531
|
+
readonly timestamp: string;
|
|
18532
|
+
readonly organization: string;
|
|
18533
|
+
readonly adaptive_shipping_rate: io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
18534
|
+
}
|
|
18535
|
+
|
|
18395
18536
|
interface AdditionalImportTax {
|
|
18396
18537
|
readonly name?: string;
|
|
18397
18538
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -18834,11 +18975,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18834
18975
|
readonly export_id: string;
|
|
18835
18976
|
}
|
|
18836
18977
|
|
|
18837
|
-
interface AllOrganizationsMembership {
|
|
18838
|
-
readonly user_id: string;
|
|
18839
|
-
readonly role: io.flow.common.v0.enums.Role;
|
|
18840
|
-
}
|
|
18841
|
-
|
|
18842
18978
|
interface AllocationItemReference {
|
|
18843
18979
|
readonly number: string;
|
|
18844
18980
|
}
|
|
@@ -19019,6 +19155,54 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19019
19155
|
readonly document_number?: string;
|
|
19020
19156
|
}
|
|
19021
19157
|
|
|
19158
|
+
interface B2BTaxTransaction {
|
|
19159
|
+
readonly id: string;
|
|
19160
|
+
readonly organization_id: string;
|
|
19161
|
+
readonly order_number: string;
|
|
19162
|
+
readonly transaction_source_id: string;
|
|
19163
|
+
readonly transaction_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
19164
|
+
readonly transaction_date: string;
|
|
19165
|
+
readonly currency: string;
|
|
19166
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
19167
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
19168
|
+
readonly taxable_items: io.flow.internal.v0.models.B2BTransactionTaxableItem[];
|
|
19169
|
+
readonly taxable_amount_total: io.flow.common.v0.models.Money;
|
|
19170
|
+
readonly tax_total: io.flow.common.v0.models.Money;
|
|
19171
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
19172
|
+
readonly document_number?: string;
|
|
19173
|
+
}
|
|
19174
|
+
|
|
19175
|
+
interface B2BTaxTransactionDeleted {
|
|
19176
|
+
readonly discriminator: 'b2b_tax_transaction_deleted';
|
|
19177
|
+
readonly event_id: string;
|
|
19178
|
+
readonly timestamp: string;
|
|
19179
|
+
readonly organization: string;
|
|
19180
|
+
readonly id: string;
|
|
19181
|
+
}
|
|
19182
|
+
|
|
19183
|
+
interface B2BTaxTransactionUpserted {
|
|
19184
|
+
readonly discriminator: 'b2b_tax_transaction_upserted';
|
|
19185
|
+
readonly event_id: string;
|
|
19186
|
+
readonly timestamp: string;
|
|
19187
|
+
readonly organization: string;
|
|
19188
|
+
readonly b2b_tax_transaction: io.flow.internal.v0.models.B2BTaxTransaction;
|
|
19189
|
+
}
|
|
19190
|
+
|
|
19191
|
+
interface B2BTransactionTaxLine {
|
|
19192
|
+
readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
|
|
19193
|
+
readonly tax_rate: number;
|
|
19194
|
+
readonly tax_amount: io.flow.common.v0.models.Money;
|
|
19195
|
+
readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
|
|
19196
|
+
}
|
|
19197
|
+
|
|
19198
|
+
interface B2BTransactionTaxableItem {
|
|
19199
|
+
readonly line_item_reference: string;
|
|
19200
|
+
readonly label: string;
|
|
19201
|
+
readonly taxable_amount: io.flow.common.v0.models.Money;
|
|
19202
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
19203
|
+
readonly taxes: io.flow.internal.v0.models.B2BTransactionTaxLine[];
|
|
19204
|
+
}
|
|
19205
|
+
|
|
19022
19206
|
interface BankAccount {
|
|
19023
19207
|
readonly status: io.flow.internal.v0.enums.BankAccountStatus;
|
|
19024
19208
|
readonly hold_created_at?: string;
|
|
@@ -19330,6 +19514,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19330
19514
|
readonly merchant_fee: io.flow.common.v0.models.Price;
|
|
19331
19515
|
readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
|
|
19332
19516
|
readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
|
|
19517
|
+
readonly flat_rate_label: io.flow.common.v0.models.Price;
|
|
19333
19518
|
}
|
|
19334
19519
|
|
|
19335
19520
|
interface BillingStatementUpserted {
|
|
@@ -19405,6 +19590,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19405
19590
|
readonly added_on: string;
|
|
19406
19591
|
}
|
|
19407
19592
|
|
|
19593
|
+
interface BojanaItemDeleted {
|
|
19594
|
+
readonly discriminator: 'bojana_item_deleted';
|
|
19595
|
+
readonly event_id: string;
|
|
19596
|
+
readonly timestamp: string;
|
|
19597
|
+
readonly id: string;
|
|
19598
|
+
}
|
|
19599
|
+
|
|
19408
19600
|
interface BojanaItemForm {
|
|
19409
19601
|
readonly number: string;
|
|
19410
19602
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -19413,6 +19605,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19413
19605
|
readonly added_on: string;
|
|
19414
19606
|
}
|
|
19415
19607
|
|
|
19608
|
+
interface BojanaItemUpserted {
|
|
19609
|
+
readonly discriminator: 'bojana_item_upserted';
|
|
19610
|
+
readonly event_id: string;
|
|
19611
|
+
readonly timestamp: string;
|
|
19612
|
+
readonly item: io.flow.internal.v0.models.BojanaItem;
|
|
19613
|
+
}
|
|
19614
|
+
|
|
19416
19615
|
interface BooleanFeatureDefaultValue {
|
|
19417
19616
|
readonly discriminator: 'boolean';
|
|
19418
19617
|
readonly value: boolean;
|
|
@@ -19484,6 +19683,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19484
19683
|
readonly sales_tax_rate: number;
|
|
19485
19684
|
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
19486
19685
|
readonly additional_tax_rate?: number;
|
|
19686
|
+
readonly fixed_fee?: io.flow.common.v0.models.Money;
|
|
19687
|
+
readonly fixed_fee_tax?: io.flow.common.v0.models.Money;
|
|
19487
19688
|
readonly total: io.flow.common.v0.models.Money;
|
|
19488
19689
|
}
|
|
19489
19690
|
|
|
@@ -19518,6 +19719,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19518
19719
|
readonly additional_tax_import_included: boolean;
|
|
19519
19720
|
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
19520
19721
|
readonly additional_import_tax?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
19722
|
+
readonly fixed_fee?: io.flow.common.v0.models.Money;
|
|
19723
|
+
readonly fixed_fee_tax?: io.flow.common.v0.models.Money;
|
|
19521
19724
|
}
|
|
19522
19725
|
|
|
19523
19726
|
interface CalculatorDtcePostBody {
|
|
@@ -20267,6 +20470,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20267
20470
|
readonly tokens: io.flow.internal.v0.models.Tokens;
|
|
20268
20471
|
}
|
|
20269
20472
|
|
|
20473
|
+
interface ChannelShopStatistics {
|
|
20474
|
+
readonly id: string;
|
|
20475
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
20476
|
+
readonly initial_catalog_synced_at?: string;
|
|
20477
|
+
readonly catalog_sync_duration?: number;
|
|
20478
|
+
readonly catalog_products_count?: number;
|
|
20479
|
+
}
|
|
20480
|
+
|
|
20481
|
+
interface ChannelShopStatisticsDeleted {
|
|
20482
|
+
readonly discriminator: 'channel_shop_statistics_deleted';
|
|
20483
|
+
readonly event_id: string;
|
|
20484
|
+
readonly timestamp: string;
|
|
20485
|
+
readonly organization: string;
|
|
20486
|
+
readonly id: string;
|
|
20487
|
+
}
|
|
20488
|
+
|
|
20489
|
+
interface ChannelShopStatisticsUpserted {
|
|
20490
|
+
readonly discriminator: 'channel_shop_statistics_upserted';
|
|
20491
|
+
readonly event_id: string;
|
|
20492
|
+
readonly timestamp: string;
|
|
20493
|
+
readonly organization: string;
|
|
20494
|
+
readonly channel_shop_statistics: io.flow.internal.v0.models.ChannelShopStatistics;
|
|
20495
|
+
}
|
|
20496
|
+
|
|
20270
20497
|
interface ChannelTransaction {
|
|
20271
20498
|
readonly discriminator: 'channel_transaction';
|
|
20272
20499
|
readonly transaction: io.flow.internal.v0.models.TransactionReference;
|
|
@@ -22196,6 +22423,53 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22196
22423
|
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
22197
22424
|
}
|
|
22198
22425
|
|
|
22426
|
+
interface FlatRate {
|
|
22427
|
+
readonly mail_class: io.flow.internal.v0.enums.MailClass;
|
|
22428
|
+
readonly carrier_id: string;
|
|
22429
|
+
readonly service_id: string;
|
|
22430
|
+
readonly price: io.flow.common.v0.models.Money;
|
|
22431
|
+
readonly free_shipping_threshold?: io.flow.common.v0.models.Money;
|
|
22432
|
+
readonly min_delivery_days?: number;
|
|
22433
|
+
readonly max_delivery_days?: number;
|
|
22434
|
+
}
|
|
22435
|
+
|
|
22436
|
+
interface FlatRateLabelReversal {
|
|
22437
|
+
readonly id: string;
|
|
22438
|
+
readonly organization_id: string;
|
|
22439
|
+
readonly order_number: string;
|
|
22440
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
22441
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
22442
|
+
}
|
|
22443
|
+
|
|
22444
|
+
interface FlatRateLabelReversalDeleted {
|
|
22445
|
+
readonly discriminator: 'flat_rate_label_reversal_deleted';
|
|
22446
|
+
readonly event_id: string;
|
|
22447
|
+
readonly timestamp: string;
|
|
22448
|
+
readonly organization: string;
|
|
22449
|
+
readonly id: string;
|
|
22450
|
+
}
|
|
22451
|
+
|
|
22452
|
+
interface FlatRateLabelReversalUpserted {
|
|
22453
|
+
readonly discriminator: 'flat_rate_label_reversal_upserted';
|
|
22454
|
+
readonly event_id: string;
|
|
22455
|
+
readonly timestamp: string;
|
|
22456
|
+
readonly organization: string;
|
|
22457
|
+
readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
22458
|
+
}
|
|
22459
|
+
|
|
22460
|
+
interface FlatRateLabelTransaction {
|
|
22461
|
+
readonly discriminator: 'flat_rate_label_transaction';
|
|
22462
|
+
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
22463
|
+
readonly id: string;
|
|
22464
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22465
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
22466
|
+
readonly posted_at?: string;
|
|
22467
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
22468
|
+
readonly description: string;
|
|
22469
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22470
|
+
readonly created_at: string;
|
|
22471
|
+
}
|
|
22472
|
+
|
|
22199
22473
|
interface FlexeWebhook {
|
|
22200
22474
|
readonly placeholder?: boolean;
|
|
22201
22475
|
}
|
|
@@ -22532,17 +22806,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22532
22806
|
readonly ftp_file: io.flow.ftp.v0.models.FtpFile;
|
|
22533
22807
|
}
|
|
22534
22808
|
|
|
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
22809
|
interface Fulfillment {
|
|
22547
22810
|
readonly id: string;
|
|
22548
22811
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
@@ -23591,11 +23854,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23591
23854
|
readonly constructions: Record<string, string[]>;
|
|
23592
23855
|
}
|
|
23593
23856
|
|
|
23594
|
-
interface LabelCancellationError {
|
|
23595
|
-
readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
23596
|
-
readonly messages: string[];
|
|
23597
|
-
}
|
|
23598
|
-
|
|
23599
23857
|
interface LabelCreationJob {
|
|
23600
23858
|
readonly id: string;
|
|
23601
23859
|
readonly reference_id: string;
|
|
@@ -24068,6 +24326,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24068
24326
|
readonly applied: io.flow.internal.v0.models.LoyaltyProgramReward[];
|
|
24069
24327
|
}
|
|
24070
24328
|
|
|
24329
|
+
interface MaheshItem {
|
|
24330
|
+
readonly id: string;
|
|
24331
|
+
readonly number: string;
|
|
24332
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24333
|
+
readonly description?: string;
|
|
24334
|
+
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
24335
|
+
readonly added_on: string;
|
|
24336
|
+
}
|
|
24337
|
+
|
|
24338
|
+
interface MaheshItemForm {
|
|
24339
|
+
readonly number: string;
|
|
24340
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24341
|
+
readonly description?: string;
|
|
24342
|
+
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
24343
|
+
readonly added_on: string;
|
|
24344
|
+
}
|
|
24345
|
+
|
|
24071
24346
|
interface MainTransaction {
|
|
24072
24347
|
readonly id: string;
|
|
24073
24348
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -24360,12 +24635,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24360
24635
|
readonly total: number;
|
|
24361
24636
|
}
|
|
24362
24637
|
|
|
24638
|
+
interface MerchantSurcharge {
|
|
24639
|
+
readonly type: io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
24640
|
+
readonly amount: number;
|
|
24641
|
+
}
|
|
24642
|
+
|
|
24363
24643
|
interface MerchantTransactions {
|
|
24364
24644
|
readonly adjustment: number;
|
|
24365
24645
|
readonly reversal: number;
|
|
24366
24646
|
readonly tax: number;
|
|
24367
24647
|
readonly duty: number;
|
|
24368
24648
|
readonly freight: number;
|
|
24649
|
+
readonly base_amount?: number;
|
|
24650
|
+
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
24651
|
+
readonly freight_guaranteed?: number;
|
|
24652
|
+
readonly freight_non_guaranteed?: number;
|
|
24369
24653
|
readonly total: number;
|
|
24370
24654
|
readonly tax_refund?: number;
|
|
24371
24655
|
readonly tax_reversal?: number;
|
|
@@ -24396,6 +24680,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24396
24680
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
24397
24681
|
}
|
|
24398
24682
|
|
|
24683
|
+
interface MorCostDeleted {
|
|
24684
|
+
readonly discriminator: 'mor_cost_deleted';
|
|
24685
|
+
readonly event_id: string;
|
|
24686
|
+
readonly timestamp: string;
|
|
24687
|
+
readonly organization: string;
|
|
24688
|
+
readonly id: string;
|
|
24689
|
+
}
|
|
24690
|
+
|
|
24691
|
+
interface MorCostSummary {
|
|
24692
|
+
readonly id: string;
|
|
24693
|
+
readonly organization_id: string;
|
|
24694
|
+
readonly order_number: string;
|
|
24695
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
24696
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
24697
|
+
}
|
|
24698
|
+
|
|
24699
|
+
interface MorCostUpserted {
|
|
24700
|
+
readonly discriminator: 'mor_cost_upserted';
|
|
24701
|
+
readonly event_id: string;
|
|
24702
|
+
readonly timestamp: string;
|
|
24703
|
+
readonly organization: string;
|
|
24704
|
+
readonly mor_cost: io.flow.internal.v0.models.MorCostSummary;
|
|
24705
|
+
}
|
|
24706
|
+
|
|
24399
24707
|
interface NegativeDebitMetrics {
|
|
24400
24708
|
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24401
24709
|
readonly first_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
@@ -24755,7 +25063,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24755
25063
|
readonly organization_id: string;
|
|
24756
25064
|
readonly shopify_order_id: string;
|
|
24757
25065
|
readonly order_number: string;
|
|
24758
|
-
readonly tax_and_duty_inclusivity_setting: io.flow.
|
|
25066
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
24759
25067
|
}
|
|
24760
25068
|
|
|
24761
25069
|
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
@@ -26023,6 +26331,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26023
26331
|
readonly relative_ranking: number;
|
|
26024
26332
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26025
26333
|
readonly fingerprint: string;
|
|
26334
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26026
26335
|
}
|
|
26027
26336
|
|
|
26028
26337
|
interface PreonboardingClassificationResult {
|
|
@@ -26034,14 +26343,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26034
26343
|
readonly probability?: number;
|
|
26035
26344
|
readonly classification_decision: io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
26036
26345
|
readonly classification_type: io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
26346
|
+
readonly model_id?: string;
|
|
26037
26347
|
}
|
|
26038
26348
|
|
|
26039
26349
|
interface PreonboardingMerchant {
|
|
26350
|
+
readonly id: string;
|
|
26040
26351
|
readonly merchant_id: string;
|
|
26041
26352
|
readonly channel: string;
|
|
26042
26353
|
readonly catalog_size: number;
|
|
26043
26354
|
readonly processed_product_count: number;
|
|
26044
26355
|
readonly last_request: string;
|
|
26356
|
+
readonly updated_by_user_id: string;
|
|
26357
|
+
}
|
|
26358
|
+
|
|
26359
|
+
interface PreonboardingMerchantDeleted {
|
|
26360
|
+
readonly discriminator: 'preonboarding_merchant_deleted';
|
|
26361
|
+
readonly event_id: string;
|
|
26362
|
+
readonly timestamp: string;
|
|
26363
|
+
readonly id: string;
|
|
26364
|
+
}
|
|
26365
|
+
|
|
26366
|
+
interface PreonboardingMerchantUpserted {
|
|
26367
|
+
readonly discriminator: 'preonboarding_merchant_upserted';
|
|
26368
|
+
readonly event_id: string;
|
|
26369
|
+
readonly timestamp: string;
|
|
26370
|
+
readonly preonboarding_merchant: io.flow.internal.v0.models.PreonboardingMerchant;
|
|
26045
26371
|
}
|
|
26046
26372
|
|
|
26047
26373
|
interface PreonboardingSellabilityResult {
|
|
@@ -26057,9 +26383,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26057
26383
|
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
26058
26384
|
readonly rule_ids?: string[];
|
|
26059
26385
|
readonly matching_positive_keywords?: string[];
|
|
26386
|
+
readonly matching_sellability_positive_keywords?: string[];
|
|
26060
26387
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
26061
26388
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26062
26389
|
readonly fingerprint: string;
|
|
26390
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26063
26391
|
}
|
|
26064
26392
|
|
|
26065
26393
|
interface PreonboardingSellabilityResultDeleted {
|
|
@@ -26352,6 +26680,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26352
26680
|
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
26353
26681
|
readonly rule_matches: io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch[];
|
|
26354
26682
|
readonly matching_positive_keywords?: string[];
|
|
26683
|
+
readonly matching_sellability_positive_keywords?: string[];
|
|
26355
26684
|
}
|
|
26356
26685
|
|
|
26357
26686
|
interface ProductSellabilityInternalRuleMatch {
|
|
@@ -26812,51 +27141,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26812
27141
|
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
26813
27142
|
}
|
|
26814
27143
|
|
|
26815
|
-
interface
|
|
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';
|
|
27144
|
+
interface RatesChanged {
|
|
26824
27145
|
readonly event_id: string;
|
|
26825
27146
|
readonly timestamp: string;
|
|
26826
|
-
readonly
|
|
26827
|
-
readonly
|
|
27147
|
+
readonly hs6: string;
|
|
27148
|
+
readonly origin: io.flow.reference.v0.models.Country;
|
|
27149
|
+
readonly destination: io.flow.reference.v0.models.Country;
|
|
26828
27150
|
}
|
|
26829
27151
|
|
|
26830
|
-
interface
|
|
26831
|
-
readonly
|
|
26832
|
-
readonly
|
|
26833
|
-
readonly
|
|
27152
|
+
interface RatesNamesSummary {
|
|
27153
|
+
readonly origin: io.flow.reference.v0.models.Country;
|
|
27154
|
+
readonly destination: io.flow.reference.v0.models.Country;
|
|
27155
|
+
readonly summaries: io.flow.internal.v0.models.RateNameSummary[];
|
|
26834
27156
|
}
|
|
26835
27157
|
|
|
26836
|
-
interface
|
|
26837
|
-
readonly
|
|
27158
|
+
interface RaveenaItem {
|
|
27159
|
+
readonly id: string;
|
|
27160
|
+
readonly number: string;
|
|
27161
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
27162
|
+
readonly description?: string;
|
|
27163
|
+
readonly type: io.flow.internal.v0.enums.RaveenaItemType;
|
|
27164
|
+
readonly added_on: string;
|
|
27165
|
+
}
|
|
27166
|
+
|
|
27167
|
+
interface RaveenaItemDeleted {
|
|
27168
|
+
readonly discriminator: 'raveena_item_deleted';
|
|
26838
27169
|
readonly event_id: string;
|
|
26839
27170
|
readonly timestamp: string;
|
|
26840
|
-
readonly
|
|
26841
|
-
readonly configuration: io.flow.internal.v0.models.RatecardStandardConfiguration;
|
|
27171
|
+
readonly id: string;
|
|
26842
27172
|
}
|
|
26843
27173
|
|
|
26844
|
-
interface
|
|
26845
|
-
readonly
|
|
27174
|
+
interface RaveenaItemForm {
|
|
27175
|
+
readonly number: string;
|
|
27176
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
27177
|
+
readonly description?: string;
|
|
27178
|
+
readonly type: io.flow.internal.v0.enums.RaveenaItemType;
|
|
27179
|
+
readonly added_on: string;
|
|
26846
27180
|
}
|
|
26847
27181
|
|
|
26848
|
-
interface
|
|
27182
|
+
interface RaveenaItemUpserted {
|
|
27183
|
+
readonly discriminator: 'raveena_item_upserted';
|
|
26849
27184
|
readonly event_id: string;
|
|
26850
27185
|
readonly timestamp: string;
|
|
26851
|
-
readonly
|
|
26852
|
-
readonly origin: io.flow.reference.v0.models.Country;
|
|
26853
|
-
readonly destination: io.flow.reference.v0.models.Country;
|
|
26854
|
-
}
|
|
26855
|
-
|
|
26856
|
-
interface RatesNamesSummary {
|
|
26857
|
-
readonly origin: io.flow.reference.v0.models.Country;
|
|
26858
|
-
readonly destination: io.flow.reference.v0.models.Country;
|
|
26859
|
-
readonly summaries: io.flow.internal.v0.models.RateNameSummary[];
|
|
27186
|
+
readonly item: io.flow.internal.v0.models.RaveenaItem;
|
|
26860
27187
|
}
|
|
26861
27188
|
|
|
26862
27189
|
interface RecordReference {
|
|
@@ -26925,6 +27252,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26925
27252
|
readonly type: string;
|
|
26926
27253
|
readonly routing_number: string;
|
|
26927
27254
|
readonly account_number: string;
|
|
27255
|
+
readonly bank_name?: string;
|
|
26928
27256
|
}
|
|
26929
27257
|
|
|
26930
27258
|
interface ReportFile {
|
|
@@ -26942,6 +27270,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26942
27270
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
26943
27271
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
26944
27272
|
readonly account_currency?: io.flow.internal.v0.enums.AccountCurrencyFilter;
|
|
27273
|
+
readonly channel_id?: string;
|
|
26945
27274
|
}
|
|
26946
27275
|
|
|
26947
27276
|
interface ReportForm {
|
|
@@ -27144,6 +27473,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27144
27473
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27145
27474
|
}
|
|
27146
27475
|
|
|
27476
|
+
interface ReportingMerchantFreight {
|
|
27477
|
+
readonly base_amount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27478
|
+
readonly surcharges?: io.flow.internal.v0.models.ReportingMerchantFreightSurcharges;
|
|
27479
|
+
}
|
|
27480
|
+
|
|
27481
|
+
interface ReportingMerchantFreightSurcharges {
|
|
27482
|
+
readonly duties_paid?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27483
|
+
readonly fixed_ddp?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27484
|
+
readonly fixed_currency_conversion?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27485
|
+
}
|
|
27486
|
+
|
|
27147
27487
|
interface ReportingMerchantSubsidies {
|
|
27148
27488
|
readonly shipping: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27149
27489
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -27158,6 +27498,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27158
27498
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27159
27499
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27160
27500
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27501
|
+
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
27502
|
+
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27503
|
+
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27161
27504
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27162
27505
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27163
27506
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -27288,6 +27631,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27288
27631
|
readonly excluded_rules?: string[];
|
|
27289
27632
|
}
|
|
27290
27633
|
|
|
27634
|
+
interface RestrictionBlanketOrganizationExemptionForm {
|
|
27635
|
+
readonly organization_id: string;
|
|
27636
|
+
readonly description: string;
|
|
27637
|
+
readonly is_all_rules_exempt: boolean;
|
|
27638
|
+
readonly exempt_regions?: string[];
|
|
27639
|
+
readonly excluded_rules?: string[];
|
|
27640
|
+
}
|
|
27641
|
+
|
|
27291
27642
|
interface RestrictionCategory {
|
|
27292
27643
|
readonly category: string;
|
|
27293
27644
|
}
|
|
@@ -27567,8 +27918,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27567
27918
|
readonly id: string;
|
|
27568
27919
|
readonly rule_id: string;
|
|
27569
27920
|
readonly description: string;
|
|
27570
|
-
readonly
|
|
27571
|
-
readonly
|
|
27921
|
+
readonly origin_regions: string[];
|
|
27922
|
+
readonly destination_regions: string[];
|
|
27923
|
+
}
|
|
27924
|
+
|
|
27925
|
+
interface RestrictionRuleLaneExemptionForm {
|
|
27926
|
+
readonly rule_id: string;
|
|
27927
|
+
readonly description: string;
|
|
27928
|
+
readonly origin_regions: string[];
|
|
27929
|
+
readonly destination_regions: string[];
|
|
27572
27930
|
}
|
|
27573
27931
|
|
|
27574
27932
|
interface RestrictionRuleOrganizationExemption {
|
|
@@ -27583,6 +27941,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27583
27941
|
readonly is_rule_active?: boolean;
|
|
27584
27942
|
}
|
|
27585
27943
|
|
|
27944
|
+
interface RestrictionRuleOrganizationExemptionForm {
|
|
27945
|
+
readonly organization_id: string;
|
|
27946
|
+
readonly rule_id: string;
|
|
27947
|
+
readonly description: string;
|
|
27948
|
+
readonly exempt_regions?: string[];
|
|
27949
|
+
readonly ignored_keywords?: string[];
|
|
27950
|
+
readonly additional_keywords?: string[];
|
|
27951
|
+
readonly community_exemption_override?: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
27952
|
+
readonly is_rule_active?: boolean;
|
|
27953
|
+
}
|
|
27954
|
+
|
|
27586
27955
|
interface RestrictionRuleOverride {
|
|
27587
27956
|
readonly id: string;
|
|
27588
27957
|
readonly organization_id: string;
|
|
@@ -27609,6 +27978,75 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27609
27978
|
readonly pending_classification_count: number;
|
|
27610
27979
|
}
|
|
27611
27980
|
|
|
27981
|
+
interface RestrictionsAthenaDailyopsFs {
|
|
27982
|
+
readonly id: string;
|
|
27983
|
+
readonly report_date: string;
|
|
27984
|
+
readonly num_products_with_fs_result?: number;
|
|
27985
|
+
readonly num_products_sellable_somewhere_by_fs?: number;
|
|
27986
|
+
readonly num_products_restricted_somewhere_by_fs?: number;
|
|
27987
|
+
readonly num_products_with_false_allows_by_fs?: number;
|
|
27988
|
+
readonly num_products_with_false_restricts_by_fs?: number;
|
|
27989
|
+
readonly daily_num_products_with_fs_result?: number;
|
|
27990
|
+
readonly daily_num_products_sellable_somewhere_by_fs?: number;
|
|
27991
|
+
readonly daily_num_products_restricted_somewhere_by_fs?: number;
|
|
27992
|
+
readonly daily_num_products_with_false_allows_by_fs?: number;
|
|
27993
|
+
readonly daily_num_products_with_false_restricts_by_fs?: number;
|
|
27994
|
+
}
|
|
27995
|
+
|
|
27996
|
+
interface RestrictionsAthenaDailyopsFsDeleted {
|
|
27997
|
+
readonly discriminator: 'restrictions_athena_dailyops_fs_deleted';
|
|
27998
|
+
readonly event_id: string;
|
|
27999
|
+
readonly timestamp: string;
|
|
28000
|
+
readonly id: string;
|
|
28001
|
+
}
|
|
28002
|
+
|
|
28003
|
+
interface RestrictionsAthenaDailyopsFsUpserted {
|
|
28004
|
+
readonly discriminator: 'restrictions_athena_dailyops_fs_upserted';
|
|
28005
|
+
readonly event_id: string;
|
|
28006
|
+
readonly timestamp: string;
|
|
28007
|
+
readonly restrictions_athena_dailyops_fs: io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
28008
|
+
}
|
|
28009
|
+
|
|
28010
|
+
interface RestrictionsAthenaDailyopsPcPv {
|
|
28011
|
+
readonly id: string;
|
|
28012
|
+
readonly report_date: string;
|
|
28013
|
+
readonly intent_level: io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
28014
|
+
readonly num_orgs_setup_complete_with_pvs: number;
|
|
28015
|
+
readonly num_products_setup_complete_with_pvs: number;
|
|
28016
|
+
readonly num_orgs_transacting_with_pvs: number;
|
|
28017
|
+
readonly num_products_transacting_with_pvs: number;
|
|
28018
|
+
readonly num_orgs_setup_complete_with_pcs: number;
|
|
28019
|
+
readonly num_products_setup_complete_with_pcs: number;
|
|
28020
|
+
readonly num_orgs_transacting_with_pcs: number;
|
|
28021
|
+
readonly num_products_transacting_with_pcs: number;
|
|
28022
|
+
readonly oldest_pv_product_date_setup_complete?: string;
|
|
28023
|
+
readonly oldest_pv_product_date_transacting?: string;
|
|
28024
|
+
readonly oldest_pc_product_date_setup_complete?: string;
|
|
28025
|
+
readonly oldest_pc_product_date_transacting?: string;
|
|
28026
|
+
readonly oldest_insufficient_details_pv_active?: string;
|
|
28027
|
+
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
28028
|
+
readonly num_pv_inflow_net_new: number;
|
|
28029
|
+
readonly num_pv_outflow_human_decisions: number;
|
|
28030
|
+
readonly num_pv_outflow_auto_review_decisions: number;
|
|
28031
|
+
readonly num_pv_outflow_side_effect_decisions: number;
|
|
28032
|
+
readonly num_pending_decisions_transacting: number;
|
|
28033
|
+
readonly pv_decisions_setup_complete: number;
|
|
28034
|
+
}
|
|
28035
|
+
|
|
28036
|
+
interface RestrictionsAthenaDailyopsPcPvDeleted {
|
|
28037
|
+
readonly discriminator: 'restrictions_athena_dailyops_pc_pv_deleted';
|
|
28038
|
+
readonly event_id: string;
|
|
28039
|
+
readonly timestamp: string;
|
|
28040
|
+
readonly id: string;
|
|
28041
|
+
}
|
|
28042
|
+
|
|
28043
|
+
interface RestrictionsAthenaDailyopsPcPvUpserted {
|
|
28044
|
+
readonly discriminator: 'restrictions_athena_dailyops_pc_pv_upserted';
|
|
28045
|
+
readonly event_id: string;
|
|
28046
|
+
readonly timestamp: string;
|
|
28047
|
+
readonly restrictions_athena_dailyops_pc_pv: io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
28048
|
+
}
|
|
28049
|
+
|
|
27612
28050
|
interface RestrictionsDailyops {
|
|
27613
28051
|
readonly id: string;
|
|
27614
28052
|
readonly report_date: string;
|
|
@@ -28355,6 +28793,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28355
28793
|
readonly access_token_masked?: string;
|
|
28356
28794
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
28357
28795
|
readonly catalog_publication_owner?: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
28796
|
+
readonly fast_sellability_completed_at?: string;
|
|
28358
28797
|
}
|
|
28359
28798
|
|
|
28360
28799
|
interface ShopifyMarketsShopDeleted {
|
|
@@ -30459,6 +30898,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30459
30898
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
30460
30899
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
30461
30900
|
type Event =
|
|
30901
|
+
| io.flow.internal.v0.models.AdaptiveShippingRateUpserted
|
|
30902
|
+
| io.flow.internal.v0.models.AdaptiveShippingRateDeleted
|
|
30462
30903
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
30463
30904
|
| io.flow.internal.v0.models.AdyenAuthorizationUpserted
|
|
30464
30905
|
| io.flow.internal.v0.models.AdyenCancelDeleted
|
|
@@ -30541,6 +30982,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30541
30982
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted
|
|
30542
30983
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted
|
|
30543
30984
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceFailed
|
|
30985
|
+
| io.flow.internal.v0.models.ChannelShopStatisticsUpserted
|
|
30986
|
+
| io.flow.internal.v0.models.ChannelShopStatisticsDeleted
|
|
30544
30987
|
| io.flow.internal.v0.models.CommercialInvoiceInternalUpserted
|
|
30545
30988
|
| io.flow.internal.v0.models.CommercialInvoiceInternalDeleted
|
|
30546
30989
|
| io.flow.internal.v0.models.InternalChannelRateDeleted
|
|
@@ -30598,6 +31041,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30598
31041
|
| io.flow.internal.v0.models.BankPaymentOrderDeleted
|
|
30599
31042
|
| io.flow.internal.v0.models.ShippingCostUpserted
|
|
30600
31043
|
| io.flow.internal.v0.models.ShippingCostDeleted
|
|
31044
|
+
| io.flow.internal.v0.models.MorCostUpserted
|
|
31045
|
+
| io.flow.internal.v0.models.MorCostDeleted
|
|
31046
|
+
| io.flow.internal.v0.models.FlatRateLabelReversalUpserted
|
|
31047
|
+
| io.flow.internal.v0.models.FlatRateLabelReversalDeleted
|
|
30601
31048
|
| io.flow.internal.v0.models.FraudReviewUpserted
|
|
30602
31049
|
| io.flow.internal.v0.models.FraudReviewDeleted
|
|
30603
31050
|
| io.flow.internal.v0.models.FraudPendingReviewUpserted
|
|
@@ -30654,6 +31101,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30654
31101
|
| io.flow.internal.v0.models.OrderValidationDeleted
|
|
30655
31102
|
| io.flow.internal.v0.models.LabelCreationJobUpserted
|
|
30656
31103
|
| io.flow.internal.v0.models.LabelCreationJobDeleted
|
|
31104
|
+
| io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted
|
|
31105
|
+
| io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted
|
|
30657
31106
|
| io.flow.internal.v0.models.LabelTrackingSummaryUpserted
|
|
30658
31107
|
| io.flow.internal.v0.models.LabelTrackingSummaryDeleted
|
|
30659
31108
|
| io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
|
|
@@ -30726,8 +31175,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30726
31175
|
| io.flow.internal.v0.models.RatecardDimensionEstimateUpserted
|
|
30727
31176
|
| io.flow.internal.v0.models.RatecardDimensionEstimateDeleted
|
|
30728
31177
|
| io.flow.internal.v0.models.RatecardLanesImportRequest
|
|
30729
|
-
| io.flow.internal.v0.models.RatecardStandardConfigurationUpserted
|
|
30730
|
-
| io.flow.internal.v0.models.RatecardStandardConfigurationDeleted
|
|
30731
31178
|
| io.flow.internal.v0.models.RatecardServiceFeeUpserted
|
|
30732
31179
|
| io.flow.internal.v0.models.RatecardServiceFeeDeleted
|
|
30733
31180
|
| io.flow.internal.v0.models.RatecardRateLevelUpserted
|
|
@@ -30744,12 +31191,18 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30744
31191
|
| io.flow.internal.v0.models.ScreeningStatusChangeDeleted
|
|
30745
31192
|
| io.flow.internal.v0.models.RestrictionsDailyopsUpserted
|
|
30746
31193
|
| io.flow.internal.v0.models.RestrictionsDailyopsDeleted
|
|
31194
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted
|
|
31195
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted
|
|
31196
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted
|
|
31197
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted
|
|
30747
31198
|
| io.flow.internal.v0.models.RestrictionRuleUpserted
|
|
30748
31199
|
| io.flow.internal.v0.models.RestrictionRuleDeleted
|
|
30749
31200
|
| io.flow.internal.v0.models.RestrictionRuleEffectUpserted
|
|
30750
31201
|
| io.flow.internal.v0.models.RestrictionRuleEffectDeleted
|
|
30751
31202
|
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted
|
|
30752
31203
|
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted
|
|
31204
|
+
| io.flow.internal.v0.models.PreonboardingMerchantUpserted
|
|
31205
|
+
| io.flow.internal.v0.models.PreonboardingMerchantDeleted
|
|
30753
31206
|
| io.flow.internal.v0.models.ShopifyHs10CodesUpserted
|
|
30754
31207
|
| io.flow.internal.v0.models.ShopifyHs10CodesDeleted
|
|
30755
31208
|
| io.flow.internal.v0.models.ShopifyMarketsOrderUpserted
|
|
@@ -30819,10 +31272,16 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30819
31272
|
| io.flow.internal.v0.models.StripeConnectReportRecordDeleted
|
|
30820
31273
|
| io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
|
|
30821
31274
|
| io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
|
|
31275
|
+
| io.flow.internal.v0.models.B2BTaxTransactionUpserted
|
|
31276
|
+
| io.flow.internal.v0.models.B2BTaxTransactionDeleted
|
|
30822
31277
|
| io.flow.internal.v0.models.GabrielItemUpserted
|
|
30823
31278
|
| io.flow.internal.v0.models.GabrielItemDeleted
|
|
30824
31279
|
| io.flow.internal.v0.models.ChenglinItemUpserted
|
|
30825
31280
|
| io.flow.internal.v0.models.ChenglinItemDeleted
|
|
31281
|
+
| io.flow.internal.v0.models.BojanaItemUpserted
|
|
31282
|
+
| io.flow.internal.v0.models.BojanaItemDeleted
|
|
31283
|
+
| io.flow.internal.v0.models.RaveenaItemUpserted
|
|
31284
|
+
| io.flow.internal.v0.models.RaveenaItemDeleted
|
|
30826
31285
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
30827
31286
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
30828
31287
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -30868,9 +31327,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30868
31327
|
io.flow.internal.v0.models.FraudProviderConfigurationRiskified;
|
|
30869
31328
|
type FraudProviderConfigurationForm =
|
|
30870
31329
|
io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified;
|
|
30871
|
-
type FuelSurchargeServiceFeePutForm =
|
|
30872
|
-
| io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm
|
|
30873
|
-
| io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
30874
31330
|
type FulfillmentProof =
|
|
30875
31331
|
| io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference
|
|
30876
31332
|
| io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference
|
|
@@ -31042,7 +31498,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31042
31498
|
| io.flow.internal.v0.models.CarrierChargeTransaction
|
|
31043
31499
|
| io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction
|
|
31044
31500
|
| io.flow.internal.v0.models.GeRevenueShareTransaction
|
|
31045
|
-
| io.flow.internal.v0.models.MerchantFeeTransaction
|
|
31501
|
+
| io.flow.internal.v0.models.MerchantFeeTransaction
|
|
31502
|
+
| io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
31046
31503
|
type TransactionSummary =
|
|
31047
31504
|
| io.flow.internal.v0.models.PaymentSummaryV2
|
|
31048
31505
|
| io.flow.internal.v0.models.FraudSummary;
|
|
@@ -31104,6 +31561,20 @@ export type AccountingPendingOrderMetadata =
|
|
|
31104
31561
|
export type AccountingReturnMetadata =
|
|
31105
31562
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
31106
31563
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
31564
|
+
export type AdaptiveShippingOrderGuarantee =
|
|
31565
|
+
io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
31566
|
+
export type AdaptiveShippingOrderGuaranteeDeleted =
|
|
31567
|
+
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
31568
|
+
export type AdaptiveShippingOrderGuaranteeState =
|
|
31569
|
+
io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
31570
|
+
export type AdaptiveShippingOrderGuaranteeUpserted =
|
|
31571
|
+
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
31572
|
+
export type AdaptiveShippingRate =
|
|
31573
|
+
io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
31574
|
+
export type AdaptiveShippingRateDeleted =
|
|
31575
|
+
io.flow.internal.v0.models.AdaptiveShippingRateDeleted;
|
|
31576
|
+
export type AdaptiveShippingRateUpserted =
|
|
31577
|
+
io.flow.internal.v0.models.AdaptiveShippingRateUpserted;
|
|
31107
31578
|
export type AdditionalImportTax =
|
|
31108
31579
|
io.flow.internal.v0.models.AdditionalImportTax;
|
|
31109
31580
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
@@ -31208,8 +31679,6 @@ export type AfterpayRefundUpserted =
|
|
|
31208
31679
|
io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
31209
31680
|
export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
31210
31681
|
export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
31211
|
-
export type AllOrganizationsMembership =
|
|
31212
|
-
io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
31213
31682
|
export type AllocationItemReference =
|
|
31214
31683
|
io.flow.internal.v0.models.AllocationItemReference;
|
|
31215
31684
|
export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
@@ -31223,6 +31692,8 @@ export type ApplePayAuthorizationPayload =
|
|
|
31223
31692
|
export type ApplicablePreferentialRate =
|
|
31224
31693
|
io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
31225
31694
|
export type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
31695
|
+
export type AthenaDailyopsIntentLevel =
|
|
31696
|
+
io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
31226
31697
|
export type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
31227
31698
|
export type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
31228
31699
|
export type AttributeRule = io.flow.internal.v0.models.AttributeRule;
|
|
@@ -31264,6 +31735,15 @@ export type B2BTaxLedgerDocumentType =
|
|
|
31264
31735
|
io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
31265
31736
|
export type B2BTaxLedgerForm = io.flow.internal.v0.models.B2BTaxLedgerForm;
|
|
31266
31737
|
export type B2BTaxRateType = io.flow.internal.v0.enums.B2BTaxRateType;
|
|
31738
|
+
export type B2BTaxTransaction = io.flow.internal.v0.models.B2BTaxTransaction;
|
|
31739
|
+
export type B2BTaxTransactionDeleted =
|
|
31740
|
+
io.flow.internal.v0.models.B2BTaxTransactionDeleted;
|
|
31741
|
+
export type B2BTaxTransactionUpserted =
|
|
31742
|
+
io.flow.internal.v0.models.B2BTaxTransactionUpserted;
|
|
31743
|
+
export type B2BTransactionTaxLine =
|
|
31744
|
+
io.flow.internal.v0.models.B2BTransactionTaxLine;
|
|
31745
|
+
export type B2BTransactionTaxableItem =
|
|
31746
|
+
io.flow.internal.v0.models.B2BTransactionTaxableItem;
|
|
31267
31747
|
export type BankAccount = io.flow.internal.v0.models.BankAccount;
|
|
31268
31748
|
export type BankAccountReference =
|
|
31269
31749
|
io.flow.internal.v0.models.BankAccountReference;
|
|
@@ -31370,8 +31850,10 @@ export type BitpayAuthenticationDataReference =
|
|
|
31370
31850
|
export type BitpayAuthenticationForm =
|
|
31371
31851
|
io.flow.internal.v0.models.BitpayAuthenticationForm;
|
|
31372
31852
|
export type BojanaItem = io.flow.internal.v0.models.BojanaItem;
|
|
31853
|
+
export type BojanaItemDeleted = io.flow.internal.v0.models.BojanaItemDeleted;
|
|
31373
31854
|
export type BojanaItemForm = io.flow.internal.v0.models.BojanaItemForm;
|
|
31374
31855
|
export type BojanaItemType = io.flow.internal.v0.enums.BojanaItemType;
|
|
31856
|
+
export type BojanaItemUpserted = io.flow.internal.v0.models.BojanaItemUpserted;
|
|
31375
31857
|
export type BooleanFeatureDefaultValue =
|
|
31376
31858
|
io.flow.internal.v0.models.BooleanFeatureDefaultValue;
|
|
31377
31859
|
export type BooleanFeatureRule = io.flow.internal.v0.models.BooleanFeatureRule;
|
|
@@ -31610,6 +32092,12 @@ export type ChannelRateMetadataRate =
|
|
|
31610
32092
|
export type ChannelService = io.flow.internal.v0.enums.ChannelService;
|
|
31611
32093
|
export type ChannelShop = io.flow.internal.v0.models.ChannelShop;
|
|
31612
32094
|
export type ChannelShopForm = io.flow.internal.v0.models.ChannelShopForm;
|
|
32095
|
+
export type ChannelShopStatistics =
|
|
32096
|
+
io.flow.internal.v0.models.ChannelShopStatistics;
|
|
32097
|
+
export type ChannelShopStatisticsDeleted =
|
|
32098
|
+
io.flow.internal.v0.models.ChannelShopStatisticsDeleted;
|
|
32099
|
+
export type ChannelShopStatisticsUpserted =
|
|
32100
|
+
io.flow.internal.v0.models.ChannelShopStatisticsUpserted;
|
|
31613
32101
|
export type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
31614
32102
|
export type ChannelTransactionDeleted =
|
|
31615
32103
|
io.flow.internal.v0.models.ChannelTransactionDeleted;
|
|
@@ -32117,6 +32605,17 @@ export type FiservMerchantModificationForm =
|
|
|
32117
32605
|
io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
32118
32606
|
export type FiservMerchantPutForm =
|
|
32119
32607
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
32608
|
+
export type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
32609
|
+
export type FlatRateLabelReversal =
|
|
32610
|
+
io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
32611
|
+
export type FlatRateLabelReversalDeleted =
|
|
32612
|
+
io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
32613
|
+
export type FlatRateLabelReversalUpserted =
|
|
32614
|
+
io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
32615
|
+
export type FlatRateLabelTransaction =
|
|
32616
|
+
io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
32617
|
+
export type FlatRateLabelTransactionType =
|
|
32618
|
+
io.flow.internal.v0.enums.FlatRateLabelTransactionType;
|
|
32120
32619
|
export type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
|
|
32121
32620
|
export type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
32122
32621
|
export type FlowBillingStatement =
|
|
@@ -32194,12 +32693,6 @@ export type FtpFileDeleted = io.flow.internal.v0.models.FtpFileDeleted;
|
|
|
32194
32693
|
export type FtpFileToProcessUploaded =
|
|
32195
32694
|
io.flow.internal.v0.models.FtpFileToProcessUploaded;
|
|
32196
32695
|
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
32696
|
export type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
32204
32697
|
export type FulfillmentActionForm =
|
|
32205
32698
|
io.flow.internal.v0.models.FulfillmentActionForm;
|
|
@@ -32462,10 +32955,6 @@ export type LabelAliases = io.flow.internal.v0.models.LabelAliases;
|
|
|
32462
32955
|
export type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
|
|
32463
32956
|
export type LabelBillingStrategy =
|
|
32464
32957
|
io.flow.internal.v0.enums.LabelBillingStrategy;
|
|
32465
|
-
export type LabelCancellationError =
|
|
32466
|
-
io.flow.internal.v0.models.LabelCancellationError;
|
|
32467
|
-
export type LabelCancellationErrorCode =
|
|
32468
|
-
io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
32469
32958
|
export type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJob;
|
|
32470
32959
|
export type LabelCreationJobDeleted =
|
|
32471
32960
|
io.flow.internal.v0.models.LabelCreationJobDeleted;
|
|
@@ -32569,6 +33058,10 @@ export type LoyaltyProgramReward =
|
|
|
32569
33058
|
io.flow.internal.v0.models.LoyaltyProgramReward;
|
|
32570
33059
|
export type LoyaltyProgramRewards =
|
|
32571
33060
|
io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
33061
|
+
export type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
33062
|
+
export type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
33063
|
+
export type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
33064
|
+
export type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
32572
33065
|
export type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
32573
33066
|
export type MainTransactionDeleted =
|
|
32574
33067
|
io.flow.internal.v0.models.MainTransactionDeleted;
|
|
@@ -32638,6 +33131,7 @@ export type MerchantSearchResult =
|
|
|
32638
33131
|
io.flow.internal.v0.models.MerchantSearchResult;
|
|
32639
33132
|
export type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
32640
33133
|
export type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
33134
|
+
export type MerchantSurcharge = io.flow.internal.v0.models.MerchantSurcharge;
|
|
32641
33135
|
export type MerchantTransactions =
|
|
32642
33136
|
io.flow.internal.v0.models.MerchantTransactions;
|
|
32643
33137
|
export type MerchantUpserted = io.flow.internal.v0.models.MerchantUpserted;
|
|
@@ -32646,6 +33140,9 @@ export type MetadataProposition =
|
|
|
32646
33140
|
io.flow.internal.v0.models.MetadataProposition;
|
|
32647
33141
|
export type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
32648
33142
|
export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
33143
|
+
export type MorCostDeleted = io.flow.internal.v0.models.MorCostDeleted;
|
|
33144
|
+
export type MorCostSummary = io.flow.internal.v0.models.MorCostSummary;
|
|
33145
|
+
export type MorCostUpserted = io.flow.internal.v0.models.MorCostUpserted;
|
|
32649
33146
|
export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
32650
33147
|
export type NegativeDebitMetrics =
|
|
32651
33148
|
io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
@@ -33100,6 +33597,10 @@ export type PreonboardingClassificationType =
|
|
|
33100
33597
|
io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
33101
33598
|
export type PreonboardingMerchant =
|
|
33102
33599
|
io.flow.internal.v0.models.PreonboardingMerchant;
|
|
33600
|
+
export type PreonboardingMerchantDeleted =
|
|
33601
|
+
io.flow.internal.v0.models.PreonboardingMerchantDeleted;
|
|
33602
|
+
export type PreonboardingMerchantUpserted =
|
|
33603
|
+
io.flow.internal.v0.models.PreonboardingMerchantUpserted;
|
|
33103
33604
|
export type PreonboardingRequestStatus =
|
|
33104
33605
|
io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
33105
33606
|
export type PreonboardingSellabilityResult =
|
|
@@ -33299,18 +33800,14 @@ export type RatecardServiceFeesOverride =
|
|
|
33299
33800
|
io.flow.internal.v0.models.RatecardServiceFeesOverride;
|
|
33300
33801
|
export type RatecardServiceFeesOverrideForm =
|
|
33301
33802
|
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
33803
|
export type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
33313
33804
|
export type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
33805
|
+
export type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
33806
|
+
export type RaveenaItemDeleted = io.flow.internal.v0.models.RaveenaItemDeleted;
|
|
33807
|
+
export type RaveenaItemForm = io.flow.internal.v0.models.RaveenaItemForm;
|
|
33808
|
+
export type RaveenaItemType = io.flow.internal.v0.enums.RaveenaItemType;
|
|
33809
|
+
export type RaveenaItemUpserted =
|
|
33810
|
+
io.flow.internal.v0.models.RaveenaItemUpserted;
|
|
33314
33811
|
export type RecordReference = io.flow.internal.v0.models.RecordReference;
|
|
33315
33812
|
export type Redirect = io.flow.internal.v0.models.Redirect;
|
|
33316
33813
|
export type RedirectActionCompleted =
|
|
@@ -33378,6 +33875,10 @@ export type ReportingMerchantBreakdown =
|
|
|
33378
33875
|
io.flow.internal.v0.models.ReportingMerchantBreakdown;
|
|
33379
33876
|
export type ReportingMerchantFees =
|
|
33380
33877
|
io.flow.internal.v0.models.ReportingMerchantFees;
|
|
33878
|
+
export type ReportingMerchantFreight =
|
|
33879
|
+
io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
33880
|
+
export type ReportingMerchantFreightSurcharges =
|
|
33881
|
+
io.flow.internal.v0.models.ReportingMerchantFreightSurcharges;
|
|
33381
33882
|
export type ReportingMerchantSubsidies =
|
|
33382
33883
|
io.flow.internal.v0.models.ReportingMerchantSubsidies;
|
|
33383
33884
|
export type ReportingMerchantTransactions =
|
|
@@ -33427,6 +33928,8 @@ export type RestrictionAttributeRuleCondition =
|
|
|
33427
33928
|
io.flow.internal.v0.unions.RestrictionAttributeRuleCondition;
|
|
33428
33929
|
export type RestrictionBlanketOrganizationExemption =
|
|
33429
33930
|
io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption;
|
|
33931
|
+
export type RestrictionBlanketOrganizationExemptionForm =
|
|
33932
|
+
io.flow.internal.v0.models.RestrictionBlanketOrganizationExemptionForm;
|
|
33430
33933
|
export type RestrictionCategory =
|
|
33431
33934
|
io.flow.internal.v0.models.RestrictionCategory;
|
|
33432
33935
|
export type RestrictionDecision = io.flow.internal.v0.enums.RestrictionDecision;
|
|
@@ -33490,8 +33993,12 @@ export type RestrictionRuleForm =
|
|
|
33490
33993
|
io.flow.internal.v0.models.RestrictionRuleForm;
|
|
33491
33994
|
export type RestrictionRuleLaneExemption =
|
|
33492
33995
|
io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
33996
|
+
export type RestrictionRuleLaneExemptionForm =
|
|
33997
|
+
io.flow.internal.v0.models.RestrictionRuleLaneExemptionForm;
|
|
33493
33998
|
export type RestrictionRuleOrganizationExemption =
|
|
33494
33999
|
io.flow.internal.v0.models.RestrictionRuleOrganizationExemption;
|
|
34000
|
+
export type RestrictionRuleOrganizationExemptionForm =
|
|
34001
|
+
io.flow.internal.v0.models.RestrictionRuleOrganizationExemptionForm;
|
|
33495
34002
|
export type RestrictionRuleOverride =
|
|
33496
34003
|
io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
33497
34004
|
export type RestrictionRuleSummary =
|
|
@@ -33503,6 +34010,18 @@ export type RestrictionStateReviewStatus =
|
|
|
33503
34010
|
export type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
33504
34011
|
export type RestrictionSummaryCounts =
|
|
33505
34012
|
io.flow.internal.v0.models.RestrictionSummaryCounts;
|
|
34013
|
+
export type RestrictionsAthenaDailyopsFs =
|
|
34014
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
34015
|
+
export type RestrictionsAthenaDailyopsFsDeleted =
|
|
34016
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted;
|
|
34017
|
+
export type RestrictionsAthenaDailyopsFsUpserted =
|
|
34018
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted;
|
|
34019
|
+
export type RestrictionsAthenaDailyopsPcPv =
|
|
34020
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
34021
|
+
export type RestrictionsAthenaDailyopsPcPvDeleted =
|
|
34022
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted;
|
|
34023
|
+
export type RestrictionsAthenaDailyopsPcPvUpserted =
|
|
34024
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted;
|
|
33506
34025
|
export type RestrictionsDailyops =
|
|
33507
34026
|
io.flow.internal.v0.models.RestrictionsDailyops;
|
|
33508
34027
|
export type RestrictionsDailyopsDeleted =
|
|
@@ -34013,8 +34532,6 @@ export type TaskProcessQueuedEvent =
|
|
|
34013
34532
|
export type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
34014
34533
|
export type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
34015
34534
|
export type TaxAmount = io.flow.internal.v0.unions.TaxAmount;
|
|
34016
|
-
export type TaxAndDutyInclusivitySetting =
|
|
34017
|
-
io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
34018
34535
|
export type TaxCalculation = io.flow.internal.v0.models.TaxCalculation;
|
|
34019
34536
|
export type TaxCalculationError =
|
|
34020
34537
|
io.flow.internal.v0.models.TaxCalculationError;
|