@spytecgps/nova-orm 1.3.49 → 1.3.51
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/entities/billingDeviceTypePlan.d.ts +1 -0
- package/dist/entities/deviceCameraMedia.d.ts +3 -0
- package/dist/entities/deviceCameraRequestedVideoData.d.ts +2 -0
- package/dist/entities/historicalBillingPlan.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/types/billing.d.ts +2 -0
- package/package.json +1 -1
package/dist/types/billing.d.ts
CHANGED
|
@@ -265,6 +265,7 @@ export interface UpsertBillingDeviceTypePlanParams {
|
|
|
265
265
|
deviceType?: string | null;
|
|
266
266
|
createdAt?: Date;
|
|
267
267
|
status: UpsertBillingPlanParamsStatus;
|
|
268
|
+
asinAssigned?: string | null;
|
|
268
269
|
}
|
|
269
270
|
export interface GetBillingDeviceTypePlansParams extends BaseSelectQueryParams {
|
|
270
271
|
planId: string;
|
|
@@ -282,6 +283,7 @@ export interface GetBillingPlanResult {
|
|
|
282
283
|
planId: string;
|
|
283
284
|
deviceType: string;
|
|
284
285
|
deviceTypeModel: string;
|
|
286
|
+
asinAssigned: string | null;
|
|
285
287
|
targetCustomer: 'consumer' | 'enterprise' | 'any';
|
|
286
288
|
plan: string;
|
|
287
289
|
platform: string;
|