@sortsys/v2-client 0.1.36 → 0.1.37
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 +31 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3595,6 +3595,37 @@ declare const appRouter: BuiltRouter<{
|
|
|
3595
3595
|
meta: object;
|
|
3596
3596
|
}>;
|
|
3597
3597
|
}>>;
|
|
3598
|
+
brands: BuiltRouter<{
|
|
3599
|
+
ctx: TrpcContext;
|
|
3600
|
+
meta: object;
|
|
3601
|
+
errorShape: {
|
|
3602
|
+
message: string;
|
|
3603
|
+
data: {
|
|
3604
|
+
httpCode: error.http.StatusCodeCode;
|
|
3605
|
+
validationErrors: import("zod/v4/core").$ZodIssue[] | undefined;
|
|
3606
|
+
code: TRPC_ERROR_CODE_KEY;
|
|
3607
|
+
path?: string;
|
|
3608
|
+
stack?: string;
|
|
3609
|
+
};
|
|
3610
|
+
code: TRPC_ERROR_CODE_NUMBER;
|
|
3611
|
+
} | {
|
|
3612
|
+
data: {
|
|
3613
|
+
validationErrors: import("zod/v4/core").$ZodIssue[] | undefined;
|
|
3614
|
+
code: TRPC_ERROR_CODE_KEY;
|
|
3615
|
+
path?: string;
|
|
3616
|
+
stack?: string;
|
|
3617
|
+
};
|
|
3618
|
+
message: string;
|
|
3619
|
+
code: TRPC_ERROR_CODE_NUMBER;
|
|
3620
|
+
};
|
|
3621
|
+
transformer: true;
|
|
3622
|
+
}, DecorateCreateRouterOptions<{
|
|
3623
|
+
list: QueryProcedure<{
|
|
3624
|
+
input: void;
|
|
3625
|
+
output: string[];
|
|
3626
|
+
meta: object;
|
|
3627
|
+
}>;
|
|
3628
|
+
}>>;
|
|
3598
3629
|
vendors: BuiltRouter<{
|
|
3599
3630
|
ctx: TrpcContext;
|
|
3600
3631
|
meta: object;
|