@appconda/sdk 1.0.616 → 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 +126 -0
- package/dist/modules/emploid/schema.js +101 -1
- package/dist/modules/emploid/service.d.ts +13 -1
- package/dist/modules/emploid/service.js +37 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +124 -0
- package/src/modules/emploid/service.ts +121 -1
|
@@ -830,6 +830,88 @@ export declare const RunLinearImportSchema: z.ZodObject<{
|
|
|
830
830
|
export declare const EnsureNotionImportCredentialSchema: z.ZodObject<{
|
|
831
831
|
tenantId: z.ZodString;
|
|
832
832
|
}, z.core.$strip>;
|
|
833
|
+
export declare const EnsureGmailImportCredentialSchema: z.ZodObject<{
|
|
834
|
+
tenantId: z.ZodString;
|
|
835
|
+
}, z.core.$strip>;
|
|
836
|
+
export declare const EnsureGithubImportCredentialSchema: z.ZodObject<{
|
|
837
|
+
tenantId: z.ZodString;
|
|
838
|
+
}, z.core.$strip>;
|
|
839
|
+
export declare const ListGmailImportSourcesSchema: z.ZodObject<{
|
|
840
|
+
tenantId: z.ZodString;
|
|
841
|
+
}, z.core.$strip>;
|
|
842
|
+
export declare const ListGithubImportSourcesSchema: z.ZodObject<{
|
|
843
|
+
tenantId: z.ZodString;
|
|
844
|
+
}, z.core.$strip>;
|
|
845
|
+
export declare const PreviewGmailImportSchema: z.ZodObject<{
|
|
846
|
+
tenantId: z.ZodString;
|
|
847
|
+
collections: z.ZodArray<z.ZodEnum<{
|
|
848
|
+
email: "email";
|
|
849
|
+
contact: "contact";
|
|
850
|
+
}>>;
|
|
851
|
+
startFrom: z.ZodOptional<z.ZodString>;
|
|
852
|
+
labelIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
853
|
+
preserveOriginalFormatting: z.ZodOptional<z.ZodBoolean>;
|
|
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>;
|
|
863
|
+
export declare const RunGmailImportSchema: z.ZodObject<{
|
|
864
|
+
tenantId: z.ZodString;
|
|
865
|
+
collections: z.ZodArray<z.ZodEnum<{
|
|
866
|
+
email: "email";
|
|
867
|
+
contact: "contact";
|
|
868
|
+
}>>;
|
|
869
|
+
startFrom: z.ZodOptional<z.ZodString>;
|
|
870
|
+
labelIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
871
|
+
preserveOriginalFormatting: z.ZodOptional<z.ZodBoolean>;
|
|
872
|
+
collectionPayloads: z.ZodArray<z.ZodObject<{
|
|
873
|
+
collectionKey: z.ZodEnum<{
|
|
874
|
+
email: "email";
|
|
875
|
+
contact: "contact";
|
|
876
|
+
}>;
|
|
877
|
+
collectionName: z.ZodString;
|
|
878
|
+
collectionDisplayName: z.ZodString;
|
|
879
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
880
|
+
fieldId: z.ZodString;
|
|
881
|
+
type: z.ZodString;
|
|
882
|
+
displayName: z.ZodString;
|
|
883
|
+
name: z.ZodString;
|
|
884
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
885
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
886
|
+
relationTargetCollectionKey: z.ZodOptional<z.ZodEnum<{
|
|
887
|
+
email: "email";
|
|
888
|
+
contact: "contact";
|
|
889
|
+
}>>;
|
|
890
|
+
fallbackReason: z.ZodOptional<z.ZodString>;
|
|
891
|
+
}, z.core.$strip>>;
|
|
892
|
+
}, z.core.$strip>>;
|
|
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>;
|
|
833
915
|
export declare const ListNotionImportSourcesSchema: z.ZodObject<{
|
|
834
916
|
tenantId: z.ZodString;
|
|
835
917
|
}, z.core.$strip>;
|
|
@@ -859,6 +941,50 @@ export declare const RunNotionImportSchema: z.ZodObject<{
|
|
|
859
941
|
export declare const EnsureTrelloImportCredentialSchema: z.ZodObject<{
|
|
860
942
|
tenantId: z.ZodString;
|
|
861
943
|
}, z.core.$strip>;
|
|
944
|
+
export declare const EnsureJiraImportCredentialSchema: z.ZodObject<{
|
|
945
|
+
tenantId: z.ZodString;
|
|
946
|
+
}, z.core.$strip>;
|
|
947
|
+
export declare const ListJiraImportSourcesSchema: z.ZodObject<{
|
|
948
|
+
tenantId: z.ZodString;
|
|
949
|
+
siteId: z.ZodOptional<z.ZodString>;
|
|
950
|
+
}, z.core.$strip>;
|
|
951
|
+
export declare const PreviewJiraImportSchema: z.ZodObject<{
|
|
952
|
+
tenantId: z.ZodString;
|
|
953
|
+
siteId: z.ZodString;
|
|
954
|
+
projectId: z.ZodString;
|
|
955
|
+
includeComments: z.ZodOptional<z.ZodBoolean>;
|
|
956
|
+
includeAttachments: z.ZodOptional<z.ZodBoolean>;
|
|
957
|
+
}, z.core.$strip>;
|
|
958
|
+
export declare const RunJiraImportSchema: z.ZodObject<{
|
|
959
|
+
tenantId: z.ZodString;
|
|
960
|
+
siteId: z.ZodString;
|
|
961
|
+
projectId: z.ZodString;
|
|
962
|
+
includeComments: z.ZodOptional<z.ZodBoolean>;
|
|
963
|
+
includeAttachments: z.ZodOptional<z.ZodBoolean>;
|
|
964
|
+
collections: z.ZodArray<z.ZodObject<{
|
|
965
|
+
collectionKey: z.ZodEnum<{
|
|
966
|
+
issues: "issues";
|
|
967
|
+
comments: "comments";
|
|
968
|
+
attachments: "attachments";
|
|
969
|
+
}>;
|
|
970
|
+
collectionName: z.ZodString;
|
|
971
|
+
collectionDisplayName: z.ZodString;
|
|
972
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
973
|
+
fieldId: z.ZodString;
|
|
974
|
+
type: z.ZodString;
|
|
975
|
+
displayName: z.ZodString;
|
|
976
|
+
name: z.ZodString;
|
|
977
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
978
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
979
|
+
relationTargetCollectionKey: z.ZodOptional<z.ZodEnum<{
|
|
980
|
+
issues: "issues";
|
|
981
|
+
comments: "comments";
|
|
982
|
+
attachments: "attachments";
|
|
983
|
+
}>>;
|
|
984
|
+
fallbackReason: z.ZodOptional<z.ZodString>;
|
|
985
|
+
}, z.core.$strip>>;
|
|
986
|
+
}, z.core.$strip>>;
|
|
987
|
+
}, z.core.$strip>;
|
|
862
988
|
export declare const ConnectTrelloImportCredentialSchema: z.ZodObject<{
|
|
863
989
|
tenantId: z.ZodString;
|
|
864
990
|
token: z.ZodString;
|