@sortsys/v2-client 0.1.13 → 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 +33 -4
- 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,8 +3501,10 @@ declare const appRouter: BuiltRouter<{
|
|
|
3497
3501
|
customId: number;
|
|
3498
3502
|
brand: string;
|
|
3499
3503
|
category: string;
|
|
3500
|
-
|
|
3501
|
-
|
|
3504
|
+
purchasePrice: number | null;
|
|
3505
|
+
usageCostPerDay: number | null;
|
|
3506
|
+
label?: string | null | undefined;
|
|
3507
|
+
status?: "lost" | "broken" | null | undefined;
|
|
3502
3508
|
};
|
|
3503
3509
|
output: {
|
|
3504
3510
|
id: string;
|
|
@@ -3509,9 +3515,12 @@ declare const appRouter: BuiltRouter<{
|
|
|
3509
3515
|
input: {
|
|
3510
3516
|
id: string;
|
|
3511
3517
|
data: {
|
|
3512
|
-
brand?: string |
|
|
3513
|
-
category?: string |
|
|
3518
|
+
brand?: string | undefined;
|
|
3519
|
+
category?: string | undefined;
|
|
3514
3520
|
label?: string | null | undefined;
|
|
3521
|
+
purchasePrice?: number | null | undefined;
|
|
3522
|
+
usageCostPerDay?: number | null | undefined;
|
|
3523
|
+
status?: "lost" | "broken" | null | undefined;
|
|
3515
3524
|
};
|
|
3516
3525
|
};
|
|
3517
3526
|
output: {
|
|
@@ -3528,6 +3537,24 @@ declare const appRouter: BuiltRouter<{
|
|
|
3528
3537
|
};
|
|
3529
3538
|
meta: object;
|
|
3530
3539
|
}>;
|
|
3540
|
+
archive: MutationProcedure<{
|
|
3541
|
+
input: {
|
|
3542
|
+
id: string;
|
|
3543
|
+
};
|
|
3544
|
+
output: {
|
|
3545
|
+
success: true;
|
|
3546
|
+
};
|
|
3547
|
+
meta: object;
|
|
3548
|
+
}>;
|
|
3549
|
+
unarchive: MutationProcedure<{
|
|
3550
|
+
input: {
|
|
3551
|
+
id: string;
|
|
3552
|
+
};
|
|
3553
|
+
output: {
|
|
3554
|
+
success: true;
|
|
3555
|
+
};
|
|
3556
|
+
meta: object;
|
|
3557
|
+
}>;
|
|
3531
3558
|
track: MutationProcedure<{
|
|
3532
3559
|
input: {
|
|
3533
3560
|
id: string;
|
|
@@ -3590,8 +3617,10 @@ declare const appRouter: BuiltRouter<{
|
|
|
3590
3617
|
responsibleUserId: string | null;
|
|
3591
3618
|
startedByUserId: string | null;
|
|
3592
3619
|
endedByUserId: string | null;
|
|
3620
|
+
comment: string | null;
|
|
3593
3621
|
startedAt: Date;
|
|
3594
3622
|
endedAt: Date | null;
|
|
3623
|
+
deadlineAt: Date | null;
|
|
3595
3624
|
}[];
|
|
3596
3625
|
meta: object;
|
|
3597
3626
|
}>;
|