Skip to content

Commit

Permalink
Issue #SB-0000 merge: Merge pull request #227 from swayangjit/release…
Browse files Browse the repository at this point in the history
…-2.7.0

Issue #SB-000 chore: Bumped up version to '2.7.5'.
  • Loading branch information
AmiableAnil authored Jan 6, 2020
2 parents ca750aa + 52dbce0 commit b52c60b
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 5 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.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sunbird-sdk",
"version": "2.7.4",
"version": "2.7.5",
"description": "Heart of the sunbird mobile app.",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit b52c60b

Please sign in to comment.