@sortsys/v2-client 0.1.23 → 0.1.25

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +73 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -2918,6 +2918,79 @@ declare const appRouter: BuiltRouter<{
2918
2918
  };
2919
2919
  meta: object;
2920
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
+ }>>;
2958
+ customers: BuiltRouter<{
2959
+ ctx: TrpcContext;
2960
+ meta: object;
2961
+ errorShape: DefaultErrorShape | {
2962
+ message: string;
2963
+ data: {
2964
+ httpCode: error.http.StatusCodeCode;
2965
+ code: TRPC_ERROR_CODE_KEY;
2966
+ httpStatus: number;
2967
+ path?: string;
2968
+ stack?: string;
2969
+ };
2970
+ code: TRPC_ERROR_CODE_NUMBER;
2971
+ };
2972
+ transformer: true;
2973
+ }, DecorateCreateRouterOptions<{
2974
+ list: QueryProcedure<{
2975
+ input: {
2976
+ contactId: string;
2977
+ };
2978
+ output: {
2979
+ id: string;
2980
+ salutation: string | null;
2981
+ name: string;
2982
+ address: {
2983
+ city: string;
2984
+ streetAddress: string;
2985
+ country?: string | null | undefined;
2986
+ zip?: string | null | undefined;
2987
+ } | null;
2988
+ createdAt: Date;
2989
+ modifiedAt: Date;
2990
+ }[];
2991
+ meta: object;
2992
+ }>;
2993
+ }>>;
2921
2994
  }>>;
2922
2995
  products: BuiltRouter<{
2923
2996
  ctx: TrpcContext;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sortsys/v2-client",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "main": "dist/index.js",
5
5
  "devDependencies": {
6
6
  "dts-bundle-generator": "^9.5.1"