@botpress/client 1.11.0 → 1.12.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.
package/dist/index.d.ts CHANGED
@@ -5172,6 +5172,10 @@ interface CreateBotResponse$1 {
5172
5172
  };
5173
5173
  status: "registration_pending" | "registered" | "registration_failed" | "unregistration_pending" | "unregistered" | "unregistration_failed";
5174
5174
  statusReason: string | null;
5175
+ /**
5176
+ * Disabled channels for this integration
5177
+ */
5178
+ disabledChannels: string[];
5175
5179
  /**
5176
5180
  * ID of the [Integration](#schema_integration)
5177
5181
  */
@@ -5628,6 +5632,10 @@ interface UpdateBotRequestBody$1 {
5628
5632
  configuration?: {
5629
5633
  [k: string]: any;
5630
5634
  };
5635
+ /**
5636
+ * Disabled channels for this integration
5637
+ */
5638
+ disabledChannels?: string[];
5631
5639
  } | null;
5632
5640
  };
5633
5641
  subscriptions?: {
@@ -5694,6 +5702,10 @@ interface UpdateBotResponse$1 {
5694
5702
  };
5695
5703
  status: "registration_pending" | "registered" | "registration_failed" | "unregistration_pending" | "unregistered" | "unregistration_failed";
5696
5704
  statusReason: string | null;
5705
+ /**
5706
+ * Disabled channels for this integration
5707
+ */
5708
+ disabledChannels: string[];
5697
5709
  /**
5698
5710
  * ID of the [Integration](#schema_integration)
5699
5711
  */
@@ -6083,6 +6095,10 @@ interface GetBotResponse$1 {
6083
6095
  };
6084
6096
  status: "registration_pending" | "registered" | "registration_failed" | "unregistration_pending" | "unregistered" | "unregistration_failed";
6085
6097
  statusReason: string | null;
6098
+ /**
6099
+ * Disabled channels for this integration
6100
+ */
6101
+ disabledChannels: string[];
6086
6102
  /**
6087
6103
  * ID of the [Integration](#schema_integration)
6088
6104
  */
@@ -20841,6 +20857,10 @@ interface CreateBotResponse {
20841
20857
  };
20842
20858
  status: "registration_pending" | "registered" | "registration_failed" | "unregistration_pending" | "unregistered" | "unregistration_failed";
20843
20859
  statusReason: string | null;
20860
+ /**
20861
+ * Disabled channels for this integration
20862
+ */
20863
+ disabledChannels: string[];
20844
20864
  /**
20845
20865
  * ID of the [Integration](#schema_integration)
20846
20866
  */
@@ -21297,6 +21317,10 @@ interface UpdateBotRequestBody {
21297
21317
  configuration?: {
21298
21318
  [k: string]: any;
21299
21319
  };
21320
+ /**
21321
+ * Disabled channels for this integration
21322
+ */
21323
+ disabledChannels?: string[];
21300
21324
  } | null;
21301
21325
  };
21302
21326
  subscriptions?: {
@@ -21363,6 +21387,10 @@ interface UpdateBotResponse {
21363
21387
  };
21364
21388
  status: "registration_pending" | "registered" | "registration_failed" | "unregistration_pending" | "unregistered" | "unregistration_failed";
21365
21389
  statusReason: string | null;
21390
+ /**
21391
+ * Disabled channels for this integration
21392
+ */
21393
+ disabledChannels: string[];
21366
21394
  /**
21367
21395
  * ID of the [Integration](#schema_integration)
21368
21396
  */
@@ -21752,6 +21780,10 @@ interface GetBotResponse {
21752
21780
  };
21753
21781
  status: "registration_pending" | "registered" | "registration_failed" | "unregistration_pending" | "unregistered" | "unregistration_failed";
21754
21782
  statusReason: string | null;
21783
+ /**
21784
+ * Disabled channels for this integration
21785
+ */
21786
+ disabledChannels: string[];
21755
21787
  /**
21756
21788
  * ID of the [Integration](#schema_integration)
21757
21789
  */
@@ -31155,6 +31187,10 @@ interface Bot {
31155
31187
  };
31156
31188
  status: "registration_pending" | "registered" | "registration_failed" | "unregistration_pending" | "unregistered" | "unregistration_failed";
31157
31189
  statusReason: string | null;
31190
+ /**
31191
+ * Disabled channels for this integration
31192
+ */
31193
+ disabledChannels: string[];
31158
31194
  /**
31159
31195
  * ID of the [Integration](#schema_integration)
31160
31196
  */