@topconsultnpm/sdk-ts 6.21.0-dev2.6 → 6.21.0-dev2.8
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.
|
@@ -121,9 +121,12 @@ export declare class TSACacheService {
|
|
|
121
121
|
export declare class UserListCacheService {
|
|
122
122
|
private static _mutex;
|
|
123
123
|
private static _cache;
|
|
124
|
+
private static _cacheAdmin;
|
|
124
125
|
static GetAllAsync(tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<UserDescriptor[]>;
|
|
125
126
|
static GetAsync(userId: number | undefined, tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<UserDescriptor | undefined>;
|
|
127
|
+
static GetAllAdminAsync(tmSession?: ITopMediaSession | undefined, deepCopy?: boolean): Promise<UserDescriptor[]>;
|
|
126
128
|
static RemoveAll(tmSession?: ITopMediaSession | undefined): void;
|
|
129
|
+
static RemoveAllAdmin(tmSession?: ITopMediaSession | undefined): void;
|
|
127
130
|
}
|
|
128
131
|
export declare class LayoutCacheService {
|
|
129
132
|
private static readonly _mutex;
|
|
@@ -4438,6 +4438,7 @@ export declare enum OcrCommandTypes {
|
|
|
4438
4438
|
RegEx = "RegEx",
|
|
4439
4439
|
RegExAndMerge = "RegExAndMerge",
|
|
4440
4440
|
RegExAndReplace = "RegExAndReplace",
|
|
4441
|
+
RegExAndJoin = "RegExAndJoin",
|
|
4441
4442
|
Trim = "Trim",
|
|
4442
4443
|
TrimAll = "TrimAll",
|
|
4443
4444
|
RemoveWhitespace = "RemoveWhitespace",
|
|
@@ -4458,9 +4459,6 @@ export declare enum OcrCommandTypes {
|
|
|
4458
4459
|
ParseDate = "ParseDate",
|
|
4459
4460
|
FormatDecimal = "FormatDecimal",
|
|
4460
4461
|
RemoveCurrency = "RemoveCurrency",
|
|
4461
|
-
NormalizeItalianTaxId = "NormalizeItalianTaxId",
|
|
4462
|
-
NormalizeCITES = "NormalizeCITES",
|
|
4463
|
-
ExtractInvoiceNumber = "ExtractInvoiceNumber",
|
|
4464
4462
|
Required = "Required"
|
|
4465
4463
|
}
|
|
4466
4464
|
export declare class OcrSixJobDescriptor extends JobDescriptor {
|