Skip to content

Commit

Permalink
💚 Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Sep 13, 2024
1 parent 6491d14 commit c1347c8
Showing 1 changed file with 41 additions and 23 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
import { DropboxGroupInput, DropboxGroupOutput } from '@filestorage/group/services/dropbox/types';
import {
DropboxGroupInput,
DropboxGroupOutput,
} from '@filestorage/group/services/dropbox/types';

import { DropboxUserInput, DropboxUserOutput } from '@filestorage/user/services/dropbox/types';
import {
DropboxUserInput,
DropboxUserOutput,
} from '@filestorage/user/services/dropbox/types';

import { DropboxFileInput, DropboxFileOutput } from '@filestorage/file/services/dropbox/types';
import {
DropboxFileInput,
DropboxFileOutput,
} from '@filestorage/file/services/dropbox/types';

import { DropboxFolderInput, DropboxFolderOutput } from '@filestorage/folder/services/dropbox/types';
import {
DropboxFolderInput,
DropboxFolderOutput,
} from '@filestorage/folder/services/dropbox/types';

import {
BoxSharedLinkInput,
Expand Down Expand Up @@ -43,7 +55,7 @@ import {
OnedriveFolderOutput,
} from '@filestorage/folder/services/onedrive/types';

import {
import {
OnedriveDriveInput,
OnedriveDriveOutput,
} from '@filestorage/drive/services/onedrive/types';
Expand Down Expand Up @@ -99,35 +111,35 @@ import {
BoxUserInput,
BoxUserOutput,
} from '@filestorage/user/services/box/types';
import {
BoxSharedLinkInput,
BoxSharedLinkOutput,
} from '@filestorage/sharedlink/services/box/types';

import {
GoogleDriveDriveInput,
GoogleDriveDriveOutput,
} from '@filestorage/drive/services/googledrive/types';
import { GoogleDriveFolderInput, GoogleDriveFolderOutput } from '@filestorage/folder/services/googledrive/types';
import { GoogleDriveFileInput, GoogleDriveFileOutput } from '@filestorage/file/services/googledrive/types';

import {
GoogleDriveFileInput,
GoogleDriveFileOutput,
} from '@filestorage/file/services/googledrive/types';
import {
GoogleDriveFolderInput,
GoogleDriveFolderOutput,
} from '@filestorage/folder/services/googledrive/types';
/* file */

/* folder */
export type OriginalFileInput =
| BoxFileInput
| OnedriveFileInput
| SharepointFileInput;
| DropboxFileInput;
| SharepointFileInput
| DropboxFileInput
| SharepointFileInput
| GoogleDriveFileInput;

/* folder */
export type OriginalFolderInput =
| BoxFolderInput
| OnedriveFolderInput
| SharepointFolderInput;
| DropboxFolderInput;
| SharepointFolderInput
| DropboxFolderInput
| SharepointFolderInput
| GoogleDriveFolderInput;

Expand All @@ -141,7 +153,10 @@ export type OriginalPermissionInput =
export type OriginalSharedLinkInput = any;

/* drive */
export type OriginalDriveInput = GoogleDriveDriveInput | OnedriveDriveInput | SharepointDriveInput;
export type OriginalDriveInput =
| GoogleDriveDriveInput
| OnedriveDriveInput
| SharepointDriveInput;

/* group */

Expand Down Expand Up @@ -176,17 +191,17 @@ export type FileStorageObjectInput =
export type OriginalFileOutput =
| BoxFileOutput
| OnedriveFileOutput
| SharepointFileOutput;
| DropboxFileOutput;
| SharepointFileOutput
| DropboxFileOutput
| SharepointFileOutput
| GoogleDriveFileOutput;

/* folder */
export type OriginalFolderOutput =
| BoxFolderOutput
| OnedriveFolderOutput
| SharepointFolderOutput;
| DropboxFolderOutput;
| SharepointFolderOutput
| DropboxFolderOutput
| SharepointFolderOutput
| GoogleDriveFolderOutput;

Expand All @@ -200,7 +215,10 @@ export type OriginalPermissionOutput =
export type OriginalSharedLinkOutput = any;

/* drive */
export type OriginalDriveOutput = GoogleDriveDriveOutput | OnedriveDriveOutput | SharepointDriveOutput;
export type OriginalDriveOutput =
| GoogleDriveDriveOutput
| OnedriveDriveOutput
| SharepointDriveOutput;

/* group */

Expand Down

0 comments on commit c1347c8

Please sign in to comment.