Skip to content

Commit

Permalink
RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
swayangjit committed Jan 6, 2020
1 parent ca750aa commit fac4181
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
1 change: 1 addition & 0 deletions dist/content/def/requests.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export interface ContentImport {
export interface ContentExportRequest {
destinationFolder: string;
contentIds: string[];
saveLocally?: boolean;
}
export interface ContentMarkerRequest {
contentId: string;
Expand Down
6 changes: 6 additions & 0 deletions dist/content/handlers/export/copy-to-destination.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { Response } from '../../../api';
import { ContentExportRequest } from '../..';
export declare class CopyToDestination {
constructor();
execute(exportResponse: Response, contentExportRequest: ContentExportRequest): Promise<Response>;
}
6 changes: 6 additions & 0 deletions dist/content/handlers/export/deletete-temp-dir.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { Response } from '../../../api';
import { ExportContentContext } from '../..';
export declare class DeleteTempDir {
constructor();
execute(exportContext: ExportContentContext): Promise<Response>;
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { ExportContentContext } from '../..';
import { ExportContentContext, ContentExportRequest } from '../..';
import { Response } from '../../../api';
import { TelemetryService } from '../../../telemetry';
export declare class GenerateExportShareTelemetry {
private telemetryService;
constructor(telemetryService: TelemetryService);
execute(exportContentContext: ExportContentContext): Promise<Response>;
execute(exportContentContext: ExportContentContext, fileName: string, contentExportRequest: ContentExportRequest): Promise<Response>;
}
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

0 comments on commit fac4181

Please sign in to comment.