@spytecgps/nova-orm 1.3.88 → 1.3.90

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.
@@ -28,6 +28,19 @@ export declare enum HapnClientType {
28
28
  b2b = 2,
29
29
  test = 3
30
30
  }
31
+ export declare enum HapnClientTypeNames {
32
+ b2c = "b2c",
33
+ b2b = "b2b",
34
+ test = "test"
35
+ }
36
+ export declare enum HapnUseType {
37
+ Personal = "personal",
38
+ Business = "business"
39
+ }
40
+ export declare enum MaxUsersAllowed {
41
+ b2c = 3,
42
+ b2b = 50
43
+ }
31
44
  export declare enum DeviceBehaviorType {
32
45
  ReportingFrequency = "ReportingFrequency",
33
46
  Advanced = "Advanced",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "1.3.88",
3
+ "version": "1.3.90",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -1,6 +0,0 @@
1
- export declare class DeviceCameraMediaStreammingData {
2
- imei: string;
3
- mediaLiveInputId: string | null;
4
- mediaLiveChannelId: string | null;
5
- rtmpUrl: string | null;
6
- }