@topconsultnpm/sdk-ts 6.21.0-dev4.3 → 6.21.0-dev5.2
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.
|
@@ -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;
|
|
@@ -2045,17 +2053,11 @@ export declare class CaseFlowAssigneeDescriptor {
|
|
|
2045
2053
|
toJSON(data?: any): any;
|
|
2046
2054
|
}
|
|
2047
2055
|
export declare class CaseFlowDcmt {
|
|
2048
|
-
id?: number;
|
|
2049
2056
|
tid?: number;
|
|
2050
2057
|
did?: number;
|
|
2051
|
-
name?: string | undefined;
|
|
2052
|
-
fileExt?: string | undefined;
|
|
2053
|
-
state?: CF_States;
|
|
2054
|
-
required?: boolean;
|
|
2055
2058
|
min?: number;
|
|
2056
2059
|
max?: number;
|
|
2057
|
-
|
|
2058
|
-
archivedDate?: Date | undefined;
|
|
2060
|
+
creationTime?: Date | undefined;
|
|
2059
2061
|
init(_data?: any): void;
|
|
2060
2062
|
static fromJS(data: any): CaseFlowDcmt;
|
|
2061
2063
|
toJSON(data?: any): any;
|
|
@@ -2086,7 +2088,6 @@ export declare class CaseFlowInstanceDescriptor extends OwnedDescriptor {
|
|
|
2086
2088
|
expirationWarningDays?: number;
|
|
2087
2089
|
isHist?: number;
|
|
2088
2090
|
newPosts?: number;
|
|
2089
|
-
flowMode?: CF_FlowModes;
|
|
2090
2091
|
actions?: CaseFlowAction[] | undefined;
|
|
2091
2092
|
dcmts?: CaseFlowDcmt[] | undefined;
|
|
2092
2093
|
blogPosts?: BlogPost[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,32 +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
|
-
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}
|
|
2
|
+
"name": "@topconsultnpm/sdk-ts",
|
|
3
|
+
"version": "6.21.0-dev5.2",
|
|
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
|
+
}
|