@flowio/types 11.24.102 → 11.24.104
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 +296 -5
- package/dist/api.d.ts +21 -2
- package/package.json +2 -2
- package/src/api-internal.ts +387 -3
- package/src/api.ts +25 -1
package/src/api.ts
CHANGED
|
@@ -3759,7 +3759,9 @@ declare namespace io.flow.v0.enums {
|
|
|
3759
3759
|
| 'waiting_for_in_transit'
|
|
3760
3760
|
| 'waiting_for_next_payout_date'
|
|
3761
3761
|
| 'waiting_for_tracking_info'
|
|
3762
|
-
| 'waiting_for_positive_account_balance'
|
|
3762
|
+
| 'waiting_for_positive_account_balance'
|
|
3763
|
+
| 'unfulfilled_amount_greater_than_negative_balance'
|
|
3764
|
+
| 'account_payment_hold';
|
|
3763
3765
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
3764
3766
|
type PhysicalDeliverySpecialSerivce =
|
|
3765
3767
|
| 'cold_storage'
|
|
@@ -3832,6 +3834,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3832
3834
|
| 'Oversized'
|
|
3833
3835
|
| 'Restrict by Default'
|
|
3834
3836
|
| 'Supplements'
|
|
3837
|
+
| 'Tattoo Ink And PMU'
|
|
3835
3838
|
| 'Weapon'
|
|
3836
3839
|
| 'Wood';
|
|
3837
3840
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
@@ -4976,6 +4979,8 @@ declare namespace io.flow.v0.models {
|
|
|
4976
4979
|
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
4977
4980
|
readonly origin?: io.flow.v0.models.ShippingAddress;
|
|
4978
4981
|
readonly direction?: io.flow.v0.enums.Direction;
|
|
4982
|
+
readonly reference_id?: string;
|
|
4983
|
+
readonly hub_code?: string;
|
|
4979
4984
|
}
|
|
4980
4985
|
|
|
4981
4986
|
interface BrowseOptinResponses {
|
|
@@ -6592,6 +6597,12 @@ declare namespace io.flow.v0.models {
|
|
|
6592
6597
|
readonly minimum?: number;
|
|
6593
6598
|
}
|
|
6594
6599
|
|
|
6600
|
+
interface DestinationContactDetail {
|
|
6601
|
+
readonly title: string;
|
|
6602
|
+
readonly country: string;
|
|
6603
|
+
readonly import_identifier: string;
|
|
6604
|
+
}
|
|
6605
|
+
|
|
6595
6606
|
interface DetailedShippingLabelForm {
|
|
6596
6607
|
readonly discriminator: 'detailed_shipping_label_form';
|
|
6597
6608
|
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
@@ -6604,6 +6615,7 @@ declare namespace io.flow.v0.models {
|
|
|
6604
6615
|
readonly service?: string;
|
|
6605
6616
|
readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
6606
6617
|
readonly package_dimensions_source?: io.flow.v0.enums.PackageDimensionsSource;
|
|
6618
|
+
readonly reference_id?: string;
|
|
6607
6619
|
}
|
|
6608
6620
|
|
|
6609
6621
|
interface DetailedShippingNotificationForm {
|
|
@@ -8279,6 +8291,7 @@ declare namespace io.flow.v0.models {
|
|
|
8279
8291
|
readonly local?: io.flow.v0.models.Local;
|
|
8280
8292
|
readonly created_at?: string;
|
|
8281
8293
|
readonly updated_at?: string;
|
|
8294
|
+
readonly deleted_at?: string;
|
|
8282
8295
|
}
|
|
8283
8296
|
|
|
8284
8297
|
interface ItemAttributesPatchForm {
|
|
@@ -8304,6 +8317,7 @@ declare namespace io.flow.v0.models {
|
|
|
8304
8317
|
readonly attributes?: Record<string, string>;
|
|
8305
8318
|
readonly dimensions?: io.flow.v0.models.Dimensions;
|
|
8306
8319
|
readonly images?: io.flow.v0.models.ImageForm[];
|
|
8320
|
+
readonly deleted_at?: string;
|
|
8307
8321
|
}
|
|
8308
8322
|
|
|
8309
8323
|
interface ItemFormOverlay {
|
|
@@ -8317,6 +8331,7 @@ declare namespace io.flow.v0.models {
|
|
|
8317
8331
|
readonly attributes?: Record<string, string>;
|
|
8318
8332
|
readonly dimensions?: io.flow.v0.models.Dimensions;
|
|
8319
8333
|
readonly images?: io.flow.v0.models.ImageForm[];
|
|
8334
|
+
readonly deleted_at?: string;
|
|
8320
8335
|
}
|
|
8321
8336
|
|
|
8322
8337
|
interface ItemFormOverlayForm {
|
|
@@ -8329,6 +8344,7 @@ declare namespace io.flow.v0.models {
|
|
|
8329
8344
|
readonly attributes?: Record<string, string>;
|
|
8330
8345
|
readonly dimensions?: io.flow.v0.models.Dimensions;
|
|
8331
8346
|
readonly images?: io.flow.v0.models.ImageForm[];
|
|
8347
|
+
readonly deleted_at?: string;
|
|
8332
8348
|
}
|
|
8333
8349
|
|
|
8334
8350
|
interface ItemInserted {
|
|
@@ -8651,6 +8667,10 @@ declare namespace io.flow.v0.models {
|
|
|
8651
8667
|
readonly in_transit: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8652
8668
|
readonly delivered?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8653
8669
|
readonly rejected?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8670
|
+
readonly returned?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8671
|
+
readonly crossed_border?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8672
|
+
readonly destroyed?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8673
|
+
readonly return_reversal?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8654
8674
|
}
|
|
8655
8675
|
|
|
8656
8676
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -9389,6 +9409,7 @@ declare namespace io.flow.v0.models {
|
|
|
9389
9409
|
readonly tax_registration?: io.flow.v0.models.TaxRegistration;
|
|
9390
9410
|
readonly geo?: io.flow.v0.models.OrderGeo;
|
|
9391
9411
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
9412
|
+
readonly destination_contact_details?: io.flow.v0.models.DestinationContactDetail[];
|
|
9392
9413
|
}
|
|
9393
9414
|
|
|
9394
9415
|
interface OrderAddress {
|
|
@@ -13500,6 +13521,7 @@ declare namespace io.flow.v0.models {
|
|
|
13500
13521
|
readonly items: io.flow.v0.models.LineItemForm[];
|
|
13501
13522
|
readonly center_key?: string;
|
|
13502
13523
|
readonly direction?: io.flow.v0.enums.Direction;
|
|
13524
|
+
readonly reference_id?: string;
|
|
13503
13525
|
}
|
|
13504
13526
|
|
|
13505
13527
|
interface SummaryShippingNotificationForm {
|
|
@@ -15660,6 +15682,8 @@ export type DeliveryWindowSummary = io.flow.v0.models.DeliveryWindowSummary;
|
|
|
15660
15682
|
export type Deminimis = io.flow.v0.unions.Deminimis;
|
|
15661
15683
|
export type DeminimisPerItem = io.flow.v0.models.DeminimisPerItem;
|
|
15662
15684
|
export type DeminimisSimple = io.flow.v0.models.DeminimisSimple;
|
|
15685
|
+
export type DestinationContactDetail =
|
|
15686
|
+
io.flow.v0.models.DestinationContactDetail;
|
|
15663
15687
|
export type DetailedShippingLabelForm =
|
|
15664
15688
|
io.flow.v0.models.DetailedShippingLabelForm;
|
|
15665
15689
|
export type DetailedShippingNotificationForm =
|