|
30 | 30 | { |
31 | 31 | "$ref": "#/definitions/nodes/starts/passiveStart" |
32 | 32 | }, |
| 33 | + { |
| 34 | + "$ref": "#/definitions/nodes/starts/webTouchPointStart" |
| 35 | + }, |
33 | 36 | { |
34 | 37 | "$ref": "#/definitions/nodes/actions/copyToWorkflowAction" |
35 | 38 | }, |
|
54 | 57 | { |
55 | 58 | "$ref": "#/definitions/nodes/actions/setMilestoneAction" |
56 | 59 | }, |
| 60 | + { |
| 61 | + "$ref": "#/definitions/nodes/actions/triggerWebhookAction" |
| 62 | + }, |
| 63 | + { |
| 64 | + "$ref": "#/definitions/nodes/actions/sendShortMessageAction" |
| 65 | + }, |
57 | 66 | { |
58 | 67 | "$ref": "#/definitions/nodes/conditions/dateTimeCondition" |
59 | 68 | }, |
|
442 | 451 | "meta", |
443 | 452 | "connections" |
444 | 453 | ] |
| 454 | + }, |
| 455 | + "webTouchPointStart": { |
| 456 | + "title": "webTouchPointStart", |
| 457 | + "type": "object", |
| 458 | + "properties": { |
| 459 | + "id": { |
| 460 | + "$ref": "#/definitions/types/uuid" |
| 461 | + }, |
| 462 | + "type": { |
| 463 | + "const": "webTouchPointStart" |
| 464 | + }, |
| 465 | + "config": { |
| 466 | + "type": "object", |
| 467 | + "properties": { |
| 468 | + "webTouchPointId": { |
| 469 | + "$ref": "#/definitions/types/evalancheId" |
| 470 | + }, |
| 471 | + "linkId": { |
| 472 | + "$ref": "#/definitions/types/evalancheId" |
| 473 | + }, |
| 474 | + "multipass": { |
| 475 | + "$ref": "#/definitions/types/multipass" |
| 476 | + }, |
| 477 | + "startTime": { |
| 478 | + "oneOf": [ |
| 479 | + { |
| 480 | + "$ref": "#/definitions/types/dateTime" |
| 481 | + }, |
| 482 | + { |
| 483 | + "type": "null" |
| 484 | + } |
| 485 | + ] |
| 486 | + } |
| 487 | + }, |
| 488 | + "additionalProperties": false, |
| 489 | + "required": [ |
| 490 | + "webTouchPointId", |
| 491 | + "linkId", |
| 492 | + "startTime", |
| 493 | + "multipass" |
| 494 | + ] |
| 495 | + }, |
| 496 | + "meta": { |
| 497 | + "$ref": "#/definitions/meta/node" |
| 498 | + }, |
| 499 | + "connections": { |
| 500 | + "$ref": "#/definitions/connections/singleOutput" |
| 501 | + } |
| 502 | + }, |
| 503 | + "additionalProperties": false, |
| 504 | + "required": [ |
| 505 | + "id", |
| 506 | + "type", |
| 507 | + "config", |
| 508 | + "meta", |
| 509 | + "connections" |
| 510 | + ] |
445 | 511 | } |
446 | 512 | }, |
447 | 513 | "actions": { |
|
796 | 862 | "meta", |
797 | 863 | "connections" |
798 | 864 | ] |
| 865 | + }, |
| 866 | + "triggerWebhookAction": { |
| 867 | + "title": "triggerWebhookAction", |
| 868 | + "type": "object", |
| 869 | + "properties": { |
| 870 | + "id": { |
| 871 | + "$ref": "#/definitions/types/uuid" |
| 872 | + }, |
| 873 | + "type": { |
| 874 | + "const": "triggerWebhookAction" |
| 875 | + }, |
| 876 | + "config": { |
| 877 | + "type": "object", |
| 878 | + "properties": { |
| 879 | + "webhookId": { |
| 880 | + "$ref": "#/definitions/types/evalancheId" |
| 881 | + } |
| 882 | + }, |
| 883 | + "additionalProperties": false, |
| 884 | + "required": [ |
| 885 | + "webhookId" |
| 886 | + ] |
| 887 | + }, |
| 888 | + "meta": { |
| 889 | + "$ref": "#/definitions/meta/node" |
| 890 | + }, |
| 891 | + "connections": { |
| 892 | + "$ref": "#/definitions/connections/singleOutput" |
| 893 | + } |
| 894 | + }, |
| 895 | + "additionalProperties": false, |
| 896 | + "required": [ |
| 897 | + "id", |
| 898 | + "type", |
| 899 | + "config", |
| 900 | + "meta", |
| 901 | + "connections" |
| 902 | + ] |
| 903 | + }, |
| 904 | + "sendShortMessageAction": { |
| 905 | + "title": "sendShortMessageAction", |
| 906 | + "type": "object", |
| 907 | + "properties": { |
| 908 | + "id": { |
| 909 | + "$ref": "#/definitions/types/uuid" |
| 910 | + }, |
| 911 | + "type": { |
| 912 | + "const": "sendShortMessageAction" |
| 913 | + }, |
| 914 | + "config": { |
| 915 | + "type": "object", |
| 916 | + "properties": { |
| 917 | + "shortMessageId": { |
| 918 | + "$ref": "#/definitions/types/evalancheId" |
| 919 | + }, |
| 920 | + "ignorePermission": { |
| 921 | + "type": "boolean" |
| 922 | + } |
| 923 | + }, |
| 924 | + "additionalProperties": false, |
| 925 | + "required": [ |
| 926 | + "shortMessageId", |
| 927 | + "ignorePermission" |
| 928 | + ] |
| 929 | + }, |
| 930 | + "meta": { |
| 931 | + "$ref": "#/definitions/meta/node" |
| 932 | + }, |
| 933 | + "connections": { |
| 934 | + "$ref": "#/definitions/connections/singleOutput" |
| 935 | + } |
| 936 | + }, |
| 937 | + "additionalProperties": false, |
| 938 | + "required": [ |
| 939 | + "id", |
| 940 | + "type", |
| 941 | + "config", |
| 942 | + "meta", |
| 943 | + "connections" |
| 944 | + ] |
799 | 945 | } |
800 | 946 | }, |
801 | 947 | "conditions": { |
|
0 commit comments