Skip to content

Commit 42a1ebc

Browse files
SDK regeneration
1 parent cf94e42 commit 42a1ebc

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"namespaceExport": "Samsara",
77
"generateWireTests": true
88
},
9-
"sdkVersion": "6.2.0"
9+
"sdkVersion": "6.3.0"
1010
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@samsarahq/samsara",
3-
"version": "6.2.0",
3+
"version": "6.3.0",
44
"private": false,
55
"repository": {
66
"type": "git",

src/BaseClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ export function normalizeClientOptions<T extends BaseClientOptions = BaseClientO
5555
{
5656
"X-Fern-Language": "JavaScript",
5757
"X-Fern-SDK-Name": "@samsarahq/samsara",
58-
"X-Fern-SDK-Version": "6.2.0",
59-
"User-Agent": "@samsarahq/samsara/6.2.0",
58+
"X-Fern-SDK-Version": "6.3.0",
59+
"User-Agent": "@samsarahq/samsara/6.3.0",
6060
"X-Fern-Runtime": core.RUNTIME.type,
6161
"X-Fern-Runtime-Version": core.RUNTIME.version,
6262
"X-Samsara-Version": options?.version ?? "2025-06-11",

src/api/resources/driverVehicleAssignments/client/requests/GetDriverVehicleAssignmentsRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ export interface GetDriverVehicleAssignmentsRequest {
2525
vehicleTagIds?: string;
2626
/** If specified, this should be the endCursor value from the previous page of results. When present, this request will return the next page of results that occur immediately after the previous page of results. */
2727
after?: string;
28-
/** Specifies which assignment type to filter by. Valid values: `HOS`, `idCard`, `static`, `faceId`, `tachograph`, `safetyManual`, `RFID`, `trailer`, `external`, `qrCode`, `driverApp`, `voiceSignIn` */
28+
/** Specifies which assignment type to filter by. Valid values: `HOS`, `idCard`, `static`, `faceId`, `tachograph`, `safetyManual`, `RFID`, `trailer`, `external`, `qrCode`, `driverApp`, `voiceSignIn`, `smartAssign` */
2929
assignmentType?: Samsara.GetDriverVehicleAssignmentsRequestAssignmentType;
3030
}

src/api/resources/driverVehicleAssignments/types/GetDriverVehicleAssignmentsRequestAssignmentType.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export const GetDriverVehicleAssignmentsRequestAssignmentType = {
1313
QrCode: "qrCode",
1414
DriverApp: "driverApp",
1515
VoiceSignIn: "voiceSignIn",
16+
SmartAssign: "smartAssign",
1617
} as const;
1718
export type GetDriverVehicleAssignmentsRequestAssignmentType =
1819
(typeof GetDriverVehicleAssignmentsRequestAssignmentType)[keyof typeof GetDriverVehicleAssignmentsRequestAssignmentType];

src/api/types/DriverVehicleAssignmentV2ObjectResponseBody.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type * as Samsara from "../index.js";
88
export interface DriverVehicleAssignmentV2ObjectResponseBody {
99
/** An assigned at time in RFC 3339 format. Millisecond precision and timezones are supported. (Examples: 2019-06-13T19:08:25Z, 2019-06-13T19:08:25.455Z, OR 2015-09-15T14:00:12-04:00). */
1010
assignedAtTime?: string | undefined;
11-
/** Name of the assigning source for the driver assignment record. Valid values: `invalid`, `unknown`, `HOS`, `idCard`, `static`, `faceId`, `tachograph`, `safetyManual`, `RFID`, `trailer`, `external`, `qrCode`, `driverApp`, `voiceSignIn` */
11+
/** Name of the assigning source for the driver assignment record. Valid values: `invalid`, `unknown`, `HOS`, `idCard`, `static`, `faceId`, `tachograph`, `safetyManual`, `RFID`, `trailer`, `external`, `qrCode`, `driverApp`, `voiceSignIn`, `smartAssign` */
1212
assignmentType?: DriverVehicleAssignmentV2ObjectResponseBody.AssignmentType | undefined;
1313
driver: Samsara.GoaDriverTinyResponseResponseBody;
1414
/** An end time in RFC 3339 format. Omitted if not applicable. Millisecond precision and timezones are supported. (Examples: 2019-06-13T19:08:25Z, 2019-06-13T19:08:25.455Z, OR 2015-09-15T14:00:12-04:00). */
@@ -22,7 +22,7 @@ export interface DriverVehicleAssignmentV2ObjectResponseBody {
2222
}
2323

2424
export namespace DriverVehicleAssignmentV2ObjectResponseBody {
25-
/** Name of the assigning source for the driver assignment record. Valid values: `invalid`, `unknown`, `HOS`, `idCard`, `static`, `faceId`, `tachograph`, `safetyManual`, `RFID`, `trailer`, `external`, `qrCode`, `driverApp`, `voiceSignIn` */
25+
/** Name of the assigning source for the driver assignment record. Valid values: `invalid`, `unknown`, `HOS`, `idCard`, `static`, `faceId`, `tachograph`, `safetyManual`, `RFID`, `trailer`, `external`, `qrCode`, `driverApp`, `voiceSignIn`, `smartAssign` */
2626
export const AssignmentType = {
2727
Invalid: "invalid",
2828
Unknown: "unknown",
@@ -38,6 +38,7 @@ export namespace DriverVehicleAssignmentV2ObjectResponseBody {
3838
QrCode: "qrCode",
3939
DriverApp: "driverApp",
4040
VoiceSignIn: "voiceSignIn",
41+
SmartAssign: "smartAssign",
4142
} as const;
4243
export type AssignmentType = (typeof AssignmentType)[keyof typeof AssignmentType];
4344
}

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const SDK_VERSION = "6.2.0";
1+
export const SDK_VERSION = "6.3.0";

0 commit comments

Comments
 (0)