@appconda/sdk 1.0.613 → 1.0.614

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.
@@ -762,6 +762,71 @@ export declare const RunAirtableImportSchema: z.ZodObject<{
762
762
  }, z.core.$strip>>;
763
763
  }, z.core.$strip>>;
764
764
  }, z.core.$strip>;
765
+ export declare const EnsureLinearImportCredentialSchema: z.ZodObject<{
766
+ tenantId: z.ZodString;
767
+ }, z.core.$strip>;
768
+ export declare const ListLinearImportSourcesSchema: z.ZodObject<{
769
+ tenantId: z.ZodString;
770
+ }, z.core.$strip>;
771
+ export declare const PreviewLinearImportSchema: z.ZodObject<{
772
+ tenantId: z.ZodString;
773
+ entityTypes: z.ZodArray<z.ZodEnum<{
774
+ projects: "projects";
775
+ issues: "issues";
776
+ cycles: "cycles";
777
+ teams: "teams";
778
+ users: "users";
779
+ labels: "labels";
780
+ issueStates: "issueStates";
781
+ comments: "comments";
782
+ attachments: "attachments";
783
+ }>>;
784
+ teamIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
785
+ projectIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
786
+ cycleIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
787
+ }, z.core.$strip>;
788
+ export declare const RunLinearImportSchema: z.ZodObject<{
789
+ tenantId: z.ZodString;
790
+ entityTypes: z.ZodArray<z.ZodEnum<{
791
+ projects: "projects";
792
+ issues: "issues";
793
+ cycles: "cycles";
794
+ teams: "teams";
795
+ users: "users";
796
+ labels: "labels";
797
+ issueStates: "issueStates";
798
+ comments: "comments";
799
+ attachments: "attachments";
800
+ }>>;
801
+ teamIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
802
+ projectIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
803
+ cycleIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
804
+ collections: z.ZodArray<z.ZodObject<{
805
+ entityType: z.ZodEnum<{
806
+ projects: "projects";
807
+ issues: "issues";
808
+ cycles: "cycles";
809
+ teams: "teams";
810
+ users: "users";
811
+ labels: "labels";
812
+ issueStates: "issueStates";
813
+ comments: "comments";
814
+ attachments: "attachments";
815
+ }>;
816
+ collectionName: z.ZodString;
817
+ collectionDisplayName: z.ZodString;
818
+ fields: z.ZodArray<z.ZodObject<{
819
+ fieldId: z.ZodString;
820
+ type: z.ZodString;
821
+ displayName: z.ZodString;
822
+ name: z.ZodString;
823
+ required: z.ZodOptional<z.ZodBoolean>;
824
+ config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
825
+ relationTargetEntityType: z.ZodOptional<z.ZodString>;
826
+ fallbackReason: z.ZodOptional<z.ZodString>;
827
+ }, z.core.$strip>>;
828
+ }, z.core.$strip>>;
829
+ }, z.core.$strip>;
765
830
  export declare const BulkUpdateRecordsSchema: z.ZodObject<{
766
831
  tenantId: z.ZodString;
767
832
  collectionId: z.ZodString;