@sortsys/v2-client 0.1.17 → 0.1.19
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 +20 -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: {
|
|
@@ -2773,6 +2775,16 @@ declare const appRouter: BuiltRouter<{
|
|
|
2773
2775
|
};
|
|
2774
2776
|
meta: object;
|
|
2775
2777
|
}>;
|
|
2778
|
+
set: MutationProcedure<{
|
|
2779
|
+
input: {
|
|
2780
|
+
projectId: string;
|
|
2781
|
+
contactIds: string[];
|
|
2782
|
+
};
|
|
2783
|
+
output: {
|
|
2784
|
+
success: true;
|
|
2785
|
+
};
|
|
2786
|
+
meta: object;
|
|
2787
|
+
}>;
|
|
2776
2788
|
remove: MutationProcedure<{
|
|
2777
2789
|
input: {
|
|
2778
2790
|
projectId: string;
|
|
@@ -2807,6 +2819,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2807
2819
|
};
|
|
2808
2820
|
output: {
|
|
2809
2821
|
id: string;
|
|
2822
|
+
salutation: string | null;
|
|
2810
2823
|
firstName: string;
|
|
2811
2824
|
lastName: string | null;
|
|
2812
2825
|
phoneNumbers: {
|
|
@@ -2828,6 +2841,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2828
2841
|
};
|
|
2829
2842
|
output: {
|
|
2830
2843
|
id: string;
|
|
2844
|
+
salutation: string | null;
|
|
2831
2845
|
firstName: string;
|
|
2832
2846
|
lastName: string | null;
|
|
2833
2847
|
phoneNumbers: {
|
|
@@ -2846,6 +2860,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2846
2860
|
create: MutationProcedure<{
|
|
2847
2861
|
input: {
|
|
2848
2862
|
firstName: string;
|
|
2863
|
+
salutation?: string | null | undefined;
|
|
2849
2864
|
lastName?: string | null | undefined;
|
|
2850
2865
|
phoneNumbers?: {
|
|
2851
2866
|
number: string;
|
|
@@ -2865,6 +2880,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2865
2880
|
input: {
|
|
2866
2881
|
id: string;
|
|
2867
2882
|
data: {
|
|
2883
|
+
salutation?: string | null | undefined;
|
|
2868
2884
|
firstName?: string | undefined;
|
|
2869
2885
|
lastName?: string | null | undefined;
|
|
2870
2886
|
phoneNumbers?: {
|
|
@@ -3501,9 +3517,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
3501
3517
|
customId: number;
|
|
3502
3518
|
brand: string;
|
|
3503
3519
|
category: string;
|
|
3504
|
-
purchasePrice: number | null;
|
|
3505
|
-
usageCostPerDay: number | null;
|
|
3506
3520
|
label?: string | null | undefined;
|
|
3521
|
+
purchasePrice?: number | null | undefined;
|
|
3522
|
+
usageCostPerDay?: number | null | undefined;
|
|
3507
3523
|
status?: "lost" | "broken" | null | undefined;
|
|
3508
3524
|
};
|
|
3509
3525
|
output: {
|
|
@@ -3617,6 +3633,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
3617
3633
|
responsibleUserId: string | null;
|
|
3618
3634
|
startedByUserId: string | null;
|
|
3619
3635
|
endedByUserId: string | null;
|
|
3636
|
+
toolUsageCostPerDay: number | null;
|
|
3620
3637
|
comment: string | null;
|
|
3621
3638
|
startedAt: Date;
|
|
3622
3639
|
endedAt: Date | null;
|
|
@@ -3661,6 +3678,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
3661
3678
|
notes: string | null;
|
|
3662
3679
|
createdAt: Date;
|
|
3663
3680
|
responsibleUserId: string | null;
|
|
3681
|
+
toolUsageCostPerDay: number | null;
|
|
3664
3682
|
}[];
|
|
3665
3683
|
meta: object;
|
|
3666
3684
|
}>;
|