@appconda/sdk 1.0.617 → 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 +73 -0
- package/dist/modules/emploid/schema.js +68 -1
- package/dist/modules/emploid/service.d.ts +7 -1
- package/dist/modules/emploid/service.js +19 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +83 -0
- package/src/modules/emploid/service.ts +61 -1
|
@@ -833,9 +833,27 @@ export declare const EnsureNotionImportCredentialSchema: z.ZodObject<{
|
|
|
833
833
|
export declare const EnsureGmailImportCredentialSchema: z.ZodObject<{
|
|
834
834
|
tenantId: z.ZodString;
|
|
835
835
|
}, z.core.$strip>;
|
|
836
|
+
export declare const EnsureGithubImportCredentialSchema: z.ZodObject<{
|
|
837
|
+
tenantId: z.ZodString;
|
|
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>;
|
|
836
851
|
export declare const ListGmailImportSourcesSchema: z.ZodObject<{
|
|
837
852
|
tenantId: z.ZodString;
|
|
838
853
|
}, z.core.$strip>;
|
|
854
|
+
export declare const ListGithubImportSourcesSchema: z.ZodObject<{
|
|
855
|
+
tenantId: z.ZodString;
|
|
856
|
+
}, z.core.$strip>;
|
|
839
857
|
export declare const PreviewGmailImportSchema: z.ZodObject<{
|
|
840
858
|
tenantId: z.ZodString;
|
|
841
859
|
collections: z.ZodArray<z.ZodEnum<{
|
|
@@ -846,6 +864,40 @@ export declare const PreviewGmailImportSchema: z.ZodObject<{
|
|
|
846
864
|
labelIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
847
865
|
preserveOriginalFormatting: z.ZodOptional<z.ZodBoolean>;
|
|
848
866
|
}, z.core.$strip>;
|
|
867
|
+
export declare const PreviewGithubImportSchema: z.ZodObject<{
|
|
868
|
+
tenantId: z.ZodString;
|
|
869
|
+
repositoryId: z.ZodString;
|
|
870
|
+
collections: z.ZodArray<z.ZodEnum<{
|
|
871
|
+
issues: "issues";
|
|
872
|
+
pullRequests: "pullRequests";
|
|
873
|
+
}>>;
|
|
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>;
|
|
849
901
|
export declare const RunGmailImportSchema: z.ZodObject<{
|
|
850
902
|
tenantId: z.ZodString;
|
|
851
903
|
collections: z.ZodArray<z.ZodEnum<{
|
|
@@ -877,6 +929,27 @@ export declare const RunGmailImportSchema: z.ZodObject<{
|
|
|
877
929
|
}, z.core.$strip>>;
|
|
878
930
|
}, z.core.$strip>>;
|
|
879
931
|
}, z.core.$strip>;
|
|
932
|
+
export declare const RunGithubImportSchema: z.ZodObject<{
|
|
933
|
+
tenantId: z.ZodString;
|
|
934
|
+
repositoryId: z.ZodString;
|
|
935
|
+
collections: z.ZodArray<z.ZodObject<{
|
|
936
|
+
collectionKey: z.ZodEnum<{
|
|
937
|
+
issues: "issues";
|
|
938
|
+
pullRequests: "pullRequests";
|
|
939
|
+
}>;
|
|
940
|
+
collectionName: z.ZodString;
|
|
941
|
+
collectionDisplayName: z.ZodString;
|
|
942
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
943
|
+
fieldId: z.ZodString;
|
|
944
|
+
type: z.ZodString;
|
|
945
|
+
displayName: z.ZodString;
|
|
946
|
+
name: z.ZodString;
|
|
947
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
948
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
949
|
+
fallbackReason: z.ZodOptional<z.ZodString>;
|
|
950
|
+
}, z.core.$strip>>;
|
|
951
|
+
}, z.core.$strip>>;
|
|
952
|
+
}, z.core.$strip>;
|
|
880
953
|
export declare const ListNotionImportSourcesSchema: z.ZodObject<{
|
|
881
954
|
tenantId: z.ZodString;
|
|
882
955
|
}, z.core.$strip>;
|