@appconda/sdk 1.0.637 → 1.0.640
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/modules/emploid/schema.d.ts +13 -0
- package/dist/modules/emploid/schema.js +14 -1
- package/dist/modules/emploid/service.d.ts +4 -1
- package/dist/modules/emploid/service.js +7 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +15 -0
- package/src/modules/emploid/service.ts +22 -1
|
@@ -815,6 +815,17 @@ export declare const GetDataModelByIdSchema: z.ZodObject<{
|
|
|
815
815
|
tenantId: z.ZodString;
|
|
816
816
|
dataModelId: z.ZodString;
|
|
817
817
|
}, z.core.$strip>;
|
|
818
|
+
export declare const ExportDataModelSchema: z.ZodObject<{
|
|
819
|
+
tenantId: z.ZodString;
|
|
820
|
+
dataModelId: z.ZodString;
|
|
821
|
+
includeData: z.ZodOptional<z.ZodBoolean>;
|
|
822
|
+
}, z.core.$strip>;
|
|
823
|
+
export declare const ImportDataModelSchema: z.ZodObject<{
|
|
824
|
+
tenantId: z.ZodString;
|
|
825
|
+
exportData: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
|
|
826
|
+
includeData: z.ZodOptional<z.ZodBoolean>;
|
|
827
|
+
actor: z.ZodOptional<z.ZodString>;
|
|
828
|
+
}, z.core.$strip>;
|
|
818
829
|
export declare const HardDeleteDataModelSchema: z.ZodObject<{
|
|
819
830
|
tenantId: z.ZodString;
|
|
820
831
|
dataModelId: z.ZodString;
|
|
@@ -1043,6 +1054,7 @@ export declare const PreviewGithubImportSchema: z.ZodObject<{
|
|
|
1043
1054
|
}, z.core.$strip>;
|
|
1044
1055
|
export declare const RunCsvImportSchema: z.ZodObject<{
|
|
1045
1056
|
tenantId: z.ZodString;
|
|
1057
|
+
dataModelId: z.ZodOptional<z.ZodString>;
|
|
1046
1058
|
fileName: z.ZodString;
|
|
1047
1059
|
headersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1048
1060
|
columns: z.ZodArray<z.ZodObject<{
|
|
@@ -1069,6 +1081,7 @@ export declare const RunCsvImportSchema: z.ZodObject<{
|
|
|
1069
1081
|
}, z.core.$strip>;
|
|
1070
1082
|
export declare const RunGmailImportSchema: z.ZodObject<{
|
|
1071
1083
|
tenantId: z.ZodString;
|
|
1084
|
+
dataModelId: z.ZodOptional<z.ZodString>;
|
|
1072
1085
|
collections: z.ZodArray<z.ZodEnum<{
|
|
1073
1086
|
email: "email";
|
|
1074
1087
|
contact: "contact";
|