@botpress/client 1.6.0 → 1.8.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/bundle.cjs +1 -1
- package/dist/bundle.cjs.map +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +705 -63
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1816,11 +1816,9 @@ interface ConfigureIntegrationRequestBody$1 {
|
|
|
1816
1816
|
*/
|
|
1817
1817
|
scheduleRegisterCall?: "hourly" | "daily" | "weekly" | "bi-weekly" | "monthly" | "bi-monthly" | "quarterly" | "yearly";
|
|
1818
1818
|
/**
|
|
1819
|
-
* **EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers.
|
|
1819
|
+
* **EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. This is an experimental feature meant to be used by specific integrations.
|
|
1820
1820
|
*/
|
|
1821
|
-
sandboxIdentifiers?: {
|
|
1822
|
-
[k: string]: {} | null;
|
|
1823
|
-
} | null;
|
|
1821
|
+
sandboxIdentifiers?: {} | null;
|
|
1824
1822
|
}
|
|
1825
1823
|
type ConfigureIntegrationInput$1 = ConfigureIntegrationRequestBody$1 & ConfigureIntegrationRequestHeaders$1 & ConfigureIntegrationRequestQuery$1 & ConfigureIntegrationRequestParams$1;
|
|
1826
1824
|
interface ConfigureIntegrationResponse$1 {
|
|
@@ -3520,6 +3518,12 @@ interface GetPublicIntegrationByIdResponse$1 {
|
|
|
3520
3518
|
schema: {
|
|
3521
3519
|
[k: string]: any;
|
|
3522
3520
|
};
|
|
3521
|
+
/**
|
|
3522
|
+
* Optional attributes
|
|
3523
|
+
*/
|
|
3524
|
+
attributes?: {
|
|
3525
|
+
[k: string]: string;
|
|
3526
|
+
};
|
|
3523
3527
|
};
|
|
3524
3528
|
};
|
|
3525
3529
|
actions: {
|
|
@@ -3911,6 +3915,12 @@ interface GetPublicIntegrationResponse$1 {
|
|
|
3911
3915
|
schema: {
|
|
3912
3916
|
[k: string]: any;
|
|
3913
3917
|
};
|
|
3918
|
+
/**
|
|
3919
|
+
* Optional attributes
|
|
3920
|
+
*/
|
|
3921
|
+
attributes?: {
|
|
3922
|
+
[k: string]: string;
|
|
3923
|
+
};
|
|
3914
3924
|
};
|
|
3915
3925
|
};
|
|
3916
3926
|
actions: {
|
|
@@ -4189,6 +4199,12 @@ interface GetPublicPluginByIdResponse$1 {
|
|
|
4189
4199
|
schema: {
|
|
4190
4200
|
[k: string]: any;
|
|
4191
4201
|
};
|
|
4202
|
+
/**
|
|
4203
|
+
* Optional attributes
|
|
4204
|
+
*/
|
|
4205
|
+
attributes?: {
|
|
4206
|
+
[k: string]: string;
|
|
4207
|
+
};
|
|
4192
4208
|
};
|
|
4193
4209
|
};
|
|
4194
4210
|
actions: {
|
|
@@ -4389,6 +4405,12 @@ interface GetPublicPluginResponse$1 {
|
|
|
4389
4405
|
schema: {
|
|
4390
4406
|
[k: string]: any;
|
|
4391
4407
|
};
|
|
4408
|
+
/**
|
|
4409
|
+
* Optional attributes
|
|
4410
|
+
*/
|
|
4411
|
+
attributes?: {
|
|
4412
|
+
[k: string]: string;
|
|
4413
|
+
};
|
|
4392
4414
|
};
|
|
4393
4415
|
};
|
|
4394
4416
|
actions: {
|
|
@@ -4565,6 +4587,12 @@ interface CreateBotRequestBody$1 {
|
|
|
4565
4587
|
schema: {
|
|
4566
4588
|
[k: string]: any;
|
|
4567
4589
|
};
|
|
4590
|
+
/**
|
|
4591
|
+
* Optional attributes
|
|
4592
|
+
*/
|
|
4593
|
+
attributes?: {
|
|
4594
|
+
[k: string]: string;
|
|
4595
|
+
};
|
|
4568
4596
|
};
|
|
4569
4597
|
};
|
|
4570
4598
|
recurringEvents?: {
|
|
@@ -4913,6 +4941,12 @@ interface CreateBotResponse$1 {
|
|
|
4913
4941
|
schema: {
|
|
4914
4942
|
[k: string]: any;
|
|
4915
4943
|
};
|
|
4944
|
+
/**
|
|
4945
|
+
* Optional attributes
|
|
4946
|
+
*/
|
|
4947
|
+
attributes?: {
|
|
4948
|
+
[k: string]: string;
|
|
4949
|
+
};
|
|
4916
4950
|
};
|
|
4917
4951
|
};
|
|
4918
4952
|
/**
|
|
@@ -5123,9 +5157,6 @@ interface UpdateBotRequestBody$1 {
|
|
|
5123
5157
|
};
|
|
5124
5158
|
};
|
|
5125
5159
|
events?: {
|
|
5126
|
-
/**
|
|
5127
|
-
* Event Definition
|
|
5128
|
-
*/
|
|
5129
5160
|
[k: string]: {
|
|
5130
5161
|
/**
|
|
5131
5162
|
* Title of the event
|
|
@@ -5138,12 +5169,15 @@ interface UpdateBotRequestBody$1 {
|
|
|
5138
5169
|
schema: {
|
|
5139
5170
|
[k: string]: any;
|
|
5140
5171
|
};
|
|
5172
|
+
/**
|
|
5173
|
+
* Optional attributes. Set attributes to null to remove them
|
|
5174
|
+
*/
|
|
5175
|
+
attributes?: {
|
|
5176
|
+
[k: string]: string | null;
|
|
5177
|
+
};
|
|
5141
5178
|
} | null;
|
|
5142
5179
|
};
|
|
5143
5180
|
actions?: {
|
|
5144
|
-
/**
|
|
5145
|
-
* Action definition
|
|
5146
|
-
*/
|
|
5147
5181
|
[k: string]: {
|
|
5148
5182
|
/**
|
|
5149
5183
|
* Title of the action
|
|
@@ -5166,10 +5200,10 @@ interface UpdateBotRequestBody$1 {
|
|
|
5166
5200
|
};
|
|
5167
5201
|
};
|
|
5168
5202
|
/**
|
|
5169
|
-
* Optional attributes
|
|
5203
|
+
* Optional attributes. Set attributes to null to remove them
|
|
5170
5204
|
*/
|
|
5171
5205
|
attributes?: {
|
|
5172
|
-
[k: string]: string;
|
|
5206
|
+
[k: string]: string | null;
|
|
5173
5207
|
};
|
|
5174
5208
|
} | null;
|
|
5175
5209
|
};
|
|
@@ -5429,6 +5463,12 @@ interface UpdateBotResponse$1 {
|
|
|
5429
5463
|
schema: {
|
|
5430
5464
|
[k: string]: any;
|
|
5431
5465
|
};
|
|
5466
|
+
/**
|
|
5467
|
+
* Optional attributes
|
|
5468
|
+
*/
|
|
5469
|
+
attributes?: {
|
|
5470
|
+
[k: string]: string;
|
|
5471
|
+
};
|
|
5432
5472
|
};
|
|
5433
5473
|
};
|
|
5434
5474
|
/**
|
|
@@ -5812,6 +5852,12 @@ interface GetBotResponse$1 {
|
|
|
5812
5852
|
schema: {
|
|
5813
5853
|
[k: string]: any;
|
|
5814
5854
|
};
|
|
5855
|
+
/**
|
|
5856
|
+
* Optional attributes
|
|
5857
|
+
*/
|
|
5858
|
+
attributes?: {
|
|
5859
|
+
[k: string]: string;
|
|
5860
|
+
};
|
|
5815
5861
|
};
|
|
5816
5862
|
};
|
|
5817
5863
|
/**
|
|
@@ -7104,6 +7150,12 @@ interface CreateIntegrationRequestBody$1 {
|
|
|
7104
7150
|
schema: {
|
|
7105
7151
|
[k: string]: any;
|
|
7106
7152
|
};
|
|
7153
|
+
/**
|
|
7154
|
+
* Optional attributes
|
|
7155
|
+
*/
|
|
7156
|
+
attributes?: {
|
|
7157
|
+
[k: string]: string;
|
|
7158
|
+
};
|
|
7107
7159
|
};
|
|
7108
7160
|
};
|
|
7109
7161
|
actions?: {
|
|
@@ -7579,6 +7631,12 @@ interface CreateIntegrationResponse$1 {
|
|
|
7579
7631
|
schema: {
|
|
7580
7632
|
[k: string]: any;
|
|
7581
7633
|
};
|
|
7634
|
+
/**
|
|
7635
|
+
* Optional attributes
|
|
7636
|
+
*/
|
|
7637
|
+
attributes?: {
|
|
7638
|
+
[k: string]: string;
|
|
7639
|
+
};
|
|
7582
7640
|
};
|
|
7583
7641
|
};
|
|
7584
7642
|
actions: {
|
|
@@ -7796,6 +7854,12 @@ interface ValidateIntegrationCreationRequestBody$1 {
|
|
|
7796
7854
|
schema: {
|
|
7797
7855
|
[k: string]: any;
|
|
7798
7856
|
};
|
|
7857
|
+
/**
|
|
7858
|
+
* Optional attributes
|
|
7859
|
+
*/
|
|
7860
|
+
attributes?: {
|
|
7861
|
+
[k: string]: string;
|
|
7862
|
+
};
|
|
7799
7863
|
};
|
|
7800
7864
|
};
|
|
7801
7865
|
actions?: {
|
|
@@ -8184,9 +8248,6 @@ interface UpdateIntegrationRequestBody$1 {
|
|
|
8184
8248
|
} | null;
|
|
8185
8249
|
};
|
|
8186
8250
|
events?: {
|
|
8187
|
-
/**
|
|
8188
|
-
* Event Definition
|
|
8189
|
-
*/
|
|
8190
8251
|
[k: string]: {
|
|
8191
8252
|
/**
|
|
8192
8253
|
* Title of the event
|
|
@@ -8199,6 +8260,12 @@ interface UpdateIntegrationRequestBody$1 {
|
|
|
8199
8260
|
schema: {
|
|
8200
8261
|
[k: string]: any;
|
|
8201
8262
|
};
|
|
8263
|
+
/**
|
|
8264
|
+
* Optional attributes. Set attributes to null to remove them
|
|
8265
|
+
*/
|
|
8266
|
+
attributes?: {
|
|
8267
|
+
[k: string]: string | null;
|
|
8268
|
+
};
|
|
8202
8269
|
} | null;
|
|
8203
8270
|
};
|
|
8204
8271
|
states?: {
|
|
@@ -8585,6 +8652,12 @@ interface UpdateIntegrationResponse$1 {
|
|
|
8585
8652
|
schema: {
|
|
8586
8653
|
[k: string]: any;
|
|
8587
8654
|
};
|
|
8655
|
+
/**
|
|
8656
|
+
* Optional attributes
|
|
8657
|
+
*/
|
|
8658
|
+
attributes?: {
|
|
8659
|
+
[k: string]: string;
|
|
8660
|
+
};
|
|
8588
8661
|
};
|
|
8589
8662
|
};
|
|
8590
8663
|
actions: {
|
|
@@ -8866,9 +8939,6 @@ interface ValidateIntegrationUpdateRequestBody$1 {
|
|
|
8866
8939
|
} | null;
|
|
8867
8940
|
};
|
|
8868
8941
|
events?: {
|
|
8869
|
-
/**
|
|
8870
|
-
* Event Definition
|
|
8871
|
-
*/
|
|
8872
8942
|
[k: string]: {
|
|
8873
8943
|
/**
|
|
8874
8944
|
* Title of the event
|
|
@@ -8881,6 +8951,12 @@ interface ValidateIntegrationUpdateRequestBody$1 {
|
|
|
8881
8951
|
schema: {
|
|
8882
8952
|
[k: string]: any;
|
|
8883
8953
|
};
|
|
8954
|
+
/**
|
|
8955
|
+
* Optional attributes. Set attributes to null to remove them
|
|
8956
|
+
*/
|
|
8957
|
+
attributes?: {
|
|
8958
|
+
[k: string]: string | null;
|
|
8959
|
+
};
|
|
8884
8960
|
} | null;
|
|
8885
8961
|
};
|
|
8886
8962
|
states?: {
|
|
@@ -9383,6 +9459,12 @@ interface GetIntegrationResponse$1 {
|
|
|
9383
9459
|
schema: {
|
|
9384
9460
|
[k: string]: any;
|
|
9385
9461
|
};
|
|
9462
|
+
/**
|
|
9463
|
+
* Optional attributes
|
|
9464
|
+
*/
|
|
9465
|
+
attributes?: {
|
|
9466
|
+
[k: string]: string;
|
|
9467
|
+
};
|
|
9386
9468
|
};
|
|
9387
9469
|
};
|
|
9388
9470
|
actions: {
|
|
@@ -9793,6 +9875,12 @@ interface GetIntegrationByNameResponse$1 {
|
|
|
9793
9875
|
schema: {
|
|
9794
9876
|
[k: string]: any;
|
|
9795
9877
|
};
|
|
9878
|
+
/**
|
|
9879
|
+
* Optional attributes
|
|
9880
|
+
*/
|
|
9881
|
+
attributes?: {
|
|
9882
|
+
[k: string]: string;
|
|
9883
|
+
};
|
|
9796
9884
|
};
|
|
9797
9885
|
};
|
|
9798
9886
|
actions: {
|
|
@@ -9989,6 +10077,12 @@ interface CreateInterfaceRequestBody$1 {
|
|
|
9989
10077
|
schema: {
|
|
9990
10078
|
[k: string]: any;
|
|
9991
10079
|
};
|
|
10080
|
+
/**
|
|
10081
|
+
* Optional attributes
|
|
10082
|
+
*/
|
|
10083
|
+
attributes?: {
|
|
10084
|
+
[k: string]: string;
|
|
10085
|
+
};
|
|
9992
10086
|
};
|
|
9993
10087
|
};
|
|
9994
10088
|
actions?: {
|
|
@@ -10053,6 +10147,26 @@ interface CreateInterfaceRequestBody$1 {
|
|
|
10053
10147
|
script: string;
|
|
10054
10148
|
language: string;
|
|
10055
10149
|
};
|
|
10150
|
+
/**
|
|
10151
|
+
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
10152
|
+
*/
|
|
10153
|
+
icon?: string;
|
|
10154
|
+
/**
|
|
10155
|
+
* Base64 encoded markdown of the interface readme. The readme is specific to each interface versions.
|
|
10156
|
+
*/
|
|
10157
|
+
readme?: string;
|
|
10158
|
+
/**
|
|
10159
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10160
|
+
*/
|
|
10161
|
+
title?: string;
|
|
10162
|
+
/**
|
|
10163
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10164
|
+
*/
|
|
10165
|
+
description?: string;
|
|
10166
|
+
/**
|
|
10167
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10168
|
+
*/
|
|
10169
|
+
public?: boolean;
|
|
10056
10170
|
}
|
|
10057
10171
|
type CreateInterfaceInput$1 = CreateInterfaceRequestBody$1 & CreateInterfaceRequestHeaders$1 & CreateInterfaceRequestQuery$1 & CreateInterfaceRequestParams$1;
|
|
10058
10172
|
interface CreateInterfaceResponse$1 {
|
|
@@ -10111,6 +10225,12 @@ interface CreateInterfaceResponse$1 {
|
|
|
10111
10225
|
schema: {
|
|
10112
10226
|
[k: string]: any;
|
|
10113
10227
|
};
|
|
10228
|
+
/**
|
|
10229
|
+
* Optional attributes
|
|
10230
|
+
*/
|
|
10231
|
+
attributes?: {
|
|
10232
|
+
[k: string]: string;
|
|
10233
|
+
};
|
|
10114
10234
|
};
|
|
10115
10235
|
};
|
|
10116
10236
|
actions: {
|
|
@@ -10175,6 +10295,26 @@ interface CreateInterfaceResponse$1 {
|
|
|
10175
10295
|
script: string;
|
|
10176
10296
|
language: string;
|
|
10177
10297
|
};
|
|
10298
|
+
/**
|
|
10299
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10300
|
+
*/
|
|
10301
|
+
title: string;
|
|
10302
|
+
/**
|
|
10303
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10304
|
+
*/
|
|
10305
|
+
description: string;
|
|
10306
|
+
/**
|
|
10307
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
10308
|
+
*/
|
|
10309
|
+
iconUrl: string;
|
|
10310
|
+
/**
|
|
10311
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
10312
|
+
*/
|
|
10313
|
+
readmeUrl: string;
|
|
10314
|
+
/**
|
|
10315
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10316
|
+
*/
|
|
10317
|
+
public: boolean;
|
|
10178
10318
|
};
|
|
10179
10319
|
}
|
|
10180
10320
|
|
|
@@ -10244,6 +10384,12 @@ interface GetInterfaceResponse$1 {
|
|
|
10244
10384
|
schema: {
|
|
10245
10385
|
[k: string]: any;
|
|
10246
10386
|
};
|
|
10387
|
+
/**
|
|
10388
|
+
* Optional attributes
|
|
10389
|
+
*/
|
|
10390
|
+
attributes?: {
|
|
10391
|
+
[k: string]: string;
|
|
10392
|
+
};
|
|
10247
10393
|
};
|
|
10248
10394
|
};
|
|
10249
10395
|
actions: {
|
|
@@ -10308,6 +10454,26 @@ interface GetInterfaceResponse$1 {
|
|
|
10308
10454
|
script: string;
|
|
10309
10455
|
language: string;
|
|
10310
10456
|
};
|
|
10457
|
+
/**
|
|
10458
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10459
|
+
*/
|
|
10460
|
+
title: string;
|
|
10461
|
+
/**
|
|
10462
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10463
|
+
*/
|
|
10464
|
+
description: string;
|
|
10465
|
+
/**
|
|
10466
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
10467
|
+
*/
|
|
10468
|
+
iconUrl: string;
|
|
10469
|
+
/**
|
|
10470
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
10471
|
+
*/
|
|
10472
|
+
readmeUrl: string;
|
|
10473
|
+
/**
|
|
10474
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10475
|
+
*/
|
|
10476
|
+
public: boolean;
|
|
10311
10477
|
};
|
|
10312
10478
|
}
|
|
10313
10479
|
|
|
@@ -10378,6 +10544,12 @@ interface GetInterfaceByNameResponse$1 {
|
|
|
10378
10544
|
schema: {
|
|
10379
10545
|
[k: string]: any;
|
|
10380
10546
|
};
|
|
10547
|
+
/**
|
|
10548
|
+
* Optional attributes
|
|
10549
|
+
*/
|
|
10550
|
+
attributes?: {
|
|
10551
|
+
[k: string]: string;
|
|
10552
|
+
};
|
|
10381
10553
|
};
|
|
10382
10554
|
};
|
|
10383
10555
|
actions: {
|
|
@@ -10442,6 +10614,26 @@ interface GetInterfaceByNameResponse$1 {
|
|
|
10442
10614
|
script: string;
|
|
10443
10615
|
language: string;
|
|
10444
10616
|
};
|
|
10617
|
+
/**
|
|
10618
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10619
|
+
*/
|
|
10620
|
+
title: string;
|
|
10621
|
+
/**
|
|
10622
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10623
|
+
*/
|
|
10624
|
+
description: string;
|
|
10625
|
+
/**
|
|
10626
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
10627
|
+
*/
|
|
10628
|
+
iconUrl: string;
|
|
10629
|
+
/**
|
|
10630
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
10631
|
+
*/
|
|
10632
|
+
readmeUrl: string;
|
|
10633
|
+
/**
|
|
10634
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10635
|
+
*/
|
|
10636
|
+
public: boolean;
|
|
10445
10637
|
};
|
|
10446
10638
|
}
|
|
10447
10639
|
|
|
@@ -10472,9 +10664,6 @@ interface UpdateInterfaceRequestBody$1 {
|
|
|
10472
10664
|
} | null;
|
|
10473
10665
|
};
|
|
10474
10666
|
events?: {
|
|
10475
|
-
/**
|
|
10476
|
-
* Event Definition
|
|
10477
|
-
*/
|
|
10478
10667
|
[k: string]: {
|
|
10479
10668
|
/**
|
|
10480
10669
|
* Title of the event
|
|
@@ -10487,6 +10676,12 @@ interface UpdateInterfaceRequestBody$1 {
|
|
|
10487
10676
|
schema: {
|
|
10488
10677
|
[k: string]: any;
|
|
10489
10678
|
};
|
|
10679
|
+
/**
|
|
10680
|
+
* Optional attributes. Set attributes to null to remove them
|
|
10681
|
+
*/
|
|
10682
|
+
attributes?: {
|
|
10683
|
+
[k: string]: string | null;
|
|
10684
|
+
};
|
|
10490
10685
|
} | null;
|
|
10491
10686
|
};
|
|
10492
10687
|
actions?: {
|
|
@@ -10511,6 +10706,9 @@ interface UpdateInterfaceRequestBody$1 {
|
|
|
10511
10706
|
[k: string]: any;
|
|
10512
10707
|
};
|
|
10513
10708
|
};
|
|
10709
|
+
/**
|
|
10710
|
+
* Optional attributes. Set attributes to null to remove them
|
|
10711
|
+
*/
|
|
10514
10712
|
attributes?: {
|
|
10515
10713
|
[k: string]: string | null;
|
|
10516
10714
|
};
|
|
@@ -10545,6 +10743,26 @@ interface UpdateInterfaceRequestBody$1 {
|
|
|
10545
10743
|
script: string;
|
|
10546
10744
|
language: string;
|
|
10547
10745
|
} | null;
|
|
10746
|
+
/**
|
|
10747
|
+
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
10748
|
+
*/
|
|
10749
|
+
icon?: string;
|
|
10750
|
+
/**
|
|
10751
|
+
* Base64 encoded markdown of the interface readme. The readme is specific to each interface versions.
|
|
10752
|
+
*/
|
|
10753
|
+
readme?: string;
|
|
10754
|
+
/**
|
|
10755
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10756
|
+
*/
|
|
10757
|
+
title?: string;
|
|
10758
|
+
/**
|
|
10759
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10760
|
+
*/
|
|
10761
|
+
description?: string;
|
|
10762
|
+
/**
|
|
10763
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10764
|
+
*/
|
|
10765
|
+
public?: boolean;
|
|
10548
10766
|
}
|
|
10549
10767
|
type UpdateInterfaceInput$1 = UpdateInterfaceRequestBody$1 & UpdateInterfaceRequestHeaders$1 & UpdateInterfaceRequestQuery$1 & UpdateInterfaceRequestParams$1;
|
|
10550
10768
|
interface UpdateInterfaceResponse$1 {
|
|
@@ -10603,6 +10821,12 @@ interface UpdateInterfaceResponse$1 {
|
|
|
10603
10821
|
schema: {
|
|
10604
10822
|
[k: string]: any;
|
|
10605
10823
|
};
|
|
10824
|
+
/**
|
|
10825
|
+
* Optional attributes
|
|
10826
|
+
*/
|
|
10827
|
+
attributes?: {
|
|
10828
|
+
[k: string]: string;
|
|
10829
|
+
};
|
|
10606
10830
|
};
|
|
10607
10831
|
};
|
|
10608
10832
|
actions: {
|
|
@@ -10667,6 +10891,26 @@ interface UpdateInterfaceResponse$1 {
|
|
|
10667
10891
|
script: string;
|
|
10668
10892
|
language: string;
|
|
10669
10893
|
};
|
|
10894
|
+
/**
|
|
10895
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10896
|
+
*/
|
|
10897
|
+
title: string;
|
|
10898
|
+
/**
|
|
10899
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10900
|
+
*/
|
|
10901
|
+
description: string;
|
|
10902
|
+
/**
|
|
10903
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
10904
|
+
*/
|
|
10905
|
+
iconUrl: string;
|
|
10906
|
+
/**
|
|
10907
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
10908
|
+
*/
|
|
10909
|
+
readmeUrl: string;
|
|
10910
|
+
/**
|
|
10911
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10912
|
+
*/
|
|
10913
|
+
public: boolean;
|
|
10670
10914
|
};
|
|
10671
10915
|
}
|
|
10672
10916
|
|
|
@@ -10716,13 +10960,33 @@ interface ListInterfacesResponse$1 {
|
|
|
10716
10960
|
* Version of the [Interface](#schema_interface)
|
|
10717
10961
|
*/
|
|
10718
10962
|
version: string;
|
|
10719
|
-
}[];
|
|
10720
|
-
meta: {
|
|
10721
10963
|
/**
|
|
10722
|
-
*
|
|
10964
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10723
10965
|
*/
|
|
10724
|
-
|
|
10725
|
-
|
|
10966
|
+
title: string;
|
|
10967
|
+
/**
|
|
10968
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10969
|
+
*/
|
|
10970
|
+
description: string;
|
|
10971
|
+
/**
|
|
10972
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
10973
|
+
*/
|
|
10974
|
+
iconUrl: string;
|
|
10975
|
+
/**
|
|
10976
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
10977
|
+
*/
|
|
10978
|
+
readmeUrl: string;
|
|
10979
|
+
/**
|
|
10980
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10981
|
+
*/
|
|
10982
|
+
public: boolean;
|
|
10983
|
+
}[];
|
|
10984
|
+
meta: {
|
|
10985
|
+
/**
|
|
10986
|
+
* The token to use to retrieve the next page of results, passed as a query string parameter (value should be URL-encoded) to this API endpoint.
|
|
10987
|
+
*/
|
|
10988
|
+
nextToken?: string;
|
|
10989
|
+
};
|
|
10726
10990
|
}
|
|
10727
10991
|
|
|
10728
10992
|
interface CreatePluginRequestHeaders$1 {
|
|
@@ -10793,6 +11057,12 @@ interface CreatePluginRequestBody$1 {
|
|
|
10793
11057
|
schema: {
|
|
10794
11058
|
[k: string]: any;
|
|
10795
11059
|
};
|
|
11060
|
+
/**
|
|
11061
|
+
* Optional attributes
|
|
11062
|
+
*/
|
|
11063
|
+
attributes?: {
|
|
11064
|
+
[k: string]: string;
|
|
11065
|
+
};
|
|
10796
11066
|
};
|
|
10797
11067
|
};
|
|
10798
11068
|
actions?: {
|
|
@@ -10987,6 +11257,12 @@ interface CreatePluginResponse$1 {
|
|
|
10987
11257
|
schema: {
|
|
10988
11258
|
[k: string]: any;
|
|
10989
11259
|
};
|
|
11260
|
+
/**
|
|
11261
|
+
* Optional attributes
|
|
11262
|
+
*/
|
|
11263
|
+
attributes?: {
|
|
11264
|
+
[k: string]: string;
|
|
11265
|
+
};
|
|
10990
11266
|
};
|
|
10991
11267
|
};
|
|
10992
11268
|
actions: {
|
|
@@ -11186,6 +11462,12 @@ interface GetPluginResponse$1 {
|
|
|
11186
11462
|
schema: {
|
|
11187
11463
|
[k: string]: any;
|
|
11188
11464
|
};
|
|
11465
|
+
/**
|
|
11466
|
+
* Optional attributes
|
|
11467
|
+
*/
|
|
11468
|
+
attributes?: {
|
|
11469
|
+
[k: string]: string;
|
|
11470
|
+
};
|
|
11189
11471
|
};
|
|
11190
11472
|
};
|
|
11191
11473
|
actions: {
|
|
@@ -11386,6 +11668,12 @@ interface GetPluginByNameResponse$1 {
|
|
|
11386
11668
|
schema: {
|
|
11387
11669
|
[k: string]: any;
|
|
11388
11670
|
};
|
|
11671
|
+
/**
|
|
11672
|
+
* Optional attributes
|
|
11673
|
+
*/
|
|
11674
|
+
attributes?: {
|
|
11675
|
+
[k: string]: string;
|
|
11676
|
+
};
|
|
11389
11677
|
};
|
|
11390
11678
|
};
|
|
11391
11679
|
actions: {
|
|
@@ -11546,9 +11834,6 @@ interface UpdatePluginRequestBody$1 {
|
|
|
11546
11834
|
} | null;
|
|
11547
11835
|
};
|
|
11548
11836
|
events?: {
|
|
11549
|
-
/**
|
|
11550
|
-
* Event Definition
|
|
11551
|
-
*/
|
|
11552
11837
|
[k: string]: {
|
|
11553
11838
|
/**
|
|
11554
11839
|
* Title of the event
|
|
@@ -11561,12 +11846,15 @@ interface UpdatePluginRequestBody$1 {
|
|
|
11561
11846
|
schema: {
|
|
11562
11847
|
[k: string]: any;
|
|
11563
11848
|
};
|
|
11849
|
+
/**
|
|
11850
|
+
* Optional attributes. Set attributes to null to remove them
|
|
11851
|
+
*/
|
|
11852
|
+
attributes?: {
|
|
11853
|
+
[k: string]: string | null;
|
|
11854
|
+
};
|
|
11564
11855
|
} | null;
|
|
11565
11856
|
};
|
|
11566
11857
|
actions?: {
|
|
11567
|
-
/**
|
|
11568
|
-
* Action definition
|
|
11569
|
-
*/
|
|
11570
11858
|
[k: string]: {
|
|
11571
11859
|
/**
|
|
11572
11860
|
* Title of the action
|
|
@@ -11589,10 +11877,10 @@ interface UpdatePluginRequestBody$1 {
|
|
|
11589
11877
|
};
|
|
11590
11878
|
};
|
|
11591
11879
|
/**
|
|
11592
|
-
* Optional attributes
|
|
11880
|
+
* Optional attributes. Set attributes to null to remove them
|
|
11593
11881
|
*/
|
|
11594
11882
|
attributes?: {
|
|
11595
|
-
[k: string]: string;
|
|
11883
|
+
[k: string]: string | null;
|
|
11596
11884
|
};
|
|
11597
11885
|
} | null;
|
|
11598
11886
|
};
|
|
@@ -11749,6 +12037,12 @@ interface UpdatePluginResponse$1 {
|
|
|
11749
12037
|
schema: {
|
|
11750
12038
|
[k: string]: any;
|
|
11751
12039
|
};
|
|
12040
|
+
/**
|
|
12041
|
+
* Optional attributes
|
|
12042
|
+
*/
|
|
12043
|
+
attributes?: {
|
|
12044
|
+
[k: string]: string;
|
|
12045
|
+
};
|
|
11752
12046
|
};
|
|
11753
12047
|
};
|
|
11754
12048
|
actions: {
|
|
@@ -12432,6 +12726,11 @@ declare class Client$6 extends Client$7 {
|
|
|
12432
12726
|
updatedAt: string;
|
|
12433
12727
|
name: string;
|
|
12434
12728
|
version: string;
|
|
12729
|
+
title: string;
|
|
12730
|
+
description: string;
|
|
12731
|
+
iconUrl: string;
|
|
12732
|
+
readmeUrl: string;
|
|
12733
|
+
public: boolean;
|
|
12435
12734
|
}>;
|
|
12436
12735
|
activities: (props: {
|
|
12437
12736
|
botId: string;
|
|
@@ -16963,11 +17262,9 @@ interface ConfigureIntegrationRequestBody {
|
|
|
16963
17262
|
*/
|
|
16964
17263
|
scheduleRegisterCall?: "hourly" | "daily" | "weekly" | "bi-weekly" | "monthly" | "bi-monthly" | "quarterly" | "yearly";
|
|
16965
17264
|
/**
|
|
16966
|
-
* **EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers.
|
|
17265
|
+
* **EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. This is an experimental feature meant to be used by specific integrations.
|
|
16967
17266
|
*/
|
|
16968
|
-
sandboxIdentifiers?: {
|
|
16969
|
-
[k: string]: {} | null;
|
|
16970
|
-
} | null;
|
|
17267
|
+
sandboxIdentifiers?: {} | null;
|
|
16971
17268
|
}
|
|
16972
17269
|
type ConfigureIntegrationInput = ConfigureIntegrationRequestBody & ConfigureIntegrationRequestHeaders & ConfigureIntegrationRequestQuery & ConfigureIntegrationRequestParams;
|
|
16973
17270
|
interface ConfigureIntegrationResponse {
|
|
@@ -18459,6 +18756,12 @@ interface GetPublicIntegrationByIdResponse {
|
|
|
18459
18756
|
schema: {
|
|
18460
18757
|
[k: string]: any;
|
|
18461
18758
|
};
|
|
18759
|
+
/**
|
|
18760
|
+
* Optional attributes
|
|
18761
|
+
*/
|
|
18762
|
+
attributes?: {
|
|
18763
|
+
[k: string]: string;
|
|
18764
|
+
};
|
|
18462
18765
|
};
|
|
18463
18766
|
};
|
|
18464
18767
|
actions: {
|
|
@@ -18850,6 +19153,12 @@ interface GetPublicIntegrationResponse {
|
|
|
18850
19153
|
schema: {
|
|
18851
19154
|
[k: string]: any;
|
|
18852
19155
|
};
|
|
19156
|
+
/**
|
|
19157
|
+
* Optional attributes
|
|
19158
|
+
*/
|
|
19159
|
+
attributes?: {
|
|
19160
|
+
[k: string]: string;
|
|
19161
|
+
};
|
|
18853
19162
|
};
|
|
18854
19163
|
};
|
|
18855
19164
|
actions: {
|
|
@@ -19128,6 +19437,12 @@ interface GetPublicPluginByIdResponse {
|
|
|
19128
19437
|
schema: {
|
|
19129
19438
|
[k: string]: any;
|
|
19130
19439
|
};
|
|
19440
|
+
/**
|
|
19441
|
+
* Optional attributes
|
|
19442
|
+
*/
|
|
19443
|
+
attributes?: {
|
|
19444
|
+
[k: string]: string;
|
|
19445
|
+
};
|
|
19131
19446
|
};
|
|
19132
19447
|
};
|
|
19133
19448
|
actions: {
|
|
@@ -19328,6 +19643,12 @@ interface GetPublicPluginResponse {
|
|
|
19328
19643
|
schema: {
|
|
19329
19644
|
[k: string]: any;
|
|
19330
19645
|
};
|
|
19646
|
+
/**
|
|
19647
|
+
* Optional attributes
|
|
19648
|
+
*/
|
|
19649
|
+
attributes?: {
|
|
19650
|
+
[k: string]: string;
|
|
19651
|
+
};
|
|
19331
19652
|
};
|
|
19332
19653
|
};
|
|
19333
19654
|
actions: {
|
|
@@ -19504,6 +19825,12 @@ interface CreateBotRequestBody {
|
|
|
19504
19825
|
schema: {
|
|
19505
19826
|
[k: string]: any;
|
|
19506
19827
|
};
|
|
19828
|
+
/**
|
|
19829
|
+
* Optional attributes
|
|
19830
|
+
*/
|
|
19831
|
+
attributes?: {
|
|
19832
|
+
[k: string]: string;
|
|
19833
|
+
};
|
|
19507
19834
|
};
|
|
19508
19835
|
};
|
|
19509
19836
|
recurringEvents?: {
|
|
@@ -19852,6 +20179,12 @@ interface CreateBotResponse {
|
|
|
19852
20179
|
schema: {
|
|
19853
20180
|
[k: string]: any;
|
|
19854
20181
|
};
|
|
20182
|
+
/**
|
|
20183
|
+
* Optional attributes
|
|
20184
|
+
*/
|
|
20185
|
+
attributes?: {
|
|
20186
|
+
[k: string]: string;
|
|
20187
|
+
};
|
|
19855
20188
|
};
|
|
19856
20189
|
};
|
|
19857
20190
|
/**
|
|
@@ -20062,9 +20395,6 @@ interface UpdateBotRequestBody {
|
|
|
20062
20395
|
};
|
|
20063
20396
|
};
|
|
20064
20397
|
events?: {
|
|
20065
|
-
/**
|
|
20066
|
-
* Event Definition
|
|
20067
|
-
*/
|
|
20068
20398
|
[k: string]: {
|
|
20069
20399
|
/**
|
|
20070
20400
|
* Title of the event
|
|
@@ -20077,12 +20407,15 @@ interface UpdateBotRequestBody {
|
|
|
20077
20407
|
schema: {
|
|
20078
20408
|
[k: string]: any;
|
|
20079
20409
|
};
|
|
20410
|
+
/**
|
|
20411
|
+
* Optional attributes. Set attributes to null to remove them
|
|
20412
|
+
*/
|
|
20413
|
+
attributes?: {
|
|
20414
|
+
[k: string]: string | null;
|
|
20415
|
+
};
|
|
20080
20416
|
} | null;
|
|
20081
20417
|
};
|
|
20082
20418
|
actions?: {
|
|
20083
|
-
/**
|
|
20084
|
-
* Action definition
|
|
20085
|
-
*/
|
|
20086
20419
|
[k: string]: {
|
|
20087
20420
|
/**
|
|
20088
20421
|
* Title of the action
|
|
@@ -20105,10 +20438,10 @@ interface UpdateBotRequestBody {
|
|
|
20105
20438
|
};
|
|
20106
20439
|
};
|
|
20107
20440
|
/**
|
|
20108
|
-
* Optional attributes
|
|
20441
|
+
* Optional attributes. Set attributes to null to remove them
|
|
20109
20442
|
*/
|
|
20110
20443
|
attributes?: {
|
|
20111
|
-
[k: string]: string;
|
|
20444
|
+
[k: string]: string | null;
|
|
20112
20445
|
};
|
|
20113
20446
|
} | null;
|
|
20114
20447
|
};
|
|
@@ -20368,6 +20701,12 @@ interface UpdateBotResponse {
|
|
|
20368
20701
|
schema: {
|
|
20369
20702
|
[k: string]: any;
|
|
20370
20703
|
};
|
|
20704
|
+
/**
|
|
20705
|
+
* Optional attributes
|
|
20706
|
+
*/
|
|
20707
|
+
attributes?: {
|
|
20708
|
+
[k: string]: string;
|
|
20709
|
+
};
|
|
20371
20710
|
};
|
|
20372
20711
|
};
|
|
20373
20712
|
/**
|
|
@@ -20751,6 +21090,12 @@ interface GetBotResponse {
|
|
|
20751
21090
|
schema: {
|
|
20752
21091
|
[k: string]: any;
|
|
20753
21092
|
};
|
|
21093
|
+
/**
|
|
21094
|
+
* Optional attributes
|
|
21095
|
+
*/
|
|
21096
|
+
attributes?: {
|
|
21097
|
+
[k: string]: string;
|
|
21098
|
+
};
|
|
20754
21099
|
};
|
|
20755
21100
|
};
|
|
20756
21101
|
/**
|
|
@@ -22044,6 +22389,12 @@ interface CreateIntegrationRequestBody {
|
|
|
22044
22389
|
schema: {
|
|
22045
22390
|
[k: string]: any;
|
|
22046
22391
|
};
|
|
22392
|
+
/**
|
|
22393
|
+
* Optional attributes
|
|
22394
|
+
*/
|
|
22395
|
+
attributes?: {
|
|
22396
|
+
[k: string]: string;
|
|
22397
|
+
};
|
|
22047
22398
|
};
|
|
22048
22399
|
};
|
|
22049
22400
|
actions?: {
|
|
@@ -22519,6 +22870,12 @@ interface CreateIntegrationResponse {
|
|
|
22519
22870
|
schema: {
|
|
22520
22871
|
[k: string]: any;
|
|
22521
22872
|
};
|
|
22873
|
+
/**
|
|
22874
|
+
* Optional attributes
|
|
22875
|
+
*/
|
|
22876
|
+
attributes?: {
|
|
22877
|
+
[k: string]: string;
|
|
22878
|
+
};
|
|
22522
22879
|
};
|
|
22523
22880
|
};
|
|
22524
22881
|
actions: {
|
|
@@ -22736,6 +23093,12 @@ interface ValidateIntegrationCreationRequestBody {
|
|
|
22736
23093
|
schema: {
|
|
22737
23094
|
[k: string]: any;
|
|
22738
23095
|
};
|
|
23096
|
+
/**
|
|
23097
|
+
* Optional attributes
|
|
23098
|
+
*/
|
|
23099
|
+
attributes?: {
|
|
23100
|
+
[k: string]: string;
|
|
23101
|
+
};
|
|
22739
23102
|
};
|
|
22740
23103
|
};
|
|
22741
23104
|
actions?: {
|
|
@@ -23124,9 +23487,6 @@ interface UpdateIntegrationRequestBody {
|
|
|
23124
23487
|
} | null;
|
|
23125
23488
|
};
|
|
23126
23489
|
events?: {
|
|
23127
|
-
/**
|
|
23128
|
-
* Event Definition
|
|
23129
|
-
*/
|
|
23130
23490
|
[k: string]: {
|
|
23131
23491
|
/**
|
|
23132
23492
|
* Title of the event
|
|
@@ -23139,6 +23499,12 @@ interface UpdateIntegrationRequestBody {
|
|
|
23139
23499
|
schema: {
|
|
23140
23500
|
[k: string]: any;
|
|
23141
23501
|
};
|
|
23502
|
+
/**
|
|
23503
|
+
* Optional attributes. Set attributes to null to remove them
|
|
23504
|
+
*/
|
|
23505
|
+
attributes?: {
|
|
23506
|
+
[k: string]: string | null;
|
|
23507
|
+
};
|
|
23142
23508
|
} | null;
|
|
23143
23509
|
};
|
|
23144
23510
|
states?: {
|
|
@@ -23525,6 +23891,12 @@ interface UpdateIntegrationResponse {
|
|
|
23525
23891
|
schema: {
|
|
23526
23892
|
[k: string]: any;
|
|
23527
23893
|
};
|
|
23894
|
+
/**
|
|
23895
|
+
* Optional attributes
|
|
23896
|
+
*/
|
|
23897
|
+
attributes?: {
|
|
23898
|
+
[k: string]: string;
|
|
23899
|
+
};
|
|
23528
23900
|
};
|
|
23529
23901
|
};
|
|
23530
23902
|
actions: {
|
|
@@ -23806,9 +24178,6 @@ interface ValidateIntegrationUpdateRequestBody {
|
|
|
23806
24178
|
} | null;
|
|
23807
24179
|
};
|
|
23808
24180
|
events?: {
|
|
23809
|
-
/**
|
|
23810
|
-
* Event Definition
|
|
23811
|
-
*/
|
|
23812
24181
|
[k: string]: {
|
|
23813
24182
|
/**
|
|
23814
24183
|
* Title of the event
|
|
@@ -23821,6 +24190,12 @@ interface ValidateIntegrationUpdateRequestBody {
|
|
|
23821
24190
|
schema: {
|
|
23822
24191
|
[k: string]: any;
|
|
23823
24192
|
};
|
|
24193
|
+
/**
|
|
24194
|
+
* Optional attributes. Set attributes to null to remove them
|
|
24195
|
+
*/
|
|
24196
|
+
attributes?: {
|
|
24197
|
+
[k: string]: string | null;
|
|
24198
|
+
};
|
|
23824
24199
|
} | null;
|
|
23825
24200
|
};
|
|
23826
24201
|
states?: {
|
|
@@ -24323,6 +24698,12 @@ interface GetIntegrationResponse {
|
|
|
24323
24698
|
schema: {
|
|
24324
24699
|
[k: string]: any;
|
|
24325
24700
|
};
|
|
24701
|
+
/**
|
|
24702
|
+
* Optional attributes
|
|
24703
|
+
*/
|
|
24704
|
+
attributes?: {
|
|
24705
|
+
[k: string]: string;
|
|
24706
|
+
};
|
|
24326
24707
|
};
|
|
24327
24708
|
};
|
|
24328
24709
|
actions: {
|
|
@@ -24733,6 +25114,12 @@ interface GetIntegrationByNameResponse {
|
|
|
24733
25114
|
schema: {
|
|
24734
25115
|
[k: string]: any;
|
|
24735
25116
|
};
|
|
25117
|
+
/**
|
|
25118
|
+
* Optional attributes
|
|
25119
|
+
*/
|
|
25120
|
+
attributes?: {
|
|
25121
|
+
[k: string]: string;
|
|
25122
|
+
};
|
|
24736
25123
|
};
|
|
24737
25124
|
};
|
|
24738
25125
|
actions: {
|
|
@@ -24929,6 +25316,12 @@ interface CreateInterfaceRequestBody {
|
|
|
24929
25316
|
schema: {
|
|
24930
25317
|
[k: string]: any;
|
|
24931
25318
|
};
|
|
25319
|
+
/**
|
|
25320
|
+
* Optional attributes
|
|
25321
|
+
*/
|
|
25322
|
+
attributes?: {
|
|
25323
|
+
[k: string]: string;
|
|
25324
|
+
};
|
|
24932
25325
|
};
|
|
24933
25326
|
};
|
|
24934
25327
|
actions?: {
|
|
@@ -24993,6 +25386,26 @@ interface CreateInterfaceRequestBody {
|
|
|
24993
25386
|
script: string;
|
|
24994
25387
|
language: string;
|
|
24995
25388
|
};
|
|
25389
|
+
/**
|
|
25390
|
+
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
25391
|
+
*/
|
|
25392
|
+
icon?: string;
|
|
25393
|
+
/**
|
|
25394
|
+
* Base64 encoded markdown of the interface readme. The readme is specific to each interface versions.
|
|
25395
|
+
*/
|
|
25396
|
+
readme?: string;
|
|
25397
|
+
/**
|
|
25398
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
25399
|
+
*/
|
|
25400
|
+
title?: string;
|
|
25401
|
+
/**
|
|
25402
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
25403
|
+
*/
|
|
25404
|
+
description?: string;
|
|
25405
|
+
/**
|
|
25406
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
25407
|
+
*/
|
|
25408
|
+
public?: boolean;
|
|
24996
25409
|
}
|
|
24997
25410
|
type CreateInterfaceInput = CreateInterfaceRequestBody & CreateInterfaceRequestHeaders & CreateInterfaceRequestQuery & CreateInterfaceRequestParams;
|
|
24998
25411
|
interface CreateInterfaceResponse {
|
|
@@ -25051,6 +25464,12 @@ interface CreateInterfaceResponse {
|
|
|
25051
25464
|
schema: {
|
|
25052
25465
|
[k: string]: any;
|
|
25053
25466
|
};
|
|
25467
|
+
/**
|
|
25468
|
+
* Optional attributes
|
|
25469
|
+
*/
|
|
25470
|
+
attributes?: {
|
|
25471
|
+
[k: string]: string;
|
|
25472
|
+
};
|
|
25054
25473
|
};
|
|
25055
25474
|
};
|
|
25056
25475
|
actions: {
|
|
@@ -25115,6 +25534,26 @@ interface CreateInterfaceResponse {
|
|
|
25115
25534
|
script: string;
|
|
25116
25535
|
language: string;
|
|
25117
25536
|
};
|
|
25537
|
+
/**
|
|
25538
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
25539
|
+
*/
|
|
25540
|
+
title: string;
|
|
25541
|
+
/**
|
|
25542
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
25543
|
+
*/
|
|
25544
|
+
description: string;
|
|
25545
|
+
/**
|
|
25546
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
25547
|
+
*/
|
|
25548
|
+
iconUrl: string;
|
|
25549
|
+
/**
|
|
25550
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
25551
|
+
*/
|
|
25552
|
+
readmeUrl: string;
|
|
25553
|
+
/**
|
|
25554
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
25555
|
+
*/
|
|
25556
|
+
public: boolean;
|
|
25118
25557
|
};
|
|
25119
25558
|
}
|
|
25120
25559
|
|
|
@@ -25184,6 +25623,12 @@ interface GetInterfaceResponse {
|
|
|
25184
25623
|
schema: {
|
|
25185
25624
|
[k: string]: any;
|
|
25186
25625
|
};
|
|
25626
|
+
/**
|
|
25627
|
+
* Optional attributes
|
|
25628
|
+
*/
|
|
25629
|
+
attributes?: {
|
|
25630
|
+
[k: string]: string;
|
|
25631
|
+
};
|
|
25187
25632
|
};
|
|
25188
25633
|
};
|
|
25189
25634
|
actions: {
|
|
@@ -25248,6 +25693,26 @@ interface GetInterfaceResponse {
|
|
|
25248
25693
|
script: string;
|
|
25249
25694
|
language: string;
|
|
25250
25695
|
};
|
|
25696
|
+
/**
|
|
25697
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
25698
|
+
*/
|
|
25699
|
+
title: string;
|
|
25700
|
+
/**
|
|
25701
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
25702
|
+
*/
|
|
25703
|
+
description: string;
|
|
25704
|
+
/**
|
|
25705
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
25706
|
+
*/
|
|
25707
|
+
iconUrl: string;
|
|
25708
|
+
/**
|
|
25709
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
25710
|
+
*/
|
|
25711
|
+
readmeUrl: string;
|
|
25712
|
+
/**
|
|
25713
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
25714
|
+
*/
|
|
25715
|
+
public: boolean;
|
|
25251
25716
|
};
|
|
25252
25717
|
}
|
|
25253
25718
|
|
|
@@ -25318,6 +25783,12 @@ interface GetInterfaceByNameResponse {
|
|
|
25318
25783
|
schema: {
|
|
25319
25784
|
[k: string]: any;
|
|
25320
25785
|
};
|
|
25786
|
+
/**
|
|
25787
|
+
* Optional attributes
|
|
25788
|
+
*/
|
|
25789
|
+
attributes?: {
|
|
25790
|
+
[k: string]: string;
|
|
25791
|
+
};
|
|
25321
25792
|
};
|
|
25322
25793
|
};
|
|
25323
25794
|
actions: {
|
|
@@ -25382,6 +25853,26 @@ interface GetInterfaceByNameResponse {
|
|
|
25382
25853
|
script: string;
|
|
25383
25854
|
language: string;
|
|
25384
25855
|
};
|
|
25856
|
+
/**
|
|
25857
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
25858
|
+
*/
|
|
25859
|
+
title: string;
|
|
25860
|
+
/**
|
|
25861
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
25862
|
+
*/
|
|
25863
|
+
description: string;
|
|
25864
|
+
/**
|
|
25865
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
25866
|
+
*/
|
|
25867
|
+
iconUrl: string;
|
|
25868
|
+
/**
|
|
25869
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
25870
|
+
*/
|
|
25871
|
+
readmeUrl: string;
|
|
25872
|
+
/**
|
|
25873
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
25874
|
+
*/
|
|
25875
|
+
public: boolean;
|
|
25385
25876
|
};
|
|
25386
25877
|
}
|
|
25387
25878
|
|
|
@@ -25412,9 +25903,6 @@ interface UpdateInterfaceRequestBody {
|
|
|
25412
25903
|
} | null;
|
|
25413
25904
|
};
|
|
25414
25905
|
events?: {
|
|
25415
|
-
/**
|
|
25416
|
-
* Event Definition
|
|
25417
|
-
*/
|
|
25418
25906
|
[k: string]: {
|
|
25419
25907
|
/**
|
|
25420
25908
|
* Title of the event
|
|
@@ -25427,6 +25915,12 @@ interface UpdateInterfaceRequestBody {
|
|
|
25427
25915
|
schema: {
|
|
25428
25916
|
[k: string]: any;
|
|
25429
25917
|
};
|
|
25918
|
+
/**
|
|
25919
|
+
* Optional attributes. Set attributes to null to remove them
|
|
25920
|
+
*/
|
|
25921
|
+
attributes?: {
|
|
25922
|
+
[k: string]: string | null;
|
|
25923
|
+
};
|
|
25430
25924
|
} | null;
|
|
25431
25925
|
};
|
|
25432
25926
|
actions?: {
|
|
@@ -25451,6 +25945,9 @@ interface UpdateInterfaceRequestBody {
|
|
|
25451
25945
|
[k: string]: any;
|
|
25452
25946
|
};
|
|
25453
25947
|
};
|
|
25948
|
+
/**
|
|
25949
|
+
* Optional attributes. Set attributes to null to remove them
|
|
25950
|
+
*/
|
|
25454
25951
|
attributes?: {
|
|
25455
25952
|
[k: string]: string | null;
|
|
25456
25953
|
};
|
|
@@ -25485,6 +25982,26 @@ interface UpdateInterfaceRequestBody {
|
|
|
25485
25982
|
script: string;
|
|
25486
25983
|
language: string;
|
|
25487
25984
|
} | null;
|
|
25985
|
+
/**
|
|
25986
|
+
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
25987
|
+
*/
|
|
25988
|
+
icon?: string;
|
|
25989
|
+
/**
|
|
25990
|
+
* Base64 encoded markdown of the interface readme. The readme is specific to each interface versions.
|
|
25991
|
+
*/
|
|
25992
|
+
readme?: string;
|
|
25993
|
+
/**
|
|
25994
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
25995
|
+
*/
|
|
25996
|
+
title?: string;
|
|
25997
|
+
/**
|
|
25998
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
25999
|
+
*/
|
|
26000
|
+
description?: string;
|
|
26001
|
+
/**
|
|
26002
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
26003
|
+
*/
|
|
26004
|
+
public?: boolean;
|
|
25488
26005
|
}
|
|
25489
26006
|
type UpdateInterfaceInput = UpdateInterfaceRequestBody & UpdateInterfaceRequestHeaders & UpdateInterfaceRequestQuery & UpdateInterfaceRequestParams;
|
|
25490
26007
|
interface UpdateInterfaceResponse {
|
|
@@ -25543,6 +26060,12 @@ interface UpdateInterfaceResponse {
|
|
|
25543
26060
|
schema: {
|
|
25544
26061
|
[k: string]: any;
|
|
25545
26062
|
};
|
|
26063
|
+
/**
|
|
26064
|
+
* Optional attributes
|
|
26065
|
+
*/
|
|
26066
|
+
attributes?: {
|
|
26067
|
+
[k: string]: string;
|
|
26068
|
+
};
|
|
25546
26069
|
};
|
|
25547
26070
|
};
|
|
25548
26071
|
actions: {
|
|
@@ -25607,6 +26130,26 @@ interface UpdateInterfaceResponse {
|
|
|
25607
26130
|
script: string;
|
|
25608
26131
|
language: string;
|
|
25609
26132
|
};
|
|
26133
|
+
/**
|
|
26134
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
26135
|
+
*/
|
|
26136
|
+
title: string;
|
|
26137
|
+
/**
|
|
26138
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
26139
|
+
*/
|
|
26140
|
+
description: string;
|
|
26141
|
+
/**
|
|
26142
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
26143
|
+
*/
|
|
26144
|
+
iconUrl: string;
|
|
26145
|
+
/**
|
|
26146
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
26147
|
+
*/
|
|
26148
|
+
readmeUrl: string;
|
|
26149
|
+
/**
|
|
26150
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
26151
|
+
*/
|
|
26152
|
+
public: boolean;
|
|
25610
26153
|
};
|
|
25611
26154
|
}
|
|
25612
26155
|
|
|
@@ -25656,6 +26199,26 @@ interface ListInterfacesResponse {
|
|
|
25656
26199
|
* Version of the [Interface](#schema_interface)
|
|
25657
26200
|
*/
|
|
25658
26201
|
version: string;
|
|
26202
|
+
/**
|
|
26203
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
26204
|
+
*/
|
|
26205
|
+
title: string;
|
|
26206
|
+
/**
|
|
26207
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
26208
|
+
*/
|
|
26209
|
+
description: string;
|
|
26210
|
+
/**
|
|
26211
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
26212
|
+
*/
|
|
26213
|
+
iconUrl: string;
|
|
26214
|
+
/**
|
|
26215
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
26216
|
+
*/
|
|
26217
|
+
readmeUrl: string;
|
|
26218
|
+
/**
|
|
26219
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
26220
|
+
*/
|
|
26221
|
+
public: boolean;
|
|
25659
26222
|
}[];
|
|
25660
26223
|
meta: {
|
|
25661
26224
|
/**
|
|
@@ -25733,6 +26296,12 @@ interface CreatePluginRequestBody {
|
|
|
25733
26296
|
schema: {
|
|
25734
26297
|
[k: string]: any;
|
|
25735
26298
|
};
|
|
26299
|
+
/**
|
|
26300
|
+
* Optional attributes
|
|
26301
|
+
*/
|
|
26302
|
+
attributes?: {
|
|
26303
|
+
[k: string]: string;
|
|
26304
|
+
};
|
|
25736
26305
|
};
|
|
25737
26306
|
};
|
|
25738
26307
|
actions?: {
|
|
@@ -25927,6 +26496,12 @@ interface CreatePluginResponse {
|
|
|
25927
26496
|
schema: {
|
|
25928
26497
|
[k: string]: any;
|
|
25929
26498
|
};
|
|
26499
|
+
/**
|
|
26500
|
+
* Optional attributes
|
|
26501
|
+
*/
|
|
26502
|
+
attributes?: {
|
|
26503
|
+
[k: string]: string;
|
|
26504
|
+
};
|
|
25930
26505
|
};
|
|
25931
26506
|
};
|
|
25932
26507
|
actions: {
|
|
@@ -26126,6 +26701,12 @@ interface GetPluginResponse {
|
|
|
26126
26701
|
schema: {
|
|
26127
26702
|
[k: string]: any;
|
|
26128
26703
|
};
|
|
26704
|
+
/**
|
|
26705
|
+
* Optional attributes
|
|
26706
|
+
*/
|
|
26707
|
+
attributes?: {
|
|
26708
|
+
[k: string]: string;
|
|
26709
|
+
};
|
|
26129
26710
|
};
|
|
26130
26711
|
};
|
|
26131
26712
|
actions: {
|
|
@@ -26326,6 +26907,12 @@ interface GetPluginByNameResponse {
|
|
|
26326
26907
|
schema: {
|
|
26327
26908
|
[k: string]: any;
|
|
26328
26909
|
};
|
|
26910
|
+
/**
|
|
26911
|
+
* Optional attributes
|
|
26912
|
+
*/
|
|
26913
|
+
attributes?: {
|
|
26914
|
+
[k: string]: string;
|
|
26915
|
+
};
|
|
26329
26916
|
};
|
|
26330
26917
|
};
|
|
26331
26918
|
actions: {
|
|
@@ -26486,9 +27073,6 @@ interface UpdatePluginRequestBody {
|
|
|
26486
27073
|
} | null;
|
|
26487
27074
|
};
|
|
26488
27075
|
events?: {
|
|
26489
|
-
/**
|
|
26490
|
-
* Event Definition
|
|
26491
|
-
*/
|
|
26492
27076
|
[k: string]: {
|
|
26493
27077
|
/**
|
|
26494
27078
|
* Title of the event
|
|
@@ -26501,12 +27085,15 @@ interface UpdatePluginRequestBody {
|
|
|
26501
27085
|
schema: {
|
|
26502
27086
|
[k: string]: any;
|
|
26503
27087
|
};
|
|
27088
|
+
/**
|
|
27089
|
+
* Optional attributes. Set attributes to null to remove them
|
|
27090
|
+
*/
|
|
27091
|
+
attributes?: {
|
|
27092
|
+
[k: string]: string | null;
|
|
27093
|
+
};
|
|
26504
27094
|
} | null;
|
|
26505
27095
|
};
|
|
26506
27096
|
actions?: {
|
|
26507
|
-
/**
|
|
26508
|
-
* Action definition
|
|
26509
|
-
*/
|
|
26510
27097
|
[k: string]: {
|
|
26511
27098
|
/**
|
|
26512
27099
|
* Title of the action
|
|
@@ -26529,10 +27116,10 @@ interface UpdatePluginRequestBody {
|
|
|
26529
27116
|
};
|
|
26530
27117
|
};
|
|
26531
27118
|
/**
|
|
26532
|
-
* Optional attributes
|
|
27119
|
+
* Optional attributes. Set attributes to null to remove them
|
|
26533
27120
|
*/
|
|
26534
27121
|
attributes?: {
|
|
26535
|
-
[k: string]: string;
|
|
27122
|
+
[k: string]: string | null;
|
|
26536
27123
|
};
|
|
26537
27124
|
} | null;
|
|
26538
27125
|
};
|
|
@@ -26689,6 +27276,12 @@ interface UpdatePluginResponse {
|
|
|
26689
27276
|
schema: {
|
|
26690
27277
|
[k: string]: any;
|
|
26691
27278
|
};
|
|
27279
|
+
/**
|
|
27280
|
+
* Optional attributes
|
|
27281
|
+
*/
|
|
27282
|
+
attributes?: {
|
|
27283
|
+
[k: string]: string;
|
|
27284
|
+
};
|
|
26692
27285
|
};
|
|
26693
27286
|
};
|
|
26694
27287
|
actions: {
|
|
@@ -29863,6 +30456,12 @@ interface Bot {
|
|
|
29863
30456
|
schema: {
|
|
29864
30457
|
[k: string]: any;
|
|
29865
30458
|
};
|
|
30459
|
+
/**
|
|
30460
|
+
* Optional attributes
|
|
30461
|
+
*/
|
|
30462
|
+
attributes?: {
|
|
30463
|
+
[k: string]: string;
|
|
30464
|
+
};
|
|
29866
30465
|
};
|
|
29867
30466
|
};
|
|
29868
30467
|
/**
|
|
@@ -30227,6 +30826,12 @@ interface Integration {
|
|
|
30227
30826
|
schema: {
|
|
30228
30827
|
[k: string]: any;
|
|
30229
30828
|
};
|
|
30829
|
+
/**
|
|
30830
|
+
* Optional attributes
|
|
30831
|
+
*/
|
|
30832
|
+
attributes?: {
|
|
30833
|
+
[k: string]: string;
|
|
30834
|
+
};
|
|
30230
30835
|
};
|
|
30231
30836
|
};
|
|
30232
30837
|
actions: {
|
|
@@ -30401,6 +31006,12 @@ interface Interface {
|
|
|
30401
31006
|
schema: {
|
|
30402
31007
|
[k: string]: any;
|
|
30403
31008
|
};
|
|
31009
|
+
/**
|
|
31010
|
+
* Optional attributes
|
|
31011
|
+
*/
|
|
31012
|
+
attributes?: {
|
|
31013
|
+
[k: string]: string;
|
|
31014
|
+
};
|
|
30404
31015
|
};
|
|
30405
31016
|
};
|
|
30406
31017
|
actions: {
|
|
@@ -30465,6 +31076,26 @@ interface Interface {
|
|
|
30465
31076
|
script: string;
|
|
30466
31077
|
language: string;
|
|
30467
31078
|
};
|
|
31079
|
+
/**
|
|
31080
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
31081
|
+
*/
|
|
31082
|
+
title: string;
|
|
31083
|
+
/**
|
|
31084
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
31085
|
+
*/
|
|
31086
|
+
description: string;
|
|
31087
|
+
/**
|
|
31088
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
31089
|
+
*/
|
|
31090
|
+
iconUrl: string;
|
|
31091
|
+
/**
|
|
31092
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
31093
|
+
*/
|
|
31094
|
+
readmeUrl: string;
|
|
31095
|
+
/**
|
|
31096
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
31097
|
+
*/
|
|
31098
|
+
public: boolean;
|
|
30468
31099
|
}
|
|
30469
31100
|
interface Plugin {
|
|
30470
31101
|
/**
|
|
@@ -30540,6 +31171,12 @@ interface Plugin {
|
|
|
30540
31171
|
schema: {
|
|
30541
31172
|
[k: string]: any;
|
|
30542
31173
|
};
|
|
31174
|
+
/**
|
|
31175
|
+
* Optional attributes
|
|
31176
|
+
*/
|
|
31177
|
+
attributes?: {
|
|
31178
|
+
[k: string]: string;
|
|
31179
|
+
};
|
|
30543
31180
|
};
|
|
30544
31181
|
};
|
|
30545
31182
|
actions: {
|
|
@@ -31817,6 +32454,11 @@ declare class Client extends Client$1 implements IClient {
|
|
|
31817
32454
|
updatedAt: string;
|
|
31818
32455
|
name: string;
|
|
31819
32456
|
version: string;
|
|
32457
|
+
title: string;
|
|
32458
|
+
description: string;
|
|
32459
|
+
iconUrl: string;
|
|
32460
|
+
readmeUrl: string;
|
|
32461
|
+
public: boolean;
|
|
31820
32462
|
}>;
|
|
31821
32463
|
activities: (props: {
|
|
31822
32464
|
botId: string;
|