@spytecgps/nova-orm 0.0.65 → 0.0.67
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.
|
@@ -120,7 +120,8 @@ export interface CreateUserActivationEventParams {
|
|
|
120
120
|
}
|
|
121
121
|
export interface UpdateUserActivationDeviceParams {
|
|
122
122
|
filters: {
|
|
123
|
-
imei
|
|
123
|
+
imei?: string;
|
|
124
|
+
id?: number;
|
|
124
125
|
};
|
|
125
126
|
values: {
|
|
126
127
|
trackingReason?: string;
|
|
@@ -129,5 +130,7 @@ export interface UpdateUserActivationDeviceParams {
|
|
|
129
130
|
planAnnual?: boolean;
|
|
130
131
|
subscriptionId?: string;
|
|
131
132
|
platform?: string;
|
|
133
|
+
servicePlan?: string;
|
|
134
|
+
model?: string;
|
|
132
135
|
};
|
|
133
136
|
}
|