@appconda/sdk 1.0.612 → 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.
- package/dist/modules/emploid/schema.d.ts +95 -0
- package/dist/modules/emploid/schema.js +96 -1
- package/dist/modules/emploid/service.d.ts +9 -1
- package/dist/modules/emploid/service.js +25 -1
- package/dist/modules/emploid/types.d.ts +1 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +115 -0
- package/src/modules/emploid/service.ts +81 -1
- package/src/modules/emploid/types.ts +1 -0
|
@@ -732,6 +732,101 @@ export declare const BulkCreateRecordsSchema: z.ZodObject<{
|
|
|
732
732
|
collectionId: z.ZodString;
|
|
733
733
|
records: z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
734
734
|
}, z.core.$strip>;
|
|
735
|
+
export declare const EnsureAirtableImportCredentialSchema: z.ZodObject<{
|
|
736
|
+
tenantId: z.ZodString;
|
|
737
|
+
}, z.core.$strip>;
|
|
738
|
+
export declare const ListAirtableImportSourcesSchema: z.ZodObject<{
|
|
739
|
+
tenantId: z.ZodString;
|
|
740
|
+
}, z.core.$strip>;
|
|
741
|
+
export declare const PreviewAirtableImportSchema: z.ZodObject<{
|
|
742
|
+
tenantId: z.ZodString;
|
|
743
|
+
baseId: z.ZodString;
|
|
744
|
+
tableIds: z.ZodArray<z.ZodString>;
|
|
745
|
+
}, z.core.$strip>;
|
|
746
|
+
export declare const RunAirtableImportSchema: z.ZodObject<{
|
|
747
|
+
tenantId: z.ZodString;
|
|
748
|
+
baseId: z.ZodString;
|
|
749
|
+
tables: z.ZodArray<z.ZodObject<{
|
|
750
|
+
tableId: z.ZodString;
|
|
751
|
+
collectionName: z.ZodString;
|
|
752
|
+
collectionDisplayName: z.ZodString;
|
|
753
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
754
|
+
fieldId: z.ZodString;
|
|
755
|
+
type: z.ZodString;
|
|
756
|
+
displayName: z.ZodString;
|
|
757
|
+
name: z.ZodString;
|
|
758
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
759
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
760
|
+
relationTargetTableId: z.ZodOptional<z.ZodString>;
|
|
761
|
+
fallbackReason: z.ZodOptional<z.ZodString>;
|
|
762
|
+
}, z.core.$strip>>;
|
|
763
|
+
}, z.core.$strip>>;
|
|
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>;
|
|
735
830
|
export declare const BulkUpdateRecordsSchema: z.ZodObject<{
|
|
736
831
|
tenantId: z.ZodString;
|
|
737
832
|
collectionId: z.ZodString;
|