autosync_backend2 1.2.12 → 1.2.13
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 +41 -0
- package/dist/index.js +2085 -10707
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
@@ -1064,6 +1064,22 @@ export declare const app: Elysia<"", {
|
|
1064
1064
|
};
|
1065
1065
|
};
|
1066
1066
|
};
|
1067
|
+
} & {
|
1068
|
+
item: {
|
1069
|
+
sos: {
|
1070
|
+
get: {
|
1071
|
+
body: unknown;
|
1072
|
+
params: {};
|
1073
|
+
query: unknown;
|
1074
|
+
headers: unknown;
|
1075
|
+
response: {
|
1076
|
+
200: {
|
1077
|
+
count: number;
|
1078
|
+
};
|
1079
|
+
};
|
1080
|
+
};
|
1081
|
+
};
|
1082
|
+
};
|
1067
1083
|
} & {
|
1068
1084
|
item: {
|
1069
1085
|
post: {
|
@@ -2755,6 +2771,31 @@ export declare const app: Elysia<"", {
|
|
2755
2771
|
query: unknown;
|
2756
2772
|
headers: unknown;
|
2757
2773
|
response: {
|
2774
|
+
200: {
|
2775
|
+
company: {
|
2776
|
+
name: string;
|
2777
|
+
id: string;
|
2778
|
+
email: string;
|
2779
|
+
regNumber: string;
|
2780
|
+
phone: string;
|
2781
|
+
logoUrl: string;
|
2782
|
+
province: string | null;
|
2783
|
+
district: string | null;
|
2784
|
+
khoroo: string | null;
|
2785
|
+
street: string | null;
|
2786
|
+
} | undefined;
|
2787
|
+
id: string;
|
2788
|
+
createdAt: Date;
|
2789
|
+
updatedAt: Date;
|
2790
|
+
email: string;
|
2791
|
+
emailVerified: boolean;
|
2792
|
+
name: string;
|
2793
|
+
image?: string | null | undefined;
|
2794
|
+
companyId: string;
|
2795
|
+
branchId: string;
|
2796
|
+
kind: "ADMIN" | "COMPANY_ADMIN" | "CUSTOMER" | "INSPECTION";
|
2797
|
+
employeeId?: string | null | undefined;
|
2798
|
+
};
|
2758
2799
|
401: "Session not found";
|
2759
2800
|
};
|
2760
2801
|
};
|