@spytecgps/nova-orm 1.3.79 → 1.3.81

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.
@@ -131,7 +131,7 @@ export declare class ClientsRepository extends BaseRepository {
131
131
  * - userActivationId: The user activation id
132
132
  * - tokenUrl: The token url
133
133
  * - fleetUrl: The fleet url
134
- * - requestBody: The request body
134
+ * - requestParams: The request params
135
135
  * @returns {Promise<ClientIngestorConfiguration>} The created client ingestor configuration
136
136
  */
137
137
  createClientIngestorConfiguration(params: CreateClientIngestorConfigurationParams): Promise<ClientIngestorConfiguration>;
@@ -125,6 +125,7 @@ export interface GetClientIngestorConfigurationsParams extends BaseSelectQueryPa
125
125
  filters: {
126
126
  clientId?: number;
127
127
  id?: number;
128
+ isEnabled?: boolean;
128
129
  };
129
130
  }
130
131
  export declare const requireCreateClientIngestorConfigurationParamsAttributes: string[];
@@ -133,5 +134,5 @@ export interface CreateClientIngestorConfigurationParams {
133
134
  userActivationId: number;
134
135
  tokenUrl: string;
135
136
  fleetUrl: string;
136
- requestBody: Record<string, any>;
137
+ requestParams: Record<string, any>;
137
138
  }
@@ -38,6 +38,7 @@ export interface DeviceStatusEntity {
38
38
  externalPowerVoltage2?: string;
39
39
  hoursOfOperation?: string;
40
40
  reportType?: string;
41
+ protocolVersion?: string;
41
42
  }
42
43
  export interface ConnectionStatusInfo {
43
44
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "1.3.79",
3
+ "version": "1.3.81",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",