@spytecgps/nova-orm 1.3.140 → 1.3.142
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/enums.d.ts +32 -1
- package/package.json +1 -1
package/dist/types/enums.d.ts
CHANGED
|
@@ -164,7 +164,8 @@ export declare enum DeviceModels {
|
|
|
164
164
|
GL31 = "GL31",
|
|
165
165
|
GL30 = "GL30",
|
|
166
166
|
MCX101 = "MCX101",
|
|
167
|
-
MCX301 = "MCX301"
|
|
167
|
+
MCX301 = "MCX301",
|
|
168
|
+
FMM00A = "FMM00A"
|
|
168
169
|
}
|
|
169
170
|
export declare enum DeviceEventType {
|
|
170
171
|
'new_activation' = "new_activation",
|
|
@@ -190,3 +191,33 @@ export declare enum SubscriptionStatus {
|
|
|
190
191
|
Expired = "Expired",
|
|
191
192
|
PastDue = "Past Due"
|
|
192
193
|
}
|
|
194
|
+
export declare enum DeactivationCode {
|
|
195
|
+
temporary = "temporary",
|
|
196
|
+
too_expensive = "too_expensive",
|
|
197
|
+
no_need = "no_need",
|
|
198
|
+
missing_features = "missing_features",
|
|
199
|
+
too_difficult = "too_difficult",
|
|
200
|
+
no_value = "no_value",
|
|
201
|
+
tech_issues = "tech_issues",
|
|
202
|
+
missing_hardware = "missing_hardware",
|
|
203
|
+
customer_service = "customer_service",
|
|
204
|
+
biz_change = "biz_change",
|
|
205
|
+
device_paused = "device_paused",
|
|
206
|
+
removed_from_account = "removed_from_account",
|
|
207
|
+
device_swapped = "device_swapped",
|
|
208
|
+
churnbuster_campaign_lost = "churnbuster_campaign_lost",
|
|
209
|
+
system_auto = "system_auto",
|
|
210
|
+
canceled_sub_active_sim_or_device = "canceled_sub_active_sim_or_device"
|
|
211
|
+
}
|
|
212
|
+
export declare enum DeactivationCreatedBy {
|
|
213
|
+
customer = "customer",
|
|
214
|
+
customer_support = "customer_support",
|
|
215
|
+
system = "system"
|
|
216
|
+
}
|
|
217
|
+
export declare enum Carriers {
|
|
218
|
+
POD = 1,
|
|
219
|
+
Verizon = 2,
|
|
220
|
+
KORE = 3,
|
|
221
|
+
Twilio = 4,
|
|
222
|
+
Unknown = 99
|
|
223
|
+
}
|