@sortsys/v2-client 0.1.14 → 0.1.15
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.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3466,6 +3466,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
3466
3466
|
brand: string;
|
|
3467
3467
|
category: string;
|
|
3468
3468
|
label: string | null;
|
|
3469
|
+
purchasePrice: number | null;
|
|
3470
|
+
usageCostPerDay: number | null;
|
|
3469
3471
|
status: "lost" | "broken" | null;
|
|
3470
3472
|
available: boolean;
|
|
3471
3473
|
createdAt: Date;
|
|
@@ -3484,6 +3486,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
3484
3486
|
brand: string;
|
|
3485
3487
|
category: string;
|
|
3486
3488
|
label: string | null;
|
|
3489
|
+
purchasePrice: number | null;
|
|
3490
|
+
usageCostPerDay: number | null;
|
|
3487
3491
|
status: "lost" | "broken" | null;
|
|
3488
3492
|
available: boolean;
|
|
3489
3493
|
createdAt: Date;
|
|
@@ -3497,6 +3501,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
3497
3501
|
customId: number;
|
|
3498
3502
|
brand: string;
|
|
3499
3503
|
category: string;
|
|
3504
|
+
purchasePrice: number | null;
|
|
3505
|
+
usageCostPerDay: number | null;
|
|
3500
3506
|
label?: string | null | undefined;
|
|
3501
3507
|
status?: "lost" | "broken" | null | undefined;
|
|
3502
3508
|
};
|
|
@@ -3512,6 +3518,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
3512
3518
|
brand?: string | undefined;
|
|
3513
3519
|
category?: string | undefined;
|
|
3514
3520
|
label?: string | null | undefined;
|
|
3521
|
+
purchasePrice?: number | null | undefined;
|
|
3522
|
+
usageCostPerDay?: number | null | undefined;
|
|
3515
3523
|
status?: "lost" | "broken" | null | undefined;
|
|
3516
3524
|
};
|
|
3517
3525
|
};
|