@appconda/sdk 1.0.617 → 1.0.618
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 +35 -0
- package/dist/modules/emploid/schema.js +30 -1
- package/dist/modules/emploid/service.d.ts +5 -1
- package/dist/modules/emploid/service.js +13 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +37 -0
- package/src/modules/emploid/service.ts +41 -1
|
@@ -833,9 +833,15 @@ 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>;
|
|
836
839
|
export declare const ListGmailImportSourcesSchema: z.ZodObject<{
|
|
837
840
|
tenantId: z.ZodString;
|
|
838
841
|
}, z.core.$strip>;
|
|
842
|
+
export declare const ListGithubImportSourcesSchema: z.ZodObject<{
|
|
843
|
+
tenantId: z.ZodString;
|
|
844
|
+
}, z.core.$strip>;
|
|
839
845
|
export declare const PreviewGmailImportSchema: z.ZodObject<{
|
|
840
846
|
tenantId: z.ZodString;
|
|
841
847
|
collections: z.ZodArray<z.ZodEnum<{
|
|
@@ -846,6 +852,14 @@ export declare const PreviewGmailImportSchema: z.ZodObject<{
|
|
|
846
852
|
labelIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
847
853
|
preserveOriginalFormatting: z.ZodOptional<z.ZodBoolean>;
|
|
848
854
|
}, z.core.$strip>;
|
|
855
|
+
export declare const PreviewGithubImportSchema: z.ZodObject<{
|
|
856
|
+
tenantId: z.ZodString;
|
|
857
|
+
repositoryId: z.ZodString;
|
|
858
|
+
collections: z.ZodArray<z.ZodEnum<{
|
|
859
|
+
issues: "issues";
|
|
860
|
+
pullRequests: "pullRequests";
|
|
861
|
+
}>>;
|
|
862
|
+
}, z.core.$strip>;
|
|
849
863
|
export declare const RunGmailImportSchema: z.ZodObject<{
|
|
850
864
|
tenantId: z.ZodString;
|
|
851
865
|
collections: z.ZodArray<z.ZodEnum<{
|
|
@@ -877,6 +891,27 @@ export declare const RunGmailImportSchema: z.ZodObject<{
|
|
|
877
891
|
}, z.core.$strip>>;
|
|
878
892
|
}, z.core.$strip>>;
|
|
879
893
|
}, z.core.$strip>;
|
|
894
|
+
export declare const RunGithubImportSchema: z.ZodObject<{
|
|
895
|
+
tenantId: z.ZodString;
|
|
896
|
+
repositoryId: z.ZodString;
|
|
897
|
+
collections: z.ZodArray<z.ZodObject<{
|
|
898
|
+
collectionKey: z.ZodEnum<{
|
|
899
|
+
issues: "issues";
|
|
900
|
+
pullRequests: "pullRequests";
|
|
901
|
+
}>;
|
|
902
|
+
collectionName: z.ZodString;
|
|
903
|
+
collectionDisplayName: z.ZodString;
|
|
904
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
905
|
+
fieldId: z.ZodString;
|
|
906
|
+
type: z.ZodString;
|
|
907
|
+
displayName: z.ZodString;
|
|
908
|
+
name: z.ZodString;
|
|
909
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
910
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
911
|
+
fallbackReason: z.ZodOptional<z.ZodString>;
|
|
912
|
+
}, z.core.$strip>>;
|
|
913
|
+
}, z.core.$strip>>;
|
|
914
|
+
}, z.core.$strip>;
|
|
880
915
|
export declare const ListNotionImportSourcesSchema: z.ZodObject<{
|
|
881
916
|
tenantId: z.ZodString;
|
|
882
917
|
}, z.core.$strip>;
|