@chrt-inc/typescript-sdk 1.685.0 → 1.691.0

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.
Files changed (52) hide show
  1. package/dist/cjs/Client.js +2 -2
  2. package/dist/cjs/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/Client.d.ts +14 -0
  3. package/dist/cjs/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/Client.js +63 -0
  4. package/dist/cjs/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/requests/OrderDraftAddTaskGroupReq.d.ts +1 -0
  5. package/dist/cjs/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/requests/SetVehicleTypeReq.d.ts +12 -0
  6. package/dist/cjs/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/requests/SetVehicleTypeReq.js +5 -0
  7. package/dist/cjs/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/requests/index.d.ts +1 -0
  8. package/dist/cjs/api/resources/shipping/resources/tasks/client/Client.d.ts +69 -2
  9. package/dist/cjs/api/resources/shipping/resources/tasks/client/Client.js +308 -5
  10. package/dist/cjs/api/resources/shipping/resources/tasks/client/requests/AttemptTaskReq.d.ts +11 -0
  11. package/dist/cjs/api/resources/shipping/resources/tasks/client/requests/AttemptTaskReq.js +5 -0
  12. package/dist/cjs/api/resources/shipping/resources/tasks/client/requests/WaitTimeOverrideReq.d.ts +12 -0
  13. package/dist/cjs/api/resources/shipping/resources/tasks/client/requests/WaitTimeOverrideReq.js +5 -0
  14. package/dist/cjs/api/resources/shipping/resources/tasks/client/requests/index.d.ts +2 -0
  15. package/dist/cjs/api/types/Driver1.d.ts +1 -0
  16. package/dist/cjs/api/types/Task1.d.ts +7 -0
  17. package/dist/cjs/api/types/TaskClientCreate1.d.ts +1 -0
  18. package/dist/cjs/api/types/TaskGroup1.d.ts +2 -0
  19. package/dist/cjs/api/types/TaskGroupManifest1.d.ts +1 -0
  20. package/dist/cjs/api/types/TaskWaitTimeGeofenceRes.d.ts +9 -0
  21. package/dist/cjs/api/types/TaskWaitTimeGeofenceRes.js +5 -0
  22. package/dist/cjs/api/types/index.d.ts +1 -0
  23. package/dist/cjs/api/types/index.js +1 -0
  24. package/dist/cjs/version.d.ts +1 -1
  25. package/dist/cjs/version.js +1 -1
  26. package/dist/esm/Client.mjs +2 -2
  27. package/dist/esm/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/Client.d.mts +14 -0
  28. package/dist/esm/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/Client.mjs +63 -0
  29. package/dist/esm/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/requests/OrderDraftAddTaskGroupReq.d.mts +1 -0
  30. package/dist/esm/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/requests/SetVehicleTypeReq.d.mts +12 -0
  31. package/dist/esm/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/requests/SetVehicleTypeReq.mjs +4 -0
  32. package/dist/esm/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/requests/index.d.mts +1 -0
  33. package/dist/esm/api/resources/shipping/resources/tasks/client/Client.d.mts +69 -2
  34. package/dist/esm/api/resources/shipping/resources/tasks/client/Client.mjs +308 -5
  35. package/dist/esm/api/resources/shipping/resources/tasks/client/requests/AttemptTaskReq.d.mts +11 -0
  36. package/dist/esm/api/resources/shipping/resources/tasks/client/requests/AttemptTaskReq.mjs +4 -0
  37. package/dist/esm/api/resources/shipping/resources/tasks/client/requests/WaitTimeOverrideReq.d.mts +12 -0
  38. package/dist/esm/api/resources/shipping/resources/tasks/client/requests/WaitTimeOverrideReq.mjs +4 -0
  39. package/dist/esm/api/resources/shipping/resources/tasks/client/requests/index.d.mts +2 -0
  40. package/dist/esm/api/types/Driver1.d.mts +1 -0
  41. package/dist/esm/api/types/Task1.d.mts +7 -0
  42. package/dist/esm/api/types/TaskClientCreate1.d.mts +1 -0
  43. package/dist/esm/api/types/TaskGroup1.d.mts +2 -0
  44. package/dist/esm/api/types/TaskGroupManifest1.d.mts +1 -0
  45. package/dist/esm/api/types/TaskWaitTimeGeofenceRes.d.mts +9 -0
  46. package/dist/esm/api/types/TaskWaitTimeGeofenceRes.mjs +4 -0
  47. package/dist/esm/api/types/index.d.mts +1 -0
  48. package/dist/esm/api/types/index.mjs +1 -0
  49. package/dist/esm/version.d.mts +1 -1
  50. package/dist/esm/version.mjs +1 -1
  51. package/package.json +1 -1
  52. package/reference.md +404 -2
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * @example
6
+ * {}
7
+ */
8
+ export interface AttemptTaskReq {
9
+ /** Optional executor organization note for the task attempt. */
10
+ executor_org_note?: string | null;
11
+ }
@@ -0,0 +1,4 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export {};
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * @example
6
+ * {}
7
+ */
8
+ export interface WaitTimeOverrideReq {
9
+ geofence_distance_miles?: number | null;
10
+ wait_time_start_timestamp?: string | null;
11
+ wait_time_end_timestamp?: string | null;
12
+ }
@@ -0,0 +1,4 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export {};
@@ -1 +1,3 @@
1
+ export { type WaitTimeOverrideReq } from "./WaitTimeOverrideReq.mjs";
1
2
  export { type AddTaskToGroupReq } from "./AddTaskToGroupReq.mjs";
3
+ export { type AttemptTaskReq } from "./AttemptTaskReq.mjs";
@@ -19,6 +19,7 @@ export interface Driver1 {
19
19
  status?: Chrt.DriverStatusEnum;
20
20
  available_according_to_driver?: boolean;
21
21
  available_according_to_operators?: boolean;
22
+ waiting?: boolean;
22
23
  auto_assign_enabled?: boolean;
23
24
  active_task_group_ids?: string[];
24
25
  last_seen_at_location?: Chrt.LocationFeature | null;
@@ -5,6 +5,7 @@ import * as Chrt from "../index.mjs";
5
5
  export interface Task1 {
6
6
  schema_version: number;
7
7
  location?: Chrt.LocationFeature | null;
8
+ geofence_distance_miles?: number;
8
9
  action?: Task1.Action | null;
9
10
  datetime_windows?: Chrt.DateTimeWindow1[];
10
11
  order_placer_comments?: string | null;
@@ -34,6 +35,12 @@ export interface Task1 {
34
35
  skipped_at_timestamp?: string | null;
35
36
  attempted_at_timestamp?: string | null;
36
37
  exception_at_timestamp?: string | null;
38
+ wait_time_start_timestamp?: string | null;
39
+ wait_time_end_timestamp?: string | null;
40
+ wait_time_started_in_geofence?: boolean | null;
41
+ wait_time_validated?: boolean | null;
42
+ /** Must be a string starting with `user_` */
43
+ wait_time_validated_by_user_id?: string | null;
37
44
  order_cancelled?: boolean;
38
45
  }
39
46
  export declare namespace Task1 {
@@ -5,6 +5,7 @@ import * as Chrt from "../index.mjs";
5
5
  export interface TaskClientCreate1 {
6
6
  schema_version: number;
7
7
  location?: Chrt.LocationFeature | null;
8
+ geofence_distance_miles?: number;
8
9
  action?: TaskClientCreate1.Action | null;
9
10
  datetime_windows?: Chrt.DateTimeWindow1[];
10
11
  order_placer_comments?: string | null;
@@ -36,8 +36,10 @@ export interface TaskGroup1 {
36
36
  skipped_at_timestamp?: string | null;
37
37
  exception_at_timestamp?: string | null;
38
38
  task_group_type: Chrt.TaskGroupTypeEnum1;
39
+ vehicle_type?: Chrt.VehicleTypeEnum | null;
39
40
  mileage_estimated?: number | null;
40
41
  mileage_observed?: number | null;
42
+ wait_time_total_minutes?: number | null;
41
43
  mileage_asserted?: boolean;
42
44
  flight_number?: string | null;
43
45
  fa_flight_ids?: string[];
@@ -7,6 +7,7 @@ import * as Chrt from "../index.mjs";
7
7
  */
8
8
  export interface TaskGroupManifest1 {
9
9
  task_group_type: "chrt_ground_provider";
10
+ vehicle_type?: Chrt.VehicleTypeEnum | null;
10
11
  /** Must be a string starting with `org_` */
11
12
  executor_org_id?: string | null;
12
13
  driver_id?: string | null;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface TaskWaitTimeGeofenceRes {
5
+ in_geofence: boolean;
6
+ driver_location_available: boolean;
7
+ distance_miles?: number | null;
8
+ geofence_distance_miles: number;
9
+ }
@@ -0,0 +1,4 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export {};
@@ -332,6 +332,7 @@ export * from "./TaskGroupTypeaheadFieldEnum.mjs";
332
332
  export * from "./TaskGroupTypeaheadResult.mjs";
333
333
  export * from "./TaskManifest1.mjs";
334
334
  export * from "./TaskStatusEnum1.mjs";
335
+ export * from "./TaskWaitTimeGeofenceRes.mjs";
335
336
  export * from "./TemplateRes.mjs";
336
337
  export * from "./TimeBucket.mjs";
337
338
  export * from "./TimeGranularity.mjs";
@@ -332,6 +332,7 @@ export * from "./TaskGroupTypeaheadFieldEnum.mjs";
332
332
  export * from "./TaskGroupTypeaheadResult.mjs";
333
333
  export * from "./TaskManifest1.mjs";
334
334
  export * from "./TaskStatusEnum1.mjs";
335
+ export * from "./TaskWaitTimeGeofenceRes.mjs";
335
336
  export * from "./TemplateRes.mjs";
336
337
  export * from "./TimeBucket.mjs";
337
338
  export * from "./TimeGranularity.mjs";
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "1.685.0";
1
+ export declare const SDK_VERSION = "1.691.0";
@@ -1 +1 @@
1
- export const SDK_VERSION = "1.685.0";
1
+ export const SDK_VERSION = "1.691.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrt-inc/typescript-sdk",
3
- "version": "1.685.0",
3
+ "version": "1.691.0",
4
4
  "private": false,
5
5
  "repository": "github:chrt-inc/typescript-sdk",
6
6
  "type": "commonjs",
package/reference.md CHANGED
@@ -18796,6 +18796,329 @@ await client.shipping.taskGroups.quoteForProviderPayDriverV1("task_group_id", {
18796
18796
 
18797
18797
  ## Shipping Tasks
18798
18798
 
18799
+ <details><summary><code>client.shipping.tasks.<a href="/src/api/resources/shipping/resources/tasks/client/Client.ts">waitTimeGeofenceV1</a>(taskId) -> Chrt.TaskWaitTimeGeofenceRes</code></summary>
18800
+ <dl>
18801
+ <dd>
18802
+
18803
+ #### 📝 Description
18804
+
18805
+ <dl>
18806
+ <dd>
18807
+
18808
+ <dl>
18809
+ <dd>
18810
+
18811
+ Checks whether the assigned driver's available location is inside the task wait-time geofence. | authz_personas=[driver_for_executor, executor_org_operators] | () -> (TaskWaitTimeGeofenceRes)
18812
+
18813
+ </dd>
18814
+ </dl>
18815
+ </dd>
18816
+ </dl>
18817
+
18818
+ #### 🔌 Usage
18819
+
18820
+ <dl>
18821
+ <dd>
18822
+
18823
+ <dl>
18824
+ <dd>
18825
+
18826
+ ```typescript
18827
+ await client.shipping.tasks.waitTimeGeofenceV1("task_id");
18828
+ ```
18829
+
18830
+ </dd>
18831
+ </dl>
18832
+ </dd>
18833
+ </dl>
18834
+
18835
+ #### ⚙️ Parameters
18836
+
18837
+ <dl>
18838
+ <dd>
18839
+
18840
+ <dl>
18841
+ <dd>
18842
+
18843
+ **taskId:** `string`
18844
+
18845
+ </dd>
18846
+ </dl>
18847
+
18848
+ <dl>
18849
+ <dd>
18850
+
18851
+ **requestOptions:** `Tasks.RequestOptions`
18852
+
18853
+ </dd>
18854
+ </dl>
18855
+ </dd>
18856
+ </dl>
18857
+
18858
+ </dd>
18859
+ </dl>
18860
+ </details>
18861
+
18862
+ <details><summary><code>client.shipping.tasks.<a href="/src/api/resources/shipping/resources/tasks/client/Client.ts">waitTimeStartV1</a>(taskId) -> boolean</code></summary>
18863
+ <dl>
18864
+ <dd>
18865
+
18866
+ #### 📝 Description
18867
+
18868
+ <dl>
18869
+ <dd>
18870
+
18871
+ <dl>
18872
+ <dd>
18873
+
18874
+ Starts wait time for a task and records whether the assigned driver's available location is inside the geofence. | authz_personas=[driver_for_executor, executor_org_operators] | () -> (bool)
18875
+
18876
+ </dd>
18877
+ </dl>
18878
+ </dd>
18879
+ </dl>
18880
+
18881
+ #### 🔌 Usage
18882
+
18883
+ <dl>
18884
+ <dd>
18885
+
18886
+ <dl>
18887
+ <dd>
18888
+
18889
+ ```typescript
18890
+ await client.shipping.tasks.waitTimeStartV1("task_id");
18891
+ ```
18892
+
18893
+ </dd>
18894
+ </dl>
18895
+ </dd>
18896
+ </dl>
18897
+
18898
+ #### ⚙️ Parameters
18899
+
18900
+ <dl>
18901
+ <dd>
18902
+
18903
+ <dl>
18904
+ <dd>
18905
+
18906
+ **taskId:** `string`
18907
+
18908
+ </dd>
18909
+ </dl>
18910
+
18911
+ <dl>
18912
+ <dd>
18913
+
18914
+ **requestOptions:** `Tasks.RequestOptions`
18915
+
18916
+ </dd>
18917
+ </dl>
18918
+ </dd>
18919
+ </dl>
18920
+
18921
+ </dd>
18922
+ </dl>
18923
+ </details>
18924
+
18925
+ <details><summary><code>client.shipping.tasks.<a href="/src/api/resources/shipping/resources/tasks/client/Client.ts">waitTimeEndV1</a>(taskId) -> boolean</code></summary>
18926
+ <dl>
18927
+ <dd>
18928
+
18929
+ #### 📝 Description
18930
+
18931
+ <dl>
18932
+ <dd>
18933
+
18934
+ <dl>
18935
+ <dd>
18936
+
18937
+ Ends an active wait-time session for a task. | authz_personas=[driver_for_executor, executor_org_operators] | () -> (bool)
18938
+
18939
+ </dd>
18940
+ </dl>
18941
+ </dd>
18942
+ </dl>
18943
+
18944
+ #### 🔌 Usage
18945
+
18946
+ <dl>
18947
+ <dd>
18948
+
18949
+ <dl>
18950
+ <dd>
18951
+
18952
+ ```typescript
18953
+ await client.shipping.tasks.waitTimeEndV1("task_id");
18954
+ ```
18955
+
18956
+ </dd>
18957
+ </dl>
18958
+ </dd>
18959
+ </dl>
18960
+
18961
+ #### ⚙️ Parameters
18962
+
18963
+ <dl>
18964
+ <dd>
18965
+
18966
+ <dl>
18967
+ <dd>
18968
+
18969
+ **taskId:** `string`
18970
+
18971
+ </dd>
18972
+ </dl>
18973
+
18974
+ <dl>
18975
+ <dd>
18976
+
18977
+ **requestOptions:** `Tasks.RequestOptions`
18978
+
18979
+ </dd>
18980
+ </dl>
18981
+ </dd>
18982
+ </dl>
18983
+
18984
+ </dd>
18985
+ </dl>
18986
+ </details>
18987
+
18988
+ <details><summary><code>client.shipping.tasks.<a href="/src/api/resources/shipping/resources/tasks/client/Client.ts">waitTimeValidateV1</a>(taskId) -> boolean</code></summary>
18989
+ <dl>
18990
+ <dd>
18991
+
18992
+ #### 📝 Description
18993
+
18994
+ <dl>
18995
+ <dd>
18996
+
18997
+ <dl>
18998
+ <dd>
18999
+
19000
+ Validates wait time for a task. | authz_personas=[executor_org_operators] | () -> (bool)
19001
+
19002
+ </dd>
19003
+ </dl>
19004
+ </dd>
19005
+ </dl>
19006
+
19007
+ #### 🔌 Usage
19008
+
19009
+ <dl>
19010
+ <dd>
19011
+
19012
+ <dl>
19013
+ <dd>
19014
+
19015
+ ```typescript
19016
+ await client.shipping.tasks.waitTimeValidateV1("task_id");
19017
+ ```
19018
+
19019
+ </dd>
19020
+ </dl>
19021
+ </dd>
19022
+ </dl>
19023
+
19024
+ #### ⚙️ Parameters
19025
+
19026
+ <dl>
19027
+ <dd>
19028
+
19029
+ <dl>
19030
+ <dd>
19031
+
19032
+ **taskId:** `string`
19033
+
19034
+ </dd>
19035
+ </dl>
19036
+
19037
+ <dl>
19038
+ <dd>
19039
+
19040
+ **requestOptions:** `Tasks.RequestOptions`
19041
+
19042
+ </dd>
19043
+ </dl>
19044
+ </dd>
19045
+ </dl>
19046
+
19047
+ </dd>
19048
+ </dl>
19049
+ </details>
19050
+
19051
+ <details><summary><code>client.shipping.tasks.<a href="/src/api/resources/shipping/resources/tasks/client/Client.ts">waitTimeOverrideV1</a>(taskId, { ...params }) -> boolean</code></summary>
19052
+ <dl>
19053
+ <dd>
19054
+
19055
+ #### 📝 Description
19056
+
19057
+ <dl>
19058
+ <dd>
19059
+
19060
+ <dl>
19061
+ <dd>
19062
+
19063
+ Overrides wait-time timestamps or geofence distance for a task. | authz_personas=[executor_org_operators] | (WaitTimeOverrideReq) -> (bool)
19064
+
19065
+ </dd>
19066
+ </dl>
19067
+ </dd>
19068
+ </dl>
19069
+
19070
+ #### 🔌 Usage
19071
+
19072
+ <dl>
19073
+ <dd>
19074
+
19075
+ <dl>
19076
+ <dd>
19077
+
19078
+ ```typescript
19079
+ await client.shipping.tasks.waitTimeOverrideV1("task_id");
19080
+ ```
19081
+
19082
+ </dd>
19083
+ </dl>
19084
+ </dd>
19085
+ </dl>
19086
+
19087
+ #### ⚙️ Parameters
19088
+
19089
+ <dl>
19090
+ <dd>
19091
+
19092
+ <dl>
19093
+ <dd>
19094
+
19095
+ **taskId:** `string`
19096
+
19097
+ </dd>
19098
+ </dl>
19099
+
19100
+ <dl>
19101
+ <dd>
19102
+
19103
+ **request:** `Chrt.shipping.WaitTimeOverrideReq`
19104
+
19105
+ </dd>
19106
+ </dl>
19107
+
19108
+ <dl>
19109
+ <dd>
19110
+
19111
+ **requestOptions:** `Tasks.RequestOptions`
19112
+
19113
+ </dd>
19114
+ </dl>
19115
+ </dd>
19116
+ </dl>
19117
+
19118
+ </dd>
19119
+ </dl>
19120
+ </details>
19121
+
18799
19122
  <details><summary><code>client.shipping.tasks.<a href="/src/api/resources/shipping/resources/tasks/client/Client.ts">addToTaskGroupV1</a>(taskGroupId, { ...params }) -> string</code></summary>
18800
19123
  <dl>
18801
19124
  <dd>
@@ -19070,7 +19393,7 @@ await client.shipping.tasks.skipV1("task_id");
19070
19393
  </dl>
19071
19394
  </details>
19072
19395
 
19073
- <details><summary><code>client.shipping.tasks.<a href="/src/api/resources/shipping/resources/tasks/client/Client.ts">attemptV1</a>(taskId) -> boolean</code></summary>
19396
+ <details><summary><code>client.shipping.tasks.<a href="/src/api/resources/shipping/resources/tasks/client/Client.ts">attemptV1</a>(taskId, { ...params }) -> boolean</code></summary>
19074
19397
  <dl>
19075
19398
  <dd>
19076
19399
 
@@ -19082,7 +19405,7 @@ await client.shipping.tasks.skipV1("task_id");
19082
19405
  <dl>
19083
19406
  <dd>
19084
19407
 
19085
- Marks a task as ATTEMPT. | authz_personas=[driver_for_executor, coordinator_org_operators, executor_org_operators] (depending on type) | () -> (bool)
19408
+ Marks a task as ATTEMPT with an optional executor organization note. | authz_personas=[driver_for_executor, coordinator_org_operators, executor_org_operators] (depending on type) | (AttemptTaskReq) -> (bool)
19086
19409
 
19087
19410
  </dd>
19088
19411
  </dl>
@@ -19122,6 +19445,14 @@ await client.shipping.tasks.attemptV1("task_id");
19122
19445
  <dl>
19123
19446
  <dd>
19124
19447
 
19448
+ **request:** `Chrt.shipping.AttemptTaskReq`
19449
+
19450
+ </dd>
19451
+ </dl>
19452
+
19453
+ <dl>
19454
+ <dd>
19455
+
19125
19456
  **requestOptions:** `Tasks.RequestOptions`
19126
19457
 
19127
19458
  </dd>
@@ -19940,6 +20271,77 @@ await client.shipping.orderDrafts.taskGroup.setFlightInfoV1("task_group_id", {})
19940
20271
  </dl>
19941
20272
  </details>
19942
20273
 
20274
+ <details><summary><code>client.shipping.orderDrafts.taskGroup.<a href="/src/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/Client.ts">setVehicleTypeV1</a>(taskGroupId, { ...params }) -> boolean</code></summary>
20275
+ <dl>
20276
+ <dd>
20277
+
20278
+ #### 📝 Description
20279
+
20280
+ <dl>
20281
+ <dd>
20282
+
20283
+ <dl>
20284
+ <dd>
20285
+
20286
+ Sets the vehicle type on a draft task group. | authz_personas=[draft_creator_org_operator] | (SetVehicleTypeReq) -> (bool)
20287
+
20288
+ </dd>
20289
+ </dl>
20290
+ </dd>
20291
+ </dl>
20292
+
20293
+ #### 🔌 Usage
20294
+
20295
+ <dl>
20296
+ <dd>
20297
+
20298
+ <dl>
20299
+ <dd>
20300
+
20301
+ ```typescript
20302
+ await client.shipping.orderDrafts.taskGroup.setVehicleTypeV1("task_group_id");
20303
+ ```
20304
+
20305
+ </dd>
20306
+ </dl>
20307
+ </dd>
20308
+ </dl>
20309
+
20310
+ #### ⚙️ Parameters
20311
+
20312
+ <dl>
20313
+ <dd>
20314
+
20315
+ <dl>
20316
+ <dd>
20317
+
20318
+ **taskGroupId:** `string`
20319
+
20320
+ </dd>
20321
+ </dl>
20322
+
20323
+ <dl>
20324
+ <dd>
20325
+
20326
+ **request:** `Chrt.shipping.orderDrafts.SetVehicleTypeReq`
20327
+
20328
+ </dd>
20329
+ </dl>
20330
+
20331
+ <dl>
20332
+ <dd>
20333
+
20334
+ **requestOptions:** `TaskGroup.RequestOptions`
20335
+
20336
+ </dd>
20337
+ </dl>
20338
+ </dd>
20339
+ </dl>
20340
+
20341
+ </dd>
20342
+ </dl>
20343
+ </details>
20344
+
19943
20345
  <details><summary><code>client.shipping.orderDrafts.taskGroup.<a href="/src/api/resources/shipping/resources/orderDrafts/resources/taskGroup/client/Client.ts">setTaskOrderingV1</a>(taskGroupId, { ...params }) -> boolean</code></summary>
19944
20346
  <dl>
19945
20347
  <dd>