@flowio/types 11.24.45 → 11.24.46

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.
@@ -2943,7 +2943,7 @@ declare namespace io.flow.customer.v0.models {
2943
2943
  declare namespace io.flow.label.v0.enums {
2944
2944
  type CostEstimateSource = 'flow' | 'channel';
2945
2945
  type Direction = 'outbound' | 'return';
2946
- type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'autogenerated';
2946
+ type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'autogenerated';
2947
2947
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
2948
2948
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
2949
2949
  type TrackingNumberType = 'flow' | 'carrier';
@@ -16332,6 +16332,7 @@ declare namespace io.flow.internal.v0.models {
16332
16332
  readonly customs_description?: string;
16333
16333
  readonly origin: string;
16334
16334
  readonly hs6?: string;
16335
+ readonly hs_description?: string;
16335
16336
  readonly tariff_code?: string;
16336
16337
  readonly duty: io.flow.price.v0.models.Duty;
16337
16338
  readonly price_composition_rate: number;
@@ -17661,7 +17662,7 @@ declare namespace io.flow.internal.v0.models {
17661
17662
  }
17662
17663
  interface OrganizationRestrictionApproval {
17663
17664
  readonly id: string;
17664
- readonly status: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
17665
+ readonly status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
17665
17666
  readonly reason?: string;
17666
17667
  readonly updated_at: string;
17667
17668
  }
@@ -18723,7 +18724,6 @@ declare namespace io.flow.internal.v0.models {
18723
18724
  readonly hs_code?: string;
18724
18725
  readonly merchant_category_code?: string;
18725
18726
  readonly notes: io.flow.internal.v0.models.OrganizationRestrictionStatusNote[];
18726
- readonly created_at: string;
18727
18727
  }
18728
18728
  interface RestrictionOrganizationDecisionSummary {
18729
18729
  readonly organization: io.flow.internal.v0.models.RestrictionOrganization;
package/dist/api.d.ts CHANGED
@@ -1732,7 +1732,7 @@ declare namespace io.flow.v0.enums {
1732
1732
  type InvitationErrorCode = 'expired' | 'invalid_email';
1733
1733
  type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
1734
1734
  type ItemIdentifier = 'item_number' | 'sku';
1735
- type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'autogenerated';
1735
+ type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'autogenerated';
1736
1736
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
1737
1737
  type LaneDirection = 'outbound' | 'return';
1738
1738
  type LanePreselectPreference = 'lowest_cost' | 'default_tier';
@@ -7971,6 +7971,7 @@ declare namespace io.flow.v0.models {
7971
7971
  readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
7972
7972
  readonly dimensional_weight?: io.flow.v0.models.Measurement;
7973
7973
  readonly gravitational_weight?: io.flow.v0.models.Measurement;
7974
+ readonly ratecard_id?: string;
7974
7975
  readonly line_items?: io.flow.v0.models.LineItemForm[];
7975
7976
  }
7976
7977
  interface RatecardForm {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/types",
3
- "version": "11.24.45",
3
+ "version": "11.24.46",
4
4
  "description": "TypeScript type definitions for custom types found in Flow API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -25,5 +25,5 @@
25
25
  "maintainers": [
26
26
  "Christian Muñoz <christian.munoz@flow.io>"
27
27
  ],
28
- "gitHead": "e212da9c13b98bb1daf825e26a2d10b45117d35f"
28
+ "gitHead": "67f9d68551d126269af1c8bec9245dffdcb2eeb2"
29
29
  }
@@ -3854,6 +3854,7 @@ declare namespace io.flow.label.v0.enums {
3854
3854
  | 'direct_api_async'
3855
3855
  | 'bridge_api_sync'
3856
3856
  | 'partner_api_sync'
3857
+ | 'notification_requiring_crossdock'
3857
3858
  | 'autogenerated';
3858
3859
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
3859
3860
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
@@ -21308,6 +21309,7 @@ declare namespace io.flow.internal.v0.models {
21308
21309
  readonly customs_description?: string;
21309
21310
  readonly origin: string;
21310
21311
  readonly hs6?: string;
21312
+ readonly hs_description?: string;
21311
21313
  readonly tariff_code?: string;
21312
21314
  readonly duty: io.flow.price.v0.models.Duty;
21313
21315
  readonly price_composition_rate: number;
@@ -22852,7 +22854,7 @@ declare namespace io.flow.internal.v0.models {
22852
22854
 
22853
22855
  interface OrganizationRestrictionApproval {
22854
22856
  readonly id: string;
22855
- readonly status: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
22857
+ readonly status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
22856
22858
  readonly reason?: string;
22857
22859
  readonly updated_at: string;
22858
22860
  }
@@ -24069,7 +24071,6 @@ declare namespace io.flow.internal.v0.models {
24069
24071
  readonly hs_code?: string;
24070
24072
  readonly merchant_category_code?: string;
24071
24073
  readonly notes: io.flow.internal.v0.models.OrganizationRestrictionStatusNote[];
24072
- readonly created_at: string;
24073
24074
  }
24074
24075
 
24075
24076
  interface RestrictionOrganizationDecisionSummary {
package/src/api.ts CHANGED
@@ -2579,6 +2579,7 @@ declare namespace io.flow.v0.enums {
2579
2579
  | 'direct_api_async'
2580
2580
  | 'bridge_api_sync'
2581
2581
  | 'partner_api_sync'
2582
+ | 'notification_requiring_crossdock'
2582
2583
  | 'autogenerated';
2583
2584
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
2584
2585
  type LaneDirection = 'outbound' | 'return';
@@ -10204,6 +10205,7 @@ declare namespace io.flow.v0.models {
10204
10205
  readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
10205
10206
  readonly dimensional_weight?: io.flow.v0.models.Measurement;
10206
10207
  readonly gravitational_weight?: io.flow.v0.models.Measurement;
10208
+ readonly ratecard_id?: string;
10207
10209
  readonly line_items?: io.flow.v0.models.LineItemForm[];
10208
10210
  }
10209
10211