Skip to content

Commit

Permalink
Merge pull request #263 from arfath-gwl/release-2.7.0
Browse files Browse the repository at this point in the history
RELEASE
  • Loading branch information
swayangjit authored Jan 20, 2020
2 parents 4adaa28 + 9231734 commit 3900cb4
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
4 changes: 3 additions & 1 deletion dist/content/impl/content-service-impl.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { CachedItemStore } from '../../key-value-store';
import { SdkServiceOnInitDelegate } from '../../sdk-service-on-init-delegate';
import { SdkConfig } from '../../sdk-config';
import { DeviceInfo } from '../../util/device';
import { AppInfo } from '../../util/app';
export declare class ContentServiceImpl implements ContentService, DownloadCompleteDelegate, SdkServiceOnInitDelegate {
private sdkConfig;
private apiService;
Expand All @@ -28,6 +29,7 @@ export declare class ContentServiceImpl implements ContentService, DownloadCompl
private sharedPreferences;
private eventsBusService;
private cachedItemStore;
private appInfo;
private static readonly KEY_IS_UPDATE_SIZE_ON_DEVICE_SUCCESSFUL;
private static readonly KEY_CONTENT_DELETE_REQUEST_LIST;
private readonly SEARCH_CONTENT_GROUPED_BY_PAGE_SECTION_KEY;
Expand All @@ -36,7 +38,7 @@ export declare class ContentServiceImpl implements ContentService, DownloadCompl
private readonly contentServiceConfig;
private readonly appConfig;
private contentDeleteRequestSet;
constructor(sdkConfig: SdkConfig, apiService: ApiService, dbService: DbService, profileService: ProfileService, fileService: FileService, zipService: ZipService, deviceInfo: DeviceInfo, telemetryService: TelemetryService, contentFeedbackService: ContentFeedbackService, downloadService: DownloadService, sharedPreferences: SharedPreferences, eventsBusService: EventsBusService, cachedItemStore: CachedItemStore);
constructor(sdkConfig: SdkConfig, apiService: ApiService, dbService: DbService, profileService: ProfileService, fileService: FileService, zipService: ZipService, deviceInfo: DeviceInfo, telemetryService: TelemetryService, contentFeedbackService: ContentFeedbackService, downloadService: DownloadService, sharedPreferences: SharedPreferences, eventsBusService: EventsBusService, cachedItemStore: CachedItemStore, appInfo: AppInfo);
private static getIdForDb;
onInit(): Observable<undefined>;
getContentDetails(request: ContentDetailRequest): Observable<Content>;
Expand Down
2 changes: 1 addition & 1 deletion dist/content/util/content-util.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export declare class ContentUtil {
static isOnlineContent(contentData: any): boolean;
static addOrUpdateDialcodeMapping(jsonStr: string, identifier: string, rootNodeIdentifier: string): string;
static deDupe<T>(array: T[], property: any): T[];
static getExportedFileName(contentsInDb: ContentEntry.SchemaMap[]): string;
static getExportedFileName(contentsInDb: ContentEntry.SchemaMap[], appName: string): string;
static readOriginFromContentMap(item: any): string;
static readTransferCountFromContentMap(item: any): number;
static readSizeFromContentMap(item: any): string;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/util/app/def/app-info.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Observable } from 'rxjs';
export interface AppInfo {
init(): any;
getAppName(): string;
getVersionName(): string;
getFirstAccessTimestamp(): Observable<string>;
}
2 changes: 2 additions & 0 deletions dist/util/app/impl/app-info-impl.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ export declare class AppInfoImpl implements AppInfo {
private sdkConfig;
private sharedPreferences;
private versionName;
private appName;
constructor(sdkConfig: SdkConfig, sharedPreferences: SharedPreferences);
getVersionName(): string;
getAppName(): string;
init(): Promise<void>;
/** @internal */
getBuildConfigValue(packageName: any, property: any): Promise<string>;
Expand Down
10 changes: 5 additions & 5 deletions 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.11",
"version": "2.7.12",
"description": "Heart of the sunbird mobile app.",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit 3900cb4

Please sign in to comment.