@appconda/sdk 1.0.611 → 1.0.613
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 +55 -0
- package/dist/modules/emploid/schema.js +56 -1
- package/dist/modules/emploid/service.d.ts +10 -2
- package/dist/modules/emploid/service.js +25 -1
- package/dist/modules/emploid/types.d.ts +20 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +67 -0
- package/src/modules/emploid/service.ts +82 -2
- package/src/modules/emploid/types.ts +23 -0
|
@@ -732,6 +732,36 @@ 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>;
|
|
735
765
|
export declare const BulkUpdateRecordsSchema: z.ZodObject<{
|
|
736
766
|
tenantId: z.ZodString;
|
|
737
767
|
collectionId: z.ZodString;
|
|
@@ -868,6 +898,31 @@ export declare const DeleteCollectionAutomationRuleSchema: z.ZodObject<{
|
|
|
868
898
|
collectionId: z.ZodString;
|
|
869
899
|
ruleId: z.ZodString;
|
|
870
900
|
}, z.core.$strip>;
|
|
901
|
+
export declare const ListCollectionViewsSchema: z.ZodObject<{
|
|
902
|
+
tenantId: z.ZodString;
|
|
903
|
+
collectionId: z.ZodString;
|
|
904
|
+
}, z.core.$strip>;
|
|
905
|
+
export declare const CreateCollectionViewSchema: z.ZodObject<{
|
|
906
|
+
tenantId: z.ZodString;
|
|
907
|
+
dataModelId: z.ZodString;
|
|
908
|
+
collectionId: z.ZodString;
|
|
909
|
+
name: z.ZodString;
|
|
910
|
+
type: z.ZodString;
|
|
911
|
+
config: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
|
|
912
|
+
}, z.core.$strip>;
|
|
913
|
+
export declare const UpdateCollectionViewSchema: z.ZodObject<{
|
|
914
|
+
tenantId: z.ZodString;
|
|
915
|
+
collectionId: z.ZodString;
|
|
916
|
+
viewId: z.ZodString;
|
|
917
|
+
name: z.ZodOptional<z.ZodString>;
|
|
918
|
+
type: z.ZodOptional<z.ZodString>;
|
|
919
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
920
|
+
}, z.core.$strip>;
|
|
921
|
+
export declare const DeleteCollectionViewSchema: z.ZodObject<{
|
|
922
|
+
tenantId: z.ZodString;
|
|
923
|
+
collectionId: z.ZodString;
|
|
924
|
+
viewId: z.ZodString;
|
|
925
|
+
}, z.core.$strip>;
|
|
871
926
|
export declare const ListCollectionButtonsSchema: z.ZodObject<{
|
|
872
927
|
tenantId: z.ZodString;
|
|
873
928
|
collectionId: z.ZodOptional<z.ZodString>;
|