@appconda/sdk 1.0.618 → 1.0.620
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 +77 -0
- package/dist/modules/emploid/schema.js +78 -1
- package/dist/modules/emploid/service.d.ts +21 -2
- package/dist/modules/emploid/service.js +46 -1
- package/dist/modules/emploid/types.d.ts +45 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +95 -0
- package/src/modules/emploid/service.ts +93 -2
- package/src/modules/emploid/types.ts +50 -0
|
@@ -220,6 +220,45 @@ export declare const DeleteAgentFlowFolderSchema: z.ZodObject<{
|
|
|
220
220
|
export declare const ListAgentFlowFoldersSchema: z.ZodObject<{
|
|
221
221
|
tenantId: z.ZodString;
|
|
222
222
|
}, z.core.$strip>;
|
|
223
|
+
export declare const ListDriveItemsSchema: z.ZodObject<{
|
|
224
|
+
tenantId: z.ZodString;
|
|
225
|
+
folderId: z.ZodOptional<z.ZodString>;
|
|
226
|
+
}, z.core.$strip>;
|
|
227
|
+
export declare const ListDriveTreeSchema: z.ZodObject<{
|
|
228
|
+
tenantId: z.ZodString;
|
|
229
|
+
}, z.core.$strip>;
|
|
230
|
+
export declare const SearchDriveItemsSchema: z.ZodObject<{
|
|
231
|
+
tenantId: z.ZodString;
|
|
232
|
+
query: z.ZodString;
|
|
233
|
+
}, z.core.$strip>;
|
|
234
|
+
export declare const CreateDriveFolderSchema: z.ZodObject<{
|
|
235
|
+
tenantId: z.ZodString;
|
|
236
|
+
name: z.ZodString;
|
|
237
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
238
|
+
}, z.core.$strip>;
|
|
239
|
+
export declare const PrepareDriveUploadSchema: z.ZodObject<{
|
|
240
|
+
tenantId: z.ZodString;
|
|
241
|
+
name: z.ZodString;
|
|
242
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
243
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
244
|
+
}, z.core.$strip>;
|
|
245
|
+
export declare const RenameDriveItemSchema: z.ZodObject<{
|
|
246
|
+
itemId: z.ZodString;
|
|
247
|
+
name: z.ZodString;
|
|
248
|
+
}, z.core.$strip>;
|
|
249
|
+
export declare const MoveDriveItemSchema: z.ZodObject<{
|
|
250
|
+
itemId: z.ZodString;
|
|
251
|
+
targetParentId: z.ZodOptional<z.ZodString>;
|
|
252
|
+
}, z.core.$strip>;
|
|
253
|
+
export declare const GetDriveDeleteImpactSchema: z.ZodObject<{
|
|
254
|
+
itemId: z.ZodString;
|
|
255
|
+
}, z.core.$strip>;
|
|
256
|
+
export declare const DeleteDriveItemSchema: z.ZodObject<{
|
|
257
|
+
itemId: z.ZodString;
|
|
258
|
+
}, z.core.$strip>;
|
|
259
|
+
export declare const ResolveDriveDownloadSchema: z.ZodObject<{
|
|
260
|
+
itemId: z.ZodString;
|
|
261
|
+
}, z.core.$strip>;
|
|
223
262
|
export declare const CreateExtensionSchema: z.ZodObject<{
|
|
224
263
|
extensionId: z.ZodString;
|
|
225
264
|
tenantId: z.ZodString;
|
|
@@ -836,6 +875,18 @@ export declare const EnsureGmailImportCredentialSchema: z.ZodObject<{
|
|
|
836
875
|
export declare const EnsureGithubImportCredentialSchema: z.ZodObject<{
|
|
837
876
|
tenantId: z.ZodString;
|
|
838
877
|
}, z.core.$strip>;
|
|
878
|
+
export declare const PreviewCsvImportSchema: z.ZodObject<{
|
|
879
|
+
tenantId: z.ZodString;
|
|
880
|
+
fileName: z.ZodString;
|
|
881
|
+
headersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
882
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
883
|
+
fieldId: z.ZodString;
|
|
884
|
+
name: z.ZodString;
|
|
885
|
+
displayName: z.ZodString;
|
|
886
|
+
index: z.ZodNumber;
|
|
887
|
+
}, z.core.$strip>>;
|
|
888
|
+
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>>;
|
|
889
|
+
}, z.core.$strip>;
|
|
839
890
|
export declare const ListGmailImportSourcesSchema: z.ZodObject<{
|
|
840
891
|
tenantId: z.ZodString;
|
|
841
892
|
}, z.core.$strip>;
|
|
@@ -860,6 +911,32 @@ export declare const PreviewGithubImportSchema: z.ZodObject<{
|
|
|
860
911
|
pullRequests: "pullRequests";
|
|
861
912
|
}>>;
|
|
862
913
|
}, z.core.$strip>;
|
|
914
|
+
export declare const RunCsvImportSchema: z.ZodObject<{
|
|
915
|
+
tenantId: z.ZodString;
|
|
916
|
+
fileName: z.ZodString;
|
|
917
|
+
headersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
918
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
919
|
+
fieldId: z.ZodString;
|
|
920
|
+
name: z.ZodString;
|
|
921
|
+
displayName: z.ZodString;
|
|
922
|
+
index: z.ZodNumber;
|
|
923
|
+
}, z.core.$strip>>;
|
|
924
|
+
rows: z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
925
|
+
collection: z.ZodObject<{
|
|
926
|
+
collectionKey: z.ZodLiteral<"rows">;
|
|
927
|
+
collectionName: z.ZodString;
|
|
928
|
+
collectionDisplayName: z.ZodString;
|
|
929
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
930
|
+
fieldId: z.ZodString;
|
|
931
|
+
type: z.ZodString;
|
|
932
|
+
displayName: z.ZodString;
|
|
933
|
+
name: z.ZodString;
|
|
934
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
935
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
936
|
+
fallbackReason: z.ZodOptional<z.ZodString>;
|
|
937
|
+
}, z.core.$strip>>;
|
|
938
|
+
}, z.core.$strip>;
|
|
939
|
+
}, z.core.$strip>;
|
|
863
940
|
export declare const RunGmailImportSchema: z.ZodObject<{
|
|
864
941
|
tenantId: z.ZodString;
|
|
865
942
|
collections: z.ZodArray<z.ZodEnum<{
|