@topconsultnpm/sdk-ts 6.21.0-dev5.1 → 6.21.0-dev5.3
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/types/Engine.d.ts
CHANGED
|
@@ -90,8 +90,8 @@ export declare class CaseFlowTemplateEngine extends BaseEngine implements ICaseF
|
|
|
90
90
|
static NewCaseFlowTemplateDescriptor(): CaseFlowTemplateDescriptor | undefined;
|
|
91
91
|
private static Normalize;
|
|
92
92
|
CreateAsync(d: CaseFlowTemplateDescriptor): Promise<number | undefined>;
|
|
93
|
-
RetrieveAdminAsync(id: number): Promise<
|
|
94
|
-
RetrieveAllAdminAsync(): Promise<
|
|
93
|
+
RetrieveAdminAsync(id: number): Promise<CaseFlowTemplateDescriptor>;
|
|
94
|
+
RetrieveAllAdminAsync(): Promise<CaseFlowTemplateDescriptor[]>;
|
|
95
95
|
RetrieveAsync(id: number): Promise<CaseFlowTemplateDescriptor | undefined>;
|
|
96
96
|
RetrieveAllAsync(): Promise<CaseFlowTemplateDescriptor[] | undefined>;
|
|
97
97
|
UpdateAsync(d: CaseFlowTemplateDescriptor): Promise<number | undefined>;
|
|
@@ -1433,6 +1433,14 @@ export declare enum AccessLevelsEx {
|
|
|
1433
1433
|
export declare class DocumentOperation {
|
|
1434
1434
|
operationType?: DocumentOperations;
|
|
1435
1435
|
order?: number;
|
|
1436
|
+
theFillFieldsOperation?: FillFieldsOperation;
|
|
1437
|
+
theFillTableOperation?: FillTableOperation;
|
|
1438
|
+
theHeaderFooterOperation?: HeaderFooterOperation;
|
|
1439
|
+
theMergeDocumentsOperation?: MergeDocumentsOperation;
|
|
1440
|
+
theRasterizeElementsOperation?: RasterizeElementsOperation;
|
|
1441
|
+
theConvertToPdfOperation?: ConvertToPdfOperation;
|
|
1442
|
+
theAddDigitalSignatureFieldOperation?: AddDigitalSignatureFieldOperation;
|
|
1443
|
+
theApplyLetterheadOperation?: ApplyLetterheadOperation;
|
|
1436
1444
|
init(_data?: any): void;
|
|
1437
1445
|
static fromJS(data: any): DocumentOperation;
|
|
1438
1446
|
toJSON(data?: any): any;
|
|
@@ -1926,6 +1934,7 @@ export declare enum CDPSearchModes {
|
|
|
1926
1934
|
Aggregata = "Aggregata"
|
|
1927
1935
|
}
|
|
1928
1936
|
export declare enum CF_AssigneeTypes {
|
|
1937
|
+
None = "None",
|
|
1929
1938
|
User = "User",
|
|
1930
1939
|
Group = "Group",
|
|
1931
1940
|
Metadata = "Metadata",
|
|
@@ -1971,11 +1980,14 @@ export declare enum CF_States {
|
|
|
1971
1980
|
Rejected = "Rejected"
|
|
1972
1981
|
}
|
|
1973
1982
|
export declare enum CF_WorkItemCategories {
|
|
1983
|
+
None = "None",
|
|
1984
|
+
Generic = "Generic",
|
|
1974
1985
|
Approval = "Approval",
|
|
1975
1986
|
Signature = "Signature",
|
|
1976
1987
|
MoreInfo = "MoreInfo",
|
|
1977
1988
|
Acknowledgment = "Acknowledgment",
|
|
1978
|
-
DataCompletion = "DataCompletion"
|
|
1989
|
+
DataCompletion = "DataCompletion",
|
|
1990
|
+
Upload = "Upload"
|
|
1979
1991
|
}
|
|
1980
1992
|
export declare enum CF_WorkItemStates {
|
|
1981
1993
|
Pending = "Pending",
|
|
@@ -2045,17 +2057,11 @@ export declare class CaseFlowAssigneeDescriptor {
|
|
|
2045
2057
|
toJSON(data?: any): any;
|
|
2046
2058
|
}
|
|
2047
2059
|
export declare class CaseFlowDcmt {
|
|
2048
|
-
id?: number;
|
|
2049
2060
|
tid?: number;
|
|
2050
2061
|
did?: number;
|
|
2051
|
-
name?: string | undefined;
|
|
2052
|
-
fileExt?: string | undefined;
|
|
2053
|
-
state?: CF_States;
|
|
2054
|
-
required?: boolean;
|
|
2055
2062
|
min?: number;
|
|
2056
2063
|
max?: number;
|
|
2057
|
-
|
|
2058
|
-
archivedDate?: Date | undefined;
|
|
2064
|
+
creationTime?: Date | undefined;
|
|
2059
2065
|
init(_data?: any): void;
|
|
2060
2066
|
static fromJS(data: any): CaseFlowDcmt;
|
|
2061
2067
|
toJSON(data?: any): any;
|
|
@@ -2086,7 +2092,6 @@ export declare class CaseFlowInstanceDescriptor extends OwnedDescriptor {
|
|
|
2086
2092
|
expirationWarningDays?: number;
|
|
2087
2093
|
isHist?: number;
|
|
2088
2094
|
newPosts?: number;
|
|
2089
|
-
flowMode?: CF_FlowModes;
|
|
2090
2095
|
actions?: CaseFlowAction[] | undefined;
|
|
2091
2096
|
dcmts?: CaseFlowDcmt[] | undefined;
|
|
2092
2097
|
blogPosts?: BlogPost[] | undefined;
|
|
@@ -2141,11 +2146,9 @@ export declare class CaseFlowTemplateDescriptor extends OwnedDescriptor {
|
|
|
2141
2146
|
dcmts?: CaseFlowDcmt[] | undefined;
|
|
2142
2147
|
stateDefinitions?: CaseFlowStateDefinition[] | undefined;
|
|
2143
2148
|
stateTransitionRules?: CaseFlowStateTransitionRule[] | undefined;
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
templateParticipants?: CaseFlowParticipant[] | undefined;
|
|
2148
|
-
templateActions?: CaseFlowAction[] | undefined;
|
|
2149
|
+
cover?: MetadataDescriptor[] | undefined;
|
|
2150
|
+
participants?: CaseFlowParticipant[] | undefined;
|
|
2151
|
+
actions?: CaseFlowAction[] | undefined;
|
|
2149
2152
|
init(_data?: any): void;
|
|
2150
2153
|
static fromJS(data: any): CaseFlowTemplateDescriptor;
|
|
2151
2154
|
toJSON(data?: any): any;
|
package/package.json
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name":
|
|
3
|
-
"version":
|
|
4
|
-
"description":
|
|
5
|
-
"main":
|
|
6
|
-
"types":
|
|
7
|
-
"scripts":
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"files":
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"dependencies":
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"author":
|
|
25
|
-
"license":
|
|
26
|
-
"devDependencies":
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
2
|
+
"name": "@topconsultnpm/sdk-ts",
|
|
3
|
+
"version": "6.21.0-dev5.3",
|
|
4
|
+
"description": "TopMedia SDK typescript",
|
|
5
|
+
"main": "dist/lib/index.js",
|
|
6
|
+
"types": "dist/types/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "echo \"Error: no test specified\" \u0026\u0026 exit 1",
|
|
9
|
+
"tm-terser": "terser dist/lib/openAPIs/TopMediaServiceClient.js -c toplevel,passes=2 -m toplevel -o dist/lib/openAPIs/TopMediaServiceClient.js",
|
|
10
|
+
"tm-build": "tsc \u0026\u0026 npm run tm-terser",
|
|
11
|
+
"tm-watch": "tsc -w",
|
|
12
|
+
"tm-publish": "npm publish --tag latest",
|
|
13
|
+
"tm-publish_wl": "npm publish"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/lib/**/*",
|
|
17
|
+
"dist/types/**/*"
|
|
18
|
+
],
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@azure/msal-browser": "^4.28.1",
|
|
21
|
+
"async-mutex": "^0.4.0",
|
|
22
|
+
"axios": "1.15.0"
|
|
23
|
+
},
|
|
24
|
+
"author": "TopConsult",
|
|
25
|
+
"license": "ISC",
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@types/node": "^18.11.18",
|
|
28
|
+
"terser": "^5.44.0",
|
|
29
|
+
"typescript": "^5.9.3"
|
|
30
|
+
}
|
|
31
|
+
}
|