@sortsys/v2-client 0.1.13 → 0.1.14
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 +25 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3497,8 +3497,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
3497
3497
|
customId: number;
|
|
3498
3498
|
brand: string;
|
|
3499
3499
|
category: string;
|
|
3500
|
-
label
|
|
3501
|
-
status
|
|
3500
|
+
label?: string | null | undefined;
|
|
3501
|
+
status?: "lost" | "broken" | null | undefined;
|
|
3502
3502
|
};
|
|
3503
3503
|
output: {
|
|
3504
3504
|
id: string;
|
|
@@ -3509,9 +3509,10 @@ declare const appRouter: BuiltRouter<{
|
|
|
3509
3509
|
input: {
|
|
3510
3510
|
id: string;
|
|
3511
3511
|
data: {
|
|
3512
|
-
brand?: string |
|
|
3513
|
-
category?: string |
|
|
3512
|
+
brand?: string | undefined;
|
|
3513
|
+
category?: string | undefined;
|
|
3514
3514
|
label?: string | null | undefined;
|
|
3515
|
+
status?: "lost" | "broken" | null | undefined;
|
|
3515
3516
|
};
|
|
3516
3517
|
};
|
|
3517
3518
|
output: {
|
|
@@ -3528,6 +3529,24 @@ declare const appRouter: BuiltRouter<{
|
|
|
3528
3529
|
};
|
|
3529
3530
|
meta: object;
|
|
3530
3531
|
}>;
|
|
3532
|
+
archive: MutationProcedure<{
|
|
3533
|
+
input: {
|
|
3534
|
+
id: string;
|
|
3535
|
+
};
|
|
3536
|
+
output: {
|
|
3537
|
+
success: true;
|
|
3538
|
+
};
|
|
3539
|
+
meta: object;
|
|
3540
|
+
}>;
|
|
3541
|
+
unarchive: MutationProcedure<{
|
|
3542
|
+
input: {
|
|
3543
|
+
id: string;
|
|
3544
|
+
};
|
|
3545
|
+
output: {
|
|
3546
|
+
success: true;
|
|
3547
|
+
};
|
|
3548
|
+
meta: object;
|
|
3549
|
+
}>;
|
|
3531
3550
|
track: MutationProcedure<{
|
|
3532
3551
|
input: {
|
|
3533
3552
|
id: string;
|
|
@@ -3590,8 +3609,10 @@ declare const appRouter: BuiltRouter<{
|
|
|
3590
3609
|
responsibleUserId: string | null;
|
|
3591
3610
|
startedByUserId: string | null;
|
|
3592
3611
|
endedByUserId: string | null;
|
|
3612
|
+
comment: string | null;
|
|
3593
3613
|
startedAt: Date;
|
|
3594
3614
|
endedAt: Date | null;
|
|
3615
|
+
deadlineAt: Date | null;
|
|
3595
3616
|
}[];
|
|
3596
3617
|
meta: object;
|
|
3597
3618
|
}>;
|