cloudcc-cli 2.0.6 → 2.0.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.
- package/README.md +7 -0
- package/package.json +1 -1
- package/src/triggers/create.js +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/src/triggers/create.js
CHANGED
|
@@ -22,7 +22,7 @@ async function create(argvs) {
|
|
|
22
22
|
import com.cloudcc.core.*;
|
|
23
23
|
|
|
24
24
|
public class ${body.name} extends CCTrigger {
|
|
25
|
-
public ${body.name}() {
|
|
25
|
+
public ${body.name}(CCObject record_new, CCObject record_old) {
|
|
26
26
|
// @SOURCE_CONTENT_START
|
|
27
27
|
System.out.print("hello World");
|
|
28
28
|
// @SOURCE_CONTENT_END
|