@flowio/api-prop-types 10.16.83 → 10.16.84

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/lib/api.d.ts CHANGED
@@ -2575,7 +2575,7 @@ declare namespace io.flow.v0.enums {
2575
2575
  type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24' | 'mobilepay' | 'grabpay' | 'vipps' | 'kcp_creditcard';
2576
2576
  type PayoutAttachmentType = 'transactions';
2577
2577
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
2578
- type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
2578
+ type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
2579
2579
  type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
2580
2580
  type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
2581
2581
  type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
@@ -5172,6 +5172,12 @@ declare namespace io.flow.v0.models {
5172
5172
  readonly 'minimum'?: number;
5173
5173
  }
5174
5174
 
5175
+ interface DestinationContactDetail {
5176
+ readonly 'title': string;
5177
+ readonly 'country': string;
5178
+ readonly 'import_identifier': string;
5179
+ }
5180
+
5175
5181
  interface DetailedShippingLabelForm {
5176
5182
  readonly 'discriminator': 'detailed_shipping_label_form';
5177
5183
  readonly 'destination': io.flow.v0.models.ShippingAddress;
@@ -6859,6 +6865,7 @@ declare namespace io.flow.v0.models {
6859
6865
  readonly 'local'?: io.flow.v0.models.Local;
6860
6866
  readonly 'created_at'?: string;
6861
6867
  readonly 'updated_at'?: string;
6868
+ readonly 'deleted_at'?: string;
6862
6869
  }
6863
6870
 
6864
6871
  interface ItemAttributesPatchForm {
@@ -6884,6 +6891,7 @@ declare namespace io.flow.v0.models {
6884
6891
  readonly 'attributes'?: Record<string, string>;
6885
6892
  readonly 'dimensions'?: io.flow.v0.models.Dimensions;
6886
6893
  readonly 'images'?: io.flow.v0.models.ImageForm[];
6894
+ readonly 'deleted_at'?: string;
6887
6895
  }
6888
6896
 
6889
6897
  interface ItemFormOverlay {
@@ -6897,6 +6905,7 @@ declare namespace io.flow.v0.models {
6897
6905
  readonly 'attributes'?: Record<string, string>;
6898
6906
  readonly 'dimensions'?: io.flow.v0.models.Dimensions;
6899
6907
  readonly 'images'?: io.flow.v0.models.ImageForm[];
6908
+ readonly 'deleted_at'?: string;
6900
6909
  }
6901
6910
 
6902
6911
  interface ItemFormOverlayForm {
@@ -6909,6 +6918,7 @@ declare namespace io.flow.v0.models {
6909
6918
  readonly 'attributes'?: Record<string, string>;
6910
6919
  readonly 'dimensions'?: io.flow.v0.models.Dimensions;
6911
6920
  readonly 'images'?: io.flow.v0.models.ImageForm[];
6921
+ readonly 'deleted_at'?: string;
6912
6922
  }
6913
6923
 
6914
6924
  interface ItemInserted {
@@ -7231,6 +7241,7 @@ declare namespace io.flow.v0.models {
7231
7241
  readonly 'in_transit': io.flow.v0.models.LabelTrackingSummaryUpdate;
7232
7242
  readonly 'delivered'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
7233
7243
  readonly 'rejected'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
7244
+ readonly 'returned'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
7234
7245
  }
7235
7246
 
7236
7247
  interface LabelTrackingSummaryUpdate {
@@ -7966,6 +7977,7 @@ declare namespace io.flow.v0.models {
7966
7977
  readonly 'tax_registration'?: io.flow.v0.models.TaxRegistration;
7967
7978
  readonly 'geo'?: io.flow.v0.models.OrderGeo;
7968
7979
  readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
7980
+ readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
7969
7981
  }
7970
7982
 
7971
7983
  interface OrderAddress {
@@ -13744,6 +13756,7 @@ export const deliveryWindowComponentsV2: PropTypes.Requireable<io.flow.v0.models
13744
13756
  export const deliveryWindowSummary: PropTypes.Requireable<io.flow.v0.models.DeliveryWindowSummary>;
13745
13757
  export const deminimisPerItem: PropTypes.Requireable<io.flow.v0.models.DeminimisPerItem>;
13746
13758
  export const deminimisSimple: PropTypes.Requireable<io.flow.v0.models.DeminimisSimple>;
13759
+ export const destinationContactDetail: PropTypes.Requireable<io.flow.v0.models.DestinationContactDetail>;
13747
13760
  export const detailedShippingLabelForm: PropTypes.Requireable<io.flow.v0.models.DetailedShippingLabelForm>;
13748
13761
  export const detailedShippingNotificationForm: PropTypes.Requireable<io.flow.v0.models.DetailedShippingNotificationForm>;
13749
13762
  export const detailedTaxRegistration: PropTypes.Requireable<io.flow.v0.models.DetailedTaxRegistration>;