@spytecgps/nova-orm 0.0.66 → 0.0.68
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.
|
@@ -117,10 +117,12 @@ export interface CreateUserActivationEventParams {
|
|
|
117
117
|
platform?: string;
|
|
118
118
|
ip?: string;
|
|
119
119
|
userAgent?: string;
|
|
120
|
+
createdAt?: Date;
|
|
120
121
|
}
|
|
121
122
|
export interface UpdateUserActivationDeviceParams {
|
|
122
123
|
filters: {
|
|
123
|
-
imei
|
|
124
|
+
imei?: string;
|
|
125
|
+
id?: number;
|
|
124
126
|
};
|
|
125
127
|
values: {
|
|
126
128
|
trackingReason?: string;
|
|
@@ -129,5 +131,7 @@ export interface UpdateUserActivationDeviceParams {
|
|
|
129
131
|
planAnnual?: boolean;
|
|
130
132
|
subscriptionId?: string;
|
|
131
133
|
platform?: string;
|
|
134
|
+
servicePlan?: string;
|
|
135
|
+
model?: string;
|
|
132
136
|
};
|
|
133
137
|
}
|