@botpress/client 1.16.1 → 1.17.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 +11 -11
- 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 +928 -34
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4349,6 +4349,226 @@ interface GetPublicPluginByIdResponse$1 {
|
|
|
4349
4349
|
};
|
|
4350
4350
|
}
|
|
4351
4351
|
|
|
4352
|
+
interface GetDereferencedPublicPluginByIdRequestHeaders$1 {
|
|
4353
|
+
}
|
|
4354
|
+
interface GetDereferencedPublicPluginByIdRequestQuery$1 {
|
|
4355
|
+
/**
|
|
4356
|
+
* Mapping of interface aliases to integration IDs
|
|
4357
|
+
*/
|
|
4358
|
+
interfaces: {
|
|
4359
|
+
/**
|
|
4360
|
+
* integration id
|
|
4361
|
+
*/
|
|
4362
|
+
[k: string]: string;
|
|
4363
|
+
};
|
|
4364
|
+
}
|
|
4365
|
+
interface GetDereferencedPublicPluginByIdRequestParams$1 {
|
|
4366
|
+
id: string;
|
|
4367
|
+
}
|
|
4368
|
+
interface GetDereferencedPublicPluginByIdRequestBody$1 {
|
|
4369
|
+
}
|
|
4370
|
+
type GetDereferencedPublicPluginByIdInput$1 = GetDereferencedPublicPluginByIdRequestBody$1 & GetDereferencedPublicPluginByIdRequestHeaders$1 & GetDereferencedPublicPluginByIdRequestQuery$1 & GetDereferencedPublicPluginByIdRequestParams$1;
|
|
4371
|
+
interface GetDereferencedPublicPluginByIdResponse$1 {
|
|
4372
|
+
plugin: {
|
|
4373
|
+
/**
|
|
4374
|
+
* ID of the [Plugin](#schema_plugin)
|
|
4375
|
+
*/
|
|
4376
|
+
id: string;
|
|
4377
|
+
/**
|
|
4378
|
+
* Name of the [Plugin](#schema_plugin)
|
|
4379
|
+
*/
|
|
4380
|
+
name: string;
|
|
4381
|
+
/**
|
|
4382
|
+
* Version of the [Plugin](#schema_plugin)
|
|
4383
|
+
*/
|
|
4384
|
+
version: string;
|
|
4385
|
+
/**
|
|
4386
|
+
* Creation date of the [Plugin](#schema_plugin) in ISO 8601 format
|
|
4387
|
+
*/
|
|
4388
|
+
createdAt: string;
|
|
4389
|
+
/**
|
|
4390
|
+
* Updating date of the [Plugin](#schema_plugin) in ISO 8601 format
|
|
4391
|
+
*/
|
|
4392
|
+
updatedAt: string;
|
|
4393
|
+
/**
|
|
4394
|
+
* Configuration definition
|
|
4395
|
+
*/
|
|
4396
|
+
configuration: {
|
|
4397
|
+
/**
|
|
4398
|
+
* Title of the configuration
|
|
4399
|
+
*/
|
|
4400
|
+
title?: string;
|
|
4401
|
+
/**
|
|
4402
|
+
* Description of the configuration
|
|
4403
|
+
*/
|
|
4404
|
+
description?: string;
|
|
4405
|
+
/**
|
|
4406
|
+
* Schema of the configuration in the `JSON schema` format. The configuration data is validated against this `JSON schema`.
|
|
4407
|
+
*/
|
|
4408
|
+
schema: {
|
|
4409
|
+
[k: string]: any;
|
|
4410
|
+
};
|
|
4411
|
+
};
|
|
4412
|
+
states: {
|
|
4413
|
+
[k: string]: {
|
|
4414
|
+
/**
|
|
4415
|
+
* Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)
|
|
4416
|
+
*/
|
|
4417
|
+
type: "conversation" | "user" | "bot" | "task";
|
|
4418
|
+
/**
|
|
4419
|
+
* Schema of the [State](#schema_state) in the `JSON schema` format. This `JSON schema` is going to be used for validating the state data.
|
|
4420
|
+
*/
|
|
4421
|
+
schema: {
|
|
4422
|
+
[k: string]: any;
|
|
4423
|
+
};
|
|
4424
|
+
/**
|
|
4425
|
+
* Expiry of the [State](#schema_state) in milliseconds. The state will expire if it is idle for the configured value. By default, a state doesn't expire.
|
|
4426
|
+
*/
|
|
4427
|
+
expiry?: number;
|
|
4428
|
+
};
|
|
4429
|
+
};
|
|
4430
|
+
events: {
|
|
4431
|
+
/**
|
|
4432
|
+
* Event Definition
|
|
4433
|
+
*/
|
|
4434
|
+
[k: string]: {
|
|
4435
|
+
/**
|
|
4436
|
+
* Title of the event
|
|
4437
|
+
*/
|
|
4438
|
+
title?: string;
|
|
4439
|
+
/**
|
|
4440
|
+
* Description of the event
|
|
4441
|
+
*/
|
|
4442
|
+
description?: string;
|
|
4443
|
+
schema: {
|
|
4444
|
+
[k: string]: any;
|
|
4445
|
+
};
|
|
4446
|
+
/**
|
|
4447
|
+
* Optional attributes
|
|
4448
|
+
*/
|
|
4449
|
+
attributes?: {
|
|
4450
|
+
[k: string]: string;
|
|
4451
|
+
};
|
|
4452
|
+
};
|
|
4453
|
+
};
|
|
4454
|
+
actions: {
|
|
4455
|
+
/**
|
|
4456
|
+
* Action definition
|
|
4457
|
+
*/
|
|
4458
|
+
[k: string]: {
|
|
4459
|
+
/**
|
|
4460
|
+
* Title of the action
|
|
4461
|
+
*/
|
|
4462
|
+
title?: string;
|
|
4463
|
+
/**
|
|
4464
|
+
* Description of the action
|
|
4465
|
+
*/
|
|
4466
|
+
description?: string;
|
|
4467
|
+
billable?: boolean;
|
|
4468
|
+
cacheable?: boolean;
|
|
4469
|
+
input: {
|
|
4470
|
+
schema: {
|
|
4471
|
+
[k: string]: any;
|
|
4472
|
+
};
|
|
4473
|
+
};
|
|
4474
|
+
output: {
|
|
4475
|
+
schema: {
|
|
4476
|
+
[k: string]: any;
|
|
4477
|
+
};
|
|
4478
|
+
};
|
|
4479
|
+
/**
|
|
4480
|
+
* Optional attributes
|
|
4481
|
+
*/
|
|
4482
|
+
attributes?: {
|
|
4483
|
+
[k: string]: string;
|
|
4484
|
+
};
|
|
4485
|
+
};
|
|
4486
|
+
};
|
|
4487
|
+
dependencies: {
|
|
4488
|
+
interfaces: {
|
|
4489
|
+
[k: string]: {
|
|
4490
|
+
id: string;
|
|
4491
|
+
name: string;
|
|
4492
|
+
version: string;
|
|
4493
|
+
};
|
|
4494
|
+
};
|
|
4495
|
+
integrations: {
|
|
4496
|
+
[k: string]: {
|
|
4497
|
+
id: string;
|
|
4498
|
+
name: string;
|
|
4499
|
+
version: string;
|
|
4500
|
+
};
|
|
4501
|
+
};
|
|
4502
|
+
};
|
|
4503
|
+
/**
|
|
4504
|
+
* User object configuration
|
|
4505
|
+
*/
|
|
4506
|
+
user: {
|
|
4507
|
+
tags: {
|
|
4508
|
+
/**
|
|
4509
|
+
* Definition of a tag that can be provided on the object
|
|
4510
|
+
*/
|
|
4511
|
+
[k: string]: {
|
|
4512
|
+
/**
|
|
4513
|
+
* Title of the tag
|
|
4514
|
+
*/
|
|
4515
|
+
title?: string;
|
|
4516
|
+
/**
|
|
4517
|
+
* Description of the tag
|
|
4518
|
+
*/
|
|
4519
|
+
description?: string;
|
|
4520
|
+
};
|
|
4521
|
+
};
|
|
4522
|
+
};
|
|
4523
|
+
/**
|
|
4524
|
+
* Conversation object configuration
|
|
4525
|
+
*/
|
|
4526
|
+
conversation: {
|
|
4527
|
+
tags: {
|
|
4528
|
+
/**
|
|
4529
|
+
* Definition of a tag that can be provided on the object
|
|
4530
|
+
*/
|
|
4531
|
+
[k: string]: {
|
|
4532
|
+
/**
|
|
4533
|
+
* Title of the tag
|
|
4534
|
+
*/
|
|
4535
|
+
title?: string;
|
|
4536
|
+
/**
|
|
4537
|
+
* Description of the tag
|
|
4538
|
+
*/
|
|
4539
|
+
description?: string;
|
|
4540
|
+
};
|
|
4541
|
+
};
|
|
4542
|
+
};
|
|
4543
|
+
/**
|
|
4544
|
+
* Optional attributes
|
|
4545
|
+
*/
|
|
4546
|
+
attributes?: {
|
|
4547
|
+
[k: string]: string;
|
|
4548
|
+
};
|
|
4549
|
+
/**
|
|
4550
|
+
* Title of the plugin. This is the name that will be displayed in the UI
|
|
4551
|
+
*/
|
|
4552
|
+
title: string;
|
|
4553
|
+
/**
|
|
4554
|
+
* Description of the plugin. This is the description that will be displayed in the UI
|
|
4555
|
+
*/
|
|
4556
|
+
description: string;
|
|
4557
|
+
/**
|
|
4558
|
+
* URL of the icon of the plugin. This is the icon that will be displayed in the UI
|
|
4559
|
+
*/
|
|
4560
|
+
iconUrl: string;
|
|
4561
|
+
/**
|
|
4562
|
+
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
4563
|
+
*/
|
|
4564
|
+
readmeUrl: string;
|
|
4565
|
+
/**
|
|
4566
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
4567
|
+
*/
|
|
4568
|
+
public: boolean;
|
|
4569
|
+
};
|
|
4570
|
+
}
|
|
4571
|
+
|
|
4352
4572
|
interface GetPublicPluginRequestHeaders$1 {
|
|
4353
4573
|
}
|
|
4354
4574
|
interface GetPublicPluginRequestQuery$1 {
|
|
@@ -5732,6 +5952,10 @@ interface UpdateBotRequestBody$1 {
|
|
|
5732
5952
|
integrations?: {
|
|
5733
5953
|
[k: string]: {
|
|
5734
5954
|
enabled?: boolean;
|
|
5955
|
+
/**
|
|
5956
|
+
* Integration's definition ID. If defined, the record's key is treated as an alias for the integration instance.
|
|
5957
|
+
*/
|
|
5958
|
+
integrationId?: string;
|
|
5735
5959
|
/**
|
|
5736
5960
|
* Integration's configuration type. Set to default if null.
|
|
5737
5961
|
*/
|
|
@@ -6237,6 +6461,7 @@ interface ListBotsResponse$1 {
|
|
|
6237
6461
|
interface GetBotRequestHeaders$1 {
|
|
6238
6462
|
}
|
|
6239
6463
|
interface GetBotRequestQuery$1 {
|
|
6464
|
+
shouldMergePlugins?: boolean;
|
|
6240
6465
|
}
|
|
6241
6466
|
interface GetBotRequestParams$1 {
|
|
6242
6467
|
id: string;
|
|
@@ -12431,18 +12656,26 @@ interface GetPluginResponse$1 {
|
|
|
12431
12656
|
};
|
|
12432
12657
|
}
|
|
12433
12658
|
|
|
12434
|
-
interface
|
|
12659
|
+
interface GetDereferencedPluginRequestHeaders$1 {
|
|
12435
12660
|
}
|
|
12436
|
-
interface
|
|
12661
|
+
interface GetDereferencedPluginRequestQuery$1 {
|
|
12662
|
+
/**
|
|
12663
|
+
* Mapping of interface aliases to integration IDs
|
|
12664
|
+
*/
|
|
12665
|
+
interfaces: {
|
|
12666
|
+
/**
|
|
12667
|
+
* integration id
|
|
12668
|
+
*/
|
|
12669
|
+
[k: string]: string;
|
|
12670
|
+
};
|
|
12437
12671
|
}
|
|
12438
|
-
interface
|
|
12439
|
-
|
|
12440
|
-
version: string;
|
|
12672
|
+
interface GetDereferencedPluginRequestParams$1 {
|
|
12673
|
+
id: string;
|
|
12441
12674
|
}
|
|
12442
|
-
interface
|
|
12675
|
+
interface GetDereferencedPluginRequestBody$1 {
|
|
12443
12676
|
}
|
|
12444
|
-
type
|
|
12445
|
-
interface
|
|
12677
|
+
type GetDereferencedPluginInput$1 = GetDereferencedPluginRequestBody$1 & GetDereferencedPluginRequestHeaders$1 & GetDereferencedPluginRequestQuery$1 & GetDereferencedPluginRequestParams$1;
|
|
12678
|
+
interface GetDereferencedPluginResponse$1 {
|
|
12446
12679
|
plugin: {
|
|
12447
12680
|
/**
|
|
12448
12681
|
* ID of the [Plugin](#schema_plugin)
|
|
@@ -12643,24 +12876,236 @@ interface GetPluginByNameResponse$1 {
|
|
|
12643
12876
|
};
|
|
12644
12877
|
}
|
|
12645
12878
|
|
|
12646
|
-
interface
|
|
12879
|
+
interface GetPluginByNameRequestHeaders$1 {
|
|
12647
12880
|
}
|
|
12648
|
-
interface
|
|
12881
|
+
interface GetPluginByNameRequestQuery$1 {
|
|
12649
12882
|
}
|
|
12650
|
-
interface
|
|
12651
|
-
|
|
12883
|
+
interface GetPluginByNameRequestParams$1 {
|
|
12884
|
+
name: string;
|
|
12885
|
+
version: string;
|
|
12652
12886
|
}
|
|
12653
|
-
interface
|
|
12654
|
-
|
|
12655
|
-
|
|
12656
|
-
|
|
12657
|
-
|
|
12887
|
+
interface GetPluginByNameRequestBody$1 {
|
|
12888
|
+
}
|
|
12889
|
+
type GetPluginByNameInput$1 = GetPluginByNameRequestBody$1 & GetPluginByNameRequestHeaders$1 & GetPluginByNameRequestQuery$1 & GetPluginByNameRequestParams$1;
|
|
12890
|
+
interface GetPluginByNameResponse$1 {
|
|
12891
|
+
plugin: {
|
|
12658
12892
|
/**
|
|
12659
|
-
*
|
|
12893
|
+
* ID of the [Plugin](#schema_plugin)
|
|
12660
12894
|
*/
|
|
12661
|
-
|
|
12895
|
+
id: string;
|
|
12662
12896
|
/**
|
|
12663
|
-
*
|
|
12897
|
+
* Name of the [Plugin](#schema_plugin)
|
|
12898
|
+
*/
|
|
12899
|
+
name: string;
|
|
12900
|
+
/**
|
|
12901
|
+
* Version of the [Plugin](#schema_plugin)
|
|
12902
|
+
*/
|
|
12903
|
+
version: string;
|
|
12904
|
+
/**
|
|
12905
|
+
* Creation date of the [Plugin](#schema_plugin) in ISO 8601 format
|
|
12906
|
+
*/
|
|
12907
|
+
createdAt: string;
|
|
12908
|
+
/**
|
|
12909
|
+
* Updating date of the [Plugin](#schema_plugin) in ISO 8601 format
|
|
12910
|
+
*/
|
|
12911
|
+
updatedAt: string;
|
|
12912
|
+
/**
|
|
12913
|
+
* Configuration definition
|
|
12914
|
+
*/
|
|
12915
|
+
configuration: {
|
|
12916
|
+
/**
|
|
12917
|
+
* Title of the configuration
|
|
12918
|
+
*/
|
|
12919
|
+
title?: string;
|
|
12920
|
+
/**
|
|
12921
|
+
* Description of the configuration
|
|
12922
|
+
*/
|
|
12923
|
+
description?: string;
|
|
12924
|
+
/**
|
|
12925
|
+
* Schema of the configuration in the `JSON schema` format. The configuration data is validated against this `JSON schema`.
|
|
12926
|
+
*/
|
|
12927
|
+
schema: {
|
|
12928
|
+
[k: string]: any;
|
|
12929
|
+
};
|
|
12930
|
+
};
|
|
12931
|
+
states: {
|
|
12932
|
+
[k: string]: {
|
|
12933
|
+
/**
|
|
12934
|
+
* Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)
|
|
12935
|
+
*/
|
|
12936
|
+
type: "conversation" | "user" | "bot" | "task";
|
|
12937
|
+
/**
|
|
12938
|
+
* Schema of the [State](#schema_state) in the `JSON schema` format. This `JSON schema` is going to be used for validating the state data.
|
|
12939
|
+
*/
|
|
12940
|
+
schema: {
|
|
12941
|
+
[k: string]: any;
|
|
12942
|
+
};
|
|
12943
|
+
/**
|
|
12944
|
+
* Expiry of the [State](#schema_state) in milliseconds. The state will expire if it is idle for the configured value. By default, a state doesn't expire.
|
|
12945
|
+
*/
|
|
12946
|
+
expiry?: number;
|
|
12947
|
+
};
|
|
12948
|
+
};
|
|
12949
|
+
events: {
|
|
12950
|
+
/**
|
|
12951
|
+
* Event Definition
|
|
12952
|
+
*/
|
|
12953
|
+
[k: string]: {
|
|
12954
|
+
/**
|
|
12955
|
+
* Title of the event
|
|
12956
|
+
*/
|
|
12957
|
+
title?: string;
|
|
12958
|
+
/**
|
|
12959
|
+
* Description of the event
|
|
12960
|
+
*/
|
|
12961
|
+
description?: string;
|
|
12962
|
+
schema: {
|
|
12963
|
+
[k: string]: any;
|
|
12964
|
+
};
|
|
12965
|
+
/**
|
|
12966
|
+
* Optional attributes
|
|
12967
|
+
*/
|
|
12968
|
+
attributes?: {
|
|
12969
|
+
[k: string]: string;
|
|
12970
|
+
};
|
|
12971
|
+
};
|
|
12972
|
+
};
|
|
12973
|
+
actions: {
|
|
12974
|
+
/**
|
|
12975
|
+
* Action definition
|
|
12976
|
+
*/
|
|
12977
|
+
[k: string]: {
|
|
12978
|
+
/**
|
|
12979
|
+
* Title of the action
|
|
12980
|
+
*/
|
|
12981
|
+
title?: string;
|
|
12982
|
+
/**
|
|
12983
|
+
* Description of the action
|
|
12984
|
+
*/
|
|
12985
|
+
description?: string;
|
|
12986
|
+
billable?: boolean;
|
|
12987
|
+
cacheable?: boolean;
|
|
12988
|
+
input: {
|
|
12989
|
+
schema: {
|
|
12990
|
+
[k: string]: any;
|
|
12991
|
+
};
|
|
12992
|
+
};
|
|
12993
|
+
output: {
|
|
12994
|
+
schema: {
|
|
12995
|
+
[k: string]: any;
|
|
12996
|
+
};
|
|
12997
|
+
};
|
|
12998
|
+
/**
|
|
12999
|
+
* Optional attributes
|
|
13000
|
+
*/
|
|
13001
|
+
attributes?: {
|
|
13002
|
+
[k: string]: string;
|
|
13003
|
+
};
|
|
13004
|
+
};
|
|
13005
|
+
};
|
|
13006
|
+
dependencies: {
|
|
13007
|
+
interfaces: {
|
|
13008
|
+
[k: string]: {
|
|
13009
|
+
id: string;
|
|
13010
|
+
name: string;
|
|
13011
|
+
version: string;
|
|
13012
|
+
};
|
|
13013
|
+
};
|
|
13014
|
+
integrations: {
|
|
13015
|
+
[k: string]: {
|
|
13016
|
+
id: string;
|
|
13017
|
+
name: string;
|
|
13018
|
+
version: string;
|
|
13019
|
+
};
|
|
13020
|
+
};
|
|
13021
|
+
};
|
|
13022
|
+
/**
|
|
13023
|
+
* User object configuration
|
|
13024
|
+
*/
|
|
13025
|
+
user: {
|
|
13026
|
+
tags: {
|
|
13027
|
+
/**
|
|
13028
|
+
* Definition of a tag that can be provided on the object
|
|
13029
|
+
*/
|
|
13030
|
+
[k: string]: {
|
|
13031
|
+
/**
|
|
13032
|
+
* Title of the tag
|
|
13033
|
+
*/
|
|
13034
|
+
title?: string;
|
|
13035
|
+
/**
|
|
13036
|
+
* Description of the tag
|
|
13037
|
+
*/
|
|
13038
|
+
description?: string;
|
|
13039
|
+
};
|
|
13040
|
+
};
|
|
13041
|
+
};
|
|
13042
|
+
/**
|
|
13043
|
+
* Conversation object configuration
|
|
13044
|
+
*/
|
|
13045
|
+
conversation: {
|
|
13046
|
+
tags: {
|
|
13047
|
+
/**
|
|
13048
|
+
* Definition of a tag that can be provided on the object
|
|
13049
|
+
*/
|
|
13050
|
+
[k: string]: {
|
|
13051
|
+
/**
|
|
13052
|
+
* Title of the tag
|
|
13053
|
+
*/
|
|
13054
|
+
title?: string;
|
|
13055
|
+
/**
|
|
13056
|
+
* Description of the tag
|
|
13057
|
+
*/
|
|
13058
|
+
description?: string;
|
|
13059
|
+
};
|
|
13060
|
+
};
|
|
13061
|
+
};
|
|
13062
|
+
/**
|
|
13063
|
+
* Optional attributes
|
|
13064
|
+
*/
|
|
13065
|
+
attributes?: {
|
|
13066
|
+
[k: string]: string;
|
|
13067
|
+
};
|
|
13068
|
+
/**
|
|
13069
|
+
* Title of the plugin. This is the name that will be displayed in the UI
|
|
13070
|
+
*/
|
|
13071
|
+
title: string;
|
|
13072
|
+
/**
|
|
13073
|
+
* Description of the plugin. This is the description that will be displayed in the UI
|
|
13074
|
+
*/
|
|
13075
|
+
description: string;
|
|
13076
|
+
/**
|
|
13077
|
+
* URL of the icon of the plugin. This is the icon that will be displayed in the UI
|
|
13078
|
+
*/
|
|
13079
|
+
iconUrl: string;
|
|
13080
|
+
/**
|
|
13081
|
+
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
13082
|
+
*/
|
|
13083
|
+
readmeUrl: string;
|
|
13084
|
+
/**
|
|
13085
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
13086
|
+
*/
|
|
13087
|
+
public: boolean;
|
|
13088
|
+
};
|
|
13089
|
+
}
|
|
13090
|
+
|
|
13091
|
+
interface UpdatePluginRequestHeaders$1 {
|
|
13092
|
+
}
|
|
13093
|
+
interface UpdatePluginRequestQuery$1 {
|
|
13094
|
+
}
|
|
13095
|
+
interface UpdatePluginRequestParams$1 {
|
|
13096
|
+
id: string;
|
|
13097
|
+
}
|
|
13098
|
+
interface UpdatePluginRequestBody$1 {
|
|
13099
|
+
/**
|
|
13100
|
+
* Configuration definition
|
|
13101
|
+
*/
|
|
13102
|
+
configuration?: {
|
|
13103
|
+
/**
|
|
13104
|
+
* Title of the configuration
|
|
13105
|
+
*/
|
|
13106
|
+
title?: string;
|
|
13107
|
+
/**
|
|
13108
|
+
* Description of the configuration
|
|
12664
13109
|
*/
|
|
12665
13110
|
description?: string;
|
|
12666
13111
|
/**
|
|
@@ -13369,6 +13814,7 @@ declare class Client$7 {
|
|
|
13369
13814
|
readonly getPublicIntegration: (input: GetPublicIntegrationInput$1) => Promise<GetPublicIntegrationResponse$1>;
|
|
13370
13815
|
readonly listPublicPlugins: (input: ListPublicPluginsInput$1) => Promise<ListPublicPluginsResponse$1>;
|
|
13371
13816
|
readonly getPublicPluginById: (input: GetPublicPluginByIdInput$1) => Promise<GetPublicPluginByIdResponse$1>;
|
|
13817
|
+
readonly getDereferencedPublicPluginById: (input: GetDereferencedPublicPluginByIdInput$1) => Promise<GetDereferencedPublicPluginByIdResponse$1>;
|
|
13372
13818
|
readonly getPublicPlugin: (input: GetPublicPluginInput$1) => Promise<GetPublicPluginResponse$1>;
|
|
13373
13819
|
readonly getPublicPluginCode: (input: GetPublicPluginCodeInput$1) => Promise<GetPublicPluginCodeResponse$1>;
|
|
13374
13820
|
readonly listPublicInterfaces: (input: ListPublicInterfacesInput$1) => Promise<ListPublicInterfacesResponse$1>;
|
|
@@ -13444,6 +13890,7 @@ declare class Client$7 {
|
|
|
13444
13890
|
readonly listInterfaces: (input: ListInterfacesInput$1) => Promise<ListInterfacesResponse$1>;
|
|
13445
13891
|
readonly createPlugin: (input: CreatePluginInput$1) => Promise<CreatePluginResponse$1>;
|
|
13446
13892
|
readonly getPlugin: (input: GetPluginInput$1) => Promise<GetPluginResponse$1>;
|
|
13893
|
+
readonly getDereferencedPlugin: (input: GetDereferencedPluginInput$1) => Promise<GetDereferencedPluginResponse$1>;
|
|
13447
13894
|
readonly getPluginByName: (input: GetPluginByNameInput$1) => Promise<GetPluginByNameResponse$1>;
|
|
13448
13895
|
readonly updatePlugin: (input: UpdatePluginInput$1) => Promise<UpdatePluginResponse$1>;
|
|
13449
13896
|
readonly deletePlugin: (input: DeletePluginInput$1) => Promise<DeletePluginResponse$1>;
|
|
@@ -20322,9 +20769,226 @@ interface ListPublicPluginsResponse {
|
|
|
20322
20769
|
*/
|
|
20323
20770
|
name: string;
|
|
20324
20771
|
/**
|
|
20325
|
-
* Version of the [Plugin](#schema_plugin)
|
|
20772
|
+
* Version of the [Plugin](#schema_plugin)
|
|
20773
|
+
*/
|
|
20774
|
+
version: string;
|
|
20775
|
+
/**
|
|
20776
|
+
* Title of the plugin. This is the name that will be displayed in the UI
|
|
20777
|
+
*/
|
|
20778
|
+
title: string;
|
|
20779
|
+
/**
|
|
20780
|
+
* Description of the plugin. This is the description that will be displayed in the UI
|
|
20781
|
+
*/
|
|
20782
|
+
description: string;
|
|
20783
|
+
/**
|
|
20784
|
+
* URL of the icon of the plugin. This is the icon that will be displayed in the UI
|
|
20785
|
+
*/
|
|
20786
|
+
iconUrl: string;
|
|
20787
|
+
/**
|
|
20788
|
+
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
20789
|
+
*/
|
|
20790
|
+
readmeUrl: string;
|
|
20791
|
+
/**
|
|
20792
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
20793
|
+
*/
|
|
20794
|
+
public: boolean;
|
|
20795
|
+
}[];
|
|
20796
|
+
meta: {
|
|
20797
|
+
/**
|
|
20798
|
+
* 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.
|
|
20799
|
+
*/
|
|
20800
|
+
nextToken?: string;
|
|
20801
|
+
};
|
|
20802
|
+
}
|
|
20803
|
+
|
|
20804
|
+
interface GetPublicPluginByIdRequestHeaders {
|
|
20805
|
+
}
|
|
20806
|
+
interface GetPublicPluginByIdRequestQuery {
|
|
20807
|
+
}
|
|
20808
|
+
interface GetPublicPluginByIdRequestParams {
|
|
20809
|
+
id: string;
|
|
20810
|
+
}
|
|
20811
|
+
interface GetPublicPluginByIdRequestBody {
|
|
20812
|
+
}
|
|
20813
|
+
type GetPublicPluginByIdInput = GetPublicPluginByIdRequestBody & GetPublicPluginByIdRequestHeaders & GetPublicPluginByIdRequestQuery & GetPublicPluginByIdRequestParams;
|
|
20814
|
+
interface GetPublicPluginByIdResponse {
|
|
20815
|
+
plugin: {
|
|
20816
|
+
/**
|
|
20817
|
+
* ID of the [Plugin](#schema_plugin)
|
|
20818
|
+
*/
|
|
20819
|
+
id: string;
|
|
20820
|
+
/**
|
|
20821
|
+
* Name of the [Plugin](#schema_plugin)
|
|
20822
|
+
*/
|
|
20823
|
+
name: string;
|
|
20824
|
+
/**
|
|
20825
|
+
* Version of the [Plugin](#schema_plugin)
|
|
20826
|
+
*/
|
|
20827
|
+
version: string;
|
|
20828
|
+
/**
|
|
20829
|
+
* Creation date of the [Plugin](#schema_plugin) in ISO 8601 format
|
|
20830
|
+
*/
|
|
20831
|
+
createdAt: string;
|
|
20832
|
+
/**
|
|
20833
|
+
* Updating date of the [Plugin](#schema_plugin) in ISO 8601 format
|
|
20834
|
+
*/
|
|
20835
|
+
updatedAt: string;
|
|
20836
|
+
/**
|
|
20837
|
+
* Configuration definition
|
|
20838
|
+
*/
|
|
20839
|
+
configuration: {
|
|
20840
|
+
/**
|
|
20841
|
+
* Title of the configuration
|
|
20842
|
+
*/
|
|
20843
|
+
title?: string;
|
|
20844
|
+
/**
|
|
20845
|
+
* Description of the configuration
|
|
20846
|
+
*/
|
|
20847
|
+
description?: string;
|
|
20848
|
+
/**
|
|
20849
|
+
* Schema of the configuration in the `JSON schema` format. The configuration data is validated against this `JSON schema`.
|
|
20850
|
+
*/
|
|
20851
|
+
schema: {
|
|
20852
|
+
[k: string]: any;
|
|
20853
|
+
};
|
|
20854
|
+
};
|
|
20855
|
+
states: {
|
|
20856
|
+
[k: string]: {
|
|
20857
|
+
/**
|
|
20858
|
+
* Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)
|
|
20859
|
+
*/
|
|
20860
|
+
type: "conversation" | "user" | "bot" | "task";
|
|
20861
|
+
/**
|
|
20862
|
+
* Schema of the [State](#schema_state) in the `JSON schema` format. This `JSON schema` is going to be used for validating the state data.
|
|
20863
|
+
*/
|
|
20864
|
+
schema: {
|
|
20865
|
+
[k: string]: any;
|
|
20866
|
+
};
|
|
20867
|
+
/**
|
|
20868
|
+
* Expiry of the [State](#schema_state) in milliseconds. The state will expire if it is idle for the configured value. By default, a state doesn't expire.
|
|
20869
|
+
*/
|
|
20870
|
+
expiry?: number;
|
|
20871
|
+
};
|
|
20872
|
+
};
|
|
20873
|
+
events: {
|
|
20874
|
+
/**
|
|
20875
|
+
* Event Definition
|
|
20876
|
+
*/
|
|
20877
|
+
[k: string]: {
|
|
20878
|
+
/**
|
|
20879
|
+
* Title of the event
|
|
20880
|
+
*/
|
|
20881
|
+
title?: string;
|
|
20882
|
+
/**
|
|
20883
|
+
* Description of the event
|
|
20884
|
+
*/
|
|
20885
|
+
description?: string;
|
|
20886
|
+
schema: {
|
|
20887
|
+
[k: string]: any;
|
|
20888
|
+
};
|
|
20889
|
+
/**
|
|
20890
|
+
* Optional attributes
|
|
20891
|
+
*/
|
|
20892
|
+
attributes?: {
|
|
20893
|
+
[k: string]: string;
|
|
20894
|
+
};
|
|
20895
|
+
};
|
|
20896
|
+
};
|
|
20897
|
+
actions: {
|
|
20898
|
+
/**
|
|
20899
|
+
* Action definition
|
|
20900
|
+
*/
|
|
20901
|
+
[k: string]: {
|
|
20902
|
+
/**
|
|
20903
|
+
* Title of the action
|
|
20904
|
+
*/
|
|
20905
|
+
title?: string;
|
|
20906
|
+
/**
|
|
20907
|
+
* Description of the action
|
|
20908
|
+
*/
|
|
20909
|
+
description?: string;
|
|
20910
|
+
billable?: boolean;
|
|
20911
|
+
cacheable?: boolean;
|
|
20912
|
+
input: {
|
|
20913
|
+
schema: {
|
|
20914
|
+
[k: string]: any;
|
|
20915
|
+
};
|
|
20916
|
+
};
|
|
20917
|
+
output: {
|
|
20918
|
+
schema: {
|
|
20919
|
+
[k: string]: any;
|
|
20920
|
+
};
|
|
20921
|
+
};
|
|
20922
|
+
/**
|
|
20923
|
+
* Optional attributes
|
|
20924
|
+
*/
|
|
20925
|
+
attributes?: {
|
|
20926
|
+
[k: string]: string;
|
|
20927
|
+
};
|
|
20928
|
+
};
|
|
20929
|
+
};
|
|
20930
|
+
dependencies: {
|
|
20931
|
+
interfaces: {
|
|
20932
|
+
[k: string]: {
|
|
20933
|
+
id: string;
|
|
20934
|
+
name: string;
|
|
20935
|
+
version: string;
|
|
20936
|
+
};
|
|
20937
|
+
};
|
|
20938
|
+
integrations: {
|
|
20939
|
+
[k: string]: {
|
|
20940
|
+
id: string;
|
|
20941
|
+
name: string;
|
|
20942
|
+
version: string;
|
|
20943
|
+
};
|
|
20944
|
+
};
|
|
20945
|
+
};
|
|
20946
|
+
/**
|
|
20947
|
+
* User object configuration
|
|
20948
|
+
*/
|
|
20949
|
+
user: {
|
|
20950
|
+
tags: {
|
|
20951
|
+
/**
|
|
20952
|
+
* Definition of a tag that can be provided on the object
|
|
20953
|
+
*/
|
|
20954
|
+
[k: string]: {
|
|
20955
|
+
/**
|
|
20956
|
+
* Title of the tag
|
|
20957
|
+
*/
|
|
20958
|
+
title?: string;
|
|
20959
|
+
/**
|
|
20960
|
+
* Description of the tag
|
|
20961
|
+
*/
|
|
20962
|
+
description?: string;
|
|
20963
|
+
};
|
|
20964
|
+
};
|
|
20965
|
+
};
|
|
20966
|
+
/**
|
|
20967
|
+
* Conversation object configuration
|
|
20968
|
+
*/
|
|
20969
|
+
conversation: {
|
|
20970
|
+
tags: {
|
|
20971
|
+
/**
|
|
20972
|
+
* Definition of a tag that can be provided on the object
|
|
20973
|
+
*/
|
|
20974
|
+
[k: string]: {
|
|
20975
|
+
/**
|
|
20976
|
+
* Title of the tag
|
|
20977
|
+
*/
|
|
20978
|
+
title?: string;
|
|
20979
|
+
/**
|
|
20980
|
+
* Description of the tag
|
|
20981
|
+
*/
|
|
20982
|
+
description?: string;
|
|
20983
|
+
};
|
|
20984
|
+
};
|
|
20985
|
+
};
|
|
20986
|
+
/**
|
|
20987
|
+
* Optional attributes
|
|
20326
20988
|
*/
|
|
20327
|
-
|
|
20989
|
+
attributes?: {
|
|
20990
|
+
[k: string]: string;
|
|
20991
|
+
};
|
|
20328
20992
|
/**
|
|
20329
20993
|
* Title of the plugin. This is the name that will be displayed in the UI
|
|
20330
20994
|
*/
|
|
@@ -20345,26 +21009,29 @@ interface ListPublicPluginsResponse {
|
|
|
20345
21009
|
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
20346
21010
|
*/
|
|
20347
21011
|
public: boolean;
|
|
20348
|
-
}[];
|
|
20349
|
-
meta: {
|
|
20350
|
-
/**
|
|
20351
|
-
* 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.
|
|
20352
|
-
*/
|
|
20353
|
-
nextToken?: string;
|
|
20354
21012
|
};
|
|
20355
21013
|
}
|
|
20356
21014
|
|
|
20357
|
-
interface
|
|
21015
|
+
interface GetDereferencedPublicPluginByIdRequestHeaders {
|
|
20358
21016
|
}
|
|
20359
|
-
interface
|
|
21017
|
+
interface GetDereferencedPublicPluginByIdRequestQuery {
|
|
21018
|
+
/**
|
|
21019
|
+
* Mapping of interface aliases to integration IDs
|
|
21020
|
+
*/
|
|
21021
|
+
interfaces: {
|
|
21022
|
+
/**
|
|
21023
|
+
* integration id
|
|
21024
|
+
*/
|
|
21025
|
+
[k: string]: string;
|
|
21026
|
+
};
|
|
20360
21027
|
}
|
|
20361
|
-
interface
|
|
21028
|
+
interface GetDereferencedPublicPluginByIdRequestParams {
|
|
20362
21029
|
id: string;
|
|
20363
21030
|
}
|
|
20364
|
-
interface
|
|
21031
|
+
interface GetDereferencedPublicPluginByIdRequestBody {
|
|
20365
21032
|
}
|
|
20366
|
-
type
|
|
20367
|
-
interface
|
|
21033
|
+
type GetDereferencedPublicPluginByIdInput = GetDereferencedPublicPluginByIdRequestBody & GetDereferencedPublicPluginByIdRequestHeaders & GetDereferencedPublicPluginByIdRequestQuery & GetDereferencedPublicPluginByIdRequestParams;
|
|
21034
|
+
interface GetDereferencedPublicPluginByIdResponse {
|
|
20368
21035
|
plugin: {
|
|
20369
21036
|
/**
|
|
20370
21037
|
* ID of the [Plugin](#schema_plugin)
|
|
@@ -21948,6 +22615,10 @@ interface UpdateBotRequestBody {
|
|
|
21948
22615
|
integrations?: {
|
|
21949
22616
|
[k: string]: {
|
|
21950
22617
|
enabled?: boolean;
|
|
22618
|
+
/**
|
|
22619
|
+
* Integration's definition ID. If defined, the record's key is treated as an alias for the integration instance.
|
|
22620
|
+
*/
|
|
22621
|
+
integrationId?: string;
|
|
21951
22622
|
/**
|
|
21952
22623
|
* Integration's configuration type. Set to default if null.
|
|
21953
22624
|
*/
|
|
@@ -22453,6 +23124,7 @@ interface ListBotsResponse {
|
|
|
22453
23124
|
interface GetBotRequestHeaders {
|
|
22454
23125
|
}
|
|
22455
23126
|
interface GetBotRequestQuery {
|
|
23127
|
+
shouldMergePlugins?: boolean;
|
|
22456
23128
|
}
|
|
22457
23129
|
interface GetBotRequestParams {
|
|
22458
23130
|
id: string;
|
|
@@ -28648,6 +29320,226 @@ interface GetPluginResponse {
|
|
|
28648
29320
|
};
|
|
28649
29321
|
}
|
|
28650
29322
|
|
|
29323
|
+
interface GetDereferencedPluginRequestHeaders {
|
|
29324
|
+
}
|
|
29325
|
+
interface GetDereferencedPluginRequestQuery {
|
|
29326
|
+
/**
|
|
29327
|
+
* Mapping of interface aliases to integration IDs
|
|
29328
|
+
*/
|
|
29329
|
+
interfaces: {
|
|
29330
|
+
/**
|
|
29331
|
+
* integration id
|
|
29332
|
+
*/
|
|
29333
|
+
[k: string]: string;
|
|
29334
|
+
};
|
|
29335
|
+
}
|
|
29336
|
+
interface GetDereferencedPluginRequestParams {
|
|
29337
|
+
id: string;
|
|
29338
|
+
}
|
|
29339
|
+
interface GetDereferencedPluginRequestBody {
|
|
29340
|
+
}
|
|
29341
|
+
type GetDereferencedPluginInput = GetDereferencedPluginRequestBody & GetDereferencedPluginRequestHeaders & GetDereferencedPluginRequestQuery & GetDereferencedPluginRequestParams;
|
|
29342
|
+
interface GetDereferencedPluginResponse {
|
|
29343
|
+
plugin: {
|
|
29344
|
+
/**
|
|
29345
|
+
* ID of the [Plugin](#schema_plugin)
|
|
29346
|
+
*/
|
|
29347
|
+
id: string;
|
|
29348
|
+
/**
|
|
29349
|
+
* Name of the [Plugin](#schema_plugin)
|
|
29350
|
+
*/
|
|
29351
|
+
name: string;
|
|
29352
|
+
/**
|
|
29353
|
+
* Version of the [Plugin](#schema_plugin)
|
|
29354
|
+
*/
|
|
29355
|
+
version: string;
|
|
29356
|
+
/**
|
|
29357
|
+
* Creation date of the [Plugin](#schema_plugin) in ISO 8601 format
|
|
29358
|
+
*/
|
|
29359
|
+
createdAt: string;
|
|
29360
|
+
/**
|
|
29361
|
+
* Updating date of the [Plugin](#schema_plugin) in ISO 8601 format
|
|
29362
|
+
*/
|
|
29363
|
+
updatedAt: string;
|
|
29364
|
+
/**
|
|
29365
|
+
* Configuration definition
|
|
29366
|
+
*/
|
|
29367
|
+
configuration: {
|
|
29368
|
+
/**
|
|
29369
|
+
* Title of the configuration
|
|
29370
|
+
*/
|
|
29371
|
+
title?: string;
|
|
29372
|
+
/**
|
|
29373
|
+
* Description of the configuration
|
|
29374
|
+
*/
|
|
29375
|
+
description?: string;
|
|
29376
|
+
/**
|
|
29377
|
+
* Schema of the configuration in the `JSON schema` format. The configuration data is validated against this `JSON schema`.
|
|
29378
|
+
*/
|
|
29379
|
+
schema: {
|
|
29380
|
+
[k: string]: any;
|
|
29381
|
+
};
|
|
29382
|
+
};
|
|
29383
|
+
states: {
|
|
29384
|
+
[k: string]: {
|
|
29385
|
+
/**
|
|
29386
|
+
* Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)
|
|
29387
|
+
*/
|
|
29388
|
+
type: "conversation" | "user" | "bot" | "task";
|
|
29389
|
+
/**
|
|
29390
|
+
* Schema of the [State](#schema_state) in the `JSON schema` format. This `JSON schema` is going to be used for validating the state data.
|
|
29391
|
+
*/
|
|
29392
|
+
schema: {
|
|
29393
|
+
[k: string]: any;
|
|
29394
|
+
};
|
|
29395
|
+
/**
|
|
29396
|
+
* Expiry of the [State](#schema_state) in milliseconds. The state will expire if it is idle for the configured value. By default, a state doesn't expire.
|
|
29397
|
+
*/
|
|
29398
|
+
expiry?: number;
|
|
29399
|
+
};
|
|
29400
|
+
};
|
|
29401
|
+
events: {
|
|
29402
|
+
/**
|
|
29403
|
+
* Event Definition
|
|
29404
|
+
*/
|
|
29405
|
+
[k: string]: {
|
|
29406
|
+
/**
|
|
29407
|
+
* Title of the event
|
|
29408
|
+
*/
|
|
29409
|
+
title?: string;
|
|
29410
|
+
/**
|
|
29411
|
+
* Description of the event
|
|
29412
|
+
*/
|
|
29413
|
+
description?: string;
|
|
29414
|
+
schema: {
|
|
29415
|
+
[k: string]: any;
|
|
29416
|
+
};
|
|
29417
|
+
/**
|
|
29418
|
+
* Optional attributes
|
|
29419
|
+
*/
|
|
29420
|
+
attributes?: {
|
|
29421
|
+
[k: string]: string;
|
|
29422
|
+
};
|
|
29423
|
+
};
|
|
29424
|
+
};
|
|
29425
|
+
actions: {
|
|
29426
|
+
/**
|
|
29427
|
+
* Action definition
|
|
29428
|
+
*/
|
|
29429
|
+
[k: string]: {
|
|
29430
|
+
/**
|
|
29431
|
+
* Title of the action
|
|
29432
|
+
*/
|
|
29433
|
+
title?: string;
|
|
29434
|
+
/**
|
|
29435
|
+
* Description of the action
|
|
29436
|
+
*/
|
|
29437
|
+
description?: string;
|
|
29438
|
+
billable?: boolean;
|
|
29439
|
+
cacheable?: boolean;
|
|
29440
|
+
input: {
|
|
29441
|
+
schema: {
|
|
29442
|
+
[k: string]: any;
|
|
29443
|
+
};
|
|
29444
|
+
};
|
|
29445
|
+
output: {
|
|
29446
|
+
schema: {
|
|
29447
|
+
[k: string]: any;
|
|
29448
|
+
};
|
|
29449
|
+
};
|
|
29450
|
+
/**
|
|
29451
|
+
* Optional attributes
|
|
29452
|
+
*/
|
|
29453
|
+
attributes?: {
|
|
29454
|
+
[k: string]: string;
|
|
29455
|
+
};
|
|
29456
|
+
};
|
|
29457
|
+
};
|
|
29458
|
+
dependencies: {
|
|
29459
|
+
interfaces: {
|
|
29460
|
+
[k: string]: {
|
|
29461
|
+
id: string;
|
|
29462
|
+
name: string;
|
|
29463
|
+
version: string;
|
|
29464
|
+
};
|
|
29465
|
+
};
|
|
29466
|
+
integrations: {
|
|
29467
|
+
[k: string]: {
|
|
29468
|
+
id: string;
|
|
29469
|
+
name: string;
|
|
29470
|
+
version: string;
|
|
29471
|
+
};
|
|
29472
|
+
};
|
|
29473
|
+
};
|
|
29474
|
+
/**
|
|
29475
|
+
* User object configuration
|
|
29476
|
+
*/
|
|
29477
|
+
user: {
|
|
29478
|
+
tags: {
|
|
29479
|
+
/**
|
|
29480
|
+
* Definition of a tag that can be provided on the object
|
|
29481
|
+
*/
|
|
29482
|
+
[k: string]: {
|
|
29483
|
+
/**
|
|
29484
|
+
* Title of the tag
|
|
29485
|
+
*/
|
|
29486
|
+
title?: string;
|
|
29487
|
+
/**
|
|
29488
|
+
* Description of the tag
|
|
29489
|
+
*/
|
|
29490
|
+
description?: string;
|
|
29491
|
+
};
|
|
29492
|
+
};
|
|
29493
|
+
};
|
|
29494
|
+
/**
|
|
29495
|
+
* Conversation object configuration
|
|
29496
|
+
*/
|
|
29497
|
+
conversation: {
|
|
29498
|
+
tags: {
|
|
29499
|
+
/**
|
|
29500
|
+
* Definition of a tag that can be provided on the object
|
|
29501
|
+
*/
|
|
29502
|
+
[k: string]: {
|
|
29503
|
+
/**
|
|
29504
|
+
* Title of the tag
|
|
29505
|
+
*/
|
|
29506
|
+
title?: string;
|
|
29507
|
+
/**
|
|
29508
|
+
* Description of the tag
|
|
29509
|
+
*/
|
|
29510
|
+
description?: string;
|
|
29511
|
+
};
|
|
29512
|
+
};
|
|
29513
|
+
};
|
|
29514
|
+
/**
|
|
29515
|
+
* Optional attributes
|
|
29516
|
+
*/
|
|
29517
|
+
attributes?: {
|
|
29518
|
+
[k: string]: string;
|
|
29519
|
+
};
|
|
29520
|
+
/**
|
|
29521
|
+
* Title of the plugin. This is the name that will be displayed in the UI
|
|
29522
|
+
*/
|
|
29523
|
+
title: string;
|
|
29524
|
+
/**
|
|
29525
|
+
* Description of the plugin. This is the description that will be displayed in the UI
|
|
29526
|
+
*/
|
|
29527
|
+
description: string;
|
|
29528
|
+
/**
|
|
29529
|
+
* URL of the icon of the plugin. This is the icon that will be displayed in the UI
|
|
29530
|
+
*/
|
|
29531
|
+
iconUrl: string;
|
|
29532
|
+
/**
|
|
29533
|
+
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
29534
|
+
*/
|
|
29535
|
+
readmeUrl: string;
|
|
29536
|
+
/**
|
|
29537
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
29538
|
+
*/
|
|
29539
|
+
public: boolean;
|
|
29540
|
+
};
|
|
29541
|
+
}
|
|
29542
|
+
|
|
28651
29543
|
interface GetPluginByNameRequestHeaders {
|
|
28652
29544
|
}
|
|
28653
29545
|
interface GetPluginByNameRequestQuery {
|
|
@@ -34106,6 +34998,7 @@ declare class Client$1 {
|
|
|
34106
34998
|
readonly getPublicIntegration: (input: GetPublicIntegrationInput) => Promise<GetPublicIntegrationResponse>;
|
|
34107
34999
|
readonly listPublicPlugins: (input: ListPublicPluginsInput) => Promise<ListPublicPluginsResponse>;
|
|
34108
35000
|
readonly getPublicPluginById: (input: GetPublicPluginByIdInput) => Promise<GetPublicPluginByIdResponse>;
|
|
35001
|
+
readonly getDereferencedPublicPluginById: (input: GetDereferencedPublicPluginByIdInput) => Promise<GetDereferencedPublicPluginByIdResponse>;
|
|
34109
35002
|
readonly getPublicPlugin: (input: GetPublicPluginInput) => Promise<GetPublicPluginResponse>;
|
|
34110
35003
|
readonly getPublicPluginCode: (input: GetPublicPluginCodeInput) => Promise<GetPublicPluginCodeResponse>;
|
|
34111
35004
|
readonly listPublicInterfaces: (input: ListPublicInterfacesInput) => Promise<ListPublicInterfacesResponse>;
|
|
@@ -34181,6 +35074,7 @@ declare class Client$1 {
|
|
|
34181
35074
|
readonly listInterfaces: (input: ListInterfacesInput) => Promise<ListInterfacesResponse>;
|
|
34182
35075
|
readonly createPlugin: (input: CreatePluginInput) => Promise<CreatePluginResponse>;
|
|
34183
35076
|
readonly getPlugin: (input: GetPluginInput) => Promise<GetPluginResponse>;
|
|
35077
|
+
readonly getDereferencedPlugin: (input: GetDereferencedPluginInput) => Promise<GetDereferencedPluginResponse>;
|
|
34184
35078
|
readonly getPluginByName: (input: GetPluginByNameInput) => Promise<GetPluginByNameResponse>;
|
|
34185
35079
|
readonly updatePlugin: (input: UpdatePluginInput) => Promise<UpdatePluginResponse>;
|
|
34186
35080
|
readonly deletePlugin: (input: DeletePluginInput) => Promise<DeletePluginResponse>;
|