@botpress/client 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.cjs +1 -1
- package/dist/bundle.cjs.map +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +130 -36
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3210,7 +3210,7 @@ interface ListPublicIntegrationsResponse$1 {
|
|
|
3210
3210
|
*/
|
|
3211
3211
|
iconUrl: string;
|
|
3212
3212
|
/**
|
|
3213
|
-
*
|
|
3213
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
3214
3214
|
*/
|
|
3215
3215
|
public: boolean;
|
|
3216
3216
|
/**
|
|
@@ -3621,7 +3621,7 @@ interface GetPublicIntegrationByIdResponse$1 {
|
|
|
3621
3621
|
*/
|
|
3622
3622
|
readmeUrl: string;
|
|
3623
3623
|
/**
|
|
3624
|
-
*
|
|
3624
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
3625
3625
|
*/
|
|
3626
3626
|
public: boolean;
|
|
3627
3627
|
/**
|
|
@@ -4006,7 +4006,7 @@ interface GetPublicIntegrationResponse$1 {
|
|
|
4006
4006
|
*/
|
|
4007
4007
|
readmeUrl: string;
|
|
4008
4008
|
/**
|
|
4009
|
-
*
|
|
4009
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
4010
4010
|
*/
|
|
4011
4011
|
public: boolean;
|
|
4012
4012
|
/**
|
|
@@ -4292,7 +4292,7 @@ interface CreateBotResponse$1 {
|
|
|
4292
4292
|
*/
|
|
4293
4293
|
iconUrl: string;
|
|
4294
4294
|
/**
|
|
4295
|
-
*
|
|
4295
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
4296
4296
|
*/
|
|
4297
4297
|
public: boolean;
|
|
4298
4298
|
/**
|
|
@@ -4727,6 +4727,7 @@ interface UpdateBotRequestBody$1 {
|
|
|
4727
4727
|
url: string;
|
|
4728
4728
|
name: string;
|
|
4729
4729
|
}[];
|
|
4730
|
+
layers?: string[];
|
|
4730
4731
|
}
|
|
4731
4732
|
type UpdateBotInput$1 = UpdateBotRequestBody$1 & UpdateBotRequestHeaders$1 & UpdateBotRequestQuery$1 & UpdateBotRequestParams$1;
|
|
4732
4733
|
interface UpdateBotResponse$1 {
|
|
@@ -4795,7 +4796,7 @@ interface UpdateBotResponse$1 {
|
|
|
4795
4796
|
*/
|
|
4796
4797
|
iconUrl: string;
|
|
4797
4798
|
/**
|
|
4798
|
-
*
|
|
4799
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
4799
4800
|
*/
|
|
4800
4801
|
public: boolean;
|
|
4801
4802
|
/**
|
|
@@ -5172,7 +5173,7 @@ interface GetBotResponse$1 {
|
|
|
5172
5173
|
*/
|
|
5173
5174
|
iconUrl: string;
|
|
5174
5175
|
/**
|
|
5175
|
-
*
|
|
5176
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
5176
5177
|
*/
|
|
5177
5178
|
public: boolean;
|
|
5178
5179
|
/**
|
|
@@ -5426,7 +5427,7 @@ interface GetBotLogsRequestHeaders$1 {
|
|
|
5426
5427
|
}
|
|
5427
5428
|
interface GetBotLogsRequestQuery$1 {
|
|
5428
5429
|
timeStart: string;
|
|
5429
|
-
timeEnd
|
|
5430
|
+
timeEnd?: string;
|
|
5430
5431
|
level?: string;
|
|
5431
5432
|
userId?: string;
|
|
5432
5433
|
workflowId?: string;
|
|
@@ -6745,7 +6746,7 @@ interface CreateIntegrationRequestBody$1 {
|
|
|
6745
6746
|
*/
|
|
6746
6747
|
description?: string;
|
|
6747
6748
|
/**
|
|
6748
|
-
*
|
|
6749
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
6749
6750
|
*/
|
|
6750
6751
|
public?: boolean;
|
|
6751
6752
|
layers?: string[];
|
|
@@ -7102,7 +7103,7 @@ interface CreateIntegrationResponse$1 {
|
|
|
7102
7103
|
*/
|
|
7103
7104
|
readmeUrl: string;
|
|
7104
7105
|
/**
|
|
7105
|
-
*
|
|
7106
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
7106
7107
|
*/
|
|
7107
7108
|
public: boolean;
|
|
7108
7109
|
/**
|
|
@@ -7425,7 +7426,7 @@ interface ValidateIntegrationCreationRequestBody$1 {
|
|
|
7425
7426
|
*/
|
|
7426
7427
|
description?: string;
|
|
7427
7428
|
/**
|
|
7428
|
-
*
|
|
7429
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
7429
7430
|
*/
|
|
7430
7431
|
public?: boolean;
|
|
7431
7432
|
layers?: string[];
|
|
@@ -7736,7 +7737,7 @@ interface UpdateIntegrationRequestBody$1 {
|
|
|
7736
7737
|
*/
|
|
7737
7738
|
url?: string | null;
|
|
7738
7739
|
/**
|
|
7739
|
-
*
|
|
7740
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
7740
7741
|
*/
|
|
7741
7742
|
public?: boolean;
|
|
7742
7743
|
layers?: string[];
|
|
@@ -8093,7 +8094,7 @@ interface UpdateIntegrationResponse$1 {
|
|
|
8093
8094
|
*/
|
|
8094
8095
|
readmeUrl: string;
|
|
8095
8096
|
/**
|
|
8096
|
-
*
|
|
8097
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
8097
8098
|
*/
|
|
8098
8099
|
public: boolean;
|
|
8099
8100
|
/**
|
|
@@ -8409,7 +8410,7 @@ interface ValidateIntegrationUpdateRequestBody$1 {
|
|
|
8409
8410
|
*/
|
|
8410
8411
|
url?: string | null;
|
|
8411
8412
|
/**
|
|
8412
|
-
*
|
|
8413
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
8413
8414
|
*/
|
|
8414
8415
|
public?: boolean;
|
|
8415
8416
|
layers?: string[];
|
|
@@ -8475,7 +8476,7 @@ interface ListIntegrationsResponse$1 {
|
|
|
8475
8476
|
*/
|
|
8476
8477
|
iconUrl: string;
|
|
8477
8478
|
/**
|
|
8478
|
-
*
|
|
8479
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
8479
8480
|
*/
|
|
8480
8481
|
public: boolean;
|
|
8481
8482
|
/**
|
|
@@ -8882,7 +8883,7 @@ interface GetIntegrationResponse$1 {
|
|
|
8882
8883
|
*/
|
|
8883
8884
|
readmeUrl: string;
|
|
8884
8885
|
/**
|
|
8885
|
-
*
|
|
8886
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
8886
8887
|
*/
|
|
8887
8888
|
public: boolean;
|
|
8888
8889
|
/**
|
|
@@ -8900,7 +8901,7 @@ interface GetIntegrationLogsRequestHeaders$1 {
|
|
|
8900
8901
|
}
|
|
8901
8902
|
interface GetIntegrationLogsRequestQuery$1 {
|
|
8902
8903
|
timeStart: string;
|
|
8903
|
-
timeEnd
|
|
8904
|
+
timeEnd?: string;
|
|
8904
8905
|
level?: string;
|
|
8905
8906
|
userId?: string;
|
|
8906
8907
|
conversationId?: string;
|
|
@@ -9286,7 +9287,7 @@ interface GetIntegrationByNameResponse$1 {
|
|
|
9286
9287
|
*/
|
|
9287
9288
|
readmeUrl: string;
|
|
9288
9289
|
/**
|
|
9289
|
-
*
|
|
9290
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
9290
9291
|
*/
|
|
9291
9292
|
public: boolean;
|
|
9292
9293
|
/**
|
|
@@ -10256,6 +10257,10 @@ interface CreatePluginRequestBody$1 {
|
|
|
10256
10257
|
* Description of the plugin. This is the description that will be displayed in the UI
|
|
10257
10258
|
*/
|
|
10258
10259
|
description?: string;
|
|
10260
|
+
/**
|
|
10261
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
10262
|
+
*/
|
|
10263
|
+
public?: boolean;
|
|
10259
10264
|
}
|
|
10260
10265
|
type CreatePluginInput$1 = CreatePluginRequestBody$1 & CreatePluginRequestHeaders$1 & CreatePluginRequestQuery$1 & CreatePluginRequestParams$1;
|
|
10261
10266
|
interface CreatePluginResponse$1 {
|
|
@@ -10434,6 +10439,10 @@ interface CreatePluginResponse$1 {
|
|
|
10434
10439
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
10435
10440
|
*/
|
|
10436
10441
|
readmeUrl: string;
|
|
10442
|
+
/**
|
|
10443
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
10444
|
+
*/
|
|
10445
|
+
public: boolean;
|
|
10437
10446
|
};
|
|
10438
10447
|
}
|
|
10439
10448
|
|
|
@@ -10623,6 +10632,10 @@ interface GetPluginResponse$1 {
|
|
|
10623
10632
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
10624
10633
|
*/
|
|
10625
10634
|
readmeUrl: string;
|
|
10635
|
+
/**
|
|
10636
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
10637
|
+
*/
|
|
10638
|
+
public: boolean;
|
|
10626
10639
|
};
|
|
10627
10640
|
}
|
|
10628
10641
|
|
|
@@ -10813,6 +10826,10 @@ interface GetPluginByNameResponse$1 {
|
|
|
10813
10826
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
10814
10827
|
*/
|
|
10815
10828
|
readmeUrl: string;
|
|
10829
|
+
/**
|
|
10830
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
10831
|
+
*/
|
|
10832
|
+
public: boolean;
|
|
10816
10833
|
};
|
|
10817
10834
|
}
|
|
10818
10835
|
|
|
@@ -10978,6 +10995,10 @@ interface UpdatePluginRequestBody$1 {
|
|
|
10978
10995
|
* Description of the plugin. This is the description that will be displayed in the UI
|
|
10979
10996
|
*/
|
|
10980
10997
|
description?: string;
|
|
10998
|
+
/**
|
|
10999
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
11000
|
+
*/
|
|
11001
|
+
public?: boolean;
|
|
10981
11002
|
}
|
|
10982
11003
|
type UpdatePluginInput$1 = UpdatePluginRequestBody$1 & UpdatePluginRequestHeaders$1 & UpdatePluginRequestQuery$1 & UpdatePluginRequestParams$1;
|
|
10983
11004
|
interface UpdatePluginResponse$1 {
|
|
@@ -11156,6 +11177,10 @@ interface UpdatePluginResponse$1 {
|
|
|
11156
11177
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
11157
11178
|
*/
|
|
11158
11179
|
readmeUrl: string;
|
|
11180
|
+
/**
|
|
11181
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
11182
|
+
*/
|
|
11183
|
+
public: boolean;
|
|
11159
11184
|
};
|
|
11160
11185
|
}
|
|
11161
11186
|
|
|
@@ -11221,6 +11246,10 @@ interface ListPluginsResponse$1 {
|
|
|
11221
11246
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
11222
11247
|
*/
|
|
11223
11248
|
readmeUrl: string;
|
|
11249
|
+
/**
|
|
11250
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
11251
|
+
*/
|
|
11252
|
+
public: boolean;
|
|
11224
11253
|
}[];
|
|
11225
11254
|
meta: {
|
|
11226
11255
|
/**
|
|
@@ -11861,6 +11890,10 @@ interface UpsertFileRequestBody$1 {
|
|
|
11861
11890
|
*/
|
|
11862
11891
|
generateMasterSummary?: boolean;
|
|
11863
11892
|
};
|
|
11893
|
+
/**
|
|
11894
|
+
* Internal setting, cannot be set manually.
|
|
11895
|
+
*/
|
|
11896
|
+
stack?: "realtime-v1";
|
|
11864
11897
|
vision?: {
|
|
11865
11898
|
/**
|
|
11866
11899
|
* (Team/Enterprise plan only, charged as AI Spend) For PDF files, set this option to `true` or pass an array with specific page numbers to use a vision-enabled LLM to transcribe each page of the PDF as standalone vectors and index them.
|
|
@@ -12487,6 +12520,18 @@ interface SearchFilesResponse$1 {
|
|
|
12487
12520
|
*/
|
|
12488
12521
|
updatedAt: string;
|
|
12489
12522
|
};
|
|
12523
|
+
context?: {
|
|
12524
|
+
id: string;
|
|
12525
|
+
text: string;
|
|
12526
|
+
/**
|
|
12527
|
+
* Position of the context passage relative to the current passage. Negative for preceding passages, positive for subsequent, ommited for breadcrumbs.
|
|
12528
|
+
*/
|
|
12529
|
+
offset?: number;
|
|
12530
|
+
/**
|
|
12531
|
+
* The type of context passage
|
|
12532
|
+
*/
|
|
12533
|
+
type: "preceding" | "subsequent" | "breadcrumb";
|
|
12534
|
+
}[];
|
|
12490
12535
|
}[];
|
|
12491
12536
|
}
|
|
12492
12537
|
|
|
@@ -17417,7 +17462,7 @@ interface ListPublicIntegrationsResponse {
|
|
|
17417
17462
|
*/
|
|
17418
17463
|
iconUrl: string;
|
|
17419
17464
|
/**
|
|
17420
|
-
*
|
|
17465
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
17421
17466
|
*/
|
|
17422
17467
|
public: boolean;
|
|
17423
17468
|
/**
|
|
@@ -17828,7 +17873,7 @@ interface GetPublicIntegrationByIdResponse {
|
|
|
17828
17873
|
*/
|
|
17829
17874
|
readmeUrl: string;
|
|
17830
17875
|
/**
|
|
17831
|
-
*
|
|
17876
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
17832
17877
|
*/
|
|
17833
17878
|
public: boolean;
|
|
17834
17879
|
/**
|
|
@@ -18213,7 +18258,7 @@ interface GetPublicIntegrationResponse {
|
|
|
18213
18258
|
*/
|
|
18214
18259
|
readmeUrl: string;
|
|
18215
18260
|
/**
|
|
18216
|
-
*
|
|
18261
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
18217
18262
|
*/
|
|
18218
18263
|
public: boolean;
|
|
18219
18264
|
/**
|
|
@@ -18499,7 +18544,7 @@ interface CreateBotResponse {
|
|
|
18499
18544
|
*/
|
|
18500
18545
|
iconUrl: string;
|
|
18501
18546
|
/**
|
|
18502
|
-
*
|
|
18547
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
18503
18548
|
*/
|
|
18504
18549
|
public: boolean;
|
|
18505
18550
|
/**
|
|
@@ -18934,6 +18979,7 @@ interface UpdateBotRequestBody {
|
|
|
18934
18979
|
url: string;
|
|
18935
18980
|
name: string;
|
|
18936
18981
|
}[];
|
|
18982
|
+
layers?: string[];
|
|
18937
18983
|
}
|
|
18938
18984
|
type UpdateBotInput = UpdateBotRequestBody & UpdateBotRequestHeaders & UpdateBotRequestQuery & UpdateBotRequestParams;
|
|
18939
18985
|
interface UpdateBotResponse {
|
|
@@ -19002,7 +19048,7 @@ interface UpdateBotResponse {
|
|
|
19002
19048
|
*/
|
|
19003
19049
|
iconUrl: string;
|
|
19004
19050
|
/**
|
|
19005
|
-
*
|
|
19051
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
19006
19052
|
*/
|
|
19007
19053
|
public: boolean;
|
|
19008
19054
|
/**
|
|
@@ -19379,7 +19425,7 @@ interface GetBotResponse {
|
|
|
19379
19425
|
*/
|
|
19380
19426
|
iconUrl: string;
|
|
19381
19427
|
/**
|
|
19382
|
-
*
|
|
19428
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
19383
19429
|
*/
|
|
19384
19430
|
public: boolean;
|
|
19385
19431
|
/**
|
|
@@ -19633,7 +19679,7 @@ interface GetBotLogsRequestHeaders {
|
|
|
19633
19679
|
}
|
|
19634
19680
|
interface GetBotLogsRequestQuery {
|
|
19635
19681
|
timeStart: string;
|
|
19636
|
-
timeEnd
|
|
19682
|
+
timeEnd?: string;
|
|
19637
19683
|
level?: string;
|
|
19638
19684
|
userId?: string;
|
|
19639
19685
|
workflowId?: string;
|
|
@@ -20953,7 +20999,7 @@ interface CreateIntegrationRequestBody {
|
|
|
20953
20999
|
*/
|
|
20954
21000
|
description?: string;
|
|
20955
21001
|
/**
|
|
20956
|
-
*
|
|
21002
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
20957
21003
|
*/
|
|
20958
21004
|
public?: boolean;
|
|
20959
21005
|
layers?: string[];
|
|
@@ -21310,7 +21356,7 @@ interface CreateIntegrationResponse {
|
|
|
21310
21356
|
*/
|
|
21311
21357
|
readmeUrl: string;
|
|
21312
21358
|
/**
|
|
21313
|
-
*
|
|
21359
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
21314
21360
|
*/
|
|
21315
21361
|
public: boolean;
|
|
21316
21362
|
/**
|
|
@@ -21633,7 +21679,7 @@ interface ValidateIntegrationCreationRequestBody {
|
|
|
21633
21679
|
*/
|
|
21634
21680
|
description?: string;
|
|
21635
21681
|
/**
|
|
21636
|
-
*
|
|
21682
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
21637
21683
|
*/
|
|
21638
21684
|
public?: boolean;
|
|
21639
21685
|
layers?: string[];
|
|
@@ -21944,7 +21990,7 @@ interface UpdateIntegrationRequestBody {
|
|
|
21944
21990
|
*/
|
|
21945
21991
|
url?: string | null;
|
|
21946
21992
|
/**
|
|
21947
|
-
*
|
|
21993
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
21948
21994
|
*/
|
|
21949
21995
|
public?: boolean;
|
|
21950
21996
|
layers?: string[];
|
|
@@ -22301,7 +22347,7 @@ interface UpdateIntegrationResponse {
|
|
|
22301
22347
|
*/
|
|
22302
22348
|
readmeUrl: string;
|
|
22303
22349
|
/**
|
|
22304
|
-
*
|
|
22350
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
22305
22351
|
*/
|
|
22306
22352
|
public: boolean;
|
|
22307
22353
|
/**
|
|
@@ -22617,7 +22663,7 @@ interface ValidateIntegrationUpdateRequestBody {
|
|
|
22617
22663
|
*/
|
|
22618
22664
|
url?: string | null;
|
|
22619
22665
|
/**
|
|
22620
|
-
*
|
|
22666
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
22621
22667
|
*/
|
|
22622
22668
|
public?: boolean;
|
|
22623
22669
|
layers?: string[];
|
|
@@ -22683,7 +22729,7 @@ interface ListIntegrationsResponse {
|
|
|
22683
22729
|
*/
|
|
22684
22730
|
iconUrl: string;
|
|
22685
22731
|
/**
|
|
22686
|
-
*
|
|
22732
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
22687
22733
|
*/
|
|
22688
22734
|
public: boolean;
|
|
22689
22735
|
/**
|
|
@@ -23090,7 +23136,7 @@ interface GetIntegrationResponse {
|
|
|
23090
23136
|
*/
|
|
23091
23137
|
readmeUrl: string;
|
|
23092
23138
|
/**
|
|
23093
|
-
*
|
|
23139
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
23094
23140
|
*/
|
|
23095
23141
|
public: boolean;
|
|
23096
23142
|
/**
|
|
@@ -23108,7 +23154,7 @@ interface GetIntegrationLogsRequestHeaders {
|
|
|
23108
23154
|
}
|
|
23109
23155
|
interface GetIntegrationLogsRequestQuery {
|
|
23110
23156
|
timeStart: string;
|
|
23111
|
-
timeEnd
|
|
23157
|
+
timeEnd?: string;
|
|
23112
23158
|
level?: string;
|
|
23113
23159
|
userId?: string;
|
|
23114
23160
|
conversationId?: string;
|
|
@@ -23494,7 +23540,7 @@ interface GetIntegrationByNameResponse {
|
|
|
23494
23540
|
*/
|
|
23495
23541
|
readmeUrl: string;
|
|
23496
23542
|
/**
|
|
23497
|
-
*
|
|
23543
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
23498
23544
|
*/
|
|
23499
23545
|
public: boolean;
|
|
23500
23546
|
/**
|
|
@@ -24464,6 +24510,10 @@ interface CreatePluginRequestBody {
|
|
|
24464
24510
|
* Description of the plugin. This is the description that will be displayed in the UI
|
|
24465
24511
|
*/
|
|
24466
24512
|
description?: string;
|
|
24513
|
+
/**
|
|
24514
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
24515
|
+
*/
|
|
24516
|
+
public?: boolean;
|
|
24467
24517
|
}
|
|
24468
24518
|
type CreatePluginInput = CreatePluginRequestBody & CreatePluginRequestHeaders & CreatePluginRequestQuery & CreatePluginRequestParams;
|
|
24469
24519
|
interface CreatePluginResponse {
|
|
@@ -24642,6 +24692,10 @@ interface CreatePluginResponse {
|
|
|
24642
24692
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
24643
24693
|
*/
|
|
24644
24694
|
readmeUrl: string;
|
|
24695
|
+
/**
|
|
24696
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
24697
|
+
*/
|
|
24698
|
+
public: boolean;
|
|
24645
24699
|
};
|
|
24646
24700
|
}
|
|
24647
24701
|
|
|
@@ -24831,6 +24885,10 @@ interface GetPluginResponse {
|
|
|
24831
24885
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
24832
24886
|
*/
|
|
24833
24887
|
readmeUrl: string;
|
|
24888
|
+
/**
|
|
24889
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
24890
|
+
*/
|
|
24891
|
+
public: boolean;
|
|
24834
24892
|
};
|
|
24835
24893
|
}
|
|
24836
24894
|
|
|
@@ -25021,6 +25079,10 @@ interface GetPluginByNameResponse {
|
|
|
25021
25079
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
25022
25080
|
*/
|
|
25023
25081
|
readmeUrl: string;
|
|
25082
|
+
/**
|
|
25083
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
25084
|
+
*/
|
|
25085
|
+
public: boolean;
|
|
25024
25086
|
};
|
|
25025
25087
|
}
|
|
25026
25088
|
|
|
@@ -25186,6 +25248,10 @@ interface UpdatePluginRequestBody {
|
|
|
25186
25248
|
* Description of the plugin. This is the description that will be displayed in the UI
|
|
25187
25249
|
*/
|
|
25188
25250
|
description?: string;
|
|
25251
|
+
/**
|
|
25252
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
25253
|
+
*/
|
|
25254
|
+
public?: boolean;
|
|
25189
25255
|
}
|
|
25190
25256
|
type UpdatePluginInput = UpdatePluginRequestBody & UpdatePluginRequestHeaders & UpdatePluginRequestQuery & UpdatePluginRequestParams;
|
|
25191
25257
|
interface UpdatePluginResponse {
|
|
@@ -25364,6 +25430,10 @@ interface UpdatePluginResponse {
|
|
|
25364
25430
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
25365
25431
|
*/
|
|
25366
25432
|
readmeUrl: string;
|
|
25433
|
+
/**
|
|
25434
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
25435
|
+
*/
|
|
25436
|
+
public: boolean;
|
|
25367
25437
|
};
|
|
25368
25438
|
}
|
|
25369
25439
|
|
|
@@ -25429,6 +25499,10 @@ interface ListPluginsResponse {
|
|
|
25429
25499
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
25430
25500
|
*/
|
|
25431
25501
|
readmeUrl: string;
|
|
25502
|
+
/**
|
|
25503
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
25504
|
+
*/
|
|
25505
|
+
public: boolean;
|
|
25432
25506
|
}[];
|
|
25433
25507
|
meta: {
|
|
25434
25508
|
/**
|
|
@@ -25764,6 +25838,10 @@ interface UpsertFileRequestBody {
|
|
|
25764
25838
|
*/
|
|
25765
25839
|
generateMasterSummary?: boolean;
|
|
25766
25840
|
};
|
|
25841
|
+
/**
|
|
25842
|
+
* Internal setting, cannot be set manually.
|
|
25843
|
+
*/
|
|
25844
|
+
stack?: "realtime-v1";
|
|
25767
25845
|
vision?: {
|
|
25768
25846
|
/**
|
|
25769
25847
|
* (Team/Enterprise plan only, charged as AI Spend) For PDF files, set this option to `true` or pass an array with specific page numbers to use a vision-enabled LLM to transcribe each page of the PDF as standalone vectors and index them.
|
|
@@ -26390,6 +26468,18 @@ interface SearchFilesResponse {
|
|
|
26390
26468
|
*/
|
|
26391
26469
|
updatedAt: string;
|
|
26392
26470
|
};
|
|
26471
|
+
context?: {
|
|
26472
|
+
id: string;
|
|
26473
|
+
text: string;
|
|
26474
|
+
/**
|
|
26475
|
+
* Position of the context passage relative to the current passage. Negative for preceding passages, positive for subsequent, ommited for breadcrumbs.
|
|
26476
|
+
*/
|
|
26477
|
+
offset?: number;
|
|
26478
|
+
/**
|
|
26479
|
+
* The type of context passage
|
|
26480
|
+
*/
|
|
26481
|
+
type: "preceding" | "subsequent" | "breadcrumb";
|
|
26482
|
+
}[];
|
|
26393
26483
|
}[];
|
|
26394
26484
|
}
|
|
26395
26485
|
|
|
@@ -28280,7 +28370,7 @@ interface Bot {
|
|
|
28280
28370
|
*/
|
|
28281
28371
|
iconUrl: string;
|
|
28282
28372
|
/**
|
|
28283
|
-
*
|
|
28373
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
28284
28374
|
*/
|
|
28285
28375
|
public: boolean;
|
|
28286
28376
|
/**
|
|
@@ -28865,7 +28955,7 @@ interface Integration {
|
|
|
28865
28955
|
*/
|
|
28866
28956
|
readmeUrl: string;
|
|
28867
28957
|
/**
|
|
28868
|
-
*
|
|
28958
|
+
* Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
28869
28959
|
*/
|
|
28870
28960
|
public: boolean;
|
|
28871
28961
|
/**
|
|
@@ -29166,6 +29256,10 @@ interface Plugin {
|
|
|
29166
29256
|
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
29167
29257
|
*/
|
|
29168
29258
|
readmeUrl: string;
|
|
29259
|
+
/**
|
|
29260
|
+
* Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version.
|
|
29261
|
+
*/
|
|
29262
|
+
public: boolean;
|
|
29169
29263
|
}
|
|
29170
29264
|
interface Workspace {
|
|
29171
29265
|
id: string;
|