@spytecgps/nova-orm 1.3.116 → 1.3.118

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.
@@ -138,3 +138,45 @@ export declare enum StreamingStatus {
138
138
  Closed = "closed",
139
139
  Failed = "failed"
140
140
  }
141
+ export declare enum DevicePlatform {
142
+ shopify = "shopify",
143
+ braintree = "braintree",
144
+ acumatica = "acumatica",
145
+ klarna = "klarna",
146
+ amazon = "amazon",
147
+ braintree_amazon = "braintree_amazon"
148
+ }
149
+ export declare enum DeviceModels {
150
+ UNKNOWN = "UNKNOWN",
151
+ GV50 = "GV50",
152
+ GV500 = "GV500",
153
+ GL501 = "GL501",
154
+ GL300 = "GL300",
155
+ GL500 = "GL500",
156
+ GV350 = "GV350",
157
+ PRIME = "PRIME",
158
+ GV620 = "GV620",
159
+ GL50 = "GL50",
160
+ GB100 = "GB100",
161
+ GL31 = "GL31",
162
+ GL30 = "GL30",
163
+ MCX101 = "MCX101",
164
+ MCX301 = "MCX301"
165
+ }
166
+ export declare enum DeviceEventType {
167
+ 'new_activation' = "new_activation",
168
+ 'reactivation' = "reactivation",
169
+ 'subscription_change' = "subscription_change",
170
+ 'resumption' = "resumption",
171
+ 'device_swap' = "device_swap"
172
+ }
173
+ export declare enum DeviceActivationSource {
174
+ 'sieva' = 1,
175
+ 'manual' = 2,
176
+ 'api' = 3,
177
+ 'web' = 4,
178
+ 'mobile' = 5,
179
+ 'ios' = 6,
180
+ 'android' = 7,
181
+ 'activation_site' = 8
182
+ }
@@ -69,6 +69,7 @@ export interface CreateDeviceFirmwareParams {
69
69
  maxDeployPercentage?: number;
70
70
  qmsRate?: number;
71
71
  pendingTimeout?: number;
72
+ forceSMS?: boolean;
72
73
  }
73
74
  export interface CreateFirmwareAutoUpgradeBlacklistParams {
74
75
  clientId: number;
@@ -127,4 +128,5 @@ export interface UpdateDeviceFirmwareParams {
127
128
  maxDeployPercentage?: number;
128
129
  qmsRate?: number;
129
130
  pendingTimeout?: number;
131
+ forceSMS?: boolean;
130
132
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "1.3.116",
3
+ "version": "1.3.118",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",