@sortsys/v2-client 0.1.18 → 0.1.20
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 +11 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2775,6 +2775,16 @@ declare const appRouter: BuiltRouter<{
|
|
|
2775
2775
|
};
|
|
2776
2776
|
meta: object;
|
|
2777
2777
|
}>;
|
|
2778
|
+
set: MutationProcedure<{
|
|
2779
|
+
input: {
|
|
2780
|
+
projectId: string;
|
|
2781
|
+
contactIds: string[];
|
|
2782
|
+
};
|
|
2783
|
+
output: {
|
|
2784
|
+
success: true;
|
|
2785
|
+
};
|
|
2786
|
+
meta: object;
|
|
2787
|
+
}>;
|
|
2778
2788
|
remove: MutationProcedure<{
|
|
2779
2789
|
input: {
|
|
2780
2790
|
projectId: string;
|
|
@@ -3631,7 +3641,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
3631
3641
|
}[];
|
|
3632
3642
|
meta: object;
|
|
3633
3643
|
}>;
|
|
3634
|
-
|
|
3644
|
+
transfers: BuiltRouter<{
|
|
3635
3645
|
ctx: TrpcContext;
|
|
3636
3646
|
meta: object;
|
|
3637
3647
|
errorShape: DefaultErrorShape | {
|