@botpress/client 1.5.0 → 1.7.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 +12 -12
- package/dist/bundle.cjs.map +4 -4
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +4 -4
- package/dist/index.d.ts +1168 -64
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1810,13 +1810,13 @@ interface ConfigureIntegrationRequestBody$1 {
|
|
|
1810
1810
|
/**
|
|
1811
1811
|
* Unique identifier of the integration that was installed on the bot
|
|
1812
1812
|
*/
|
|
1813
|
-
identifier?: string;
|
|
1813
|
+
identifier?: string | null;
|
|
1814
1814
|
/**
|
|
1815
1815
|
* Recurring schedule on which `register()` will be called on the integration
|
|
1816
1816
|
*/
|
|
1817
1817
|
scheduleRegisterCall?: "hourly" | "daily" | "weekly" | "bi-weekly" | "monthly" | "bi-monthly" | "quarterly" | "yearly";
|
|
1818
1818
|
/**
|
|
1819
|
-
* Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. Setting an individual
|
|
1819
|
+
* **EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. Setting an individual sandbox identifier to null will remove that sandbox identifier. This is an experimental feature meant to be used by specific integrations.
|
|
1820
1820
|
*/
|
|
1821
1821
|
sandboxIdentifiers?: {
|
|
1822
1822
|
[k: string]: {} | null;
|
|
@@ -3520,6 +3520,12 @@ interface GetPublicIntegrationByIdResponse$1 {
|
|
|
3520
3520
|
schema: {
|
|
3521
3521
|
[k: string]: any;
|
|
3522
3522
|
};
|
|
3523
|
+
/**
|
|
3524
|
+
* Optional attributes
|
|
3525
|
+
*/
|
|
3526
|
+
attributes?: {
|
|
3527
|
+
[k: string]: string;
|
|
3528
|
+
};
|
|
3523
3529
|
};
|
|
3524
3530
|
};
|
|
3525
3531
|
actions: {
|
|
@@ -3547,6 +3553,12 @@ interface GetPublicIntegrationByIdResponse$1 {
|
|
|
3547
3553
|
[k: string]: any;
|
|
3548
3554
|
};
|
|
3549
3555
|
};
|
|
3556
|
+
/**
|
|
3557
|
+
* Optional attributes
|
|
3558
|
+
*/
|
|
3559
|
+
attributes?: {
|
|
3560
|
+
[k: string]: string;
|
|
3561
|
+
};
|
|
3550
3562
|
};
|
|
3551
3563
|
};
|
|
3552
3564
|
/**
|
|
@@ -3905,6 +3917,12 @@ interface GetPublicIntegrationResponse$1 {
|
|
|
3905
3917
|
schema: {
|
|
3906
3918
|
[k: string]: any;
|
|
3907
3919
|
};
|
|
3920
|
+
/**
|
|
3921
|
+
* Optional attributes
|
|
3922
|
+
*/
|
|
3923
|
+
attributes?: {
|
|
3924
|
+
[k: string]: string;
|
|
3925
|
+
};
|
|
3908
3926
|
};
|
|
3909
3927
|
};
|
|
3910
3928
|
actions: {
|
|
@@ -3932,6 +3950,12 @@ interface GetPublicIntegrationResponse$1 {
|
|
|
3932
3950
|
[k: string]: any;
|
|
3933
3951
|
};
|
|
3934
3952
|
};
|
|
3953
|
+
/**
|
|
3954
|
+
* Optional attributes
|
|
3955
|
+
*/
|
|
3956
|
+
attributes?: {
|
|
3957
|
+
[k: string]: string;
|
|
3958
|
+
};
|
|
3935
3959
|
};
|
|
3936
3960
|
};
|
|
3937
3961
|
/**
|
|
@@ -4177,6 +4201,12 @@ interface GetPublicPluginByIdResponse$1 {
|
|
|
4177
4201
|
schema: {
|
|
4178
4202
|
[k: string]: any;
|
|
4179
4203
|
};
|
|
4204
|
+
/**
|
|
4205
|
+
* Optional attributes
|
|
4206
|
+
*/
|
|
4207
|
+
attributes?: {
|
|
4208
|
+
[k: string]: string;
|
|
4209
|
+
};
|
|
4180
4210
|
};
|
|
4181
4211
|
};
|
|
4182
4212
|
actions: {
|
|
@@ -4204,6 +4234,12 @@ interface GetPublicPluginByIdResponse$1 {
|
|
|
4204
4234
|
[k: string]: any;
|
|
4205
4235
|
};
|
|
4206
4236
|
};
|
|
4237
|
+
/**
|
|
4238
|
+
* Optional attributes
|
|
4239
|
+
*/
|
|
4240
|
+
attributes?: {
|
|
4241
|
+
[k: string]: string;
|
|
4242
|
+
};
|
|
4207
4243
|
};
|
|
4208
4244
|
};
|
|
4209
4245
|
dependencies: {
|
|
@@ -4371,6 +4407,12 @@ interface GetPublicPluginResponse$1 {
|
|
|
4371
4407
|
schema: {
|
|
4372
4408
|
[k: string]: any;
|
|
4373
4409
|
};
|
|
4410
|
+
/**
|
|
4411
|
+
* Optional attributes
|
|
4412
|
+
*/
|
|
4413
|
+
attributes?: {
|
|
4414
|
+
[k: string]: string;
|
|
4415
|
+
};
|
|
4374
4416
|
};
|
|
4375
4417
|
};
|
|
4376
4418
|
actions: {
|
|
@@ -4398,6 +4440,12 @@ interface GetPublicPluginResponse$1 {
|
|
|
4398
4440
|
[k: string]: any;
|
|
4399
4441
|
};
|
|
4400
4442
|
};
|
|
4443
|
+
/**
|
|
4444
|
+
* Optional attributes
|
|
4445
|
+
*/
|
|
4446
|
+
attributes?: {
|
|
4447
|
+
[k: string]: string;
|
|
4448
|
+
};
|
|
4401
4449
|
};
|
|
4402
4450
|
};
|
|
4403
4451
|
dependencies: {
|
|
@@ -4541,6 +4589,12 @@ interface CreateBotRequestBody$1 {
|
|
|
4541
4589
|
schema: {
|
|
4542
4590
|
[k: string]: any;
|
|
4543
4591
|
};
|
|
4592
|
+
/**
|
|
4593
|
+
* Optional attributes
|
|
4594
|
+
*/
|
|
4595
|
+
attributes?: {
|
|
4596
|
+
[k: string]: string;
|
|
4597
|
+
};
|
|
4544
4598
|
};
|
|
4545
4599
|
};
|
|
4546
4600
|
recurringEvents?: {
|
|
@@ -4593,6 +4647,12 @@ interface CreateBotRequestBody$1 {
|
|
|
4593
4647
|
[k: string]: any;
|
|
4594
4648
|
};
|
|
4595
4649
|
};
|
|
4650
|
+
/**
|
|
4651
|
+
* Optional attributes
|
|
4652
|
+
*/
|
|
4653
|
+
attributes?: {
|
|
4654
|
+
[k: string]: string;
|
|
4655
|
+
};
|
|
4596
4656
|
};
|
|
4597
4657
|
};
|
|
4598
4658
|
configuration?: {
|
|
@@ -4883,6 +4943,12 @@ interface CreateBotResponse$1 {
|
|
|
4883
4943
|
schema: {
|
|
4884
4944
|
[k: string]: any;
|
|
4885
4945
|
};
|
|
4946
|
+
/**
|
|
4947
|
+
* Optional attributes
|
|
4948
|
+
*/
|
|
4949
|
+
attributes?: {
|
|
4950
|
+
[k: string]: string;
|
|
4951
|
+
};
|
|
4886
4952
|
};
|
|
4887
4953
|
};
|
|
4888
4954
|
/**
|
|
@@ -4946,6 +5012,12 @@ interface CreateBotResponse$1 {
|
|
|
4946
5012
|
[k: string]: any;
|
|
4947
5013
|
};
|
|
4948
5014
|
};
|
|
5015
|
+
/**
|
|
5016
|
+
* Optional attributes
|
|
5017
|
+
*/
|
|
5018
|
+
attributes?: {
|
|
5019
|
+
[k: string]: string;
|
|
5020
|
+
};
|
|
4949
5021
|
};
|
|
4950
5022
|
};
|
|
4951
5023
|
/**
|
|
@@ -5087,9 +5159,6 @@ interface UpdateBotRequestBody$1 {
|
|
|
5087
5159
|
};
|
|
5088
5160
|
};
|
|
5089
5161
|
events?: {
|
|
5090
|
-
/**
|
|
5091
|
-
* Event Definition
|
|
5092
|
-
*/
|
|
5093
5162
|
[k: string]: {
|
|
5094
5163
|
/**
|
|
5095
5164
|
* Title of the event
|
|
@@ -5102,12 +5171,15 @@ interface UpdateBotRequestBody$1 {
|
|
|
5102
5171
|
schema: {
|
|
5103
5172
|
[k: string]: any;
|
|
5104
5173
|
};
|
|
5174
|
+
/**
|
|
5175
|
+
* Optional attributes. Set attributes to null to remove them
|
|
5176
|
+
*/
|
|
5177
|
+
attributes?: {
|
|
5178
|
+
[k: string]: string | null;
|
|
5179
|
+
};
|
|
5105
5180
|
} | null;
|
|
5106
5181
|
};
|
|
5107
5182
|
actions?: {
|
|
5108
|
-
/**
|
|
5109
|
-
* Action definition
|
|
5110
|
-
*/
|
|
5111
5183
|
[k: string]: {
|
|
5112
5184
|
/**
|
|
5113
5185
|
* Title of the action
|
|
@@ -5129,6 +5201,12 @@ interface UpdateBotRequestBody$1 {
|
|
|
5129
5201
|
[k: string]: any;
|
|
5130
5202
|
};
|
|
5131
5203
|
};
|
|
5204
|
+
/**
|
|
5205
|
+
* Optional attributes. Set attributes to null to remove them
|
|
5206
|
+
*/
|
|
5207
|
+
attributes?: {
|
|
5208
|
+
[k: string]: string | null;
|
|
5209
|
+
};
|
|
5132
5210
|
} | null;
|
|
5133
5211
|
};
|
|
5134
5212
|
states?: {
|
|
@@ -5387,6 +5465,12 @@ interface UpdateBotResponse$1 {
|
|
|
5387
5465
|
schema: {
|
|
5388
5466
|
[k: string]: any;
|
|
5389
5467
|
};
|
|
5468
|
+
/**
|
|
5469
|
+
* Optional attributes
|
|
5470
|
+
*/
|
|
5471
|
+
attributes?: {
|
|
5472
|
+
[k: string]: string;
|
|
5473
|
+
};
|
|
5390
5474
|
};
|
|
5391
5475
|
};
|
|
5392
5476
|
/**
|
|
@@ -5450,6 +5534,12 @@ interface UpdateBotResponse$1 {
|
|
|
5450
5534
|
[k: string]: any;
|
|
5451
5535
|
};
|
|
5452
5536
|
};
|
|
5537
|
+
/**
|
|
5538
|
+
* Optional attributes
|
|
5539
|
+
*/
|
|
5540
|
+
attributes?: {
|
|
5541
|
+
[k: string]: string;
|
|
5542
|
+
};
|
|
5453
5543
|
};
|
|
5454
5544
|
};
|
|
5455
5545
|
/**
|
|
@@ -5764,6 +5854,12 @@ interface GetBotResponse$1 {
|
|
|
5764
5854
|
schema: {
|
|
5765
5855
|
[k: string]: any;
|
|
5766
5856
|
};
|
|
5857
|
+
/**
|
|
5858
|
+
* Optional attributes
|
|
5859
|
+
*/
|
|
5860
|
+
attributes?: {
|
|
5861
|
+
[k: string]: string;
|
|
5862
|
+
};
|
|
5767
5863
|
};
|
|
5768
5864
|
};
|
|
5769
5865
|
/**
|
|
@@ -5827,6 +5923,12 @@ interface GetBotResponse$1 {
|
|
|
5827
5923
|
[k: string]: any;
|
|
5828
5924
|
};
|
|
5829
5925
|
};
|
|
5926
|
+
/**
|
|
5927
|
+
* Optional attributes
|
|
5928
|
+
*/
|
|
5929
|
+
attributes?: {
|
|
5930
|
+
[k: string]: string;
|
|
5931
|
+
};
|
|
5830
5932
|
};
|
|
5831
5933
|
};
|
|
5832
5934
|
/**
|
|
@@ -6225,6 +6327,58 @@ interface GetIntegrationShareableIdResponse$1 {
|
|
|
6225
6327
|
isExpired: boolean;
|
|
6226
6328
|
}
|
|
6227
6329
|
|
|
6330
|
+
interface ListBotApiKeysRequestHeaders$1 {
|
|
6331
|
+
}
|
|
6332
|
+
interface ListBotApiKeysRequestQuery$1 {
|
|
6333
|
+
botId: string;
|
|
6334
|
+
}
|
|
6335
|
+
interface ListBotApiKeysRequestParams$1 {
|
|
6336
|
+
}
|
|
6337
|
+
interface ListBotApiKeysRequestBody$1 {
|
|
6338
|
+
}
|
|
6339
|
+
type ListBotApiKeysInput$1 = ListBotApiKeysRequestBody$1 & ListBotApiKeysRequestHeaders$1 & ListBotApiKeysRequestQuery$1 & ListBotApiKeysRequestParams$1;
|
|
6340
|
+
interface ListBotApiKeysResponse$1 {
|
|
6341
|
+
baks: {
|
|
6342
|
+
id: string;
|
|
6343
|
+
createdAt: string;
|
|
6344
|
+
note: string;
|
|
6345
|
+
}[];
|
|
6346
|
+
}
|
|
6347
|
+
|
|
6348
|
+
interface CreateBotApiKeyRequestHeaders$1 {
|
|
6349
|
+
}
|
|
6350
|
+
interface CreateBotApiKeyRequestQuery$1 {
|
|
6351
|
+
}
|
|
6352
|
+
interface CreateBotApiKeyRequestParams$1 {
|
|
6353
|
+
}
|
|
6354
|
+
interface CreateBotApiKeyRequestBody$1 {
|
|
6355
|
+
botId: string;
|
|
6356
|
+
note?: string;
|
|
6357
|
+
}
|
|
6358
|
+
type CreateBotApiKeyInput$1 = CreateBotApiKeyRequestBody$1 & CreateBotApiKeyRequestHeaders$1 & CreateBotApiKeyRequestQuery$1 & CreateBotApiKeyRequestParams$1;
|
|
6359
|
+
interface CreateBotApiKeyResponse$1 {
|
|
6360
|
+
id: string;
|
|
6361
|
+
createdAt: string;
|
|
6362
|
+
note: string;
|
|
6363
|
+
/**
|
|
6364
|
+
* The BAK value. This will only be returned here when created and cannot be retrieved later.
|
|
6365
|
+
*/
|
|
6366
|
+
value: string;
|
|
6367
|
+
}
|
|
6368
|
+
|
|
6369
|
+
interface DeleteBotApiKeyRequestHeaders$1 {
|
|
6370
|
+
}
|
|
6371
|
+
interface DeleteBotApiKeyRequestQuery$1 {
|
|
6372
|
+
}
|
|
6373
|
+
interface DeleteBotApiKeyRequestParams$1 {
|
|
6374
|
+
id: string;
|
|
6375
|
+
}
|
|
6376
|
+
interface DeleteBotApiKeyRequestBody$1 {
|
|
6377
|
+
}
|
|
6378
|
+
type DeleteBotApiKeyInput$1 = DeleteBotApiKeyRequestBody$1 & DeleteBotApiKeyRequestHeaders$1 & DeleteBotApiKeyRequestQuery$1 & DeleteBotApiKeyRequestParams$1;
|
|
6379
|
+
interface DeleteBotApiKeyResponse$1 {
|
|
6380
|
+
}
|
|
6381
|
+
|
|
6228
6382
|
interface ListWorkspaceInvoicesRequestHeaders$1 {
|
|
6229
6383
|
}
|
|
6230
6384
|
interface ListWorkspaceInvoicesRequestQuery$1 {
|
|
@@ -6998,6 +7152,12 @@ interface CreateIntegrationRequestBody$1 {
|
|
|
6998
7152
|
schema: {
|
|
6999
7153
|
[k: string]: any;
|
|
7000
7154
|
};
|
|
7155
|
+
/**
|
|
7156
|
+
* Optional attributes
|
|
7157
|
+
*/
|
|
7158
|
+
attributes?: {
|
|
7159
|
+
[k: string]: string;
|
|
7160
|
+
};
|
|
7001
7161
|
};
|
|
7002
7162
|
};
|
|
7003
7163
|
actions?: {
|
|
@@ -7025,6 +7185,12 @@ interface CreateIntegrationRequestBody$1 {
|
|
|
7025
7185
|
[k: string]: any;
|
|
7026
7186
|
};
|
|
7027
7187
|
};
|
|
7188
|
+
/**
|
|
7189
|
+
* Optional attributes
|
|
7190
|
+
*/
|
|
7191
|
+
attributes?: {
|
|
7192
|
+
[k: string]: string;
|
|
7193
|
+
};
|
|
7028
7194
|
};
|
|
7029
7195
|
};
|
|
7030
7196
|
entities?: {
|
|
@@ -7467,6 +7633,12 @@ interface CreateIntegrationResponse$1 {
|
|
|
7467
7633
|
schema: {
|
|
7468
7634
|
[k: string]: any;
|
|
7469
7635
|
};
|
|
7636
|
+
/**
|
|
7637
|
+
* Optional attributes
|
|
7638
|
+
*/
|
|
7639
|
+
attributes?: {
|
|
7640
|
+
[k: string]: string;
|
|
7641
|
+
};
|
|
7470
7642
|
};
|
|
7471
7643
|
};
|
|
7472
7644
|
actions: {
|
|
@@ -7494,6 +7666,12 @@ interface CreateIntegrationResponse$1 {
|
|
|
7494
7666
|
[k: string]: any;
|
|
7495
7667
|
};
|
|
7496
7668
|
};
|
|
7669
|
+
/**
|
|
7670
|
+
* Optional attributes
|
|
7671
|
+
*/
|
|
7672
|
+
attributes?: {
|
|
7673
|
+
[k: string]: string;
|
|
7674
|
+
};
|
|
7497
7675
|
};
|
|
7498
7676
|
};
|
|
7499
7677
|
/**
|
|
@@ -7678,6 +7856,12 @@ interface ValidateIntegrationCreationRequestBody$1 {
|
|
|
7678
7856
|
schema: {
|
|
7679
7857
|
[k: string]: any;
|
|
7680
7858
|
};
|
|
7859
|
+
/**
|
|
7860
|
+
* Optional attributes
|
|
7861
|
+
*/
|
|
7862
|
+
attributes?: {
|
|
7863
|
+
[k: string]: string;
|
|
7864
|
+
};
|
|
7681
7865
|
};
|
|
7682
7866
|
};
|
|
7683
7867
|
actions?: {
|
|
@@ -7705,6 +7889,12 @@ interface ValidateIntegrationCreationRequestBody$1 {
|
|
|
7705
7889
|
[k: string]: any;
|
|
7706
7890
|
};
|
|
7707
7891
|
};
|
|
7892
|
+
/**
|
|
7893
|
+
* Optional attributes
|
|
7894
|
+
*/
|
|
7895
|
+
attributes?: {
|
|
7896
|
+
[k: string]: string;
|
|
7897
|
+
};
|
|
7708
7898
|
};
|
|
7709
7899
|
};
|
|
7710
7900
|
entities?: {
|
|
@@ -8030,9 +8220,6 @@ interface UpdateIntegrationRequestBody$1 {
|
|
|
8030
8220
|
fallbackHandlerScript?: string | null;
|
|
8031
8221
|
};
|
|
8032
8222
|
actions?: {
|
|
8033
|
-
/**
|
|
8034
|
-
* Action definition
|
|
8035
|
-
*/
|
|
8036
8223
|
[k: string]: {
|
|
8037
8224
|
/**
|
|
8038
8225
|
* Title of the action
|
|
@@ -8054,12 +8241,15 @@ interface UpdateIntegrationRequestBody$1 {
|
|
|
8054
8241
|
[k: string]: any;
|
|
8055
8242
|
};
|
|
8056
8243
|
};
|
|
8244
|
+
/**
|
|
8245
|
+
* Optional attributes. Set attributes to null to remove them
|
|
8246
|
+
*/
|
|
8247
|
+
attributes?: {
|
|
8248
|
+
[k: string]: string | null;
|
|
8249
|
+
};
|
|
8057
8250
|
} | null;
|
|
8058
8251
|
};
|
|
8059
8252
|
events?: {
|
|
8060
|
-
/**
|
|
8061
|
-
* Event Definition
|
|
8062
|
-
*/
|
|
8063
8253
|
[k: string]: {
|
|
8064
8254
|
/**
|
|
8065
8255
|
* Title of the event
|
|
@@ -8072,6 +8262,12 @@ interface UpdateIntegrationRequestBody$1 {
|
|
|
8072
8262
|
schema: {
|
|
8073
8263
|
[k: string]: any;
|
|
8074
8264
|
};
|
|
8265
|
+
/**
|
|
8266
|
+
* Optional attributes. Set attributes to null to remove them
|
|
8267
|
+
*/
|
|
8268
|
+
attributes?: {
|
|
8269
|
+
[k: string]: string | null;
|
|
8270
|
+
};
|
|
8075
8271
|
} | null;
|
|
8076
8272
|
};
|
|
8077
8273
|
states?: {
|
|
@@ -8458,6 +8654,12 @@ interface UpdateIntegrationResponse$1 {
|
|
|
8458
8654
|
schema: {
|
|
8459
8655
|
[k: string]: any;
|
|
8460
8656
|
};
|
|
8657
|
+
/**
|
|
8658
|
+
* Optional attributes
|
|
8659
|
+
*/
|
|
8660
|
+
attributes?: {
|
|
8661
|
+
[k: string]: string;
|
|
8662
|
+
};
|
|
8461
8663
|
};
|
|
8462
8664
|
};
|
|
8463
8665
|
actions: {
|
|
@@ -8485,6 +8687,12 @@ interface UpdateIntegrationResponse$1 {
|
|
|
8485
8687
|
[k: string]: any;
|
|
8486
8688
|
};
|
|
8487
8689
|
};
|
|
8690
|
+
/**
|
|
8691
|
+
* Optional attributes
|
|
8692
|
+
*/
|
|
8693
|
+
attributes?: {
|
|
8694
|
+
[k: string]: string;
|
|
8695
|
+
};
|
|
8488
8696
|
};
|
|
8489
8697
|
};
|
|
8490
8698
|
/**
|
|
@@ -8703,9 +8911,6 @@ interface ValidateIntegrationUpdateRequestBody$1 {
|
|
|
8703
8911
|
fallbackHandlerScript?: string | null;
|
|
8704
8912
|
};
|
|
8705
8913
|
actions?: {
|
|
8706
|
-
/**
|
|
8707
|
-
* Action definition
|
|
8708
|
-
*/
|
|
8709
8914
|
[k: string]: {
|
|
8710
8915
|
/**
|
|
8711
8916
|
* Title of the action
|
|
@@ -8727,12 +8932,15 @@ interface ValidateIntegrationUpdateRequestBody$1 {
|
|
|
8727
8932
|
[k: string]: any;
|
|
8728
8933
|
};
|
|
8729
8934
|
};
|
|
8935
|
+
/**
|
|
8936
|
+
* Optional attributes. Set attributes to null to remove them
|
|
8937
|
+
*/
|
|
8938
|
+
attributes?: {
|
|
8939
|
+
[k: string]: string | null;
|
|
8940
|
+
};
|
|
8730
8941
|
} | null;
|
|
8731
8942
|
};
|
|
8732
8943
|
events?: {
|
|
8733
|
-
/**
|
|
8734
|
-
* Event Definition
|
|
8735
|
-
*/
|
|
8736
8944
|
[k: string]: {
|
|
8737
8945
|
/**
|
|
8738
8946
|
* Title of the event
|
|
@@ -8745,6 +8953,12 @@ interface ValidateIntegrationUpdateRequestBody$1 {
|
|
|
8745
8953
|
schema: {
|
|
8746
8954
|
[k: string]: any;
|
|
8747
8955
|
};
|
|
8956
|
+
/**
|
|
8957
|
+
* Optional attributes. Set attributes to null to remove them
|
|
8958
|
+
*/
|
|
8959
|
+
attributes?: {
|
|
8960
|
+
[k: string]: string | null;
|
|
8961
|
+
};
|
|
8748
8962
|
} | null;
|
|
8749
8963
|
};
|
|
8750
8964
|
states?: {
|
|
@@ -9247,6 +9461,12 @@ interface GetIntegrationResponse$1 {
|
|
|
9247
9461
|
schema: {
|
|
9248
9462
|
[k: string]: any;
|
|
9249
9463
|
};
|
|
9464
|
+
/**
|
|
9465
|
+
* Optional attributes
|
|
9466
|
+
*/
|
|
9467
|
+
attributes?: {
|
|
9468
|
+
[k: string]: string;
|
|
9469
|
+
};
|
|
9250
9470
|
};
|
|
9251
9471
|
};
|
|
9252
9472
|
actions: {
|
|
@@ -9274,6 +9494,12 @@ interface GetIntegrationResponse$1 {
|
|
|
9274
9494
|
[k: string]: any;
|
|
9275
9495
|
};
|
|
9276
9496
|
};
|
|
9497
|
+
/**
|
|
9498
|
+
* Optional attributes
|
|
9499
|
+
*/
|
|
9500
|
+
attributes?: {
|
|
9501
|
+
[k: string]: string;
|
|
9502
|
+
};
|
|
9277
9503
|
};
|
|
9278
9504
|
};
|
|
9279
9505
|
/**
|
|
@@ -9651,6 +9877,12 @@ interface GetIntegrationByNameResponse$1 {
|
|
|
9651
9877
|
schema: {
|
|
9652
9878
|
[k: string]: any;
|
|
9653
9879
|
};
|
|
9880
|
+
/**
|
|
9881
|
+
* Optional attributes
|
|
9882
|
+
*/
|
|
9883
|
+
attributes?: {
|
|
9884
|
+
[k: string]: string;
|
|
9885
|
+
};
|
|
9654
9886
|
};
|
|
9655
9887
|
};
|
|
9656
9888
|
actions: {
|
|
@@ -9678,6 +9910,12 @@ interface GetIntegrationByNameResponse$1 {
|
|
|
9678
9910
|
[k: string]: any;
|
|
9679
9911
|
};
|
|
9680
9912
|
};
|
|
9913
|
+
/**
|
|
9914
|
+
* Optional attributes
|
|
9915
|
+
*/
|
|
9916
|
+
attributes?: {
|
|
9917
|
+
[k: string]: string;
|
|
9918
|
+
};
|
|
9681
9919
|
};
|
|
9682
9920
|
};
|
|
9683
9921
|
/**
|
|
@@ -9841,6 +10079,12 @@ interface CreateInterfaceRequestBody$1 {
|
|
|
9841
10079
|
schema: {
|
|
9842
10080
|
[k: string]: any;
|
|
9843
10081
|
};
|
|
10082
|
+
/**
|
|
10083
|
+
* Optional attributes
|
|
10084
|
+
*/
|
|
10085
|
+
attributes?: {
|
|
10086
|
+
[k: string]: string;
|
|
10087
|
+
};
|
|
9844
10088
|
};
|
|
9845
10089
|
};
|
|
9846
10090
|
actions?: {
|
|
@@ -9868,6 +10112,12 @@ interface CreateInterfaceRequestBody$1 {
|
|
|
9868
10112
|
[k: string]: any;
|
|
9869
10113
|
};
|
|
9870
10114
|
};
|
|
10115
|
+
/**
|
|
10116
|
+
* Optional attributes
|
|
10117
|
+
*/
|
|
10118
|
+
attributes?: {
|
|
10119
|
+
[k: string]: string;
|
|
10120
|
+
};
|
|
9871
10121
|
};
|
|
9872
10122
|
};
|
|
9873
10123
|
channels?: {
|
|
@@ -9899,6 +10149,26 @@ interface CreateInterfaceRequestBody$1 {
|
|
|
9899
10149
|
script: string;
|
|
9900
10150
|
language: string;
|
|
9901
10151
|
};
|
|
10152
|
+
/**
|
|
10153
|
+
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
10154
|
+
*/
|
|
10155
|
+
icon?: string;
|
|
10156
|
+
/**
|
|
10157
|
+
* Base64 encoded markdown of the interface readme. The readme is specific to each interface versions.
|
|
10158
|
+
*/
|
|
10159
|
+
readme?: string;
|
|
10160
|
+
/**
|
|
10161
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10162
|
+
*/
|
|
10163
|
+
title?: string;
|
|
10164
|
+
/**
|
|
10165
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10166
|
+
*/
|
|
10167
|
+
description?: string;
|
|
10168
|
+
/**
|
|
10169
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10170
|
+
*/
|
|
10171
|
+
public?: boolean;
|
|
9902
10172
|
}
|
|
9903
10173
|
type CreateInterfaceInput$1 = CreateInterfaceRequestBody$1 & CreateInterfaceRequestHeaders$1 & CreateInterfaceRequestQuery$1 & CreateInterfaceRequestParams$1;
|
|
9904
10174
|
interface CreateInterfaceResponse$1 {
|
|
@@ -9957,6 +10227,12 @@ interface CreateInterfaceResponse$1 {
|
|
|
9957
10227
|
schema: {
|
|
9958
10228
|
[k: string]: any;
|
|
9959
10229
|
};
|
|
10230
|
+
/**
|
|
10231
|
+
* Optional attributes
|
|
10232
|
+
*/
|
|
10233
|
+
attributes?: {
|
|
10234
|
+
[k: string]: string;
|
|
10235
|
+
};
|
|
9960
10236
|
};
|
|
9961
10237
|
};
|
|
9962
10238
|
actions: {
|
|
@@ -9984,6 +10260,12 @@ interface CreateInterfaceResponse$1 {
|
|
|
9984
10260
|
[k: string]: any;
|
|
9985
10261
|
};
|
|
9986
10262
|
};
|
|
10263
|
+
/**
|
|
10264
|
+
* Optional attributes
|
|
10265
|
+
*/
|
|
10266
|
+
attributes?: {
|
|
10267
|
+
[k: string]: string;
|
|
10268
|
+
};
|
|
9987
10269
|
};
|
|
9988
10270
|
};
|
|
9989
10271
|
channels: {
|
|
@@ -10015,6 +10297,26 @@ interface CreateInterfaceResponse$1 {
|
|
|
10015
10297
|
script: string;
|
|
10016
10298
|
language: string;
|
|
10017
10299
|
};
|
|
10300
|
+
/**
|
|
10301
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10302
|
+
*/
|
|
10303
|
+
title: string;
|
|
10304
|
+
/**
|
|
10305
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10306
|
+
*/
|
|
10307
|
+
description: string;
|
|
10308
|
+
/**
|
|
10309
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
10310
|
+
*/
|
|
10311
|
+
iconUrl: string;
|
|
10312
|
+
/**
|
|
10313
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
10314
|
+
*/
|
|
10315
|
+
readmeUrl: string;
|
|
10316
|
+
/**
|
|
10317
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10318
|
+
*/
|
|
10319
|
+
public: boolean;
|
|
10018
10320
|
};
|
|
10019
10321
|
}
|
|
10020
10322
|
|
|
@@ -10084,6 +10386,12 @@ interface GetInterfaceResponse$1 {
|
|
|
10084
10386
|
schema: {
|
|
10085
10387
|
[k: string]: any;
|
|
10086
10388
|
};
|
|
10389
|
+
/**
|
|
10390
|
+
* Optional attributes
|
|
10391
|
+
*/
|
|
10392
|
+
attributes?: {
|
|
10393
|
+
[k: string]: string;
|
|
10394
|
+
};
|
|
10087
10395
|
};
|
|
10088
10396
|
};
|
|
10089
10397
|
actions: {
|
|
@@ -10111,6 +10419,12 @@ interface GetInterfaceResponse$1 {
|
|
|
10111
10419
|
[k: string]: any;
|
|
10112
10420
|
};
|
|
10113
10421
|
};
|
|
10422
|
+
/**
|
|
10423
|
+
* Optional attributes
|
|
10424
|
+
*/
|
|
10425
|
+
attributes?: {
|
|
10426
|
+
[k: string]: string;
|
|
10427
|
+
};
|
|
10114
10428
|
};
|
|
10115
10429
|
};
|
|
10116
10430
|
channels: {
|
|
@@ -10142,6 +10456,26 @@ interface GetInterfaceResponse$1 {
|
|
|
10142
10456
|
script: string;
|
|
10143
10457
|
language: string;
|
|
10144
10458
|
};
|
|
10459
|
+
/**
|
|
10460
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10461
|
+
*/
|
|
10462
|
+
title: string;
|
|
10463
|
+
/**
|
|
10464
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10465
|
+
*/
|
|
10466
|
+
description: string;
|
|
10467
|
+
/**
|
|
10468
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
10469
|
+
*/
|
|
10470
|
+
iconUrl: string;
|
|
10471
|
+
/**
|
|
10472
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
10473
|
+
*/
|
|
10474
|
+
readmeUrl: string;
|
|
10475
|
+
/**
|
|
10476
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10477
|
+
*/
|
|
10478
|
+
public: boolean;
|
|
10145
10479
|
};
|
|
10146
10480
|
}
|
|
10147
10481
|
|
|
@@ -10212,6 +10546,12 @@ interface GetInterfaceByNameResponse$1 {
|
|
|
10212
10546
|
schema: {
|
|
10213
10547
|
[k: string]: any;
|
|
10214
10548
|
};
|
|
10549
|
+
/**
|
|
10550
|
+
* Optional attributes
|
|
10551
|
+
*/
|
|
10552
|
+
attributes?: {
|
|
10553
|
+
[k: string]: string;
|
|
10554
|
+
};
|
|
10215
10555
|
};
|
|
10216
10556
|
};
|
|
10217
10557
|
actions: {
|
|
@@ -10239,6 +10579,12 @@ interface GetInterfaceByNameResponse$1 {
|
|
|
10239
10579
|
[k: string]: any;
|
|
10240
10580
|
};
|
|
10241
10581
|
};
|
|
10582
|
+
/**
|
|
10583
|
+
* Optional attributes
|
|
10584
|
+
*/
|
|
10585
|
+
attributes?: {
|
|
10586
|
+
[k: string]: string;
|
|
10587
|
+
};
|
|
10242
10588
|
};
|
|
10243
10589
|
};
|
|
10244
10590
|
channels: {
|
|
@@ -10270,6 +10616,26 @@ interface GetInterfaceByNameResponse$1 {
|
|
|
10270
10616
|
script: string;
|
|
10271
10617
|
language: string;
|
|
10272
10618
|
};
|
|
10619
|
+
/**
|
|
10620
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10621
|
+
*/
|
|
10622
|
+
title: string;
|
|
10623
|
+
/**
|
|
10624
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10625
|
+
*/
|
|
10626
|
+
description: string;
|
|
10627
|
+
/**
|
|
10628
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
10629
|
+
*/
|
|
10630
|
+
iconUrl: string;
|
|
10631
|
+
/**
|
|
10632
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
10633
|
+
*/
|
|
10634
|
+
readmeUrl: string;
|
|
10635
|
+
/**
|
|
10636
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10637
|
+
*/
|
|
10638
|
+
public: boolean;
|
|
10273
10639
|
};
|
|
10274
10640
|
}
|
|
10275
10641
|
|
|
@@ -10300,9 +10666,6 @@ interface UpdateInterfaceRequestBody$1 {
|
|
|
10300
10666
|
} | null;
|
|
10301
10667
|
};
|
|
10302
10668
|
events?: {
|
|
10303
|
-
/**
|
|
10304
|
-
* Event Definition
|
|
10305
|
-
*/
|
|
10306
10669
|
[k: string]: {
|
|
10307
10670
|
/**
|
|
10308
10671
|
* Title of the event
|
|
@@ -10315,12 +10678,15 @@ interface UpdateInterfaceRequestBody$1 {
|
|
|
10315
10678
|
schema: {
|
|
10316
10679
|
[k: string]: any;
|
|
10317
10680
|
};
|
|
10681
|
+
/**
|
|
10682
|
+
* Optional attributes. Set attributes to null to remove them
|
|
10683
|
+
*/
|
|
10684
|
+
attributes?: {
|
|
10685
|
+
[k: string]: string | null;
|
|
10686
|
+
};
|
|
10318
10687
|
} | null;
|
|
10319
10688
|
};
|
|
10320
10689
|
actions?: {
|
|
10321
|
-
/**
|
|
10322
|
-
* Action definition
|
|
10323
|
-
*/
|
|
10324
10690
|
[k: string]: {
|
|
10325
10691
|
/**
|
|
10326
10692
|
* Title of the action
|
|
@@ -10342,6 +10708,12 @@ interface UpdateInterfaceRequestBody$1 {
|
|
|
10342
10708
|
[k: string]: any;
|
|
10343
10709
|
};
|
|
10344
10710
|
};
|
|
10711
|
+
/**
|
|
10712
|
+
* Optional attributes. Set attributes to null to remove them
|
|
10713
|
+
*/
|
|
10714
|
+
attributes?: {
|
|
10715
|
+
[k: string]: string | null;
|
|
10716
|
+
};
|
|
10345
10717
|
} | null;
|
|
10346
10718
|
};
|
|
10347
10719
|
channels?: {
|
|
@@ -10373,6 +10745,26 @@ interface UpdateInterfaceRequestBody$1 {
|
|
|
10373
10745
|
script: string;
|
|
10374
10746
|
language: string;
|
|
10375
10747
|
} | null;
|
|
10748
|
+
/**
|
|
10749
|
+
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
10750
|
+
*/
|
|
10751
|
+
icon?: string;
|
|
10752
|
+
/**
|
|
10753
|
+
* Base64 encoded markdown of the interface readme. The readme is specific to each interface versions.
|
|
10754
|
+
*/
|
|
10755
|
+
readme?: string;
|
|
10756
|
+
/**
|
|
10757
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10758
|
+
*/
|
|
10759
|
+
title?: string;
|
|
10760
|
+
/**
|
|
10761
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10762
|
+
*/
|
|
10763
|
+
description?: string;
|
|
10764
|
+
/**
|
|
10765
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10766
|
+
*/
|
|
10767
|
+
public?: boolean;
|
|
10376
10768
|
}
|
|
10377
10769
|
type UpdateInterfaceInput$1 = UpdateInterfaceRequestBody$1 & UpdateInterfaceRequestHeaders$1 & UpdateInterfaceRequestQuery$1 & UpdateInterfaceRequestParams$1;
|
|
10378
10770
|
interface UpdateInterfaceResponse$1 {
|
|
@@ -10431,6 +10823,12 @@ interface UpdateInterfaceResponse$1 {
|
|
|
10431
10823
|
schema: {
|
|
10432
10824
|
[k: string]: any;
|
|
10433
10825
|
};
|
|
10826
|
+
/**
|
|
10827
|
+
* Optional attributes
|
|
10828
|
+
*/
|
|
10829
|
+
attributes?: {
|
|
10830
|
+
[k: string]: string;
|
|
10831
|
+
};
|
|
10434
10832
|
};
|
|
10435
10833
|
};
|
|
10436
10834
|
actions: {
|
|
@@ -10458,6 +10856,12 @@ interface UpdateInterfaceResponse$1 {
|
|
|
10458
10856
|
[k: string]: any;
|
|
10459
10857
|
};
|
|
10460
10858
|
};
|
|
10859
|
+
/**
|
|
10860
|
+
* Optional attributes
|
|
10861
|
+
*/
|
|
10862
|
+
attributes?: {
|
|
10863
|
+
[k: string]: string;
|
|
10864
|
+
};
|
|
10461
10865
|
};
|
|
10462
10866
|
};
|
|
10463
10867
|
channels: {
|
|
@@ -10489,6 +10893,26 @@ interface UpdateInterfaceResponse$1 {
|
|
|
10489
10893
|
script: string;
|
|
10490
10894
|
language: string;
|
|
10491
10895
|
};
|
|
10896
|
+
/**
|
|
10897
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10898
|
+
*/
|
|
10899
|
+
title: string;
|
|
10900
|
+
/**
|
|
10901
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10902
|
+
*/
|
|
10903
|
+
description: string;
|
|
10904
|
+
/**
|
|
10905
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
10906
|
+
*/
|
|
10907
|
+
iconUrl: string;
|
|
10908
|
+
/**
|
|
10909
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
10910
|
+
*/
|
|
10911
|
+
readmeUrl: string;
|
|
10912
|
+
/**
|
|
10913
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10914
|
+
*/
|
|
10915
|
+
public: boolean;
|
|
10492
10916
|
};
|
|
10493
10917
|
}
|
|
10494
10918
|
|
|
@@ -10538,6 +10962,26 @@ interface ListInterfacesResponse$1 {
|
|
|
10538
10962
|
* Version of the [Interface](#schema_interface)
|
|
10539
10963
|
*/
|
|
10540
10964
|
version: string;
|
|
10965
|
+
/**
|
|
10966
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
10967
|
+
*/
|
|
10968
|
+
title: string;
|
|
10969
|
+
/**
|
|
10970
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
10971
|
+
*/
|
|
10972
|
+
description: string;
|
|
10973
|
+
/**
|
|
10974
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
10975
|
+
*/
|
|
10976
|
+
iconUrl: string;
|
|
10977
|
+
/**
|
|
10978
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
10979
|
+
*/
|
|
10980
|
+
readmeUrl: string;
|
|
10981
|
+
/**
|
|
10982
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
10983
|
+
*/
|
|
10984
|
+
public: boolean;
|
|
10541
10985
|
}[];
|
|
10542
10986
|
meta: {
|
|
10543
10987
|
/**
|
|
@@ -10615,6 +11059,12 @@ interface CreatePluginRequestBody$1 {
|
|
|
10615
11059
|
schema: {
|
|
10616
11060
|
[k: string]: any;
|
|
10617
11061
|
};
|
|
11062
|
+
/**
|
|
11063
|
+
* Optional attributes
|
|
11064
|
+
*/
|
|
11065
|
+
attributes?: {
|
|
11066
|
+
[k: string]: string;
|
|
11067
|
+
};
|
|
10618
11068
|
};
|
|
10619
11069
|
};
|
|
10620
11070
|
actions?: {
|
|
@@ -10642,6 +11092,12 @@ interface CreatePluginRequestBody$1 {
|
|
|
10642
11092
|
[k: string]: any;
|
|
10643
11093
|
};
|
|
10644
11094
|
};
|
|
11095
|
+
/**
|
|
11096
|
+
* Optional attributes
|
|
11097
|
+
*/
|
|
11098
|
+
attributes?: {
|
|
11099
|
+
[k: string]: string;
|
|
11100
|
+
};
|
|
10645
11101
|
};
|
|
10646
11102
|
};
|
|
10647
11103
|
/**
|
|
@@ -10803,6 +11259,12 @@ interface CreatePluginResponse$1 {
|
|
|
10803
11259
|
schema: {
|
|
10804
11260
|
[k: string]: any;
|
|
10805
11261
|
};
|
|
11262
|
+
/**
|
|
11263
|
+
* Optional attributes
|
|
11264
|
+
*/
|
|
11265
|
+
attributes?: {
|
|
11266
|
+
[k: string]: string;
|
|
11267
|
+
};
|
|
10806
11268
|
};
|
|
10807
11269
|
};
|
|
10808
11270
|
actions: {
|
|
@@ -10830,6 +11292,12 @@ interface CreatePluginResponse$1 {
|
|
|
10830
11292
|
[k: string]: any;
|
|
10831
11293
|
};
|
|
10832
11294
|
};
|
|
11295
|
+
/**
|
|
11296
|
+
* Optional attributes
|
|
11297
|
+
*/
|
|
11298
|
+
attributes?: {
|
|
11299
|
+
[k: string]: string;
|
|
11300
|
+
};
|
|
10833
11301
|
};
|
|
10834
11302
|
};
|
|
10835
11303
|
dependencies: {
|
|
@@ -10996,6 +11464,12 @@ interface GetPluginResponse$1 {
|
|
|
10996
11464
|
schema: {
|
|
10997
11465
|
[k: string]: any;
|
|
10998
11466
|
};
|
|
11467
|
+
/**
|
|
11468
|
+
* Optional attributes
|
|
11469
|
+
*/
|
|
11470
|
+
attributes?: {
|
|
11471
|
+
[k: string]: string;
|
|
11472
|
+
};
|
|
10999
11473
|
};
|
|
11000
11474
|
};
|
|
11001
11475
|
actions: {
|
|
@@ -11023,6 +11497,12 @@ interface GetPluginResponse$1 {
|
|
|
11023
11497
|
[k: string]: any;
|
|
11024
11498
|
};
|
|
11025
11499
|
};
|
|
11500
|
+
/**
|
|
11501
|
+
* Optional attributes
|
|
11502
|
+
*/
|
|
11503
|
+
attributes?: {
|
|
11504
|
+
[k: string]: string;
|
|
11505
|
+
};
|
|
11026
11506
|
};
|
|
11027
11507
|
};
|
|
11028
11508
|
dependencies: {
|
|
@@ -11190,6 +11670,12 @@ interface GetPluginByNameResponse$1 {
|
|
|
11190
11670
|
schema: {
|
|
11191
11671
|
[k: string]: any;
|
|
11192
11672
|
};
|
|
11673
|
+
/**
|
|
11674
|
+
* Optional attributes
|
|
11675
|
+
*/
|
|
11676
|
+
attributes?: {
|
|
11677
|
+
[k: string]: string;
|
|
11678
|
+
};
|
|
11193
11679
|
};
|
|
11194
11680
|
};
|
|
11195
11681
|
actions: {
|
|
@@ -11217,6 +11703,12 @@ interface GetPluginByNameResponse$1 {
|
|
|
11217
11703
|
[k: string]: any;
|
|
11218
11704
|
};
|
|
11219
11705
|
};
|
|
11706
|
+
/**
|
|
11707
|
+
* Optional attributes
|
|
11708
|
+
*/
|
|
11709
|
+
attributes?: {
|
|
11710
|
+
[k: string]: string;
|
|
11711
|
+
};
|
|
11220
11712
|
};
|
|
11221
11713
|
};
|
|
11222
11714
|
dependencies: {
|
|
@@ -11344,9 +11836,6 @@ interface UpdatePluginRequestBody$1 {
|
|
|
11344
11836
|
} | null;
|
|
11345
11837
|
};
|
|
11346
11838
|
events?: {
|
|
11347
|
-
/**
|
|
11348
|
-
* Event Definition
|
|
11349
|
-
*/
|
|
11350
11839
|
[k: string]: {
|
|
11351
11840
|
/**
|
|
11352
11841
|
* Title of the event
|
|
@@ -11359,12 +11848,15 @@ interface UpdatePluginRequestBody$1 {
|
|
|
11359
11848
|
schema: {
|
|
11360
11849
|
[k: string]: any;
|
|
11361
11850
|
};
|
|
11851
|
+
/**
|
|
11852
|
+
* Optional attributes. Set attributes to null to remove them
|
|
11853
|
+
*/
|
|
11854
|
+
attributes?: {
|
|
11855
|
+
[k: string]: string | null;
|
|
11856
|
+
};
|
|
11362
11857
|
} | null;
|
|
11363
11858
|
};
|
|
11364
11859
|
actions?: {
|
|
11365
|
-
/**
|
|
11366
|
-
* Action definition
|
|
11367
|
-
*/
|
|
11368
11860
|
[k: string]: {
|
|
11369
11861
|
/**
|
|
11370
11862
|
* Title of the action
|
|
@@ -11386,6 +11878,12 @@ interface UpdatePluginRequestBody$1 {
|
|
|
11386
11878
|
[k: string]: any;
|
|
11387
11879
|
};
|
|
11388
11880
|
};
|
|
11881
|
+
/**
|
|
11882
|
+
* Optional attributes. Set attributes to null to remove them
|
|
11883
|
+
*/
|
|
11884
|
+
attributes?: {
|
|
11885
|
+
[k: string]: string | null;
|
|
11886
|
+
};
|
|
11389
11887
|
} | null;
|
|
11390
11888
|
};
|
|
11391
11889
|
user?: {
|
|
@@ -11541,6 +12039,12 @@ interface UpdatePluginResponse$1 {
|
|
|
11541
12039
|
schema: {
|
|
11542
12040
|
[k: string]: any;
|
|
11543
12041
|
};
|
|
12042
|
+
/**
|
|
12043
|
+
* Optional attributes
|
|
12044
|
+
*/
|
|
12045
|
+
attributes?: {
|
|
12046
|
+
[k: string]: string;
|
|
12047
|
+
};
|
|
11544
12048
|
};
|
|
11545
12049
|
};
|
|
11546
12050
|
actions: {
|
|
@@ -11568,6 +12072,12 @@ interface UpdatePluginResponse$1 {
|
|
|
11568
12072
|
[k: string]: any;
|
|
11569
12073
|
};
|
|
11570
12074
|
};
|
|
12075
|
+
/**
|
|
12076
|
+
* Optional attributes
|
|
12077
|
+
*/
|
|
12078
|
+
attributes?: {
|
|
12079
|
+
[k: string]: string;
|
|
12080
|
+
};
|
|
11571
12081
|
};
|
|
11572
12082
|
};
|
|
11573
12083
|
dependencies: {
|
|
@@ -12008,6 +12518,9 @@ declare class Client$7 {
|
|
|
12008
12518
|
readonly createIntegrationShareableId: (input: CreateIntegrationShareableIdInput$1) => Promise<CreateIntegrationShareableIdResponse$1>;
|
|
12009
12519
|
readonly deleteIntegrationShareableId: (input: DeleteIntegrationShareableIdInput$1) => Promise<DeleteIntegrationShareableIdResponse$1>;
|
|
12010
12520
|
readonly getIntegrationShareableId: (input: GetIntegrationShareableIdInput$1) => Promise<GetIntegrationShareableIdResponse$1>;
|
|
12521
|
+
readonly listBotApiKeys: (input: ListBotApiKeysInput$1) => Promise<ListBotApiKeysResponse$1>;
|
|
12522
|
+
readonly createBotApiKey: (input: CreateBotApiKeyInput$1) => Promise<CreateBotApiKeyResponse$1>;
|
|
12523
|
+
readonly deleteBotApiKey: (input: DeleteBotApiKeyInput$1) => Promise<DeleteBotApiKeyResponse$1>;
|
|
12011
12524
|
readonly listWorkspaceInvoices: (input: ListWorkspaceInvoicesInput$1) => Promise<ListWorkspaceInvoicesResponse$1>;
|
|
12012
12525
|
readonly getUpcomingInvoice: (input: GetUpcomingInvoiceInput$1) => Promise<GetUpcomingInvoiceResponse$1>;
|
|
12013
12526
|
readonly chargeWorkspaceUnpaidInvoices: (input: ChargeWorkspaceUnpaidInvoicesInput$1) => Promise<ChargeWorkspaceUnpaidInvoicesResponse$1>;
|
|
@@ -12215,6 +12728,11 @@ declare class Client$6 extends Client$7 {
|
|
|
12215
12728
|
updatedAt: string;
|
|
12216
12729
|
name: string;
|
|
12217
12730
|
version: string;
|
|
12731
|
+
title: string;
|
|
12732
|
+
description: string;
|
|
12733
|
+
iconUrl: string;
|
|
12734
|
+
readmeUrl: string;
|
|
12735
|
+
public: boolean;
|
|
12218
12736
|
}>;
|
|
12219
12737
|
activities: (props: {
|
|
12220
12738
|
botId: string;
|
|
@@ -16740,13 +17258,13 @@ interface ConfigureIntegrationRequestBody {
|
|
|
16740
17258
|
/**
|
|
16741
17259
|
* Unique identifier of the integration that was installed on the bot
|
|
16742
17260
|
*/
|
|
16743
|
-
identifier?: string;
|
|
17261
|
+
identifier?: string | null;
|
|
16744
17262
|
/**
|
|
16745
17263
|
* Recurring schedule on which `register()` will be called on the integration
|
|
16746
17264
|
*/
|
|
16747
17265
|
scheduleRegisterCall?: "hourly" | "daily" | "weekly" | "bi-weekly" | "monthly" | "bi-monthly" | "quarterly" | "yearly";
|
|
16748
17266
|
/**
|
|
16749
|
-
* Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. Setting an individual
|
|
17267
|
+
* **EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. Setting an individual sandbox identifier to null will remove that sandbox identifier. This is an experimental feature meant to be used by specific integrations.
|
|
16750
17268
|
*/
|
|
16751
17269
|
sandboxIdentifiers?: {
|
|
16752
17270
|
[k: string]: {} | null;
|
|
@@ -18242,6 +18760,12 @@ interface GetPublicIntegrationByIdResponse {
|
|
|
18242
18760
|
schema: {
|
|
18243
18761
|
[k: string]: any;
|
|
18244
18762
|
};
|
|
18763
|
+
/**
|
|
18764
|
+
* Optional attributes
|
|
18765
|
+
*/
|
|
18766
|
+
attributes?: {
|
|
18767
|
+
[k: string]: string;
|
|
18768
|
+
};
|
|
18245
18769
|
};
|
|
18246
18770
|
};
|
|
18247
18771
|
actions: {
|
|
@@ -18269,6 +18793,12 @@ interface GetPublicIntegrationByIdResponse {
|
|
|
18269
18793
|
[k: string]: any;
|
|
18270
18794
|
};
|
|
18271
18795
|
};
|
|
18796
|
+
/**
|
|
18797
|
+
* Optional attributes
|
|
18798
|
+
*/
|
|
18799
|
+
attributes?: {
|
|
18800
|
+
[k: string]: string;
|
|
18801
|
+
};
|
|
18272
18802
|
};
|
|
18273
18803
|
};
|
|
18274
18804
|
/**
|
|
@@ -18627,6 +19157,12 @@ interface GetPublicIntegrationResponse {
|
|
|
18627
19157
|
schema: {
|
|
18628
19158
|
[k: string]: any;
|
|
18629
19159
|
};
|
|
19160
|
+
/**
|
|
19161
|
+
* Optional attributes
|
|
19162
|
+
*/
|
|
19163
|
+
attributes?: {
|
|
19164
|
+
[k: string]: string;
|
|
19165
|
+
};
|
|
18630
19166
|
};
|
|
18631
19167
|
};
|
|
18632
19168
|
actions: {
|
|
@@ -18654,6 +19190,12 @@ interface GetPublicIntegrationResponse {
|
|
|
18654
19190
|
[k: string]: any;
|
|
18655
19191
|
};
|
|
18656
19192
|
};
|
|
19193
|
+
/**
|
|
19194
|
+
* Optional attributes
|
|
19195
|
+
*/
|
|
19196
|
+
attributes?: {
|
|
19197
|
+
[k: string]: string;
|
|
19198
|
+
};
|
|
18657
19199
|
};
|
|
18658
19200
|
};
|
|
18659
19201
|
/**
|
|
@@ -18899,6 +19441,12 @@ interface GetPublicPluginByIdResponse {
|
|
|
18899
19441
|
schema: {
|
|
18900
19442
|
[k: string]: any;
|
|
18901
19443
|
};
|
|
19444
|
+
/**
|
|
19445
|
+
* Optional attributes
|
|
19446
|
+
*/
|
|
19447
|
+
attributes?: {
|
|
19448
|
+
[k: string]: string;
|
|
19449
|
+
};
|
|
18902
19450
|
};
|
|
18903
19451
|
};
|
|
18904
19452
|
actions: {
|
|
@@ -18926,6 +19474,12 @@ interface GetPublicPluginByIdResponse {
|
|
|
18926
19474
|
[k: string]: any;
|
|
18927
19475
|
};
|
|
18928
19476
|
};
|
|
19477
|
+
/**
|
|
19478
|
+
* Optional attributes
|
|
19479
|
+
*/
|
|
19480
|
+
attributes?: {
|
|
19481
|
+
[k: string]: string;
|
|
19482
|
+
};
|
|
18929
19483
|
};
|
|
18930
19484
|
};
|
|
18931
19485
|
dependencies: {
|
|
@@ -19093,6 +19647,12 @@ interface GetPublicPluginResponse {
|
|
|
19093
19647
|
schema: {
|
|
19094
19648
|
[k: string]: any;
|
|
19095
19649
|
};
|
|
19650
|
+
/**
|
|
19651
|
+
* Optional attributes
|
|
19652
|
+
*/
|
|
19653
|
+
attributes?: {
|
|
19654
|
+
[k: string]: string;
|
|
19655
|
+
};
|
|
19096
19656
|
};
|
|
19097
19657
|
};
|
|
19098
19658
|
actions: {
|
|
@@ -19120,6 +19680,12 @@ interface GetPublicPluginResponse {
|
|
|
19120
19680
|
[k: string]: any;
|
|
19121
19681
|
};
|
|
19122
19682
|
};
|
|
19683
|
+
/**
|
|
19684
|
+
* Optional attributes
|
|
19685
|
+
*/
|
|
19686
|
+
attributes?: {
|
|
19687
|
+
[k: string]: string;
|
|
19688
|
+
};
|
|
19123
19689
|
};
|
|
19124
19690
|
};
|
|
19125
19691
|
dependencies: {
|
|
@@ -19263,6 +19829,12 @@ interface CreateBotRequestBody {
|
|
|
19263
19829
|
schema: {
|
|
19264
19830
|
[k: string]: any;
|
|
19265
19831
|
};
|
|
19832
|
+
/**
|
|
19833
|
+
* Optional attributes
|
|
19834
|
+
*/
|
|
19835
|
+
attributes?: {
|
|
19836
|
+
[k: string]: string;
|
|
19837
|
+
};
|
|
19266
19838
|
};
|
|
19267
19839
|
};
|
|
19268
19840
|
recurringEvents?: {
|
|
@@ -19315,6 +19887,12 @@ interface CreateBotRequestBody {
|
|
|
19315
19887
|
[k: string]: any;
|
|
19316
19888
|
};
|
|
19317
19889
|
};
|
|
19890
|
+
/**
|
|
19891
|
+
* Optional attributes
|
|
19892
|
+
*/
|
|
19893
|
+
attributes?: {
|
|
19894
|
+
[k: string]: string;
|
|
19895
|
+
};
|
|
19318
19896
|
};
|
|
19319
19897
|
};
|
|
19320
19898
|
configuration?: {
|
|
@@ -19605,6 +20183,12 @@ interface CreateBotResponse {
|
|
|
19605
20183
|
schema: {
|
|
19606
20184
|
[k: string]: any;
|
|
19607
20185
|
};
|
|
20186
|
+
/**
|
|
20187
|
+
* Optional attributes
|
|
20188
|
+
*/
|
|
20189
|
+
attributes?: {
|
|
20190
|
+
[k: string]: string;
|
|
20191
|
+
};
|
|
19608
20192
|
};
|
|
19609
20193
|
};
|
|
19610
20194
|
/**
|
|
@@ -19668,6 +20252,12 @@ interface CreateBotResponse {
|
|
|
19668
20252
|
[k: string]: any;
|
|
19669
20253
|
};
|
|
19670
20254
|
};
|
|
20255
|
+
/**
|
|
20256
|
+
* Optional attributes
|
|
20257
|
+
*/
|
|
20258
|
+
attributes?: {
|
|
20259
|
+
[k: string]: string;
|
|
20260
|
+
};
|
|
19671
20261
|
};
|
|
19672
20262
|
};
|
|
19673
20263
|
/**
|
|
@@ -19809,9 +20399,6 @@ interface UpdateBotRequestBody {
|
|
|
19809
20399
|
};
|
|
19810
20400
|
};
|
|
19811
20401
|
events?: {
|
|
19812
|
-
/**
|
|
19813
|
-
* Event Definition
|
|
19814
|
-
*/
|
|
19815
20402
|
[k: string]: {
|
|
19816
20403
|
/**
|
|
19817
20404
|
* Title of the event
|
|
@@ -19824,12 +20411,15 @@ interface UpdateBotRequestBody {
|
|
|
19824
20411
|
schema: {
|
|
19825
20412
|
[k: string]: any;
|
|
19826
20413
|
};
|
|
20414
|
+
/**
|
|
20415
|
+
* Optional attributes. Set attributes to null to remove them
|
|
20416
|
+
*/
|
|
20417
|
+
attributes?: {
|
|
20418
|
+
[k: string]: string | null;
|
|
20419
|
+
};
|
|
19827
20420
|
} | null;
|
|
19828
20421
|
};
|
|
19829
20422
|
actions?: {
|
|
19830
|
-
/**
|
|
19831
|
-
* Action definition
|
|
19832
|
-
*/
|
|
19833
20423
|
[k: string]: {
|
|
19834
20424
|
/**
|
|
19835
20425
|
* Title of the action
|
|
@@ -19851,6 +20441,12 @@ interface UpdateBotRequestBody {
|
|
|
19851
20441
|
[k: string]: any;
|
|
19852
20442
|
};
|
|
19853
20443
|
};
|
|
20444
|
+
/**
|
|
20445
|
+
* Optional attributes. Set attributes to null to remove them
|
|
20446
|
+
*/
|
|
20447
|
+
attributes?: {
|
|
20448
|
+
[k: string]: string | null;
|
|
20449
|
+
};
|
|
19854
20450
|
} | null;
|
|
19855
20451
|
};
|
|
19856
20452
|
states?: {
|
|
@@ -20109,6 +20705,12 @@ interface UpdateBotResponse {
|
|
|
20109
20705
|
schema: {
|
|
20110
20706
|
[k: string]: any;
|
|
20111
20707
|
};
|
|
20708
|
+
/**
|
|
20709
|
+
* Optional attributes
|
|
20710
|
+
*/
|
|
20711
|
+
attributes?: {
|
|
20712
|
+
[k: string]: string;
|
|
20713
|
+
};
|
|
20112
20714
|
};
|
|
20113
20715
|
};
|
|
20114
20716
|
/**
|
|
@@ -20172,6 +20774,12 @@ interface UpdateBotResponse {
|
|
|
20172
20774
|
[k: string]: any;
|
|
20173
20775
|
};
|
|
20174
20776
|
};
|
|
20777
|
+
/**
|
|
20778
|
+
* Optional attributes
|
|
20779
|
+
*/
|
|
20780
|
+
attributes?: {
|
|
20781
|
+
[k: string]: string;
|
|
20782
|
+
};
|
|
20175
20783
|
};
|
|
20176
20784
|
};
|
|
20177
20785
|
/**
|
|
@@ -20486,6 +21094,12 @@ interface GetBotResponse {
|
|
|
20486
21094
|
schema: {
|
|
20487
21095
|
[k: string]: any;
|
|
20488
21096
|
};
|
|
21097
|
+
/**
|
|
21098
|
+
* Optional attributes
|
|
21099
|
+
*/
|
|
21100
|
+
attributes?: {
|
|
21101
|
+
[k: string]: string;
|
|
21102
|
+
};
|
|
20489
21103
|
};
|
|
20490
21104
|
};
|
|
20491
21105
|
/**
|
|
@@ -20549,6 +21163,12 @@ interface GetBotResponse {
|
|
|
20549
21163
|
[k: string]: any;
|
|
20550
21164
|
};
|
|
20551
21165
|
};
|
|
21166
|
+
/**
|
|
21167
|
+
* Optional attributes
|
|
21168
|
+
*/
|
|
21169
|
+
attributes?: {
|
|
21170
|
+
[k: string]: string;
|
|
21171
|
+
};
|
|
20552
21172
|
};
|
|
20553
21173
|
};
|
|
20554
21174
|
/**
|
|
@@ -20947,6 +21567,58 @@ interface GetIntegrationShareableIdResponse {
|
|
|
20947
21567
|
isExpired: boolean;
|
|
20948
21568
|
}
|
|
20949
21569
|
|
|
21570
|
+
interface ListBotApiKeysRequestHeaders {
|
|
21571
|
+
}
|
|
21572
|
+
interface ListBotApiKeysRequestQuery {
|
|
21573
|
+
botId: string;
|
|
21574
|
+
}
|
|
21575
|
+
interface ListBotApiKeysRequestParams {
|
|
21576
|
+
}
|
|
21577
|
+
interface ListBotApiKeysRequestBody {
|
|
21578
|
+
}
|
|
21579
|
+
type ListBotApiKeysInput = ListBotApiKeysRequestBody & ListBotApiKeysRequestHeaders & ListBotApiKeysRequestQuery & ListBotApiKeysRequestParams;
|
|
21580
|
+
interface ListBotApiKeysResponse {
|
|
21581
|
+
baks: {
|
|
21582
|
+
id: string;
|
|
21583
|
+
createdAt: string;
|
|
21584
|
+
note: string;
|
|
21585
|
+
}[];
|
|
21586
|
+
}
|
|
21587
|
+
|
|
21588
|
+
interface CreateBotApiKeyRequestHeaders {
|
|
21589
|
+
}
|
|
21590
|
+
interface CreateBotApiKeyRequestQuery {
|
|
21591
|
+
}
|
|
21592
|
+
interface CreateBotApiKeyRequestParams {
|
|
21593
|
+
}
|
|
21594
|
+
interface CreateBotApiKeyRequestBody {
|
|
21595
|
+
botId: string;
|
|
21596
|
+
note?: string;
|
|
21597
|
+
}
|
|
21598
|
+
type CreateBotApiKeyInput = CreateBotApiKeyRequestBody & CreateBotApiKeyRequestHeaders & CreateBotApiKeyRequestQuery & CreateBotApiKeyRequestParams;
|
|
21599
|
+
interface CreateBotApiKeyResponse {
|
|
21600
|
+
id: string;
|
|
21601
|
+
createdAt: string;
|
|
21602
|
+
note: string;
|
|
21603
|
+
/**
|
|
21604
|
+
* The BAK value. This will only be returned here when created and cannot be retrieved later.
|
|
21605
|
+
*/
|
|
21606
|
+
value: string;
|
|
21607
|
+
}
|
|
21608
|
+
|
|
21609
|
+
interface DeleteBotApiKeyRequestHeaders {
|
|
21610
|
+
}
|
|
21611
|
+
interface DeleteBotApiKeyRequestQuery {
|
|
21612
|
+
}
|
|
21613
|
+
interface DeleteBotApiKeyRequestParams {
|
|
21614
|
+
id: string;
|
|
21615
|
+
}
|
|
21616
|
+
interface DeleteBotApiKeyRequestBody {
|
|
21617
|
+
}
|
|
21618
|
+
type DeleteBotApiKeyInput = DeleteBotApiKeyRequestBody & DeleteBotApiKeyRequestHeaders & DeleteBotApiKeyRequestQuery & DeleteBotApiKeyRequestParams;
|
|
21619
|
+
interface DeleteBotApiKeyResponse {
|
|
21620
|
+
}
|
|
21621
|
+
|
|
20950
21622
|
interface ListWorkspaceInvoicesRequestHeaders {
|
|
20951
21623
|
}
|
|
20952
21624
|
interface ListWorkspaceInvoicesRequestQuery {
|
|
@@ -21721,6 +22393,12 @@ interface CreateIntegrationRequestBody {
|
|
|
21721
22393
|
schema: {
|
|
21722
22394
|
[k: string]: any;
|
|
21723
22395
|
};
|
|
22396
|
+
/**
|
|
22397
|
+
* Optional attributes
|
|
22398
|
+
*/
|
|
22399
|
+
attributes?: {
|
|
22400
|
+
[k: string]: string;
|
|
22401
|
+
};
|
|
21724
22402
|
};
|
|
21725
22403
|
};
|
|
21726
22404
|
actions?: {
|
|
@@ -21748,6 +22426,12 @@ interface CreateIntegrationRequestBody {
|
|
|
21748
22426
|
[k: string]: any;
|
|
21749
22427
|
};
|
|
21750
22428
|
};
|
|
22429
|
+
/**
|
|
22430
|
+
* Optional attributes
|
|
22431
|
+
*/
|
|
22432
|
+
attributes?: {
|
|
22433
|
+
[k: string]: string;
|
|
22434
|
+
};
|
|
21751
22435
|
};
|
|
21752
22436
|
};
|
|
21753
22437
|
entities?: {
|
|
@@ -22190,6 +22874,12 @@ interface CreateIntegrationResponse {
|
|
|
22190
22874
|
schema: {
|
|
22191
22875
|
[k: string]: any;
|
|
22192
22876
|
};
|
|
22877
|
+
/**
|
|
22878
|
+
* Optional attributes
|
|
22879
|
+
*/
|
|
22880
|
+
attributes?: {
|
|
22881
|
+
[k: string]: string;
|
|
22882
|
+
};
|
|
22193
22883
|
};
|
|
22194
22884
|
};
|
|
22195
22885
|
actions: {
|
|
@@ -22217,6 +22907,12 @@ interface CreateIntegrationResponse {
|
|
|
22217
22907
|
[k: string]: any;
|
|
22218
22908
|
};
|
|
22219
22909
|
};
|
|
22910
|
+
/**
|
|
22911
|
+
* Optional attributes
|
|
22912
|
+
*/
|
|
22913
|
+
attributes?: {
|
|
22914
|
+
[k: string]: string;
|
|
22915
|
+
};
|
|
22220
22916
|
};
|
|
22221
22917
|
};
|
|
22222
22918
|
/**
|
|
@@ -22401,6 +23097,12 @@ interface ValidateIntegrationCreationRequestBody {
|
|
|
22401
23097
|
schema: {
|
|
22402
23098
|
[k: string]: any;
|
|
22403
23099
|
};
|
|
23100
|
+
/**
|
|
23101
|
+
* Optional attributes
|
|
23102
|
+
*/
|
|
23103
|
+
attributes?: {
|
|
23104
|
+
[k: string]: string;
|
|
23105
|
+
};
|
|
22404
23106
|
};
|
|
22405
23107
|
};
|
|
22406
23108
|
actions?: {
|
|
@@ -22428,6 +23130,12 @@ interface ValidateIntegrationCreationRequestBody {
|
|
|
22428
23130
|
[k: string]: any;
|
|
22429
23131
|
};
|
|
22430
23132
|
};
|
|
23133
|
+
/**
|
|
23134
|
+
* Optional attributes
|
|
23135
|
+
*/
|
|
23136
|
+
attributes?: {
|
|
23137
|
+
[k: string]: string;
|
|
23138
|
+
};
|
|
22431
23139
|
};
|
|
22432
23140
|
};
|
|
22433
23141
|
entities?: {
|
|
@@ -22753,9 +23461,6 @@ interface UpdateIntegrationRequestBody {
|
|
|
22753
23461
|
fallbackHandlerScript?: string | null;
|
|
22754
23462
|
};
|
|
22755
23463
|
actions?: {
|
|
22756
|
-
/**
|
|
22757
|
-
* Action definition
|
|
22758
|
-
*/
|
|
22759
23464
|
[k: string]: {
|
|
22760
23465
|
/**
|
|
22761
23466
|
* Title of the action
|
|
@@ -22777,12 +23482,15 @@ interface UpdateIntegrationRequestBody {
|
|
|
22777
23482
|
[k: string]: any;
|
|
22778
23483
|
};
|
|
22779
23484
|
};
|
|
23485
|
+
/**
|
|
23486
|
+
* Optional attributes. Set attributes to null to remove them
|
|
23487
|
+
*/
|
|
23488
|
+
attributes?: {
|
|
23489
|
+
[k: string]: string | null;
|
|
23490
|
+
};
|
|
22780
23491
|
} | null;
|
|
22781
23492
|
};
|
|
22782
23493
|
events?: {
|
|
22783
|
-
/**
|
|
22784
|
-
* Event Definition
|
|
22785
|
-
*/
|
|
22786
23494
|
[k: string]: {
|
|
22787
23495
|
/**
|
|
22788
23496
|
* Title of the event
|
|
@@ -22795,6 +23503,12 @@ interface UpdateIntegrationRequestBody {
|
|
|
22795
23503
|
schema: {
|
|
22796
23504
|
[k: string]: any;
|
|
22797
23505
|
};
|
|
23506
|
+
/**
|
|
23507
|
+
* Optional attributes. Set attributes to null to remove them
|
|
23508
|
+
*/
|
|
23509
|
+
attributes?: {
|
|
23510
|
+
[k: string]: string | null;
|
|
23511
|
+
};
|
|
22798
23512
|
} | null;
|
|
22799
23513
|
};
|
|
22800
23514
|
states?: {
|
|
@@ -23181,6 +23895,12 @@ interface UpdateIntegrationResponse {
|
|
|
23181
23895
|
schema: {
|
|
23182
23896
|
[k: string]: any;
|
|
23183
23897
|
};
|
|
23898
|
+
/**
|
|
23899
|
+
* Optional attributes
|
|
23900
|
+
*/
|
|
23901
|
+
attributes?: {
|
|
23902
|
+
[k: string]: string;
|
|
23903
|
+
};
|
|
23184
23904
|
};
|
|
23185
23905
|
};
|
|
23186
23906
|
actions: {
|
|
@@ -23208,6 +23928,12 @@ interface UpdateIntegrationResponse {
|
|
|
23208
23928
|
[k: string]: any;
|
|
23209
23929
|
};
|
|
23210
23930
|
};
|
|
23931
|
+
/**
|
|
23932
|
+
* Optional attributes
|
|
23933
|
+
*/
|
|
23934
|
+
attributes?: {
|
|
23935
|
+
[k: string]: string;
|
|
23936
|
+
};
|
|
23211
23937
|
};
|
|
23212
23938
|
};
|
|
23213
23939
|
/**
|
|
@@ -23426,9 +24152,6 @@ interface ValidateIntegrationUpdateRequestBody {
|
|
|
23426
24152
|
fallbackHandlerScript?: string | null;
|
|
23427
24153
|
};
|
|
23428
24154
|
actions?: {
|
|
23429
|
-
/**
|
|
23430
|
-
* Action definition
|
|
23431
|
-
*/
|
|
23432
24155
|
[k: string]: {
|
|
23433
24156
|
/**
|
|
23434
24157
|
* Title of the action
|
|
@@ -23450,12 +24173,15 @@ interface ValidateIntegrationUpdateRequestBody {
|
|
|
23450
24173
|
[k: string]: any;
|
|
23451
24174
|
};
|
|
23452
24175
|
};
|
|
24176
|
+
/**
|
|
24177
|
+
* Optional attributes. Set attributes to null to remove them
|
|
24178
|
+
*/
|
|
24179
|
+
attributes?: {
|
|
24180
|
+
[k: string]: string | null;
|
|
24181
|
+
};
|
|
23453
24182
|
} | null;
|
|
23454
24183
|
};
|
|
23455
24184
|
events?: {
|
|
23456
|
-
/**
|
|
23457
|
-
* Event Definition
|
|
23458
|
-
*/
|
|
23459
24185
|
[k: string]: {
|
|
23460
24186
|
/**
|
|
23461
24187
|
* Title of the event
|
|
@@ -23468,6 +24194,12 @@ interface ValidateIntegrationUpdateRequestBody {
|
|
|
23468
24194
|
schema: {
|
|
23469
24195
|
[k: string]: any;
|
|
23470
24196
|
};
|
|
24197
|
+
/**
|
|
24198
|
+
* Optional attributes. Set attributes to null to remove them
|
|
24199
|
+
*/
|
|
24200
|
+
attributes?: {
|
|
24201
|
+
[k: string]: string | null;
|
|
24202
|
+
};
|
|
23471
24203
|
} | null;
|
|
23472
24204
|
};
|
|
23473
24205
|
states?: {
|
|
@@ -23970,6 +24702,12 @@ interface GetIntegrationResponse {
|
|
|
23970
24702
|
schema: {
|
|
23971
24703
|
[k: string]: any;
|
|
23972
24704
|
};
|
|
24705
|
+
/**
|
|
24706
|
+
* Optional attributes
|
|
24707
|
+
*/
|
|
24708
|
+
attributes?: {
|
|
24709
|
+
[k: string]: string;
|
|
24710
|
+
};
|
|
23973
24711
|
};
|
|
23974
24712
|
};
|
|
23975
24713
|
actions: {
|
|
@@ -23997,6 +24735,12 @@ interface GetIntegrationResponse {
|
|
|
23997
24735
|
[k: string]: any;
|
|
23998
24736
|
};
|
|
23999
24737
|
};
|
|
24738
|
+
/**
|
|
24739
|
+
* Optional attributes
|
|
24740
|
+
*/
|
|
24741
|
+
attributes?: {
|
|
24742
|
+
[k: string]: string;
|
|
24743
|
+
};
|
|
24000
24744
|
};
|
|
24001
24745
|
};
|
|
24002
24746
|
/**
|
|
@@ -24374,6 +25118,12 @@ interface GetIntegrationByNameResponse {
|
|
|
24374
25118
|
schema: {
|
|
24375
25119
|
[k: string]: any;
|
|
24376
25120
|
};
|
|
25121
|
+
/**
|
|
25122
|
+
* Optional attributes
|
|
25123
|
+
*/
|
|
25124
|
+
attributes?: {
|
|
25125
|
+
[k: string]: string;
|
|
25126
|
+
};
|
|
24377
25127
|
};
|
|
24378
25128
|
};
|
|
24379
25129
|
actions: {
|
|
@@ -24401,6 +25151,12 @@ interface GetIntegrationByNameResponse {
|
|
|
24401
25151
|
[k: string]: any;
|
|
24402
25152
|
};
|
|
24403
25153
|
};
|
|
25154
|
+
/**
|
|
25155
|
+
* Optional attributes
|
|
25156
|
+
*/
|
|
25157
|
+
attributes?: {
|
|
25158
|
+
[k: string]: string;
|
|
25159
|
+
};
|
|
24404
25160
|
};
|
|
24405
25161
|
};
|
|
24406
25162
|
/**
|
|
@@ -24564,6 +25320,12 @@ interface CreateInterfaceRequestBody {
|
|
|
24564
25320
|
schema: {
|
|
24565
25321
|
[k: string]: any;
|
|
24566
25322
|
};
|
|
25323
|
+
/**
|
|
25324
|
+
* Optional attributes
|
|
25325
|
+
*/
|
|
25326
|
+
attributes?: {
|
|
25327
|
+
[k: string]: string;
|
|
25328
|
+
};
|
|
24567
25329
|
};
|
|
24568
25330
|
};
|
|
24569
25331
|
actions?: {
|
|
@@ -24591,6 +25353,12 @@ interface CreateInterfaceRequestBody {
|
|
|
24591
25353
|
[k: string]: any;
|
|
24592
25354
|
};
|
|
24593
25355
|
};
|
|
25356
|
+
/**
|
|
25357
|
+
* Optional attributes
|
|
25358
|
+
*/
|
|
25359
|
+
attributes?: {
|
|
25360
|
+
[k: string]: string;
|
|
25361
|
+
};
|
|
24594
25362
|
};
|
|
24595
25363
|
};
|
|
24596
25364
|
channels?: {
|
|
@@ -24622,6 +25390,26 @@ interface CreateInterfaceRequestBody {
|
|
|
24622
25390
|
script: string;
|
|
24623
25391
|
language: string;
|
|
24624
25392
|
};
|
|
25393
|
+
/**
|
|
25394
|
+
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
25395
|
+
*/
|
|
25396
|
+
icon?: string;
|
|
25397
|
+
/**
|
|
25398
|
+
* Base64 encoded markdown of the interface readme. The readme is specific to each interface versions.
|
|
25399
|
+
*/
|
|
25400
|
+
readme?: string;
|
|
25401
|
+
/**
|
|
25402
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
25403
|
+
*/
|
|
25404
|
+
title?: string;
|
|
25405
|
+
/**
|
|
25406
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
25407
|
+
*/
|
|
25408
|
+
description?: string;
|
|
25409
|
+
/**
|
|
25410
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
25411
|
+
*/
|
|
25412
|
+
public?: boolean;
|
|
24625
25413
|
}
|
|
24626
25414
|
type CreateInterfaceInput = CreateInterfaceRequestBody & CreateInterfaceRequestHeaders & CreateInterfaceRequestQuery & CreateInterfaceRequestParams;
|
|
24627
25415
|
interface CreateInterfaceResponse {
|
|
@@ -24680,6 +25468,12 @@ interface CreateInterfaceResponse {
|
|
|
24680
25468
|
schema: {
|
|
24681
25469
|
[k: string]: any;
|
|
24682
25470
|
};
|
|
25471
|
+
/**
|
|
25472
|
+
* Optional attributes
|
|
25473
|
+
*/
|
|
25474
|
+
attributes?: {
|
|
25475
|
+
[k: string]: string;
|
|
25476
|
+
};
|
|
24683
25477
|
};
|
|
24684
25478
|
};
|
|
24685
25479
|
actions: {
|
|
@@ -24707,6 +25501,12 @@ interface CreateInterfaceResponse {
|
|
|
24707
25501
|
[k: string]: any;
|
|
24708
25502
|
};
|
|
24709
25503
|
};
|
|
25504
|
+
/**
|
|
25505
|
+
* Optional attributes
|
|
25506
|
+
*/
|
|
25507
|
+
attributes?: {
|
|
25508
|
+
[k: string]: string;
|
|
25509
|
+
};
|
|
24710
25510
|
};
|
|
24711
25511
|
};
|
|
24712
25512
|
channels: {
|
|
@@ -24738,6 +25538,26 @@ interface CreateInterfaceResponse {
|
|
|
24738
25538
|
script: string;
|
|
24739
25539
|
language: string;
|
|
24740
25540
|
};
|
|
25541
|
+
/**
|
|
25542
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
25543
|
+
*/
|
|
25544
|
+
title: string;
|
|
25545
|
+
/**
|
|
25546
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
25547
|
+
*/
|
|
25548
|
+
description: string;
|
|
25549
|
+
/**
|
|
25550
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
25551
|
+
*/
|
|
25552
|
+
iconUrl: string;
|
|
25553
|
+
/**
|
|
25554
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
25555
|
+
*/
|
|
25556
|
+
readmeUrl: string;
|
|
25557
|
+
/**
|
|
25558
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
25559
|
+
*/
|
|
25560
|
+
public: boolean;
|
|
24741
25561
|
};
|
|
24742
25562
|
}
|
|
24743
25563
|
|
|
@@ -24807,6 +25627,12 @@ interface GetInterfaceResponse {
|
|
|
24807
25627
|
schema: {
|
|
24808
25628
|
[k: string]: any;
|
|
24809
25629
|
};
|
|
25630
|
+
/**
|
|
25631
|
+
* Optional attributes
|
|
25632
|
+
*/
|
|
25633
|
+
attributes?: {
|
|
25634
|
+
[k: string]: string;
|
|
25635
|
+
};
|
|
24810
25636
|
};
|
|
24811
25637
|
};
|
|
24812
25638
|
actions: {
|
|
@@ -24834,6 +25660,12 @@ interface GetInterfaceResponse {
|
|
|
24834
25660
|
[k: string]: any;
|
|
24835
25661
|
};
|
|
24836
25662
|
};
|
|
25663
|
+
/**
|
|
25664
|
+
* Optional attributes
|
|
25665
|
+
*/
|
|
25666
|
+
attributes?: {
|
|
25667
|
+
[k: string]: string;
|
|
25668
|
+
};
|
|
24837
25669
|
};
|
|
24838
25670
|
};
|
|
24839
25671
|
channels: {
|
|
@@ -24865,6 +25697,26 @@ interface GetInterfaceResponse {
|
|
|
24865
25697
|
script: string;
|
|
24866
25698
|
language: string;
|
|
24867
25699
|
};
|
|
25700
|
+
/**
|
|
25701
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
25702
|
+
*/
|
|
25703
|
+
title: string;
|
|
25704
|
+
/**
|
|
25705
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
25706
|
+
*/
|
|
25707
|
+
description: string;
|
|
25708
|
+
/**
|
|
25709
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
25710
|
+
*/
|
|
25711
|
+
iconUrl: string;
|
|
25712
|
+
/**
|
|
25713
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
25714
|
+
*/
|
|
25715
|
+
readmeUrl: string;
|
|
25716
|
+
/**
|
|
25717
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
25718
|
+
*/
|
|
25719
|
+
public: boolean;
|
|
24868
25720
|
};
|
|
24869
25721
|
}
|
|
24870
25722
|
|
|
@@ -24935,6 +25787,12 @@ interface GetInterfaceByNameResponse {
|
|
|
24935
25787
|
schema: {
|
|
24936
25788
|
[k: string]: any;
|
|
24937
25789
|
};
|
|
25790
|
+
/**
|
|
25791
|
+
* Optional attributes
|
|
25792
|
+
*/
|
|
25793
|
+
attributes?: {
|
|
25794
|
+
[k: string]: string;
|
|
25795
|
+
};
|
|
24938
25796
|
};
|
|
24939
25797
|
};
|
|
24940
25798
|
actions: {
|
|
@@ -24962,6 +25820,12 @@ interface GetInterfaceByNameResponse {
|
|
|
24962
25820
|
[k: string]: any;
|
|
24963
25821
|
};
|
|
24964
25822
|
};
|
|
25823
|
+
/**
|
|
25824
|
+
* Optional attributes
|
|
25825
|
+
*/
|
|
25826
|
+
attributes?: {
|
|
25827
|
+
[k: string]: string;
|
|
25828
|
+
};
|
|
24965
25829
|
};
|
|
24966
25830
|
};
|
|
24967
25831
|
channels: {
|
|
@@ -24993,6 +25857,26 @@ interface GetInterfaceByNameResponse {
|
|
|
24993
25857
|
script: string;
|
|
24994
25858
|
language: string;
|
|
24995
25859
|
};
|
|
25860
|
+
/**
|
|
25861
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
25862
|
+
*/
|
|
25863
|
+
title: string;
|
|
25864
|
+
/**
|
|
25865
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
25866
|
+
*/
|
|
25867
|
+
description: string;
|
|
25868
|
+
/**
|
|
25869
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
25870
|
+
*/
|
|
25871
|
+
iconUrl: string;
|
|
25872
|
+
/**
|
|
25873
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
25874
|
+
*/
|
|
25875
|
+
readmeUrl: string;
|
|
25876
|
+
/**
|
|
25877
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
25878
|
+
*/
|
|
25879
|
+
public: boolean;
|
|
24996
25880
|
};
|
|
24997
25881
|
}
|
|
24998
25882
|
|
|
@@ -25023,9 +25907,6 @@ interface UpdateInterfaceRequestBody {
|
|
|
25023
25907
|
} | null;
|
|
25024
25908
|
};
|
|
25025
25909
|
events?: {
|
|
25026
|
-
/**
|
|
25027
|
-
* Event Definition
|
|
25028
|
-
*/
|
|
25029
25910
|
[k: string]: {
|
|
25030
25911
|
/**
|
|
25031
25912
|
* Title of the event
|
|
@@ -25038,12 +25919,15 @@ interface UpdateInterfaceRequestBody {
|
|
|
25038
25919
|
schema: {
|
|
25039
25920
|
[k: string]: any;
|
|
25040
25921
|
};
|
|
25922
|
+
/**
|
|
25923
|
+
* Optional attributes. Set attributes to null to remove them
|
|
25924
|
+
*/
|
|
25925
|
+
attributes?: {
|
|
25926
|
+
[k: string]: string | null;
|
|
25927
|
+
};
|
|
25041
25928
|
} | null;
|
|
25042
25929
|
};
|
|
25043
25930
|
actions?: {
|
|
25044
|
-
/**
|
|
25045
|
-
* Action definition
|
|
25046
|
-
*/
|
|
25047
25931
|
[k: string]: {
|
|
25048
25932
|
/**
|
|
25049
25933
|
* Title of the action
|
|
@@ -25065,6 +25949,12 @@ interface UpdateInterfaceRequestBody {
|
|
|
25065
25949
|
[k: string]: any;
|
|
25066
25950
|
};
|
|
25067
25951
|
};
|
|
25952
|
+
/**
|
|
25953
|
+
* Optional attributes. Set attributes to null to remove them
|
|
25954
|
+
*/
|
|
25955
|
+
attributes?: {
|
|
25956
|
+
[k: string]: string | null;
|
|
25957
|
+
};
|
|
25068
25958
|
} | null;
|
|
25069
25959
|
};
|
|
25070
25960
|
channels?: {
|
|
@@ -25096,6 +25986,26 @@ interface UpdateInterfaceRequestBody {
|
|
|
25096
25986
|
script: string;
|
|
25097
25987
|
language: string;
|
|
25098
25988
|
} | null;
|
|
25989
|
+
/**
|
|
25990
|
+
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
25991
|
+
*/
|
|
25992
|
+
icon?: string;
|
|
25993
|
+
/**
|
|
25994
|
+
* Base64 encoded markdown of the interface readme. The readme is specific to each interface versions.
|
|
25995
|
+
*/
|
|
25996
|
+
readme?: string;
|
|
25997
|
+
/**
|
|
25998
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
25999
|
+
*/
|
|
26000
|
+
title?: string;
|
|
26001
|
+
/**
|
|
26002
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
26003
|
+
*/
|
|
26004
|
+
description?: string;
|
|
26005
|
+
/**
|
|
26006
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
26007
|
+
*/
|
|
26008
|
+
public?: boolean;
|
|
25099
26009
|
}
|
|
25100
26010
|
type UpdateInterfaceInput = UpdateInterfaceRequestBody & UpdateInterfaceRequestHeaders & UpdateInterfaceRequestQuery & UpdateInterfaceRequestParams;
|
|
25101
26011
|
interface UpdateInterfaceResponse {
|
|
@@ -25154,6 +26064,12 @@ interface UpdateInterfaceResponse {
|
|
|
25154
26064
|
schema: {
|
|
25155
26065
|
[k: string]: any;
|
|
25156
26066
|
};
|
|
26067
|
+
/**
|
|
26068
|
+
* Optional attributes
|
|
26069
|
+
*/
|
|
26070
|
+
attributes?: {
|
|
26071
|
+
[k: string]: string;
|
|
26072
|
+
};
|
|
25157
26073
|
};
|
|
25158
26074
|
};
|
|
25159
26075
|
actions: {
|
|
@@ -25181,6 +26097,12 @@ interface UpdateInterfaceResponse {
|
|
|
25181
26097
|
[k: string]: any;
|
|
25182
26098
|
};
|
|
25183
26099
|
};
|
|
26100
|
+
/**
|
|
26101
|
+
* Optional attributes
|
|
26102
|
+
*/
|
|
26103
|
+
attributes?: {
|
|
26104
|
+
[k: string]: string;
|
|
26105
|
+
};
|
|
25184
26106
|
};
|
|
25185
26107
|
};
|
|
25186
26108
|
channels: {
|
|
@@ -25212,6 +26134,26 @@ interface UpdateInterfaceResponse {
|
|
|
25212
26134
|
script: string;
|
|
25213
26135
|
language: string;
|
|
25214
26136
|
};
|
|
26137
|
+
/**
|
|
26138
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
26139
|
+
*/
|
|
26140
|
+
title: string;
|
|
26141
|
+
/**
|
|
26142
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
26143
|
+
*/
|
|
26144
|
+
description: string;
|
|
26145
|
+
/**
|
|
26146
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
26147
|
+
*/
|
|
26148
|
+
iconUrl: string;
|
|
26149
|
+
/**
|
|
26150
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
26151
|
+
*/
|
|
26152
|
+
readmeUrl: string;
|
|
26153
|
+
/**
|
|
26154
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
26155
|
+
*/
|
|
26156
|
+
public: boolean;
|
|
25215
26157
|
};
|
|
25216
26158
|
}
|
|
25217
26159
|
|
|
@@ -25261,6 +26203,26 @@ interface ListInterfacesResponse {
|
|
|
25261
26203
|
* Version of the [Interface](#schema_interface)
|
|
25262
26204
|
*/
|
|
25263
26205
|
version: string;
|
|
26206
|
+
/**
|
|
26207
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
26208
|
+
*/
|
|
26209
|
+
title: string;
|
|
26210
|
+
/**
|
|
26211
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
26212
|
+
*/
|
|
26213
|
+
description: string;
|
|
26214
|
+
/**
|
|
26215
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
26216
|
+
*/
|
|
26217
|
+
iconUrl: string;
|
|
26218
|
+
/**
|
|
26219
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
26220
|
+
*/
|
|
26221
|
+
readmeUrl: string;
|
|
26222
|
+
/**
|
|
26223
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
26224
|
+
*/
|
|
26225
|
+
public: boolean;
|
|
25264
26226
|
}[];
|
|
25265
26227
|
meta: {
|
|
25266
26228
|
/**
|
|
@@ -25338,6 +26300,12 @@ interface CreatePluginRequestBody {
|
|
|
25338
26300
|
schema: {
|
|
25339
26301
|
[k: string]: any;
|
|
25340
26302
|
};
|
|
26303
|
+
/**
|
|
26304
|
+
* Optional attributes
|
|
26305
|
+
*/
|
|
26306
|
+
attributes?: {
|
|
26307
|
+
[k: string]: string;
|
|
26308
|
+
};
|
|
25341
26309
|
};
|
|
25342
26310
|
};
|
|
25343
26311
|
actions?: {
|
|
@@ -25365,6 +26333,12 @@ interface CreatePluginRequestBody {
|
|
|
25365
26333
|
[k: string]: any;
|
|
25366
26334
|
};
|
|
25367
26335
|
};
|
|
26336
|
+
/**
|
|
26337
|
+
* Optional attributes
|
|
26338
|
+
*/
|
|
26339
|
+
attributes?: {
|
|
26340
|
+
[k: string]: string;
|
|
26341
|
+
};
|
|
25368
26342
|
};
|
|
25369
26343
|
};
|
|
25370
26344
|
/**
|
|
@@ -25526,6 +26500,12 @@ interface CreatePluginResponse {
|
|
|
25526
26500
|
schema: {
|
|
25527
26501
|
[k: string]: any;
|
|
25528
26502
|
};
|
|
26503
|
+
/**
|
|
26504
|
+
* Optional attributes
|
|
26505
|
+
*/
|
|
26506
|
+
attributes?: {
|
|
26507
|
+
[k: string]: string;
|
|
26508
|
+
};
|
|
25529
26509
|
};
|
|
25530
26510
|
};
|
|
25531
26511
|
actions: {
|
|
@@ -25553,6 +26533,12 @@ interface CreatePluginResponse {
|
|
|
25553
26533
|
[k: string]: any;
|
|
25554
26534
|
};
|
|
25555
26535
|
};
|
|
26536
|
+
/**
|
|
26537
|
+
* Optional attributes
|
|
26538
|
+
*/
|
|
26539
|
+
attributes?: {
|
|
26540
|
+
[k: string]: string;
|
|
26541
|
+
};
|
|
25556
26542
|
};
|
|
25557
26543
|
};
|
|
25558
26544
|
dependencies: {
|
|
@@ -25719,6 +26705,12 @@ interface GetPluginResponse {
|
|
|
25719
26705
|
schema: {
|
|
25720
26706
|
[k: string]: any;
|
|
25721
26707
|
};
|
|
26708
|
+
/**
|
|
26709
|
+
* Optional attributes
|
|
26710
|
+
*/
|
|
26711
|
+
attributes?: {
|
|
26712
|
+
[k: string]: string;
|
|
26713
|
+
};
|
|
25722
26714
|
};
|
|
25723
26715
|
};
|
|
25724
26716
|
actions: {
|
|
@@ -25746,6 +26738,12 @@ interface GetPluginResponse {
|
|
|
25746
26738
|
[k: string]: any;
|
|
25747
26739
|
};
|
|
25748
26740
|
};
|
|
26741
|
+
/**
|
|
26742
|
+
* Optional attributes
|
|
26743
|
+
*/
|
|
26744
|
+
attributes?: {
|
|
26745
|
+
[k: string]: string;
|
|
26746
|
+
};
|
|
25749
26747
|
};
|
|
25750
26748
|
};
|
|
25751
26749
|
dependencies: {
|
|
@@ -25913,6 +26911,12 @@ interface GetPluginByNameResponse {
|
|
|
25913
26911
|
schema: {
|
|
25914
26912
|
[k: string]: any;
|
|
25915
26913
|
};
|
|
26914
|
+
/**
|
|
26915
|
+
* Optional attributes
|
|
26916
|
+
*/
|
|
26917
|
+
attributes?: {
|
|
26918
|
+
[k: string]: string;
|
|
26919
|
+
};
|
|
25916
26920
|
};
|
|
25917
26921
|
};
|
|
25918
26922
|
actions: {
|
|
@@ -25940,6 +26944,12 @@ interface GetPluginByNameResponse {
|
|
|
25940
26944
|
[k: string]: any;
|
|
25941
26945
|
};
|
|
25942
26946
|
};
|
|
26947
|
+
/**
|
|
26948
|
+
* Optional attributes
|
|
26949
|
+
*/
|
|
26950
|
+
attributes?: {
|
|
26951
|
+
[k: string]: string;
|
|
26952
|
+
};
|
|
25943
26953
|
};
|
|
25944
26954
|
};
|
|
25945
26955
|
dependencies: {
|
|
@@ -26067,9 +27077,6 @@ interface UpdatePluginRequestBody {
|
|
|
26067
27077
|
} | null;
|
|
26068
27078
|
};
|
|
26069
27079
|
events?: {
|
|
26070
|
-
/**
|
|
26071
|
-
* Event Definition
|
|
26072
|
-
*/
|
|
26073
27080
|
[k: string]: {
|
|
26074
27081
|
/**
|
|
26075
27082
|
* Title of the event
|
|
@@ -26082,12 +27089,15 @@ interface UpdatePluginRequestBody {
|
|
|
26082
27089
|
schema: {
|
|
26083
27090
|
[k: string]: any;
|
|
26084
27091
|
};
|
|
27092
|
+
/**
|
|
27093
|
+
* Optional attributes. Set attributes to null to remove them
|
|
27094
|
+
*/
|
|
27095
|
+
attributes?: {
|
|
27096
|
+
[k: string]: string | null;
|
|
27097
|
+
};
|
|
26085
27098
|
} | null;
|
|
26086
27099
|
};
|
|
26087
27100
|
actions?: {
|
|
26088
|
-
/**
|
|
26089
|
-
* Action definition
|
|
26090
|
-
*/
|
|
26091
27101
|
[k: string]: {
|
|
26092
27102
|
/**
|
|
26093
27103
|
* Title of the action
|
|
@@ -26109,6 +27119,12 @@ interface UpdatePluginRequestBody {
|
|
|
26109
27119
|
[k: string]: any;
|
|
26110
27120
|
};
|
|
26111
27121
|
};
|
|
27122
|
+
/**
|
|
27123
|
+
* Optional attributes. Set attributes to null to remove them
|
|
27124
|
+
*/
|
|
27125
|
+
attributes?: {
|
|
27126
|
+
[k: string]: string | null;
|
|
27127
|
+
};
|
|
26112
27128
|
} | null;
|
|
26113
27129
|
};
|
|
26114
27130
|
user?: {
|
|
@@ -26264,6 +27280,12 @@ interface UpdatePluginResponse {
|
|
|
26264
27280
|
schema: {
|
|
26265
27281
|
[k: string]: any;
|
|
26266
27282
|
};
|
|
27283
|
+
/**
|
|
27284
|
+
* Optional attributes
|
|
27285
|
+
*/
|
|
27286
|
+
attributes?: {
|
|
27287
|
+
[k: string]: string;
|
|
27288
|
+
};
|
|
26267
27289
|
};
|
|
26268
27290
|
};
|
|
26269
27291
|
actions: {
|
|
@@ -26291,6 +27313,12 @@ interface UpdatePluginResponse {
|
|
|
26291
27313
|
[k: string]: any;
|
|
26292
27314
|
};
|
|
26293
27315
|
};
|
|
27316
|
+
/**
|
|
27317
|
+
* Optional attributes
|
|
27318
|
+
*/
|
|
27319
|
+
attributes?: {
|
|
27320
|
+
[k: string]: string;
|
|
27321
|
+
};
|
|
26294
27322
|
};
|
|
26295
27323
|
};
|
|
26296
27324
|
dependencies: {
|
|
@@ -29432,6 +30460,12 @@ interface Bot {
|
|
|
29432
30460
|
schema: {
|
|
29433
30461
|
[k: string]: any;
|
|
29434
30462
|
};
|
|
30463
|
+
/**
|
|
30464
|
+
* Optional attributes
|
|
30465
|
+
*/
|
|
30466
|
+
attributes?: {
|
|
30467
|
+
[k: string]: string;
|
|
30468
|
+
};
|
|
29435
30469
|
};
|
|
29436
30470
|
};
|
|
29437
30471
|
/**
|
|
@@ -29495,6 +30529,12 @@ interface Bot {
|
|
|
29495
30529
|
[k: string]: any;
|
|
29496
30530
|
};
|
|
29497
30531
|
};
|
|
30532
|
+
/**
|
|
30533
|
+
* Optional attributes
|
|
30534
|
+
*/
|
|
30535
|
+
attributes?: {
|
|
30536
|
+
[k: string]: string;
|
|
30537
|
+
};
|
|
29498
30538
|
};
|
|
29499
30539
|
};
|
|
29500
30540
|
/**
|
|
@@ -29790,6 +30830,12 @@ interface Integration {
|
|
|
29790
30830
|
schema: {
|
|
29791
30831
|
[k: string]: any;
|
|
29792
30832
|
};
|
|
30833
|
+
/**
|
|
30834
|
+
* Optional attributes
|
|
30835
|
+
*/
|
|
30836
|
+
attributes?: {
|
|
30837
|
+
[k: string]: string;
|
|
30838
|
+
};
|
|
29793
30839
|
};
|
|
29794
30840
|
};
|
|
29795
30841
|
actions: {
|
|
@@ -29817,6 +30863,12 @@ interface Integration {
|
|
|
29817
30863
|
[k: string]: any;
|
|
29818
30864
|
};
|
|
29819
30865
|
};
|
|
30866
|
+
/**
|
|
30867
|
+
* Optional attributes
|
|
30868
|
+
*/
|
|
30869
|
+
attributes?: {
|
|
30870
|
+
[k: string]: string;
|
|
30871
|
+
};
|
|
29820
30872
|
};
|
|
29821
30873
|
};
|
|
29822
30874
|
/**
|
|
@@ -29958,6 +31010,12 @@ interface Interface {
|
|
|
29958
31010
|
schema: {
|
|
29959
31011
|
[k: string]: any;
|
|
29960
31012
|
};
|
|
31013
|
+
/**
|
|
31014
|
+
* Optional attributes
|
|
31015
|
+
*/
|
|
31016
|
+
attributes?: {
|
|
31017
|
+
[k: string]: string;
|
|
31018
|
+
};
|
|
29961
31019
|
};
|
|
29962
31020
|
};
|
|
29963
31021
|
actions: {
|
|
@@ -29985,6 +31043,12 @@ interface Interface {
|
|
|
29985
31043
|
[k: string]: any;
|
|
29986
31044
|
};
|
|
29987
31045
|
};
|
|
31046
|
+
/**
|
|
31047
|
+
* Optional attributes
|
|
31048
|
+
*/
|
|
31049
|
+
attributes?: {
|
|
31050
|
+
[k: string]: string;
|
|
31051
|
+
};
|
|
29988
31052
|
};
|
|
29989
31053
|
};
|
|
29990
31054
|
channels: {
|
|
@@ -30016,6 +31080,26 @@ interface Interface {
|
|
|
30016
31080
|
script: string;
|
|
30017
31081
|
language: string;
|
|
30018
31082
|
};
|
|
31083
|
+
/**
|
|
31084
|
+
* Title of the interface. This is the name that will be displayed in the UI
|
|
31085
|
+
*/
|
|
31086
|
+
title: string;
|
|
31087
|
+
/**
|
|
31088
|
+
* Description of the interface. This is the description that will be displayed in the UI
|
|
31089
|
+
*/
|
|
31090
|
+
description: string;
|
|
31091
|
+
/**
|
|
31092
|
+
* URL of the icon of the interface. This is the icon that will be displayed in the UI
|
|
31093
|
+
*/
|
|
31094
|
+
iconUrl: string;
|
|
31095
|
+
/**
|
|
31096
|
+
* URL of the readme of the interface. This is the readme that will be displayed in the UI
|
|
31097
|
+
*/
|
|
31098
|
+
readmeUrl: string;
|
|
31099
|
+
/**
|
|
31100
|
+
* Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version.
|
|
31101
|
+
*/
|
|
31102
|
+
public: boolean;
|
|
30019
31103
|
}
|
|
30020
31104
|
interface Plugin {
|
|
30021
31105
|
/**
|
|
@@ -30091,6 +31175,12 @@ interface Plugin {
|
|
|
30091
31175
|
schema: {
|
|
30092
31176
|
[k: string]: any;
|
|
30093
31177
|
};
|
|
31178
|
+
/**
|
|
31179
|
+
* Optional attributes
|
|
31180
|
+
*/
|
|
31181
|
+
attributes?: {
|
|
31182
|
+
[k: string]: string;
|
|
31183
|
+
};
|
|
30094
31184
|
};
|
|
30095
31185
|
};
|
|
30096
31186
|
actions: {
|
|
@@ -30118,6 +31208,12 @@ interface Plugin {
|
|
|
30118
31208
|
[k: string]: any;
|
|
30119
31209
|
};
|
|
30120
31210
|
};
|
|
31211
|
+
/**
|
|
31212
|
+
* Optional attributes
|
|
31213
|
+
*/
|
|
31214
|
+
attributes?: {
|
|
31215
|
+
[k: string]: string;
|
|
31216
|
+
};
|
|
30121
31217
|
};
|
|
30122
31218
|
};
|
|
30123
31219
|
dependencies: {
|
|
@@ -31009,6 +32105,9 @@ declare class Client$1 {
|
|
|
31009
32105
|
readonly createIntegrationShareableId: (input: CreateIntegrationShareableIdInput) => Promise<CreateIntegrationShareableIdResponse>;
|
|
31010
32106
|
readonly deleteIntegrationShareableId: (input: DeleteIntegrationShareableIdInput) => Promise<DeleteIntegrationShareableIdResponse>;
|
|
31011
32107
|
readonly getIntegrationShareableId: (input: GetIntegrationShareableIdInput) => Promise<GetIntegrationShareableIdResponse>;
|
|
32108
|
+
readonly listBotApiKeys: (input: ListBotApiKeysInput) => Promise<ListBotApiKeysResponse>;
|
|
32109
|
+
readonly createBotApiKey: (input: CreateBotApiKeyInput) => Promise<CreateBotApiKeyResponse>;
|
|
32110
|
+
readonly deleteBotApiKey: (input: DeleteBotApiKeyInput) => Promise<DeleteBotApiKeyResponse>;
|
|
31012
32111
|
readonly listWorkspaceInvoices: (input: ListWorkspaceInvoicesInput) => Promise<ListWorkspaceInvoicesResponse>;
|
|
31013
32112
|
readonly getUpcomingInvoice: (input: GetUpcomingInvoiceInput) => Promise<GetUpcomingInvoiceResponse>;
|
|
31014
32113
|
readonly chargeWorkspaceUnpaidInvoices: (input: ChargeWorkspaceUnpaidInvoicesInput) => Promise<ChargeWorkspaceUnpaidInvoicesResponse>;
|
|
@@ -31359,6 +32458,11 @@ declare class Client extends Client$1 implements IClient {
|
|
|
31359
32458
|
updatedAt: string;
|
|
31360
32459
|
name: string;
|
|
31361
32460
|
version: string;
|
|
32461
|
+
title: string;
|
|
32462
|
+
description: string;
|
|
32463
|
+
iconUrl: string;
|
|
32464
|
+
readmeUrl: string;
|
|
32465
|
+
public: boolean;
|
|
31362
32466
|
}>;
|
|
31363
32467
|
activities: (props: {
|
|
31364
32468
|
botId: string;
|