autosync_backend2 1.2.20 → 1.2.21
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 +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7878,7 +7878,7 @@ export declare const app: Elysia<"", {
|
|
|
7878
7878
|
templateId: string;
|
|
7879
7879
|
fieldGroupId: string | null;
|
|
7880
7880
|
fieldGroup: string | null;
|
|
7881
|
-
fieldId: string;
|
|
7881
|
+
fieldId: string | null;
|
|
7882
7882
|
code: string | null;
|
|
7883
7883
|
description: string | null;
|
|
7884
7884
|
fieldType: "BOOLEAN" | "NUMERIC" | "TEXT" | "DATE" | "RATE" | "MULTI_CHOICE";
|
|
@@ -7919,7 +7919,7 @@ export declare const app: Elysia<"", {
|
|
|
7919
7919
|
fieldGroup?: string | null | undefined;
|
|
7920
7920
|
sortIndex?: number | null | undefined;
|
|
7921
7921
|
fieldGroupId?: string | null | undefined;
|
|
7922
|
-
fieldId
|
|
7922
|
+
fieldId?: string | null | undefined;
|
|
7923
7923
|
fieldType: "BOOLEAN" | "NUMERIC" | "TEXT" | "DATE" | "RATE" | "MULTI_CHOICE";
|
|
7924
7924
|
};
|
|
7925
7925
|
params: {
|
package/dist/index.js
CHANGED
|
@@ -142971,7 +142971,7 @@ var inspectionTemplateFieldTable = inspectionSchema.table("template_field", {
|
|
|
142971
142971
|
templateId: uuid5().notNull(),
|
|
142972
142972
|
fieldGroupId: uuid5(),
|
|
142973
142973
|
fieldGroup: varchar(),
|
|
142974
|
-
fieldId: uuid5()
|
|
142974
|
+
fieldId: uuid5(),
|
|
142975
142975
|
code: varchar(),
|
|
142976
142976
|
description: text(),
|
|
142977
142977
|
fieldType: inspectionFieldTypeEnum().notNull(),
|