@appconda/sdk 1.0.618 → 1.0.619
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 +38 -0
- package/dist/modules/emploid/schema.js +39 -1
- package/dist/modules/emploid/service.d.ts +3 -1
- package/dist/modules/emploid/service.js +7 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +46 -0
- package/src/modules/emploid/service.ts +21 -1
|
@@ -836,6 +836,18 @@ export declare const EnsureGmailImportCredentialSchema: z.ZodObject<{
|
|
|
836
836
|
export declare const EnsureGithubImportCredentialSchema: z.ZodObject<{
|
|
837
837
|
tenantId: z.ZodString;
|
|
838
838
|
}, z.core.$strip>;
|
|
839
|
+
export declare const PreviewCsvImportSchema: z.ZodObject<{
|
|
840
|
+
tenantId: z.ZodString;
|
|
841
|
+
fileName: z.ZodString;
|
|
842
|
+
headersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
843
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
844
|
+
fieldId: z.ZodString;
|
|
845
|
+
name: z.ZodString;
|
|
846
|
+
displayName: z.ZodString;
|
|
847
|
+
index: z.ZodNumber;
|
|
848
|
+
}, z.core.$strip>>;
|
|
849
|
+
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>>;
|
|
850
|
+
}, z.core.$strip>;
|
|
839
851
|
export declare const ListGmailImportSourcesSchema: z.ZodObject<{
|
|
840
852
|
tenantId: z.ZodString;
|
|
841
853
|
}, z.core.$strip>;
|
|
@@ -860,6 +872,32 @@ export declare const PreviewGithubImportSchema: z.ZodObject<{
|
|
|
860
872
|
pullRequests: "pullRequests";
|
|
861
873
|
}>>;
|
|
862
874
|
}, z.core.$strip>;
|
|
875
|
+
export declare const RunCsvImportSchema: z.ZodObject<{
|
|
876
|
+
tenantId: z.ZodString;
|
|
877
|
+
fileName: z.ZodString;
|
|
878
|
+
headersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
879
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
880
|
+
fieldId: z.ZodString;
|
|
881
|
+
name: z.ZodString;
|
|
882
|
+
displayName: z.ZodString;
|
|
883
|
+
index: z.ZodNumber;
|
|
884
|
+
}, z.core.$strip>>;
|
|
885
|
+
rows: z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
886
|
+
collection: z.ZodObject<{
|
|
887
|
+
collectionKey: z.ZodLiteral<"rows">;
|
|
888
|
+
collectionName: z.ZodString;
|
|
889
|
+
collectionDisplayName: z.ZodString;
|
|
890
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
891
|
+
fieldId: z.ZodString;
|
|
892
|
+
type: z.ZodString;
|
|
893
|
+
displayName: z.ZodString;
|
|
894
|
+
name: z.ZodString;
|
|
895
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
896
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
897
|
+
fallbackReason: z.ZodOptional<z.ZodString>;
|
|
898
|
+
}, z.core.$strip>>;
|
|
899
|
+
}, z.core.$strip>;
|
|
900
|
+
}, z.core.$strip>;
|
|
863
901
|
export declare const RunGmailImportSchema: z.ZodObject<{
|
|
864
902
|
tenantId: z.ZodString;
|
|
865
903
|
collections: z.ZodArray<z.ZodEnum<{
|