@topconsultnpm/sdk-ts 6.17.0-dev.1.1

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.
Files changed (33) hide show
  1. package/dist/lib/Engine.js +4782 -0
  2. package/dist/lib/TopMediaServer.js +44 -0
  3. package/dist/lib/TopMediaServiceClientEx.js +221 -0
  4. package/dist/lib/TopMediaSession.js +224 -0
  5. package/dist/lib/helper/ExtMethods.js +16 -0
  6. package/dist/lib/helper/LocalStorageService.js +74 -0
  7. package/dist/lib/helper/PlatformObjectValidator.js +310 -0
  8. package/dist/lib/helper/SDK_CacheServices.js +961 -0
  9. package/dist/lib/helper/SDK_Globals.js +46 -0
  10. package/dist/lib/helper/SDK_Localizator.js +1192 -0
  11. package/dist/lib/helper/StandardHelper.js +6 -0
  12. package/dist/lib/helper/StringHelper.js +6 -0
  13. package/dist/lib/helper/index.js +7 -0
  14. package/dist/lib/helper/utils.js +12 -0
  15. package/dist/lib/index.js +6 -0
  16. package/dist/lib/openAPIs/TopMediaServiceClient.js +1 -0
  17. package/dist/types/Engine.d.ts +1925 -0
  18. package/dist/types/TopMediaServer.d.ts +25 -0
  19. package/dist/types/TopMediaServiceClientEx.d.ts +20 -0
  20. package/dist/types/TopMediaSession.d.ts +129 -0
  21. package/dist/types/helper/ExtMethods.d.ts +4 -0
  22. package/dist/types/helper/LocalStorageService.d.ts +10 -0
  23. package/dist/types/helper/PlatformObjectValidator.d.ts +43 -0
  24. package/dist/types/helper/SDK_CacheServices.d.ts +123 -0
  25. package/dist/types/helper/SDK_Globals.d.ts +36 -0
  26. package/dist/types/helper/SDK_Localizator.d.ts +132 -0
  27. package/dist/types/helper/StandardHelper.d.ts +4 -0
  28. package/dist/types/helper/StringHelper.d.ts +4 -0
  29. package/dist/types/helper/index.d.ts +7 -0
  30. package/dist/types/helper/utils.d.ts +12 -0
  31. package/dist/types/index.d.ts +6 -0
  32. package/dist/types/openAPIs/TopMediaServiceClient.d.ts +5689 -0
  33. package/package.json +31 -0
@@ -0,0 +1,25 @@
1
+ import { ITopMediaSession } from "./TopMediaSession";
2
+ import { CultureIDs, TopMediaServiceClient } from "./openAPIs/TopMediaServiceClient";
3
+ import { TopMediaServiceClientEx } from "./TopMediaServiceClientEx";
4
+ export interface ITopMediaServer {
5
+ BaseAddress?: string;
6
+ NullValue: string;
7
+ PingAsync(): Promise<string[]>;
8
+ NewSession(): ITopMediaSession;
9
+ CreateHttpClient(accessToken?: string, useClientEx?: boolean): TopMediaServiceClient | TopMediaServiceClientEx;
10
+ FontNamesAsync(): Promise<string[]>;
11
+ PrinterNamesAsync(): Promise<string[]>;
12
+ EncryptAsync(input: string): Promise<string>;
13
+ }
14
+ export declare class TopMediaServer implements ITopMediaServer {
15
+ constructor(baseAddress?: string);
16
+ BaseAddress: string | undefined;
17
+ NullValue: string;
18
+ PingAsync(): Promise<string[]>;
19
+ NewSession(): ITopMediaSession;
20
+ static RetrieveAllCultureIDs(): CultureIDs[];
21
+ FontNamesAsync(): Promise<string[]>;
22
+ PrinterNamesAsync(): Promise<string[]>;
23
+ EncryptAsync(input: string): Promise<string>;
24
+ CreateHttpClient(accessToken?: string, useClientEx?: boolean): TopMediaServiceClient | TopMediaServiceClientEx;
25
+ }
@@ -0,0 +1,20 @@
1
+ import type { AxiosInstance, AxiosResponse } from 'axios';
2
+ import { AreaParams, FileResponse, RetrieveFileOptions } from './openAPIs/TopMediaServiceClient';
3
+ export declare class TopMediaServiceClientEx {
4
+ private instance;
5
+ private baseUrl;
6
+ protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
7
+ constructor(baseUrl?: string, instance?: AxiosInstance);
8
+ areaAddFileEx(body: AreaParams | undefined, progressCallback?: (pd: ProgressCallbackData) => any, signal?: AbortSignal | undefined): Promise<void>;
9
+ protected processAreaAddFileEx(response: AxiosResponse): Promise<void>;
10
+ areaRetrieveFileEx(body: AreaParams | undefined, progressCallback?: (pd: ProgressCallbackData) => any, signal?: AbortSignal | undefined): Promise<FileResponse>;
11
+ protected processAreaRetrieveFileEx(response: AxiosResponse): Promise<FileResponse>;
12
+ retrieveFileEx(tID: number | undefined, dID: number | undefined, body: RetrieveFileOptions | undefined, progressCallback?: (pd: ProgressCallbackData) => any, signal?: AbortSignal): Promise<FileResponse>;
13
+ protected processRetrieveFileEx(response: AxiosResponse): Promise<FileResponse>;
14
+ }
15
+ export declare class ProgressCallbackData {
16
+ ProgressBarMaximum: number | undefined;
17
+ ProgressBarValue: number;
18
+ ProgressMessage?: string;
19
+ CustomParam?: object;
20
+ }
@@ -0,0 +1,129 @@
1
+ import { PopupRequest, PublicClientApplication } from "@azure/msal-browser";
2
+ import { IArchiveEngine, IAreaEngine, IBasketEngine, IBasketTypeEngine, IDataListEngine, IDcmtTypeEngine, IDiskEngine, IDossierEngine, IFavoritesEngine, IHomePageEngine, IJobEngine, ILicenseEngine, INotificationEngine, IOrchPlatformEngine, IPreviewEngine, IProcessEngine, IRecentEngine, ISavedQueryEngine, ISearchEngine, ISignCertEngine, ITSAEngine, ITaskEngine, ITreeEngine, IUploadFileEngine, IUserEngine, IWorkflowEngine, IWorkingGroupEngine, IRelationEngine, IDeleteEngine, IUpdateEngineByID, IArchiveEngineByID, IDcmtPlatformEngine, IADMEngine, INumeratorEngine, IReportEngine, ISignServerEngine, ILDAPEngine, IGroupEngine, ISAPEngine, IPermissionEngine, IViewEngine, IDossierTypeEngine } from "./Engine";
3
+ import { ITopMediaServer } from "./TopMediaServer";
4
+ import { TopMediaServiceClient, SessionDescriptor, AppModules } from "./openAPIs/TopMediaServiceClient";
5
+ import { TopMediaServiceClientEx } from "./TopMediaServiceClientEx";
6
+ export interface ITopMediaSession {
7
+ AutoRefresh: boolean | undefined;
8
+ AutoRefreshInterval: number;
9
+ SessionDescr: SessionDescriptor | undefined;
10
+ TopMediaServer: ITopMediaServer;
11
+ TMSClient: TopMediaServiceClient | undefined;
12
+ TMSClientEx: TopMediaServiceClientEx | undefined;
13
+ LoginAsync(sd: SessionDescriptor, useGlobals?: boolean): Promise<void>;
14
+ LoginToAsync(toAppModule: AppModules): Promise<SessionDescriptor | undefined>;
15
+ LogoutAsync(useGlobals?: boolean): Promise<void>;
16
+ RefreshAsync(): Promise<number | undefined>;
17
+ DeleteAsync(id: string): Promise<void>;
18
+ RetrieveAllAdminAsync(): Promise<SessionDescriptor[] | undefined>;
19
+ NewADMEngine(): IADMEngine;
20
+ NewArchiveEngine(): IArchiveEngine;
21
+ NewArchiveEngineByID(): IArchiveEngineByID;
22
+ NewAreaEngine(): IAreaEngine;
23
+ NewBasketEngine(): IBasketEngine;
24
+ NewBasketTypeEngine(): IBasketTypeEngine;
25
+ NewDataListEngine(): IDataListEngine;
26
+ NewDcmtPlatformEngine(): IDcmtPlatformEngine;
27
+ NewDcmtTypeEngine(): IDcmtTypeEngine;
28
+ NewDeleteEngine(): IDeleteEngine;
29
+ NewDiskEngine(): IDiskEngine;
30
+ NewDossierEngine(): IDossierEngine;
31
+ NewDossierTypeEngine(): IDossierTypeEngine;
32
+ NewFavoritesEngine(): IFavoritesEngine;
33
+ NewGroupEngine(): IGroupEngine;
34
+ NewHomePageEngine(): IHomePageEngine;
35
+ NewJobEngine(): IJobEngine;
36
+ NewLDAPEngine(): ILDAPEngine;
37
+ NewLicenseEngine(): ILicenseEngine;
38
+ NewNotificationEngine(): INotificationEngine;
39
+ NewNumeratorEngine(): INumeratorEngine;
40
+ NewOrchPlatformEngine(): IOrchPlatformEngine;
41
+ NewPermissionEngine(): IPermissionEngine;
42
+ NewPreviewEngine(): IPreviewEngine;
43
+ NewProcessEngine(): IProcessEngine;
44
+ NewRecentEngine(): IRecentEngine;
45
+ NewRelationEngine(): IRelationEngine;
46
+ NewReportEngine(): IReportEngine;
47
+ NewSAPEngine(): ISAPEngine;
48
+ NewSavedQueryEngine(): ISavedQueryEngine;
49
+ NewSearchEngine(): ISearchEngine;
50
+ NewSignCertEngine(): ISignCertEngine;
51
+ NewSignServerEngine(): ISignServerEngine;
52
+ NewTaskEngine(): ITaskEngine;
53
+ NewTreeEngine(): ITreeEngine;
54
+ NewTSAEngine(): ITSAEngine;
55
+ NewUpdateEngineByID(): IUpdateEngineByID;
56
+ NewUploadFileEngine(): IUploadFileEngine;
57
+ NewUserEngine(): IUserEngine;
58
+ NewViewEngine(): IViewEngine;
59
+ NewWorkflowEngine(): IWorkflowEngine;
60
+ NewWorkingGroupEngine(): IWorkingGroupEngine;
61
+ }
62
+ export declare class TopMediaSession implements ITopMediaSession {
63
+ constructor(tmSrv: ITopMediaServer);
64
+ SessionDescr: SessionDescriptor | undefined;
65
+ get TMSClient(): TopMediaServiceClient | undefined;
66
+ get TMSClientEx(): TopMediaServiceClientEx | undefined;
67
+ TopMediaServer: ITopMediaServer;
68
+ private _autoRefreshInterval;
69
+ get AutoRefreshInterval(): number;
70
+ set AutoRefreshInterval(autoRefreshInterval: number);
71
+ private _refreshTimer;
72
+ private _autoRefresh;
73
+ get AutoRefresh(): boolean | undefined;
74
+ set AutoRefresh(autoRefresh: boolean | undefined);
75
+ IsLogged(): boolean;
76
+ CheckIsLogged(): void;
77
+ _loginRequest: PopupRequest;
78
+ _accountId: string;
79
+ _msalInstance: PublicClientApplication | null | undefined;
80
+ LoginAsync(sd: SessionDescriptor, useGlobals?: boolean): Promise<void>;
81
+ LoginToAsync(toAppModule: AppModules): Promise<SessionDescriptor | undefined>;
82
+ private _azureLogout;
83
+ LogoutAsync(useGlobals?: boolean): Promise<void>;
84
+ RefreshAsync(): Promise<number | undefined>;
85
+ DeleteAsync(id: string): Promise<void>;
86
+ RetrieveAllAdminAsync(): Promise<SessionDescriptor[] | undefined>;
87
+ NewADMEngine(): IADMEngine;
88
+ NewArchiveEngine(): IArchiveEngine;
89
+ NewArchiveEngineByID(): IArchiveEngineByID;
90
+ NewAreaEngine(): IAreaEngine;
91
+ NewBasketEngine(): IBasketEngine;
92
+ NewBasketTypeEngine(): IBasketTypeEngine;
93
+ NewDataListEngine(): IDataListEngine;
94
+ NewDcmtPlatformEngine(): IDcmtPlatformEngine;
95
+ NewDcmtTypeEngine(): IDcmtTypeEngine;
96
+ NewDeleteEngine(): IDeleteEngine;
97
+ NewDiskEngine(): IDiskEngine;
98
+ NewDossierEngine(): IDossierEngine;
99
+ NewDossierTypeEngine(): IDossierTypeEngine;
100
+ NewFavoritesEngine(): IFavoritesEngine;
101
+ NewGroupEngine(): IGroupEngine;
102
+ NewHomePageEngine(): IHomePageEngine;
103
+ NewJobEngine(): IJobEngine;
104
+ NewLDAPEngine(): ILDAPEngine;
105
+ NewLicenseEngine(): ILicenseEngine;
106
+ NewNotificationEngine(): INotificationEngine;
107
+ NewNumeratorEngine(): INumeratorEngine;
108
+ NewOrchPlatformEngine(): IOrchPlatformEngine;
109
+ NewPermissionEngine(): IPermissionEngine;
110
+ NewPreviewEngine(): IPreviewEngine;
111
+ NewProcessEngine(): IProcessEngine;
112
+ NewRecentEngine(): IRecentEngine;
113
+ NewRelationEngine(): IRelationEngine;
114
+ NewReportEngine(): IReportEngine;
115
+ NewSAPEngine(): ISAPEngine;
116
+ NewSavedQueryEngine(): ISavedQueryEngine;
117
+ NewSearchEngine(): ISearchEngine;
118
+ NewSignCertEngine(): ISignCertEngine;
119
+ NewSignServerEngine(): ISignServerEngine;
120
+ NewTaskEngine(): ITaskEngine;
121
+ NewTreeEngine(): ITreeEngine;
122
+ NewTSAEngine(): ITSAEngine;
123
+ NewUpdateEngineByID(): IUpdateEngineByID;
124
+ NewUploadFileEngine(): IUploadFileEngine;
125
+ NewUserEngine(): IUserEngine;
126
+ NewViewEngine(): IViewEngine;
127
+ NewWorkflowEngine(): IWorkflowEngine;
128
+ NewWorkingGroupEngine(): IWorkingGroupEngine;
129
+ }
@@ -0,0 +1,4 @@
1
+ interface String {
2
+ replaceParams(...params: any[]): string;
3
+ equals(value: string | undefined, ignoreCase?: boolean): boolean;
4
+ }
@@ -0,0 +1,10 @@
1
+ export declare class LocalStorageService {
2
+ static setItem<T extends string | number | Record<string, any>>(key: string, value: T): void;
3
+ static getItem<T extends Record<string, any> | string>(key: string): T | null;
4
+ static updateItem<T extends Record<string, any>>(key: string, value: T): void;
5
+ static deleteItem(key: string): void;
6
+ static clear(): void;
7
+ static findItemByField<T extends Record<string, any>>(key: string, field: keyof T, value: any): T | null;
8
+ static deleteItemByField<T extends Record<string, any>>(key: string, field: keyof T, value: any): void;
9
+ static updateItemByField<T extends Record<string, any>>(key: string, field: keyof T, value: any, newData: Partial<T>): void;
10
+ }
@@ -0,0 +1,43 @@
1
+ import { DcmtTypeDescriptor, QueryDescriptor, QueryOperators, WhereItem } from "../openAPIs/TopMediaServiceClient";
2
+ export declare enum ResultTypes {
3
+ NONE = "None",
4
+ SUCCESS = "Success",
5
+ WARNING = "Warning",
6
+ ERROR = "Error",
7
+ INFO = "Info"
8
+ }
9
+ export declare class QueryValidatorOptions {
10
+ DoSelectValidation: boolean;
11
+ DoOrderByValidation: boolean;
12
+ DoWhereHasItemsValidation: boolean;
13
+ PropertyName: string;
14
+ RaiseWarningForOnlyMetadataDcmtTypes: boolean;
15
+ }
16
+ export declare class ValidationItem {
17
+ ResultType: ResultTypes;
18
+ Message: string;
19
+ PropertyName: string;
20
+ PropertyScopes: string[];
21
+ constructor(resultType: ResultTypes, propertyName: string, message: string, propertyScopes?: string[]);
22
+ }
23
+ export declare class PlatformObjectValidator {
24
+ static StringIsNullOrEmpty(value: string | undefined): boolean;
25
+ static StringIsNullOrWhiteSpace(value: string | undefined): boolean;
26
+ static GetInvalidFileNameChars(): string[];
27
+ static IsValidObjectName(name: string | null | undefined): boolean;
28
+ static GetTIDByQd(qd?: QueryDescriptor): number;
29
+ static ObjectNameValidator(propertyValue: string | null | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string): void;
30
+ static RequiredObjectValidator(propertyValue: object | null | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string, showPropertyName?: boolean): void;
31
+ static RequiredStrictlyPositiveNumberValidator(propertyValue: number | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string, showPropertyName?: boolean): void;
32
+ static RequiredStrictlyPositiveNumberValidator_RequiredField(propertyValue: number | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string, showPropertyName?: boolean): void;
33
+ static RequiredStrictlyPositiveNumberValidator_ValueNotAllowed(propertyValue: number | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string, showPropertyName?: boolean): void;
34
+ static RequiredNotEqualZeroNumberValidator(propertyValue: number | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string, showPropertyName?: boolean): void;
35
+ static RequiredNotEqualZeroNumberValidator_RequiredField(propertyValue: number | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string, showPropertyName?: boolean): void;
36
+ static RequiredNotEqualZeroNumberValidator_ValueNotAllowed(propertyValue: number | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string, showPropertyName?: boolean): void;
37
+ static RequiredNotNoneValueValidator(propertyValue: string | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string, showPropertyName?: boolean): void;
38
+ static RequiredStringValidator(propertyValue: string | null | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string, showPropertyName?: boolean): void;
39
+ static RequiredStringWithValidSpacesValidator(propertyValue: string | null | undefined, propertyName: string, vl: ValidationItem[], localizedPropertyCaption: string, showPropertyName?: boolean): void;
40
+ static GetNumberOfOperands(qo?: QueryOperators): 0 | 1 | 2 | 12 | 11 | 99;
41
+ static WhereItemHasValues(wi: WhereItem): boolean;
42
+ static QueryValidatorAsync(qdNew: QueryDescriptor | undefined, vl: ValidationItem[], qvo: QueryValidatorOptions, showPropertyName?: boolean): Promise<DcmtTypeDescriptor | undefined>;
43
+ }
@@ -0,0 +1,123 @@
1
+ import { ITopMediaSession } from "../TopMediaSession";
2
+ import { DataListDescriptor, DcmtTypeDescriptor, DossierDescriptor, QueryDescriptor, RelationDescriptor, SavedQueryDescriptor, SearchResultDescriptor, SignCertDescriptor, TSADescriptor, TreeDescriptor, UserDescriptor, WFDescriptor, WorkingGroupDescriptor } from "../openAPIs/TopMediaServiceClient";
3
+ export declare class DataListCacheService {
4
+ private static readonly _mutex;
5
+ private static readonly _cacheAll;
6
+ private static readonly _cache;
7
+ static GetAllAdminAsync(tmSession?: ITopMediaSession | undefined, retrieveItems?: boolean, deepCopy?: boolean): Promise<DataListDescriptor[]>;
8
+ static GetAsync(id: number | undefined, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<DataListDescriptor | undefined>;
9
+ static RemoveAll(tmSession?: ITopMediaSession | undefined): void;
10
+ static Remove(tmSession?: ITopMediaSession | undefined): void;
11
+ }
12
+ export interface DcmtTypeCacheEventArgs {
13
+ count: number;
14
+ accessToken: string;
15
+ timestamp: Date;
16
+ }
17
+ export type AccessFilter = 'all' | 'canArchive' | 'canSearch';
18
+ export declare class DcmtTypeListCacheService {
19
+ private static readonly _mutex;
20
+ private static _onCacheRefreshed?;
21
+ static get onCacheRefreshed(): ((args: DcmtTypeCacheEventArgs) => void) | undefined;
22
+ static set onCacheRefreshed(value: ((args: DcmtTypeCacheEventArgs) => void) | undefined);
23
+ private static readonly _cacheWithoutMetadata;
24
+ static GetAllWithoutMetadataAsync(tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<DcmtTypeDescriptor[]>;
25
+ static RemoveAllWithoutMetadata(tmSession?: ITopMediaSession | undefined): void;
26
+ private static readonly _cacheWithMetadata;
27
+ static GetAsync(tid: number | undefined, withMetadata?: boolean, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean, refreshCache?: boolean): Promise<DcmtTypeDescriptor | undefined>;
28
+ static GetWithNotGrantedAsync(tid: number | undefined, did: number | undefined, getMetadataResult?: SearchResultDescriptor | undefined, withMetadata?: boolean, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean, refreshCache?: boolean): Promise<DcmtTypeDescriptor | undefined>;
29
+ static RemoveAllWithMetadata(tmSession?: ITopMediaSession | undefined): void;
30
+ private static RemoveWithMetadata;
31
+ static GetFromQdAsync(qd: QueryDescriptor | undefined, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean, refreshCache?: boolean): Promise<DcmtTypeDescriptor[]>;
32
+ static GetFromTIDsAsync(tids: number[] | undefined, withMetadata?: boolean, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean, refreshCache?: boolean): Promise<DcmtTypeDescriptor[]>;
33
+ static GetCache(cacheWithoutMetadata: boolean): Map<string, DcmtTypeDescriptor[]>;
34
+ static CacheCount(useCacheWithoutMetadata: boolean, accessFilter?: AccessFilter, tmSession?: ITopMediaSession | undefined): number;
35
+ }
36
+ export declare class RelationCacheService {
37
+ private static readonly _mutex;
38
+ private static readonly _cacheAllRelation;
39
+ static GetAllAsync(tmSession?: ITopMediaSession | undefined, deepCopy?: boolean, refreshCache?: boolean): Promise<RelationDescriptor[]>;
40
+ static RemoveAll(tmSession?: ITopMediaSession | undefined): void;
41
+ static CacheAllCount(tmSession?: ITopMediaSession | undefined): number;
42
+ }
43
+ export declare class SavedQueryCacheService {
44
+ private static _mutex;
45
+ private static _cacheAll;
46
+ private static _cache;
47
+ static GetAllAsync(tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<SavedQueryDescriptor[]>;
48
+ static GetAsync(id: number | undefined, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<SavedQueryDescriptor | undefined>;
49
+ static RemoveAll(tmSession?: ITopMediaSession | undefined): void;
50
+ static Remove(tmSession?: ITopMediaSession | undefined): void;
51
+ static CacheAllCount(tmSession?: ITopMediaSession | undefined): number;
52
+ }
53
+ export declare class DossierCacheService {
54
+ private static readonly _mutex;
55
+ private static readonly _cacheAll;
56
+ private static readonly _cache;
57
+ private static getAccessToken;
58
+ static GetAllAsync(tmSession?: ITopMediaSession, deepCopy?: boolean): Promise<DossierDescriptor[]>;
59
+ static GetAsync(id?: number, tmSession?: ITopMediaSession, deepCopy?: boolean): Promise<DossierDescriptor | undefined>;
60
+ static RemoveAll(tmSession?: ITopMediaSession): void;
61
+ static Remove(tmSession?: ITopMediaSession): void;
62
+ static CacheAllCount(tmSession?: ITopMediaSession): number;
63
+ private static withLock;
64
+ private static cloneItems;
65
+ private static cloneItem;
66
+ }
67
+ export declare class WorkingGroupCacheService {
68
+ private static readonly _mutex;
69
+ private static readonly _cacheAll;
70
+ private static readonly _cache;
71
+ private static getAccessToken;
72
+ static GetAllAsync(tmSession?: ITopMediaSession, deepCopy?: boolean): Promise<WorkingGroupDescriptor[]>;
73
+ static GetAsync(id?: number, tmSession?: ITopMediaSession, deepCopy?: boolean): Promise<WorkingGroupDescriptor | undefined>;
74
+ static RemoveAll(tmSession?: ITopMediaSession): void;
75
+ static Remove(tmSession?: ITopMediaSession): void;
76
+ static CacheAllCount(tmSession?: ITopMediaSession): number;
77
+ private static withLock;
78
+ private static cloneItems;
79
+ private static cloneItem;
80
+ }
81
+ export declare class WorkflowCacheService {
82
+ private static readonly _mutex;
83
+ private static readonly _cache;
84
+ static GetWFInfoAsync(VID: number | undefined, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<WFDescriptor | undefined>;
85
+ static RemoveWFInfo(tmSession?: ITopMediaSession | undefined): void;
86
+ static CacheCount(tmSession?: ITopMediaSession | undefined): number;
87
+ }
88
+ export declare class SignCertCacheService {
89
+ private static _mutex;
90
+ private static _cacheAll;
91
+ private static _cache;
92
+ static GetAllAsync(tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<SignCertDescriptor[]>;
93
+ static GetAsync(id: number | undefined, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<SignCertDescriptor | undefined>;
94
+ static RemoveAll(tmSession?: ITopMediaSession | undefined): void;
95
+ static Remove(tmSession?: ITopMediaSession | undefined): void;
96
+ }
97
+ export declare class TreeCacheService {
98
+ private static _mutex;
99
+ private static _cacheAllSearch;
100
+ private static _cacheAllArchive;
101
+ static GetAllSearchAsync(tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<TreeDescriptor[]>;
102
+ static GetAllArchiveAsync(tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<TreeDescriptor[]>;
103
+ static RemoveAllSearch(tmSession?: ITopMediaSession | undefined): void;
104
+ static RemoveAllArchive(tmSession?: ITopMediaSession | undefined): void;
105
+ static CacheAllSearchCount(tmSession?: ITopMediaSession | undefined): number;
106
+ static CacheAllArchiveCount(tmSession?: ITopMediaSession | undefined): number;
107
+ }
108
+ export declare class TSACacheService {
109
+ private static _mutex;
110
+ private static _cacheAll;
111
+ private static _cache;
112
+ static GetAllAsync(tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<TSADescriptor[]>;
113
+ static GetAsync(id: number | undefined, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<TSADescriptor | undefined>;
114
+ static RemoveAll(tmSession?: ITopMediaSession | undefined): void;
115
+ static Remove(tmSession?: ITopMediaSession | undefined): void;
116
+ }
117
+ export declare class UserListCacheService {
118
+ private static _mutex;
119
+ private static _cache;
120
+ static GetAllAsync(tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<UserDescriptor[]>;
121
+ static GetAsync(userId: number | undefined, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<UserDescriptor | undefined>;
122
+ static RemoveAll(tmSession?: ITopMediaSession | undefined): void;
123
+ }
@@ -0,0 +1,36 @@
1
+ import { ITopMediaSession } from "../TopMediaSession";
2
+ import { AppModules, DBBrands, LicenseDescriptor, SearchResultDescriptor } from "../openAPIs/TopMediaServiceClient";
3
+ export declare class SDK_Globals {
4
+ private static _tmSession;
5
+ private static _appModule;
6
+ private static _appVersion;
7
+ private static _sdkVersion;
8
+ private static _sdkuiVersion;
9
+ private static _sdkName;
10
+ private static _sdkuiName;
11
+ private static _websdkVersion;
12
+ private static _useLocalizedName;
13
+ private static _dbBrand;
14
+ private static _license;
15
+ static get tmSession(): ITopMediaSession | undefined;
16
+ static set tmSession(theTmSession: ITopMediaSession | undefined);
17
+ static get appModule(): AppModules | undefined;
18
+ static set appModule(theAppModule: AppModules | undefined);
19
+ static get appVersion(): string | undefined;
20
+ static set appVersion(theAppVersion: string | undefined);
21
+ static get dbBrand(): DBBrands;
22
+ static get sdkVersion(): string | undefined;
23
+ static set sdkVersion(theSdkVersion: string | undefined);
24
+ static get sdkuiVersion(): string | undefined;
25
+ static set sdkuiVersion(theSdkuiVersion: string | undefined);
26
+ static get sdkName(): string | undefined;
27
+ static set sdkName(theSdkName: string | undefined);
28
+ static get sdkuiName(): string | undefined;
29
+ static set sdkuiName(theSdkuiName: string | undefined);
30
+ static get websdkVersion(): string | undefined;
31
+ static get useLocalizedName(): boolean;
32
+ static set useLocalizedName(theUseLocalizedName: boolean);
33
+ static get license(): LicenseDescriptor | undefined;
34
+ static set license(theLicense: LicenseDescriptor | undefined);
35
+ static currentWorkflowApproveData: SearchResultDescriptor[];
36
+ }
@@ -0,0 +1,132 @@
1
+ import { CultureIDs } from "../openAPIs/TopMediaServiceClient";
2
+ export declare class SDK_Localizator {
3
+ private static _cultureID?;
4
+ static setLanguage(cultureID: CultureIDs | undefined): void;
5
+ static toCaseWord(word: string): string;
6
+ static get Area(): "Supportbereiche" | "Support area" | "Área de apoyo" | "Zone de support" | "Área de apoio" | "Area di appoggio";
7
+ static get Areas(): "Supportbereiche" | "Support areas" | "Áreas de apoyo" | "Zones de support" | "Áreas de apoio" | "Aree di appoggio";
8
+ static get BasketType(): "Behältertypen" | "Basket types" | "Tipo de tanque" | "Type de réservoir" | "Tanque tipos" | "Tipo serbatoio";
9
+ static get BasketTypes(): "Behältertypen" | "Basket types" | "Tipos de tanque" | "Types de réservoir" | "Tanques tipos" | "Tipi serbatoio";
10
+ static get DataFileName(): "Name der Datendatei" | "Data file name" | "Nombre del archivo de datos" | "Nom du fichier des données" | "Nome do arquivo de dados" | "Nome del file di dati";
11
+ static get DataList(): "Datenliste" | "Data list" | "Lista de datos" | "Liste de données" | "Listar dados" | "Lista dati";
12
+ static get DataLists(): "Datenlisten" | "Data lists" | "Listas datos" | "Liste de donnée" | "Listas dados" | "Liste dati";
13
+ static get DcmtType(): "Dokumententyp" | "Document type" | "Tipo de documento" | "Type de document" | "Tipo documento";
14
+ static get DcmtTypeFrom(): "Hauptdokumenttyp" | "Main document type" | "Tipo de documento principal" | "Type document principal" | "Tipo documento principale";
15
+ static get DcmtTypes(): "Dokumenttypen" | "Document types" | "Tipos documento" | "Types de document" | "Tipo de Documento" | "Tipi documento";
16
+ static get Disk(): "Disk" | "Disc" | "Disco" | "Disque";
17
+ static get Disks(): "Discs" | "Disks" | "Discos" | "Disques" | "Dischi";
18
+ static get Filters(): "Filter" | "Filters" | "Filtros" | "Filtres" | "Filtri";
19
+ static get Group(): "Group" | "Gruppe" | "Grupo" | "Groupe" | "Gruppo";
20
+ static get Groups(): "Gruppen" | "Groups" | "Grupos" | "Groupes" | "Gruppi";
21
+ static get InputFolder(): "Ursprungsordner" | "Source folder" | "Carpeta origen" | "Dossier source" | "Pasta de origem" | "Cartella origine";
22
+ static get InvalidName(): "Ungültiger Name. Die Namen können die folgenden Zeichen enthalten: / : * ?" | "Invalid name. Names cannot contain the following characters: / : * ?" | "Nombre no válido. Los nombres no pueden contener los siguientes caracteres: / : * ?" | "Nom pas valide. Les noms ne pauvent avoir les suivant caractères: / : * ?" | "Nome inválido. Os nomes não podem conter os seguintes caracteres: / : * ?" | "Nome non valido. I nomi non possono contenere i seguenti caratteri: / : * ?";
23
+ static get Job(): "Job" | "Arbeit" | "Trabajo" | "Travail" | "Trabalho" | "Lavoro";
24
+ static get Jobs(): "Arbeiten" | "Jobs" | "Trabajos" | "Travaux" | "Trabalhos" | "Lavori";
25
+ static get ListDcmtTypeOrView(): "Dokumenttypen / Ansichten" | "Dcmt types/ Views" | "Tipos de documentos / vistas" | "Types de documents / vues" | "Tipos de documentos / visualizações" | "Tipi documento/viste";
26
+ static get LDAP(): "LDAP-Server" | "LDAP Server" | "Servidor LDAP" | "Serveur LDAP" | "Server LDAP";
27
+ static get LDAPs(): "LDAP-Server" | "Servidor LDAP" | "Server LDAP" | "LDAP Servers" | "Servidores LDAP" | "Serveurs LDAP";
28
+ static get Metadata(): "Metadata" | "Methadaten" | "Metadato" | "Métadonnée" | "Metadados";
29
+ static get Metadatas(): "Metadata" | "Methadaten" | "Metadados" | "Metadatos" | "Métadonnées" | "Metadati";
30
+ static get MetadataNotAvailable(): "Der Methadat '{{0}}' [tid: '{{1}}'] ist nicht verfügbar" | "The metadata '{{0}}' [tid: '{{1}}'] is not available" | "El metadato '{{0}}' [tid: '{{1}}'] no está disponible" | "Les métadonnées '{{0}}' [tid: '{{1}}'] ne sont pas disponibles" | "Os metadados '{{0}}' [tid: '{{1}}'] não está disponível" | "Il metadato '{{0}}' [tid: '{{1}}'] non è disponibile";
31
+ static get None(): "None" | "Niemand" | "Ninguno" | "Aucun" | "Nenhum" | "Nessuno";
32
+ static get Numerator(): "Zähler" | "Counter" | "Numerador" | "Numerateur" | "Numeratore";
33
+ static get Numerators(): "Zähler" | "Counters" | "Numeradores" | "Numerateurs" | "Numeratori";
34
+ static get Process(): "Prozess" | "Processes" | "Proceso" | "Processus" | "Processo";
35
+ static get Processes(): "Processes" | "Processus" | "Prozesse" | "Procesos" | "Processos" | "Processi";
36
+ static get Query(): "Query" | "Anfrage" | "Consulta";
37
+ static get QueryFunction_Max(): "Max" | "Höchstwert" | "Máximo" | "Massimo";
38
+ static get QueryFunction_Min(): "Min" | "Mindestwert" | "Mínimo" | "Minimo";
39
+ static get QueryFunction_None(): "None" | "Niemand" | "Aucun" | "Ninguna" | "Não" | "Nessuna";
40
+ static get QueryFunction_Sum(): "Sum" | "Summe" | "Suma" | "Somme" | "Soma" | "Somma";
41
+ static get QueryFromTIDUnavailable(): "Hauptdokumenttyp der Query nicht verfügbar (TID: {{0}})" | "Main document type of query unavailable (TID: {{0}})" | "Tipo de documento principal de consulta no disponible (TID: {{0}})" | "Type de document principal de la query n'est pas disponible! (TID: {{0}})" | "Digite o documento principal da query não está disponível (TID: {{0}})" | "Tipo documento principale della query non disponibile (TID: {{0}})";
42
+ static get QueryJoinRequired(): "Die Definition des Joins in der Query ist nicht vollständig (TID: {{0}})" | "The definition of the join in the query is not complete (TID: {{0}})" | "La definición de la unión en la consulta no está completa (TID: {{0}})" | "La définition de la jointure dans la query n'est pas terminée (TID: {{0}})" | "A definição da junção na consulta não foi concluída (TID: {{0}})" | "La definizione della join nella query non è completa (TID: {{0}})";
43
+ static get QueryJoinMIDUnavailable(): "Einige Methadaten in join in der Query sind nicht verfügbar (MIDs: {{0}})" | "Some metadata in the join in the query are not available (MIDs: {{0}})" | "Algunos metadatos en join en la consulta no están disponibles (MIDs: {{0}})" | "Certains métadonnée dans la jointure de la query ne sont pas disponibles (MIDs: {{0}})" | "Alguns metadados no participar da consulta eles não estão disponíveis! (MIDs: {{0}})" | "Alcuni metadati in join nella query non sono disponibili (MIDs: {{0}})";
44
+ static get QueryJoinMIDsInconsistent(): "Es wurden Join mit Methadaten mit nicht übereinstimmendem Datentyp definiert ({{0}} - {{1}})" | "Inconsistent metadata joins were defined ({{0}} - {{1}})" | "Se han definido join con metadatos con tipo de datos incongruentes ({{0}} - {{1}})" | "Ont été définis jointures de métadonnées incompatible avec le type de données ({{0}} - {{1}})" | "Foram definidos com metadados se juntar com o tipo de dados inconsistentes ({{0}} - {{1}})" | "Sono state definite join con metadati con tipo dati incongruenti ({{0}} - {{1}})";
45
+ static get QueryJoinTIDUnavailable(): "Einige Dokumenttypen in join in der Query sind nicht verfügbar! (TIDs: {{0}})" | "Some document types in the join in the query are not available (TIDs: {{0}})" | "Algunos tipos de documento en join en la consulta no están disponibles (TIDs: {{0}})" | "Certains types de documents dans la jointure de la query ne sont pas disponibles (TIDs: {{0}})" | "Alguns tipos de documentos no participar da consulta eles não estão disponíveis! (TIDs: {{0}})" | "Alcuni tipi documento in join nella query non sono disponibili (TIDs: {{0}})";
46
+ static get QueryJoinType_CrossJoin(): string;
47
+ static get QueryJoinType_FullJoin(): string;
48
+ static get QueryJoinType_InnerJoin(): string;
49
+ static get QueryJoinType_LeftJoin(): string;
50
+ static get QueryJoinType_RightJoin(): string;
51
+ static get QueryOper_BeginWith(): "Beginnend mit" | "Begins with" | "Comienza por" | "Commence pour" | "Começa" | "Inizia per";
52
+ static get QueryOper_BetweenExclusive(): string;
53
+ static get QueryOper_BetweenInclusive(): string;
54
+ static get QueryOper_Contain(): "Enthält" | "Contains" | "Contiene" | "Contient" | "Contém";
55
+ static get QueryOper_Custom(): "Custom" | "Individuell gestaltet" | "Personalizado" | "Personnalisé" | "Personalizzato";
56
+ static get QueryOper_EndWith(): "Endet mit" | "Ends with" | "Termina por" | "Termine pour" | "Termina com" | "Termina per";
57
+ static get QueryOper_Equal(): "Gleich" | "Equals" | "Igual" | "Egal" | "Uguale";
58
+ static get QueryOper_Greater(): "höher" | "Greater than" | "Mayor" | "Plus grand que" | "Maior que" | "Maggiore";
59
+ static get QueryOper_GreaterOrEqual(): "Höher gleich" | "Greater than equal" | "Mayor que" | "Plus grand ou égal à" | "Maior e igual a" | "Maggiore uguale";
60
+ static get Into(): "In" | "It's In" | "En" | "Dans" | "Està contido";
61
+ static get QueryOper_IsNotNull(): "Es ist nicht ungültig" | "It's not null" | "No es nulo" | "N'est pas nul" | "Não è nulo" | "Non è nullo";
62
+ static get QueryOper_IsNull(): "Es ist ungültig" | "Is null" | "Es nulo" | "Est nul" | "E' nulo" | "E' nullo";
63
+ static get QueryOper_LastXDays(): "Die letzten … Tage" | "Previous X days" | "Últimos X días" | "Les derniers X jours" | "Últimos X dias" | "Ultimi X giorni";
64
+ static get QueryOper_LastXHours(): "Die letzten … Stunden" | "Previous X hours" | "Últimas X horas" | "Les dernières X heures" | "Ultime X ore";
65
+ static get QueryOper_LastXMonths(): "Die letzten … Monate" | "Previous X months" | "Últimos X meses" | "Les derniers X mois" | "Últimos X mês" | "Ultimi X mesi";
66
+ static get QueryOper_LastXWeeks(): "Die letzten … Wochen" | "Previous X weeks" | "Últimas X semanas" | "Les dernières X semaines" | "Ultime X settimane";
67
+ static get QueryOper_LastXYears(): "Die letzten … Jahre" | "Previous X years" | "Últimos X años" | "Les dernières X années" | "Últimos X anos" | "Ultimi X anni";
68
+ static get QueryOper_Less(): "Weniger" | "Less than" | "Menor" | "Plus petit que" | "Menor que" | "Minore";
69
+ static get QueryOper_LessOrEqual(): "Weniger gleich" | "Less than equal" | "Menor igual" | "Plus petit ou égal à" | "Menor e igual a" | "Minore uguale";
70
+ static get QueryOper_Like(): "Like" | "ähnlich" | "Similar" | "Semblable" | "Como" | "Simile";
71
+ static get QueryOper_NextMonth(): "Nächsten Monat" | "Next month" | "El próximo mes" | "Mois prochain" | "Próximo mês" | "Il prossimo mese";
72
+ static get QueryOper_NextWeek(): "Nächste Woche" | "Next week" | "La próxima semana" | "La semaine prochaine" | "Próxima semana" | "La prossima settimana";
73
+ static get QueryOper_NextXDays(): "Die nächsten … Tage" | "Next X days" | "Próximos X días" | "Les prochains X jours" | "X dias seguintes" | "Prossimi X giorni";
74
+ static get QueryOper_NextXHours(): "Die nächsten … Stunden" | "Next X hours" | "Próximas X horas" | "Les prochaines X heures" | "X horas seguintes" | "Prossime X ore";
75
+ static get QueryOper_NextXMonths(): "Die nächsten … Monate" | "Next X months" | "Próximos X meses" | "Les prochaines X mois" | "X mês seguintes" | "Prossimi X mesi";
76
+ static get QueryOper_NextXWeeks(): "Die nächsten … Wochen" | "Next X weeks" | "Próximas X semanas" | "Les prochaines X semaines" | "X semanas seguintes" | "Prossime X settimane";
77
+ static get QueryOper_NextXYears(): "Die nächsten … Jahre" | "Next X years" | "Próximos X años" | "Les prochaines X années" | "X anos seguintes" | "Prossimi X anni";
78
+ static get QueryOper_NextYear(): "Nächstes Jahr" | "Next year" | "El próximo año" | "L'année prochaine" | "Próximo ano" | "Il prossimo anno";
79
+ static get QueryOper_NotBeginWith(): "Beginnt nicht mit" | "Doesn't begin with" | "No comienza por" | "Ne commence pas pour" | "Não começa com" | "Non inizia per";
80
+ static get QueryOper_NotContain(): "Enthält nicht" | "Doesn't contain" | "No contiene" | "Ne contient pas" | "Não contém" | "Non contiene";
81
+ static get QueryOper_NotEndWith(): "Endet nicht mit" | "Doesn't end with" | "No termina por" | "Ne termine pas pour" | "Não termina com" | "Non termina per";
82
+ static get QueryOper_NotEqual(): "Nicht gleich" | "Not Equal" | "No igual" | "Pas égal" | "Diferente" | "Non uguale";
83
+ static get QueryOper_NotIn(): "Nicht in" | "Not In" | "No en" | "Pas dans" | "Não està contido" | "Non in";
84
+ static get QueryOper_NotLike(): "Nicht ähnlich" | "Not like" | "No similar" | "Pas semblable" | "Diferente de" | "Non simile";
85
+ static get QueryOper_OutsideExclusive(): "(x < a) o (x > b)" | "(x < a) or (x > b)";
86
+ static get QueryOper_OutsideInclusive(): "(x <= a) o (x >= b)" | "(x <= a) or (x >= b)";
87
+ static get QueryOper_PreviousMonth(): "Letzter Monat" | "Last month" | "El mes pasado" | "Mois dernier" | "Mês passado" | "Il mese scorso";
88
+ static get QueryOper_PreviousWeek(): "Letzte Woche" | "Last week" | "La semana pasada" | "La semaine dernière" | "Semana passada" | "La settimana scorsa";
89
+ static get QueryOper_PreviousYear(): "Letztes Jahr" | "Last year" | "El año pasado" | "L'année dernière" | "Ano passado" | "L'anno scorso";
90
+ static get QueryOper_ThisMonth(): "Diesen Monat" | "This month" | "Este mes" | "Ce mois-ci" | "Este mês" | "Questo mese";
91
+ static get QueryOper_ThisWeek(): "Diese Woche" | "This week" | "Esta semana" | "Cette semaine" | "Questa settimana";
92
+ static get QueryOper_ThisYear(): "Dieses Jahr" | "This year" | "Este año" | "Cette année" | "Este ano" | "Quest'anno";
93
+ static get QueryOper_Today(): "Today" | "Heute" | "Hoy" | "Aujourd'hui" | "Hoje" | "Oggi";
94
+ static get QueryOper_Tomorrow(): "Tomorrow" | "Morgen" | "Mañana" | "Demain" | "Amanhã" | "Domani";
95
+ static get QueryOper_Yesterday(): "Yesterday" | "gestern" | "Ayer" | "Hier" | "Ontem" | "Ieri";
96
+ static get QueryOrderByDuplicate(): "In der Anordnung mehrere Male aufgeführte Methadaten" | "Metadata specified more than once in the query sorting statement" | "Metadatos especificados varias veces en el orden de consulta" | "Il y a des métadonnées spécifié plusieurs fois dans l'ordre de la query" | "Metadados especificado várias vezes em da consulta" | "Metadati specificati più volte nell'ordinamento della query";
97
+ static get QuerySelectFunction(): "Nicht alle Methadaten wurden in einer Aggregationsfunktion definiert" | "Not all metadata are defined in a grouping function" | "No todos los metadatos se definen en una función de agregación" | "Pas toutes les métadonnées est défini dans une fonction d'agrégation" | "Nem todos os metadados é definida em uma função agregada" | "Non tutti i metadati sono definiti in una funzione di aggregazione";
98
+ static get QuerySelectFunctionSum(): "Funktion 'Summe' - verfügbar nur für numerische Methadaten (MID: {{0}})" | "Function 'Sum' is available for numeric metadata only (MID: {{0}})" | "Función 'Suma' disponible solo para metadatos numéricos (MID: {{0}})" | "La fonction 'Montant' est disponible uniquement pour les métadonnées numériques (MID: {{0}})" | "Função 'Soma' disponível apenas para metadados numérico (MID: {{0}})" | "Funzione 'Somma' disponibile solo per metadati numerici (MID: {{0}})";
99
+ static get QueryWhereBrackets(): "Die Zahl der offenen Klammern ({{0}}) entspricht nicht der Zahl der geschlossenen Klammern ({{1}})" | "The number of open brackets ({{0}}) does not match the number of closed ones ({{1}})" | "El número de paréntesis abiertos ({{0}}) no corresponde con el número de paréntesis cerrados ({{1}})" | "Le nombre de parenthèses ouvertes ({{0}}) ne correspond pas au nombre de parenthèses de fermeture ({{1}})" | "O número de parênteses abertos ({{0}}) não corresponde ao número de parênteses fechados ({{1}})" | "Il numero di parentesi aperte ({{0}}) non corrisponde al numero di parentesi chiuse ({{1}})";
100
+ static get QueryWhereNoValues(): "Nicht alle Filter werden korrekt aufgewertet" | "Not all filters in the query are correctly filled" | "No todos los filtros en la consulta se valoran correctamente" | "Pas tous les filtres de la query sont correctement évalués" | "Nem todos os filtros na consulta são valorizados adequadamente" | "Non tutti i filtri della query sono valorizzati correttamente";
101
+ static get Query_EnterAlias(): "Geben Sie einen Alias ​​ein" | "Enter an alias" | "Introducir un alias" | "Entrez un alias" | "Digite um nome de alias" | "Inserire un alias";
102
+ static get QueryDistinct(): "Unverwechselbar" | "Distinct";
103
+ static get QueryFROMDcmtTypeNoOnlyMetadata(): "Eingestelltes Query im Dokumententyp mit ausschließlich Methadaten" | "Query set to type documents only metadata" | "Consulta configurada en tipo de documentos solo de metadatos" | "Query crée sur un type document de seules métadonnées" | "Query definidas com o tipo de documentos apenas metadados" | "Query impostata su tipo documenti di soli metadati";
104
+ static get QueryNotDefined(): "Query nicht" | "Query is not defined" | "Consulta no definida" | "Query pas défini" | "Query não definida" | "Query non definita";
105
+ static get QueryOrderBy(): "Reihenfolge" | "Order by" | "Orden" | "Ordre" | "Ordenação" | "Ordinamento";
106
+ static get QueryOrderByDistinct(): "Sortiermetadaten müssen Teil der Ausgabemetadaten sein, wenn die DISTINCT angegeben ist" | "Sort metadata must be part of the output metadata if the DISTINCT clause is specified" | "Los metadatos de clasificación deben formar parte de los metadatos de salida si se especifica la función DISTINCT" | "Les métadonnées de tri doivent faire partie des métadonnées de sortie si la fonction DISTINCT est spécifiée" | "Os metadados de classificação devem estar entre os metadados de saída se a função DISTINCT for especificada" | "Il metadato dell'ordinamento dev'essere tra i metadati di output se la funzione DISTINCT è specificata";
107
+ static get QuerySelect(): string;
108
+ static get QueryWhere(): "Filter" | "Filters" | "Filtros" | "Filtres" | "Filtri";
109
+ static get RequiredField(): "Pflichtfeld" | "Required field" | "Campo obligatorio" | "Champ obligatoire" | "Campo obrigatório" | "Campo obbligatorio";
110
+ static get RequiredStrictlyPositiveNumber(): "Ein positiver numerischer Wert ist erforderlich" | "A positive numeric value is required" | "Se requiere un valor numérico positivo" | "Une valeur numérique positive est requise" | "Um valor numérico positivo é obrigatório" | "E' richiesto un numerico positivo";
111
+ static get RequiredNotEqualZeroNumberValidator(): "Ein anderer Wert als 0 ist erforderlich" | "A value other than 0 is required" | "Se requiere un valor distinto de 0" | "Une valeur autre que 0 est requise" | "Um valor diferente de 0 é obrigatório" | "E' richiesto un valore diverso da 0";
112
+ static get Relation(): "Relation" | "Korrelation" | "Correlation" | "Correlación" | "Correlação" | "Correlazione";
113
+ static get Relations(): "Korrelationen" | "Correlations" | "Correlaciones" | "Relations" | "Correlacionados" | "Correlazioni";
114
+ static get SavedQuery(): "Schnellsuche" | "Quick search" | "Búsqueda rápida" | "Recherche rapide" | "Pesquisa rápida" | "Ricerca rapida";
115
+ static get SAPLogin(): "SAP-Anmeldung" | "Login SAP";
116
+ static get SavedQueries(): "Schnellsuche" | "Quick searches" | "Búsquedas rápidas" | "Recherches rapides" | "Pesquisa rápidas" | "Ricerche rapide";
117
+ static get Separator(): "Trenner" | "Separator" | "Separador" | "Séparateur" | "Separatore";
118
+ static get SignCert(): "Unterschriftzertifikat" | "Signature certificate" | "Certificado de firma" | "Certificat de signature" | "Certificado de assinatura" | "Certificato di firma";
119
+ static get SignCerts(): "Signaturzertifikate" | "Signature certificates" | "Certificados de firma" | "Certificats de signature" | "Certificados de assinatura" | "Certificati di firma";
120
+ static get SignServer(): "Signaturserver" | "Signature server" | "Servidor de firma" | "Serveurs de signature" | "Servidor assinatura" | "Server di firma";
121
+ static get Tree(): "Tree" | "Baum" | "Árbol" | "Arbre" | "Arvore" | "Albero";
122
+ static get Trees(): "Bäume" | "Trees" | "Árboles" | "Arbres" | "Arvores" | "Alberi";
123
+ static get TSA(): "Server vorübergehende Marke" | "Timestamp server" | "Servidor de marca temporal" | "Serveur d'horodatage" | "Timestamp servidor" | "Server di marca temporale";
124
+ static get TSAs(): "Server vorübergehende Marke" | "Timestamp server" | "Servidor de marca temporal" | "Timestamp servidor" | "Server di marca temporale" | "Serveurs d'horodatage";
125
+ static get User(): "User" | "Nutzer" | "Usuario" | "Utilisateur" | "Usuário" | "Utente";
126
+ static get Users(): "Nutzer" | "Users" | "Usuarios" | "Utilisateurs" | "Usuários" | "Utenti";
127
+ static get Validate_General_NullOrEmptyField(): "Feld nicht aufgewertet" | "Empty field" | "Campo no valorado" | "Propriété n' a pas donnés" | "Campo não reforçado" | "Campo non valorizzato";
128
+ static get ValueNotAllowed(): "Wert nicht zulässig" | "Value not allowed" | "Valor no permitido" | "Valeur non autorisée" | "Valor não permitido" | "Valore non ammesso";
129
+ static get ValueNotValid(): "Ungültiger Wert" | "Invalid value" | "Valor no válido" | "Valeur pas valide" | "Valor inválido" | "Valore non valido";
130
+ static get View(): "View" | "Ansicht" | "Vista" | "Vue";
131
+ static get Views(): "Ansichten" | "Views" | "Vistas" | "Vues" | "Viste";
132
+ }
@@ -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";