@topconsultnpm/sdk-ts 6.21.0-dev1.4 → 6.21.0-dev1.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.
@@ -0,0 +1,4 @@
1
+ export declare class StandardHelper {
2
+ static DateTime2StandardString(value: Date): string;
3
+ static Number2StandardString(value: number): string;
4
+ }
@@ -0,0 +1,4 @@
1
+ import './ExtMethods';
2
+ export declare class StringHelper {
3
+ static AreEqual(string1: string | undefined, string2: string | undefined): boolean;
4
+ }
@@ -0,0 +1,7 @@
1
+ export * from "./PlatformObjectValidator";
2
+ export * from "./SDK_CacheServices";
3
+ export * from "./SDK_Globals";
4
+ export * from "./SDK_Localizator";
5
+ export * from "./utils";
6
+ export * from './StringHelper';
7
+ export * from "./LocalStorageService";
@@ -0,0 +1,12 @@
1
+ export declare class TMPropertyNames {
2
+ static entityName: string;
3
+ static fromTid: string;
4
+ static join: string;
5
+ static maxDcmtsToBeReturned: string;
6
+ static orderBy: string;
7
+ static select: string;
8
+ static where: string;
9
+ }
10
+ export declare class TMScopeNames {
11
+ static qd: string;
12
+ }
@@ -0,0 +1,6 @@
1
+ export * from "./Engine";
2
+ export * from "./helper/index";
3
+ export * from "./openAPIs/TopMediaServiceClient";
4
+ export * from "./TopMediaServer";
5
+ export * from "./TopMediaSession";
6
+ export * from "./TopMediaServiceClientEx";