owl-cli 6.141.0 → 6.143.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.
@@ -2,7 +2,6 @@
2
2
  //#import eventBus.js
3
3
  //#import Util.js
4
4
  //#import base64.js
5
- //#import deepmerge.js
6
5
  //#import HttpUtil.js
7
6
  //#import jobs.js
8
7
  //#import DigestUtil.js
@@ -571,7 +570,7 @@ var @projectCodeService = (function (pigeon) {
571
570
  }
572
571
  // $.log("add,meta.push=" +meta.push + ",id=" + data.id);
573
572
  if(meta && meta.push){
574
- KafkaUtil.send('owlchange',JSON.stringify(data),data.id);
573
+ KafkaUtil.send('owlchange',"add",data.id);
575
574
  }
576
575
  EventBusService.fire(spec['_t'] + '_add_after', {data: data, env: env})
577
576
  return data
@@ -713,7 +712,7 @@ var @projectCodeService = (function (pigeon) {
713
712
 
714
713
  if(meta && meta.push){
715
714
  // $.log("send owlchange," + obj.id)
716
- KafkaUtil.send('owlchange',JSON.stringify(obj),obj.id);
715
+ KafkaUtil.send('owlchange',"update",obj.id);
717
716
  }
718
717
  EventBusService.fire(spec['_t'] + '_update_after', {old: oldObj, data: obj, env: env})
719
718
  return data
@@ -773,7 +772,7 @@ var @projectCodeService = (function (pigeon) {
773
772
  }
774
773
 
775
774
  if(meta && meta.push){
776
- KafkaUtil.send('owlchange',JSON.stringify(data),data.id);
775
+ KafkaUtil.send('owlchange',"del",data.id);
777
776
  }
778
777
  EventBusService.fire(spec['_t'] + '_delete_after', {data: data})
779
778
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "owl-cli",
3
- "version": "6.141.0",
3
+ "version": "6.143.0",
4
4
  "main": "index.js",
5
5
  "preferGlobal": true,
6
6
  "bin": {