@spytecgps/nova-orm 1.3.35 → 1.3.37

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.
@@ -111,3 +111,9 @@ export declare enum DeviceCameraMediaLocation {
111
111
  SDCard = "sdCard",
112
112
  Server = "server"
113
113
  }
114
+ export declare enum DeviceCameraEventBehaviorType {
115
+ TakePicture = "takePicture",
116
+ TakeVideo = "takeVideo",
117
+ UploadPicture = "uploadPicture",
118
+ UploadVideo = "uploadVideo"
119
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "1.3.35",
3
+ "version": "1.3.37",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -1,8 +0,0 @@
1
- /// <reference types="node" />
2
- /// <reference types="node" />
3
- export declare class UserAuthorizedDeviceV2 {
4
- clientId: number;
5
- userId: Buffer;
6
- imei: string;
7
- createdAt: Date | null;
8
- }