@djaouad10/shared-types 1.0.12 → 1.0.14
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/index.d.ts +2 -13
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -735,16 +735,11 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
735
735
|
}>;
|
|
736
736
|
updateDetails: import("@trpc/server").TRPCMutationProcedure<{
|
|
737
737
|
input: {
|
|
738
|
-
trackingNumber: string;
|
|
739
738
|
orderId: string;
|
|
740
739
|
data: {
|
|
741
|
-
reference: string;
|
|
742
740
|
clientName: string;
|
|
743
741
|
phone: string;
|
|
744
742
|
address: string;
|
|
745
|
-
postalCode: string;
|
|
746
|
-
commune: string;
|
|
747
|
-
wilayaCode: number;
|
|
748
743
|
isFragile: boolean;
|
|
749
744
|
phone2?: string | undefined;
|
|
750
745
|
note?: string | undefined;
|
|
@@ -2398,15 +2393,9 @@ declare const auth: import("better-auth").Auth<{
|
|
|
2398
2393
|
}>;
|
|
2399
2394
|
export type Auth = typeof auth;
|
|
2400
2395
|
declare const ourFileRouter: {
|
|
2401
|
-
|
|
2396
|
+
productImage: import("node_modules/uploadthing/dist/types-Bs3w2d_3.js").FileRoute<{
|
|
2402
2397
|
input: undefined;
|
|
2403
|
-
output:
|
|
2404
|
-
uploadedBy: string;
|
|
2405
|
-
publicUrl: string;
|
|
2406
|
-
name: string;
|
|
2407
|
-
key: string;
|
|
2408
|
-
type: string;
|
|
2409
|
-
};
|
|
2398
|
+
output: null;
|
|
2410
2399
|
errorShape: import("@uploadthing/shared").Json;
|
|
2411
2400
|
}>;
|
|
2412
2401
|
};
|