@appconda/sdk 1.0.619 → 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.
@@ -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;