autosync_backend2 1.2.88 → 1.2.90

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 (3) hide show
  1. package/dist/index.d.ts +63 -0
  2. package/dist/index.js +3312 -2335
  3. package/package.json +6 -6
package/dist/index.d.ts CHANGED
@@ -1358,6 +1358,7 @@ export declare const app: Elysia<"", {
1358
1358
  salesId?: string | null | undefined;
1359
1359
  transferId?: string | null | undefined;
1360
1360
  transferItemId?: string | null | undefined;
1361
+ msRecordProductId?: string | null | undefined;
1361
1362
  transactionType: "IN" | "OUT";
1362
1363
  transactionKind: "ORDER" | "TRANSFER" | "RETURN" | "ADJUSTMENT" | "REJECTION" | "SALES";
1363
1364
  };
@@ -7736,6 +7737,68 @@ export declare const app: Elysia<"", {
7736
7737
  };
7737
7738
  };
7738
7739
  };
7740
+ } & {
7741
+ inspection: {
7742
+ ":id": {
7743
+ patch: {
7744
+ body: {
7745
+ employeeId?: string | undefined;
7746
+ description?: string | undefined;
7747
+ licensePlate?: string | undefined;
7748
+ inspection?: {
7749
+ type: string;
7750
+ values: {
7751
+ description: string;
7752
+ question: string;
7753
+ answer: string;
7754
+ }[];
7755
+ }[] | undefined;
7756
+ };
7757
+ params: {
7758
+ id: string;
7759
+ };
7760
+ query: unknown;
7761
+ headers: unknown;
7762
+ response: {
7763
+ 200: {
7764
+ companyId: string;
7765
+ branchId: string;
7766
+ vehicleId: string;
7767
+ inspection: {
7768
+ type: string;
7769
+ values: {
7770
+ description: string;
7771
+ question: string;
7772
+ answer: string;
7773
+ }[];
7774
+ }[] | null;
7775
+ employeeId: string | null;
7776
+ expireAt: Date;
7777
+ experience: string | null;
7778
+ rank: string | null;
7779
+ licensePlate: string;
7780
+ description: string | null;
7781
+ status: "CANCELLED" | "CREATED" | "APPROVED";
7782
+ id: string;
7783
+ createdAt: string;
7784
+ updatedAt: string;
7785
+ deletedAt: string | null;
7786
+ oldId: number | null;
7787
+ };
7788
+ 401: "Токен олдсонгүй";
7789
+ 422: {
7790
+ type: "validation";
7791
+ on: string;
7792
+ summary?: string;
7793
+ message?: string;
7794
+ found?: unknown;
7795
+ property?: string;
7796
+ expected?: string;
7797
+ };
7798
+ };
7799
+ };
7800
+ };
7801
+ };
7739
7802
  } & {
7740
7803
  inspection: {
7741
7804
  ":id": {