@flowio/types 11.24.130 → 11.24.131
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 +868 -70
- package/dist/api.d.ts +338 -254
- package/package.json +2 -2
- package/src/api-internal.ts +1066 -81
- package/src/api.ts +417 -313
package/src/api-internal.ts
CHANGED
|
@@ -937,6 +937,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
937
937
|
readonly supported_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
|
|
938
938
|
readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
939
939
|
readonly review?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
|
|
940
|
+
readonly client_secret?: string;
|
|
940
941
|
}
|
|
941
942
|
|
|
942
943
|
interface PaymentRequestCancellationReasonOrderMissing {
|
|
@@ -1252,6 +1253,47 @@ declare namespace io.flow.channel.v0.models {
|
|
|
1252
1253
|
}
|
|
1253
1254
|
}
|
|
1254
1255
|
|
|
1256
|
+
declare namespace io.flow.restrictions.v0.enums {
|
|
1257
|
+
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
1258
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
1259
|
+
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
declare namespace io.flow.restrictions.v0.models {
|
|
1263
|
+
interface CarrierRestrictions {
|
|
1264
|
+
readonly carrier: string;
|
|
1265
|
+
readonly regions: string[];
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
interface NeedsActionAttributes {
|
|
1269
|
+
readonly reason_code: string;
|
|
1270
|
+
readonly category_metafield_handles: string[];
|
|
1271
|
+
readonly require_msds?: boolean;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
interface ProductRestrictionResult {
|
|
1275
|
+
readonly id: string;
|
|
1276
|
+
readonly product_id: string;
|
|
1277
|
+
readonly item_numbers: string[];
|
|
1278
|
+
readonly prohibited_regions: string[];
|
|
1279
|
+
readonly sellability_restricted_regions?: string[];
|
|
1280
|
+
readonly reasons_per_region?: io.flow.restrictions.v0.models.ReasonsPerRegion[];
|
|
1281
|
+
readonly review_status?: io.flow.restrictions.v0.enums.ReviewStatus;
|
|
1282
|
+
readonly rules?: string[];
|
|
1283
|
+
readonly updated_by?: string;
|
|
1284
|
+
readonly product_restriction_id?: string;
|
|
1285
|
+
readonly hs_code?: string;
|
|
1286
|
+
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
1287
|
+
readonly needs_action_attributes?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
interface ReasonsPerRegion {
|
|
1291
|
+
readonly region: string;
|
|
1292
|
+
readonly reasons: string[];
|
|
1293
|
+
readonly review_status: io.flow.restrictions.v0.enums.RestrictedReviewStatus;
|
|
1294
|
+
}
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1255
1297
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
1256
1298
|
type CenterCapability =
|
|
1257
1299
|
| 'international'
|
|
@@ -5261,6 +5303,7 @@ declare namespace io.flow.stripe.v0.unions {
|
|
|
5261
5303
|
}
|
|
5262
5304
|
|
|
5263
5305
|
declare namespace io.flow.label.v0.enums {
|
|
5306
|
+
type CommercialInvoiceMode = 'direct' | 'indirect';
|
|
5264
5307
|
type CostEstimateSource = 'flow' | 'channel';
|
|
5265
5308
|
type Direction = 'outbound' | 'return';
|
|
5266
5309
|
type LabelRequestMethod =
|
|
@@ -7038,6 +7081,14 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7038
7081
|
readonly shopify: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
7039
7082
|
readonly internal: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
7040
7083
|
readonly discrepancy_data: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
7084
|
+
readonly organization_metrics?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
|
|
7085
|
+
}
|
|
7086
|
+
|
|
7087
|
+
interface ShopifyMarketsOrganizationOrderMetrics {
|
|
7088
|
+
readonly organization_id: string;
|
|
7089
|
+
readonly shopify_order_count: number;
|
|
7090
|
+
readonly internal_order_count: number;
|
|
7091
|
+
readonly discrepancy_count?: number;
|
|
7041
7092
|
}
|
|
7042
7093
|
|
|
7043
7094
|
interface ShopifyMarketsQueuedRecord {
|
|
@@ -7180,6 +7231,260 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7180
7231
|
}
|
|
7181
7232
|
}
|
|
7182
7233
|
|
|
7234
|
+
declare namespace io.flow.consumer.invoice.v0.enums {
|
|
7235
|
+
type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
|
|
7236
|
+
type ConsumerInvoiceCustomerType =
|
|
7237
|
+
| 'business_eu_verified'
|
|
7238
|
+
| 'business_non_verified'
|
|
7239
|
+
| 'individual';
|
|
7240
|
+
type ConsumerInvoiceDocumentType = 'pdf';
|
|
7241
|
+
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
7242
|
+
type TaxJurisdictionType = 'country' | 'province';
|
|
7243
|
+
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
7244
|
+
}
|
|
7245
|
+
|
|
7246
|
+
declare namespace io.flow.consumer.invoice.v0.models {
|
|
7247
|
+
interface B2BCreditMemo {
|
|
7248
|
+
readonly id: string;
|
|
7249
|
+
readonly number: string;
|
|
7250
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7251
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7252
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
7253
|
+
readonly date: string;
|
|
7254
|
+
readonly key: string;
|
|
7255
|
+
readonly invoice: io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
|
|
7256
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
7257
|
+
readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
7258
|
+
readonly tax?: io.flow.common.v0.models.Money;
|
|
7259
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
7260
|
+
readonly attributes: Record<string, string>;
|
|
7261
|
+
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
7262
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
7263
|
+
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
7264
|
+
}
|
|
7265
|
+
|
|
7266
|
+
interface B2BInvoice {
|
|
7267
|
+
readonly id: string;
|
|
7268
|
+
readonly number: string;
|
|
7269
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7270
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7271
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
7272
|
+
readonly date: string;
|
|
7273
|
+
readonly key: string;
|
|
7274
|
+
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
7275
|
+
readonly economic_title_location: io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
|
|
7276
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
7277
|
+
readonly destination?: io.flow.experience.v0.models.OrderAddress;
|
|
7278
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
7279
|
+
readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
7280
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
7281
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
7282
|
+
readonly attributes: Record<string, string>;
|
|
7283
|
+
readonly estimated_delivery_date?: string;
|
|
7284
|
+
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
7285
|
+
}
|
|
7286
|
+
|
|
7287
|
+
interface B2BInvoiceReference {
|
|
7288
|
+
readonly id: string;
|
|
7289
|
+
readonly key: string;
|
|
7290
|
+
readonly number: string;
|
|
7291
|
+
}
|
|
7292
|
+
|
|
7293
|
+
interface ConsumerInvoice {
|
|
7294
|
+
readonly id: string;
|
|
7295
|
+
readonly number: string;
|
|
7296
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
7297
|
+
readonly date: string;
|
|
7298
|
+
readonly key: string;
|
|
7299
|
+
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
7300
|
+
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7301
|
+
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
7302
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
7303
|
+
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
7304
|
+
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
7305
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
7306
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
7307
|
+
readonly attributes: Record<string, string>;
|
|
7308
|
+
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
7309
|
+
readonly customer_type?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
|
|
7310
|
+
readonly estimated_delivery_date?: string;
|
|
7311
|
+
}
|
|
7312
|
+
|
|
7313
|
+
interface ConsumerInvoiceCenterReference {
|
|
7314
|
+
readonly id: string;
|
|
7315
|
+
readonly key: string;
|
|
7316
|
+
readonly name: string;
|
|
7317
|
+
readonly address: io.flow.common.v0.models.Address;
|
|
7318
|
+
}
|
|
7319
|
+
|
|
7320
|
+
interface ConsumerInvoiceDocument {
|
|
7321
|
+
readonly type: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType;
|
|
7322
|
+
readonly language: string;
|
|
7323
|
+
readonly url: string;
|
|
7324
|
+
}
|
|
7325
|
+
|
|
7326
|
+
interface ConsumerInvoiceForm {
|
|
7327
|
+
readonly order_number: string;
|
|
7328
|
+
readonly attributes?: Record<string, string>;
|
|
7329
|
+
}
|
|
7330
|
+
|
|
7331
|
+
interface ConsumerInvoiceFormByOrder {
|
|
7332
|
+
readonly attributes?: Record<string, string>;
|
|
7333
|
+
}
|
|
7334
|
+
|
|
7335
|
+
interface ConsumerInvoiceLevy {
|
|
7336
|
+
readonly rate: number;
|
|
7337
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
7338
|
+
}
|
|
7339
|
+
|
|
7340
|
+
interface ConsumerInvoiceLevyForm {
|
|
7341
|
+
readonly rate: number;
|
|
7342
|
+
readonly amount: number;
|
|
7343
|
+
}
|
|
7344
|
+
|
|
7345
|
+
interface ConsumerInvoiceLineDiscount {
|
|
7346
|
+
readonly discriminator: 'discount';
|
|
7347
|
+
readonly line_id?: string;
|
|
7348
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
7349
|
+
}
|
|
7350
|
+
|
|
7351
|
+
interface ConsumerInvoiceLineDiscountForm {
|
|
7352
|
+
readonly discriminator: 'discount';
|
|
7353
|
+
readonly price: number;
|
|
7354
|
+
}
|
|
7355
|
+
|
|
7356
|
+
interface ConsumerInvoiceLineItem {
|
|
7357
|
+
readonly discriminator: 'item';
|
|
7358
|
+
readonly line_id?: string;
|
|
7359
|
+
readonly item: io.flow.common.v0.models.ItemReference;
|
|
7360
|
+
readonly description: string;
|
|
7361
|
+
readonly quantity: number;
|
|
7362
|
+
readonly unit_price: io.flow.common.v0.models.Price;
|
|
7363
|
+
readonly unit_discount?: io.flow.common.v0.models.Price;
|
|
7364
|
+
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
7365
|
+
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
7366
|
+
}
|
|
7367
|
+
|
|
7368
|
+
interface ConsumerInvoiceLineItemForm {
|
|
7369
|
+
readonly discriminator: 'item';
|
|
7370
|
+
readonly item_number: string;
|
|
7371
|
+
readonly quantity: number;
|
|
7372
|
+
readonly unit_price: number;
|
|
7373
|
+
readonly unit_discount?: number;
|
|
7374
|
+
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
7375
|
+
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
7376
|
+
}
|
|
7377
|
+
|
|
7378
|
+
interface ConsumerInvoiceLineShipping {
|
|
7379
|
+
readonly discriminator: 'shipping';
|
|
7380
|
+
readonly line_id?: string;
|
|
7381
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
7382
|
+
readonly discount?: io.flow.common.v0.models.Price;
|
|
7383
|
+
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
7384
|
+
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
7385
|
+
}
|
|
7386
|
+
|
|
7387
|
+
interface ConsumerInvoiceLineShippingForm {
|
|
7388
|
+
readonly discriminator: 'shipping';
|
|
7389
|
+
readonly price: number;
|
|
7390
|
+
readonly discount?: number;
|
|
7391
|
+
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
7392
|
+
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
7393
|
+
}
|
|
7394
|
+
|
|
7395
|
+
interface ConsumerInvoiceLineTip {
|
|
7396
|
+
readonly discriminator: 'tip';
|
|
7397
|
+
readonly line_id?: string;
|
|
7398
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
7399
|
+
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
7400
|
+
}
|
|
7401
|
+
|
|
7402
|
+
interface ConsumerInvoiceLineTipForm {
|
|
7403
|
+
readonly discriminator: 'tip';
|
|
7404
|
+
readonly price: number;
|
|
7405
|
+
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
7406
|
+
}
|
|
7407
|
+
|
|
7408
|
+
interface ConsumerInvoiceOrderSummary {
|
|
7409
|
+
readonly id: string;
|
|
7410
|
+
readonly number: string;
|
|
7411
|
+
readonly submitted_at: string;
|
|
7412
|
+
}
|
|
7413
|
+
|
|
7414
|
+
interface ConsumerInvoicePayment {
|
|
7415
|
+
readonly date: string;
|
|
7416
|
+
readonly description: string;
|
|
7417
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
7418
|
+
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
7419
|
+
}
|
|
7420
|
+
|
|
7421
|
+
interface ConsumerInvoiceReference {
|
|
7422
|
+
readonly id: string;
|
|
7423
|
+
readonly key: string;
|
|
7424
|
+
readonly number: string;
|
|
7425
|
+
}
|
|
7426
|
+
|
|
7427
|
+
interface CreditMemo {
|
|
7428
|
+
readonly id: string;
|
|
7429
|
+
readonly number?: string;
|
|
7430
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
7431
|
+
readonly date: string;
|
|
7432
|
+
readonly key: string;
|
|
7433
|
+
readonly invoice: io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference;
|
|
7434
|
+
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7435
|
+
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
7436
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
7437
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
7438
|
+
readonly attributes: Record<string, string>;
|
|
7439
|
+
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
7440
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
7441
|
+
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
7442
|
+
}
|
|
7443
|
+
|
|
7444
|
+
interface CreditMemoForm {
|
|
7445
|
+
readonly refund_id?: string;
|
|
7446
|
+
readonly refund_key?: string;
|
|
7447
|
+
readonly refund_identifier?: string;
|
|
7448
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
|
|
7449
|
+
readonly attributes?: Record<string, string>;
|
|
7450
|
+
}
|
|
7451
|
+
|
|
7452
|
+
interface InvoiceExport {
|
|
7453
|
+
readonly id: string;
|
|
7454
|
+
}
|
|
7455
|
+
|
|
7456
|
+
interface InvoiceExportForm {
|
|
7457
|
+
readonly date_from?: string;
|
|
7458
|
+
readonly date_to?: string;
|
|
7459
|
+
}
|
|
7460
|
+
|
|
7461
|
+
interface InvoiceTaxLine {
|
|
7462
|
+
readonly line_id: string;
|
|
7463
|
+
readonly tax_breakdown: io.flow.consumer.invoice.v0.models.TaxBreakdown[];
|
|
7464
|
+
}
|
|
7465
|
+
|
|
7466
|
+
interface TaxBreakdown {
|
|
7467
|
+
readonly label: string;
|
|
7468
|
+
readonly calculated_tax: io.flow.common.v0.models.Money;
|
|
7469
|
+
readonly rate: number;
|
|
7470
|
+
readonly line_total: io.flow.common.v0.models.Money;
|
|
7471
|
+
readonly jurisdiction_type: io.flow.consumer.invoice.v0.enums.TaxJurisdictionType;
|
|
7472
|
+
}
|
|
7473
|
+
}
|
|
7474
|
+
|
|
7475
|
+
declare namespace io.flow.consumer.invoice.v0.unions {
|
|
7476
|
+
type ConsumerInvoiceLine =
|
|
7477
|
+
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem
|
|
7478
|
+
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount
|
|
7479
|
+
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping
|
|
7480
|
+
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTip;
|
|
7481
|
+
type ConsumerInvoiceLineForm =
|
|
7482
|
+
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm
|
|
7483
|
+
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm
|
|
7484
|
+
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm
|
|
7485
|
+
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTipForm;
|
|
7486
|
+
}
|
|
7487
|
+
|
|
7183
7488
|
declare namespace io.flow.adyen.v0.enums {
|
|
7184
7489
|
type Channel = 'web';
|
|
7185
7490
|
type Contract = 'RECURRING';
|
|
@@ -9429,6 +9734,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9429
9734
|
readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
|
|
9430
9735
|
readonly merchant_of_record_app_id?: number;
|
|
9431
9736
|
readonly total_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
9737
|
+
readonly current_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
9432
9738
|
readonly total_tip_received?: string;
|
|
9433
9739
|
}
|
|
9434
9740
|
|
|
@@ -10033,6 +10339,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
10033
10339
|
| 'unsupported_virtual_goods'
|
|
10034
10340
|
| 'non_matching_currencies'
|
|
10035
10341
|
| 'unsupported_order_edit'
|
|
10342
|
+
| 'order_allocation_duties_mismatch'
|
|
10036
10343
|
| 'order_missing';
|
|
10037
10344
|
type ChannelOrderAcceptanceStatus =
|
|
10038
10345
|
| 'accepted'
|
|
@@ -10094,6 +10401,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10094
10401
|
readonly order_updated_at?: string;
|
|
10095
10402
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
10096
10403
|
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
10404
|
+
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
10097
10405
|
}
|
|
10098
10406
|
|
|
10099
10407
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -10624,6 +10932,8 @@ declare namespace io.flow.common.v0.models {
|
|
|
10624
10932
|
interface MerchantOfRecordEntityRegistration {
|
|
10625
10933
|
readonly number: string;
|
|
10626
10934
|
readonly country: string;
|
|
10935
|
+
readonly province_number?: string;
|
|
10936
|
+
readonly province?: string;
|
|
10627
10937
|
}
|
|
10628
10938
|
|
|
10629
10939
|
interface Money {
|
|
@@ -12385,6 +12695,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12385
12695
|
readonly amount: io.flow.common.v0.models.Money;
|
|
12386
12696
|
readonly origin_region?: io.flow.ratecard.v0.models.RatecardRegionReference;
|
|
12387
12697
|
readonly destination_region?: io.flow.ratecard.v0.models.RatecardRegionReference;
|
|
12698
|
+
readonly destination_regions?: io.flow.ratecard.v0.models.RatecardRegionReference[];
|
|
12388
12699
|
readonly interval_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
12389
12700
|
}
|
|
12390
12701
|
|
|
@@ -12589,6 +12900,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12589
12900
|
readonly center_id?: string;
|
|
12590
12901
|
readonly taxes_owed?: io.flow.common.v0.models.Money;
|
|
12591
12902
|
readonly duties_owed?: io.flow.common.v0.models.Money;
|
|
12903
|
+
readonly commercial_invoice_mode?: io.flow.label.v0.enums.CommercialInvoiceMode;
|
|
12592
12904
|
}
|
|
12593
12905
|
|
|
12594
12906
|
interface RatecardEstimateSummaryForm {
|
|
@@ -12808,6 +13120,43 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12808
13120
|
readonly from: number;
|
|
12809
13121
|
readonly to: number;
|
|
12810
13122
|
}
|
|
13123
|
+
|
|
13124
|
+
interface ShippingRateEstimate {
|
|
13125
|
+
readonly origin_address: io.flow.common.v0.models.Address;
|
|
13126
|
+
readonly destination_address: io.flow.common.v0.models.Address;
|
|
13127
|
+
readonly shipping_date_time: string;
|
|
13128
|
+
readonly services: string[];
|
|
13129
|
+
readonly available: io.flow.ratecard.v0.models.ShippingRateEstimateAvailable[];
|
|
13130
|
+
readonly unavailable?: io.flow.ratecard.v0.models.ShippingRateEstimateUnavailable[];
|
|
13131
|
+
}
|
|
13132
|
+
|
|
13133
|
+
interface ShippingRateEstimateAvailable {
|
|
13134
|
+
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
13135
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
13136
|
+
readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
|
|
13137
|
+
readonly total_amount: io.flow.common.v0.models.Money;
|
|
13138
|
+
readonly base_amount: io.flow.common.v0.models.Money;
|
|
13139
|
+
readonly fees: io.flow.ratecard.v0.unions.RatecardFee[];
|
|
13140
|
+
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
13141
|
+
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
13142
|
+
readonly weight_break?: number;
|
|
13143
|
+
}
|
|
13144
|
+
|
|
13145
|
+
interface ShippingRateEstimateRequest {
|
|
13146
|
+
readonly origin_address: io.flow.common.v0.models.Address;
|
|
13147
|
+
readonly destination_address: io.flow.common.v0.models.Address;
|
|
13148
|
+
readonly package_dimensions: io.flow.common.v0.models.Dimension;
|
|
13149
|
+
readonly shipping_date_time: string;
|
|
13150
|
+
readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
|
|
13151
|
+
readonly duties_owed?: io.flow.common.v0.models.Money;
|
|
13152
|
+
readonly taxes_owed?: io.flow.common.v0.models.Money;
|
|
13153
|
+
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
13154
|
+
}
|
|
13155
|
+
|
|
13156
|
+
interface ShippingRateEstimateUnavailable {
|
|
13157
|
+
readonly service: string;
|
|
13158
|
+
readonly reason: string;
|
|
13159
|
+
}
|
|
12811
13160
|
}
|
|
12812
13161
|
|
|
12813
13162
|
declare namespace io.flow.ratecard.v0.unions {
|
|
@@ -13118,6 +13467,35 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
13118
13467
|
}
|
|
13119
13468
|
}
|
|
13120
13469
|
|
|
13470
|
+
declare namespace io.flow.channel.shopify.v0.enums {
|
|
13471
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
13472
|
+
}
|
|
13473
|
+
|
|
13474
|
+
declare namespace io.flow.channel.shopify.v0.models {
|
|
13475
|
+
interface ChannelShopifyOrderState {
|
|
13476
|
+
readonly id: string;
|
|
13477
|
+
readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
13478
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
13479
|
+
readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
13480
|
+
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
13481
|
+
}
|
|
13482
|
+
|
|
13483
|
+
interface ChannelShopifyOrderStateReason {
|
|
13484
|
+
readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
13485
|
+
readonly message: string;
|
|
13486
|
+
}
|
|
13487
|
+
|
|
13488
|
+
interface ChannelShopifyOrderSummary {
|
|
13489
|
+
readonly order_id: number;
|
|
13490
|
+
readonly shop_id: number;
|
|
13491
|
+
}
|
|
13492
|
+
|
|
13493
|
+
interface ExternalOrderSummary {
|
|
13494
|
+
readonly id: string;
|
|
13495
|
+
readonly edit_ids: string[];
|
|
13496
|
+
}
|
|
13497
|
+
}
|
|
13498
|
+
|
|
13121
13499
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
13122
13500
|
interface Company {
|
|
13123
13501
|
readonly discriminator: 'company';
|
|
@@ -13846,14 +14224,85 @@ declare namespace io.flow.merchant.onboarding.v0.enums {
|
|
|
13846
14224
|
}
|
|
13847
14225
|
|
|
13848
14226
|
declare namespace io.flow.merchant.onboarding.v0.models {
|
|
13849
|
-
interface
|
|
13850
|
-
readonly
|
|
13851
|
-
readonly id
|
|
14227
|
+
interface CommonMerchantApplication {
|
|
14228
|
+
readonly discriminator: 'common_merchant_application';
|
|
14229
|
+
readonly id: string;
|
|
14230
|
+
readonly organization_id: string;
|
|
14231
|
+
readonly organization_reference: io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
|
|
14232
|
+
readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
14233
|
+
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
14234
|
+
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
14235
|
+
readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
14236
|
+
readonly business_url?: string;
|
|
14237
|
+
readonly business_description?: string;
|
|
14238
|
+
readonly business_address?: io.flow.common.v0.models.Address;
|
|
14239
|
+
readonly refund_percentage?: number;
|
|
14240
|
+
readonly chargeback_percentage?: number;
|
|
14241
|
+
readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
14242
|
+
readonly other_trade_sector?: string;
|
|
14243
|
+
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
14244
|
+
readonly center_address?: io.flow.common.v0.models.Address;
|
|
14245
|
+
readonly average_order_weight?: number;
|
|
14246
|
+
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
14247
|
+
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
14248
|
+
readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
14249
|
+
readonly default_country_of_origin?: string;
|
|
14250
|
+
readonly rate_card: string;
|
|
14251
|
+
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
14252
|
+
readonly created_at: string;
|
|
14253
|
+
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
14254
|
+
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
14255
|
+
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
14256
|
+
readonly mcc_codes?: number[];
|
|
13852
14257
|
}
|
|
13853
14258
|
|
|
13854
|
-
interface
|
|
13855
|
-
readonly
|
|
13856
|
-
readonly
|
|
14259
|
+
interface CommonMerchantApplicationForm {
|
|
14260
|
+
readonly discriminator: 'common_merchant_application_form';
|
|
14261
|
+
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
14262
|
+
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
14263
|
+
readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
14264
|
+
readonly business_url?: string;
|
|
14265
|
+
readonly business_description?: string;
|
|
14266
|
+
readonly business_address?: io.flow.common.v0.models.Address;
|
|
14267
|
+
readonly refund_percentage?: number;
|
|
14268
|
+
readonly chargeback_percentage?: number;
|
|
14269
|
+
readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
14270
|
+
readonly other_trade_sector?: string;
|
|
14271
|
+
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
14272
|
+
readonly center_address?: io.flow.common.v0.models.Address;
|
|
14273
|
+
readonly average_order_weight?: number;
|
|
14274
|
+
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
14275
|
+
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
14276
|
+
readonly monthly_average_volume_amount?: number;
|
|
14277
|
+
readonly monthly_average_volume_currency?: string;
|
|
14278
|
+
readonly monthly_average_number_transactions?: number;
|
|
14279
|
+
readonly default_country_of_origin?: string;
|
|
14280
|
+
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
14281
|
+
readonly rate_card?: string;
|
|
14282
|
+
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
14283
|
+
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
14284
|
+
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
14285
|
+
readonly mcc_codes?: number[];
|
|
14286
|
+
}
|
|
14287
|
+
|
|
14288
|
+
interface CommonMerchantApplicationPutForm {
|
|
14289
|
+
readonly discriminator: 'common_merchant_application_put_form';
|
|
14290
|
+
readonly status?: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
14291
|
+
}
|
|
14292
|
+
|
|
14293
|
+
interface CommonMerchantApplicationsSummary {
|
|
14294
|
+
readonly discriminator: 'common_merchant_applications_summary';
|
|
14295
|
+
readonly total: number;
|
|
14296
|
+
}
|
|
14297
|
+
|
|
14298
|
+
interface IndirectTax {
|
|
14299
|
+
readonly number?: string;
|
|
14300
|
+
readonly id?: string;
|
|
14301
|
+
}
|
|
14302
|
+
|
|
14303
|
+
interface LogisticsFormat {
|
|
14304
|
+
readonly preference: io.flow.merchant.onboarding.v0.enums.LogisticsFormatPreference;
|
|
14305
|
+
readonly description?: string;
|
|
13857
14306
|
}
|
|
13858
14307
|
|
|
13859
14308
|
interface MerchantInfo {
|
|
@@ -13862,6 +14311,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
13862
14311
|
readonly region?: io.flow.merchant.onboarding.v0.enums.RegionType;
|
|
13863
14312
|
readonly region_value?: string;
|
|
13864
14313
|
readonly category_code?: string;
|
|
14314
|
+
readonly description?: string;
|
|
13865
14315
|
}
|
|
13866
14316
|
|
|
13867
14317
|
interface MerchantOnboardingAddress {
|
|
@@ -13873,6 +14323,17 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
13873
14323
|
readonly country?: string;
|
|
13874
14324
|
}
|
|
13875
14325
|
|
|
14326
|
+
interface MerchantOnboardingBeneficiaryDetails {
|
|
14327
|
+
readonly name?: string;
|
|
14328
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
14329
|
+
readonly phone?: string;
|
|
14330
|
+
readonly email?: string;
|
|
14331
|
+
readonly bank_account_number?: string;
|
|
14332
|
+
readonly bank_routing_number?: string;
|
|
14333
|
+
readonly bank_name?: string;
|
|
14334
|
+
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
14335
|
+
}
|
|
14336
|
+
|
|
13876
14337
|
interface MonthlyAverage {
|
|
13877
14338
|
readonly volume?: io.flow.merchant.onboarding.v0.models.MonthlyAverageVolume;
|
|
13878
14339
|
readonly number_transactions?: number;
|
|
@@ -13937,6 +14398,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
13937
14398
|
readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
13938
14399
|
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
13939
14400
|
readonly average_order_weight?: number;
|
|
14401
|
+
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13940
14402
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
13941
14403
|
readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
13942
14404
|
readonly default_country_of_origin?: string;
|
|
@@ -13970,6 +14432,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
13970
14432
|
readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
13971
14433
|
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
13972
14434
|
readonly average_order_weight?: number;
|
|
14435
|
+
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13973
14436
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
13974
14437
|
readonly monthly_average_volume_amount?: number;
|
|
13975
14438
|
readonly monthly_average_volume_currency?: string;
|
|
@@ -14011,13 +14474,17 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
14011
14474
|
|
|
14012
14475
|
declare namespace io.flow.merchant.onboarding.v0.unions {
|
|
14013
14476
|
type MerchantApplication =
|
|
14014
|
-
io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication
|
|
14477
|
+
| io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication
|
|
14478
|
+
| io.flow.merchant.onboarding.v0.models.CommonMerchantApplication;
|
|
14015
14479
|
type MerchantApplicationForm =
|
|
14016
|
-
io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm
|
|
14480
|
+
| io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm
|
|
14481
|
+
| io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationForm;
|
|
14017
14482
|
type MerchantApplicationPutForm =
|
|
14018
|
-
io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm
|
|
14483
|
+
| io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm
|
|
14484
|
+
| io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationPutForm;
|
|
14019
14485
|
type MerchantApplicationsSummary =
|
|
14020
|
-
io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary
|
|
14486
|
+
| io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary
|
|
14487
|
+
| io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationsSummary;
|
|
14021
14488
|
}
|
|
14022
14489
|
|
|
14023
14490
|
declare namespace io.flow.catalog.v0.enums {
|
|
@@ -14752,7 +15219,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
14752
15219
|
| 'waiting_for_positive_account_balance'
|
|
14753
15220
|
| 'unfulfilled_amount_greater_than_negative_balance'
|
|
14754
15221
|
| 'account_payment_hold';
|
|
14755
|
-
type StatementAttachmentType = 'csv';
|
|
15222
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
15223
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
14756
15224
|
type TaxDutyTransactionReasonCode =
|
|
14757
15225
|
| 'post_capture'
|
|
14758
15226
|
| 'post_fulfilment'
|
|
@@ -14760,6 +15228,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
14760
15228
|
| 'order_edit'
|
|
14761
15229
|
| 'mixed_fulfilment_non_lvg'
|
|
14762
15230
|
| 'lvg_refund'
|
|
15231
|
+
| 'us_inbound_tax_refund'
|
|
14763
15232
|
| 'order_cancellation_above_de_min'
|
|
14764
15233
|
| 'wyol_shipment_above_de_min'
|
|
14765
15234
|
| 'full_refund_without_shipment'
|
|
@@ -14796,8 +15265,16 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
14796
15265
|
| 'merchant_payout'
|
|
14797
15266
|
| 'merchant_refund'
|
|
14798
15267
|
| 'ge_revenue_share'
|
|
14799
|
-
| 'merchant_fee'
|
|
14800
|
-
|
|
15268
|
+
| 'merchant_fee'
|
|
15269
|
+
| 'b2b_tax'
|
|
15270
|
+
| 'b2b_tax_refund';
|
|
15271
|
+
type TrueupSource =
|
|
15272
|
+
| 'flow'
|
|
15273
|
+
| 'channel'
|
|
15274
|
+
| 'dhl-parcel'
|
|
15275
|
+
| 'dhl'
|
|
15276
|
+
| 'ups'
|
|
15277
|
+
| 'fedex';
|
|
14801
15278
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
14802
15279
|
}
|
|
14803
15280
|
|
|
@@ -15059,6 +15536,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15059
15536
|
readonly created_at: string;
|
|
15060
15537
|
}
|
|
15061
15538
|
|
|
15539
|
+
interface StatementStatusForm {
|
|
15540
|
+
readonly code: io.flow.billing.v0.enums.StatementStatusCode;
|
|
15541
|
+
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
15542
|
+
}
|
|
15543
|
+
|
|
15062
15544
|
interface Transaction {
|
|
15063
15545
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
15064
15546
|
readonly id: string;
|
|
@@ -15723,6 +16205,9 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
15723
16205
|
| 'wait_for_high_fidelity'
|
|
15724
16206
|
| 'external_service_unavailable';
|
|
15725
16207
|
type SellabilityRequestStatus = 'commit';
|
|
16208
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
16209
|
+
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
16210
|
+
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
15726
16211
|
}
|
|
15727
16212
|
|
|
15728
16213
|
declare namespace io.flow.sellability.v0.models {
|
|
@@ -15732,10 +16217,11 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
15732
16217
|
readonly product_id?: string;
|
|
15733
16218
|
readonly request_id: string;
|
|
15734
16219
|
readonly hs6_code: string;
|
|
15735
|
-
readonly restricted_regions: io.flow.sellability.v0.models.
|
|
16220
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
15736
16221
|
}
|
|
15737
16222
|
|
|
15738
16223
|
interface ProductSellabilityForm {
|
|
16224
|
+
readonly discriminator: 'product_sellability_form';
|
|
15739
16225
|
readonly shop_id: string;
|
|
15740
16226
|
readonly product_id?: string;
|
|
15741
16227
|
readonly name: string;
|
|
@@ -15746,12 +16232,64 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
15746
16232
|
readonly dry_run?: boolean;
|
|
15747
16233
|
}
|
|
15748
16234
|
|
|
16235
|
+
interface ProductSellabilityResult {
|
|
16236
|
+
readonly merchant_id?: string;
|
|
16237
|
+
readonly product_id: string;
|
|
16238
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
16239
|
+
readonly needs_action_attributes?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
|
|
16240
|
+
readonly request_id?: string;
|
|
16241
|
+
}
|
|
16242
|
+
|
|
15749
16243
|
interface SellabilityError {
|
|
15750
16244
|
readonly discriminator: 'sellability_error';
|
|
15751
16245
|
readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
15752
16246
|
readonly messages: string[];
|
|
15753
16247
|
}
|
|
15754
16248
|
|
|
16249
|
+
interface SellabilityNeedsActionAttributes {
|
|
16250
|
+
readonly reason_code: string;
|
|
16251
|
+
readonly category_metafield_handles: string[];
|
|
16252
|
+
readonly require_msds?: boolean;
|
|
16253
|
+
}
|
|
16254
|
+
|
|
16255
|
+
interface SellabilityRegionResult {
|
|
16256
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
16257
|
+
readonly regions: string[];
|
|
16258
|
+
}
|
|
16259
|
+
|
|
16260
|
+
interface SellabilityRegionWithReasons {
|
|
16261
|
+
readonly region: string;
|
|
16262
|
+
readonly reasons: string[];
|
|
16263
|
+
}
|
|
16264
|
+
|
|
16265
|
+
interface SellabilityRestrictedRegion {
|
|
16266
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
16267
|
+
readonly regions_with_reasons: io.flow.sellability.v0.models.SellabilityRegionWithReasons[];
|
|
16268
|
+
}
|
|
16269
|
+
|
|
16270
|
+
interface SellabilityScreening {
|
|
16271
|
+
readonly discriminator: 'sellability_screening';
|
|
16272
|
+
readonly sellability_result?: io.flow.sellability.v0.models.ProductSellabilityResult;
|
|
16273
|
+
readonly request_id: string;
|
|
16274
|
+
readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
16275
|
+
readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
16276
|
+
readonly error_message?: string;
|
|
16277
|
+
}
|
|
16278
|
+
|
|
16279
|
+
interface SellabilityScreeningForm {
|
|
16280
|
+
readonly discriminator: 'sellability_screening_form';
|
|
16281
|
+
readonly merchant_id: string;
|
|
16282
|
+
readonly product_id: string;
|
|
16283
|
+
readonly name: string;
|
|
16284
|
+
readonly price: io.flow.common.v0.models.Money;
|
|
16285
|
+
readonly description: string;
|
|
16286
|
+
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16287
|
+
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
16288
|
+
readonly catalog_size?: number;
|
|
16289
|
+
readonly relative_ranking?: number;
|
|
16290
|
+
readonly dry_run?: boolean;
|
|
16291
|
+
}
|
|
16292
|
+
|
|
15755
16293
|
interface SellablilityRegionResult {
|
|
15756
16294
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
15757
16295
|
readonly regions: string[];
|
|
@@ -15759,9 +16297,13 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
15759
16297
|
}
|
|
15760
16298
|
|
|
15761
16299
|
declare namespace io.flow.sellability.v0.unions {
|
|
16300
|
+
type SellabilityRequest =
|
|
16301
|
+
| io.flow.sellability.v0.models.ProductSellabilityForm
|
|
16302
|
+
| io.flow.sellability.v0.models.SellabilityScreeningForm;
|
|
15762
16303
|
type SellabilityResponse =
|
|
15763
16304
|
| io.flow.sellability.v0.models.ProductSellability
|
|
15764
|
-
| io.flow.sellability.v0.models.SellabilityError
|
|
16305
|
+
| io.flow.sellability.v0.models.SellabilityError
|
|
16306
|
+
| io.flow.sellability.v0.models.SellabilityScreening;
|
|
15765
16307
|
}
|
|
15766
16308
|
|
|
15767
16309
|
declare namespace io.flow.currency.v0.models {
|
|
@@ -15908,6 +16450,22 @@ declare namespace io.flow.organization.v0.models {
|
|
|
15908
16450
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
15909
16451
|
}
|
|
15910
16452
|
|
|
16453
|
+
interface OrganizationTaxRegistration {
|
|
16454
|
+
readonly id: string;
|
|
16455
|
+
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
16456
|
+
readonly address: io.flow.common.v0.models.BillingAddress;
|
|
16457
|
+
readonly registration: io.flow.organization.v0.models.TaxRegistrationDetail;
|
|
16458
|
+
readonly self_billing_agreement: io.flow.organization.v0.models.SelfBillingAgreement;
|
|
16459
|
+
}
|
|
16460
|
+
|
|
16461
|
+
interface OrganizationTaxRegistrationForm {
|
|
16462
|
+
readonly tax_number: string;
|
|
16463
|
+
readonly country: string;
|
|
16464
|
+
readonly province?: string;
|
|
16465
|
+
readonly self_billing_agreement_effective_at: string;
|
|
16466
|
+
readonly self_billing_agreement_expires_at?: string;
|
|
16467
|
+
}
|
|
16468
|
+
|
|
15911
16469
|
interface OrganizationVersion {
|
|
15912
16470
|
readonly id: string;
|
|
15913
16471
|
readonly timestamp: string;
|
|
@@ -15924,6 +16482,18 @@ declare namespace io.flow.organization.v0.models {
|
|
|
15924
16482
|
interface RegionSettingForm {
|
|
15925
16483
|
readonly status: io.flow.common.v0.enums.AvailabilityStatus;
|
|
15926
16484
|
}
|
|
16485
|
+
|
|
16486
|
+
interface SelfBillingAgreement {
|
|
16487
|
+
readonly effective_at: string;
|
|
16488
|
+
readonly expires_at: string;
|
|
16489
|
+
}
|
|
16490
|
+
|
|
16491
|
+
interface TaxRegistrationDetail {
|
|
16492
|
+
readonly tax_number: string;
|
|
16493
|
+
readonly country: string;
|
|
16494
|
+
readonly tax_code: string;
|
|
16495
|
+
readonly province?: string;
|
|
16496
|
+
}
|
|
15927
16497
|
}
|
|
15928
16498
|
|
|
15929
16499
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
@@ -16003,6 +16573,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16003
16573
|
| 'prr-76544617791b4ce8af96b3a7879474c6'
|
|
16004
16574
|
| 'prr-566cc67167944bc4bd08167aa9c0beba'
|
|
16005
16575
|
| 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
16576
|
+
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
|
|
16577
|
+
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
16006
16578
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
16007
16579
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16008
16580
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
@@ -16273,7 +16845,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16273
16845
|
| 'ge_revenue_share'
|
|
16274
16846
|
| 'merchant_fee'
|
|
16275
16847
|
| 'merchant_payout'
|
|
16276
|
-
| 'merchant_refund'
|
|
16848
|
+
| 'merchant_refund'
|
|
16849
|
+
| 'b2b_tax'
|
|
16850
|
+
| 'b2b_tax_refund';
|
|
16277
16851
|
type CalculatorEngine =
|
|
16278
16852
|
| 'dtce_with_deminimis'
|
|
16279
16853
|
| 'dtce_with_inclusive_pricing'
|
|
@@ -16329,6 +16903,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16329
16903
|
| 'unsupported_virtual_goods'
|
|
16330
16904
|
| 'non_matching_currencies'
|
|
16331
16905
|
| 'unsupported_order_edit'
|
|
16906
|
+
| 'order_allocation_duties_mismatch'
|
|
16332
16907
|
| 'order_missing';
|
|
16333
16908
|
type ChannelOrderAcceptanceStatus =
|
|
16334
16909
|
| 'accepted'
|
|
@@ -16386,7 +16961,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16386
16961
|
| 'invalid_checkout';
|
|
16387
16962
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
16388
16963
|
type ClassificationErrorCode = 'generic_error';
|
|
16389
|
-
type
|
|
16964
|
+
type ClassificationFailureReason = 'low_confidence' | 'timeout';
|
|
16965
|
+
type ClassificationPlatform =
|
|
16966
|
+
| 'GlobalE'
|
|
16967
|
+
| 'Flow'
|
|
16968
|
+
| 'FlowOnboarding'
|
|
16969
|
+
| 'Borderfree';
|
|
16390
16970
|
type ClassificationScope = 'Item' | 'Product';
|
|
16391
16971
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
16392
16972
|
type ClothingAgeClassification =
|
|
@@ -16574,8 +17154,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16574
17154
|
| 'export_failed'
|
|
16575
17155
|
| 'feature_upserted'
|
|
16576
17156
|
| 'feature_deleted'
|
|
16577
|
-
| 'organization_boolean_value_upserted'
|
|
16578
|
-
| 'organization_boolean_value_deleted'
|
|
16579
17157
|
| 'account_settings_upserted'
|
|
16580
17158
|
| 'account_settings_deleted'
|
|
16581
17159
|
| 'account_processing_rates_upserted'
|
|
@@ -16811,6 +17389,22 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16811
17389
|
| 'stripe_connect_report_record_deleted'
|
|
16812
17390
|
| 'liability_remittance_plan_upserted'
|
|
16813
17391
|
| 'liability_remittance_plan_deleted'
|
|
17392
|
+
| 'anirban_item_upserted'
|
|
17393
|
+
| 'anirban_item_deleted'
|
|
17394
|
+
| 'sarvesh_item_upserted'
|
|
17395
|
+
| 'sarvesh_item_deleted'
|
|
17396
|
+
| 'hosein_item_upserted'
|
|
17397
|
+
| 'hosein_item_deleted'
|
|
17398
|
+
| 'niall_item_upserted'
|
|
17399
|
+
| 'niall_item_deleted'
|
|
17400
|
+
| 'rohan_item_upserted'
|
|
17401
|
+
| 'rohan_item_deleted'
|
|
17402
|
+
| 'aldo_item_upserted'
|
|
17403
|
+
| 'aldo_item_deleted'
|
|
17404
|
+
| 'ansh_item_upserted'
|
|
17405
|
+
| 'ansh_item_deleted'
|
|
17406
|
+
| 'gabriel_item_upserted'
|
|
17407
|
+
| 'gabriel_item_deleted'
|
|
16814
17408
|
| 'tracking_processing_error_upserted'
|
|
16815
17409
|
| 'tracking_processing_error_deleted'
|
|
16816
17410
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -16850,6 +17444,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16850
17444
|
| 'none';
|
|
16851
17445
|
type FraudProviderStatus = 'active' | 'archived';
|
|
16852
17446
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
17447
|
+
type GabrielItemType = 'physical' | 'digital';
|
|
16853
17448
|
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
16854
17449
|
type GeRevenueShareTransactionType =
|
|
16855
17450
|
| 'adjustment'
|
|
@@ -16874,6 +17469,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16874
17469
|
| 'enterprise_model'
|
|
16875
17470
|
| 'merchant';
|
|
16876
17471
|
type HoseinItemType = 'physical' | 'digital';
|
|
17472
|
+
type Hs6CodeSource = 'sellability' | 'classification' | 'human';
|
|
16877
17473
|
type HttpMethod = 'get' | 'post';
|
|
16878
17474
|
type InternalPaymentEntityType =
|
|
16879
17475
|
| 'authorization'
|
|
@@ -16927,6 +17523,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16927
17523
|
| 'billable_label'
|
|
16928
17524
|
| 'fee'
|
|
16929
17525
|
| 'revenue_share';
|
|
17526
|
+
type LedgerReportType = 'periodic_mor_jurisdiction_report';
|
|
17527
|
+
type LedgerReportUrlType = 'sharepoint' | 's3';
|
|
16930
17528
|
type LiabilityType =
|
|
16931
17529
|
| 'full_value_tax'
|
|
16932
17530
|
| 'low_value_goods_tax'
|
|
@@ -16954,7 +17552,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16954
17552
|
| 'global_e_united_states'
|
|
16955
17553
|
| 'global_e_united_kingdom'
|
|
16956
17554
|
| 'global_e_canada'
|
|
16957
|
-
| 'global_e_netherlands'
|
|
17555
|
+
| 'global_e_netherlands'
|
|
17556
|
+
| 'uk_global_e_canada'
|
|
17557
|
+
| 'uk_global_e_netherlands'
|
|
17558
|
+
| 'uk_global_e_united_states'
|
|
17559
|
+
| 'ca_global_e_united_kingdom'
|
|
17560
|
+
| 'ca_global_e_netherlands'
|
|
17561
|
+
| 'ca_global_e_united_states';
|
|
16958
17562
|
type MerchantOverrideStatus =
|
|
16959
17563
|
| 'pending'
|
|
16960
17564
|
| 'in_review'
|
|
@@ -16991,7 +17595,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16991
17595
|
| 'fraud'
|
|
16992
17596
|
| 'logistics'
|
|
16993
17597
|
| 'payments'
|
|
16994
|
-
| 'shopify_markets'
|
|
16995
17598
|
| 'integration_partner'
|
|
16996
17599
|
| 'dtce'
|
|
16997
17600
|
| 'restrictions'
|
|
@@ -17088,6 +17691,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17088
17691
|
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
17089
17692
|
type PrateekItemType = 'physical' | 'digital';
|
|
17090
17693
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
17694
|
+
type PreonboardingClassificationDecision = 'Accept' | 'Reject';
|
|
17695
|
+
type PreonboardingClassificationPlatform = 'FlowOnboarding';
|
|
17696
|
+
type PreonboardingClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
17697
|
+
type PreonboardingRequestStatus =
|
|
17698
|
+
| 'pending'
|
|
17699
|
+
| 'completed'
|
|
17700
|
+
| 'failed'
|
|
17701
|
+
| 'discarded';
|
|
17091
17702
|
type PriceSelector = 'minimum' | 'maximum';
|
|
17092
17703
|
type ProcessingTransactionType =
|
|
17093
17704
|
| 'adjustment'
|
|
@@ -17138,6 +17749,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17138
17749
|
| 'trueup_overview'
|
|
17139
17750
|
| 'non_channel_payment_bank_account'
|
|
17140
17751
|
| 'scheduled_payment'
|
|
17752
|
+
| 'scheduled_payment_citi'
|
|
17141
17753
|
| 'account_quarterly_balances'
|
|
17142
17754
|
| 'invariants'
|
|
17143
17755
|
| 'payments'
|
|
@@ -17166,7 +17778,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17166
17778
|
| 'shopify'
|
|
17167
17779
|
| 'enterprise'
|
|
17168
17780
|
| 'shopify-sandbox'
|
|
17169
|
-
| 'enterprise-sandbox'
|
|
17781
|
+
| 'enterprise-sandbox'
|
|
17782
|
+
| 'enterprise-qa';
|
|
17170
17783
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
17171
17784
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
17172
17785
|
type RestrictionRuleCommunityExemption =
|
|
@@ -17273,7 +17886,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17273
17886
|
| 'carrier_account'
|
|
17274
17887
|
| 'payment'
|
|
17275
17888
|
| 'rate_levels'
|
|
17276
|
-
| 'center_defaults'
|
|
17889
|
+
| 'center_defaults'
|
|
17890
|
+
| 'item_dimensions';
|
|
17277
17891
|
type TaxAndDutyInclusivitySetting =
|
|
17278
17892
|
| 'duty_exclusive_tax_exclusive'
|
|
17279
17893
|
| 'duty_inclusive_tax_exclusive'
|
|
@@ -18008,6 +18622,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18008
18622
|
readonly added_on: string;
|
|
18009
18623
|
}
|
|
18010
18624
|
|
|
18625
|
+
interface AldoItemDeleted {
|
|
18626
|
+
readonly discriminator: 'aldo_item_deleted';
|
|
18627
|
+
readonly event_id: string;
|
|
18628
|
+
readonly timestamp: string;
|
|
18629
|
+
readonly id: string;
|
|
18630
|
+
}
|
|
18631
|
+
|
|
18011
18632
|
interface AldoItemForm {
|
|
18012
18633
|
readonly number: string;
|
|
18013
18634
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -18016,6 +18637,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18016
18637
|
readonly added_on: string;
|
|
18017
18638
|
}
|
|
18018
18639
|
|
|
18640
|
+
interface AldoItemUpserted {
|
|
18641
|
+
readonly discriminator: 'aldo_item_upserted';
|
|
18642
|
+
readonly event_id: string;
|
|
18643
|
+
readonly timestamp: string;
|
|
18644
|
+
readonly item: io.flow.internal.v0.models.AldoItem;
|
|
18645
|
+
}
|
|
18646
|
+
|
|
18019
18647
|
interface AllItemsExport {
|
|
18020
18648
|
readonly discriminator: 'all_items_export';
|
|
18021
18649
|
readonly event_id: string;
|
|
@@ -18047,6 +18675,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18047
18675
|
readonly added_on: string;
|
|
18048
18676
|
}
|
|
18049
18677
|
|
|
18678
|
+
interface AnirbanItemDeleted {
|
|
18679
|
+
readonly discriminator: 'anirban_item_deleted';
|
|
18680
|
+
readonly event_id: string;
|
|
18681
|
+
readonly timestamp: string;
|
|
18682
|
+
readonly id: string;
|
|
18683
|
+
}
|
|
18684
|
+
|
|
18050
18685
|
interface AnirbanItemForm {
|
|
18051
18686
|
readonly number: string;
|
|
18052
18687
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -18055,6 +18690,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18055
18690
|
readonly added_on: string;
|
|
18056
18691
|
}
|
|
18057
18692
|
|
|
18693
|
+
interface AnirbanItemUpserted {
|
|
18694
|
+
readonly discriminator: 'anirban_item_upserted';
|
|
18695
|
+
readonly event_id: string;
|
|
18696
|
+
readonly timestamp: string;
|
|
18697
|
+
readonly item: io.flow.internal.v0.models.AnirbanItem;
|
|
18698
|
+
}
|
|
18699
|
+
|
|
18058
18700
|
interface AnshItem {
|
|
18059
18701
|
readonly id: string;
|
|
18060
18702
|
readonly number: string;
|
|
@@ -18064,6 +18706,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18064
18706
|
readonly added_on: string;
|
|
18065
18707
|
}
|
|
18066
18708
|
|
|
18709
|
+
interface AnshItemDeleted {
|
|
18710
|
+
readonly discriminator: 'ansh_item_deleted';
|
|
18711
|
+
readonly event_id: string;
|
|
18712
|
+
readonly timestamp: string;
|
|
18713
|
+
readonly id: string;
|
|
18714
|
+
}
|
|
18715
|
+
|
|
18067
18716
|
interface AnshItemForm {
|
|
18068
18717
|
readonly number: string;
|
|
18069
18718
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -18072,6 +18721,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18072
18721
|
readonly added_on: string;
|
|
18073
18722
|
}
|
|
18074
18723
|
|
|
18724
|
+
interface AnshItemUpserted {
|
|
18725
|
+
readonly discriminator: 'ansh_item_upserted';
|
|
18726
|
+
readonly event_id: string;
|
|
18727
|
+
readonly timestamp: string;
|
|
18728
|
+
readonly item: io.flow.internal.v0.models.AnshItem;
|
|
18729
|
+
}
|
|
18730
|
+
|
|
18075
18731
|
interface ApplePayAuthorizationPayload {
|
|
18076
18732
|
readonly discriminator: 'apple_pay_authorization_payload';
|
|
18077
18733
|
readonly apple_pay_token: string;
|
|
@@ -18175,6 +18831,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18175
18831
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
18176
18832
|
}
|
|
18177
18833
|
|
|
18834
|
+
interface B2BTaxLedger {
|
|
18835
|
+
readonly id: string;
|
|
18836
|
+
readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
|
|
18837
|
+
readonly tax_amount: io.flow.common.v0.models.Money;
|
|
18838
|
+
readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
|
|
18839
|
+
readonly tax_rate: number;
|
|
18840
|
+
readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
|
|
18841
|
+
readonly organization_id: string;
|
|
18842
|
+
readonly organization_country: string;
|
|
18843
|
+
readonly organization_province?: string;
|
|
18844
|
+
readonly mor_tax_number: string;
|
|
18845
|
+
readonly mor_country: string;
|
|
18846
|
+
readonly mor_province?: string;
|
|
18847
|
+
readonly document_id: string;
|
|
18848
|
+
readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
18849
|
+
readonly document_date: string;
|
|
18850
|
+
readonly ledger_report_id?: string;
|
|
18851
|
+
}
|
|
18852
|
+
|
|
18853
|
+
interface B2BTaxLedgerForm {
|
|
18854
|
+
readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
|
|
18855
|
+
readonly tax_amount: io.flow.common.v0.models.Money;
|
|
18856
|
+
readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
|
|
18857
|
+
readonly tax_rate: number;
|
|
18858
|
+
readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
|
|
18859
|
+
readonly organization_id: string;
|
|
18860
|
+
readonly organization_country: string;
|
|
18861
|
+
readonly organization_province?: string;
|
|
18862
|
+
readonly mor_tax_number: string;
|
|
18863
|
+
readonly mor_country: string;
|
|
18864
|
+
readonly mor_province?: string;
|
|
18865
|
+
readonly document_id: string;
|
|
18866
|
+
readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
18867
|
+
readonly document_date: string;
|
|
18868
|
+
readonly ledger_report_id?: string;
|
|
18869
|
+
}
|
|
18870
|
+
|
|
18178
18871
|
interface BankAccount {
|
|
18179
18872
|
readonly status: io.flow.internal.v0.enums.BankAccountStatus;
|
|
18180
18873
|
readonly hold_created_at?: string;
|
|
@@ -18481,6 +19174,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18481
19174
|
readonly non_l4l_tax_duty_fx: io.flow.common.v0.models.Price;
|
|
18482
19175
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
18483
19176
|
readonly tax_refund: io.flow.common.v0.models.Price;
|
|
19177
|
+
readonly b2b_tax: io.flow.common.v0.models.Price;
|
|
19178
|
+
readonly b2b_tax_refund: io.flow.common.v0.models.Price;
|
|
18484
19179
|
}
|
|
18485
19180
|
|
|
18486
19181
|
interface BillingStatementUpserted {
|
|
@@ -18598,6 +19293,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18598
19293
|
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
18599
19294
|
}
|
|
18600
19295
|
|
|
19296
|
+
interface Cafe24MarketsWebhook {
|
|
19297
|
+
readonly placeholder?: any /*json*/;
|
|
19298
|
+
}
|
|
19299
|
+
|
|
18601
19300
|
interface CalculatedTaxAmount {
|
|
18602
19301
|
readonly discriminator: 'calculated_tax_amount';
|
|
18603
19302
|
readonly amount: number;
|
|
@@ -19198,6 +19897,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19198
19897
|
readonly order_updated_at?: string;
|
|
19199
19898
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
19200
19899
|
readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
19900
|
+
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
19201
19901
|
}
|
|
19202
19902
|
|
|
19203
19903
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -21094,10 +21794,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21094
21794
|
readonly region?: string;
|
|
21095
21795
|
}
|
|
21096
21796
|
|
|
21097
|
-
interface FeatureIdReference {
|
|
21098
|
-
readonly id: string;
|
|
21099
|
-
}
|
|
21100
|
-
|
|
21101
21797
|
interface FeatureReference {
|
|
21102
21798
|
readonly id: string;
|
|
21103
21799
|
readonly key: string;
|
|
@@ -21796,6 +22492,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21796
22492
|
readonly fulfilled_at: string;
|
|
21797
22493
|
readonly sequence_number: number;
|
|
21798
22494
|
readonly completes_order: boolean;
|
|
22495
|
+
readonly trigger?: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
21799
22496
|
}
|
|
21800
22497
|
|
|
21801
22498
|
interface FulfillmentStatusUpserted {
|
|
@@ -21878,6 +22575,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21878
22575
|
readonly transaction_created_at: string;
|
|
21879
22576
|
}
|
|
21880
22577
|
|
|
22578
|
+
interface GabrielItem {
|
|
22579
|
+
readonly id: string;
|
|
22580
|
+
readonly number: string;
|
|
22581
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
22582
|
+
readonly description?: string;
|
|
22583
|
+
readonly type: io.flow.internal.v0.enums.GabrielItemType;
|
|
22584
|
+
readonly added_on: string;
|
|
22585
|
+
}
|
|
22586
|
+
|
|
22587
|
+
interface GabrielItemDeleted {
|
|
22588
|
+
readonly discriminator: 'gabriel_item_deleted';
|
|
22589
|
+
readonly event_id: string;
|
|
22590
|
+
readonly timestamp: string;
|
|
22591
|
+
readonly id: string;
|
|
22592
|
+
}
|
|
22593
|
+
|
|
22594
|
+
interface GabrielItemForm {
|
|
22595
|
+
readonly number: string;
|
|
22596
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
22597
|
+
readonly description?: string;
|
|
22598
|
+
readonly type: io.flow.internal.v0.enums.GabrielItemType;
|
|
22599
|
+
readonly added_on: string;
|
|
22600
|
+
}
|
|
22601
|
+
|
|
22602
|
+
interface GabrielItemUpserted {
|
|
22603
|
+
readonly discriminator: 'gabriel_item_upserted';
|
|
22604
|
+
readonly event_id: string;
|
|
22605
|
+
readonly timestamp: string;
|
|
22606
|
+
readonly item: io.flow.internal.v0.models.GabrielItem;
|
|
22607
|
+
}
|
|
22608
|
+
|
|
21881
22609
|
interface GeRevenueShareTransaction {
|
|
21882
22610
|
readonly discriminator: 'ge_revenue_share_transaction';
|
|
21883
22611
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -22077,6 +22805,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22077
22805
|
readonly added_on: string;
|
|
22078
22806
|
}
|
|
22079
22807
|
|
|
22808
|
+
interface HoseinItemDeleted {
|
|
22809
|
+
readonly discriminator: 'hosein_item_deleted';
|
|
22810
|
+
readonly event_id: string;
|
|
22811
|
+
readonly timestamp: string;
|
|
22812
|
+
readonly id: string;
|
|
22813
|
+
}
|
|
22814
|
+
|
|
22080
22815
|
interface HoseinItemForm {
|
|
22081
22816
|
readonly number: string;
|
|
22082
22817
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -22085,6 +22820,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22085
22820
|
readonly added_on: string;
|
|
22086
22821
|
}
|
|
22087
22822
|
|
|
22823
|
+
interface HoseinItemUpserted {
|
|
22824
|
+
readonly discriminator: 'hosein_item_upserted';
|
|
22825
|
+
readonly event_id: string;
|
|
22826
|
+
readonly timestamp: string;
|
|
22827
|
+
readonly item: io.flow.internal.v0.models.HoseinItem;
|
|
22828
|
+
}
|
|
22829
|
+
|
|
22088
22830
|
interface Hs6 {
|
|
22089
22831
|
readonly code: string;
|
|
22090
22832
|
readonly description: string;
|
|
@@ -22309,8 +23051,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22309
23051
|
readonly customs_value: number;
|
|
22310
23052
|
readonly total_value: number;
|
|
22311
23053
|
readonly usa_exporter_identifier_number_if_value_over_threshold?: string;
|
|
22312
|
-
readonly feature_israel_notes_import_duty_and_taxes_due: boolean;
|
|
22313
|
-
readonly feature_new_export_declaration: boolean;
|
|
22314
23054
|
}
|
|
22315
23055
|
|
|
22316
23056
|
interface InvoiceDataLineItem {
|
|
@@ -22321,7 +23061,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22321
23061
|
readonly tariff_code: string;
|
|
22322
23062
|
readonly country_of_origin: string;
|
|
22323
23063
|
readonly display_country_of_origin: string;
|
|
22324
|
-
readonly
|
|
23064
|
+
readonly remitter: io.flow.internal.v0.enums.TaxParty;
|
|
22325
23065
|
readonly gst_paid_text: string;
|
|
22326
23066
|
readonly unit_price: number;
|
|
22327
23067
|
readonly vat_price: number;
|
|
@@ -22805,6 +23545,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22805
23545
|
readonly service_id?: string;
|
|
22806
23546
|
readonly errors: string[];
|
|
22807
23547
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
23548
|
+
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
23549
|
+
readonly destination?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
22808
23550
|
}
|
|
22809
23551
|
|
|
22810
23552
|
interface LabelRequestErrorDeleted {
|
|
@@ -22970,6 +23712,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22970
23712
|
readonly errors: string[];
|
|
22971
23713
|
}
|
|
22972
23714
|
|
|
23715
|
+
interface LedgerReport {
|
|
23716
|
+
readonly id: string;
|
|
23717
|
+
readonly mor_tax_number: string;
|
|
23718
|
+
readonly jurisdiction: string;
|
|
23719
|
+
readonly start_date: string;
|
|
23720
|
+
readonly end_date: string;
|
|
23721
|
+
readonly report_type: io.flow.internal.v0.enums.LedgerReportType;
|
|
23722
|
+
readonly urls: io.flow.internal.v0.models.LedgerReportUrl[];
|
|
23723
|
+
}
|
|
23724
|
+
|
|
23725
|
+
interface LedgerReportUrl {
|
|
23726
|
+
readonly url: string;
|
|
23727
|
+
readonly type: io.flow.internal.v0.enums.LedgerReportUrlType;
|
|
23728
|
+
}
|
|
23729
|
+
|
|
22973
23730
|
interface LevyRateSummary {
|
|
22974
23731
|
readonly id: string;
|
|
22975
23732
|
readonly number: string;
|
|
@@ -23514,6 +24271,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23514
24271
|
readonly added_on: string;
|
|
23515
24272
|
}
|
|
23516
24273
|
|
|
24274
|
+
interface NiallItemDeleted {
|
|
24275
|
+
readonly discriminator: 'niall_item_deleted';
|
|
24276
|
+
readonly event_id: string;
|
|
24277
|
+
readonly timestamp: string;
|
|
24278
|
+
readonly id: string;
|
|
24279
|
+
}
|
|
24280
|
+
|
|
23517
24281
|
interface NiallItemForm {
|
|
23518
24282
|
readonly number: string;
|
|
23519
24283
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -23522,6 +24286,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23522
24286
|
readonly added_on: string;
|
|
23523
24287
|
}
|
|
23524
24288
|
|
|
24289
|
+
interface NiallItemUpserted {
|
|
24290
|
+
readonly discriminator: 'niall_item_upserted';
|
|
24291
|
+
readonly event_id: string;
|
|
24292
|
+
readonly timestamp: string;
|
|
24293
|
+
readonly item: io.flow.internal.v0.models.NiallItem;
|
|
24294
|
+
}
|
|
24295
|
+
|
|
23525
24296
|
interface NoCalculatedTaxAmount {
|
|
23526
24297
|
readonly discriminator: 'no_calculated_tax_amount';
|
|
23527
24298
|
readonly amount: number;
|
|
@@ -23603,6 +24374,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23603
24374
|
readonly health_score?: number;
|
|
23604
24375
|
readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
23605
24376
|
readonly blocked_since?: string;
|
|
24377
|
+
readonly onboarding_segment?: string;
|
|
23606
24378
|
}
|
|
23607
24379
|
|
|
23608
24380
|
interface OnboardingStateForm {
|
|
@@ -24048,27 +24820,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24048
24820
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
24049
24821
|
}
|
|
24050
24822
|
|
|
24051
|
-
interface OrganizationBooleanValue {
|
|
24052
|
-
readonly id: string;
|
|
24053
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
24054
|
-
readonly feature: io.flow.internal.v0.models.FeatureIdReference;
|
|
24055
|
-
readonly value: boolean;
|
|
24056
|
-
}
|
|
24057
|
-
|
|
24058
|
-
interface OrganizationBooleanValueDeleted {
|
|
24059
|
-
readonly discriminator: 'organization_boolean_value_deleted';
|
|
24060
|
-
readonly event_id: string;
|
|
24061
|
-
readonly timestamp: string;
|
|
24062
|
-
readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
24063
|
-
}
|
|
24064
|
-
|
|
24065
|
-
interface OrganizationBooleanValueUpserted {
|
|
24066
|
-
readonly discriminator: 'organization_boolean_value_upserted';
|
|
24067
|
-
readonly event_id: string;
|
|
24068
|
-
readonly timestamp: string;
|
|
24069
|
-
readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
24070
|
-
}
|
|
24071
|
-
|
|
24072
24823
|
interface OrganizationBusinessEntity {
|
|
24073
24824
|
readonly id: string;
|
|
24074
24825
|
readonly name: string;
|
|
@@ -24668,6 +25419,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24668
25419
|
interface PaymentIs {
|
|
24669
25420
|
readonly lvg: boolean;
|
|
24670
25421
|
readonly manual: boolean;
|
|
25422
|
+
readonly managed_pricing?: boolean;
|
|
24671
25423
|
}
|
|
24672
25424
|
|
|
24673
25425
|
interface PaymentMethodDetail {
|
|
@@ -25127,6 +25879,76 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25127
25879
|
readonly item: string;
|
|
25128
25880
|
}
|
|
25129
25881
|
|
|
25882
|
+
interface PreonboardingClassificationRabbitmqEnvelope {
|
|
25883
|
+
readonly messageType: string[];
|
|
25884
|
+
readonly message: io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage;
|
|
25885
|
+
}
|
|
25886
|
+
|
|
25887
|
+
interface PreonboardingClassificationRabbitmqMessage {
|
|
25888
|
+
readonly MerchantId: string;
|
|
25889
|
+
readonly ProductName: string;
|
|
25890
|
+
readonly ProductDescription: string;
|
|
25891
|
+
readonly ProductIdInternal: string;
|
|
25892
|
+
readonly ProductIdExternal: string;
|
|
25893
|
+
readonly ProductGroupCode?: string;
|
|
25894
|
+
readonly ProductUrl?: string;
|
|
25895
|
+
readonly ProductImage?: string;
|
|
25896
|
+
readonly ProductAttributes: Record<string, string>;
|
|
25897
|
+
readonly Categories?: string[];
|
|
25898
|
+
readonly PlatformId: io.flow.internal.v0.enums.PreonboardingClassificationPlatform;
|
|
25899
|
+
}
|
|
25900
|
+
|
|
25901
|
+
interface PreonboardingClassificationRequest {
|
|
25902
|
+
readonly id: string;
|
|
25903
|
+
readonly merchant_id: string;
|
|
25904
|
+
readonly product_id: string;
|
|
25905
|
+
readonly channel: string;
|
|
25906
|
+
readonly request_id: string;
|
|
25907
|
+
readonly status: io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
25908
|
+
readonly name: string;
|
|
25909
|
+
readonly price: io.flow.common.v0.models.Money;
|
|
25910
|
+
readonly description: string;
|
|
25911
|
+
readonly relative_ranking: number;
|
|
25912
|
+
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
25913
|
+
readonly fingerprint: string;
|
|
25914
|
+
}
|
|
25915
|
+
|
|
25916
|
+
interface PreonboardingClassificationResult {
|
|
25917
|
+
readonly id: string;
|
|
25918
|
+
readonly merchant_id: string;
|
|
25919
|
+
readonly product_id: string;
|
|
25920
|
+
readonly channel: string;
|
|
25921
|
+
readonly hs6_code?: string;
|
|
25922
|
+
readonly probability?: number;
|
|
25923
|
+
readonly classification_decision: io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
25924
|
+
readonly classification_type: io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
25925
|
+
}
|
|
25926
|
+
|
|
25927
|
+
interface PreonboardingMerchant {
|
|
25928
|
+
readonly merchant_id: string;
|
|
25929
|
+
readonly channel: string;
|
|
25930
|
+
readonly catalog_size: number;
|
|
25931
|
+
readonly processed_product_count: number;
|
|
25932
|
+
readonly last_request: string;
|
|
25933
|
+
}
|
|
25934
|
+
|
|
25935
|
+
interface PreonboardingSellabilityResult {
|
|
25936
|
+
readonly merchant_id: string;
|
|
25937
|
+
readonly product_id: string;
|
|
25938
|
+
readonly channel: string;
|
|
25939
|
+
readonly request_id: string;
|
|
25940
|
+
readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
25941
|
+
readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
25942
|
+
readonly hs6_code?: string;
|
|
25943
|
+
readonly hs6_code_source?: io.flow.internal.v0.enums.Hs6CodeSource;
|
|
25944
|
+
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
25945
|
+
readonly rule_ids?: string[];
|
|
25946
|
+
readonly matching_positive_keywords?: string[];
|
|
25947
|
+
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
25948
|
+
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
25949
|
+
readonly fingerprint: string;
|
|
25950
|
+
}
|
|
25951
|
+
|
|
25130
25952
|
interface PriceInclusivity {
|
|
25131
25953
|
readonly tax?: boolean;
|
|
25132
25954
|
readonly duty?: boolean;
|
|
@@ -25379,7 +26201,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25379
26201
|
readonly product_id?: string;
|
|
25380
26202
|
readonly request_id: string;
|
|
25381
26203
|
readonly hs6_code: string;
|
|
25382
|
-
readonly restricted_regions: io.flow.sellability.v0.models.
|
|
26204
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
25383
26205
|
readonly rule_ids: string[];
|
|
25384
26206
|
}
|
|
25385
26207
|
|
|
@@ -25392,7 +26214,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25392
26214
|
}
|
|
25393
26215
|
|
|
25394
26216
|
interface ProductSellabilityInternalResult {
|
|
25395
|
-
readonly restricted_regions: io.flow.sellability.v0.models.
|
|
26217
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
25396
26218
|
readonly rule_ids: string[];
|
|
25397
26219
|
}
|
|
25398
26220
|
|
|
@@ -25402,7 +26224,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25402
26224
|
readonly request_id: string;
|
|
25403
26225
|
readonly hs6_code: string;
|
|
25404
26226
|
readonly restricted_regions?: string[];
|
|
25405
|
-
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.
|
|
26227
|
+
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
25406
26228
|
readonly rule_ids?: string[];
|
|
25407
26229
|
readonly taxonomy_category?: string;
|
|
25408
26230
|
}
|
|
@@ -25438,6 +26260,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25438
26260
|
readonly shipping_notification_id: string;
|
|
25439
26261
|
}
|
|
25440
26262
|
|
|
26263
|
+
interface ProofOfPostingSynthetic {
|
|
26264
|
+
readonly discriminator: 'synthetic';
|
|
26265
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
26266
|
+
readonly created_at: string;
|
|
26267
|
+
}
|
|
26268
|
+
|
|
25441
26269
|
interface ProofOfPostingTimeElapsed {
|
|
25442
26270
|
readonly discriminator: 'time_elapsed';
|
|
25443
26271
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -25917,6 +26745,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25917
26745
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
25918
26746
|
}
|
|
25919
26747
|
|
|
26748
|
+
interface ReportAmountRange {
|
|
26749
|
+
readonly min?: number;
|
|
26750
|
+
readonly max?: number;
|
|
26751
|
+
}
|
|
26752
|
+
|
|
25920
26753
|
interface ReportBankAccount {
|
|
25921
26754
|
readonly id?: string;
|
|
25922
26755
|
readonly last4?: string;
|
|
@@ -25941,6 +26774,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25941
26774
|
interface ReportFilter {
|
|
25942
26775
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
25943
26776
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
26777
|
+
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
25944
26778
|
}
|
|
25945
26779
|
|
|
25946
26780
|
interface ReportForm {
|
|
@@ -26379,7 +27213,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26379
27213
|
interface RestrictionOrganization {
|
|
26380
27214
|
readonly id: string;
|
|
26381
27215
|
readonly name: string;
|
|
26382
|
-
readonly environment: io.flow.
|
|
27216
|
+
readonly environment: io.flow.restrictions.v0.enums.RestrictionEnvironment;
|
|
26383
27217
|
readonly url?: string;
|
|
26384
27218
|
readonly approval_status?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
26385
27219
|
readonly screening_status?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
@@ -26430,7 +27264,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26430
27264
|
interface RestrictionOrganizationSummary {
|
|
26431
27265
|
readonly id: string;
|
|
26432
27266
|
readonly name: string;
|
|
26433
|
-
readonly environment: io.flow.
|
|
27267
|
+
readonly environment: io.flow.restrictions.v0.enums.RestrictionEnvironment;
|
|
26434
27268
|
readonly source: io.flow.internal.v0.enums.OrganizationSource;
|
|
26435
27269
|
}
|
|
26436
27270
|
|
|
@@ -26498,7 +27332,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26498
27332
|
readonly attribute_names?: string[];
|
|
26499
27333
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
26500
27334
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
26501
|
-
readonly activation_status
|
|
27335
|
+
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
26502
27336
|
}
|
|
26503
27337
|
|
|
26504
27338
|
interface RestrictionRuleDecisionForm {
|
|
@@ -26559,7 +27393,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26559
27393
|
readonly attribute_names?: string[];
|
|
26560
27394
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
26561
27395
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
26562
|
-
readonly activation_status
|
|
27396
|
+
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
26563
27397
|
}
|
|
26564
27398
|
|
|
26565
27399
|
interface RestrictionRuleLaneExemption {
|
|
@@ -26623,23 +27457,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26623
27457
|
readonly oldest_pv_product_date_transacting: string;
|
|
26624
27458
|
readonly oldest_pc_product_date_setup_complete: string;
|
|
26625
27459
|
readonly oldest_pc_product_date_transacting: string;
|
|
26626
|
-
readonly num_orgs_setup_complete_prs: number;
|
|
26627
|
-
readonly num_products_setup_complete_prs: number;
|
|
26628
|
-
readonly num_orgs_transacting_prs: number;
|
|
26629
|
-
readonly num_products_transacting_prs: number;
|
|
26630
|
-
readonly oldest_pr_product_date_setup_complete: string;
|
|
26631
|
-
readonly oldest_pr_date_transacting: string;
|
|
26632
27460
|
readonly percent_products_reviewed_transacting?: number;
|
|
26633
27461
|
readonly num_pv_inflow_net_new: number;
|
|
26634
27462
|
readonly num_pv_outflow_human_decisions: number;
|
|
26635
27463
|
readonly num_pv_outflow_auto_review_decisions: number;
|
|
26636
27464
|
readonly num_pv_outflow_side_effect_decisions: number;
|
|
26637
|
-
readonly num_pr_inflow_net_new: number;
|
|
26638
|
-
readonly num_pr_outflow_human_decisions: number;
|
|
26639
|
-
readonly num_pr_outflow_auto_review_decisions: number;
|
|
26640
|
-
readonly num_pr_outflow_side_effect_decisions: number;
|
|
26641
27465
|
readonly num_pending_decisions_transacting: number;
|
|
26642
|
-
readonly oldest_insufficient_details_pv_onboarding?: string;
|
|
26643
27466
|
readonly oldest_insufficient_details_pv_active?: string;
|
|
26644
27467
|
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
26645
27468
|
readonly num_products_with_fs_result?: number;
|
|
@@ -26792,6 +27615,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26792
27615
|
readonly added_on: string;
|
|
26793
27616
|
}
|
|
26794
27617
|
|
|
27618
|
+
interface RohanItemDeleted {
|
|
27619
|
+
readonly discriminator: 'rohan_item_deleted';
|
|
27620
|
+
readonly event_id: string;
|
|
27621
|
+
readonly timestamp: string;
|
|
27622
|
+
readonly id: string;
|
|
27623
|
+
}
|
|
27624
|
+
|
|
26795
27625
|
interface RohanItemForm {
|
|
26796
27626
|
readonly number: string;
|
|
26797
27627
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -26800,6 +27630,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26800
27630
|
readonly added_on: string;
|
|
26801
27631
|
}
|
|
26802
27632
|
|
|
27633
|
+
interface RohanItemUpserted {
|
|
27634
|
+
readonly discriminator: 'rohan_item_upserted';
|
|
27635
|
+
readonly event_id: string;
|
|
27636
|
+
readonly timestamp: string;
|
|
27637
|
+
readonly item: io.flow.internal.v0.models.RohanItem;
|
|
27638
|
+
}
|
|
27639
|
+
|
|
26803
27640
|
interface RoutingAccount {
|
|
26804
27641
|
readonly discriminator: 'routing_account';
|
|
26805
27642
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -26853,6 +27690,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26853
27690
|
readonly added_on: string;
|
|
26854
27691
|
}
|
|
26855
27692
|
|
|
27693
|
+
interface SarveshItemDeleted {
|
|
27694
|
+
readonly discriminator: 'sarvesh_item_deleted';
|
|
27695
|
+
readonly event_id: string;
|
|
27696
|
+
readonly timestamp: string;
|
|
27697
|
+
readonly id: string;
|
|
27698
|
+
}
|
|
27699
|
+
|
|
26856
27700
|
interface SarveshItemForm {
|
|
26857
27701
|
readonly number: string;
|
|
26858
27702
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -26861,6 +27705,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26861
27705
|
readonly added_on: string;
|
|
26862
27706
|
}
|
|
26863
27707
|
|
|
27708
|
+
interface SarveshItemUpserted {
|
|
27709
|
+
readonly discriminator: 'sarvesh_item_upserted';
|
|
27710
|
+
readonly event_id: string;
|
|
27711
|
+
readonly timestamp: string;
|
|
27712
|
+
readonly item: io.flow.internal.v0.models.SarveshItem;
|
|
27713
|
+
}
|
|
27714
|
+
|
|
26864
27715
|
interface ScheduledPayment {
|
|
26865
27716
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
26866
27717
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -26960,9 +27811,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26960
27811
|
readonly status: io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
26961
27812
|
readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
26962
27813
|
readonly current_rule_ids?: string[];
|
|
26963
|
-
readonly current_restricted_regions?: io.flow.sellability.v0.models.
|
|
27814
|
+
readonly current_restricted_regions?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
26964
27815
|
readonly merchant_rule_ids?: string[];
|
|
26965
|
-
readonly merchant_restricted_regions?: io.flow.sellability.v0.models.
|
|
27816
|
+
readonly merchant_restricted_regions?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
26966
27817
|
readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
26967
27818
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
26968
27819
|
}
|
|
@@ -27014,6 +27865,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27014
27865
|
readonly customer_price: number;
|
|
27015
27866
|
}
|
|
27016
27867
|
|
|
27868
|
+
interface ShippingRateEstimateAvailableInternal {
|
|
27869
|
+
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
27870
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
27871
|
+
readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
|
|
27872
|
+
readonly total_amount: io.flow.common.v0.models.Money;
|
|
27873
|
+
readonly base_amount: io.flow.common.v0.models.Money;
|
|
27874
|
+
readonly fees: io.flow.ratecard.v0.unions.RatecardFee[];
|
|
27875
|
+
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
27876
|
+
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
27877
|
+
readonly weight_break?: number;
|
|
27878
|
+
readonly ratecard_id?: string;
|
|
27879
|
+
readonly lane_id?: string;
|
|
27880
|
+
readonly rate_level_key?: string;
|
|
27881
|
+
readonly glbe_shipping_method_id?: string;
|
|
27882
|
+
readonly glbe_proposition_name?: string;
|
|
27883
|
+
readonly channel_revenue_share_percentage?: number;
|
|
27884
|
+
readonly distance_unit_of_measurement?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
27885
|
+
readonly weight_unit_of_measurement?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
27886
|
+
}
|
|
27887
|
+
|
|
27888
|
+
interface ShippingRateEstimateInternal {
|
|
27889
|
+
readonly channel_id: string;
|
|
27890
|
+
readonly organization_id: string;
|
|
27891
|
+
readonly service: string;
|
|
27892
|
+
readonly origin_address: io.flow.common.v0.models.Address;
|
|
27893
|
+
readonly destination_address: io.flow.common.v0.models.Address;
|
|
27894
|
+
readonly shipping_date_time: string;
|
|
27895
|
+
readonly available: io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal[];
|
|
27896
|
+
}
|
|
27897
|
+
|
|
27898
|
+
interface ShippingRateEstimateRequestInternal {
|
|
27899
|
+
readonly channel_id: string;
|
|
27900
|
+
readonly organization_id: string;
|
|
27901
|
+
readonly origin_address: io.flow.common.v0.models.Address;
|
|
27902
|
+
readonly destination_address: io.flow.common.v0.models.Address;
|
|
27903
|
+
readonly package_dimensions: io.flow.common.v0.models.Dimension;
|
|
27904
|
+
readonly shipping_date_time: string;
|
|
27905
|
+
readonly service: string;
|
|
27906
|
+
readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
|
|
27907
|
+
readonly duties_owed?: io.flow.common.v0.models.Money;
|
|
27908
|
+
readonly taxes_owed?: io.flow.common.v0.models.Money;
|
|
27909
|
+
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
27910
|
+
readonly include_unpublished?: boolean;
|
|
27911
|
+
}
|
|
27912
|
+
|
|
27017
27913
|
interface ShopifyCatalogPublication {
|
|
27018
27914
|
readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
27019
27915
|
}
|
|
@@ -27260,6 +28156,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27260
28156
|
readonly shopify: io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
27261
28157
|
readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
27262
28158
|
readonly discrepancy_data: io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
28159
|
+
readonly organization_metrics?: io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
|
|
28160
|
+
}
|
|
28161
|
+
|
|
28162
|
+
interface ShopifyMarketsOrganizationOrderMetrics {
|
|
28163
|
+
readonly organization_id: string;
|
|
28164
|
+
readonly shopify_order_count: number;
|
|
28165
|
+
readonly internal_order_count: number;
|
|
28166
|
+
readonly discrepancy_count?: number;
|
|
27263
28167
|
}
|
|
27264
28168
|
|
|
27265
28169
|
interface ShopifyMarketsQueuedRecord {
|
|
@@ -27736,6 +28640,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27736
28640
|
|
|
27737
28641
|
interface ShopperBreakdown {
|
|
27738
28642
|
readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28643
|
+
readonly product_purchase_price?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27739
28644
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27740
28645
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27741
28646
|
readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -28473,6 +29378,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28473
29378
|
readonly tax_transaction: io.flow.internal.v0.models.TaxTransaction;
|
|
28474
29379
|
}
|
|
28475
29380
|
|
|
29381
|
+
interface TaxTypeTotal {
|
|
29382
|
+
readonly value: io.flow.common.v0.models.Money;
|
|
29383
|
+
}
|
|
29384
|
+
|
|
28476
29385
|
interface TaxonomyAlignmentCheckResult {
|
|
28477
29386
|
readonly status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
28478
29387
|
readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
@@ -29381,8 +30290,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29381
30290
|
| io.flow.internal.v0.models.ExportFailed
|
|
29382
30291
|
| io.flow.internal.v0.models.FeatureUpserted
|
|
29383
30292
|
| io.flow.internal.v0.models.FeatureDeleted
|
|
29384
|
-
| io.flow.internal.v0.models.OrganizationBooleanValueUpserted
|
|
29385
|
-
| io.flow.internal.v0.models.OrganizationBooleanValueDeleted
|
|
29386
30293
|
| io.flow.internal.v0.models.AccountSettingsUpserted
|
|
29387
30294
|
| io.flow.internal.v0.models.AccountSettingsDeleted
|
|
29388
30295
|
| io.flow.internal.v0.models.AccountProcessingRatesUpserted
|
|
@@ -29618,6 +30525,22 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29618
30525
|
| io.flow.internal.v0.models.StripeConnectReportRecordDeleted
|
|
29619
30526
|
| io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
|
|
29620
30527
|
| io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
|
|
30528
|
+
| io.flow.internal.v0.models.AnirbanItemUpserted
|
|
30529
|
+
| io.flow.internal.v0.models.AnirbanItemDeleted
|
|
30530
|
+
| io.flow.internal.v0.models.SarveshItemUpserted
|
|
30531
|
+
| io.flow.internal.v0.models.SarveshItemDeleted
|
|
30532
|
+
| io.flow.internal.v0.models.HoseinItemUpserted
|
|
30533
|
+
| io.flow.internal.v0.models.HoseinItemDeleted
|
|
30534
|
+
| io.flow.internal.v0.models.NiallItemUpserted
|
|
30535
|
+
| io.flow.internal.v0.models.NiallItemDeleted
|
|
30536
|
+
| io.flow.internal.v0.models.RohanItemUpserted
|
|
30537
|
+
| io.flow.internal.v0.models.RohanItemDeleted
|
|
30538
|
+
| io.flow.internal.v0.models.AldoItemUpserted
|
|
30539
|
+
| io.flow.internal.v0.models.AldoItemDeleted
|
|
30540
|
+
| io.flow.internal.v0.models.AnshItemUpserted
|
|
30541
|
+
| io.flow.internal.v0.models.AnshItemDeleted
|
|
30542
|
+
| io.flow.internal.v0.models.GabrielItemUpserted
|
|
30543
|
+
| io.flow.internal.v0.models.GabrielItemDeleted
|
|
29621
30544
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
29622
30545
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
29623
30546
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -29767,7 +30690,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29767
30690
|
| io.flow.internal.v0.models.ProofOfPostingShippingNotification
|
|
29768
30691
|
| io.flow.internal.v0.models.ProofOfPostingOrderCancellation
|
|
29769
30692
|
| io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment
|
|
29770
|
-
| io.flow.internal.v0.models.ProofOfPostingTimeElapsed
|
|
30693
|
+
| io.flow.internal.v0.models.ProofOfPostingTimeElapsed
|
|
30694
|
+
| io.flow.internal.v0.models.ProofOfPostingSynthetic;
|
|
29771
30695
|
type RestrictionAttributeRuleCondition =
|
|
29772
30696
|
| io.flow.internal.v0.models.RestrictionAttributeConditionSingle
|
|
29773
30697
|
| io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
|
|
@@ -29998,8 +30922,10 @@ export type AfterpayRefundUpserted =
|
|
|
29998
30922
|
io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
29999
30923
|
export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
30000
30924
|
export type AldoItem = io.flow.internal.v0.models.AldoItem;
|
|
30925
|
+
export type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
|
|
30001
30926
|
export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
|
|
30002
30927
|
export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
|
|
30928
|
+
export type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
|
|
30003
30929
|
export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
30004
30930
|
export type AllOrganizationsMembership =
|
|
30005
30931
|
io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
@@ -30007,11 +30933,16 @@ export type AllocationItemReference =
|
|
|
30007
30933
|
io.flow.internal.v0.models.AllocationItemReference;
|
|
30008
30934
|
export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
30009
30935
|
export type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
|
|
30936
|
+
export type AnirbanItemDeleted = io.flow.internal.v0.models.AnirbanItemDeleted;
|
|
30010
30937
|
export type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
|
|
30011
30938
|
export type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
|
|
30939
|
+
export type AnirbanItemUpserted =
|
|
30940
|
+
io.flow.internal.v0.models.AnirbanItemUpserted;
|
|
30012
30941
|
export type AnshItem = io.flow.internal.v0.models.AnshItem;
|
|
30942
|
+
export type AnshItemDeleted = io.flow.internal.v0.models.AnshItemDeleted;
|
|
30013
30943
|
export type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
|
|
30014
30944
|
export type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
|
|
30945
|
+
export type AnshItemUpserted = io.flow.internal.v0.models.AnshItemUpserted;
|
|
30015
30946
|
export type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
|
|
30016
30947
|
export type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
30017
30948
|
export type ApplePayAuthorizationPayload =
|
|
@@ -30047,6 +30978,11 @@ export type AuthorizedShippingCharge =
|
|
|
30047
30978
|
io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
30048
30979
|
export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
30049
30980
|
export type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
30981
|
+
export type B2BTaxLedger = io.flow.internal.v0.models.B2BTaxLedger;
|
|
30982
|
+
export type B2BTaxLedgerDocumentType =
|
|
30983
|
+
io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
30984
|
+
export type B2BTaxLedgerForm = io.flow.internal.v0.models.B2BTaxLedgerForm;
|
|
30985
|
+
export type B2BTaxRateType = io.flow.internal.v0.enums.B2BTaxRateType;
|
|
30050
30986
|
export type BankAccount = io.flow.internal.v0.models.BankAccount;
|
|
30051
30987
|
export type BankAccountReference =
|
|
30052
30988
|
io.flow.internal.v0.models.BankAccountReference;
|
|
@@ -30166,6 +31102,8 @@ export type BulkClassificationAction =
|
|
|
30166
31102
|
io.flow.internal.v0.models.BulkClassificationAction;
|
|
30167
31103
|
export type BulkDutyUpdateValidationError =
|
|
30168
31104
|
io.flow.internal.v0.models.BulkDutyUpdateValidationError;
|
|
31105
|
+
export type Cafe24MarketsWebhook =
|
|
31106
|
+
io.flow.internal.v0.models.Cafe24MarketsWebhook;
|
|
30169
31107
|
export type CalculatedTaxAmount =
|
|
30170
31108
|
io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
30171
31109
|
export type CalculationStampingLineItem =
|
|
@@ -30460,6 +31398,8 @@ export type ClassificationError =
|
|
|
30460
31398
|
io.flow.internal.v0.models.ClassificationError;
|
|
30461
31399
|
export type ClassificationErrorCode =
|
|
30462
31400
|
io.flow.internal.v0.enums.ClassificationErrorCode;
|
|
31401
|
+
export type ClassificationFailureReason =
|
|
31402
|
+
io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
30463
31403
|
export type ClassificationForm = io.flow.internal.v0.unions.ClassificationForm;
|
|
30464
31404
|
export type ClassificationFormWrapper =
|
|
30465
31405
|
io.flow.internal.v0.models.ClassificationFormWrapper;
|
|
@@ -30836,7 +31776,6 @@ export type FeatureDefaultValue =
|
|
|
30836
31776
|
export type FeatureDeleted = io.flow.internal.v0.models.FeatureDeleted;
|
|
30837
31777
|
export type FeatureForm = io.flow.internal.v0.models.FeatureForm;
|
|
30838
31778
|
export type FeatureGeoForm = io.flow.internal.v0.models.FeatureGeoForm;
|
|
30839
|
-
export type FeatureIdReference = io.flow.internal.v0.models.FeatureIdReference;
|
|
30840
31779
|
export type FeatureReference = io.flow.internal.v0.models.FeatureReference;
|
|
30841
31780
|
export type FeatureReleaseForm = io.flow.internal.v0.models.FeatureReleaseForm;
|
|
30842
31781
|
export type FeatureRule = io.flow.internal.v0.unions.FeatureRule;
|
|
@@ -31027,6 +31966,12 @@ export type FxRevenueRecognitionRate =
|
|
|
31027
31966
|
io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
31028
31967
|
export type FxRevenueRecognitionSource =
|
|
31029
31968
|
io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
31969
|
+
export type GabrielItem = io.flow.internal.v0.models.GabrielItem;
|
|
31970
|
+
export type GabrielItemDeleted = io.flow.internal.v0.models.GabrielItemDeleted;
|
|
31971
|
+
export type GabrielItemForm = io.flow.internal.v0.models.GabrielItemForm;
|
|
31972
|
+
export type GabrielItemType = io.flow.internal.v0.enums.GabrielItemType;
|
|
31973
|
+
export type GabrielItemUpserted =
|
|
31974
|
+
io.flow.internal.v0.models.GabrielItemUpserted;
|
|
31030
31975
|
export type GeIngestionFileStatus =
|
|
31031
31976
|
io.flow.internal.v0.enums.GeIngestionFileStatus;
|
|
31032
31977
|
export type GeRevenueShareTransaction =
|
|
@@ -31087,9 +32032,12 @@ export type HarmonizeFullyRequestV2 =
|
|
|
31087
32032
|
export type HarmonizedItemsHs6Export =
|
|
31088
32033
|
io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
31089
32034
|
export type HoseinItem = io.flow.internal.v0.models.HoseinItem;
|
|
32035
|
+
export type HoseinItemDeleted = io.flow.internal.v0.models.HoseinItemDeleted;
|
|
31090
32036
|
export type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
|
|
31091
32037
|
export type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
|
|
32038
|
+
export type HoseinItemUpserted = io.flow.internal.v0.models.HoseinItemUpserted;
|
|
31092
32039
|
export type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
32040
|
+
export type Hs6CodeSource = io.flow.internal.v0.enums.Hs6CodeSource;
|
|
31093
32041
|
export type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
31094
32042
|
export type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
31095
32043
|
export type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
|
|
@@ -31290,6 +32238,10 @@ export type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
|
31290
32238
|
export type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
31291
32239
|
export type Landmark = io.flow.internal.v0.models.Landmark;
|
|
31292
32240
|
export type LastFailureSummary = io.flow.internal.v0.models.LastFailureSummary;
|
|
32241
|
+
export type LedgerReport = io.flow.internal.v0.models.LedgerReport;
|
|
32242
|
+
export type LedgerReportType = io.flow.internal.v0.enums.LedgerReportType;
|
|
32243
|
+
export type LedgerReportUrl = io.flow.internal.v0.models.LedgerReportUrl;
|
|
32244
|
+
export type LedgerReportUrlType = io.flow.internal.v0.enums.LedgerReportUrlType;
|
|
31293
32245
|
export type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
|
|
31294
32246
|
export type LevyRateSummaryUpserted =
|
|
31295
32247
|
io.flow.internal.v0.models.LevyRateSummaryUpserted;
|
|
@@ -31420,8 +32372,10 @@ export type NegativeDebitMetrics =
|
|
|
31420
32372
|
export type NextBillingStatement =
|
|
31421
32373
|
io.flow.internal.v0.models.NextBillingStatement;
|
|
31422
32374
|
export type NiallItem = io.flow.internal.v0.models.NiallItem;
|
|
32375
|
+
export type NiallItemDeleted = io.flow.internal.v0.models.NiallItemDeleted;
|
|
31423
32376
|
export type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
|
|
31424
32377
|
export type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
|
|
32378
|
+
export type NiallItemUpserted = io.flow.internal.v0.models.NiallItemUpserted;
|
|
31425
32379
|
export type NoCalculatedTaxAmount =
|
|
31426
32380
|
io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
31427
32381
|
export type NoClassificationForm =
|
|
@@ -31577,12 +32531,6 @@ export type OrganizationBankAccountUpserted =
|
|
|
31577
32531
|
io.flow.internal.v0.models.OrganizationBankAccountUpserted;
|
|
31578
32532
|
export type OrganizationBillingStatement =
|
|
31579
32533
|
io.flow.internal.v0.models.OrganizationBillingStatement;
|
|
31580
|
-
export type OrganizationBooleanValue =
|
|
31581
|
-
io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
31582
|
-
export type OrganizationBooleanValueDeleted =
|
|
31583
|
-
io.flow.internal.v0.models.OrganizationBooleanValueDeleted;
|
|
31584
|
-
export type OrganizationBooleanValueUpserted =
|
|
31585
|
-
io.flow.internal.v0.models.OrganizationBooleanValueUpserted;
|
|
31586
32534
|
export type OrganizationBusinessEntity =
|
|
31587
32535
|
io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
31588
32536
|
export type OrganizationBusinessEntityDeleted =
|
|
@@ -31858,6 +32806,26 @@ export type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
|
|
|
31858
32806
|
export type Prediction = io.flow.internal.v0.models.Prediction;
|
|
31859
32807
|
export type PreferredBillingSchedule =
|
|
31860
32808
|
io.flow.internal.v0.enums.PreferredBillingSchedule;
|
|
32809
|
+
export type PreonboardingClassificationDecision =
|
|
32810
|
+
io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
32811
|
+
export type PreonboardingClassificationPlatform =
|
|
32812
|
+
io.flow.internal.v0.enums.PreonboardingClassificationPlatform;
|
|
32813
|
+
export type PreonboardingClassificationRabbitmqEnvelope =
|
|
32814
|
+
io.flow.internal.v0.models.PreonboardingClassificationRabbitmqEnvelope;
|
|
32815
|
+
export type PreonboardingClassificationRabbitmqMessage =
|
|
32816
|
+
io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage;
|
|
32817
|
+
export type PreonboardingClassificationRequest =
|
|
32818
|
+
io.flow.internal.v0.models.PreonboardingClassificationRequest;
|
|
32819
|
+
export type PreonboardingClassificationResult =
|
|
32820
|
+
io.flow.internal.v0.models.PreonboardingClassificationResult;
|
|
32821
|
+
export type PreonboardingClassificationType =
|
|
32822
|
+
io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
32823
|
+
export type PreonboardingMerchant =
|
|
32824
|
+
io.flow.internal.v0.models.PreonboardingMerchant;
|
|
32825
|
+
export type PreonboardingRequestStatus =
|
|
32826
|
+
io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
32827
|
+
export type PreonboardingSellabilityResult =
|
|
32828
|
+
io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
31861
32829
|
export type PriceInclusivity = io.flow.internal.v0.models.PriceInclusivity;
|
|
31862
32830
|
export type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
31863
32831
|
export type PrioritizedCenterReference =
|
|
@@ -31951,6 +32919,8 @@ export type ProofOfPostingOrderCombinedShipment =
|
|
|
31951
32919
|
io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
31952
32920
|
export type ProofOfPostingShippingNotification =
|
|
31953
32921
|
io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
32922
|
+
export type ProofOfPostingSynthetic =
|
|
32923
|
+
io.flow.internal.v0.models.ProofOfPostingSynthetic;
|
|
31954
32924
|
export type ProofOfPostingTimeElapsed =
|
|
31955
32925
|
io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
31956
32926
|
export type PspDistribution = io.flow.internal.v0.models.PspDistribution;
|
|
@@ -32063,6 +33033,7 @@ export type RemittanceResponsibility =
|
|
|
32063
33033
|
io.flow.internal.v0.models.RemittanceResponsibility;
|
|
32064
33034
|
export type Report = io.flow.internal.v0.models.Report;
|
|
32065
33035
|
export type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
33036
|
+
export type ReportAmountRange = io.flow.internal.v0.models.ReportAmountRange;
|
|
32066
33037
|
export type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
32067
33038
|
export type ReportBankAccountCleartext =
|
|
32068
33039
|
io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -32277,8 +33248,10 @@ export type RevenueRecordUpserted =
|
|
|
32277
33248
|
export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
32278
33249
|
export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
32279
33250
|
export type RohanItem = io.flow.internal.v0.models.RohanItem;
|
|
33251
|
+
export type RohanItemDeleted = io.flow.internal.v0.models.RohanItemDeleted;
|
|
32280
33252
|
export type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
|
|
32281
33253
|
export type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
|
|
33254
|
+
export type RohanItemUpserted = io.flow.internal.v0.models.RohanItemUpserted;
|
|
32282
33255
|
export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
32283
33256
|
export type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
32284
33257
|
export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
@@ -32287,8 +33260,11 @@ export type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
|
|
|
32287
33260
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
32288
33261
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
32289
33262
|
export type SarveshItem = io.flow.internal.v0.models.SarveshItem;
|
|
33263
|
+
export type SarveshItemDeleted = io.flow.internal.v0.models.SarveshItemDeleted;
|
|
32290
33264
|
export type SarveshItemForm = io.flow.internal.v0.models.SarveshItemForm;
|
|
32291
33265
|
export type SarveshItemType = io.flow.internal.v0.enums.SarveshItemType;
|
|
33266
|
+
export type SarveshItemUpserted =
|
|
33267
|
+
io.flow.internal.v0.models.SarveshItemUpserted;
|
|
32292
33268
|
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
32293
33269
|
export type Screen = io.flow.internal.v0.models.Screen;
|
|
32294
33270
|
export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -32324,6 +33300,12 @@ export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
|
32324
33300
|
export type ShippingMethodReference =
|
|
32325
33301
|
io.flow.internal.v0.models.ShippingMethodReference;
|
|
32326
33302
|
export type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
|
|
33303
|
+
export type ShippingRateEstimateAvailableInternal =
|
|
33304
|
+
io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
|
|
33305
|
+
export type ShippingRateEstimateInternal =
|
|
33306
|
+
io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
33307
|
+
export type ShippingRateEstimateRequestInternal =
|
|
33308
|
+
io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
|
|
32327
33309
|
export type ShopifyCatalogPublication =
|
|
32328
33310
|
io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
32329
33311
|
export type ShopifyChannelOrganizationToken =
|
|
@@ -32399,6 +33381,8 @@ export type ShopifyMarketsOrderVersionWithShopId =
|
|
|
32399
33381
|
io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId;
|
|
32400
33382
|
export type ShopifyMarketsOrdersMetrics =
|
|
32401
33383
|
io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
33384
|
+
export type ShopifyMarketsOrganizationOrderMetrics =
|
|
33385
|
+
io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics;
|
|
32402
33386
|
export type ShopifyMarketsQueuedRecord =
|
|
32403
33387
|
io.flow.internal.v0.models.ShopifyMarketsQueuedRecord;
|
|
32404
33388
|
export type ShopifyMarketsQueuedRecordType =
|
|
@@ -32710,6 +33694,7 @@ export type TaxTransactionDeleted =
|
|
|
32710
33694
|
export type TaxTransactionType = io.flow.internal.v0.enums.TaxTransactionType;
|
|
32711
33695
|
export type TaxTransactionUpserted =
|
|
32712
33696
|
io.flow.internal.v0.models.TaxTransactionUpserted;
|
|
33697
|
+
export type TaxTypeTotal = io.flow.internal.v0.models.TaxTypeTotal;
|
|
32713
33698
|
export type TaxonomyAlignmentCheckResult =
|
|
32714
33699
|
io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
|
|
32715
33700
|
export type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
|