|
1 |
| -import { createExtension } from '@cognigy/extension-tools'; |
2 |
| -import { simpleConnection } from './connections/8x8SimpleConnection'; |
3 |
| -import { getCustomerNodes } from './nodes/customer'; |
4 |
| -import { getScheduleNodes } from './nodes/schedule'; |
5 |
| -import { getTestConditionOfQueueNode } from './nodes/testConditionOfQueue'; |
6 |
| -import { getCaseNodes } from './nodes/case'; |
7 |
| -import { getVoiceHandoverNode } from './nodes/voiceHandover'; |
8 |
| -import { getDataAugmentationNode } from './nodes/dataAugmentation'; |
| 1 | +import { createExtension } from "@cognigy/extension-tools"; |
| 2 | +import { smsConnection } from "./connections/8x8ConnectionSMS"; |
| 3 | +import { simpleConnection } from "./connections/8x8SimpleConnection"; |
| 4 | +import { getSMSNodes } from "./nodes/SMS"; |
| 5 | +import { getCaseNodes } from "./nodes/case"; |
| 6 | +import { getCustomerNodes } from "./nodes/customer"; |
| 7 | +import { getDataAugmentationNode } from "./nodes/dataAugmentation"; |
| 8 | +import { getScheduleNodes } from "./nodes/schedule"; |
| 9 | +import { getTestConditionOfQueueNode } from "./nodes/testConditionOfQueue"; |
| 10 | +import { getVoiceHandoverNode } from "./nodes/voiceHandover"; |
9 | 11 |
|
10 | 12 | export default createExtension({
|
11 | 13 | nodes: [
|
| 14 | + ...getSMSNodes(), |
12 | 15 | ...getCustomerNodes(),
|
13 | 16 | ...getScheduleNodes(),
|
14 | 17 | ...getTestConditionOfQueueNode(),
|
15 | 18 | ...getCaseNodes(),
|
16 | 19 | ...getVoiceHandoverNode(),
|
17 |
| - ...getDataAugmentationNode() |
18 |
| - ], |
19 |
| - connections: [ |
20 |
| - simpleConnection |
| 20 | + ...getDataAugmentationNode(), |
21 | 21 | ],
|
| 22 | + connections: [simpleConnection, smsConnection], |
22 | 23 | options: {
|
23 |
| - label: '8x8' |
24 |
| - } |
| 24 | + label: "8x8", |
| 25 | + }, |
25 | 26 | });
|
0 commit comments