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