@chrt-inc/typescript-sdk 1.539.0 → 1.539.1
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/cjs/Client.js +2 -2
- package/dist/cjs/api/resources/tracking/resources/sessions/client/Client.d.ts +3 -3
- package/dist/cjs/api/resources/tracking/resources/sessions/client/Client.js +3 -3
- package/dist/cjs/api/resources/tracking/resources/timeseries/resources/sessionByDevice/client/Client.d.ts +2 -2
- package/dist/cjs/api/resources/tracking/resources/timeseries/resources/sessionByDevice/client/Client.js +2 -2
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/Client.mjs +2 -2
- package/dist/esm/api/resources/tracking/resources/sessions/client/Client.d.mts +3 -3
- package/dist/esm/api/resources/tracking/resources/sessions/client/Client.mjs +3 -3
- package/dist/esm/api/resources/tracking/resources/timeseries/resources/sessionByDevice/client/Client.d.mts +2 -2
- package/dist/esm/api/resources/tracking/resources/timeseries/resources/sessionByDevice/client/Client.mjs +2 -2
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
- package/reference.md +5 -5
package/dist/cjs/Client.js
CHANGED
|
@@ -53,8 +53,8 @@ class ChrtClient {
|
|
|
53
53
|
this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_js_1.mergeHeaders)({
|
|
54
54
|
"X-Fern-Language": "JavaScript",
|
|
55
55
|
"X-Fern-SDK-Name": "@chrt-inc/typescript-sdk",
|
|
56
|
-
"X-Fern-SDK-Version": "1.539.
|
|
57
|
-
"User-Agent": "@chrt-inc/typescript-sdk/1.539.
|
|
56
|
+
"X-Fern-SDK-Version": "1.539.1",
|
|
57
|
+
"User-Agent": "@chrt-inc/typescript-sdk/1.539.1",
|
|
58
58
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
59
59
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
60
60
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
|
@@ -31,7 +31,7 @@ export declare class Sessions {
|
|
|
31
31
|
protected readonly _options: Sessions.Options;
|
|
32
32
|
constructor(_options?: Sessions.Options);
|
|
33
33
|
/**
|
|
34
|
-
* Lists sessions with filtering, sorting, and pagination. Use org_scope to restrict to owned, shared, or both (default). | authz: min_org_role=operator | () -> (SessionListRes)
|
|
34
|
+
* Lists sessions with filtering, sorting, and pagination. Use org_scope to restrict to owned, shared, or both (default). | auth: api_key | authz: min_org_role=operator | () -> (SessionListRes)
|
|
35
35
|
*
|
|
36
36
|
* @param {Chrt.tracking.SessionsListV1Request} request
|
|
37
37
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -64,7 +64,7 @@ export declare class Sessions {
|
|
|
64
64
|
listV1(request?: Chrt.tracking.SessionsListV1Request, requestOptions?: Sessions.RequestOptions): core.HttpResponsePromise<Chrt.SessionListRes>;
|
|
65
65
|
private __listV1;
|
|
66
66
|
/**
|
|
67
|
-
* Retrieves a single session by its ID. Access restricted to the caller's organization or shared organizations. | authz: min_org_role=operator | () -> (Session1)
|
|
67
|
+
* Retrieves a single session by its ID. Access restricted to the caller's organization or shared organizations. | auth: api_key | authz: min_org_role=operator | () -> (Session1)
|
|
68
68
|
*
|
|
69
69
|
* @param {Chrt.tracking.SessionsGetV1Request} request
|
|
70
70
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -79,7 +79,7 @@ export declare class Sessions {
|
|
|
79
79
|
getV1(request: Chrt.tracking.SessionsGetV1Request, requestOptions?: Sessions.RequestOptions): core.HttpResponsePromise<Chrt.Session1>;
|
|
80
80
|
private __getV1;
|
|
81
81
|
/**
|
|
82
|
-
* Returns distinct device_mac_address and off_chrt_reference_id values matching the query via case-insensitive regex, searching sessions. Use org_scope to restrict to owned, shared, or both (default). | authz: min_org_role=operator | () -> (list[TrackingTypeaheadResult])
|
|
82
|
+
* Returns distinct device_mac_address and off_chrt_reference_id values matching the query via case-insensitive regex, searching sessions. Use org_scope to restrict to owned, shared, or both (default). | auth: api_key | authz: min_org_role=operator | () -> (list[TrackingTypeaheadResult])
|
|
83
83
|
*
|
|
84
84
|
* @param {Chrt.tracking.SessionsTypeaheadV1Request} request
|
|
85
85
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -67,7 +67,7 @@ class Sessions {
|
|
|
67
67
|
this._options = _options;
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
|
-
* Lists sessions with filtering, sorting, and pagination. Use org_scope to restrict to owned, shared, or both (default). | authz: min_org_role=operator | () -> (SessionListRes)
|
|
70
|
+
* Lists sessions with filtering, sorting, and pagination. Use org_scope to restrict to owned, shared, or both (default). | auth: api_key | authz: min_org_role=operator | () -> (SessionListRes)
|
|
71
71
|
*
|
|
72
72
|
* @param {Chrt.tracking.SessionsListV1Request} request
|
|
73
73
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -205,7 +205,7 @@ class Sessions {
|
|
|
205
205
|
});
|
|
206
206
|
}
|
|
207
207
|
/**
|
|
208
|
-
* Retrieves a single session by its ID. Access restricted to the caller's organization or shared organizations. | authz: min_org_role=operator | () -> (Session1)
|
|
208
|
+
* Retrieves a single session by its ID. Access restricted to the caller's organization or shared organizations. | auth: api_key | authz: min_org_role=operator | () -> (Session1)
|
|
209
209
|
*
|
|
210
210
|
* @param {Chrt.tracking.SessionsGetV1Request} request
|
|
211
211
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -269,7 +269,7 @@ class Sessions {
|
|
|
269
269
|
});
|
|
270
270
|
}
|
|
271
271
|
/**
|
|
272
|
-
* Returns distinct device_mac_address and off_chrt_reference_id values matching the query via case-insensitive regex, searching sessions. Use org_scope to restrict to owned, shared, or both (default). | authz: min_org_role=operator | () -> (list[TrackingTypeaheadResult])
|
|
272
|
+
* Returns distinct device_mac_address and off_chrt_reference_id values matching the query via case-insensitive regex, searching sessions. Use org_scope to restrict to owned, shared, or both (default). | auth: api_key | authz: min_org_role=operator | () -> (list[TrackingTypeaheadResult])
|
|
273
273
|
*
|
|
274
274
|
* @param {Chrt.tracking.SessionsTypeaheadV1Request} request
|
|
275
275
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -31,7 +31,7 @@ export declare class SessionByDevice {
|
|
|
31
31
|
protected readonly _options: SessionByDevice.Options;
|
|
32
32
|
constructor(_options?: SessionByDevice.Options);
|
|
33
33
|
/**
|
|
34
|
-
* Returns the most recent data point for a session, excluding outliers. Access restricted to the caller's organization. | authz: min_org_role=operator | () -> (SessionByDeviceDataPoint1 | None)
|
|
34
|
+
* Returns the most recent data point for a session, excluding outliers. Access restricted to the caller's organization. | auth: api_key | authz: min_org_role=operator | () -> (SessionByDeviceDataPoint1 | None)
|
|
35
35
|
*
|
|
36
36
|
* @param {Chrt.tracking.timeseries.SessionByDeviceLastSeenV1Request} request
|
|
37
37
|
* @param {SessionByDevice.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -46,7 +46,7 @@ export declare class SessionByDevice {
|
|
|
46
46
|
lastSeenV1(request: Chrt.tracking.timeseries.SessionByDeviceLastSeenV1Request, requestOptions?: SessionByDevice.RequestOptions): core.HttpResponsePromise<(Chrt.SessionByDeviceDataPoint1 | null) | undefined>;
|
|
47
47
|
private __lastSeenV1;
|
|
48
48
|
/**
|
|
49
|
-
* Returns time-bucketed data points and stationary clusters for a session within the given time range. start_timestamp and end_timestamp are required. | authz: min_org_role=operator | () -> SessionByDeviceHistoryRes1
|
|
49
|
+
* Returns time-bucketed data points and stationary clusters for a session within the given time range. start_timestamp and end_timestamp are required. | auth: api_key | authz: min_org_role=operator | () -> SessionByDeviceHistoryRes1
|
|
50
50
|
*
|
|
51
51
|
* @param {Chrt.tracking.timeseries.SessionByDeviceDataPointsV1Request} request
|
|
52
52
|
* @param {SessionByDevice.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -56,7 +56,7 @@ class SessionByDevice {
|
|
|
56
56
|
this._options = _options;
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
|
-
* Returns the most recent data point for a session, excluding outliers. Access restricted to the caller's organization. | authz: min_org_role=operator | () -> (SessionByDeviceDataPoint1 | None)
|
|
59
|
+
* Returns the most recent data point for a session, excluding outliers. Access restricted to the caller's organization. | auth: api_key | authz: min_org_role=operator | () -> (SessionByDeviceDataPoint1 | None)
|
|
60
60
|
*
|
|
61
61
|
* @param {Chrt.tracking.timeseries.SessionByDeviceLastSeenV1Request} request
|
|
62
62
|
* @param {SessionByDevice.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -123,7 +123,7 @@ class SessionByDevice {
|
|
|
123
123
|
});
|
|
124
124
|
}
|
|
125
125
|
/**
|
|
126
|
-
* Returns time-bucketed data points and stationary clusters for a session within the given time range. start_timestamp and end_timestamp are required. | authz: min_org_role=operator | () -> SessionByDeviceHistoryRes1
|
|
126
|
+
* Returns time-bucketed data points and stationary clusters for a session within the given time range. start_timestamp and end_timestamp are required. | auth: api_key | authz: min_org_role=operator | () -> SessionByDeviceHistoryRes1
|
|
127
127
|
*
|
|
128
128
|
* @param {Chrt.tracking.timeseries.SessionByDeviceDataPointsV1Request} request
|
|
129
129
|
* @param {SessionByDevice.RequestOptions} requestOptions - Request-specific configuration.
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.539.
|
|
1
|
+
export declare const SDK_VERSION = "1.539.1";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/Client.mjs
CHANGED
|
@@ -17,8 +17,8 @@ export class ChrtClient {
|
|
|
17
17
|
this._options = Object.assign(Object.assign({}, _options), { headers: mergeHeaders({
|
|
18
18
|
"X-Fern-Language": "JavaScript",
|
|
19
19
|
"X-Fern-SDK-Name": "@chrt-inc/typescript-sdk",
|
|
20
|
-
"X-Fern-SDK-Version": "1.539.
|
|
21
|
-
"User-Agent": "@chrt-inc/typescript-sdk/1.539.
|
|
20
|
+
"X-Fern-SDK-Version": "1.539.1",
|
|
21
|
+
"User-Agent": "@chrt-inc/typescript-sdk/1.539.1",
|
|
22
22
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
23
23
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
24
24
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
|
@@ -31,7 +31,7 @@ export declare class Sessions {
|
|
|
31
31
|
protected readonly _options: Sessions.Options;
|
|
32
32
|
constructor(_options?: Sessions.Options);
|
|
33
33
|
/**
|
|
34
|
-
* Lists sessions with filtering, sorting, and pagination. Use org_scope to restrict to owned, shared, or both (default). | authz: min_org_role=operator | () -> (SessionListRes)
|
|
34
|
+
* Lists sessions with filtering, sorting, and pagination. Use org_scope to restrict to owned, shared, or both (default). | auth: api_key | authz: min_org_role=operator | () -> (SessionListRes)
|
|
35
35
|
*
|
|
36
36
|
* @param {Chrt.tracking.SessionsListV1Request} request
|
|
37
37
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -64,7 +64,7 @@ export declare class Sessions {
|
|
|
64
64
|
listV1(request?: Chrt.tracking.SessionsListV1Request, requestOptions?: Sessions.RequestOptions): core.HttpResponsePromise<Chrt.SessionListRes>;
|
|
65
65
|
private __listV1;
|
|
66
66
|
/**
|
|
67
|
-
* Retrieves a single session by its ID. Access restricted to the caller's organization or shared organizations. | authz: min_org_role=operator | () -> (Session1)
|
|
67
|
+
* Retrieves a single session by its ID. Access restricted to the caller's organization or shared organizations. | auth: api_key | authz: min_org_role=operator | () -> (Session1)
|
|
68
68
|
*
|
|
69
69
|
* @param {Chrt.tracking.SessionsGetV1Request} request
|
|
70
70
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -79,7 +79,7 @@ export declare class Sessions {
|
|
|
79
79
|
getV1(request: Chrt.tracking.SessionsGetV1Request, requestOptions?: Sessions.RequestOptions): core.HttpResponsePromise<Chrt.Session1>;
|
|
80
80
|
private __getV1;
|
|
81
81
|
/**
|
|
82
|
-
* Returns distinct device_mac_address and off_chrt_reference_id values matching the query via case-insensitive regex, searching sessions. Use org_scope to restrict to owned, shared, or both (default). | authz: min_org_role=operator | () -> (list[TrackingTypeaheadResult])
|
|
82
|
+
* Returns distinct device_mac_address and off_chrt_reference_id values matching the query via case-insensitive regex, searching sessions. Use org_scope to restrict to owned, shared, or both (default). | auth: api_key | authz: min_org_role=operator | () -> (list[TrackingTypeaheadResult])
|
|
83
83
|
*
|
|
84
84
|
* @param {Chrt.tracking.SessionsTypeaheadV1Request} request
|
|
85
85
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -31,7 +31,7 @@ export class Sessions {
|
|
|
31
31
|
this._options = _options;
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
|
-
* Lists sessions with filtering, sorting, and pagination. Use org_scope to restrict to owned, shared, or both (default). | authz: min_org_role=operator | () -> (SessionListRes)
|
|
34
|
+
* Lists sessions with filtering, sorting, and pagination. Use org_scope to restrict to owned, shared, or both (default). | auth: api_key | authz: min_org_role=operator | () -> (SessionListRes)
|
|
35
35
|
*
|
|
36
36
|
* @param {Chrt.tracking.SessionsListV1Request} request
|
|
37
37
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -169,7 +169,7 @@ export class Sessions {
|
|
|
169
169
|
});
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
|
-
* Retrieves a single session by its ID. Access restricted to the caller's organization or shared organizations. | authz: min_org_role=operator | () -> (Session1)
|
|
172
|
+
* Retrieves a single session by its ID. Access restricted to the caller's organization or shared organizations. | auth: api_key | authz: min_org_role=operator | () -> (Session1)
|
|
173
173
|
*
|
|
174
174
|
* @param {Chrt.tracking.SessionsGetV1Request} request
|
|
175
175
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -233,7 +233,7 @@ export class Sessions {
|
|
|
233
233
|
});
|
|
234
234
|
}
|
|
235
235
|
/**
|
|
236
|
-
* Returns distinct device_mac_address and off_chrt_reference_id values matching the query via case-insensitive regex, searching sessions. Use org_scope to restrict to owned, shared, or both (default). | authz: min_org_role=operator | () -> (list[TrackingTypeaheadResult])
|
|
236
|
+
* Returns distinct device_mac_address and off_chrt_reference_id values matching the query via case-insensitive regex, searching sessions. Use org_scope to restrict to owned, shared, or both (default). | auth: api_key | authz: min_org_role=operator | () -> (list[TrackingTypeaheadResult])
|
|
237
237
|
*
|
|
238
238
|
* @param {Chrt.tracking.SessionsTypeaheadV1Request} request
|
|
239
239
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -31,7 +31,7 @@ export declare class SessionByDevice {
|
|
|
31
31
|
protected readonly _options: SessionByDevice.Options;
|
|
32
32
|
constructor(_options?: SessionByDevice.Options);
|
|
33
33
|
/**
|
|
34
|
-
* Returns the most recent data point for a session, excluding outliers. Access restricted to the caller's organization. | authz: min_org_role=operator | () -> (SessionByDeviceDataPoint1 | None)
|
|
34
|
+
* Returns the most recent data point for a session, excluding outliers. Access restricted to the caller's organization. | auth: api_key | authz: min_org_role=operator | () -> (SessionByDeviceDataPoint1 | None)
|
|
35
35
|
*
|
|
36
36
|
* @param {Chrt.tracking.timeseries.SessionByDeviceLastSeenV1Request} request
|
|
37
37
|
* @param {SessionByDevice.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -46,7 +46,7 @@ export declare class SessionByDevice {
|
|
|
46
46
|
lastSeenV1(request: Chrt.tracking.timeseries.SessionByDeviceLastSeenV1Request, requestOptions?: SessionByDevice.RequestOptions): core.HttpResponsePromise<(Chrt.SessionByDeviceDataPoint1 | null) | undefined>;
|
|
47
47
|
private __lastSeenV1;
|
|
48
48
|
/**
|
|
49
|
-
* Returns time-bucketed data points and stationary clusters for a session within the given time range. start_timestamp and end_timestamp are required. | authz: min_org_role=operator | () -> SessionByDeviceHistoryRes1
|
|
49
|
+
* Returns time-bucketed data points and stationary clusters for a session within the given time range. start_timestamp and end_timestamp are required. | auth: api_key | authz: min_org_role=operator | () -> SessionByDeviceHistoryRes1
|
|
50
50
|
*
|
|
51
51
|
* @param {Chrt.tracking.timeseries.SessionByDeviceDataPointsV1Request} request
|
|
52
52
|
* @param {SessionByDevice.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -20,7 +20,7 @@ export class SessionByDevice {
|
|
|
20
20
|
this._options = _options;
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
|
-
* Returns the most recent data point for a session, excluding outliers. Access restricted to the caller's organization. | authz: min_org_role=operator | () -> (SessionByDeviceDataPoint1 | None)
|
|
23
|
+
* Returns the most recent data point for a session, excluding outliers. Access restricted to the caller's organization. | auth: api_key | authz: min_org_role=operator | () -> (SessionByDeviceDataPoint1 | None)
|
|
24
24
|
*
|
|
25
25
|
* @param {Chrt.tracking.timeseries.SessionByDeviceLastSeenV1Request} request
|
|
26
26
|
* @param {SessionByDevice.RequestOptions} requestOptions - Request-specific configuration.
|
|
@@ -87,7 +87,7 @@ export class SessionByDevice {
|
|
|
87
87
|
});
|
|
88
88
|
}
|
|
89
89
|
/**
|
|
90
|
-
* Returns time-bucketed data points and stationary clusters for a session within the given time range. start_timestamp and end_timestamp are required. | authz: min_org_role=operator | () -> SessionByDeviceHistoryRes1
|
|
90
|
+
* Returns time-bucketed data points and stationary clusters for a session within the given time range. start_timestamp and end_timestamp are required. | auth: api_key | authz: min_org_role=operator | () -> SessionByDeviceHistoryRes1
|
|
91
91
|
*
|
|
92
92
|
* @param {Chrt.tracking.timeseries.SessionByDeviceDataPointsV1Request} request
|
|
93
93
|
* @param {SessionByDevice.RequestOptions} requestOptions - Request-specific configuration.
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.539.
|
|
1
|
+
export declare const SDK_VERSION = "1.539.1";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "1.539.
|
|
1
|
+
export const SDK_VERSION = "1.539.1";
|
package/package.json
CHANGED
package/reference.md
CHANGED
|
@@ -13425,7 +13425,7 @@ await client.tracking.driver.updateV1({
|
|
|
13425
13425
|
<dl>
|
|
13426
13426
|
<dd>
|
|
13427
13427
|
|
|
13428
|
-
Lists sessions with filtering, sorting, and pagination. Use org_scope to restrict to owned, shared, or both (default). | authz: min_org_role=operator | () -> (SessionListRes)
|
|
13428
|
+
Lists sessions with filtering, sorting, and pagination. Use org_scope to restrict to owned, shared, or both (default). | auth: api_key | authz: min_org_role=operator | () -> (SessionListRes)
|
|
13429
13429
|
|
|
13430
13430
|
</dd>
|
|
13431
13431
|
</dl>
|
|
@@ -13508,7 +13508,7 @@ await client.tracking.sessions.listV1({
|
|
|
13508
13508
|
<dl>
|
|
13509
13509
|
<dd>
|
|
13510
13510
|
|
|
13511
|
-
Retrieves a single session by its ID. Access restricted to the caller's organization or shared organizations. | authz: min_org_role=operator | () -> (Session1)
|
|
13511
|
+
Retrieves a single session by its ID. Access restricted to the caller's organization or shared organizations. | auth: api_key | authz: min_org_role=operator | () -> (Session1)
|
|
13512
13512
|
|
|
13513
13513
|
</dd>
|
|
13514
13514
|
</dl>
|
|
@@ -13573,7 +13573,7 @@ await client.tracking.sessions.getV1({
|
|
|
13573
13573
|
<dl>
|
|
13574
13574
|
<dd>
|
|
13575
13575
|
|
|
13576
|
-
Returns distinct device_mac_address and off_chrt_reference_id values matching the query via case-insensitive regex, searching sessions. Use org_scope to restrict to owned, shared, or both (default). | authz: min_org_role=operator | () -> (list[TrackingTypeaheadResult])
|
|
13576
|
+
Returns distinct device_mac_address and off_chrt_reference_id values matching the query via case-insensitive regex, searching sessions. Use org_scope to restrict to owned, shared, or both (default). | auth: api_key | authz: min_org_role=operator | () -> (list[TrackingTypeaheadResult])
|
|
13577
13577
|
|
|
13578
13578
|
</dd>
|
|
13579
13579
|
</dl>
|
|
@@ -14973,7 +14973,7 @@ await client.tracking.timeseries.cargoByDriver.dataPointsPublicV1({
|
|
|
14973
14973
|
<dl>
|
|
14974
14974
|
<dd>
|
|
14975
14975
|
|
|
14976
|
-
Returns the most recent data point for a session, excluding outliers. Access restricted to the caller's organization. | authz: min_org_role=operator | () -> (SessionByDeviceDataPoint1 | None)
|
|
14976
|
+
Returns the most recent data point for a session, excluding outliers. Access restricted to the caller's organization. | auth: api_key | authz: min_org_role=operator | () -> (SessionByDeviceDataPoint1 | None)
|
|
14977
14977
|
|
|
14978
14978
|
</dd>
|
|
14979
14979
|
</dl>
|
|
@@ -15038,7 +15038,7 @@ await client.tracking.timeseries.sessionByDevice.lastSeenV1({
|
|
|
15038
15038
|
<dl>
|
|
15039
15039
|
<dd>
|
|
15040
15040
|
|
|
15041
|
-
Returns time-bucketed data points and stationary clusters for a session within the given time range. start_timestamp and end_timestamp are required. | authz: min_org_role=operator | () -> SessionByDeviceHistoryRes1
|
|
15041
|
+
Returns time-bucketed data points and stationary clusters for a session within the given time range. start_timestamp and end_timestamp are required. | auth: api_key | authz: min_org_role=operator | () -> SessionByDeviceHistoryRes1
|
|
15042
15042
|
|
|
15043
15043
|
</dd>
|
|
15044
15044
|
</dl>
|