@flowio/types 11.24.140 → 11.24.141
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 +77 -2
- package/dist/api.d.ts +5776 -2359
- package/package.json +1 -1
- package/src/api-internal.ts +94 -0
- package/src/api.ts +7567 -3170
package/package.json
CHANGED
package/src/api-internal.ts
CHANGED
|
@@ -5494,6 +5494,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
5494
5494
|
readonly updated_at?: string;
|
|
5495
5495
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
5496
5496
|
readonly shipping_cost_guarantee?: io.flow.label.v0.enums.ShippingCostGuarantee;
|
|
5497
|
+
readonly delivery_window_days_from?: number;
|
|
5498
|
+
readonly delivery_window_days_to?: number;
|
|
5497
5499
|
}
|
|
5498
5500
|
|
|
5499
5501
|
interface ShippingLabelDocument {
|
|
@@ -10570,6 +10572,13 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10570
10572
|
readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
10571
10573
|
}
|
|
10572
10574
|
|
|
10575
|
+
interface ChannelOrderTaxAndDutyInclusivitySetting {
|
|
10576
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
10577
|
+
readonly order_number: string;
|
|
10578
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
10579
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
10580
|
+
}
|
|
10581
|
+
|
|
10573
10582
|
interface ChannelOrganizationDomains {
|
|
10574
10583
|
readonly internal: string;
|
|
10575
10584
|
readonly external: string;
|
|
@@ -17438,6 +17447,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17438
17447
|
| 'channel_order_acceptance_failed'
|
|
17439
17448
|
| 'channel_shop_statistics_upserted'
|
|
17440
17449
|
| 'channel_shop_statistics_deleted'
|
|
17450
|
+
| 'channel_order_tax_and_duty_inclusivity_setting_upserted'
|
|
17451
|
+
| 'channel_order_tax_and_duty_inclusivity_setting_deleted'
|
|
17441
17452
|
| 'commercial_invoice_internal_upserted'
|
|
17442
17453
|
| 'commercial_invoice_internal_deleted'
|
|
17443
17454
|
| 'internal_channel_rate_deleted'
|
|
@@ -17853,6 +17864,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17853
17864
|
| 'fulfillment_cancel'
|
|
17854
17865
|
| 'fulfillment_generate_label';
|
|
17855
17866
|
type ItemType = 'standard' | 'multi_product';
|
|
17867
|
+
type JohnStrongItemType = 'physical' | 'digital';
|
|
17856
17868
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
17857
17869
|
type KeywordType = 'positive' | 'negative';
|
|
17858
17870
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
@@ -20553,6 +20565,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20553
20565
|
readonly channel_order_summary: io.flow.internal.v0.models.ChannelOrderSummary;
|
|
20554
20566
|
}
|
|
20555
20567
|
|
|
20568
|
+
interface ChannelOrderTaxAndDutyInclusivitySetting {
|
|
20569
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
20570
|
+
readonly order_number: string;
|
|
20571
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
20572
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
20573
|
+
}
|
|
20574
|
+
|
|
20575
|
+
interface ChannelOrderTaxAndDutyInclusivitySettingDeleted {
|
|
20576
|
+
readonly discriminator: 'channel_order_tax_and_duty_inclusivity_setting_deleted';
|
|
20577
|
+
readonly event_id: string;
|
|
20578
|
+
readonly timestamp: string;
|
|
20579
|
+
readonly organization: string;
|
|
20580
|
+
readonly id: string;
|
|
20581
|
+
}
|
|
20582
|
+
|
|
20583
|
+
interface ChannelOrderTaxAndDutyInclusivitySettingUpserted {
|
|
20584
|
+
readonly discriminator: 'channel_order_tax_and_duty_inclusivity_setting_upserted';
|
|
20585
|
+
readonly event_id: string;
|
|
20586
|
+
readonly timestamp: string;
|
|
20587
|
+
readonly channel_order_tax_and_duty_inclusivity_setting: io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySetting;
|
|
20588
|
+
}
|
|
20589
|
+
|
|
20556
20590
|
interface ChannelOrganizationDomains {
|
|
20557
20591
|
readonly internal: string;
|
|
20558
20592
|
readonly external: string;
|
|
@@ -23538,6 +23572,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23538
23572
|
readonly guaranteed_shipping_calibrated_output: io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
23539
23573
|
}
|
|
23540
23574
|
|
|
23575
|
+
interface GuaranteedShippingCalibration {
|
|
23576
|
+
readonly channel_id: string;
|
|
23577
|
+
readonly organization_id: string;
|
|
23578
|
+
readonly destination_country: string;
|
|
23579
|
+
}
|
|
23580
|
+
|
|
23581
|
+
interface GuaranteedShippingCalibrationForm {
|
|
23582
|
+
readonly lanes: io.flow.internal.v0.models.GuaranteedShippingCalibrationLaneForm[];
|
|
23583
|
+
}
|
|
23584
|
+
|
|
23585
|
+
interface GuaranteedShippingCalibrationLaneForm {
|
|
23586
|
+
readonly channel_id: string;
|
|
23587
|
+
readonly organization_id: string;
|
|
23588
|
+
readonly destination_country?: string;
|
|
23589
|
+
}
|
|
23590
|
+
|
|
23541
23591
|
interface GuaranteedShippingPublishedOutput {
|
|
23542
23592
|
readonly id: string;
|
|
23543
23593
|
readonly organization_id: string;
|
|
@@ -23573,6 +23623,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23573
23623
|
readonly fees_coefficient: number;
|
|
23574
23624
|
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
23575
23625
|
readonly created_at: number;
|
|
23626
|
+
readonly guaranteed_pricing_enabled: boolean;
|
|
23627
|
+
readonly guaranteed_shipping_enabled: boolean;
|
|
23576
23628
|
}
|
|
23577
23629
|
|
|
23578
23630
|
interface GuaranteedShippingSettingsDeleted {
|
|
@@ -23590,6 +23642,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23590
23642
|
readonly tax_and_duty_coefficient: number;
|
|
23591
23643
|
readonly fees_coefficient: number;
|
|
23592
23644
|
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
23645
|
+
readonly guaranteed_pricing_enabled: boolean;
|
|
23646
|
+
readonly guaranteed_shipping_enabled: boolean;
|
|
23593
23647
|
}
|
|
23594
23648
|
|
|
23595
23649
|
interface GuaranteedShippingSettingsUpdate {
|
|
@@ -24150,6 +24204,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24150
24204
|
>;
|
|
24151
24205
|
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
24152
24206
|
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
24207
|
+
readonly classification_resource_id?: string;
|
|
24153
24208
|
readonly taxonomy_category_classification_alignment?: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
24154
24209
|
readonly created_at?: string;
|
|
24155
24210
|
readonly updated_at?: string;
|
|
@@ -24293,6 +24348,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24293
24348
|
readonly values: string[];
|
|
24294
24349
|
}
|
|
24295
24350
|
|
|
24351
|
+
interface JohnStrongItem {
|
|
24352
|
+
readonly id: string;
|
|
24353
|
+
readonly number: string;
|
|
24354
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24355
|
+
readonly description?: string;
|
|
24356
|
+
readonly type: io.flow.internal.v0.enums.JohnStrongItemType;
|
|
24357
|
+
readonly added_on: string;
|
|
24358
|
+
}
|
|
24359
|
+
|
|
24360
|
+
interface JohnStrongItemForm {
|
|
24361
|
+
readonly number: string;
|
|
24362
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24363
|
+
readonly description?: string;
|
|
24364
|
+
readonly type: io.flow.internal.v0.enums.JohnStrongItemType;
|
|
24365
|
+
readonly added_on: string;
|
|
24366
|
+
}
|
|
24367
|
+
|
|
24296
24368
|
interface Journal {
|
|
24297
24369
|
readonly name: string;
|
|
24298
24370
|
readonly queued: number;
|
|
@@ -25524,6 +25596,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25524
25596
|
readonly organization_id: string;
|
|
25525
25597
|
readonly order_number: string;
|
|
25526
25598
|
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
25599
|
+
readonly refunded_at?: string;
|
|
25527
25600
|
}
|
|
25528
25601
|
|
|
25529
25602
|
interface OrderRefundTransactionDeleted {
|
|
@@ -28287,6 +28360,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28287
28360
|
readonly hs_code?: string;
|
|
28288
28361
|
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
28289
28362
|
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
28363
|
+
readonly classification_resource_id?: string;
|
|
28290
28364
|
readonly description: string;
|
|
28291
28365
|
readonly category?: string;
|
|
28292
28366
|
readonly categories: string[];
|
|
@@ -28415,6 +28489,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28415
28489
|
readonly hs_code?: string;
|
|
28416
28490
|
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
28417
28491
|
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
28492
|
+
readonly classification_resource_id?: string;
|
|
28418
28493
|
readonly url?: string;
|
|
28419
28494
|
readonly reviews: io.flow.internal.v0.models.RestrictionItemReview[];
|
|
28420
28495
|
readonly created_at: string;
|
|
@@ -31503,6 +31578,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31503
31578
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
31504
31579
|
readonly package_dimensions_source: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
31505
31580
|
readonly shipping_date_time?: string;
|
|
31581
|
+
readonly delivery_window_days_from?: number;
|
|
31582
|
+
readonly delivery_window_days_to?: number;
|
|
31506
31583
|
}
|
|
31507
31584
|
|
|
31508
31585
|
interface ViesResult {
|
|
@@ -31730,6 +31807,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31730
31807
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceFailed
|
|
31731
31808
|
| io.flow.internal.v0.models.ChannelShopStatisticsUpserted
|
|
31732
31809
|
| io.flow.internal.v0.models.ChannelShopStatisticsDeleted
|
|
31810
|
+
| io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingUpserted
|
|
31811
|
+
| io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingDeleted
|
|
31733
31812
|
| io.flow.internal.v0.models.CommercialInvoiceInternalUpserted
|
|
31734
31813
|
| io.flow.internal.v0.models.CommercialInvoiceInternalDeleted
|
|
31735
31814
|
| io.flow.internal.v0.models.InternalChannelRateDeleted
|
|
@@ -32829,6 +32908,12 @@ export type ChannelOrderSummaryFulfillmentDetails =
|
|
|
32829
32908
|
io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
32830
32909
|
export type ChannelOrderSummaryUpserted =
|
|
32831
32910
|
io.flow.internal.v0.models.ChannelOrderSummaryUpserted;
|
|
32911
|
+
export type ChannelOrderTaxAndDutyInclusivitySetting =
|
|
32912
|
+
io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySetting;
|
|
32913
|
+
export type ChannelOrderTaxAndDutyInclusivitySettingDeleted =
|
|
32914
|
+
io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingDeleted;
|
|
32915
|
+
export type ChannelOrderTaxAndDutyInclusivitySettingUpserted =
|
|
32916
|
+
io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingUpserted;
|
|
32832
32917
|
export type ChannelOrganizationDomains =
|
|
32833
32918
|
io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
32834
32919
|
export type ChannelOrganizationIdentifier =
|
|
@@ -33601,6 +33686,12 @@ export type GuaranteedShippingCalibratedOutputDeleted =
|
|
|
33601
33686
|
io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted;
|
|
33602
33687
|
export type GuaranteedShippingCalibratedOutputUpserted =
|
|
33603
33688
|
io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted;
|
|
33689
|
+
export type GuaranteedShippingCalibration =
|
|
33690
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibration;
|
|
33691
|
+
export type GuaranteedShippingCalibrationForm =
|
|
33692
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibrationForm;
|
|
33693
|
+
export type GuaranteedShippingCalibrationLaneForm =
|
|
33694
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibrationLaneForm;
|
|
33604
33695
|
export type GuaranteedShippingPublishedOutput =
|
|
33605
33696
|
io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
33606
33697
|
export type GuaranteedShippingPublishedOutputDeleted =
|
|
@@ -33778,6 +33869,9 @@ export type ItemSalesMarginVersion =
|
|
|
33778
33869
|
export type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
33779
33870
|
export type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
33780
33871
|
export type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
33872
|
+
export type JohnStrongItem = io.flow.internal.v0.models.JohnStrongItem;
|
|
33873
|
+
export type JohnStrongItemForm = io.flow.internal.v0.models.JohnStrongItemForm;
|
|
33874
|
+
export type JohnStrongItemType = io.flow.internal.v0.enums.JohnStrongItemType;
|
|
33781
33875
|
export type Journal = io.flow.internal.v0.models.Journal;
|
|
33782
33876
|
export type JournalFailure = io.flow.internal.v0.models.JournalFailure;
|
|
33783
33877
|
export type JournalOperation = io.flow.internal.v0.enums.JournalOperation;
|