autosync_backend2 1.2.63 → 1.2.64
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 +4 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11409,7 +11409,7 @@ export declare const app: Elysia<"", {
|
|
|
11409
11409
|
machineId: string;
|
|
11410
11410
|
sourceType: string | null;
|
|
11411
11411
|
type: "CORRECTIVE" | "PREVENTIVE";
|
|
11412
|
-
|
|
11412
|
+
priority: "CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "PLANNED";
|
|
11413
11413
|
state: "IN_PROGRESS" | "COMPLETED" | "OPEN" | "CLOSED";
|
|
11414
11414
|
dateClosed: Date | null;
|
|
11415
11415
|
id: string;
|
|
@@ -11442,7 +11442,7 @@ export declare const app: Elysia<"", {
|
|
|
11442
11442
|
dateClosed?: Date | null | undefined;
|
|
11443
11443
|
type: "CORRECTIVE" | "PREVENTIVE";
|
|
11444
11444
|
machineId: string;
|
|
11445
|
-
|
|
11445
|
+
priority: "CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "PLANNED";
|
|
11446
11446
|
};
|
|
11447
11447
|
params: {};
|
|
11448
11448
|
query: unknown;
|
|
@@ -11457,8 +11457,8 @@ export declare const app: Elysia<"", {
|
|
|
11457
11457
|
oldId: number | null;
|
|
11458
11458
|
state: "IN_PROGRESS" | "COMPLETED" | "OPEN" | "CLOSED";
|
|
11459
11459
|
machineId: string;
|
|
11460
|
-
piority: "CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "PLANNED";
|
|
11461
11460
|
sourceType: string | null;
|
|
11461
|
+
priority: "CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "PLANNED";
|
|
11462
11462
|
dateClosed: Date | null;
|
|
11463
11463
|
};
|
|
11464
11464
|
401: "Токен олдсонгүй";
|
|
@@ -11483,8 +11483,8 @@ export declare const app: Elysia<"", {
|
|
|
11483
11483
|
oldId?: number | null | undefined;
|
|
11484
11484
|
state?: "IN_PROGRESS" | "COMPLETED" | "OPEN" | "CLOSED" | undefined;
|
|
11485
11485
|
machineId?: string | undefined;
|
|
11486
|
-
piority?: "CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "PLANNED" | undefined;
|
|
11487
11486
|
sourceType?: string | null | undefined;
|
|
11487
|
+
priority?: "CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "PLANNED" | undefined;
|
|
11488
11488
|
dateClosed?: Date | null | undefined;
|
|
11489
11489
|
};
|
|
11490
11490
|
params: {
|
package/dist/index.js
CHANGED
|
@@ -143505,7 +143505,7 @@ var workOrderTable = workOrderSchema.table("order", {
|
|
|
143505
143505
|
machineId: uuid5().notNull(),
|
|
143506
143506
|
sourceType: varchar(),
|
|
143507
143507
|
type: workOrderTypeEnum().notNull(),
|
|
143508
|
-
|
|
143508
|
+
priority: workOrderPiorityEnum().notNull(),
|
|
143509
143509
|
state: workOrderStateEnum().notNull().default("OPEN"),
|
|
143510
143510
|
dateClosed: timestamp({ withTimezone: true })
|
|
143511
143511
|
});
|