@venturialstd/workflow 0.1.1 → 0.1.4
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/dist/constants/workflow.constant.d.ts +2 -1
- package/dist/constants/workflow.constant.d.ts.map +1 -1
- package/dist/constants/workflow.constant.js +1 -0
- package/dist/constants/workflow.constant.js.map +1 -1
- package/dist/controllers/workflow-node.controller.d.ts +22 -0
- package/dist/controllers/workflow-node.controller.d.ts.map +1 -0
- package/dist/controllers/workflow-node.controller.js +84 -0
- package/dist/controllers/workflow-node.controller.js.map +1 -0
- package/dist/dtos/create-workflow-webhook.dto.d.ts +9 -0
- package/dist/dtos/create-workflow-webhook.dto.d.ts.map +1 -0
- package/dist/dtos/create-workflow-webhook.dto.js +48 -0
- package/dist/dtos/create-workflow-webhook.dto.js.map +1 -0
- package/dist/dtos/index.d.ts +1 -0
- package/dist/dtos/index.d.ts.map +1 -1
- package/dist/dtos/index.js +1 -0
- package/dist/dtos/index.js.map +1 -1
- package/dist/entities/workflow-webhook.entity.d.ts +22 -0
- package/dist/entities/workflow-webhook.entity.d.ts.map +1 -0
- package/dist/entities/workflow-webhook.entity.js +103 -0
- package/dist/entities/workflow-webhook.entity.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/modules/conditional/services/evaluate-condition.service.d.ts.map +1 -1
- package/dist/modules/conditional/services/evaluate-condition.service.js +39 -23
- package/dist/modules/conditional/services/evaluate-condition.service.js.map +1 -1
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/index.d.ts.map +1 -1
- package/dist/modules/index.js +5 -1
- package/dist/modules/index.js.map +1 -1
- package/dist/modules/twilio/actions/cancel-verification.action.d.ts +3 -0
- package/dist/modules/twilio/actions/cancel-verification.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/cancel-verification.action.js +56 -0
- package/dist/modules/twilio/actions/cancel-verification.action.js.map +1 -0
- package/dist/modules/twilio/actions/create-conversation.action.d.ts +3 -0
- package/dist/modules/twilio/actions/create-conversation.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/create-conversation.action.js +79 -0
- package/dist/modules/twilio/actions/create-conversation.action.js.map +1 -0
- package/dist/modules/twilio/actions/create-video-room.action.d.ts +3 -0
- package/dist/modules/twilio/actions/create-video-room.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/create-video-room.action.js +89 -0
- package/dist/modules/twilio/actions/create-video-room.action.js.map +1 -0
- package/dist/modules/twilio/actions/delete-call.action.d.ts +3 -0
- package/dist/modules/twilio/actions/delete-call.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/delete-call.action.js +40 -0
- package/dist/modules/twilio/actions/delete-call.action.js.map +1 -0
- package/dist/modules/twilio/actions/delete-message.action.d.ts +3 -0
- package/dist/modules/twilio/actions/delete-message.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/delete-message.action.js +40 -0
- package/dist/modules/twilio/actions/delete-message.action.js.map +1 -0
- package/dist/modules/twilio/actions/fetch-call-recordings.action.d.ts +3 -0
- package/dist/modules/twilio/actions/fetch-call-recordings.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/fetch-call-recordings.action.js +46 -0
- package/dist/modules/twilio/actions/fetch-call-recordings.action.js.map +1 -0
- package/dist/modules/twilio/actions/fetch-call.action.d.ts +3 -0
- package/dist/modules/twilio/actions/fetch-call.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/fetch-call.action.js +52 -0
- package/dist/modules/twilio/actions/fetch-call.action.js.map +1 -0
- package/dist/modules/twilio/actions/fetch-message.action.d.ts +3 -0
- package/dist/modules/twilio/actions/fetch-message.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/fetch-message.action.js +58 -0
- package/dist/modules/twilio/actions/fetch-message.action.js.map +1 -0
- package/dist/modules/twilio/actions/fetch-verification.action.d.ts +3 -0
- package/dist/modules/twilio/actions/fetch-verification.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/fetch-verification.action.js +62 -0
- package/dist/modules/twilio/actions/fetch-verification.action.js.map +1 -0
- package/dist/modules/twilio/actions/generate-twiml-dial.action.d.ts +3 -0
- package/dist/modules/twilio/actions/generate-twiml-dial.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/generate-twiml-dial.action.js +72 -0
- package/dist/modules/twilio/actions/generate-twiml-dial.action.js.map +1 -0
- package/dist/modules/twilio/actions/generate-twiml-say.action.d.ts +3 -0
- package/dist/modules/twilio/actions/generate-twiml-say.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/generate-twiml-say.action.js +68 -0
- package/dist/modules/twilio/actions/generate-twiml-say.action.js.map +1 -0
- package/dist/modules/twilio/actions/index.d.ts +20 -0
- package/dist/modules/twilio/actions/index.d.ts.map +1 -1
- package/dist/modules/twilio/actions/index.js +20 -0
- package/dist/modules/twilio/actions/index.js.map +1 -1
- package/dist/modules/twilio/actions/list-calls.action.d.ts +3 -0
- package/dist/modules/twilio/actions/list-calls.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/list-calls.action.js +89 -0
- package/dist/modules/twilio/actions/list-calls.action.js.map +1 -0
- package/dist/modules/twilio/actions/list-messages.action.d.ts +3 -0
- package/dist/modules/twilio/actions/list-messages.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/list-messages.action.js +89 -0
- package/dist/modules/twilio/actions/list-messages.action.js.map +1 -0
- package/dist/modules/twilio/actions/lookup-phone-number.action.d.ts +3 -0
- package/dist/modules/twilio/actions/lookup-phone-number.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/lookup-phone-number.action.js +79 -0
- package/dist/modules/twilio/actions/lookup-phone-number.action.js.map +1 -0
- package/dist/modules/twilio/actions/make-call.action.d.ts +3 -0
- package/dist/modules/twilio/actions/make-call.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/make-call.action.js +109 -0
- package/dist/modules/twilio/actions/make-call.action.js.map +1 -0
- package/dist/modules/twilio/actions/send-conversation-message.action.d.ts +3 -0
- package/dist/modules/twilio/actions/send-conversation-message.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/send-conversation-message.action.js +72 -0
- package/dist/modules/twilio/actions/send-conversation-message.action.js.map +1 -0
- package/dist/modules/twilio/actions/send-sms.action.d.ts.map +1 -1
- package/dist/modules/twilio/actions/send-sms.action.js.map +1 -1
- package/dist/modules/twilio/actions/send-verification.action.d.ts +3 -0
- package/dist/modules/twilio/actions/send-verification.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/send-verification.action.js +99 -0
- package/dist/modules/twilio/actions/send-verification.action.js.map +1 -0
- package/dist/modules/twilio/actions/update-call.action.d.ts +3 -0
- package/dist/modules/twilio/actions/update-call.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/update-call.action.js +72 -0
- package/dist/modules/twilio/actions/update-call.action.js.map +1 -0
- package/dist/modules/twilio/actions/update-message.action.d.ts +3 -0
- package/dist/modules/twilio/actions/update-message.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/update-message.action.js +57 -0
- package/dist/modules/twilio/actions/update-message.action.js.map +1 -0
- package/dist/modules/twilio/actions/verify-code.action.d.ts +3 -0
- package/dist/modules/twilio/actions/verify-code.action.d.ts.map +1 -0
- package/dist/modules/twilio/actions/verify-code.action.js +72 -0
- package/dist/modules/twilio/actions/verify-code.action.js.map +1 -0
- package/dist/modules/twilio/services/cancel-verification.service.d.ts +8 -0
- package/dist/modules/twilio/services/cancel-verification.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/cancel-verification.service.js +53 -0
- package/dist/modules/twilio/services/cancel-verification.service.js.map +1 -0
- package/dist/modules/twilio/services/create-conversation.service.d.ts +8 -0
- package/dist/modules/twilio/services/create-conversation.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/create-conversation.service.js +56 -0
- package/dist/modules/twilio/services/create-conversation.service.js.map +1 -0
- package/dist/modules/twilio/services/create-video-room.service.d.ts +8 -0
- package/dist/modules/twilio/services/create-video-room.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/create-video-room.service.js +57 -0
- package/dist/modules/twilio/services/create-video-room.service.js.map +1 -0
- package/dist/modules/twilio/services/delete-call.service.d.ts +8 -0
- package/dist/modules/twilio/services/delete-call.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/delete-call.service.js +48 -0
- package/dist/modules/twilio/services/delete-call.service.js.map +1 -0
- package/dist/modules/twilio/services/delete-message.service.d.ts +8 -0
- package/dist/modules/twilio/services/delete-message.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/delete-message.service.js +43 -0
- package/dist/modules/twilio/services/delete-message.service.js.map +1 -0
- package/dist/modules/twilio/services/fetch-call-recordings.service.d.ts +8 -0
- package/dist/modules/twilio/services/fetch-call-recordings.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/fetch-call-recordings.service.js +56 -0
- package/dist/modules/twilio/services/fetch-call-recordings.service.js.map +1 -0
- package/dist/modules/twilio/services/fetch-call.service.d.ts +8 -0
- package/dist/modules/twilio/services/fetch-call.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/fetch-call.service.js +52 -0
- package/dist/modules/twilio/services/fetch-call.service.js.map +1 -0
- package/dist/modules/twilio/services/fetch-message.service.d.ts +8 -0
- package/dist/modules/twilio/services/fetch-message.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/fetch-message.service.js +60 -0
- package/dist/modules/twilio/services/fetch-message.service.js.map +1 -0
- package/dist/modules/twilio/services/fetch-verification.service.d.ts +8 -0
- package/dist/modules/twilio/services/fetch-verification.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/fetch-verification.service.js +58 -0
- package/dist/modules/twilio/services/fetch-verification.service.js.map +1 -0
- package/dist/modules/twilio/services/generate-twiml-dial.service.d.ts +8 -0
- package/dist/modules/twilio/services/generate-twiml-dial.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/generate-twiml-dial.service.js +43 -0
- package/dist/modules/twilio/services/generate-twiml-dial.service.js.map +1 -0
- package/dist/modules/twilio/services/generate-twiml-say.service.d.ts +8 -0
- package/dist/modules/twilio/services/generate-twiml-say.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/generate-twiml-say.service.js +43 -0
- package/dist/modules/twilio/services/generate-twiml-say.service.js.map +1 -0
- package/dist/modules/twilio/services/index.d.ts +20 -0
- package/dist/modules/twilio/services/index.d.ts.map +1 -1
- package/dist/modules/twilio/services/index.js +20 -0
- package/dist/modules/twilio/services/index.js.map +1 -1
- package/dist/modules/twilio/services/list-calls.service.d.ts +8 -0
- package/dist/modules/twilio/services/list-calls.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/list-calls.service.js +62 -0
- package/dist/modules/twilio/services/list-calls.service.js.map +1 -0
- package/dist/modules/twilio/services/list-messages.service.d.ts +8 -0
- package/dist/modules/twilio/services/list-messages.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/list-messages.service.js +65 -0
- package/dist/modules/twilio/services/list-messages.service.js.map +1 -0
- package/dist/modules/twilio/services/lookup-phone-number.service.d.ts +8 -0
- package/dist/modules/twilio/services/lookup-phone-number.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/lookup-phone-number.service.js +61 -0
- package/dist/modules/twilio/services/lookup-phone-number.service.js.map +1 -0
- package/dist/modules/twilio/services/make-call.service.d.ts +8 -0
- package/dist/modules/twilio/services/make-call.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/make-call.service.js +80 -0
- package/dist/modules/twilio/services/make-call.service.js.map +1 -0
- package/dist/modules/twilio/services/send-conversation-message.service.d.ts +8 -0
- package/dist/modules/twilio/services/send-conversation-message.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/send-conversation-message.service.js +61 -0
- package/dist/modules/twilio/services/send-conversation-message.service.js.map +1 -0
- package/dist/modules/twilio/services/send-sms.service.d.ts.map +1 -1
- package/dist/modules/twilio/services/send-verification.service.d.ts +8 -0
- package/dist/modules/twilio/services/send-verification.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/send-verification.service.js +64 -0
- package/dist/modules/twilio/services/send-verification.service.js.map +1 -0
- package/dist/modules/twilio/services/update-call.service.d.ts +8 -0
- package/dist/modules/twilio/services/update-call.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/update-call.service.js +62 -0
- package/dist/modules/twilio/services/update-call.service.js.map +1 -0
- package/dist/modules/twilio/services/update-message.service.d.ts +8 -0
- package/dist/modules/twilio/services/update-message.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/update-message.service.js +54 -0
- package/dist/modules/twilio/services/update-message.service.js.map +1 -0
- package/dist/modules/twilio/services/verify-code.service.d.ts +8 -0
- package/dist/modules/twilio/services/verify-code.service.d.ts.map +1 -0
- package/dist/modules/twilio/services/verify-code.service.js +62 -0
- package/dist/modules/twilio/services/verify-code.service.js.map +1 -0
- package/dist/modules/twilio/twilio-nest.module.d.ts.map +1 -1
- package/dist/modules/twilio/twilio-nest.module.js +51 -3
- package/dist/modules/twilio/twilio-nest.module.js.map +1 -1
- package/dist/modules/twilio/twilio.module.d.ts.map +1 -1
- package/dist/modules/twilio/twilio.module.js +24 -2
- package/dist/modules/twilio/twilio.module.js.map +1 -1
- package/dist/modules/types.d.ts +3 -1
- package/dist/modules/types.d.ts.map +1 -1
- package/dist/modules/types.js.map +1 -1
- package/dist/modules/webhook/controllers/index.d.ts +2 -0
- package/dist/modules/webhook/controllers/index.d.ts.map +1 -0
- package/dist/modules/webhook/controllers/index.js +18 -0
- package/dist/modules/webhook/controllers/index.js.map +1 -0
- package/dist/modules/webhook/controllers/webhook-receiver.controller.d.ts +12 -0
- package/dist/modules/webhook/controllers/webhook-receiver.controller.d.ts.map +1 -0
- package/dist/modules/webhook/controllers/webhook-receiver.controller.js +122 -0
- package/dist/modules/webhook/controllers/webhook-receiver.controller.js.map +1 -0
- package/dist/modules/webhook/credentials.d.ts +3 -0
- package/dist/modules/webhook/credentials.d.ts.map +1 -0
- package/dist/modules/webhook/credentials.js +5 -0
- package/dist/modules/webhook/credentials.js.map +1 -0
- package/dist/modules/webhook/services/index.d.ts +2 -0
- package/dist/modules/webhook/services/index.d.ts.map +1 -0
- package/dist/modules/webhook/services/index.js +18 -0
- package/dist/modules/webhook/services/index.js.map +1 -0
- package/dist/modules/webhook/services/webhook-received.service.d.ts +10 -0
- package/dist/modules/webhook/services/webhook-received.service.d.ts.map +1 -0
- package/dist/modules/webhook/services/webhook-received.service.js +94 -0
- package/dist/modules/webhook/services/webhook-received.service.js.map +1 -0
- package/dist/modules/webhook/triggers/index.d.ts +2 -0
- package/dist/modules/webhook/triggers/index.d.ts.map +1 -0
- package/dist/modules/webhook/triggers/index.js +18 -0
- package/dist/modules/webhook/triggers/index.js.map +1 -0
- package/dist/modules/webhook/triggers/webhook-received.trigger.d.ts +3 -0
- package/dist/modules/webhook/triggers/webhook-received.trigger.d.ts.map +1 -0
- package/dist/modules/webhook/triggers/webhook-received.trigger.js +78 -0
- package/dist/modules/webhook/triggers/webhook-received.trigger.js.map +1 -0
- package/dist/modules/webhook/webhook-nest.module.d.ts +3 -0
- package/dist/modules/webhook/webhook-nest.module.d.ts.map +1 -0
- package/dist/modules/webhook/webhook-nest.module.js +32 -0
- package/dist/modules/webhook/webhook-nest.module.js.map +1 -0
- package/dist/modules/webhook/webhook.module.d.ts +3 -0
- package/dist/modules/webhook/webhook.module.d.ts.map +1 -0
- package/dist/modules/webhook/webhook.module.js +16 -0
- package/dist/modules/webhook/webhook.module.js.map +1 -0
- package/dist/services/workflow-execution.service.d.ts +14 -1
- package/dist/services/workflow-execution.service.d.ts.map +1 -1
- package/dist/services/workflow-execution.service.js +319 -2
- package/dist/services/workflow-execution.service.js.map +1 -1
- package/dist/services/workflow-module.service.d.ts +5 -1
- package/dist/services/workflow-module.service.d.ts.map +1 -1
- package/dist/services/workflow-module.service.js +126 -2
- package/dist/services/workflow-module.service.js.map +1 -1
- package/dist/services/workflow-webhook.service.d.ts +13 -0
- package/dist/services/workflow-webhook.service.d.ts.map +1 -0
- package/dist/services/workflow-webhook.service.js +72 -0
- package/dist/services/workflow-webhook.service.js.map +1 -0
- package/dist/workflow-core.module.d.ts.map +1 -1
- package/dist/workflow-core.module.js +7 -0
- package/dist/workflow-core.module.js.map +1 -1
- package/dist/workflow.module.d.ts.map +1 -1
- package/dist/workflow.module.js +3 -0
- package/dist/workflow.module.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generate-twiml-dial.action.d.ts","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/generate-twiml-dial.action.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,qBAAqB,EACtB,MAAM,aAAa,CAAC;AAGrB,eAAO,MAAM,uBAAuB,EAAE,qBAiErC,CAAC"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.generateTwiMLDialAction = void 0;
|
|
4
|
+
const types_1 = require("../../types");
|
|
5
|
+
const generate_twiml_dial_service_1 = require("../services/generate-twiml-dial.service");
|
|
6
|
+
exports.generateTwiMLDialAction = {
|
|
7
|
+
key: 'generate-twiml-dial',
|
|
8
|
+
name: 'Generate TwiML Dial',
|
|
9
|
+
description: 'Generate TwiML with a Dial verb',
|
|
10
|
+
category: types_1.NODE_CATEGORY.ACTION,
|
|
11
|
+
icon: '📞',
|
|
12
|
+
serviceClass: generate_twiml_dial_service_1.GenerateTwiMLDialService,
|
|
13
|
+
inputs: [
|
|
14
|
+
{
|
|
15
|
+
id: 'number',
|
|
16
|
+
name: 'Phone Number',
|
|
17
|
+
description: 'Phone number to dial (E.164 format)',
|
|
18
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
19
|
+
validation: {
|
|
20
|
+
required: true,
|
|
21
|
+
pattern: '^\\+[1-9]\\d{1,14}$',
|
|
22
|
+
},
|
|
23
|
+
placeholder: '+1234567890',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
id: 'callerId',
|
|
27
|
+
name: 'Caller ID',
|
|
28
|
+
description: 'Caller ID to display (optional)',
|
|
29
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
30
|
+
validation: {
|
|
31
|
+
required: false,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
id: 'timeout',
|
|
36
|
+
name: 'Timeout',
|
|
37
|
+
description: 'Call timeout in seconds',
|
|
38
|
+
type: types_1.FIELD_TYPE.NUMBER,
|
|
39
|
+
validation: {
|
|
40
|
+
required: false,
|
|
41
|
+
min: 1,
|
|
42
|
+
max: 600,
|
|
43
|
+
},
|
|
44
|
+
defaultValue: 30,
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
id: 'record',
|
|
48
|
+
name: 'Record',
|
|
49
|
+
description: 'Whether to record the call',
|
|
50
|
+
type: types_1.FIELD_TYPE.BOOLEAN,
|
|
51
|
+
validation: {
|
|
52
|
+
required: false,
|
|
53
|
+
},
|
|
54
|
+
defaultValue: false,
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
outputs: [
|
|
58
|
+
{
|
|
59
|
+
id: 'twiml',
|
|
60
|
+
name: 'TwiML',
|
|
61
|
+
description: 'Generated TwiML XML',
|
|
62
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
id: 'number',
|
|
66
|
+
name: 'Number',
|
|
67
|
+
description: 'Phone number dialed',
|
|
68
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
69
|
+
},
|
|
70
|
+
],
|
|
71
|
+
};
|
|
72
|
+
//# sourceMappingURL=generate-twiml-dial.action.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generate-twiml-dial.action.js","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/generate-twiml-dial.action.ts"],"names":[],"mappings":";;;AAAA,uCAKqB;AACrB,yFAAmF;AAEtE,QAAA,uBAAuB,GAA0B;IAC5D,GAAG,EAAE,qBAAqB;IAC1B,IAAI,EAAE,qBAAqB;IAC3B,WAAW,EAAE,iCAAiC;IAC9C,QAAQ,EAAE,qBAAa,CAAC,MAAM;IAC9B,IAAI,EAAE,IAAI;IACV,YAAY,EAAE,sDAA8E;IAC5F,MAAM,EAAE;QACN;YACE,EAAE,EAAE,QAAQ;YACZ,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,kBAAU,CAAC,KAAK;YACtB,UAAU,EAAE;gBACV,QAAQ,EAAE,IAAI;gBACd,OAAO,EAAE,qBAAqB;aAC/B;YACD,WAAW,EAAE,aAAa;SAC3B;QACD;YACE,EAAE,EAAE,UAAU;YACd,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,kBAAU,CAAC,KAAK;YACtB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;SACF;QACD;YACE,EAAE,EAAE,SAAS;YACb,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;gBACf,GAAG,EAAE,CAAC;gBACN,GAAG,EAAE,GAAG;aACT;YACD,YAAY,EAAE,EAAE;SACjB;QACD;YACE,EAAE,EAAE,QAAQ;YACZ,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,kBAAU,CAAC,OAAO;YACxB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;YACD,YAAY,EAAE,KAAK;SACpB;KACF;IACD,OAAO,EAAE;QACP;YACE,EAAE,EAAE,OAAO;YACX,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;QACD;YACE,EAAE,EAAE,QAAQ;YACZ,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,kBAAU,CAAC,KAAK;SACvB;KACF;CACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generate-twiml-say.action.d.ts","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/generate-twiml-say.action.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,qBAAqB,EACtB,MAAM,aAAa,CAAC;AAGrB,eAAO,MAAM,sBAAsB,EAAE,qBA6DpC,CAAC"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.generateTwiMLSayAction = void 0;
|
|
4
|
+
const types_1 = require("../../types");
|
|
5
|
+
const generate_twiml_say_service_1 = require("../services/generate-twiml-say.service");
|
|
6
|
+
exports.generateTwiMLSayAction = {
|
|
7
|
+
key: 'generate-twiml-say',
|
|
8
|
+
name: 'Generate TwiML Say',
|
|
9
|
+
description: 'Generate TwiML with a Say verb',
|
|
10
|
+
category: types_1.NODE_CATEGORY.ACTION,
|
|
11
|
+
icon: '🗣️',
|
|
12
|
+
serviceClass: generate_twiml_say_service_1.GenerateTwiMLSayService,
|
|
13
|
+
inputs: [
|
|
14
|
+
{
|
|
15
|
+
id: 'message',
|
|
16
|
+
name: 'Message',
|
|
17
|
+
description: 'The message to say',
|
|
18
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
19
|
+
validation: {
|
|
20
|
+
required: true,
|
|
21
|
+
minLength: 1,
|
|
22
|
+
},
|
|
23
|
+
placeholder: 'Hello, this is a test message',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
id: 'voice',
|
|
27
|
+
name: 'Voice',
|
|
28
|
+
description: 'Voice to use for speech',
|
|
29
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
30
|
+
validation: {
|
|
31
|
+
required: false,
|
|
32
|
+
enum: ['man', 'woman', 'alice'],
|
|
33
|
+
},
|
|
34
|
+
defaultValue: 'man',
|
|
35
|
+
options: [
|
|
36
|
+
{ label: 'Man', value: 'man' },
|
|
37
|
+
{ label: 'Woman', value: 'woman' },
|
|
38
|
+
{ label: 'Alice', value: 'alice' },
|
|
39
|
+
],
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
id: 'language',
|
|
43
|
+
name: 'Language',
|
|
44
|
+
description: 'Language code (e.g., en, es, fr)',
|
|
45
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
46
|
+
validation: {
|
|
47
|
+
required: false,
|
|
48
|
+
},
|
|
49
|
+
defaultValue: 'en',
|
|
50
|
+
placeholder: 'en',
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
outputs: [
|
|
54
|
+
{
|
|
55
|
+
id: 'twiml',
|
|
56
|
+
name: 'TwiML',
|
|
57
|
+
description: 'Generated TwiML XML',
|
|
58
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
id: 'message',
|
|
62
|
+
name: 'Message',
|
|
63
|
+
description: 'The message that was said',
|
|
64
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
};
|
|
68
|
+
//# sourceMappingURL=generate-twiml-say.action.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generate-twiml-say.action.js","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/generate-twiml-say.action.ts"],"names":[],"mappings":";;;AAAA,uCAKqB;AACrB,uFAAiF;AAEpE,QAAA,sBAAsB,GAA0B;IAC3D,GAAG,EAAE,oBAAoB;IACzB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EAAE,qBAAa,CAAC,MAAM;IAC9B,IAAI,EAAE,KAAK;IACX,YAAY,EAAE,oDAA6E;IAC3F,MAAM,EAAE;QACN;YACE,EAAE,EAAE,SAAS;YACb,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,IAAI;gBACd,SAAS,EAAE,CAAC;aACb;YACD,WAAW,EAAE,+BAA+B;SAC7C;QACD;YACE,EAAE,EAAE,OAAO;YACX,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC;aAChC;YACD,YAAY,EAAE,KAAK;YACnB,OAAO,EAAE;gBACP,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE;gBAC9B,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE;gBAClC,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE;aACnC;SACF;QACD;YACE,EAAE,EAAE,UAAU;YACd,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;YACD,YAAY,EAAE,IAAI;YAClB,WAAW,EAAE,IAAI;SAClB;KACF;IACD,OAAO,EAAE;QACP;YACE,EAAE,EAAE,OAAO;YACX,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;QACD;YACE,EAAE,EAAE,SAAS;YACb,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;KACF;CACF,CAAC"}
|
|
@@ -1,2 +1,22 @@
|
|
|
1
|
+
export * from './cancel-verification.action';
|
|
2
|
+
export * from './create-conversation.action';
|
|
3
|
+
export * from './create-video-room.action';
|
|
4
|
+
export * from './delete-call.action';
|
|
5
|
+
export * from './delete-message.action';
|
|
6
|
+
export * from './fetch-call.action';
|
|
7
|
+
export * from './fetch-call-recordings.action';
|
|
8
|
+
export * from './fetch-message.action';
|
|
9
|
+
export * from './fetch-verification.action';
|
|
10
|
+
export * from './generate-twiml-dial.action';
|
|
11
|
+
export * from './generate-twiml-say.action';
|
|
12
|
+
export * from './list-calls.action';
|
|
13
|
+
export * from './list-messages.action';
|
|
14
|
+
export * from './lookup-phone-number.action';
|
|
15
|
+
export * from './make-call.action';
|
|
16
|
+
export * from './send-conversation-message.action';
|
|
1
17
|
export * from './send-sms.action';
|
|
18
|
+
export * from './send-verification.action';
|
|
19
|
+
export * from './update-call.action';
|
|
20
|
+
export * from './update-message.action';
|
|
21
|
+
export * from './verify-code.action';
|
|
2
22
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,qBAAqB,CAAC;AACpC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,oBAAoB,CAAC;AACnC,cAAc,oCAAoC,CAAC;AACnD,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC"}
|
|
@@ -14,5 +14,25 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./cancel-verification.action"), exports);
|
|
18
|
+
__exportStar(require("./create-conversation.action"), exports);
|
|
19
|
+
__exportStar(require("./create-video-room.action"), exports);
|
|
20
|
+
__exportStar(require("./delete-call.action"), exports);
|
|
21
|
+
__exportStar(require("./delete-message.action"), exports);
|
|
22
|
+
__exportStar(require("./fetch-call.action"), exports);
|
|
23
|
+
__exportStar(require("./fetch-call-recordings.action"), exports);
|
|
24
|
+
__exportStar(require("./fetch-message.action"), exports);
|
|
25
|
+
__exportStar(require("./fetch-verification.action"), exports);
|
|
26
|
+
__exportStar(require("./generate-twiml-dial.action"), exports);
|
|
27
|
+
__exportStar(require("./generate-twiml-say.action"), exports);
|
|
28
|
+
__exportStar(require("./list-calls.action"), exports);
|
|
29
|
+
__exportStar(require("./list-messages.action"), exports);
|
|
30
|
+
__exportStar(require("./lookup-phone-number.action"), exports);
|
|
31
|
+
__exportStar(require("./make-call.action"), exports);
|
|
32
|
+
__exportStar(require("./send-conversation-message.action"), exports);
|
|
17
33
|
__exportStar(require("./send-sms.action"), exports);
|
|
34
|
+
__exportStar(require("./send-verification.action"), exports);
|
|
35
|
+
__exportStar(require("./update-call.action"), exports);
|
|
36
|
+
__exportStar(require("./update-message.action"), exports);
|
|
37
|
+
__exportStar(require("./verify-code.action"), exports);
|
|
18
38
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C;AAC7C,+DAA6C;AAC7C,6DAA2C;AAC3C,uDAAqC;AACrC,0DAAwC;AACxC,sDAAoC;AACpC,iEAA+C;AAC/C,yDAAuC;AACvC,8DAA4C;AAC5C,+DAA6C;AAC7C,8DAA4C;AAC5C,sDAAoC;AACpC,yDAAuC;AACvC,+DAA6C;AAC7C,qDAAmC;AACnC,qEAAmD;AACnD,oDAAkC;AAClC,6DAA2C;AAC3C,uDAAqC;AACrC,0DAAwC;AACxC,uDAAqC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-calls.action.d.ts","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/list-calls.action.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,qBAAqB,EACtB,MAAM,aAAa,CAAC;AAGrB,eAAO,MAAM,eAAe,EAAE,qBAkF7B,CAAC"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.listCallsAction = void 0;
|
|
4
|
+
const types_1 = require("../../types");
|
|
5
|
+
const list_calls_service_1 = require("../services/list-calls.service");
|
|
6
|
+
exports.listCallsAction = {
|
|
7
|
+
key: 'list-calls',
|
|
8
|
+
name: 'List Calls',
|
|
9
|
+
description: 'List calls with optional filters',
|
|
10
|
+
category: types_1.NODE_CATEGORY.ACTION,
|
|
11
|
+
icon: '📋',
|
|
12
|
+
serviceClass: list_calls_service_1.ListCallsService,
|
|
13
|
+
inputs: [
|
|
14
|
+
{
|
|
15
|
+
id: 'to',
|
|
16
|
+
name: 'To',
|
|
17
|
+
description: 'Filter by recipient phone number',
|
|
18
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
19
|
+
validation: {
|
|
20
|
+
required: false,
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
id: 'from',
|
|
25
|
+
name: 'From',
|
|
26
|
+
description: 'Filter by caller phone number',
|
|
27
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
28
|
+
validation: {
|
|
29
|
+
required: false,
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
id: 'status',
|
|
34
|
+
name: 'Status',
|
|
35
|
+
description: 'Filter by call status',
|
|
36
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
37
|
+
validation: {
|
|
38
|
+
required: false,
|
|
39
|
+
enum: [
|
|
40
|
+
'queued',
|
|
41
|
+
'ringing',
|
|
42
|
+
'in-progress',
|
|
43
|
+
'completed',
|
|
44
|
+
'busy',
|
|
45
|
+
'failed',
|
|
46
|
+
'no-answer',
|
|
47
|
+
'canceled',
|
|
48
|
+
],
|
|
49
|
+
},
|
|
50
|
+
options: [
|
|
51
|
+
{ label: 'Queued', value: 'queued' },
|
|
52
|
+
{ label: 'Ringing', value: 'ringing' },
|
|
53
|
+
{ label: 'In Progress', value: 'in-progress' },
|
|
54
|
+
{ label: 'Completed', value: 'completed' },
|
|
55
|
+
{ label: 'Busy', value: 'busy' },
|
|
56
|
+
{ label: 'Failed', value: 'failed' },
|
|
57
|
+
{ label: 'No Answer', value: 'no-answer' },
|
|
58
|
+
{ label: 'Canceled', value: 'canceled' },
|
|
59
|
+
],
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
id: 'limit',
|
|
63
|
+
name: 'Limit',
|
|
64
|
+
description: 'Maximum number of calls to return',
|
|
65
|
+
type: types_1.FIELD_TYPE.NUMBER,
|
|
66
|
+
validation: {
|
|
67
|
+
required: false,
|
|
68
|
+
min: 1,
|
|
69
|
+
max: 1000,
|
|
70
|
+
},
|
|
71
|
+
defaultValue: 10,
|
|
72
|
+
},
|
|
73
|
+
],
|
|
74
|
+
outputs: [
|
|
75
|
+
{
|
|
76
|
+
id: 'calls',
|
|
77
|
+
name: 'Calls',
|
|
78
|
+
description: 'Array of call objects',
|
|
79
|
+
type: types_1.FIELD_TYPE.ARRAY,
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
id: 'count',
|
|
83
|
+
name: 'Count',
|
|
84
|
+
description: 'Number of calls returned',
|
|
85
|
+
type: types_1.FIELD_TYPE.NUMBER,
|
|
86
|
+
},
|
|
87
|
+
],
|
|
88
|
+
};
|
|
89
|
+
//# sourceMappingURL=list-calls.action.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-calls.action.js","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/list-calls.action.ts"],"names":[],"mappings":";;;AAAA,uCAKqB;AACrB,uEAAkE;AAErD,QAAA,eAAe,GAA0B;IACpD,GAAG,EAAE,YAAY;IACjB,IAAI,EAAE,YAAY;IAClB,WAAW,EAAE,kCAAkC;IAC/C,QAAQ,EAAE,qBAAa,CAAC,MAAM;IAC9B,IAAI,EAAE,IAAI;IACV,YAAY,EAAE,qCAAsE;IACpF,MAAM,EAAE;QACN;YACE,EAAE,EAAE,IAAI;YACR,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,kBAAU,CAAC,KAAK;YACtB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;SACF;QACD;YACE,EAAE,EAAE,MAAM;YACV,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,kBAAU,CAAC,KAAK;YACtB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;SACF;QACD;YACE,EAAE,EAAE,QAAQ;YACZ,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE;oBACJ,QAAQ;oBACR,SAAS;oBACT,aAAa;oBACb,WAAW;oBACX,MAAM;oBACN,QAAQ;oBACR,WAAW;oBACX,UAAU;iBACX;aACF;YACD,OAAO,EAAE;gBACP,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;gBACpC,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE;gBACtC,EAAE,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,aAAa,EAAE;gBAC9C,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW,EAAE;gBAC1C,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE;gBAChC,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;gBACpC,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW,EAAE;gBAC1C,EAAE,KAAK,EAAE,UAAU,EAAE,KAAK,EAAE,UAAU,EAAE;aACzC;SACF;QACD;YACE,EAAE,EAAE,OAAO;YACX,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;gBACf,GAAG,EAAE,CAAC;gBACN,GAAG,EAAE,IAAI;aACV;YACD,YAAY,EAAE,EAAE;SACjB;KACF;IACD,OAAO,EAAE;QACP;YACE,EAAE,EAAE,OAAO;YACX,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,uBAAuB;YACpC,IAAI,EAAE,kBAAU,CAAC,KAAK;SACvB;QACD;YACE,EAAE,EAAE,OAAO;YACX,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;KACF;CACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-messages.action.d.ts","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/list-messages.action.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,qBAAqB,EACtB,MAAM,aAAa,CAAC;AAGrB,eAAO,MAAM,kBAAkB,EAAE,qBAkFhC,CAAC"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.listMessagesAction = void 0;
|
|
4
|
+
const types_1 = require("../../types");
|
|
5
|
+
const list_messages_service_1 = require("../services/list-messages.service");
|
|
6
|
+
exports.listMessagesAction = {
|
|
7
|
+
key: 'list-messages',
|
|
8
|
+
name: 'List Messages',
|
|
9
|
+
description: 'List messages with optional filters',
|
|
10
|
+
category: types_1.NODE_CATEGORY.ACTION,
|
|
11
|
+
icon: '📋',
|
|
12
|
+
serviceClass: list_messages_service_1.ListMessagesService,
|
|
13
|
+
inputs: [
|
|
14
|
+
{
|
|
15
|
+
id: 'to',
|
|
16
|
+
name: 'To',
|
|
17
|
+
description: 'Filter by recipient phone number',
|
|
18
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
19
|
+
validation: {
|
|
20
|
+
required: false,
|
|
21
|
+
},
|
|
22
|
+
placeholder: '+1234567890',
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: 'from',
|
|
26
|
+
name: 'From',
|
|
27
|
+
description: 'Filter by sender phone number',
|
|
28
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
29
|
+
validation: {
|
|
30
|
+
required: false,
|
|
31
|
+
},
|
|
32
|
+
placeholder: '+1234567890',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
id: 'dateSent',
|
|
36
|
+
name: 'Date Sent',
|
|
37
|
+
description: 'Filter by exact date sent (ISO format)',
|
|
38
|
+
type: types_1.FIELD_TYPE.DATE,
|
|
39
|
+
validation: {
|
|
40
|
+
required: false,
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
id: 'dateSentBefore',
|
|
45
|
+
name: 'Date Sent Before',
|
|
46
|
+
description: 'Filter messages sent before this date (ISO format)',
|
|
47
|
+
type: types_1.FIELD_TYPE.DATE,
|
|
48
|
+
validation: {
|
|
49
|
+
required: false,
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
id: 'dateSentAfter',
|
|
54
|
+
name: 'Date Sent After',
|
|
55
|
+
description: 'Filter messages sent after this date (ISO format)',
|
|
56
|
+
type: types_1.FIELD_TYPE.DATE,
|
|
57
|
+
validation: {
|
|
58
|
+
required: false,
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
id: 'limit',
|
|
63
|
+
name: 'Limit',
|
|
64
|
+
description: 'Maximum number of messages to return',
|
|
65
|
+
type: types_1.FIELD_TYPE.NUMBER,
|
|
66
|
+
validation: {
|
|
67
|
+
required: false,
|
|
68
|
+
min: 1,
|
|
69
|
+
max: 1000,
|
|
70
|
+
},
|
|
71
|
+
defaultValue: 10,
|
|
72
|
+
},
|
|
73
|
+
],
|
|
74
|
+
outputs: [
|
|
75
|
+
{
|
|
76
|
+
id: 'messages',
|
|
77
|
+
name: 'Messages',
|
|
78
|
+
description: 'Array of message objects',
|
|
79
|
+
type: types_1.FIELD_TYPE.ARRAY,
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
id: 'count',
|
|
83
|
+
name: 'Count',
|
|
84
|
+
description: 'Number of messages returned',
|
|
85
|
+
type: types_1.FIELD_TYPE.NUMBER,
|
|
86
|
+
},
|
|
87
|
+
],
|
|
88
|
+
};
|
|
89
|
+
//# sourceMappingURL=list-messages.action.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-messages.action.js","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/list-messages.action.ts"],"names":[],"mappings":";;;AAAA,uCAKqB;AACrB,6EAAwE;AAE3D,QAAA,kBAAkB,GAA0B;IACvD,GAAG,EAAE,eAAe;IACpB,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE,qCAAqC;IAClD,QAAQ,EAAE,qBAAa,CAAC,MAAM;IAC9B,IAAI,EAAE,IAAI;IACV,YAAY,EAAE,2CAAyE;IACvF,MAAM,EAAE;QACN;YACE,EAAE,EAAE,IAAI;YACR,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,kBAAU,CAAC,KAAK;YACtB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;YACD,WAAW,EAAE,aAAa;SAC3B;QACD;YACE,EAAE,EAAE,MAAM;YACV,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,kBAAU,CAAC,KAAK;YACtB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;YACD,WAAW,EAAE,aAAa;SAC3B;QACD;YACE,EAAE,EAAE,UAAU;YACd,IAAI,EAAE,WAAW;YACjB,WAAW,EAAE,wCAAwC;YACrD,IAAI,EAAE,kBAAU,CAAC,IAAI;YACrB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;SACF;QACD;YACE,EAAE,EAAE,gBAAgB;YACpB,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,oDAAoD;YACjE,IAAI,EAAE,kBAAU,CAAC,IAAI;YACrB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;SACF;QACD;YACE,EAAE,EAAE,eAAe;YACnB,IAAI,EAAE,iBAAiB;YACvB,WAAW,EAAE,mDAAmD;YAChE,IAAI,EAAE,kBAAU,CAAC,IAAI;YACrB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;SACF;QACD;YACE,EAAE,EAAE,OAAO;YACX,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;gBACf,GAAG,EAAE,CAAC;gBACN,GAAG,EAAE,IAAI;aACV;YACD,YAAY,EAAE,EAAE;SACjB;KACF;IACD,OAAO,EAAE;QACP;YACE,EAAE,EAAE,UAAU;YACd,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,kBAAU,CAAC,KAAK;SACvB;QACD;YACE,EAAE,EAAE,OAAO;YACX,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;KACF;CACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lookup-phone-number.action.d.ts","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/lookup-phone-number.action.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,qBAAqB,EACtB,MAAM,aAAa,CAAC;AAGrB,eAAO,MAAM,uBAAuB,EAAE,qBAwErC,CAAC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.lookupPhoneNumberAction = void 0;
|
|
4
|
+
const types_1 = require("../../types");
|
|
5
|
+
const lookup_phone_number_service_1 = require("../services/lookup-phone-number.service");
|
|
6
|
+
exports.lookupPhoneNumberAction = {
|
|
7
|
+
key: 'lookup-phone-number',
|
|
8
|
+
name: 'Lookup Phone Number',
|
|
9
|
+
description: 'Lookup information about a phone number',
|
|
10
|
+
category: types_1.NODE_CATEGORY.ACTION,
|
|
11
|
+
icon: '🔍',
|
|
12
|
+
serviceClass: lookup_phone_number_service_1.LookupPhoneNumberService,
|
|
13
|
+
inputs: [
|
|
14
|
+
{
|
|
15
|
+
id: 'phoneNumber',
|
|
16
|
+
name: 'Phone Number',
|
|
17
|
+
description: 'Phone number to lookup (E.164 format)',
|
|
18
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
19
|
+
validation: {
|
|
20
|
+
required: true,
|
|
21
|
+
pattern: '^\\+[1-9]\\d{1,14}$',
|
|
22
|
+
},
|
|
23
|
+
placeholder: '+1234567890',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
id: 'countryCode',
|
|
27
|
+
name: 'Country Code',
|
|
28
|
+
description: 'Country code (optional, helps with formatting)',
|
|
29
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
30
|
+
validation: {
|
|
31
|
+
required: false,
|
|
32
|
+
},
|
|
33
|
+
placeholder: 'US',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
id: 'type',
|
|
37
|
+
name: 'Type',
|
|
38
|
+
description: 'Type of information to retrieve (comma-separated)',
|
|
39
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
40
|
+
validation: {
|
|
41
|
+
required: false,
|
|
42
|
+
},
|
|
43
|
+
placeholder: 'carrier,caller-name',
|
|
44
|
+
},
|
|
45
|
+
],
|
|
46
|
+
outputs: [
|
|
47
|
+
{
|
|
48
|
+
id: 'phoneNumber',
|
|
49
|
+
name: 'Phone Number',
|
|
50
|
+
description: 'Phone number in E.164 format',
|
|
51
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
id: 'countryCode',
|
|
55
|
+
name: 'Country Code',
|
|
56
|
+
description: 'Country code',
|
|
57
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
id: 'nationalFormat',
|
|
61
|
+
name: 'National Format',
|
|
62
|
+
description: 'Phone number in national format',
|
|
63
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
id: 'carrier',
|
|
67
|
+
name: 'Carrier',
|
|
68
|
+
description: 'Carrier information',
|
|
69
|
+
type: types_1.FIELD_TYPE.OBJECT,
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
id: 'callerName',
|
|
73
|
+
name: 'Caller Name',
|
|
74
|
+
description: 'Caller name information',
|
|
75
|
+
type: types_1.FIELD_TYPE.OBJECT,
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
};
|
|
79
|
+
//# sourceMappingURL=lookup-phone-number.action.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lookup-phone-number.action.js","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/lookup-phone-number.action.ts"],"names":[],"mappings":";;;AAAA,uCAKqB;AACrB,yFAAmF;AAEtE,QAAA,uBAAuB,GAA0B;IAC5D,GAAG,EAAE,qBAAqB;IAC1B,IAAI,EAAE,qBAAqB;IAC3B,WAAW,EAAE,yCAAyC;IACtD,QAAQ,EAAE,qBAAa,CAAC,MAAM;IAC9B,IAAI,EAAE,IAAI;IACV,YAAY,EAAE,sDAA8E;IAC5F,MAAM,EAAE;QACN;YACE,EAAE,EAAE,aAAa;YACjB,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,uCAAuC;YACpD,IAAI,EAAE,kBAAU,CAAC,KAAK;YACtB,UAAU,EAAE;gBACV,QAAQ,EAAE,IAAI;gBACd,OAAO,EAAE,qBAAqB;aAC/B;YACD,WAAW,EAAE,aAAa;SAC3B;QACD;YACE,EAAE,EAAE,aAAa;YACjB,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,gDAAgD;YAC7D,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;YACD,WAAW,EAAE,IAAI;SAClB;QACD;YACE,EAAE,EAAE,MAAM;YACV,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,mDAAmD;YAChE,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;YACD,WAAW,EAAE,qBAAqB;SACnC;KACF;IACD,OAAO,EAAE;QACP;YACE,EAAE,EAAE,aAAa;YACjB,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,kBAAU,CAAC,KAAK;SACvB;QACD;YACE,EAAE,EAAE,aAAa;YACjB,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;QACD;YACE,EAAE,EAAE,gBAAgB;YACpB,IAAI,EAAE,iBAAiB;YACvB,WAAW,EAAE,iCAAiC;YAC9C,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;QACD;YACE,EAAE,EAAE,SAAS;YACb,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;QACD;YACE,EAAE,EAAE,YAAY;YAChB,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;KACF;CACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"make-call.action.d.ts","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/make-call.action.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,qBAAqB,EACtB,MAAM,aAAa,CAAC;AAGrB,eAAO,MAAM,cAAc,EAAE,qBAsG5B,CAAC"}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.makeCallAction = void 0;
|
|
4
|
+
const types_1 = require("../../types");
|
|
5
|
+
const make_call_service_1 = require("../services/make-call.service");
|
|
6
|
+
exports.makeCallAction = {
|
|
7
|
+
key: 'make-call',
|
|
8
|
+
name: 'Make Call',
|
|
9
|
+
description: 'Make a phone call',
|
|
10
|
+
category: types_1.NODE_CATEGORY.ACTION,
|
|
11
|
+
icon: '📞',
|
|
12
|
+
serviceClass: make_call_service_1.MakeCallService,
|
|
13
|
+
inputs: [
|
|
14
|
+
{
|
|
15
|
+
id: 'to',
|
|
16
|
+
name: 'To',
|
|
17
|
+
description: 'Phone number to call (E.164 format)',
|
|
18
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
19
|
+
validation: {
|
|
20
|
+
required: true,
|
|
21
|
+
pattern: '^\\+[1-9]\\d{1,14}$',
|
|
22
|
+
},
|
|
23
|
+
placeholder: '+1234567890',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
id: 'url',
|
|
27
|
+
name: 'URL',
|
|
28
|
+
description: 'URL to fetch TwiML instructions from',
|
|
29
|
+
type: types_1.FIELD_TYPE.URL,
|
|
30
|
+
validation: {
|
|
31
|
+
required: false,
|
|
32
|
+
},
|
|
33
|
+
placeholder: 'https://example.com/twiml',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
id: 'twiml',
|
|
37
|
+
name: 'TwiML',
|
|
38
|
+
description: 'TwiML instructions (alternative to URL)',
|
|
39
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
40
|
+
validation: {
|
|
41
|
+
required: false,
|
|
42
|
+
},
|
|
43
|
+
placeholder: '<Response><Say>Hello</Say></Response>',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
id: 'method',
|
|
47
|
+
name: 'HTTP Method',
|
|
48
|
+
description: 'HTTP method for URL request',
|
|
49
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
50
|
+
validation: {
|
|
51
|
+
required: false,
|
|
52
|
+
enum: ['GET', 'POST'],
|
|
53
|
+
},
|
|
54
|
+
defaultValue: 'POST',
|
|
55
|
+
options: [
|
|
56
|
+
{ label: 'GET', value: 'GET' },
|
|
57
|
+
{ label: 'POST', value: 'POST' },
|
|
58
|
+
],
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
id: 'record',
|
|
62
|
+
name: 'Record',
|
|
63
|
+
description: 'Whether to record the call',
|
|
64
|
+
type: types_1.FIELD_TYPE.BOOLEAN,
|
|
65
|
+
validation: {
|
|
66
|
+
required: false,
|
|
67
|
+
},
|
|
68
|
+
defaultValue: false,
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
id: 'timeout',
|
|
72
|
+
name: 'Timeout',
|
|
73
|
+
description: 'Call timeout in seconds',
|
|
74
|
+
type: types_1.FIELD_TYPE.NUMBER,
|
|
75
|
+
validation: {
|
|
76
|
+
required: false,
|
|
77
|
+
min: 1,
|
|
78
|
+
max: 600,
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
outputs: [
|
|
83
|
+
{
|
|
84
|
+
id: 'callSid',
|
|
85
|
+
name: 'Call SID',
|
|
86
|
+
description: 'Twilio call SID',
|
|
87
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
id: 'status',
|
|
91
|
+
name: 'Status',
|
|
92
|
+
description: 'Call status',
|
|
93
|
+
type: types_1.FIELD_TYPE.STRING,
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
id: 'to',
|
|
97
|
+
name: 'To',
|
|
98
|
+
description: 'Recipient phone number',
|
|
99
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
id: 'from',
|
|
103
|
+
name: 'From',
|
|
104
|
+
description: 'Caller phone number',
|
|
105
|
+
type: types_1.FIELD_TYPE.PHONE,
|
|
106
|
+
},
|
|
107
|
+
],
|
|
108
|
+
};
|
|
109
|
+
//# sourceMappingURL=make-call.action.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"make-call.action.js","sourceRoot":"","sources":["../../../../src/modules/twilio/actions/make-call.action.ts"],"names":[],"mappings":";;;AAAA,uCAKqB;AACrB,qEAAgE;AAEnD,QAAA,cAAc,GAA0B;IACnD,GAAG,EAAE,WAAW;IAChB,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE,qBAAa,CAAC,MAAM;IAC9B,IAAI,EAAE,IAAI;IACV,YAAY,EAAE,mCAAqE;IACnF,MAAM,EAAE;QACN;YACE,EAAE,EAAE,IAAI;YACR,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,qCAAqC;YAClD,IAAI,EAAE,kBAAU,CAAC,KAAK;YACtB,UAAU,EAAE;gBACV,QAAQ,EAAE,IAAI;gBACd,OAAO,EAAE,qBAAqB;aAC/B;YACD,WAAW,EAAE,aAAa;SAC3B;QACD;YACE,EAAE,EAAE,KAAK;YACT,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,sCAAsC;YACnD,IAAI,EAAE,kBAAU,CAAC,GAAG;YACpB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;YACD,WAAW,EAAE,2BAA2B;SACzC;QACD;YACE,EAAE,EAAE,OAAO;YACX,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;YACD,WAAW,EAAE,uCAAuC;SACrD;QACD;YACE,EAAE,EAAE,QAAQ;YACZ,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC;aACtB;YACD,YAAY,EAAE,MAAM;YACpB,OAAO,EAAE;gBACP,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE;gBAC9B,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE;aACjC;SACF;QACD;YACE,EAAE,EAAE,QAAQ;YACZ,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,4BAA4B;YACzC,IAAI,EAAE,kBAAU,CAAC,OAAO;YACxB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;aAChB;YACD,YAAY,EAAE,KAAK;SACpB;QACD;YACE,EAAE,EAAE,SAAS;YACb,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yBAAyB;YACtC,IAAI,EAAE,kBAAU,CAAC,MAAM;YACvB,UAAU,EAAE;gBACV,QAAQ,EAAE,KAAK;gBACf,GAAG,EAAE,CAAC;gBACN,GAAG,EAAE,GAAG;aACT;SACF;KACF;IACD,OAAO,EAAE;QACP;YACE,EAAE,EAAE,SAAS;YACb,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;QACD;YACE,EAAE,EAAE,QAAQ;YACZ,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,aAAa;YAC1B,IAAI,EAAE,kBAAU,CAAC,MAAM;SACxB;QACD;YACE,EAAE,EAAE,IAAI;YACR,IAAI,EAAE,IAAI;YACV,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,kBAAU,CAAC,KAAK;SACvB;QACD;YACE,EAAE,EAAE,MAAM;YACV,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,kBAAU,CAAC,KAAK;SACvB;KACF;CACF,CAAC"}
|