@topconsultnpm/sdk-ts 6.20.0-dev1.5 → 6.20.0-dev1.7

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.
@@ -1845,6 +1845,11 @@ export declare enum BooleanExpressionParameterTypes {
1845
1845
  Int32 = "Int32",
1846
1846
  Decimal = "Decimal"
1847
1847
  }
1848
+ export declare enum CDPSearchModes {
1849
+ None = "None",
1850
+ Puntuale = "Puntuale",
1851
+ Aggregata = "Aggregata"
1852
+ }
1848
1853
  export declare class COSCheckerJobDescriptor extends JobDescriptor {
1849
1854
  checkExt?: number;
1850
1855
  checkMimeType?: number;
@@ -1877,16 +1882,15 @@ export declare class CassettoDoganaleJobDescriptor extends JobDescriptor {
1877
1882
  export declare class CassettoDoganalePlusJobDescriptor extends JobDescriptor {
1878
1883
  admUser?: string | undefined;
1879
1884
  admPsw?: string | undefined;
1880
- browser?: string | undefined;
1881
- exportMRN?: number;
1882
- exportMRNDaysBack?: number;
1883
- exportMRNOutputFile?: string | undefined;
1884
- exportVU?: number;
1885
- exportVUDaysBack?: number;
1886
- exportVUOutputPath?: string | undefined;
1887
- importMRN?: number;
1888
- importMRNDaysBack?: number;
1889
- importMRNOutputFile?: string | undefined;
1885
+ searchMode?: CDPSearchModes;
1886
+ vu?: number;
1887
+ euR1?: number;
1888
+ scope?: string | undefined;
1889
+ subjectType?: string | undefined;
1890
+ startDate?: Date | undefined;
1891
+ endDate?: Date | undefined;
1892
+ exportPath?: string | undefined;
1893
+ logFolder?: string | undefined;
1890
1894
  init(_data?: any): void;
1891
1895
  static fromJS(data: any): CassettoDoganalePlusJobDescriptor;
1892
1896
  toJSON(data?: any): any;
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@topconsultnpm/sdk-ts",
3
- "version": "6.20.0-dev1.5",
3
+ "version": "6.20.0-dev1.7",
4
4
  "description": "TopMedia SDK typescript",
5
5
  "main": "dist/lib/index.js",
6
6
  "types": "dist/types/index.d.ts",
7
7
  "scripts": {
8
- "test": "echo \"Error: no test specified\" \u0026\u0026 exit 1",
8
+ "test": "echo \"Error: no test specified\" && exit 1",
9
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",
10
+ "tm-build": "tsc && npm run tm-terser",
11
11
  "tm-watch": "tsc -w",
12
12
  "tm-publish": "npm publish --tag latest",
13
13
  "tm-publish_wl": "npm publish"
@@ -17,7 +17,7 @@
17
17
  "dist/types/**/*"
18
18
  ],
19
19
  "dependencies": {
20
- "@azure/msal-browser": "^3.6.0",
20
+ "@azure/msal-browser": "^4.28.1",
21
21
  "@babel/runtime": "^7.28.4",
22
22
  "async-mutex": "^0.4.0",
23
23
  "axios": "^1.7.2"
@@ -29,4 +29,4 @@
29
29
  "terser": "^5.44.0",
30
30
  "typescript": "^5.9.3"
31
31
  }
32
- }
32
+ }