aspose.cells 21.11.0 → 21.12.0

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/README.md CHANGED
@@ -16,12 +16,13 @@ Aspose.Cells for Node.js via Java is a scalable and feature-rich API to create,
16
16
  ## Read & Write Excel Files
17
17
  **Microsoft Excel:** XLS, XLSX, XLSB, XLTX, XLTM, XLSM, XML
18
18
  **OpenOffice:** ODS
19
- **Text:** CSV, Tab-Delimited, TXT
19
+ **Text:** CSV, Tab-Delimited, TXT, JSON
20
20
  **Web:** HTML, MHTML
21
21
 
22
22
  ## Save Excel Files As
23
23
  **Fixed Layout:** PDF, XPS
24
24
  **Images:** JPEG, PNG, BMP, SVG, TIFF, GIF, EMF
25
+ **Text:** CSV, Tab-Delimited, JSON, SQL, XML
25
26
 
26
27
  ## Getting Started with Aspose.Cells for Nodejs via Java
27
28
  ### Installation
@@ -10,7 +10,7 @@ java.asyncOptions = {
10
10
  asyncSuffix: "Async",
11
11
  syncSuffix: "",
12
12
  };
13
- java.classpath.push(__dirname + "/aspose-cells-21.11.jar");
13
+ java.classpath.push(__dirname + "/aspose-cells-21.12.jar");
14
14
  java.classpath.push(__dirname + "/bcprov-jdk15on-160.jar");
15
15
  java.classpath.push(__dirname + "/bcpkix-jdk15on-1.60.jar");
16
16
  java.classpath.push(__dirname + "/JavaClassBridge.jar");
@@ -1099,6 +1099,7 @@ exports.FileFormatType = {
1099
1099
  PPTM : 41,
1100
1100
  PPTX : 26,
1101
1101
  SPREADSHEET_ML : 15,
1102
+ SQL_SCRIPT : 514,
1102
1103
  SVG : 28,
1103
1104
  SXC : 60,
1104
1105
  TAB_DELIMITED : 11,
@@ -1559,6 +1560,7 @@ exports.LoadDataFilterOptions = {
1559
1560
  OLE_OBJECT : 268435456,
1560
1561
  PICTURE : 134217728,
1561
1562
  PIVOT_TABLE : 8192,
1563
+ REVISION : 536870912,
1562
1564
  SETTINGS : 1114112,
1563
1565
  SHAPE : 402653696,
1564
1566
  SHEET_DATA : 403701759,
@@ -1587,6 +1589,7 @@ exports.LoadFormat = {
1587
1589
  UNKNOWN : 255,
1588
1590
  XLSB : 16,
1589
1591
  XLSX : 6,
1592
+ XML : 51,
1590
1593
  },
1591
1594
  exports.LookAtType = {
1592
1595
  CONTAINS : 0,
@@ -2561,6 +2564,7 @@ exports.SaveFormat = {
2561
2564
  PNG : 262,
2562
2565
  PPTX : 61,
2563
2566
  SPREADSHEET_ML : 15,
2567
+ SQL_SCRIPT : 514,
2564
2568
  SVG : 28,
2565
2569
  SXC : 60,
2566
2570
  TAB_DELIMITED : 11,
@@ -2573,6 +2577,7 @@ exports.SaveFormat = {
2573
2577
  XLSX : 6,
2574
2578
  XLTM : 9,
2575
2579
  XLTX : 8,
2580
+ XML : 51,
2576
2581
  XPS : 20,
2577
2582
  },
2578
2583
  exports.SelectionType = {
@@ -2761,6 +2766,11 @@ exports.SqlDataType = {
2761
2766
  SQL_W_LONG_VARCHAR : -10,
2762
2767
  SQL_W_VARCHAR : -9,
2763
2768
  },
2769
+ exports.SqlScriptOperatorType = {
2770
+ DELETE : 2,
2771
+ INSERT : 0,
2772
+ UPDATE : 1,
2773
+ },
2764
2774
  exports.StyleModifyFlag = {
2765
2775
  ALIGNMENT_SETTINGS : 38,
2766
2776
  ALL : 0,
@@ -3290,6 +3300,8 @@ exports.SignatureLine = java.import("com.aspose.cells.SignatureLine");
3290
3300
  exports.SmartTagOptions = java.import("com.aspose.cells.SmartTagOptions");
3291
3301
  exports.SmartTagPropertyCollection = java.import("com.aspose.cells.SmartTagPropertyCollection");
3292
3302
  exports.SpreadsheetML2003SaveOptions = java.import("com.aspose.cells.SpreadsheetML2003SaveOptions");
3303
+ exports.SqlScriptColumnTypeMap = java.import("com.aspose.cells.SqlScriptColumnTypeMap");
3304
+ exports.SqlScriptSaveOptions = java.import("com.aspose.cells.SqlScriptSaveOptions");
3293
3305
  exports.Style = java.import("com.aspose.cells.Style");
3294
3306
  exports.StyleFlag = java.import("com.aspose.cells.StyleFlag");
3295
3307
  exports.SvgSaveOptions = java.import("com.aspose.cells.SvgSaveOptions");
@@ -3314,6 +3326,8 @@ exports.WriteProtection = java.import("com.aspose.cells.WriteProtection");
3314
3326
  exports.XlsbSaveOptions = java.import("com.aspose.cells.XlsbSaveOptions");
3315
3327
  exports.XlsSaveOptions = java.import("com.aspose.cells.XlsSaveOptions");
3316
3328
  exports.XmlColumnProperty = java.import("com.aspose.cells.XmlColumnProperty");
3329
+ exports.XmlLoadOptions = java.import("com.aspose.cells.XmlLoadOptions");
3330
+ exports.XmlSaveOptions = java.import("com.aspose.cells.XmlSaveOptions");
3317
3331
  exports.XpsSaveOptions = java.import("com.aspose.cells.XpsSaveOptions");
3318
3332
 
3319
3333
  exports.CellsHelper = java.import("com.aspose.cells.CellsHelper");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aspose.cells",
3
- "version": "21.11.0",
3
+ "version": "21.12.0",
4
4
  "description": "A powerful library for manipulating and converting Excel (XLS, XLSX, XLSB), ODS, CSV and HTML files.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -27,7 +27,9 @@
27
27
  "PPTX",
28
28
  "MHTML",
29
29
  "SVG",
30
- "JSON"
30
+ "JSON",
31
+ "SQL",
32
+ "XML"
31
33
  ],
32
34
  "author": "Aspose",
33
35
  "license": "End User License Agreement.html",