@appconda/sdk 1.0.615 → 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>;
@@ -856,6 +903,89 @@ export declare const RunNotionImportSchema: z.ZodObject<{
856
903
  }, z.core.$strip>>;
857
904
  }, z.core.$strip>>;
858
905
  }, z.core.$strip>;
906
+ export declare const EnsureTrelloImportCredentialSchema: z.ZodObject<{
907
+ tenantId: z.ZodString;
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>;
953
+ export declare const ConnectTrelloImportCredentialSchema: z.ZodObject<{
954
+ tenantId: z.ZodString;
955
+ token: z.ZodString;
956
+ }, z.core.$strip>;
957
+ export declare const ListTrelloImportSourcesSchema: z.ZodObject<{
958
+ tenantId: z.ZodString;
959
+ boardId: z.ZodOptional<z.ZodString>;
960
+ includeArchivedLists: z.ZodOptional<z.ZodBoolean>;
961
+ }, z.core.$strip>;
962
+ export declare const PreviewTrelloImportSchema: z.ZodObject<{
963
+ tenantId: z.ZodString;
964
+ boardId: z.ZodString;
965
+ listIds: z.ZodArray<z.ZodString>;
966
+ includeArchivedLists: z.ZodOptional<z.ZodBoolean>;
967
+ includeClosedCards: z.ZodOptional<z.ZodBoolean>;
968
+ }, z.core.$strip>;
969
+ export declare const RunTrelloImportSchema: z.ZodObject<{
970
+ tenantId: z.ZodString;
971
+ boardId: z.ZodString;
972
+ listIds: z.ZodArray<z.ZodString>;
973
+ includeArchivedLists: z.ZodOptional<z.ZodBoolean>;
974
+ includeClosedCards: z.ZodOptional<z.ZodBoolean>;
975
+ lists: z.ZodArray<z.ZodObject<{
976
+ listId: z.ZodString;
977
+ collectionName: z.ZodString;
978
+ collectionDisplayName: z.ZodString;
979
+ fields: z.ZodArray<z.ZodObject<{
980
+ fieldId: z.ZodString;
981
+ type: z.ZodString;
982
+ displayName: z.ZodString;
983
+ name: z.ZodString;
984
+ required: z.ZodOptional<z.ZodBoolean>;
985
+ config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
986
+ }, z.core.$strip>>;
987
+ }, z.core.$strip>>;
988
+ }, z.core.$strip>;
859
989
  export declare const BulkUpdateRecordsSchema: z.ZodObject<{
860
990
  tenantId: z.ZodString;
861
991
  collectionId: z.ZodString;