@appconda/sdk 1.0.616 → 1.0.617

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.
@@ -830,6 +830,53 @@ 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 ListGmailImportSourcesSchema: z.ZodObject<{
837
+ tenantId: z.ZodString;
838
+ }, z.core.$strip>;
839
+ export declare const PreviewGmailImportSchema: z.ZodObject<{
840
+ tenantId: z.ZodString;
841
+ collections: z.ZodArray<z.ZodEnum<{
842
+ email: "email";
843
+ contact: "contact";
844
+ }>>;
845
+ startFrom: z.ZodOptional<z.ZodString>;
846
+ labelIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
847
+ preserveOriginalFormatting: z.ZodOptional<z.ZodBoolean>;
848
+ }, z.core.$strip>;
849
+ export declare const RunGmailImportSchema: z.ZodObject<{
850
+ tenantId: z.ZodString;
851
+ collections: z.ZodArray<z.ZodEnum<{
852
+ email: "email";
853
+ contact: "contact";
854
+ }>>;
855
+ startFrom: z.ZodOptional<z.ZodString>;
856
+ labelIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
857
+ preserveOriginalFormatting: z.ZodOptional<z.ZodBoolean>;
858
+ collectionPayloads: z.ZodArray<z.ZodObject<{
859
+ collectionKey: z.ZodEnum<{
860
+ email: "email";
861
+ contact: "contact";
862
+ }>;
863
+ collectionName: z.ZodString;
864
+ collectionDisplayName: z.ZodString;
865
+ fields: z.ZodArray<z.ZodObject<{
866
+ fieldId: z.ZodString;
867
+ type: z.ZodString;
868
+ displayName: z.ZodString;
869
+ name: z.ZodString;
870
+ required: z.ZodOptional<z.ZodBoolean>;
871
+ config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
872
+ relationTargetCollectionKey: z.ZodOptional<z.ZodEnum<{
873
+ email: "email";
874
+ contact: "contact";
875
+ }>>;
876
+ fallbackReason: z.ZodOptional<z.ZodString>;
877
+ }, z.core.$strip>>;
878
+ }, z.core.$strip>>;
879
+ }, z.core.$strip>;
833
880
  export declare const ListNotionImportSourcesSchema: z.ZodObject<{
834
881
  tenantId: z.ZodString;
835
882
  }, z.core.$strip>;
@@ -859,6 +906,50 @@ export declare const RunNotionImportSchema: z.ZodObject<{
859
906
  export declare const EnsureTrelloImportCredentialSchema: z.ZodObject<{
860
907
  tenantId: z.ZodString;
861
908
  }, z.core.$strip>;
909
+ export declare const EnsureJiraImportCredentialSchema: z.ZodObject<{
910
+ tenantId: z.ZodString;
911
+ }, z.core.$strip>;
912
+ export declare const ListJiraImportSourcesSchema: z.ZodObject<{
913
+ tenantId: z.ZodString;
914
+ siteId: z.ZodOptional<z.ZodString>;
915
+ }, z.core.$strip>;
916
+ export declare const PreviewJiraImportSchema: z.ZodObject<{
917
+ tenantId: z.ZodString;
918
+ siteId: z.ZodString;
919
+ projectId: z.ZodString;
920
+ includeComments: z.ZodOptional<z.ZodBoolean>;
921
+ includeAttachments: z.ZodOptional<z.ZodBoolean>;
922
+ }, z.core.$strip>;
923
+ export declare const RunJiraImportSchema: z.ZodObject<{
924
+ tenantId: z.ZodString;
925
+ siteId: z.ZodString;
926
+ projectId: z.ZodString;
927
+ includeComments: z.ZodOptional<z.ZodBoolean>;
928
+ includeAttachments: z.ZodOptional<z.ZodBoolean>;
929
+ collections: z.ZodArray<z.ZodObject<{
930
+ collectionKey: z.ZodEnum<{
931
+ issues: "issues";
932
+ comments: "comments";
933
+ attachments: "attachments";
934
+ }>;
935
+ collectionName: z.ZodString;
936
+ collectionDisplayName: z.ZodString;
937
+ fields: z.ZodArray<z.ZodObject<{
938
+ fieldId: z.ZodString;
939
+ type: z.ZodString;
940
+ displayName: z.ZodString;
941
+ name: z.ZodString;
942
+ required: z.ZodOptional<z.ZodBoolean>;
943
+ config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
944
+ relationTargetCollectionKey: z.ZodOptional<z.ZodEnum<{
945
+ issues: "issues";
946
+ comments: "comments";
947
+ attachments: "attachments";
948
+ }>>;
949
+ fallbackReason: z.ZodOptional<z.ZodString>;
950
+ }, z.core.$strip>>;
951
+ }, z.core.$strip>>;
952
+ }, z.core.$strip>;
862
953
  export declare const ConnectTrelloImportCredentialSchema: z.ZodObject<{
863
954
  tenantId: z.ZodString;
864
955
  token: z.ZodString;