@flowio/types 11.24.94 → 11.24.95
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 +327 -151
- package/dist/api.d.ts +88 -17
- package/package.json +2 -2
- package/src/api-internal.ts +415 -181
- package/src/api.ts +123 -20
package/src/api-internal.ts
CHANGED
|
@@ -968,8 +968,9 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
968
968
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
969
969
|
readonly sequence_number: number;
|
|
970
970
|
readonly posting_cutoff: string;
|
|
971
|
-
readonly trigger
|
|
971
|
+
readonly trigger?: io.flow.billing.accounting.v0.unions.FulfillmentTrigger;
|
|
972
972
|
readonly fulfilled_at: string;
|
|
973
|
+
readonly carrier?: io.flow.billing.accounting.v0.models.FulfillmentCarrier;
|
|
973
974
|
readonly owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
974
975
|
readonly origin?: io.flow.billing.accounting.v0.models.FulfillmentOrigin;
|
|
975
976
|
readonly business?: io.flow.billing.accounting.v0.models.FulfillmentBusiness;
|
|
@@ -980,6 +981,12 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
980
981
|
readonly vat_registration_number: string;
|
|
981
982
|
}
|
|
982
983
|
|
|
984
|
+
interface FulfillmentCarrier {
|
|
985
|
+
readonly id: string;
|
|
986
|
+
readonly service_id?: string;
|
|
987
|
+
readonly tracking_number?: string;
|
|
988
|
+
}
|
|
989
|
+
|
|
983
990
|
interface FulfillmentOrigin {
|
|
984
991
|
readonly country: string;
|
|
985
992
|
readonly province_code?: string;
|
|
@@ -3209,6 +3216,10 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
3209
3216
|
readonly source?: io.flow.label.v0.enums.CostEstimateSource;
|
|
3210
3217
|
}
|
|
3211
3218
|
|
|
3219
|
+
interface BillingCsvMerchantReference {
|
|
3220
|
+
readonly id: string;
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3212
3223
|
interface BillingCsvOrder {
|
|
3213
3224
|
readonly number: string;
|
|
3214
3225
|
readonly primary_identifier?: string;
|
|
@@ -3355,6 +3366,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
3355
3366
|
|
|
3356
3367
|
interface BillingCsvTransactionAccount {
|
|
3357
3368
|
readonly id: string;
|
|
3369
|
+
readonly merchant?: io.flow.billing.csv.v0.models.BillingCsvMerchantReference;
|
|
3358
3370
|
readonly environment: io.flow.common.v0.enums.Environment;
|
|
3359
3371
|
readonly source: io.flow.billing.csv.v0.models.BillingCsvTransactionAccountSourceSummary;
|
|
3360
3372
|
}
|
|
@@ -3390,8 +3402,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
3390
3402
|
readonly shipping_label_revenue_share?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabelRevenueShare;
|
|
3391
3403
|
readonly trueup?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
|
|
3392
3404
|
readonly carrier_charge?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierCharge;
|
|
3393
|
-
readonly carrier_fee?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierFee;
|
|
3394
3405
|
readonly manual?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
|
|
3406
|
+
readonly failed_payout?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataFailedPayout;
|
|
3395
3407
|
}
|
|
3396
3408
|
|
|
3397
3409
|
interface BillingCsvTransactionMetadataCarrierCharge {
|
|
@@ -3403,21 +3415,19 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
3403
3415
|
readonly outbound_transaction_id?: string;
|
|
3404
3416
|
}
|
|
3405
3417
|
|
|
3406
|
-
interface BillingCsvTransactionMetadataCarrierFee {
|
|
3407
|
-
readonly outbound_transaction_id: string;
|
|
3408
|
-
readonly estimate_fixed_ddp?: number;
|
|
3409
|
-
readonly estimate_fixed_currency_conversion?: number;
|
|
3410
|
-
readonly actual_fixed_ddp?: number;
|
|
3411
|
-
readonly actual_fixed_currency_conversion?: number;
|
|
3412
|
-
}
|
|
3413
|
-
|
|
3414
3418
|
interface BillingCsvTransactionMetadataChannel {
|
|
3415
3419
|
readonly method: string;
|
|
3416
3420
|
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
3417
3421
|
}
|
|
3418
3422
|
|
|
3423
|
+
interface BillingCsvTransactionMetadataFailedPayout {
|
|
3424
|
+
readonly failed_payment: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3419
3427
|
interface BillingCsvTransactionMetadataManual {
|
|
3428
|
+
readonly description: string;
|
|
3420
3429
|
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
3430
|
+
readonly category?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
|
|
3421
3431
|
readonly url?: string;
|
|
3422
3432
|
}
|
|
3423
3433
|
|
|
@@ -4954,6 +4964,13 @@ declare namespace io.flow.label.v0.models {
|
|
|
4954
4964
|
readonly number: string;
|
|
4955
4965
|
}
|
|
4956
4966
|
|
|
4967
|
+
interface LabelProcessingModification {
|
|
4968
|
+
readonly id: string;
|
|
4969
|
+
readonly modifications: string[];
|
|
4970
|
+
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
4971
|
+
readonly destination_provided_to_carrier?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
4972
|
+
}
|
|
4973
|
+
|
|
4957
4974
|
interface LabelReference {
|
|
4958
4975
|
readonly id: string;
|
|
4959
4976
|
}
|
|
@@ -6402,6 +6419,12 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6402
6419
|
readonly timestamp: string;
|
|
6403
6420
|
}
|
|
6404
6421
|
|
|
6422
|
+
interface ChannelOrganizationIdentifier {
|
|
6423
|
+
readonly id: string;
|
|
6424
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
6425
|
+
readonly identifier: string;
|
|
6426
|
+
}
|
|
6427
|
+
|
|
6405
6428
|
interface FlowShopValidationError {
|
|
6406
6429
|
readonly message: string;
|
|
6407
6430
|
readonly reason: string;
|
|
@@ -6552,6 +6575,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6552
6575
|
readonly initial_catalog_synced_at?: string;
|
|
6553
6576
|
readonly catalog_sync_duration?: number;
|
|
6554
6577
|
readonly catalog_products_count?: number;
|
|
6578
|
+
readonly initial_product_restrictions_synced_at?: string;
|
|
6555
6579
|
}
|
|
6556
6580
|
|
|
6557
6581
|
interface ThirdPartyLogisticsPartner {
|
|
@@ -8473,7 +8497,8 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
8473
8497
|
| 'flow_commerce'
|
|
8474
8498
|
| 'gift_card'
|
|
8475
8499
|
| 'manual'
|
|
8476
|
-
| 'shopify_payments'
|
|
8500
|
+
| 'shopify_payments'
|
|
8501
|
+
| 'shop_cash';
|
|
8477
8502
|
type ShopifyOrderProcessingMethodType =
|
|
8478
8503
|
| 'checkout'
|
|
8479
8504
|
| 'direct'
|
|
@@ -10110,6 +10135,7 @@ declare namespace io.flow.common.v0.unions {
|
|
|
10110
10135
|
}
|
|
10111
10136
|
|
|
10112
10137
|
declare namespace io.flow.billing.reporting.v0.enums {
|
|
10138
|
+
type ReportPaymentType = 'credit' | 'debit';
|
|
10113
10139
|
type ReportStatus =
|
|
10114
10140
|
| 'created'
|
|
10115
10141
|
| 'completed'
|
|
@@ -10120,7 +10146,8 @@ declare namespace io.flow.billing.reporting.v0.enums {
|
|
|
10120
10146
|
| 'trueup_overview'
|
|
10121
10147
|
| 'non_channel_payment_bank_account'
|
|
10122
10148
|
| 'scheduled_payment'
|
|
10123
|
-
| 'account_quarterly_balances'
|
|
10149
|
+
| 'account_quarterly_balances'
|
|
10150
|
+
| 'invariants';
|
|
10124
10151
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
10125
10152
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
10126
10153
|
}
|
|
@@ -10156,8 +10183,9 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10156
10183
|
readonly id: string;
|
|
10157
10184
|
readonly status: io.flow.billing.reporting.v0.enums.ReportStatus;
|
|
10158
10185
|
readonly type: io.flow.billing.reporting.v0.enums.ReportType;
|
|
10159
|
-
readonly from
|
|
10160
|
-
readonly to
|
|
10186
|
+
readonly from?: string;
|
|
10187
|
+
readonly to?: string;
|
|
10188
|
+
readonly payment_type?: io.flow.billing.reporting.v0.enums.ReportPaymentType;
|
|
10161
10189
|
readonly url?: string;
|
|
10162
10190
|
readonly processed_at?: string;
|
|
10163
10191
|
}
|
|
@@ -10180,9 +10208,20 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10180
10208
|
}
|
|
10181
10209
|
|
|
10182
10210
|
interface ReportForm {
|
|
10183
|
-
readonly from: string;
|
|
10184
|
-
readonly to: string;
|
|
10185
10211
|
readonly type: io.flow.billing.reporting.v0.enums.ReportType;
|
|
10212
|
+
readonly from?: string;
|
|
10213
|
+
readonly to?: string;
|
|
10214
|
+
readonly payment_type?: io.flow.billing.reporting.v0.enums.ReportPaymentType;
|
|
10215
|
+
readonly orders?: io.flow.billing.reporting.v0.models.ReportOrderReference[];
|
|
10216
|
+
}
|
|
10217
|
+
|
|
10218
|
+
interface ReportMerchant {
|
|
10219
|
+
readonly id: string;
|
|
10220
|
+
}
|
|
10221
|
+
|
|
10222
|
+
interface ReportOrderReference {
|
|
10223
|
+
readonly organization_id: string;
|
|
10224
|
+
readonly order_number: string;
|
|
10186
10225
|
}
|
|
10187
10226
|
|
|
10188
10227
|
interface ReportOwner {
|
|
@@ -10313,7 +10352,6 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10313
10352
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10314
10353
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10315
10354
|
readonly freight: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10316
|
-
readonly refund: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10317
10355
|
}
|
|
10318
10356
|
|
|
10319
10357
|
interface ReportingMonetaryValue {
|
|
@@ -10424,6 +10462,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10424
10462
|
readonly payment: io.flow.billing.reporting.v0.models.ReportPayment;
|
|
10425
10463
|
readonly bank_account: io.flow.billing.reporting.v0.models.ReportBankAccountCleartext;
|
|
10426
10464
|
readonly account: io.flow.billing.reporting.v0.models.ReportAccount;
|
|
10465
|
+
readonly merchant: io.flow.billing.reporting.v0.models.ReportMerchant;
|
|
10427
10466
|
readonly owner: io.flow.billing.reporting.v0.models.ReportOwner;
|
|
10428
10467
|
readonly description: string;
|
|
10429
10468
|
}
|
|
@@ -11518,6 +11557,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11518
11557
|
readonly channel_order_summary: io.flow.shopify.markets.internal.v0.models.ChannelOrderSummary;
|
|
11519
11558
|
}
|
|
11520
11559
|
|
|
11560
|
+
interface ChannelOrganizationIdentifierDeleted {
|
|
11561
|
+
readonly discriminator: 'channel_organization_identifier_deleted';
|
|
11562
|
+
readonly event_id: string;
|
|
11563
|
+
readonly timestamp: string;
|
|
11564
|
+
readonly channel_id: string;
|
|
11565
|
+
readonly id: string;
|
|
11566
|
+
}
|
|
11567
|
+
|
|
11568
|
+
interface ChannelOrganizationIdentifierUpserted {
|
|
11569
|
+
readonly discriminator: 'channel_organization_identifier_upserted';
|
|
11570
|
+
readonly event_id: string;
|
|
11571
|
+
readonly timestamp: string;
|
|
11572
|
+
readonly channel_id: string;
|
|
11573
|
+
readonly channel_organization_identifier: io.flow.shopify.markets.internal.v0.models.ChannelOrganizationIdentifier;
|
|
11574
|
+
}
|
|
11575
|
+
|
|
11521
11576
|
interface ShopifyMarketsMetricsDeleted {
|
|
11522
11577
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
11523
11578
|
readonly event_id: string;
|
|
@@ -11615,7 +11670,9 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
11615
11670
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted
|
|
11616
11671
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted
|
|
11617
11672
|
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted
|
|
11618
|
-
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted
|
|
11673
|
+
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted
|
|
11674
|
+
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted
|
|
11675
|
+
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted;
|
|
11619
11676
|
}
|
|
11620
11677
|
|
|
11621
11678
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -13855,7 +13912,13 @@ declare namespace io.flow.trueup.v0.enums {
|
|
|
13855
13912
|
| 'security'
|
|
13856
13913
|
| 'eei_filing'
|
|
13857
13914
|
| 'fixed_ddp'
|
|
13858
|
-
| 'fixed_currency_conversion'
|
|
13915
|
+
| 'fixed_currency_conversion'
|
|
13916
|
+
| 'prohibited_item'
|
|
13917
|
+
| 'undeliverable_shipment'
|
|
13918
|
+
| 'signature_required'
|
|
13919
|
+
| 'direct_delivery'
|
|
13920
|
+
| 'saturday_stop'
|
|
13921
|
+
| 'residential_extended_area_pickup';
|
|
13859
13922
|
}
|
|
13860
13923
|
|
|
13861
13924
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -15147,7 +15210,6 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
15147
15210
|
| 'duty'
|
|
15148
15211
|
| 'trueup'
|
|
15149
15212
|
| 'carrier_charge'
|
|
15150
|
-
| 'carrier_fee'
|
|
15151
15213
|
| 'all';
|
|
15152
15214
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
15153
15215
|
type BillingTransactionType =
|
|
@@ -15172,14 +15234,12 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
15172
15234
|
| 'tax'
|
|
15173
15235
|
| 'duty'
|
|
15174
15236
|
| 'trueup'
|
|
15175
|
-
| 'carrier_charge'
|
|
15176
|
-
| 'carrier_fee';
|
|
15237
|
+
| 'carrier_charge';
|
|
15177
15238
|
type CarrierChargeTransactionType =
|
|
15178
15239
|
| 'adjustment'
|
|
15179
15240
|
| 'reversal'
|
|
15180
15241
|
| 'charge'
|
|
15181
15242
|
| 'revenue_share';
|
|
15182
|
-
type CarrierFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
15183
15243
|
type ChannelBilledTransactionType =
|
|
15184
15244
|
| 'adjustment'
|
|
15185
15245
|
| 'reversal'
|
|
@@ -15196,10 +15256,8 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
15196
15256
|
| 'revenue_share';
|
|
15197
15257
|
type ManualTransactionCategory =
|
|
15198
15258
|
| 'cancelled_order_refund'
|
|
15199
|
-
| 'channel_partner_initiated'
|
|
15200
15259
|
| 'client_accepted_chargeback'
|
|
15201
15260
|
| 'fee_reimbursement'
|
|
15202
|
-
| 'partial_refund'
|
|
15203
15261
|
| 'platform_fee'
|
|
15204
15262
|
| 'shipping_true_up'
|
|
15205
15263
|
| 'tax_credit'
|
|
@@ -15317,6 +15375,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15317
15375
|
readonly liabilities_method: io.flow.billing.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
15318
15376
|
readonly enable_fee_reversals: boolean;
|
|
15319
15377
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
15378
|
+
readonly enable_negative_debits: boolean;
|
|
15320
15379
|
}
|
|
15321
15380
|
|
|
15322
15381
|
interface AccountSource {
|
|
@@ -15397,6 +15456,16 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15397
15456
|
readonly attributes?: Record<string, string>;
|
|
15398
15457
|
}
|
|
15399
15458
|
|
|
15459
|
+
interface BankPaymentOrder {
|
|
15460
|
+
readonly id: string;
|
|
15461
|
+
readonly payment: io.flow.billing.internal.v0.models.BankPaymentReference;
|
|
15462
|
+
readonly order: io.flow.billing.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
15463
|
+
}
|
|
15464
|
+
|
|
15465
|
+
interface BankPaymentReference {
|
|
15466
|
+
readonly id: string;
|
|
15467
|
+
}
|
|
15468
|
+
|
|
15400
15469
|
interface BankPaymentStatusForm {
|
|
15401
15470
|
readonly code: io.flow.billing.internal.v0.enums.BankPaymentStatusCode;
|
|
15402
15471
|
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
@@ -15541,7 +15610,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15541
15610
|
readonly duty: io.flow.common.v0.models.Price;
|
|
15542
15611
|
readonly trueup: io.flow.common.v0.models.Price;
|
|
15543
15612
|
readonly carrier_charge: io.flow.common.v0.models.Price;
|
|
15544
|
-
readonly carrier_fee: io.flow.common.v0.models.Price;
|
|
15545
15613
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
15546
15614
|
}
|
|
15547
15615
|
|
|
@@ -15575,23 +15643,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15575
15643
|
readonly created_at: string;
|
|
15576
15644
|
}
|
|
15577
15645
|
|
|
15578
|
-
interface CarrierFeeTransaction {
|
|
15579
|
-
readonly discriminator: 'carrier_fee_transaction';
|
|
15580
|
-
readonly label_reference: io.flow.billing.internal.v0.models.CarrierFeeTransactionLabelReference;
|
|
15581
|
-
readonly id: string;
|
|
15582
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
15583
|
-
readonly status: io.flow.billing.internal.v0.enums.BillingTransactionStatus;
|
|
15584
|
-
readonly posted_at?: string;
|
|
15585
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
15586
|
-
readonly description: string;
|
|
15587
|
-
readonly statement?: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
15588
|
-
readonly created_at: string;
|
|
15589
|
-
}
|
|
15590
|
-
|
|
15591
|
-
interface CarrierFeeTransactionLabelReference {
|
|
15592
|
-
readonly id: string;
|
|
15593
|
-
}
|
|
15594
|
-
|
|
15595
15646
|
interface ChannelAccount {
|
|
15596
15647
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
15597
15648
|
readonly id: string;
|
|
@@ -15692,6 +15743,17 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15692
15743
|
readonly timestamp: string;
|
|
15693
15744
|
}
|
|
15694
15745
|
|
|
15746
|
+
interface CliLogEntry {
|
|
15747
|
+
readonly id: string;
|
|
15748
|
+
readonly user: io.flow.common.v0.models.UserReference;
|
|
15749
|
+
readonly task: string;
|
|
15750
|
+
}
|
|
15751
|
+
|
|
15752
|
+
interface CliLogEntryForm {
|
|
15753
|
+
readonly user_id: string;
|
|
15754
|
+
readonly task: string;
|
|
15755
|
+
}
|
|
15756
|
+
|
|
15695
15757
|
interface Components {
|
|
15696
15758
|
readonly vat: io.flow.common.v0.models.Price;
|
|
15697
15759
|
readonly duty: io.flow.common.v0.models.Price;
|
|
@@ -16365,8 +16427,7 @@ declare namespace io.flow.billing.internal.v0.unions {
|
|
|
16365
16427
|
| io.flow.billing.internal.v0.models.TaxTransaction
|
|
16366
16428
|
| io.flow.billing.internal.v0.models.DutyTransaction
|
|
16367
16429
|
| io.flow.billing.internal.v0.models.TrueupTransaction
|
|
16368
|
-
| io.flow.billing.internal.v0.models.CarrierChargeTransaction
|
|
16369
|
-
| io.flow.billing.internal.v0.models.CarrierFeeTransaction;
|
|
16430
|
+
| io.flow.billing.internal.v0.models.CarrierChargeTransaction;
|
|
16370
16431
|
}
|
|
16371
16432
|
|
|
16372
16433
|
declare namespace io.flow.billing.v0.enums {
|
|
@@ -16402,9 +16463,10 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
16402
16463
|
| 'shipping_label_service'
|
|
16403
16464
|
| 'shipping_label_revenue_share'
|
|
16404
16465
|
| 'trueup'
|
|
16466
|
+
| 'trueup_base'
|
|
16467
|
+
| 'trueup_surcharge'
|
|
16405
16468
|
| 'carrier_charge'
|
|
16406
16469
|
| 'carrier_charge_revenue_share'
|
|
16407
|
-
| 'carrier_fee'
|
|
16408
16470
|
| 'platform_fee'
|
|
16409
16471
|
| 'tax'
|
|
16410
16472
|
| 'duty'
|
|
@@ -16415,8 +16477,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
16415
16477
|
| 'channel_billed'
|
|
16416
16478
|
| 'order_service'
|
|
16417
16479
|
| 'virtual_card_capture'
|
|
16418
|
-
| 'virtual_card_refund'
|
|
16419
|
-
|
|
16480
|
+
| 'virtual_card_refund'
|
|
16481
|
+
| 'failed_payout';
|
|
16482
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
16420
16483
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
16421
16484
|
}
|
|
16422
16485
|
|
|
@@ -16708,21 +16771,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16708
16771
|
readonly outbound?: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
|
|
16709
16772
|
}
|
|
16710
16773
|
|
|
16711
|
-
interface TransactionMetadataCarrierFee {
|
|
16712
|
-
readonly discriminator: 'carrier_fee';
|
|
16713
|
-
readonly outbound: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
|
|
16714
|
-
readonly estimate: io.flow.billing.v0.models.TransactionMetadataCarrierFeeData;
|
|
16715
|
-
readonly actual: io.flow.billing.v0.models.TransactionMetadataCarrierFeeData;
|
|
16716
|
-
}
|
|
16717
|
-
|
|
16718
|
-
interface TransactionMetadataCarrierFeeData {
|
|
16719
|
-
readonly surcharges: io.flow.billing.v0.models.TrueupLabelSurcharge[];
|
|
16720
|
-
}
|
|
16721
|
-
|
|
16722
16774
|
interface TransactionMetadataChannel {
|
|
16723
16775
|
readonly discriminator: 'channel';
|
|
16724
16776
|
readonly method: string;
|
|
16725
16777
|
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
16778
|
+
readonly organization_transaction: io.flow.billing.v0.models.TransactionReference;
|
|
16726
16779
|
}
|
|
16727
16780
|
|
|
16728
16781
|
interface TransactionMetadataChannelCardMetadata {
|
|
@@ -16735,6 +16788,15 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16735
16788
|
readonly country: string;
|
|
16736
16789
|
}
|
|
16737
16790
|
|
|
16791
|
+
interface TransactionMetadataFailedPayout {
|
|
16792
|
+
readonly discriminator: 'failed_payout';
|
|
16793
|
+
readonly failed_payout: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
16794
|
+
}
|
|
16795
|
+
|
|
16796
|
+
interface TransactionMetadataFailedPayoutReference {
|
|
16797
|
+
readonly id: string;
|
|
16798
|
+
}
|
|
16799
|
+
|
|
16738
16800
|
interface TransactionMetadataManual {
|
|
16739
16801
|
readonly discriminator: 'manual';
|
|
16740
16802
|
readonly description: string;
|
|
@@ -16752,6 +16814,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16752
16814
|
|
|
16753
16815
|
interface TransactionMetadataPaymentTransaction {
|
|
16754
16816
|
readonly discriminator: 'payment_transaction';
|
|
16817
|
+
readonly id?: string;
|
|
16755
16818
|
readonly key?: string;
|
|
16756
16819
|
}
|
|
16757
16820
|
|
|
@@ -16774,6 +16837,22 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16774
16837
|
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
16775
16838
|
}
|
|
16776
16839
|
|
|
16840
|
+
interface TransactionMetadataTrueupBase {
|
|
16841
|
+
readonly discriminator: 'trueup_base';
|
|
16842
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
16843
|
+
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupBaseData;
|
|
16844
|
+
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupBaseData;
|
|
16845
|
+
}
|
|
16846
|
+
|
|
16847
|
+
interface TransactionMetadataTrueupBaseData {
|
|
16848
|
+
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
16849
|
+
readonly weights: io.flow.billing.v0.models.TrueupLabelWeights;
|
|
16850
|
+
readonly units: io.flow.billing.v0.models.TrueupLabelUnits;
|
|
16851
|
+
readonly base: io.flow.billing.v0.models.TrueupLabelBaseV2;
|
|
16852
|
+
readonly fuel?: io.flow.billing.v0.models.TrueupLabelFuel;
|
|
16853
|
+
readonly total: number;
|
|
16854
|
+
}
|
|
16855
|
+
|
|
16777
16856
|
interface TransactionMetadataTrueupData {
|
|
16778
16857
|
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
16779
16858
|
readonly units: io.flow.billing.v0.models.TrueupLabelUnits;
|
|
@@ -16784,6 +16863,18 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16784
16863
|
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
16785
16864
|
}
|
|
16786
16865
|
|
|
16866
|
+
interface TransactionMetadataTrueupSurcharge {
|
|
16867
|
+
readonly discriminator: 'trueup_surcharge';
|
|
16868
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
16869
|
+
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
16870
|
+
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
16871
|
+
}
|
|
16872
|
+
|
|
16873
|
+
interface TransactionMetadataTrueupSurchargeData {
|
|
16874
|
+
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
16875
|
+
readonly surcharge: io.flow.billing.v0.models.TrueupLabelSurcharge;
|
|
16876
|
+
}
|
|
16877
|
+
|
|
16787
16878
|
interface TransactionReference {
|
|
16788
16879
|
readonly id: string;
|
|
16789
16880
|
}
|
|
@@ -16793,6 +16884,20 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16793
16884
|
readonly weight: number;
|
|
16794
16885
|
}
|
|
16795
16886
|
|
|
16887
|
+
interface TrueupLabelBaseV2 {
|
|
16888
|
+
readonly amount: number;
|
|
16889
|
+
}
|
|
16890
|
+
|
|
16891
|
+
interface TrueupLabelBaseWeight {
|
|
16892
|
+
readonly weight: number;
|
|
16893
|
+
}
|
|
16894
|
+
|
|
16895
|
+
interface TrueupLabelFuel {
|
|
16896
|
+
readonly amount: number;
|
|
16897
|
+
readonly percentage?: number;
|
|
16898
|
+
readonly per_weight_unit?: number;
|
|
16899
|
+
}
|
|
16900
|
+
|
|
16796
16901
|
interface TrueupLabelSurcharge {
|
|
16797
16902
|
readonly amount: number;
|
|
16798
16903
|
readonly type: io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
@@ -16805,6 +16910,12 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16805
16910
|
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
16806
16911
|
}
|
|
16807
16912
|
|
|
16913
|
+
interface TrueupLabelWeights {
|
|
16914
|
+
readonly base: io.flow.billing.v0.models.TrueupLabelBaseWeight;
|
|
16915
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
16916
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
16917
|
+
}
|
|
16918
|
+
|
|
16808
16919
|
interface WithholdingDeduction {
|
|
16809
16920
|
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
16810
16921
|
readonly amount: number;
|
|
@@ -16827,9 +16938,11 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
16827
16938
|
| io.flow.billing.v0.models.TransactionMetadataShippingLabel
|
|
16828
16939
|
| io.flow.billing.v0.models.TransactionMetadataChannel
|
|
16829
16940
|
| io.flow.billing.v0.models.TransactionMetadataTrueup
|
|
16941
|
+
| io.flow.billing.v0.models.TransactionMetadataTrueupBase
|
|
16942
|
+
| io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge
|
|
16830
16943
|
| io.flow.billing.v0.models.TransactionMetadataCarrierCharge
|
|
16831
|
-
| io.flow.billing.v0.models.TransactionMetadataCarrierFee
|
|
16832
16944
|
| io.flow.billing.v0.models.TransactionMetadataManual
|
|
16945
|
+
| io.flow.billing.v0.models.TransactionMetadataFailedPayout
|
|
16833
16946
|
| io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
|
|
16834
16947
|
}
|
|
16835
16948
|
|
|
@@ -18653,16 +18766,19 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18653
18766
|
| 'adjustment_transactions_count'
|
|
18654
18767
|
| 'adjustment_transactions_total'
|
|
18655
18768
|
| 'capture_transactions_count'
|
|
18769
|
+
| 'capture_transactions_reconcile_payments_count'
|
|
18656
18770
|
| 'capture_transactions_ignored_fraud_count'
|
|
18657
18771
|
| 'capture_transactions_ignored_fully_refunded_count'
|
|
18658
18772
|
| 'capture_transactions_ignored_other_count'
|
|
18659
18773
|
| 'capture_transactions_ignored_previously_processed_count'
|
|
18774
|
+
| 'capture_transactions_succeeded_then_failed_count'
|
|
18775
|
+
| 'capture_transactions_succeeded_then_failed_total'
|
|
18776
|
+
| 'capture_transactions_succeeded_then_failed_same_day_count'
|
|
18777
|
+
| 'capture_transactions_succeeded_then_failed_same_day_total'
|
|
18660
18778
|
| 'capture_queued_count'
|
|
18661
18779
|
| 'capture_transactions_total'
|
|
18662
18780
|
| 'carrier_charge_transactions_count'
|
|
18663
18781
|
| 'carrier_charge_transactions_total'
|
|
18664
|
-
| 'carrier_fee_transactions_count'
|
|
18665
|
-
| 'carrier_fee_transactions_total'
|
|
18666
18782
|
| 'channel_transactions_processing_count'
|
|
18667
18783
|
| 'channel_transactions_processing_total'
|
|
18668
18784
|
| 'channel_transactions_adjustment_count'
|
|
@@ -18673,6 +18789,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18673
18789
|
| 'channel_billed_transactions_total'
|
|
18674
18790
|
| 'credit_payment_transactions_count'
|
|
18675
18791
|
| 'credit_payment_transactions_total'
|
|
18792
|
+
| 'duty_to_labels_ratio'
|
|
18676
18793
|
| 'duty_transactions_count'
|
|
18677
18794
|
| 'duty_transactions_total'
|
|
18678
18795
|
| 'fully_subsidized_order_transactions_count'
|
|
@@ -18690,6 +18807,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18690
18807
|
| 'order_transactions_count'
|
|
18691
18808
|
| 'order_transactions_total'
|
|
18692
18809
|
| 'refund_transactions_count'
|
|
18810
|
+
| 'refund_transactions_reconcile_payments_count'
|
|
18693
18811
|
| 'refund_transactions_ignored_fraud_count'
|
|
18694
18812
|
| 'refund_transactions_ignored_fully_refunded_count'
|
|
18695
18813
|
| 'refund_transactions_ignored_other_count'
|
|
@@ -18698,6 +18816,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18698
18816
|
| 'refund_transactions_total'
|
|
18699
18817
|
| 'refund_transactions_succeeded_then_failed_count'
|
|
18700
18818
|
| 'refund_transactions_succeeded_then_failed_total'
|
|
18819
|
+
| 'refund_transactions_succeeded_then_failed_same_day_count'
|
|
18820
|
+
| 'refund_transactions_succeeded_then_failed_same_day_total'
|
|
18701
18821
|
| 'reversal_order_cancellations_transactions_count'
|
|
18702
18822
|
| 'reversal_order_cancellations_transactions_total'
|
|
18703
18823
|
| 'reversal_external_fulfillment_transactions_count'
|
|
@@ -18706,6 +18826,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18706
18826
|
| 'reversal_other_transactions_total'
|
|
18707
18827
|
| 'reversal_all_transactions_count'
|
|
18708
18828
|
| 'reversal_all_transactions_total'
|
|
18829
|
+
| 'tax_to_labels_ratio'
|
|
18709
18830
|
| 'tax_transactions_count'
|
|
18710
18831
|
| 'tax_transactions_total'
|
|
18711
18832
|
| 'transfer_transactions_count'
|
|
@@ -18757,9 +18878,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18757
18878
|
| 'accounts_with_final_statements_count'
|
|
18758
18879
|
| 'accounts_with_final_statements_pending_transaction_count'
|
|
18759
18880
|
| 'accounts_with_final_statements_pending_transaction_total'
|
|
18760
|
-
| '
|
|
18761
|
-
| '
|
|
18762
|
-
| 'orders_wyol_then_label_duty_subsidized_total';
|
|
18881
|
+
| 'edited_order_tax_amount_exceeding_transaction'
|
|
18882
|
+
| 'edited_order_duty_amount_exceeding_transaction';
|
|
18763
18883
|
type BillingStatementAttachmentKey =
|
|
18764
18884
|
| 'invoice'
|
|
18765
18885
|
| 'statement'
|
|
@@ -18777,7 +18897,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18777
18897
|
| 'duty'
|
|
18778
18898
|
| 'trueup'
|
|
18779
18899
|
| 'carrier_charge'
|
|
18780
|
-
| 'carrier_fee'
|
|
18781
18900
|
| 'all';
|
|
18782
18901
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
18783
18902
|
type BillingTransactionType =
|
|
@@ -18802,8 +18921,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18802
18921
|
| 'tax'
|
|
18803
18922
|
| 'duty'
|
|
18804
18923
|
| 'trueup'
|
|
18805
|
-
| 'carrier_charge'
|
|
18806
|
-
| 'carrier_fee';
|
|
18924
|
+
| 'carrier_charge';
|
|
18807
18925
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
18808
18926
|
type CalculatorEngine =
|
|
18809
18927
|
| 'flow_rate_and_rule'
|
|
@@ -18817,9 +18935,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18817
18935
|
| 'reversal'
|
|
18818
18936
|
| 'charge'
|
|
18819
18937
|
| 'revenue_share';
|
|
18820
|
-
type CarrierChargeType = 'label' | 'other';
|
|
18821
|
-
type
|
|
18822
|
-
type CarrierFileType = 'charge' | 'fee';
|
|
18938
|
+
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
18939
|
+
type CarrierFileType = 'freight' | 'tax';
|
|
18823
18940
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
18824
18941
|
type CarrierValidationStatus = 'success' | 'error';
|
|
18825
18942
|
type CatalogImportType =
|
|
@@ -18886,7 +19003,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18886
19003
|
| 'customs_clearance_surcharge'
|
|
18887
19004
|
| 'security_surcharge'
|
|
18888
19005
|
| 'duties_fx_surcharge'
|
|
18889
|
-
| 'electronic_export_information_surcharge'
|
|
19006
|
+
| 'electronic_export_information_surcharge'
|
|
19007
|
+
| 'additional_handling'
|
|
19008
|
+
| 'large_package_surcharge';
|
|
18890
19009
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
18891
19010
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
18892
19011
|
type CheckoutAssetType = 'stylesheet' | 'javascript';
|
|
@@ -18909,7 +19028,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18909
19028
|
| 'continue_shopping'
|
|
18910
19029
|
| 'confirmation'
|
|
18911
19030
|
| 'invalid_checkout';
|
|
19031
|
+
type ClassificationDecision = 'Accept' | 'Reject';
|
|
18912
19032
|
type ClassificationErrorCode = 'generic_error';
|
|
19033
|
+
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
19034
|
+
type ClassificationType = 'None' | 'Manual' | 'ML';
|
|
19035
|
+
type ClothingAgeClassification =
|
|
19036
|
+
| 'None'
|
|
19037
|
+
| 'AgeKidsGeneral'
|
|
19038
|
+
| 'Age0_10'
|
|
19039
|
+
| 'Age10_13'
|
|
19040
|
+
| 'Age13_14';
|
|
18913
19041
|
type ColmItemType = 'physical' | 'digital';
|
|
18914
19042
|
type ComplianceType = 'weee';
|
|
18915
19043
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
@@ -19115,8 +19243,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19115
19243
|
| 'label_invoice_request_deleted'
|
|
19116
19244
|
| 'carrier_charge_upserted'
|
|
19117
19245
|
| 'carrier_charge_deleted'
|
|
19118
|
-
| '
|
|
19119
|
-
| '
|
|
19246
|
+
| 'bank_payment_order_upserted'
|
|
19247
|
+
| 'bank_payment_order_deleted'
|
|
19120
19248
|
| 'fraud_review_upserted'
|
|
19121
19249
|
| 'fraud_review_deleted'
|
|
19122
19250
|
| 'fraud_pending_review_upserted'
|
|
@@ -19273,6 +19401,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19273
19401
|
| 'shopify_markets_metrics_deleted'
|
|
19274
19402
|
| 'channel_order_summary_upserted'
|
|
19275
19403
|
| 'channel_order_summary_deleted'
|
|
19404
|
+
| 'channel_organization_identifier_upserted'
|
|
19405
|
+
| 'channel_organization_identifier_deleted'
|
|
19276
19406
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
19277
19407
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
19278
19408
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
@@ -19369,6 +19499,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19369
19499
|
| 'merchant_integration'
|
|
19370
19500
|
| 'shopify_integration'
|
|
19371
19501
|
| 'globale_cx'
|
|
19502
|
+
| 'merchant_operations'
|
|
19372
19503
|
| 'globale_system';
|
|
19373
19504
|
type LabelTransactionType =
|
|
19374
19505
|
| 'adjustment'
|
|
@@ -19385,10 +19516,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19385
19516
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
19386
19517
|
type ManualTransactionCategory =
|
|
19387
19518
|
| 'cancelled_order_refund'
|
|
19388
|
-
| 'channel_partner_initiated'
|
|
19389
19519
|
| 'client_accepted_chargeback'
|
|
19390
19520
|
| 'fee_reimbursement'
|
|
19391
|
-
| 'partial_refund'
|
|
19392
19521
|
| 'platform_fee'
|
|
19393
19522
|
| 'shipping_true_up'
|
|
19394
19523
|
| 'tax_credit'
|
|
@@ -19614,6 +19743,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19614
19743
|
| 'suspicious_behavior'
|
|
19615
19744
|
| 'suspicious_past_activity';
|
|
19616
19745
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
19746
|
+
type ReportPaymentType = 'credit' | 'debit';
|
|
19617
19747
|
type ReportStatus =
|
|
19618
19748
|
| 'created'
|
|
19619
19749
|
| 'completed'
|
|
@@ -19624,7 +19754,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19624
19754
|
| 'trueup_overview'
|
|
19625
19755
|
| 'non_channel_payment_bank_account'
|
|
19626
19756
|
| 'scheduled_payment'
|
|
19627
|
-
| 'account_quarterly_balances'
|
|
19757
|
+
| 'account_quarterly_balances'
|
|
19758
|
+
| 'invariants';
|
|
19628
19759
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
19629
19760
|
type ReportingScheme =
|
|
19630
19761
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -19691,7 +19822,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19691
19822
|
| 'order_edit'
|
|
19692
19823
|
| 'product_restriction_result'
|
|
19693
19824
|
| 'product_sync'
|
|
19694
|
-
| 'webhook_registrations'
|
|
19825
|
+
| 'webhook_registrations'
|
|
19826
|
+
| 'channel_organization_identifier';
|
|
19695
19827
|
type ShopifyMarketsTradeSector =
|
|
19696
19828
|
| 'apparel_and_accessories'
|
|
19697
19829
|
| 'beauty_and_cosmetics'
|
|
@@ -19935,6 +20067,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19935
20067
|
readonly liabilities_method: io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
19936
20068
|
readonly enable_fee_reversals: boolean;
|
|
19937
20069
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
20070
|
+
readonly enable_negative_debits: boolean;
|
|
19938
20071
|
}
|
|
19939
20072
|
|
|
19940
20073
|
interface AccountSettingsDeleted {
|
|
@@ -20006,13 +20139,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20006
20139
|
readonly account: io.flow.internal.v0.models.FlowAccount;
|
|
20007
20140
|
}
|
|
20008
20141
|
|
|
20009
|
-
interface AccountingFulfillmentMetadata {
|
|
20010
|
-
readonly discriminator: 'accounting_fulfillment_metadata';
|
|
20011
|
-
readonly order: io.flow.internal.v0.models.OrderReference;
|
|
20012
|
-
readonly proof?: io.flow.internal.v0.unions.FulfillmentProof;
|
|
20013
|
-
readonly posting_cutoff: string;
|
|
20014
|
-
}
|
|
20015
|
-
|
|
20016
20142
|
interface AccountingPendingOrderMetadata {
|
|
20017
20143
|
readonly discriminator: 'accounting_pending_order_metadata';
|
|
20018
20144
|
readonly order: io.flow.internal.v0.models.OrderReference;
|
|
@@ -20627,6 +20753,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20627
20753
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
20628
20754
|
}
|
|
20629
20755
|
|
|
20756
|
+
interface BankPaymentOrderDeleted {
|
|
20757
|
+
readonly discriminator: 'bank_payment_order_deleted';
|
|
20758
|
+
readonly event_id: string;
|
|
20759
|
+
readonly timestamp: string;
|
|
20760
|
+
readonly id: string;
|
|
20761
|
+
}
|
|
20762
|
+
|
|
20763
|
+
interface BankPaymentOrderUpserted {
|
|
20764
|
+
readonly discriminator: 'bank_payment_order_upserted';
|
|
20765
|
+
readonly event_id: string;
|
|
20766
|
+
readonly timestamp: string;
|
|
20767
|
+
readonly bank_payment_order: io.flow.internal.v0.models.BankPaymentOrder;
|
|
20768
|
+
}
|
|
20769
|
+
|
|
20630
20770
|
interface BankPaymentReference {
|
|
20631
20771
|
readonly id: string;
|
|
20632
20772
|
}
|
|
@@ -20843,7 +20983,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20843
20983
|
readonly duty: io.flow.common.v0.models.Price;
|
|
20844
20984
|
readonly trueup: io.flow.common.v0.models.Price;
|
|
20845
20985
|
readonly carrier_charge: io.flow.common.v0.models.Price;
|
|
20846
|
-
readonly carrier_fee: io.flow.common.v0.models.Price;
|
|
20847
20986
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
20848
20987
|
}
|
|
20849
20988
|
|
|
@@ -21161,7 +21300,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21161
21300
|
readonly carrier_tracking_number: string;
|
|
21162
21301
|
readonly label_created_at: string;
|
|
21163
21302
|
readonly units: io.flow.internal.v0.models.CarrierChargeUnits;
|
|
21164
|
-
readonly base
|
|
21303
|
+
readonly base?: io.flow.trueup.v0.models.LabelBase;
|
|
21165
21304
|
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
21166
21305
|
readonly total: number;
|
|
21167
21306
|
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
@@ -21233,7 +21372,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21233
21372
|
|
|
21234
21373
|
interface CarrierChargeUnits {
|
|
21235
21374
|
readonly currency: string;
|
|
21236
|
-
readonly weight
|
|
21375
|
+
readonly weight?: io.flow.units.v0.enums.UnitOfWeight;
|
|
21237
21376
|
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
21238
21377
|
}
|
|
21239
21378
|
|
|
@@ -21245,61 +21384,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21245
21384
|
readonly carrier_charge: io.flow.internal.v0.models.CarrierCharge;
|
|
21246
21385
|
}
|
|
21247
21386
|
|
|
21248
|
-
interface CarrierFee {
|
|
21249
|
-
readonly id: string;
|
|
21250
|
-
readonly label_invoice_request_id: string;
|
|
21251
|
-
readonly units: io.flow.internal.v0.models.CarrierFeeUnits;
|
|
21252
|
-
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
21253
|
-
readonly total: number;
|
|
21254
|
-
readonly attributes?: Record<string, string>;
|
|
21255
|
-
}
|
|
21256
|
-
|
|
21257
|
-
interface CarrierFeeDeleted {
|
|
21258
|
-
readonly discriminator: 'carrier_fee_deleted';
|
|
21259
|
-
readonly event_id: string;
|
|
21260
|
-
readonly timestamp: string;
|
|
21261
|
-
readonly organization: string;
|
|
21262
|
-
readonly id: string;
|
|
21263
|
-
}
|
|
21264
|
-
|
|
21265
|
-
interface CarrierFeeForm {
|
|
21266
|
-
readonly id: string;
|
|
21267
|
-
readonly label_invoice_request_id: string;
|
|
21268
|
-
readonly units: io.flow.internal.v0.models.CarrierFeeUnits;
|
|
21269
|
-
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
21270
|
-
readonly total: number;
|
|
21271
|
-
readonly attributes?: Record<string, string>;
|
|
21272
|
-
}
|
|
21273
|
-
|
|
21274
|
-
interface CarrierFeeTransaction {
|
|
21275
|
-
readonly discriminator: 'carrier_fee_transaction';
|
|
21276
|
-
readonly label_reference: io.flow.internal.v0.models.CarrierFeeTransactionLabelReference;
|
|
21277
|
-
readonly id: string;
|
|
21278
|
-
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
21279
|
-
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
21280
|
-
readonly posted_at?: string;
|
|
21281
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
21282
|
-
readonly description: string;
|
|
21283
|
-
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
21284
|
-
readonly created_at: string;
|
|
21285
|
-
}
|
|
21286
|
-
|
|
21287
|
-
interface CarrierFeeTransactionLabelReference {
|
|
21288
|
-
readonly id: string;
|
|
21289
|
-
}
|
|
21290
|
-
|
|
21291
|
-
interface CarrierFeeUnits {
|
|
21292
|
-
readonly currency: string;
|
|
21293
|
-
}
|
|
21294
|
-
|
|
21295
|
-
interface CarrierFeeUpserted {
|
|
21296
|
-
readonly discriminator: 'carrier_fee_upserted';
|
|
21297
|
-
readonly event_id: string;
|
|
21298
|
-
readonly timestamp: string;
|
|
21299
|
-
readonly organization: string;
|
|
21300
|
-
readonly carrier_fee: io.flow.internal.v0.models.CarrierFee;
|
|
21301
|
-
}
|
|
21302
|
-
|
|
21303
21387
|
interface CarrierFile {
|
|
21304
21388
|
readonly id: string;
|
|
21305
21389
|
readonly type: io.flow.internal.v0.enums.CarrierFileType;
|
|
@@ -21327,6 +21411,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21327
21411
|
readonly timestamp: string;
|
|
21328
21412
|
}
|
|
21329
21413
|
|
|
21414
|
+
interface CarrierTaxForm {
|
|
21415
|
+
readonly id: string;
|
|
21416
|
+
readonly label_invoice_request_id: string;
|
|
21417
|
+
readonly units: io.flow.internal.v0.models.CarrierTaxUnits;
|
|
21418
|
+
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
21419
|
+
readonly total: number;
|
|
21420
|
+
readonly attributes?: Record<string, string>;
|
|
21421
|
+
}
|
|
21422
|
+
|
|
21423
|
+
interface CarrierTaxUnits {
|
|
21424
|
+
readonly currency: string;
|
|
21425
|
+
}
|
|
21426
|
+
|
|
21330
21427
|
interface CatalogImportRequest {
|
|
21331
21428
|
readonly discriminator: 'catalog_import_request';
|
|
21332
21429
|
readonly event_id: string;
|
|
@@ -21695,6 +21792,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21695
21792
|
readonly channel_order_summary: io.flow.internal.v0.models.ChannelOrderSummary;
|
|
21696
21793
|
}
|
|
21697
21794
|
|
|
21795
|
+
interface ChannelOrganizationIdentifier {
|
|
21796
|
+
readonly id: string;
|
|
21797
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
21798
|
+
readonly identifier: string;
|
|
21799
|
+
}
|
|
21800
|
+
|
|
21801
|
+
interface ChannelOrganizationIdentifierDeleted {
|
|
21802
|
+
readonly discriminator: 'channel_organization_identifier_deleted';
|
|
21803
|
+
readonly event_id: string;
|
|
21804
|
+
readonly timestamp: string;
|
|
21805
|
+
readonly channel_id: string;
|
|
21806
|
+
readonly id: string;
|
|
21807
|
+
}
|
|
21808
|
+
|
|
21809
|
+
interface ChannelOrganizationIdentifierUpserted {
|
|
21810
|
+
readonly discriminator: 'channel_organization_identifier_upserted';
|
|
21811
|
+
readonly event_id: string;
|
|
21812
|
+
readonly timestamp: string;
|
|
21813
|
+
readonly channel_id: string;
|
|
21814
|
+
readonly channel_organization_identifier: io.flow.internal.v0.models.ChannelOrganizationIdentifier;
|
|
21815
|
+
}
|
|
21816
|
+
|
|
21698
21817
|
interface ChannelOrganizationShopify {
|
|
21699
21818
|
readonly organization: io.flow.channel.v0.models.ChannelOrganization;
|
|
21700
21819
|
readonly tokens: io.flow.internal.v0.models.ShopifyChannelOrganizationTokens[];
|
|
@@ -22150,6 +22269,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22150
22269
|
readonly product_id: string;
|
|
22151
22270
|
}
|
|
22152
22271
|
|
|
22272
|
+
interface ClassificationProductRequest {
|
|
22273
|
+
readonly merchant_id: string;
|
|
22274
|
+
readonly product_name: string;
|
|
22275
|
+
readonly product_description: string;
|
|
22276
|
+
readonly product_id_internal: string;
|
|
22277
|
+
readonly product_id_external: string;
|
|
22278
|
+
readonly product_group_code?: string;
|
|
22279
|
+
readonly product_url?: string;
|
|
22280
|
+
readonly product_image?: string;
|
|
22281
|
+
readonly product_attributes: Record<string, string>;
|
|
22282
|
+
readonly categories?: string[];
|
|
22283
|
+
readonly platform_id: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
22284
|
+
}
|
|
22285
|
+
|
|
22286
|
+
interface ClassificationProductResult {
|
|
22287
|
+
readonly product_id: string;
|
|
22288
|
+
readonly merchant_id: string;
|
|
22289
|
+
readonly platform_id: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
22290
|
+
readonly hs_code?: string;
|
|
22291
|
+
readonly probability?: number;
|
|
22292
|
+
readonly classification_decision: io.flow.internal.v0.enums.ClassificationDecision;
|
|
22293
|
+
readonly classification_type: io.flow.internal.v0.enums.ClassificationType;
|
|
22294
|
+
readonly clothing_age_classification: io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
22295
|
+
}
|
|
22296
|
+
|
|
22153
22297
|
interface ClassificationProductSummary {
|
|
22154
22298
|
readonly product_id: string;
|
|
22155
22299
|
readonly organization_id: string;
|
|
@@ -22203,6 +22347,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22203
22347
|
readonly classified_by: string;
|
|
22204
22348
|
}
|
|
22205
22349
|
|
|
22350
|
+
interface CliLogEntry {
|
|
22351
|
+
readonly id: string;
|
|
22352
|
+
readonly user: io.flow.common.v0.models.UserReference;
|
|
22353
|
+
readonly task: string;
|
|
22354
|
+
}
|
|
22355
|
+
|
|
22356
|
+
interface CliLogEntryForm {
|
|
22357
|
+
readonly user_id: string;
|
|
22358
|
+
readonly task: string;
|
|
22359
|
+
}
|
|
22360
|
+
|
|
22206
22361
|
interface ColmItem {
|
|
22207
22362
|
readonly id: string;
|
|
22208
22363
|
readonly number: string;
|
|
@@ -22659,6 +22814,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22659
22814
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
22660
22815
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
22661
22816
|
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
22817
|
+
readonly allocation: io.flow.experience.v0.models.AllocationV2;
|
|
22662
22818
|
}
|
|
22663
22819
|
|
|
22664
22820
|
interface DebugFulfillmentDelta {
|
|
@@ -22684,6 +22840,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22684
22840
|
interface DebugOrder {
|
|
22685
22841
|
readonly organization_id: string;
|
|
22686
22842
|
readonly number: string;
|
|
22843
|
+
readonly prices: io.flow.order.price.v0.models.OrderPriceDetail[];
|
|
22844
|
+
readonly total: io.flow.common.v0.models.MoneyWithBase;
|
|
22687
22845
|
readonly identifiers?: Record<string, string>;
|
|
22688
22846
|
readonly submitted_at?: string;
|
|
22689
22847
|
}
|
|
@@ -22866,14 +23024,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22866
23024
|
|
|
22867
23025
|
interface DimensionEstimateOpsInput {
|
|
22868
23026
|
readonly organization_id: string;
|
|
22869
|
-
readonly
|
|
22870
|
-
readonly
|
|
22871
|
-
readonly
|
|
22872
|
-
readonly
|
|
22873
|
-
readonly
|
|
22874
|
-
readonly
|
|
22875
|
-
readonly
|
|
22876
|
-
readonly
|
|
23027
|
+
readonly length_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
23028
|
+
readonly length_value?: string;
|
|
23029
|
+
readonly width_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
23030
|
+
readonly width_value?: string;
|
|
23031
|
+
readonly depth_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
23032
|
+
readonly depth_value?: string;
|
|
23033
|
+
readonly weight_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
23034
|
+
readonly weight_value?: string;
|
|
22877
23035
|
}
|
|
22878
23036
|
|
|
22879
23037
|
interface Discount {
|
|
@@ -23739,6 +23897,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23739
23897
|
readonly tracker_id: string;
|
|
23740
23898
|
}
|
|
23741
23899
|
|
|
23900
|
+
interface FailedDimensionEstimateOpsInputWithReason {
|
|
23901
|
+
readonly organization_id: string;
|
|
23902
|
+
readonly length_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
23903
|
+
readonly length_value?: string;
|
|
23904
|
+
readonly width_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
23905
|
+
readonly width_value?: string;
|
|
23906
|
+
readonly depth_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
23907
|
+
readonly depth_value?: string;
|
|
23908
|
+
readonly weight_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
23909
|
+
readonly weight_value?: string;
|
|
23910
|
+
readonly reason?: string;
|
|
23911
|
+
}
|
|
23912
|
+
|
|
23742
23913
|
interface Feature {
|
|
23743
23914
|
readonly id: string;
|
|
23744
23915
|
readonly key: string;
|
|
@@ -24119,6 +24290,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24119
24290
|
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
24120
24291
|
}
|
|
24121
24292
|
|
|
24293
|
+
interface ForceTransitForm {
|
|
24294
|
+
readonly description: string;
|
|
24295
|
+
}
|
|
24296
|
+
|
|
24122
24297
|
interface FraudPendingReview {
|
|
24123
24298
|
readonly id: string;
|
|
24124
24299
|
readonly fraud_review_id: string;
|
|
@@ -24344,8 +24519,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24344
24519
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
24345
24520
|
readonly sequence_number: number;
|
|
24346
24521
|
readonly posting_cutoff: string;
|
|
24347
|
-
readonly trigger
|
|
24522
|
+
readonly trigger?: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
24348
24523
|
readonly fulfilled_at: string;
|
|
24524
|
+
readonly carrier?: io.flow.internal.v0.models.FulfillmentCarrier;
|
|
24349
24525
|
readonly owner: io.flow.internal.v0.enums.ResponsibleParty;
|
|
24350
24526
|
readonly origin?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
24351
24527
|
readonly business?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
@@ -24375,6 +24551,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24375
24551
|
readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
24376
24552
|
}
|
|
24377
24553
|
|
|
24554
|
+
interface FulfillmentCarrier {
|
|
24555
|
+
readonly id: string;
|
|
24556
|
+
readonly service_id?: string;
|
|
24557
|
+
readonly tracking_number?: string;
|
|
24558
|
+
}
|
|
24559
|
+
|
|
24378
24560
|
interface FulfillmentDeleted {
|
|
24379
24561
|
readonly discriminator: 'fulfillment_deleted';
|
|
24380
24562
|
readonly event_id: string;
|
|
@@ -24916,6 +25098,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24916
25098
|
readonly order: io.flow.experience.v0.models.OrderPutForm;
|
|
24917
25099
|
}
|
|
24918
25100
|
|
|
25101
|
+
interface Invariant {
|
|
25102
|
+
readonly name: string;
|
|
25103
|
+
readonly count: number;
|
|
25104
|
+
readonly fired_at: string;
|
|
25105
|
+
readonly sql: string;
|
|
25106
|
+
}
|
|
25107
|
+
|
|
24919
25108
|
interface InventoryOrganizationSettings {
|
|
24920
25109
|
readonly id: string;
|
|
24921
25110
|
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
@@ -25056,6 +25245,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25056
25245
|
|
|
25057
25246
|
interface ItemCustomsDetails {
|
|
25058
25247
|
readonly item_number: string;
|
|
25248
|
+
readonly product_title?: string;
|
|
25249
|
+
readonly sanitized_product_title?: string;
|
|
25250
|
+
readonly sanitized_rule_ids?: string[];
|
|
25059
25251
|
readonly sub_item_number?: string;
|
|
25060
25252
|
readonly customs_description?: string;
|
|
25061
25253
|
readonly origin: string;
|
|
@@ -25463,6 +25655,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25463
25655
|
}
|
|
25464
25656
|
|
|
25465
25657
|
interface LabelSurchargeForm {
|
|
25658
|
+
readonly all?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25659
|
+
readonly base_and_fuel?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25466
25660
|
readonly fuel?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25467
25661
|
readonly remote_area?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25468
25662
|
readonly oversize?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
@@ -25474,6 +25668,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25474
25668
|
readonly eei_filing?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25475
25669
|
readonly fixed_ddp?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25476
25670
|
readonly fixed_currency_conversion?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25671
|
+
readonly prohibited_item?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25672
|
+
readonly undeliverable_shipment?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25673
|
+
readonly signature_required?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25674
|
+
readonly direct_delivery?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25675
|
+
readonly saturday_stop?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25676
|
+
readonly residential_extended_area_pickup?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25477
25677
|
}
|
|
25478
25678
|
|
|
25479
25679
|
interface LabelSurchargeSingleForm {
|
|
@@ -27972,6 +28172,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27972
28172
|
readonly auto_review_status?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
27973
28173
|
readonly manually_reviewed_at?: string;
|
|
27974
28174
|
readonly manually_reviewed_by?: string;
|
|
28175
|
+
readonly cause_rule_id?: string;
|
|
27975
28176
|
}
|
|
27976
28177
|
|
|
27977
28178
|
interface ProductRestrictionRuleDecisionDeleted {
|
|
@@ -28509,8 +28710,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28509
28710
|
readonly id: string;
|
|
28510
28711
|
readonly status: io.flow.internal.v0.enums.ReportStatus;
|
|
28511
28712
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
28512
|
-
readonly from
|
|
28513
|
-
readonly to
|
|
28713
|
+
readonly from?: string;
|
|
28714
|
+
readonly to?: string;
|
|
28715
|
+
readonly payment_type?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
28514
28716
|
readonly url?: string;
|
|
28515
28717
|
readonly processed_at?: string;
|
|
28516
28718
|
}
|
|
@@ -28533,9 +28735,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28533
28735
|
}
|
|
28534
28736
|
|
|
28535
28737
|
interface ReportForm {
|
|
28536
|
-
readonly from: string;
|
|
28537
|
-
readonly to: string;
|
|
28538
28738
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
28739
|
+
readonly from?: string;
|
|
28740
|
+
readonly to?: string;
|
|
28741
|
+
readonly payment_type?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
28742
|
+
readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
28743
|
+
}
|
|
28744
|
+
|
|
28745
|
+
interface ReportMerchant {
|
|
28746
|
+
readonly id: string;
|
|
28747
|
+
}
|
|
28748
|
+
|
|
28749
|
+
interface ReportOrderReference {
|
|
28750
|
+
readonly organization_id: string;
|
|
28751
|
+
readonly order_number: string;
|
|
28539
28752
|
}
|
|
28540
28753
|
|
|
28541
28754
|
interface ReportOwner {
|
|
@@ -28685,7 +28898,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28685
28898
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28686
28899
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28687
28900
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28688
|
-
readonly refund: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28689
28901
|
}
|
|
28690
28902
|
|
|
28691
28903
|
interface ReportingMonetaryValue {
|
|
@@ -29186,6 +29398,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29186
29398
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
29187
29399
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
29188
29400
|
readonly account: io.flow.internal.v0.models.ReportAccount;
|
|
29401
|
+
readonly merchant: io.flow.internal.v0.models.ReportMerchant;
|
|
29189
29402
|
readonly owner: io.flow.internal.v0.models.ReportOwner;
|
|
29190
29403
|
readonly description: string;
|
|
29191
29404
|
}
|
|
@@ -29900,6 +30113,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29900
30113
|
readonly initial_catalog_synced_at?: string;
|
|
29901
30114
|
readonly catalog_sync_duration?: number;
|
|
29902
30115
|
readonly catalog_products_count?: number;
|
|
30116
|
+
readonly initial_product_restrictions_synced_at?: string;
|
|
29903
30117
|
}
|
|
29904
30118
|
|
|
29905
30119
|
interface ShopifyShopUpserted {
|
|
@@ -29909,9 +30123,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29909
30123
|
readonly shop: io.flow.internal.v0.models.Shop;
|
|
29910
30124
|
}
|
|
29911
30125
|
|
|
29912
|
-
interface
|
|
29913
|
-
readonly
|
|
29914
|
-
readonly
|
|
30126
|
+
interface ShopifyStoreDetail {
|
|
30127
|
+
readonly shopify_domain: string;
|
|
30128
|
+
readonly shop_id: string;
|
|
29915
30129
|
}
|
|
29916
30130
|
|
|
29917
30131
|
interface ShopifyWebhook {
|
|
@@ -30514,7 +30728,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30514
30728
|
readonly type_id: string;
|
|
30515
30729
|
readonly source_type?: string;
|
|
30516
30730
|
readonly source_id?: string;
|
|
30517
|
-
readonly environment
|
|
30731
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
30518
30732
|
readonly created_at: string;
|
|
30519
30733
|
readonly num_attempts: number;
|
|
30520
30734
|
readonly next_attempt_at: string;
|
|
@@ -31431,8 +31645,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31431
31645
|
| io.flow.internal.v0.models.LabelInvoiceRequestDeleted
|
|
31432
31646
|
| io.flow.internal.v0.models.CarrierChargeUpserted
|
|
31433
31647
|
| io.flow.internal.v0.models.CarrierChargeDeleted
|
|
31434
|
-
| io.flow.internal.v0.models.
|
|
31435
|
-
| io.flow.internal.v0.models.
|
|
31648
|
+
| io.flow.internal.v0.models.BankPaymentOrderUpserted
|
|
31649
|
+
| io.flow.internal.v0.models.BankPaymentOrderDeleted
|
|
31436
31650
|
| io.flow.internal.v0.models.FraudReviewUpserted
|
|
31437
31651
|
| io.flow.internal.v0.models.FraudReviewDeleted
|
|
31438
31652
|
| io.flow.internal.v0.models.FraudPendingReviewUpserted
|
|
@@ -31589,6 +31803,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31589
31803
|
| io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted
|
|
31590
31804
|
| io.flow.internal.v0.models.ChannelOrderSummaryUpserted
|
|
31591
31805
|
| io.flow.internal.v0.models.ChannelOrderSummaryDeleted
|
|
31806
|
+
| io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted
|
|
31807
|
+
| io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted
|
|
31592
31808
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
31593
31809
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
31594
31810
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
@@ -31817,7 +32033,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31817
32033
|
| io.flow.internal.v0.models.TaskImport;
|
|
31818
32034
|
type TaskMetadata =
|
|
31819
32035
|
| io.flow.internal.v0.models.StatementCreationMetadata
|
|
31820
|
-
| io.flow.internal.v0.models.AccountingFulfillmentMetadata
|
|
31821
32036
|
| io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
31822
32037
|
type TaxAmount =
|
|
31823
32038
|
| io.flow.internal.v0.models.CalculatedTaxAmount
|
|
@@ -31844,8 +32059,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31844
32059
|
| io.flow.internal.v0.models.TaxTransaction
|
|
31845
32060
|
| io.flow.internal.v0.models.DutyTransaction
|
|
31846
32061
|
| io.flow.internal.v0.models.TrueupTransaction
|
|
31847
|
-
| io.flow.internal.v0.models.CarrierChargeTransaction
|
|
31848
|
-
| io.flow.internal.v0.models.CarrierFeeTransaction;
|
|
32062
|
+
| io.flow.internal.v0.models.CarrierChargeTransaction;
|
|
31849
32063
|
type TransactionSummary =
|
|
31850
32064
|
| io.flow.internal.v0.models.PaymentSummaryV2
|
|
31851
32065
|
| io.flow.internal.v0.models.FraudSummary;
|
|
@@ -31905,8 +32119,6 @@ export type AccountTransactionsExportRequest =
|
|
|
31905
32119
|
export type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
31906
32120
|
export type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
|
|
31907
32121
|
export type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
|
|
31908
|
-
export type AccountingFulfillmentMetadata =
|
|
31909
|
-
io.flow.internal.v0.models.AccountingFulfillmentMetadata;
|
|
31910
32122
|
export type AccountingPendingOrderMetadata =
|
|
31911
32123
|
io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
31912
32124
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
@@ -32071,6 +32283,10 @@ export type BankPaymentDeletedV2 =
|
|
|
32071
32283
|
io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
32072
32284
|
export type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
32073
32285
|
export type BankPaymentOrder = io.flow.internal.v0.models.BankPaymentOrder;
|
|
32286
|
+
export type BankPaymentOrderDeleted =
|
|
32287
|
+
io.flow.internal.v0.models.BankPaymentOrderDeleted;
|
|
32288
|
+
export type BankPaymentOrderUpserted =
|
|
32289
|
+
io.flow.internal.v0.models.BankPaymentOrderUpserted;
|
|
32074
32290
|
export type BankPaymentPromiseCompletedMethod =
|
|
32075
32291
|
io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod;
|
|
32076
32292
|
export type BankPaymentReference =
|
|
@@ -32237,17 +32453,6 @@ export type CarrierChargeUnits = io.flow.internal.v0.models.CarrierChargeUnits;
|
|
|
32237
32453
|
export type CarrierChargeUpserted =
|
|
32238
32454
|
io.flow.internal.v0.models.CarrierChargeUpserted;
|
|
32239
32455
|
export type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
|
|
32240
|
-
export type CarrierFee = io.flow.internal.v0.models.CarrierFee;
|
|
32241
|
-
export type CarrierFeeDeleted = io.flow.internal.v0.models.CarrierFeeDeleted;
|
|
32242
|
-
export type CarrierFeeForm = io.flow.internal.v0.models.CarrierFeeForm;
|
|
32243
|
-
export type CarrierFeeTransaction =
|
|
32244
|
-
io.flow.internal.v0.models.CarrierFeeTransaction;
|
|
32245
|
-
export type CarrierFeeTransactionLabelReference =
|
|
32246
|
-
io.flow.internal.v0.models.CarrierFeeTransactionLabelReference;
|
|
32247
|
-
export type CarrierFeeTransactionType =
|
|
32248
|
-
io.flow.internal.v0.enums.CarrierFeeTransactionType;
|
|
32249
|
-
export type CarrierFeeUnits = io.flow.internal.v0.models.CarrierFeeUnits;
|
|
32250
|
-
export type CarrierFeeUpserted = io.flow.internal.v0.models.CarrierFeeUpserted;
|
|
32251
32456
|
export type CarrierFile = io.flow.internal.v0.models.CarrierFile;
|
|
32252
32457
|
export type CarrierFileForm = io.flow.internal.v0.models.CarrierFileForm;
|
|
32253
32458
|
export type CarrierFileResult = io.flow.internal.v0.models.CarrierFileResult;
|
|
@@ -32255,6 +32460,8 @@ export type CarrierFileType = io.flow.internal.v0.enums.CarrierFileType;
|
|
|
32255
32460
|
export type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
|
|
32256
32461
|
export type CarrierLabelGenerationMethod =
|
|
32257
32462
|
io.flow.internal.v0.enums.CarrierLabelGenerationMethod;
|
|
32463
|
+
export type CarrierTaxForm = io.flow.internal.v0.models.CarrierTaxForm;
|
|
32464
|
+
export type CarrierTaxUnits = io.flow.internal.v0.models.CarrierTaxUnits;
|
|
32258
32465
|
export type CarrierValidationStatus =
|
|
32259
32466
|
io.flow.internal.v0.enums.CarrierValidationStatus;
|
|
32260
32467
|
export type CatalogImportRequest =
|
|
@@ -32361,6 +32568,12 @@ export type ChannelOrderSummaryFulfillmentDetails =
|
|
|
32361
32568
|
io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
32362
32569
|
export type ChannelOrderSummaryUpserted =
|
|
32363
32570
|
io.flow.internal.v0.models.ChannelOrderSummaryUpserted;
|
|
32571
|
+
export type ChannelOrganizationIdentifier =
|
|
32572
|
+
io.flow.internal.v0.models.ChannelOrganizationIdentifier;
|
|
32573
|
+
export type ChannelOrganizationIdentifierDeleted =
|
|
32574
|
+
io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted;
|
|
32575
|
+
export type ChannelOrganizationIdentifierUpserted =
|
|
32576
|
+
io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted;
|
|
32364
32577
|
export type ChannelOrganizationShopify =
|
|
32365
32578
|
io.flow.internal.v0.models.ChannelOrganizationShopify;
|
|
32366
32579
|
export type ChannelOrganizationShopifyForm =
|
|
@@ -32477,6 +32690,8 @@ export type ClassificationActionForm =
|
|
|
32477
32690
|
io.flow.internal.v0.unions.ClassificationActionForm;
|
|
32478
32691
|
export type ClassificationActionFormUndo =
|
|
32479
32692
|
io.flow.internal.v0.models.ClassificationActionFormUndo;
|
|
32693
|
+
export type ClassificationDecision =
|
|
32694
|
+
io.flow.internal.v0.enums.ClassificationDecision;
|
|
32480
32695
|
export type ClassificationDetails =
|
|
32481
32696
|
io.flow.internal.v0.models.ClassificationDetails;
|
|
32482
32697
|
export type ClassificationError =
|
|
@@ -32491,12 +32706,18 @@ export type ClassificationJudgementForm =
|
|
|
32491
32706
|
io.flow.internal.v0.unions.ClassificationJudgementForm;
|
|
32492
32707
|
export type ClassificationLabelAttribute =
|
|
32493
32708
|
io.flow.internal.v0.unions.ClassificationLabelAttribute;
|
|
32709
|
+
export type ClassificationPlatform =
|
|
32710
|
+
io.flow.internal.v0.enums.ClassificationPlatform;
|
|
32494
32711
|
export type ClassificationProduct =
|
|
32495
32712
|
io.flow.internal.v0.models.ClassificationProduct;
|
|
32496
32713
|
export type ClassificationProductHarmonization =
|
|
32497
32714
|
io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
32498
32715
|
export type ClassificationProductId =
|
|
32499
32716
|
io.flow.internal.v0.models.ClassificationProductId;
|
|
32717
|
+
export type ClassificationProductRequest =
|
|
32718
|
+
io.flow.internal.v0.models.ClassificationProductRequest;
|
|
32719
|
+
export type ClassificationProductResult =
|
|
32720
|
+
io.flow.internal.v0.models.ClassificationProductResult;
|
|
32500
32721
|
export type ClassificationProductSummary =
|
|
32501
32722
|
io.flow.internal.v0.models.ClassificationProductSummary;
|
|
32502
32723
|
export type ClassificationProductSummaryPage =
|
|
@@ -32511,11 +32732,16 @@ export type ClassificationSummaryReportPayload =
|
|
|
32511
32732
|
io.flow.internal.v0.models.ClassificationSummaryReportPayload;
|
|
32512
32733
|
export type ClassificationTaxonomy =
|
|
32513
32734
|
io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
32735
|
+
export type ClassificationType = io.flow.internal.v0.enums.ClassificationType;
|
|
32514
32736
|
export type ClassificationWrapper =
|
|
32515
32737
|
io.flow.internal.v0.models.ClassificationWrapper;
|
|
32516
32738
|
export type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
32517
32739
|
export type ClassifiedProductDetail =
|
|
32518
32740
|
io.flow.internal.v0.models.ClassifiedProductDetail;
|
|
32741
|
+
export type CliLogEntry = io.flow.internal.v0.models.CliLogEntry;
|
|
32742
|
+
export type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
|
|
32743
|
+
export type ClothingAgeClassification =
|
|
32744
|
+
io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
32519
32745
|
export type ColmItem = io.flow.internal.v0.models.ColmItem;
|
|
32520
32746
|
export type ColmItemDeleted = io.flow.internal.v0.models.ColmItemDeleted;
|
|
32521
32747
|
export type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
|
|
@@ -32888,6 +33114,8 @@ export type ExternalFulfillmentProofTracking =
|
|
|
32888
33114
|
export type ExternalFulfillmentProofTrackingForm =
|
|
32889
33115
|
io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
32890
33116
|
export type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
|
|
33117
|
+
export type FailedDimensionEstimateOpsInputWithReason =
|
|
33118
|
+
io.flow.internal.v0.models.FailedDimensionEstimateOpsInputWithReason;
|
|
32891
33119
|
export type Feature = io.flow.internal.v0.models.Feature;
|
|
32892
33120
|
export type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
|
|
32893
33121
|
export type FeatureDefaultValue =
|
|
@@ -32972,6 +33200,7 @@ export type FlowLabelSettingForm =
|
|
|
32972
33200
|
io.flow.internal.v0.models.FlowLabelSettingForm;
|
|
32973
33201
|
export type FlowShopValidationError =
|
|
32974
33202
|
io.flow.internal.v0.models.FlowShopValidationError;
|
|
33203
|
+
export type ForceTransitForm = io.flow.internal.v0.models.ForceTransitForm;
|
|
32975
33204
|
export type Format = io.flow.internal.v0.enums.Format;
|
|
32976
33205
|
export type FraudPendingReview = io.flow.internal.v0.models.FraudPendingReview;
|
|
32977
33206
|
export type FraudPendingReviewDeleted =
|
|
@@ -33032,6 +33261,7 @@ export type FulfillmentActionForm =
|
|
|
33032
33261
|
export type FulfillmentBusiness =
|
|
33033
33262
|
io.flow.internal.v0.models.FulfillmentBusiness;
|
|
33034
33263
|
export type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
33264
|
+
export type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
33035
33265
|
export type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
33036
33266
|
export type FulfillmentInternalExperienceReference =
|
|
33037
33267
|
io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
@@ -33194,6 +33424,7 @@ export type InternalTransactionDetailsCard =
|
|
|
33194
33424
|
io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
33195
33425
|
export type InvalidCheckoutData =
|
|
33196
33426
|
io.flow.internal.v0.models.InvalidCheckoutData;
|
|
33427
|
+
export type Invariant = io.flow.internal.v0.models.Invariant;
|
|
33197
33428
|
export type InventoryCheckService =
|
|
33198
33429
|
io.flow.internal.v0.enums.InventoryCheckService;
|
|
33199
33430
|
export type InventoryOrganizationSettings =
|
|
@@ -34158,8 +34389,12 @@ export type ReportBankAccountCleartext =
|
|
|
34158
34389
|
io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
34159
34390
|
export type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
34160
34391
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
34392
|
+
export type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
|
|
34393
|
+
export type ReportOrderReference =
|
|
34394
|
+
io.flow.internal.v0.models.ReportOrderReference;
|
|
34161
34395
|
export type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
34162
34396
|
export type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
34397
|
+
export type ReportPaymentType = io.flow.internal.v0.enums.ReportPaymentType;
|
|
34163
34398
|
export type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
34164
34399
|
export type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
34165
34400
|
export type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
@@ -34550,8 +34785,7 @@ export type ShopifyShopStatistics =
|
|
|
34550
34785
|
io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
34551
34786
|
export type ShopifyShopUpserted =
|
|
34552
34787
|
io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
34553
|
-
export type
|
|
34554
|
-
io.flow.internal.v0.models.ShopifyStorePassword;
|
|
34788
|
+
export type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
|
|
34555
34789
|
export type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
34556
34790
|
export type ShopifyWebhookEvent =
|
|
34557
34791
|
io.flow.internal.v0.models.ShopifyWebhookEvent;
|