@sortsys/v2-client 0.1.22 → 0.1.24
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 +38 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2560,6 +2560,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
2560
2560
|
input: {
|
|
2561
2561
|
search?: string | null | undefined;
|
|
2562
2562
|
finished?: boolean | null | undefined;
|
|
2563
|
+
customerId?: string | null | undefined;
|
|
2563
2564
|
};
|
|
2564
2565
|
output: {
|
|
2565
2566
|
id: string;
|
|
@@ -2917,6 +2918,43 @@ declare const appRouter: BuiltRouter<{
|
|
|
2917
2918
|
};
|
|
2918
2919
|
meta: object;
|
|
2919
2920
|
}>;
|
|
2921
|
+
projects: BuiltRouter<{
|
|
2922
|
+
ctx: TrpcContext;
|
|
2923
|
+
meta: object;
|
|
2924
|
+
errorShape: DefaultErrorShape | {
|
|
2925
|
+
message: string;
|
|
2926
|
+
data: {
|
|
2927
|
+
httpCode: error.http.StatusCodeCode;
|
|
2928
|
+
code: TRPC_ERROR_CODE_KEY;
|
|
2929
|
+
httpStatus: number;
|
|
2930
|
+
path?: string;
|
|
2931
|
+
stack?: string;
|
|
2932
|
+
};
|
|
2933
|
+
code: TRPC_ERROR_CODE_NUMBER;
|
|
2934
|
+
};
|
|
2935
|
+
transformer: true;
|
|
2936
|
+
}, DecorateCreateRouterOptions<{
|
|
2937
|
+
list: QueryProcedure<{
|
|
2938
|
+
input: {
|
|
2939
|
+
contactId: string;
|
|
2940
|
+
};
|
|
2941
|
+
output: {
|
|
2942
|
+
id: string;
|
|
2943
|
+
title: string;
|
|
2944
|
+
address: {
|
|
2945
|
+
city: string;
|
|
2946
|
+
streetAddress: string;
|
|
2947
|
+
country?: string | null | undefined;
|
|
2948
|
+
zip?: string | null | undefined;
|
|
2949
|
+
} | null;
|
|
2950
|
+
customerId: string | null;
|
|
2951
|
+
createdAt: Date;
|
|
2952
|
+
modifiedAt: Date;
|
|
2953
|
+
finishedAt: Date | null;
|
|
2954
|
+
}[];
|
|
2955
|
+
meta: object;
|
|
2956
|
+
}>;
|
|
2957
|
+
}>>;
|
|
2920
2958
|
}>>;
|
|
2921
2959
|
products: BuiltRouter<{
|
|
2922
2960
|
ctx: TrpcContext;
|