@sortsys/v2-client 0.1.17 → 0.1.18
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 +10 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2492,6 +2492,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2492
2492
|
};
|
|
2493
2493
|
output: {
|
|
2494
2494
|
id: string;
|
|
2495
|
+
salutation: string | null;
|
|
2495
2496
|
firstName: string;
|
|
2496
2497
|
lastName: string | null;
|
|
2497
2498
|
phoneNumbers: {
|
|
@@ -2748,6 +2749,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2748
2749
|
};
|
|
2749
2750
|
output: {
|
|
2750
2751
|
id: string;
|
|
2752
|
+
salutation: string | null;
|
|
2751
2753
|
firstName: string;
|
|
2752
2754
|
lastName: string | null;
|
|
2753
2755
|
phoneNumbers: {
|
|
@@ -2807,6 +2809,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2807
2809
|
};
|
|
2808
2810
|
output: {
|
|
2809
2811
|
id: string;
|
|
2812
|
+
salutation: string | null;
|
|
2810
2813
|
firstName: string;
|
|
2811
2814
|
lastName: string | null;
|
|
2812
2815
|
phoneNumbers: {
|
|
@@ -2828,6 +2831,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2828
2831
|
};
|
|
2829
2832
|
output: {
|
|
2830
2833
|
id: string;
|
|
2834
|
+
salutation: string | null;
|
|
2831
2835
|
firstName: string;
|
|
2832
2836
|
lastName: string | null;
|
|
2833
2837
|
phoneNumbers: {
|
|
@@ -2846,6 +2850,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2846
2850
|
create: MutationProcedure<{
|
|
2847
2851
|
input: {
|
|
2848
2852
|
firstName: string;
|
|
2853
|
+
salutation?: string | null | undefined;
|
|
2849
2854
|
lastName?: string | null | undefined;
|
|
2850
2855
|
phoneNumbers?: {
|
|
2851
2856
|
number: string;
|
|
@@ -2865,6 +2870,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2865
2870
|
input: {
|
|
2866
2871
|
id: string;
|
|
2867
2872
|
data: {
|
|
2873
|
+
salutation?: string | null | undefined;
|
|
2868
2874
|
firstName?: string | undefined;
|
|
2869
2875
|
lastName?: string | null | undefined;
|
|
2870
2876
|
phoneNumbers?: {
|
|
@@ -3501,9 +3507,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
3501
3507
|
customId: number;
|
|
3502
3508
|
brand: string;
|
|
3503
3509
|
category: string;
|
|
3504
|
-
purchasePrice: number | null;
|
|
3505
|
-
usageCostPerDay: number | null;
|
|
3506
3510
|
label?: string | null | undefined;
|
|
3511
|
+
purchasePrice?: number | null | undefined;
|
|
3512
|
+
usageCostPerDay?: number | null | undefined;
|
|
3507
3513
|
status?: "lost" | "broken" | null | undefined;
|
|
3508
3514
|
};
|
|
3509
3515
|
output: {
|
|
@@ -3617,6 +3623,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
3617
3623
|
responsibleUserId: string | null;
|
|
3618
3624
|
startedByUserId: string | null;
|
|
3619
3625
|
endedByUserId: string | null;
|
|
3626
|
+
toolUsageCostPerDay: number | null;
|
|
3620
3627
|
comment: string | null;
|
|
3621
3628
|
startedAt: Date;
|
|
3622
3629
|
endedAt: Date | null;
|
|
@@ -3661,6 +3668,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
3661
3668
|
notes: string | null;
|
|
3662
3669
|
createdAt: Date;
|
|
3663
3670
|
responsibleUserId: string | null;
|
|
3671
|
+
toolUsageCostPerDay: number | null;
|
|
3664
3672
|
}[];
|
|
3665
3673
|
meta: object;
|
|
3666
3674
|
}>;
|