@hpcc-js/marshaller 2.24.6 → 2.24.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/marshaller",
3
- "version": "2.24.6",
3
+ "version": "2.24.9",
4
4
  "description": "hpcc-js - Viz Marshaller",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es6",
@@ -33,25 +33,25 @@
33
33
  "build": "npm run compile-es6 && npm run bundle",
34
34
  "watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
35
35
  "stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
36
- "lint": "eslint src/**/*.ts",
36
+ "lint": "eslint ./src",
37
37
  "docs": "typedoc --options tdoptions.json .",
38
38
  "update": "npx npm-check-updates -u -t minor"
39
39
  },
40
40
  "dependencies": {
41
- "@hpcc-js/chart": "^2.76.1",
42
- "@hpcc-js/codemirror": "^2.59.1",
43
- "@hpcc-js/common": "^2.66.1",
44
- "@hpcc-js/comms": "^2.73.5",
45
- "@hpcc-js/composite": "^2.6.3",
46
- "@hpcc-js/ddl-shim": "^2.19.0",
47
- "@hpcc-js/dgrid": "^2.30.2",
48
- "@hpcc-js/form": "^2.9.1",
49
- "@hpcc-js/graph": "^2.79.2",
50
- "@hpcc-js/layout": "^2.47.2",
51
- "@hpcc-js/map": "^2.75.3",
52
- "@hpcc-js/other": "^2.14.2",
53
- "@hpcc-js/phosphor": "^2.15.3",
54
- "@hpcc-js/util": "^2.46.1"
41
+ "@hpcc-js/chart": "^2.77.0",
42
+ "@hpcc-js/codemirror": "^2.59.2",
43
+ "@hpcc-js/common": "^2.67.0",
44
+ "@hpcc-js/comms": "^2.74.0",
45
+ "@hpcc-js/composite": "^2.6.4",
46
+ "@hpcc-js/ddl-shim": "^2.19.1",
47
+ "@hpcc-js/dgrid": "^2.30.3",
48
+ "@hpcc-js/form": "^2.9.2",
49
+ "@hpcc-js/graph": "^2.79.5",
50
+ "@hpcc-js/layout": "^2.47.3",
51
+ "@hpcc-js/map": "^2.75.6",
52
+ "@hpcc-js/other": "^2.14.3",
53
+ "@hpcc-js/phosphor": "^2.15.4",
54
+ "@hpcc-js/util": "^2.46.2"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@hpcc-js/bundle": "^2.11.1",
@@ -73,5 +73,5 @@
73
73
  "url": "https://github.com/hpcc-systems/Visualization/issues"
74
74
  },
75
75
  "homepage": "https://github.com/hpcc-systems/Visualization",
76
- "gitHead": "1a0ca31a7d2d50f83116d780353a8c894e1d4797"
76
+ "gitHead": "bd452a4559c9e5790881521a332964eef36153b7"
77
77
  }
@@ -1,3 +1,3 @@
1
1
  export const PKG_NAME = "@hpcc-js/marshaller";
2
- export const PKG_VERSION = "2.24.6";
3
- export const BUILD_VERSION = "2.102.8";
2
+ export const PKG_VERSION = "2.24.9";
3
+ export const BUILD_VERSION = "2.102.11";
@@ -48,7 +48,7 @@ function hipieType2DBType(hipieType) {
48
48
  }
49
49
  }
50
50
  if ((window as any).__hpcc_debug) {
51
- console.log("unknown hipieType: " + hipieType);
51
+ console.warn("unknown hipieType: " + hipieType);
52
52
  }
53
53
  return "string";
54
54
  }
@@ -105,7 +105,9 @@ SourceMappings.prototype.getFields = function () {
105
105
  if (this.visualization.fields()) {
106
106
  return Object.keys(this.mappings).map(key => {
107
107
  const field = this.visualization.field(key);
108
- if (!field) console.log("Unknown mapping field: " + key);
108
+ if (!field) {
109
+ console.warn("Unknown mapping field: " + key);
110
+ }
109
111
  return new Database.Field(field.id())
110
112
  .type(field.jsType())
111
113
  .label(this.reverseMappings[field.id()])
@@ -130,7 +132,7 @@ SourceMappings.prototype.doMap = function (item) {
130
132
  }
131
133
  retVal[this.columnsIdx[key]] = val;
132
134
  } catch (e) {
133
- console.log("Invalid Mapping: " + this.visualization.id + " [" + rhsKey + "->" + item + "]");
135
+ console.warn("Invalid Mapping: " + this.visualization.id + " [" + rhsKey + "->" + item + "]");
134
136
  }
135
137
  }
136
138
  return retVal;
@@ -147,7 +149,7 @@ SourceMappings.prototype.doReverseMap = function (item) {
147
149
  }
148
150
  retVal[rhsKey] = val;
149
151
  } catch (e) {
150
- console.log("Invalid Mapping: " + this.visualization.id + " [" + key + "->" + item + "]");
152
+ console.warn("Invalid Mapping: " + this.visualization.id + " [" + key + "->" + item + "]");
151
153
  }
152
154
  }
153
155
  return retVal;
@@ -176,7 +178,7 @@ SourceMappings.prototype.hipieMapSortArray = function (sort) {
176
178
  }
177
179
  const fieldIdx = this.columnsRHS.indexOf(sortField);
178
180
  if (fieldIdx < 0) {
179
- console.log("SourceMappings.prototype.hipieMapSortArray: Invalid sort array - " + sortField);
181
+ console.warn("SourceMappings.prototype.hipieMapSortArray: Invalid sort array - " + sortField);
180
182
  }
181
183
  return {
182
184
  idx: fieldIdx,
@@ -283,7 +285,7 @@ TableMappings.prototype.doMapAll = function (data) {
283
285
  const fieldType = field.jsType();
284
286
  const colIdx = columnsRHSIdx[field.id()];
285
287
  if (colIdx === undefined) {
286
- console.log("Invalid Mapping: " + field.id());
288
+ console.warn("Invalid Mapping: " + field.id());
287
289
  } else {
288
290
  retVal = retVal.map((row) => {
289
291
  let cell = row[colIdx];
@@ -365,7 +367,7 @@ GraphMappings.prototype.calcIconInfo = function (flag, origItem, forAnnotation)
365
367
  break;
366
368
  default:
367
369
  if (forAnnotation && key.indexOf("icon_") === 0) { // Backward compatability
368
- console.log("Deprecated flag property: " + key);
370
+ console.warn("Deprecated flag property: " + key);
369
371
  retVal2[key.split("icon_")[1]] = struct[key];
370
372
  } else {
371
373
  retVal2[key] = struct[key];
@@ -473,7 +475,7 @@ function Source(this: any, visualization, source) {
473
475
  this._output = source.output;
474
476
  this.mappings = null;
475
477
  if (!source.mappings) {
476
- console.log("no mappings for:" + visualization.id + "->" + source.id);
478
+ console.warn("no mappings for:" + visualization.id + "->" + source.id);
477
479
  }
478
480
  switch (this.visualization.type) {
479
481
  case "LINE":
@@ -641,7 +643,7 @@ EventUpdate.prototype.calcRequestFor = function (visualization) {
641
643
  const inVizRequest = inVizUpdateObj.mapSelected();
642
644
  for (const key in inVizRequest) {
643
645
  if (retVal[key] && retVal[key] !== inVizRequest[key]) {
644
- console.log("Duplicate Filter with mismatched value (defaulting to 'first' or 'first changed' instance): " + key);
646
+ console.warn("Duplicate Filter with mismatched value (defaulting to 'first' or 'first changed' instance): " + key);
645
647
  if (changed) {
646
648
  retVal[key] = inVizRequest[key];
647
649
  retVal[key + _CHANGED] = changed;
@@ -948,7 +950,7 @@ export class Visualization extends Class {
948
950
  .projection("albersUsaPr")
949
951
  ;
950
952
  } catch (e) {
951
- console.log("Unexpected widget type: " + widget.classID());
953
+ console.warn("Unexpected widget type: " + widget.classID());
952
954
  }
953
955
  });
954
956
  break;
@@ -991,7 +993,7 @@ export class Visualization extends Class {
991
993
  break;
992
994
  }
993
995
  } catch (e) {
994
- console.log("Unexpected widget type: " + widget.classID());
996
+ console.warn("Unexpected widget type: " + widget.classID());
995
997
  }
996
998
  });
997
999
  });
@@ -1009,7 +1011,7 @@ export class Visualization extends Class {
1009
1011
  .chartType_default(context.properties.chartType || context.properties.charttype || context.type)
1010
1012
  ;
1011
1013
  } catch (e) {
1012
- console.log("Unexpected widget type: " + widget.classID());
1014
+ console.warn("Unexpected widget type: " + widget.classID());
1013
1015
  }
1014
1016
  });
1015
1017
  break;
@@ -1021,7 +1023,7 @@ export class Visualization extends Class {
1021
1023
  .chartType_default(context.properties.chartType || context.properties.charttype || context.type)
1022
1024
  ;
1023
1025
  } catch (e) {
1024
- console.log("Unexpected widget type: " + widget.classID());
1026
+ console.warn("Unexpected widget type: " + widget.classID());
1025
1027
  }
1026
1028
  });
1027
1029
  break;
@@ -1034,7 +1036,7 @@ export class Visualization extends Class {
1034
1036
  .chartType_default("TABLE")
1035
1037
  ;
1036
1038
  } catch (e) {
1037
- console.log("Unexpected widget type: " + widget.classID());
1039
+ console.warn("Unexpected widget type: " + widget.classID());
1038
1040
  }
1039
1041
  });
1040
1042
  break;
@@ -1061,7 +1063,7 @@ export class Visualization extends Class {
1061
1063
  ;
1062
1064
  }
1063
1065
  } catch (e) {
1064
- console.log("Unexpected widget type: " + widget.classID());
1066
+ console.warn("Unexpected widget type: " + widget.classID());
1065
1067
  }
1066
1068
  });
1067
1069
  break;
@@ -1078,7 +1080,7 @@ export class Visualization extends Class {
1078
1080
  })
1079
1081
  ;
1080
1082
  } catch (e) {
1081
- console.log("Unexpected widget type: " + widget.classID());
1083
+ console.warn("Unexpected widget type: " + widget.classID());
1082
1084
  }
1083
1085
  });
1084
1086
  break;
@@ -1158,7 +1160,7 @@ export class Visualization extends Class {
1158
1160
  }))
1159
1161
  ;
1160
1162
  } catch (e) {
1161
- console.log("Unexpected widget type: " + widget.classID());
1163
+ console.warn("Unexpected widget type: " + widget.classID());
1162
1164
  }
1163
1165
  });
1164
1166
  break;
@@ -1170,7 +1172,7 @@ export class Visualization extends Class {
1170
1172
  .image_default(context.properties.imageUrl)
1171
1173
  ;
1172
1174
  } catch (e) {
1173
- console.log("Unexpected widget type: " + widget.classID());
1175
+ console.warn("Unexpected widget type: " + widget.classID());
1174
1176
  }
1175
1177
  });
1176
1178
  break;
@@ -1182,7 +1184,7 @@ export class Visualization extends Class {
1182
1184
  .text_default(context.id + "\n" + "TODO: " + context.type)
1183
1185
  ;
1184
1186
  } catch (e) {
1185
- console.log("Unexpected widget type: " + widget.classID());
1187
+ console.warn("Unexpected widget type: " + widget.classID());
1186
1188
  }
1187
1189
  });
1188
1190
  break;
@@ -1250,7 +1252,7 @@ export class Visualization extends Class {
1250
1252
  const existingWidget = context.dashboard.marshaller.getWidget(context.id);
1251
1253
  if (existingWidget) {
1252
1254
  if (WidgetClass.prototype._class !== existingWidget.classID()) {
1253
- console.log("Unexpected persisted widget type (old persist string?)");
1255
+ console.warn("Unexpected persisted widget type (old persist string?)");
1254
1256
  }
1255
1257
  context.setWidget(existingWidget);
1256
1258
  } else {
@@ -1283,7 +1285,7 @@ export class Visualization extends Class {
1283
1285
  try {
1284
1286
  this.widget[key + "_default"](this.properties[key]);
1285
1287
  } catch (e) {
1286
- console.log("Invalid Property:" + this.id + ".properties." + key);
1288
+ console.warn("Invalid Property:" + this.id + ".properties." + key);
1287
1289
  }
1288
1290
  }
1289
1291
  }
@@ -1620,7 +1622,7 @@ Filter.prototype.matches = function (row, value): boolean {
1620
1622
  rowValue = row[this._requestFieldID.toLowerCase()];
1621
1623
  }
1622
1624
  if (rowValue === undefined) {
1623
- console.log("Empty cell value: '" + this._requestFieldID + "'");
1625
+ console.warn("Empty cell value: '" + this._requestFieldID + "'");
1624
1626
  return false;
1625
1627
  }
1626
1628
  switch (this.rule) {
@@ -1655,7 +1657,7 @@ Filter.prototype.matches = function (row, value): boolean {
1655
1657
  case "==":
1656
1658
  return value == rowValue; // jshint ignore:line
1657
1659
  default:
1658
- console.log("Unknown filter rule: '" + this.rule + "'");
1660
+ console.warn("Unknown filter rule: '" + this.rule + "'");
1659
1661
  return value == rowValue; // jshint ignore:line
1660
1662
  }
1661
1663
  };
@@ -1727,7 +1729,7 @@ DatasourceRequestOptimizer.prototype.appendRequest = function (updateDatasource,
1727
1729
  updates: []
1728
1730
  };
1729
1731
  } else if ((window as any).__hpcc_debug) {
1730
- console.log("Optimized duplicate fetch: " + datasourceRequestID);
1732
+ console.warn("Optimized duplicate fetch: " + datasourceRequestID);
1731
1733
  }
1732
1734
  const datasourceOptimizedItem = this.datasourceRequests[datasourceRequestID];
1733
1735
  if (datasourceOptimizedItem.updates.indexOf(updateVisualization.id) < 0) {
@@ -1760,7 +1762,7 @@ VisualizationRequestOptimizer.prototype.appendRequest = function (updateDatasour
1760
1762
  request: {}
1761
1763
  };
1762
1764
  } else if ((window as any).__hpcc_debug) {
1763
- console.log("Optimized duplicate fetch: " + visualizationRequestID);
1765
+ console.warn("Optimized duplicate fetch: " + visualizationRequestID);
1764
1766
  }
1765
1767
  const visualizationOptimizedItem = this.visualizationRequests[visualizationRequestID];
1766
1768
  Utility.mixin(visualizationOptimizedItem.request, request);
@@ -1909,7 +1911,7 @@ export class Datasource {
1909
1911
  dsRequest = this.calcRequest(request, this.isRoxie());
1910
1912
  dsRequest.refresh = request.refresh || false;
1911
1913
  if ((window as any).__hpcc_debug) {
1912
- console.log("fetchData: " + JSON.stringify(updates) + "(" + JSON.stringify(request) + ")");
1914
+ console.warn("fetchData: " + JSON.stringify(updates) + "(" + JSON.stringify(request) + ")");
1913
1915
  }
1914
1916
  for (const key in dsRequest) {
1915
1917
  if (dsRequest[key] === undefined) {
@@ -1956,7 +1958,7 @@ export class Datasource {
1956
1958
  promises.push(this._outputs[key].vizNotify(updates));
1957
1959
  }
1958
1960
  } else if (Utility.exists(from, lowerResponse)) {
1959
- console.log("DDL 'Datasource.From' case is Incorrect");
1961
+ console.warn("DDL 'Datasource.From' case is Incorrect");
1960
1962
  if (!Utility.exists(from + _CHANGED, lowerResponse) || (Utility.exists(from + _CHANGED, lowerResponse) && response[from + _CHANGED].length && lowerResponse[from + _CHANGED][0][from + _CHANGED])) {
1961
1963
  promises.push(this._outputs[key].setData(lowerResponse[from], updates));
1962
1964
  } else {
@@ -1968,7 +1970,7 @@ export class Datasource {
1968
1970
  for (const responseKey2 in response) {
1969
1971
  responseItems.push(responseKey2);
1970
1972
  }
1971
- console.log("Unable to locate '" + from + "' in response {" + responseItems.join(", ") + "}");
1973
+ console.warn("Unable to locate '" + from + "' in response {" + responseItems.join(", ") + "}");
1972
1974
  }
1973
1975
  }
1974
1976
  return Promise.all(promises);
@@ -2371,25 +2373,25 @@ Marshaller.prototype.ready = function (callback) {
2371
2373
  };
2372
2374
 
2373
2375
  Marshaller.prototype.vizEvent = function (sourceWidget, eventID, row, col, selected) {
2374
- console.log("Marshaller.vizEvent: " + sourceWidget.id() + "-" + eventID);
2376
+ console.warn("Marshaller.vizEvent: " + sourceWidget.id() + "-" + eventID);
2375
2377
  };
2376
2378
 
2377
2379
  Marshaller.prototype.commsEvent = function (ddlSource, eventID, request, response) {
2378
2380
  switch (eventID) {
2379
2381
  case "request":
2380
2382
  if ((window as any).__hpcc_debug) {
2381
- console.log("Marshaller.commsEvent: " + ddlSource.id + "-" + eventID + ": " + JSON.stringify(request));
2383
+ console.warn("Marshaller.commsEvent: " + ddlSource.id + "-" + eventID + ": " + JSON.stringify(request));
2382
2384
  }
2383
2385
  break;
2384
2386
  case "response":
2385
2387
  case "error":
2386
2388
  if ((window as any).__hpcc_debug) {
2387
- console.log("Marshaller.commsEvent: " + ddlSource.id + "-" + eventID + ": " + JSON.stringify(response));
2389
+ console.warn("Marshaller.commsEvent: " + ddlSource.id + "-" + eventID + ": " + JSON.stringify(response));
2388
2390
  }
2389
2391
  break;
2390
2392
  default:
2391
2393
  if ((window as any).__hpcc_debug) {
2392
- console.log("Marshaller.commsEvent: " + JSON.stringify(arguments));
2394
+ console.warn("Marshaller.commsEvent: " + JSON.stringify(arguments));
2393
2395
  }
2394
2396
  break;
2395
2397
 
@@ -26,18 +26,18 @@ TargetMarshaller.prototype.populateContent = function () {
26
26
  if (widget_config.target !== undefined) {
27
27
  viz.newWidgetSurface.target(widget_config.target);
28
28
  } else {
29
- console.log("Target not specified for the following:");
30
- console.log("this._ddlDashboards[" + key + "].visualizations[" + idx + "].id = " + viz.id);
29
+ console.warn("Target not specified for the following:");
30
+ console.warn("this._ddlDashboards[" + key + "].visualizations[" + idx + "].id = " + viz.id);
31
31
  }
32
32
  if (typeof widget_config.callback === "function") {
33
33
  widget_config.callback(viz.widget, viz.newWidgetSurface);
34
34
  } else {
35
35
  console.warn("Callback not specified for the following:");
36
- console.log("this._ddlDashboards[" + key + "].visualizations[" + idx + "].id = " + viz.id);
36
+ console.warn("this._ddlDashboards[" + key + "].visualizations[" + idx + "].id = " + viz.id);
37
37
  }
38
38
  } else {
39
39
  console.warn("Config not specified for the following:");
40
- console.log("this._ddlDashboards[" + key + "].visualizations[" + idx + "].id = " + viz.id);
40
+ console.warn("this._ddlDashboards[" + key + "].visualizations[" + idx + "].id = " + viz.id);
41
41
  }
42
42
  }, this);
43
43
  }
@@ -60,7 +60,7 @@ export class DSTable extends ChartPanel {
60
60
  .resultName(this._selectedDS2.resultName())
61
61
  );
62
62
  } else {
63
- console.log("Unknown datasoure type");
63
+ console.warn("Unknown datasoure type");
64
64
  }
65
65
  }
66
66
  });
@@ -235,7 +235,7 @@ export class Visualization extends PropertyExt {
235
235
  this.chartPanel().fields(dbFields.filter(f => f.id() !== "__lparam"));
236
236
  }
237
237
  } else {
238
- console.log(`***${this.id()} Immutable Fields***`);
238
+ console.warn(`***${this.id()} Immutable Fields***`);
239
239
  }
240
240
 
241
241
  const data = mappings.outData();
@@ -255,7 +255,7 @@ export class Visualization extends PropertyExt {
255
255
  this.chartPanel().data(mappedData);
256
256
  }
257
257
  } else {
258
- console.log(`${this.id()} Immutable Data!`);
258
+ console.warn(`${this.id()} Immutable Data!`);
259
259
  }
260
260
 
261
261
  if (fieldsChanged || dataChanged) {
@@ -1,4 +1,4 @@
1
1
  export declare const PKG_NAME = "@hpcc-js/marshaller";
2
- export declare const PKG_VERSION = "2.24.6";
3
- export declare const BUILD_VERSION = "2.102.8";
2
+ export declare const PKG_VERSION = "2.24.9";
3
+ export declare const BUILD_VERSION = "2.102.11";
4
4
  //# sourceMappingURL=__package__.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"__package__.d.ts","sourceRoot":"","sources":["../src/__package__.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,wBAAwB,CAAC;AAC9C,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,aAAa,YAAY,CAAC"}
1
+ {"version":3,"file":"__package__.d.ts","sourceRoot":"","sources":["../src/__package__.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,wBAAwB,CAAC;AAC9C,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,aAAa,aAAa,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"HipieDDL.d.ts","sourceRoot":"","sources":["../../src/ddl1/HipieDDL.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"HipieDDL.d.ts","sourceRoot":"","sources":["../../src/ddl1/HipieDDL.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAA6B,MAAM,iBAAiB,CAAC;AAEnE,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAq2BzC,qBAAa,aAAc,SAAQ,KAAK;IACpC,SAAS,CAAC,SAAS,MAAC;IACpB,mBAAmB,MAAC;IACpB,SAAS,CAAC,IAAI,MAAC;IACf,SAAS,CAAC,EAAE,MAAC;IACb,SAAS,CAAC,KAAK,MAAC;IAChB,SAAS,CAAC,IAAI,MAAC;IACf,SAAS,CAAC,KAAK,MAAC;IAChB,SAAS,CAAC,KAAK,MAAC;IAChB,SAAS,CAAC,OAAO,MAAC;IAClB,SAAS,CAAC,UAAU,MAAC;IACrB,UAAU,MAAC;IACX,SAAS,CAAC,MAAM,MAAC;IACjB,SAAS,CAAC,MAAM,MAAC;IACjB,SAAS,CAAC,MAAM,MAAC;IACjB,SAAS,CAAC,kBAAkB,MAAC;IAC7B,SAAS,CAAC,eAAe,MAAC;IAC1B,MAAM,MAAC;IACP,SAAS,CAAC,YAAY,MAAC;gBAEX,SAAS,KAAA,EAAE,aAAa,KAAA,EAAE,mBAAmB,KAAA;IA8SzD,cAAc;IAId,MAAM;IAIN,QAAQ,CAAC,EAAE,KAAA;IAIX,KAAK,CAAC,EAAE,KAAA;IAIR,aAAa;IAYb,SAAS;IAIT,QAAQ;IAIR,mBAAmB,CAAC,UAAU,KAAA,EAAE,QAAQ,KAAA;IAaxC,UAAU,CAAC,UAAU,KAAA,EAAE,QAAQ,KAAA;IAI/B,WAAW,CAAC,WAAW,KAAA,EAAE,QAAQ,KAAA;IAoBjC,SAAS,CAAC,MAAM,KAAA;IA6BhB,MAAM,CAAC,OAAO,KAAA;IAId,UAAU;IAIV,uBAAuB,CAAC,eAAe,KAAA;IAMvC,0BAA0B,CAAC,QAAQ,KAAA;IAMnC,cAAc,CAAC,MAAM,CAAC,KAAA,GAAG,GAAG;IAgB5B,MAAM,CAAC,MAAM,CAAC,KAAA;IA8Dd,MAAM;IAiBN,KAAK;IAqBL,EAAE,CAAC,OAAO,KAAA,EAAE,IAAI,KAAA;IAWhB,cAAc,CAAC,aAAa,KAAA;IAS5B,YAAY,CAAC,OAAO,KAAA,EAAE,KAAK,KAAA,EAAE,GAAG,KAAA,EAAE,GAAG,KAAA,EAAE,QAAQ,KAAA;IAc/C,YAAY;IAIZ,SAAS;IAOT,sBAAsB;IAOtB,sBAAsB;IAUtB,cAAc;IAgBd,gBAAgB,CAAC,KAAK,KAAA;CAazB;AA8ID,qBAAa,MAAM;IAEf,UAAU,MAAC;IACX,EAAE,MAAC;IACH,IAAI,MAAC;IACL,SAAS,CAAC,MAAM,MAAC;IACjB,OAAO,MAAC;IACR,SAAS,CAAC,EAAE,MAAC;gBAED,UAAU,KAAA,EAAE,MAAM,KAAA;IAU9B,cAAc;IAId,wBAAwB;IAQxB,MAAM,CAAC,OAAO,KAAA;IAId,SAAS,CAAC,OAAO,KAAA;IAWjB,OAAO,CAAC,IAAI,KAAA,EAAE,OAAO,KAAA;CAIxB;AAyED,qBAAa,UAAU;IAEnB,SAAS,CAAC,UAAU,MAAC;IACrB,EAAE,MAAC;IACH,SAAS,CAAC,IAAI,MAAC;IACf,SAAS,CAAC,GAAG,MAAC;IACd,QAAQ,MAAC;IACT,SAAS,CAAC,OAAO,MAAC;IAClB,SAAS,CAAC,YAAY,MAAC;IACvB,SAAS,CAAC,QAAQ,MAAC;IACnB,SAAS,CAAC,YAAY,MAAC;IACvB,KAAK,MAAC;IACN,SAAS,CAAC,aAAa,MAAC;IACxB,SAAS,CAAC,aAAa,MAAC;IACxB,SAAS,CAAC,aAAa,MAAC;gBAEZ,UAAU,KAAA,EAAE,UAAU,EAAE,IAAI,CAAC,cAAc,EAAE,aAAa,KAAA,EAAE,OAAO,KAAA;IAmD/E,OAAO;IAIP,IAAI;IAIJ,UAAU;IAIV,cAAc;IAId,UAAU;IAIV,wBAAwB;IAUxB,MAAM,CAAC,OAAO,KAAA;IAOd,WAAW,CAAC,OAAO,KAAA,EAAE,aAAa,KAAA;IAclC,SAAS,CAAC,OAAO,KAAA,EAAE,OAAO,KAAA;IAuC1B,eAAe,CAAC,QAAQ,KAAA,EAAE,OAAO,KAAA,EAAE,OAAO,KAAA;IAkC1C,QAAQ;IAIR,cAAc;IAKd,gBAAgB,CAAC,KAAK,KAAA;CAGzB;AAGD,wBAAgB,SAAS,CAAC,IAAI,EAAE,GAAG,EAAE,UAAU,KAAA,EAAE,SAAS,KAAA,EAAE,aAAa,KAAA,EAAE,OAAO,CAAC,KAAA,QAqBlF;AAwID,wBAAgB,UAAU,CAAC,IAAI,EAAE,GAAG,QAgBnC;yBAhBe,UAAU"}
@@ -1,4 +1,4 @@
1
1
  export declare const PKG_NAME = "@hpcc-js/marshaller";
2
- export declare const PKG_VERSION = "2.24.6";
3
- export declare const BUILD_VERSION = "2.102.8";
2
+ export declare const PKG_VERSION = "2.24.9";
3
+ export declare const BUILD_VERSION = "2.102.11";
4
4
  //# sourceMappingURL=__package__.d.ts.map