jason-trace-log 1.0.9 → 1.0.11

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.
@@ -1231,7 +1231,7 @@
1231
1231
  }
1232
1232
  return instance;
1233
1233
  };
1234
- var index = {
1234
+ var traceLogAPI = {
1235
1235
  init: init,
1236
1236
  getInstance: getInstance,
1237
1237
  get info() {
@@ -1243,6 +1243,9 @@
1243
1243
  get error() {
1244
1244
  return getInstance().error.bind(getInstance());
1245
1245
  },
1246
+ get send() {
1247
+ return getInstance().send.bind(getInstance());
1248
+ },
1246
1249
  get setCustomGlobalFields() {
1247
1250
  return getInstance().setCustomGlobalFields.bind(getInstance());
1248
1251
  }
@@ -1250,7 +1253,7 @@
1250
1253
 
1251
1254
  exports.init = init;
1252
1255
  exports.getInstance = getInstance;
1253
- exports.default = index;
1256
+ exports.default = traceLogAPI;
1254
1257
  exports.BaseTrace = BaseTrace;
1255
1258
 
1256
1259
  Object.defineProperty(exports, '__esModule', { value: true });