@chatbotkit/cli 1.26.2 → 1.27.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.
Files changed (138) hide show
  1. package/dist/cjs/color.cjs +11 -1
  2. package/dist/cjs/color.d.ts +4 -0
  3. package/dist/cjs/command/api/blueprint/index.cjs +81 -0
  4. package/dist/cjs/command/api/blueprint/index.d.ts +8 -0
  5. package/dist/cjs/command/api/bot/index.cjs +61 -0
  6. package/dist/cjs/command/api/bot/index.d.ts +6 -0
  7. package/dist/cjs/command/api/contact/index.cjs +61 -0
  8. package/dist/cjs/command/api/contact/index.d.ts +6 -0
  9. package/dist/cjs/command/api/dataset/file/index.cjs +76 -0
  10. package/dist/cjs/command/api/dataset/file/index.d.ts +7 -0
  11. package/dist/cjs/command/api/dataset/index.cjs +7 -2
  12. package/dist/cjs/command/api/dataset/record/index.cjs +83 -0
  13. package/dist/cjs/command/api/dataset/record/index.d.ts +7 -0
  14. package/dist/cjs/command/api/file/index.cjs +71 -0
  15. package/dist/cjs/command/api/file/index.d.ts +7 -0
  16. package/dist/cjs/command/api/index.cjs +24 -8
  17. package/dist/cjs/command/api/integration/discord/index.cjs +71 -0
  18. package/dist/cjs/command/api/integration/discord/index.d.ts +7 -0
  19. package/dist/cjs/command/api/integration/email/index.cjs +71 -0
  20. package/dist/cjs/command/api/integration/email/index.d.ts +7 -0
  21. package/dist/cjs/command/api/integration/extract/index.cjs +61 -0
  22. package/dist/cjs/command/api/integration/extract/index.d.ts +6 -0
  23. package/dist/cjs/command/api/integration/index.cjs +44 -0
  24. package/dist/cjs/command/api/integration/index.d.ts +3 -0
  25. package/dist/cjs/command/api/integration/instagram/index.cjs +71 -0
  26. package/dist/cjs/command/api/integration/instagram/index.d.ts +7 -0
  27. package/dist/cjs/command/api/integration/mcpserver/index.cjs +61 -0
  28. package/dist/cjs/command/api/integration/mcpserver/index.d.ts +6 -0
  29. package/dist/cjs/command/api/integration/messenger/index.cjs +71 -0
  30. package/dist/cjs/command/api/integration/messenger/index.d.ts +7 -0
  31. package/dist/cjs/command/api/integration/notion/index.cjs +71 -0
  32. package/dist/cjs/command/api/integration/notion/index.d.ts +7 -0
  33. package/dist/cjs/command/api/integration/sitemap/index.cjs +71 -0
  34. package/dist/cjs/command/api/integration/sitemap/index.d.ts +7 -0
  35. package/dist/cjs/command/api/integration/slack/index.cjs +71 -0
  36. package/dist/cjs/command/api/integration/slack/index.d.ts +7 -0
  37. package/dist/cjs/command/api/integration/support/index.cjs +61 -0
  38. package/dist/cjs/command/api/integration/support/index.d.ts +6 -0
  39. package/dist/cjs/command/api/integration/telegram/index.cjs +71 -0
  40. package/dist/cjs/command/api/integration/telegram/index.d.ts +7 -0
  41. package/dist/cjs/command/api/integration/trigger/index.cjs +71 -0
  42. package/dist/cjs/command/api/integration/trigger/index.d.ts +7 -0
  43. package/dist/cjs/command/api/integration/twilio/index.cjs +71 -0
  44. package/dist/cjs/command/api/integration/twilio/index.d.ts +7 -0
  45. package/dist/cjs/command/api/integration/whatsapp/index.cjs +71 -0
  46. package/dist/cjs/command/api/integration/whatsapp/index.d.ts +7 -0
  47. package/dist/cjs/command/api/integration/widget/index.cjs +71 -0
  48. package/dist/cjs/command/api/integration/widget/index.d.ts +7 -0
  49. package/dist/cjs/command/api/memory/index.cjs +79 -0
  50. package/dist/cjs/command/api/memory/index.d.ts +7 -0
  51. package/dist/cjs/command/api/secret/index.cjs +81 -0
  52. package/dist/cjs/command/api/secret/index.d.ts +8 -0
  53. package/dist/cjs/command/api/skillset/ability/index.cjs +83 -0
  54. package/dist/cjs/command/api/skillset/ability/index.d.ts +7 -0
  55. package/dist/cjs/command/api/skillset/index.cjs +5 -2
  56. package/dist/cjs/command/api/team/index.cjs +42 -0
  57. package/dist/cjs/command/api/team/index.d.ts +4 -0
  58. package/dist/cjs/command/run/index.cjs +83 -0
  59. package/dist/cjs/command/run/index.d.ts +3 -0
  60. package/dist/cjs/index.cjs +7 -1
  61. package/dist/cjs/index.d.ts +4 -0
  62. package/dist/cjs/input.cjs +28 -0
  63. package/dist/cjs/input.d.ts +5 -0
  64. package/dist/cjs/loader/hooks.cjs +82 -0
  65. package/dist/cjs/loader/hooks.d.ts +4 -0
  66. package/dist/cjs/loader/index.cjs +8 -0
  67. package/dist/cjs/loader/index.d.ts +1 -0
  68. package/dist/cjs/solution/index.cjs +7 -1
  69. package/dist/esm/color.d.ts +4 -0
  70. package/dist/esm/color.js +8 -0
  71. package/dist/esm/command/api/blueprint/index.d.ts +8 -0
  72. package/dist/esm/command/api/blueprint/index.js +78 -0
  73. package/dist/esm/command/api/bot/index.d.ts +6 -0
  74. package/dist/esm/command/api/bot/index.js +58 -0
  75. package/dist/esm/command/api/contact/index.d.ts +6 -0
  76. package/dist/esm/command/api/contact/index.js +58 -0
  77. package/dist/esm/command/api/dataset/file/index.d.ts +7 -0
  78. package/dist/esm/command/api/dataset/file/index.js +73 -0
  79. package/dist/esm/command/api/dataset/index.js +4 -0
  80. package/dist/esm/command/api/dataset/record/index.d.ts +7 -0
  81. package/dist/esm/command/api/dataset/record/index.js +80 -0
  82. package/dist/esm/command/api/file/index.d.ts +7 -0
  83. package/dist/esm/command/api/file/index.js +68 -0
  84. package/dist/esm/command/api/index.js +17 -1
  85. package/dist/esm/command/api/integration/discord/index.d.ts +7 -0
  86. package/dist/esm/command/api/integration/discord/index.js +68 -0
  87. package/dist/esm/command/api/integration/email/index.d.ts +7 -0
  88. package/dist/esm/command/api/integration/email/index.js +68 -0
  89. package/dist/esm/command/api/integration/extract/index.d.ts +6 -0
  90. package/dist/esm/command/api/integration/extract/index.js +58 -0
  91. package/dist/esm/command/api/integration/index.d.ts +3 -0
  92. package/dist/esm/command/api/integration/index.js +40 -0
  93. package/dist/esm/command/api/integration/instagram/index.d.ts +7 -0
  94. package/dist/esm/command/api/integration/instagram/index.js +68 -0
  95. package/dist/esm/command/api/integration/mcpserver/index.d.ts +6 -0
  96. package/dist/esm/command/api/integration/mcpserver/index.js +58 -0
  97. package/dist/esm/command/api/integration/messenger/index.d.ts +7 -0
  98. package/dist/esm/command/api/integration/messenger/index.js +68 -0
  99. package/dist/esm/command/api/integration/notion/index.d.ts +7 -0
  100. package/dist/esm/command/api/integration/notion/index.js +68 -0
  101. package/dist/esm/command/api/integration/sitemap/index.d.ts +7 -0
  102. package/dist/esm/command/api/integration/sitemap/index.js +68 -0
  103. package/dist/esm/command/api/integration/slack/index.d.ts +7 -0
  104. package/dist/esm/command/api/integration/slack/index.js +68 -0
  105. package/dist/esm/command/api/integration/support/index.d.ts +6 -0
  106. package/dist/esm/command/api/integration/support/index.js +58 -0
  107. package/dist/esm/command/api/integration/telegram/index.d.ts +7 -0
  108. package/dist/esm/command/api/integration/telegram/index.js +68 -0
  109. package/dist/esm/command/api/integration/trigger/index.d.ts +7 -0
  110. package/dist/esm/command/api/integration/trigger/index.js +68 -0
  111. package/dist/esm/command/api/integration/twilio/index.d.ts +7 -0
  112. package/dist/esm/command/api/integration/twilio/index.js +68 -0
  113. package/dist/esm/command/api/integration/whatsapp/index.d.ts +7 -0
  114. package/dist/esm/command/api/integration/whatsapp/index.js +68 -0
  115. package/dist/esm/command/api/integration/widget/index.d.ts +7 -0
  116. package/dist/esm/command/api/integration/widget/index.js +68 -0
  117. package/dist/esm/command/api/memory/index.d.ts +7 -0
  118. package/dist/esm/command/api/memory/index.js +76 -0
  119. package/dist/esm/command/api/secret/index.d.ts +8 -0
  120. package/dist/esm/command/api/secret/index.js +78 -0
  121. package/dist/esm/command/api/skillset/ability/index.d.ts +7 -0
  122. package/dist/esm/command/api/skillset/ability/index.js +80 -0
  123. package/dist/esm/command/api/skillset/index.js +2 -0
  124. package/dist/esm/command/api/team/index.d.ts +4 -0
  125. package/dist/esm/command/api/team/index.js +39 -0
  126. package/dist/esm/command/run/index.d.ts +3 -0
  127. package/dist/esm/command/run/index.js +80 -0
  128. package/dist/esm/index.d.ts +4 -0
  129. package/dist/esm/index.js +4 -1
  130. package/dist/esm/input.d.ts +5 -0
  131. package/dist/esm/input.js +27 -0
  132. package/dist/esm/loader/hooks.d.ts +4 -0
  133. package/dist/esm/loader/hooks.js +79 -0
  134. package/dist/esm/loader/index.d.ts +1 -0
  135. package/dist/esm/loader/index.js +6 -0
  136. package/dist/esm/solution/index.d.ts +104 -64
  137. package/dist/esm/solution/index.js +7 -1
  138. package/package.json +884 -26
@@ -40,6 +40,7 @@ export const ExtractIntegrationResourceConfigSchema: ResourceConfigSchemaFor<"ex
40
40
  export const McpServerIntegrationResourceConfigSchema: ResourceConfigSchemaFor<"mcpserverIntegration", import("@chatbotkit/sdk/integration/mcpserver/v1").McpServerIntegrationCreateRequest>;
41
41
  export const TwilioIntegrationResourceConfigSchema: ResourceConfigSchemaFor<"twilioIntegration", import("@chatbotkit/sdk/integration/twilio/v1").TwilioIntegrationCreateRequest>;
42
42
  export const ResourceConfigSchema: z.ZodUnion<[ResourceConfigSchemaFor<"blueprint", {
43
+ alias?: string;
43
44
  name?: string;
44
45
  description?: string;
45
46
  meta?: {
@@ -47,6 +48,7 @@ export const ResourceConfigSchema: z.ZodUnion<[ResourceConfigSchemaFor<"blueprin
47
48
  };
48
49
  visibility?: "private" | "protected" | "public";
49
50
  }>, ResourceConfigSchemaFor<"bot", import("@chatbotkit/sdk/bot/v1").BotCreateRequest>, ResourceConfigSchemaFor<"dataset", {
51
+ alias?: string;
50
52
  name?: string;
51
53
  description?: string;
52
54
  meta?: {
@@ -64,6 +66,7 @@ export const ResourceConfigSchema: z.ZodUnion<[ResourceConfigSchemaFor<"blueprin
64
66
  separators?: string;
65
67
  visibility?: "private" | "protected" | "public";
66
68
  }>, ResourceConfigSchemaFor<"file", {
69
+ alias?: string;
67
70
  name?: string;
68
71
  description?: string;
69
72
  meta?: {
@@ -72,6 +75,7 @@ export const ResourceConfigSchema: z.ZodUnion<[ResourceConfigSchemaFor<"blueprin
72
75
  blueprintId?: string;
73
76
  visibility?: "private" | "protected" | "public";
74
77
  }>, ResourceConfigSchemaFor<"secret", {
78
+ alias?: string;
75
79
  name?: string;
76
80
  description?: string;
77
81
  meta?: {
@@ -86,6 +90,7 @@ export const ResourceConfigSchema: z.ZodUnion<[ResourceConfigSchemaFor<"blueprin
86
90
  };
87
91
  visibility?: "private" | "protected" | "public";
88
92
  }>, ResourceConfigSchemaFor<"skillset", {
93
+ alias?: string;
89
94
  name?: string;
90
95
  description?: string;
91
96
  meta?: {
@@ -264,6 +269,7 @@ export const ResourceConfigSchema: z.ZodUnion<[ResourceConfigSchemaFor<"blueprin
264
269
  [key: string]: unknown;
265
270
  };
266
271
  request?: string;
272
+ model?: string;
267
273
  }>, ResourceConfigSchemaFor<"mcpserverIntegration", {
268
274
  name?: string;
269
275
  description?: string;
@@ -286,6 +292,7 @@ export const ResourceConfigSchema: z.ZodUnion<[ResourceConfigSchemaFor<"blueprin
286
292
  export const SolutionConfigSchema: z.ZodObject<{
287
293
  version: z.ZodLiteral<1>;
288
294
  resources: z.ZodArray<z.ZodUnion<[ResourceConfigSchemaFor<"blueprint", {
295
+ alias?: string;
289
296
  name?: string;
290
297
  description?: string;
291
298
  meta?: {
@@ -293,6 +300,7 @@ export const SolutionConfigSchema: z.ZodObject<{
293
300
  };
294
301
  visibility?: "private" | "protected" | "public";
295
302
  }>, ResourceConfigSchemaFor<"bot", import("@chatbotkit/sdk/bot/v1").BotCreateRequest>, ResourceConfigSchemaFor<"dataset", {
303
+ alias?: string;
296
304
  name?: string;
297
305
  description?: string;
298
306
  meta?: {
@@ -310,6 +318,7 @@ export const SolutionConfigSchema: z.ZodObject<{
310
318
  separators?: string;
311
319
  visibility?: "private" | "protected" | "public";
312
320
  }>, ResourceConfigSchemaFor<"file", {
321
+ alias?: string;
313
322
  name?: string;
314
323
  description?: string;
315
324
  meta?: {
@@ -318,6 +327,7 @@ export const SolutionConfigSchema: z.ZodObject<{
318
327
  blueprintId?: string;
319
328
  visibility?: "private" | "protected" | "public";
320
329
  }>, ResourceConfigSchemaFor<"secret", {
330
+ alias?: string;
321
331
  name?: string;
322
332
  description?: string;
323
333
  meta?: {
@@ -332,6 +342,7 @@ export const SolutionConfigSchema: z.ZodObject<{
332
342
  };
333
343
  visibility?: "private" | "protected" | "public";
334
344
  }>, ResourceConfigSchemaFor<"skillset", {
345
+ alias?: string;
335
346
  name?: string;
336
347
  description?: string;
337
348
  meta?: {
@@ -510,6 +521,7 @@ export const SolutionConfigSchema: z.ZodObject<{
510
521
  [key: string]: unknown;
511
522
  };
512
523
  request?: string;
524
+ model?: string;
513
525
  }>, ResourceConfigSchemaFor<"mcpserverIntegration", {
514
526
  name?: string;
515
527
  description?: string;
@@ -535,6 +547,7 @@ export const SolutionConfigSchema: z.ZodObject<{
535
547
  type: "blueprint";
536
548
  properties: {
537
549
  name?: string | undefined;
550
+ alias?: string | undefined;
538
551
  description?: string | undefined;
539
552
  meta?: {
540
553
  [key: string]: unknown;
@@ -546,13 +559,14 @@ export const SolutionConfigSchema: z.ZodObject<{
546
559
  } | {
547
560
  type: "bot";
548
561
  properties: {
562
+ name?: string | undefined;
549
563
  model?: import("@chatbotkit/sdk/model/v1").Model | undefined;
550
564
  backstory?: string | undefined;
551
565
  datasetId?: string | undefined;
552
566
  skillsetId?: string | undefined;
553
567
  privacy?: boolean | undefined;
554
568
  moderation?: boolean | undefined;
555
- name?: string | undefined;
569
+ alias?: string | undefined;
556
570
  description?: string | undefined;
557
571
  meta?: {
558
572
  [key: string]: unknown;
@@ -566,6 +580,7 @@ export const SolutionConfigSchema: z.ZodObject<{
566
580
  type: "dataset";
567
581
  properties: {
568
582
  name?: string | undefined;
583
+ alias?: string | undefined;
569
584
  description?: string | undefined;
570
585
  meta?: {
571
586
  [key: string]: unknown;
@@ -588,6 +603,7 @@ export const SolutionConfigSchema: z.ZodObject<{
588
603
  type: "file";
589
604
  properties: {
590
605
  name?: string | undefined;
606
+ alias?: string | undefined;
591
607
  description?: string | undefined;
592
608
  meta?: {
593
609
  [key: string]: unknown;
@@ -603,6 +619,7 @@ export const SolutionConfigSchema: z.ZodObject<{
603
619
  value?: string | undefined;
604
620
  type?: "plain" | "basic" | "bearer" | "oauth" | "template" | "reference" | undefined;
605
621
  name?: string | undefined;
622
+ alias?: string | undefined;
606
623
  description?: string | undefined;
607
624
  meta?: {
608
625
  [key: string]: unknown;
@@ -620,6 +637,7 @@ export const SolutionConfigSchema: z.ZodObject<{
620
637
  type: "skillset";
621
638
  properties: {
622
639
  name?: string | undefined;
640
+ alias?: string | undefined;
623
641
  description?: string | undefined;
624
642
  meta?: {
625
643
  [key: string]: unknown;
@@ -632,11 +650,11 @@ export const SolutionConfigSchema: z.ZodObject<{
632
650
  } | {
633
651
  type: "widgetIntegration";
634
652
  properties: {
653
+ name?: string | undefined;
635
654
  attachments?: boolean | undefined;
636
655
  botId?: string | undefined;
637
656
  tools?: boolean | undefined;
638
657
  stream?: boolean | undefined;
639
- name?: string | undefined;
640
658
  description?: string | undefined;
641
659
  meta?: {
642
660
  [key: string]: unknown;
@@ -673,8 +691,8 @@ export const SolutionConfigSchema: z.ZodObject<{
673
691
  } | {
674
692
  type: "sitemapIntegration";
675
693
  properties: {
676
- datasetId?: string | undefined;
677
694
  name?: string | undefined;
695
+ datasetId?: string | undefined;
678
696
  description?: string | undefined;
679
697
  meta?: {
680
698
  [key: string]: unknown;
@@ -692,8 +710,8 @@ export const SolutionConfigSchema: z.ZodObject<{
692
710
  } | {
693
711
  type: "slackIntegration";
694
712
  properties: {
695
- botId?: string | undefined;
696
713
  name?: string | undefined;
714
+ botId?: string | undefined;
697
715
  description?: string | undefined;
698
716
  meta?: {
699
717
  [key: string]: unknown;
@@ -714,8 +732,8 @@ export const SolutionConfigSchema: z.ZodObject<{
714
732
  } | {
715
733
  type: "discordIntegration";
716
734
  properties: {
717
- botId?: string | undefined;
718
735
  name?: string | undefined;
736
+ botId?: string | undefined;
719
737
  description?: string | undefined;
720
738
  meta?: {
721
739
  [key: string]: unknown;
@@ -733,9 +751,9 @@ export const SolutionConfigSchema: z.ZodObject<{
733
751
  } | {
734
752
  type: "telegramIntegration";
735
753
  properties: {
754
+ name?: string | undefined;
736
755
  attachments?: boolean | undefined;
737
756
  botId?: string | undefined;
738
- name?: string | undefined;
739
757
  description?: string | undefined;
740
758
  meta?: {
741
759
  [key: string]: unknown;
@@ -750,9 +768,9 @@ export const SolutionConfigSchema: z.ZodObject<{
750
768
  } | {
751
769
  type: "whatsappIntegration";
752
770
  properties: {
771
+ name?: string | undefined;
753
772
  attachments?: boolean | undefined;
754
773
  botId?: string | undefined;
755
- name?: string | undefined;
756
774
  description?: string | undefined;
757
775
  meta?: {
758
776
  [key: string]: unknown;
@@ -768,9 +786,9 @@ export const SolutionConfigSchema: z.ZodObject<{
768
786
  } | {
769
787
  type: "messengerIntegration";
770
788
  properties: {
789
+ name?: string | undefined;
771
790
  attachments?: boolean | undefined;
772
791
  botId?: string | undefined;
773
- name?: string | undefined;
774
792
  description?: string | undefined;
775
793
  meta?: {
776
794
  [key: string]: unknown;
@@ -784,9 +802,9 @@ export const SolutionConfigSchema: z.ZodObject<{
784
802
  } | {
785
803
  type: "notionIntegration";
786
804
  properties: {
805
+ name?: string | undefined;
787
806
  datasetId?: string | undefined;
788
807
  token?: string | undefined;
789
- name?: string | undefined;
790
808
  description?: string | undefined;
791
809
  meta?: {
792
810
  [key: string]: unknown;
@@ -800,9 +818,9 @@ export const SolutionConfigSchema: z.ZodObject<{
800
818
  } | {
801
819
  type: "emailIntegration";
802
820
  properties: {
821
+ name?: string | undefined;
803
822
  attachments?: boolean | undefined;
804
823
  botId?: string | undefined;
805
- name?: string | undefined;
806
824
  description?: string | undefined;
807
825
  meta?: {
808
826
  [key: string]: unknown;
@@ -816,8 +834,8 @@ export const SolutionConfigSchema: z.ZodObject<{
816
834
  } | {
817
835
  type: "triggerIntegration";
818
836
  properties: {
819
- botId?: string | undefined;
820
837
  name?: string | undefined;
838
+ botId?: string | undefined;
821
839
  description?: string | undefined;
822
840
  meta?: {
823
841
  [key: string]: unknown;
@@ -832,22 +850,23 @@ export const SolutionConfigSchema: z.ZodObject<{
832
850
  } | {
833
851
  type: "supportIntegration";
834
852
  properties: {
835
- botId?: string | undefined;
836
853
  name?: string | undefined;
854
+ botId?: string | undefined;
855
+ email?: string | undefined;
837
856
  description?: string | undefined;
838
857
  meta?: {
839
858
  [key: string]: unknown;
840
859
  } | undefined;
841
860
  blueprintId?: string | undefined;
842
- email?: string | undefined;
843
861
  };
844
862
  slug?: string | undefined;
845
863
  id?: string | undefined;
846
864
  } | {
847
865
  type: "extractIntegration";
848
866
  properties: {
849
- botId?: string | undefined;
850
867
  name?: string | undefined;
868
+ botId?: string | undefined;
869
+ model?: string | undefined;
851
870
  description?: string | undefined;
852
871
  meta?: {
853
872
  [key: string]: unknown;
@@ -863,8 +882,8 @@ export const SolutionConfigSchema: z.ZodObject<{
863
882
  } | {
864
883
  type: "mcpserverIntegration";
865
884
  properties: {
866
- skillsetId?: string | undefined;
867
885
  name?: string | undefined;
886
+ skillsetId?: string | undefined;
868
887
  description?: string | undefined;
869
888
  meta?: {
870
889
  [key: string]: unknown;
@@ -876,8 +895,8 @@ export const SolutionConfigSchema: z.ZodObject<{
876
895
  } | {
877
896
  type: "twilioIntegration";
878
897
  properties: {
879
- botId?: string | undefined;
880
898
  name?: string | undefined;
899
+ botId?: string | undefined;
881
900
  description?: string | undefined;
882
901
  meta?: {
883
902
  [key: string]: unknown;
@@ -895,6 +914,7 @@ export const SolutionConfigSchema: z.ZodObject<{
895
914
  type: "blueprint";
896
915
  properties: {
897
916
  name?: string | undefined;
917
+ alias?: string | undefined;
898
918
  description?: string | undefined;
899
919
  meta?: {
900
920
  [key: string]: unknown;
@@ -906,13 +926,14 @@ export const SolutionConfigSchema: z.ZodObject<{
906
926
  } | {
907
927
  type: "bot";
908
928
  properties: {
929
+ name?: string | undefined;
909
930
  model?: import("@chatbotkit/sdk/model/v1").Model | undefined;
910
931
  backstory?: string | undefined;
911
932
  datasetId?: string | undefined;
912
933
  skillsetId?: string | undefined;
913
934
  privacy?: boolean | undefined;
914
935
  moderation?: boolean | undefined;
915
- name?: string | undefined;
936
+ alias?: string | undefined;
916
937
  description?: string | undefined;
917
938
  meta?: {
918
939
  [key: string]: unknown;
@@ -926,6 +947,7 @@ export const SolutionConfigSchema: z.ZodObject<{
926
947
  type: "dataset";
927
948
  properties: {
928
949
  name?: string | undefined;
950
+ alias?: string | undefined;
929
951
  description?: string | undefined;
930
952
  meta?: {
931
953
  [key: string]: unknown;
@@ -948,6 +970,7 @@ export const SolutionConfigSchema: z.ZodObject<{
948
970
  type: "file";
949
971
  properties: {
950
972
  name?: string | undefined;
973
+ alias?: string | undefined;
951
974
  description?: string | undefined;
952
975
  meta?: {
953
976
  [key: string]: unknown;
@@ -963,6 +986,7 @@ export const SolutionConfigSchema: z.ZodObject<{
963
986
  value?: string | undefined;
964
987
  type?: "plain" | "basic" | "bearer" | "oauth" | "template" | "reference" | undefined;
965
988
  name?: string | undefined;
989
+ alias?: string | undefined;
966
990
  description?: string | undefined;
967
991
  meta?: {
968
992
  [key: string]: unknown;
@@ -980,6 +1004,7 @@ export const SolutionConfigSchema: z.ZodObject<{
980
1004
  type: "skillset";
981
1005
  properties: {
982
1006
  name?: string | undefined;
1007
+ alias?: string | undefined;
983
1008
  description?: string | undefined;
984
1009
  meta?: {
985
1010
  [key: string]: unknown;
@@ -992,11 +1017,11 @@ export const SolutionConfigSchema: z.ZodObject<{
992
1017
  } | {
993
1018
  type: "widgetIntegration";
994
1019
  properties: {
1020
+ name?: string | undefined;
995
1021
  attachments?: boolean | undefined;
996
1022
  botId?: string | undefined;
997
1023
  tools?: boolean | undefined;
998
1024
  stream?: boolean | undefined;
999
- name?: string | undefined;
1000
1025
  description?: string | undefined;
1001
1026
  meta?: {
1002
1027
  [key: string]: unknown;
@@ -1033,8 +1058,8 @@ export const SolutionConfigSchema: z.ZodObject<{
1033
1058
  } | {
1034
1059
  type: "sitemapIntegration";
1035
1060
  properties: {
1036
- datasetId?: string | undefined;
1037
1061
  name?: string | undefined;
1062
+ datasetId?: string | undefined;
1038
1063
  description?: string | undefined;
1039
1064
  meta?: {
1040
1065
  [key: string]: unknown;
@@ -1052,8 +1077,8 @@ export const SolutionConfigSchema: z.ZodObject<{
1052
1077
  } | {
1053
1078
  type: "slackIntegration";
1054
1079
  properties: {
1055
- botId?: string | undefined;
1056
1080
  name?: string | undefined;
1081
+ botId?: string | undefined;
1057
1082
  description?: string | undefined;
1058
1083
  meta?: {
1059
1084
  [key: string]: unknown;
@@ -1074,8 +1099,8 @@ export const SolutionConfigSchema: z.ZodObject<{
1074
1099
  } | {
1075
1100
  type: "discordIntegration";
1076
1101
  properties: {
1077
- botId?: string | undefined;
1078
1102
  name?: string | undefined;
1103
+ botId?: string | undefined;
1079
1104
  description?: string | undefined;
1080
1105
  meta?: {
1081
1106
  [key: string]: unknown;
@@ -1093,9 +1118,9 @@ export const SolutionConfigSchema: z.ZodObject<{
1093
1118
  } | {
1094
1119
  type: "telegramIntegration";
1095
1120
  properties: {
1121
+ name?: string | undefined;
1096
1122
  attachments?: boolean | undefined;
1097
1123
  botId?: string | undefined;
1098
- name?: string | undefined;
1099
1124
  description?: string | undefined;
1100
1125
  meta?: {
1101
1126
  [key: string]: unknown;
@@ -1110,9 +1135,9 @@ export const SolutionConfigSchema: z.ZodObject<{
1110
1135
  } | {
1111
1136
  type: "whatsappIntegration";
1112
1137
  properties: {
1138
+ name?: string | undefined;
1113
1139
  attachments?: boolean | undefined;
1114
1140
  botId?: string | undefined;
1115
- name?: string | undefined;
1116
1141
  description?: string | undefined;
1117
1142
  meta?: {
1118
1143
  [key: string]: unknown;
@@ -1128,9 +1153,9 @@ export const SolutionConfigSchema: z.ZodObject<{
1128
1153
  } | {
1129
1154
  type: "messengerIntegration";
1130
1155
  properties: {
1156
+ name?: string | undefined;
1131
1157
  attachments?: boolean | undefined;
1132
1158
  botId?: string | undefined;
1133
- name?: string | undefined;
1134
1159
  description?: string | undefined;
1135
1160
  meta?: {
1136
1161
  [key: string]: unknown;
@@ -1144,9 +1169,9 @@ export const SolutionConfigSchema: z.ZodObject<{
1144
1169
  } | {
1145
1170
  type: "notionIntegration";
1146
1171
  properties: {
1172
+ name?: string | undefined;
1147
1173
  datasetId?: string | undefined;
1148
1174
  token?: string | undefined;
1149
- name?: string | undefined;
1150
1175
  description?: string | undefined;
1151
1176
  meta?: {
1152
1177
  [key: string]: unknown;
@@ -1160,9 +1185,9 @@ export const SolutionConfigSchema: z.ZodObject<{
1160
1185
  } | {
1161
1186
  type: "emailIntegration";
1162
1187
  properties: {
1188
+ name?: string | undefined;
1163
1189
  attachments?: boolean | undefined;
1164
1190
  botId?: string | undefined;
1165
- name?: string | undefined;
1166
1191
  description?: string | undefined;
1167
1192
  meta?: {
1168
1193
  [key: string]: unknown;
@@ -1176,8 +1201,8 @@ export const SolutionConfigSchema: z.ZodObject<{
1176
1201
  } | {
1177
1202
  type: "triggerIntegration";
1178
1203
  properties: {
1179
- botId?: string | undefined;
1180
1204
  name?: string | undefined;
1205
+ botId?: string | undefined;
1181
1206
  description?: string | undefined;
1182
1207
  meta?: {
1183
1208
  [key: string]: unknown;
@@ -1192,22 +1217,23 @@ export const SolutionConfigSchema: z.ZodObject<{
1192
1217
  } | {
1193
1218
  type: "supportIntegration";
1194
1219
  properties: {
1195
- botId?: string | undefined;
1196
1220
  name?: string | undefined;
1221
+ botId?: string | undefined;
1222
+ email?: string | undefined;
1197
1223
  description?: string | undefined;
1198
1224
  meta?: {
1199
1225
  [key: string]: unknown;
1200
1226
  } | undefined;
1201
1227
  blueprintId?: string | undefined;
1202
- email?: string | undefined;
1203
1228
  };
1204
1229
  slug?: string | undefined;
1205
1230
  id?: string | undefined;
1206
1231
  } | {
1207
1232
  type: "extractIntegration";
1208
1233
  properties: {
1209
- botId?: string | undefined;
1210
1234
  name?: string | undefined;
1235
+ botId?: string | undefined;
1236
+ model?: string | undefined;
1211
1237
  description?: string | undefined;
1212
1238
  meta?: {
1213
1239
  [key: string]: unknown;
@@ -1223,8 +1249,8 @@ export const SolutionConfigSchema: z.ZodObject<{
1223
1249
  } | {
1224
1250
  type: "mcpserverIntegration";
1225
1251
  properties: {
1226
- skillsetId?: string | undefined;
1227
1252
  name?: string | undefined;
1253
+ skillsetId?: string | undefined;
1228
1254
  description?: string | undefined;
1229
1255
  meta?: {
1230
1256
  [key: string]: unknown;
@@ -1236,8 +1262,8 @@ export const SolutionConfigSchema: z.ZodObject<{
1236
1262
  } | {
1237
1263
  type: "twilioIntegration";
1238
1264
  properties: {
1239
- botId?: string | undefined;
1240
1265
  name?: string | undefined;
1266
+ botId?: string | undefined;
1241
1267
  description?: string | undefined;
1242
1268
  meta?: {
1243
1269
  [key: string]: unknown;
@@ -1256,6 +1282,7 @@ export class Resource {
1256
1282
  type: "blueprint";
1257
1283
  properties: {
1258
1284
  name?: string | undefined;
1285
+ alias?: string | undefined;
1259
1286
  description?: string | undefined;
1260
1287
  meta?: {
1261
1288
  [key: string]: unknown;
@@ -1267,13 +1294,14 @@ export class Resource {
1267
1294
  } | {
1268
1295
  type: "bot";
1269
1296
  properties: {
1297
+ name?: string | undefined;
1270
1298
  model?: import("@chatbotkit/sdk/model/v1").Model | undefined;
1271
1299
  backstory?: string | undefined;
1272
1300
  datasetId?: string | undefined;
1273
1301
  skillsetId?: string | undefined;
1274
1302
  privacy?: boolean | undefined;
1275
1303
  moderation?: boolean | undefined;
1276
- name?: string | undefined;
1304
+ alias?: string | undefined;
1277
1305
  description?: string | undefined;
1278
1306
  meta?: {
1279
1307
  [key: string]: unknown;
@@ -1287,6 +1315,7 @@ export class Resource {
1287
1315
  type: "dataset";
1288
1316
  properties: {
1289
1317
  name?: string | undefined;
1318
+ alias?: string | undefined;
1290
1319
  description?: string | undefined;
1291
1320
  meta?: {
1292
1321
  [key: string]: unknown;
@@ -1309,6 +1338,7 @@ export class Resource {
1309
1338
  type: "file";
1310
1339
  properties: {
1311
1340
  name?: string | undefined;
1341
+ alias?: string | undefined;
1312
1342
  description?: string | undefined;
1313
1343
  meta?: {
1314
1344
  [key: string]: unknown;
@@ -1324,6 +1354,7 @@ export class Resource {
1324
1354
  value?: string | undefined;
1325
1355
  type?: "plain" | "basic" | "bearer" | "oauth" | "template" | "reference" | undefined;
1326
1356
  name?: string | undefined;
1357
+ alias?: string | undefined;
1327
1358
  description?: string | undefined;
1328
1359
  meta?: {
1329
1360
  [key: string]: unknown;
@@ -1341,6 +1372,7 @@ export class Resource {
1341
1372
  type: "skillset";
1342
1373
  properties: {
1343
1374
  name?: string | undefined;
1375
+ alias?: string | undefined;
1344
1376
  description?: string | undefined;
1345
1377
  meta?: {
1346
1378
  [key: string]: unknown;
@@ -1353,11 +1385,11 @@ export class Resource {
1353
1385
  } | {
1354
1386
  type: "widgetIntegration";
1355
1387
  properties: {
1388
+ name?: string | undefined;
1356
1389
  attachments?: boolean | undefined;
1357
1390
  botId?: string | undefined;
1358
1391
  tools?: boolean | undefined;
1359
1392
  stream?: boolean | undefined;
1360
- name?: string | undefined;
1361
1393
  description?: string | undefined;
1362
1394
  meta?: {
1363
1395
  [key: string]: unknown;
@@ -1394,8 +1426,8 @@ export class Resource {
1394
1426
  } | {
1395
1427
  type: "sitemapIntegration";
1396
1428
  properties: {
1397
- datasetId?: string | undefined;
1398
1429
  name?: string | undefined;
1430
+ datasetId?: string | undefined;
1399
1431
  description?: string | undefined;
1400
1432
  meta?: {
1401
1433
  [key: string]: unknown;
@@ -1413,8 +1445,8 @@ export class Resource {
1413
1445
  } | {
1414
1446
  type: "slackIntegration";
1415
1447
  properties: {
1416
- botId?: string | undefined;
1417
1448
  name?: string | undefined;
1449
+ botId?: string | undefined;
1418
1450
  description?: string | undefined;
1419
1451
  meta?: {
1420
1452
  [key: string]: unknown;
@@ -1435,8 +1467,8 @@ export class Resource {
1435
1467
  } | {
1436
1468
  type: "discordIntegration";
1437
1469
  properties: {
1438
- botId?: string | undefined;
1439
1470
  name?: string | undefined;
1471
+ botId?: string | undefined;
1440
1472
  description?: string | undefined;
1441
1473
  meta?: {
1442
1474
  [key: string]: unknown;
@@ -1454,9 +1486,9 @@ export class Resource {
1454
1486
  } | {
1455
1487
  type: "telegramIntegration";
1456
1488
  properties: {
1489
+ name?: string | undefined;
1457
1490
  attachments?: boolean | undefined;
1458
1491
  botId?: string | undefined;
1459
- name?: string | undefined;
1460
1492
  description?: string | undefined;
1461
1493
  meta?: {
1462
1494
  [key: string]: unknown;
@@ -1471,9 +1503,9 @@ export class Resource {
1471
1503
  } | {
1472
1504
  type: "whatsappIntegration";
1473
1505
  properties: {
1506
+ name?: string | undefined;
1474
1507
  attachments?: boolean | undefined;
1475
1508
  botId?: string | undefined;
1476
- name?: string | undefined;
1477
1509
  description?: string | undefined;
1478
1510
  meta?: {
1479
1511
  [key: string]: unknown;
@@ -1489,9 +1521,9 @@ export class Resource {
1489
1521
  } | {
1490
1522
  type: "messengerIntegration";
1491
1523
  properties: {
1524
+ name?: string | undefined;
1492
1525
  attachments?: boolean | undefined;
1493
1526
  botId?: string | undefined;
1494
- name?: string | undefined;
1495
1527
  description?: string | undefined;
1496
1528
  meta?: {
1497
1529
  [key: string]: unknown;
@@ -1505,9 +1537,9 @@ export class Resource {
1505
1537
  } | {
1506
1538
  type: "notionIntegration";
1507
1539
  properties: {
1540
+ name?: string | undefined;
1508
1541
  datasetId?: string | undefined;
1509
1542
  token?: string | undefined;
1510
- name?: string | undefined;
1511
1543
  description?: string | undefined;
1512
1544
  meta?: {
1513
1545
  [key: string]: unknown;
@@ -1521,9 +1553,9 @@ export class Resource {
1521
1553
  } | {
1522
1554
  type: "emailIntegration";
1523
1555
  properties: {
1556
+ name?: string | undefined;
1524
1557
  attachments?: boolean | undefined;
1525
1558
  botId?: string | undefined;
1526
- name?: string | undefined;
1527
1559
  description?: string | undefined;
1528
1560
  meta?: {
1529
1561
  [key: string]: unknown;
@@ -1537,8 +1569,8 @@ export class Resource {
1537
1569
  } | {
1538
1570
  type: "triggerIntegration";
1539
1571
  properties: {
1540
- botId?: string | undefined;
1541
1572
  name?: string | undefined;
1573
+ botId?: string | undefined;
1542
1574
  description?: string | undefined;
1543
1575
  meta?: {
1544
1576
  [key: string]: unknown;
@@ -1553,22 +1585,23 @@ export class Resource {
1553
1585
  } | {
1554
1586
  type: "supportIntegration";
1555
1587
  properties: {
1556
- botId?: string | undefined;
1557
1588
  name?: string | undefined;
1589
+ botId?: string | undefined;
1590
+ email?: string | undefined;
1558
1591
  description?: string | undefined;
1559
1592
  meta?: {
1560
1593
  [key: string]: unknown;
1561
1594
  } | undefined;
1562
1595
  blueprintId?: string | undefined;
1563
- email?: string | undefined;
1564
1596
  };
1565
1597
  slug?: string | undefined;
1566
1598
  id?: string | undefined;
1567
1599
  } | {
1568
1600
  type: "extractIntegration";
1569
1601
  properties: {
1570
- botId?: string | undefined;
1571
1602
  name?: string | undefined;
1603
+ botId?: string | undefined;
1604
+ model?: string | undefined;
1572
1605
  description?: string | undefined;
1573
1606
  meta?: {
1574
1607
  [key: string]: unknown;
@@ -1584,8 +1617,8 @@ export class Resource {
1584
1617
  } | {
1585
1618
  type: "mcpserverIntegration";
1586
1619
  properties: {
1587
- skillsetId?: string | undefined;
1588
1620
  name?: string | undefined;
1621
+ skillsetId?: string | undefined;
1589
1622
  description?: string | undefined;
1590
1623
  meta?: {
1591
1624
  [key: string]: unknown;
@@ -1597,8 +1630,8 @@ export class Resource {
1597
1630
  } | {
1598
1631
  type: "twilioIntegration";
1599
1632
  properties: {
1600
- botId?: string | undefined;
1601
1633
  name?: string | undefined;
1634
+ botId?: string | undefined;
1602
1635
  description?: string | undefined;
1603
1636
  meta?: {
1604
1637
  [key: string]: unknown;
@@ -1697,6 +1730,7 @@ export class Solution {
1697
1730
  type: "blueprint";
1698
1731
  properties: {
1699
1732
  name?: string | undefined;
1733
+ alias?: string | undefined;
1700
1734
  description?: string | undefined;
1701
1735
  meta?: {
1702
1736
  [key: string]: unknown;
@@ -1708,13 +1742,14 @@ export class Solution {
1708
1742
  } | {
1709
1743
  type: "bot";
1710
1744
  properties: {
1745
+ name?: string | undefined;
1711
1746
  model?: import("@chatbotkit/sdk/model/v1").Model | undefined;
1712
1747
  backstory?: string | undefined;
1713
1748
  datasetId?: string | undefined;
1714
1749
  skillsetId?: string | undefined;
1715
1750
  privacy?: boolean | undefined;
1716
1751
  moderation?: boolean | undefined;
1717
- name?: string | undefined;
1752
+ alias?: string | undefined;
1718
1753
  description?: string | undefined;
1719
1754
  meta?: {
1720
1755
  [key: string]: unknown;
@@ -1728,6 +1763,7 @@ export class Solution {
1728
1763
  type: "dataset";
1729
1764
  properties: {
1730
1765
  name?: string | undefined;
1766
+ alias?: string | undefined;
1731
1767
  description?: string | undefined;
1732
1768
  meta?: {
1733
1769
  [key: string]: unknown;
@@ -1750,6 +1786,7 @@ export class Solution {
1750
1786
  type: "file";
1751
1787
  properties: {
1752
1788
  name?: string | undefined;
1789
+ alias?: string | undefined;
1753
1790
  description?: string | undefined;
1754
1791
  meta?: {
1755
1792
  [key: string]: unknown;
@@ -1765,6 +1802,7 @@ export class Solution {
1765
1802
  value?: string | undefined;
1766
1803
  type?: "plain" | "basic" | "bearer" | "oauth" | "template" | "reference" | undefined;
1767
1804
  name?: string | undefined;
1805
+ alias?: string | undefined;
1768
1806
  description?: string | undefined;
1769
1807
  meta?: {
1770
1808
  [key: string]: unknown;
@@ -1782,6 +1820,7 @@ export class Solution {
1782
1820
  type: "skillset";
1783
1821
  properties: {
1784
1822
  name?: string | undefined;
1823
+ alias?: string | undefined;
1785
1824
  description?: string | undefined;
1786
1825
  meta?: {
1787
1826
  [key: string]: unknown;
@@ -1794,11 +1833,11 @@ export class Solution {
1794
1833
  } | {
1795
1834
  type: "widgetIntegration";
1796
1835
  properties: {
1836
+ name?: string | undefined;
1797
1837
  attachments?: boolean | undefined;
1798
1838
  botId?: string | undefined;
1799
1839
  tools?: boolean | undefined;
1800
1840
  stream?: boolean | undefined;
1801
- name?: string | undefined;
1802
1841
  description?: string | undefined;
1803
1842
  meta?: {
1804
1843
  [key: string]: unknown;
@@ -1835,8 +1874,8 @@ export class Solution {
1835
1874
  } | {
1836
1875
  type: "sitemapIntegration";
1837
1876
  properties: {
1838
- datasetId?: string | undefined;
1839
1877
  name?: string | undefined;
1878
+ datasetId?: string | undefined;
1840
1879
  description?: string | undefined;
1841
1880
  meta?: {
1842
1881
  [key: string]: unknown;
@@ -1854,8 +1893,8 @@ export class Solution {
1854
1893
  } | {
1855
1894
  type: "slackIntegration";
1856
1895
  properties: {
1857
- botId?: string | undefined;
1858
1896
  name?: string | undefined;
1897
+ botId?: string | undefined;
1859
1898
  description?: string | undefined;
1860
1899
  meta?: {
1861
1900
  [key: string]: unknown;
@@ -1876,8 +1915,8 @@ export class Solution {
1876
1915
  } | {
1877
1916
  type: "discordIntegration";
1878
1917
  properties: {
1879
- botId?: string | undefined;
1880
1918
  name?: string | undefined;
1919
+ botId?: string | undefined;
1881
1920
  description?: string | undefined;
1882
1921
  meta?: {
1883
1922
  [key: string]: unknown;
@@ -1895,9 +1934,9 @@ export class Solution {
1895
1934
  } | {
1896
1935
  type: "telegramIntegration";
1897
1936
  properties: {
1937
+ name?: string | undefined;
1898
1938
  attachments?: boolean | undefined;
1899
1939
  botId?: string | undefined;
1900
- name?: string | undefined;
1901
1940
  description?: string | undefined;
1902
1941
  meta?: {
1903
1942
  [key: string]: unknown;
@@ -1912,9 +1951,9 @@ export class Solution {
1912
1951
  } | {
1913
1952
  type: "whatsappIntegration";
1914
1953
  properties: {
1954
+ name?: string | undefined;
1915
1955
  attachments?: boolean | undefined;
1916
1956
  botId?: string | undefined;
1917
- name?: string | undefined;
1918
1957
  description?: string | undefined;
1919
1958
  meta?: {
1920
1959
  [key: string]: unknown;
@@ -1930,9 +1969,9 @@ export class Solution {
1930
1969
  } | {
1931
1970
  type: "messengerIntegration";
1932
1971
  properties: {
1972
+ name?: string | undefined;
1933
1973
  attachments?: boolean | undefined;
1934
1974
  botId?: string | undefined;
1935
- name?: string | undefined;
1936
1975
  description?: string | undefined;
1937
1976
  meta?: {
1938
1977
  [key: string]: unknown;
@@ -1946,9 +1985,9 @@ export class Solution {
1946
1985
  } | {
1947
1986
  type: "notionIntegration";
1948
1987
  properties: {
1988
+ name?: string | undefined;
1949
1989
  datasetId?: string | undefined;
1950
1990
  token?: string | undefined;
1951
- name?: string | undefined;
1952
1991
  description?: string | undefined;
1953
1992
  meta?: {
1954
1993
  [key: string]: unknown;
@@ -1962,9 +2001,9 @@ export class Solution {
1962
2001
  } | {
1963
2002
  type: "emailIntegration";
1964
2003
  properties: {
2004
+ name?: string | undefined;
1965
2005
  attachments?: boolean | undefined;
1966
2006
  botId?: string | undefined;
1967
- name?: string | undefined;
1968
2007
  description?: string | undefined;
1969
2008
  meta?: {
1970
2009
  [key: string]: unknown;
@@ -1978,8 +2017,8 @@ export class Solution {
1978
2017
  } | {
1979
2018
  type: "triggerIntegration";
1980
2019
  properties: {
1981
- botId?: string | undefined;
1982
2020
  name?: string | undefined;
2021
+ botId?: string | undefined;
1983
2022
  description?: string | undefined;
1984
2023
  meta?: {
1985
2024
  [key: string]: unknown;
@@ -1994,22 +2033,23 @@ export class Solution {
1994
2033
  } | {
1995
2034
  type: "supportIntegration";
1996
2035
  properties: {
1997
- botId?: string | undefined;
1998
2036
  name?: string | undefined;
2037
+ botId?: string | undefined;
2038
+ email?: string | undefined;
1999
2039
  description?: string | undefined;
2000
2040
  meta?: {
2001
2041
  [key: string]: unknown;
2002
2042
  } | undefined;
2003
2043
  blueprintId?: string | undefined;
2004
- email?: string | undefined;
2005
2044
  };
2006
2045
  slug?: string | undefined;
2007
2046
  id?: string | undefined;
2008
2047
  } | {
2009
2048
  type: "extractIntegration";
2010
2049
  properties: {
2011
- botId?: string | undefined;
2012
2050
  name?: string | undefined;
2051
+ botId?: string | undefined;
2052
+ model?: string | undefined;
2013
2053
  description?: string | undefined;
2014
2054
  meta?: {
2015
2055
  [key: string]: unknown;
@@ -2025,8 +2065,8 @@ export class Solution {
2025
2065
  } | {
2026
2066
  type: "mcpserverIntegration";
2027
2067
  properties: {
2028
- skillsetId?: string | undefined;
2029
2068
  name?: string | undefined;
2069
+ skillsetId?: string | undefined;
2030
2070
  description?: string | undefined;
2031
2071
  meta?: {
2032
2072
  [key: string]: unknown;
@@ -2038,8 +2078,8 @@ export class Solution {
2038
2078
  } | {
2039
2079
  type: "twilioIntegration";
2040
2080
  properties: {
2041
- botId?: string | undefined;
2042
2081
  name?: string | undefined;
2082
+ botId?: string | undefined;
2043
2083
  description?: string | undefined;
2044
2084
  meta?: {
2045
2085
  [key: string]: unknown;