@topconsultnpm/sdk-ts 6.20.0-dev2.5 → 6.20.0-dev2.6
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.
- package/dist/lib/Engine.d.ts +1949 -0
- package/dist/lib/TopMediaServer.d.ts +26 -0
- package/dist/lib/TopMediaServiceClientEx.d.ts +20 -0
- package/dist/lib/TopMediaSession.d.ts +124 -0
- package/dist/lib/helper/ExtMethods.d.ts +4 -0
- package/dist/lib/helper/LocalStorageService.d.ts +10 -0
- package/dist/lib/helper/PlatformObjectValidator.d.ts +43 -0
- package/dist/lib/helper/SDK_CacheServices.d.ts +124 -0
- package/dist/lib/helper/SDK_Globals.d.ts +36 -0
- package/dist/lib/helper/SDK_Localizator.d.ts +137 -0
- package/dist/lib/helper/StandardHelper.d.ts +4 -0
- package/dist/lib/helper/StringHelper.d.ts +4 -0
- package/dist/lib/helper/index.d.ts +7 -0
- package/dist/lib/helper/utils.d.ts +12 -0
- package/dist/lib/index.d.ts +6 -0
- package/dist/lib/openAPIs/TopMediaServiceClient.d.ts +8347 -0
- package/dist/lib/openAPIs/TopMediaServiceClient.js +1 -1
- package/dist/types/openAPIs/TopMediaServiceClient.d.ts +4 -0
- package/package.json +1 -1
|
@@ -2744,6 +2744,10 @@ export declare class HomePageTasks extends HomePageData {
|
|
|
2744
2744
|
startFromTaskID?: number;
|
|
2745
2745
|
count?: number;
|
|
2746
2746
|
newTasks?: TaskDescriptor[] | undefined;
|
|
2747
|
+
queryTaskIDs?: number[] | undefined;
|
|
2748
|
+
queryTaskStates?: {
|
|
2749
|
+
[key: string]: Task_States;
|
|
2750
|
+
} | undefined;
|
|
2747
2751
|
init(_data?: any): void;
|
|
2748
2752
|
static fromJS(data: any): HomePageTasks;
|
|
2749
2753
|
toJSON(data?: any): any;
|