@botpress/client 1.27.1 → 1.27.2
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 +8 -8
- package/dist/bundle.cjs.map +2 -2
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +288 -86
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -204,6 +204,8 @@ interface ListConversationsRequestQuery$1 {
|
|
|
204
204
|
participantIds?: string[];
|
|
205
205
|
integrationName?: string;
|
|
206
206
|
channel?: string;
|
|
207
|
+
afterDate?: string;
|
|
208
|
+
beforeDate?: string;
|
|
207
209
|
}
|
|
208
210
|
interface ListConversationsRequestParams$1 {
|
|
209
211
|
}
|
|
@@ -2923,6 +2925,8 @@ declare class Client$8 extends Client$9 {
|
|
|
2923
2925
|
sortField?: "createdAt" | "updatedAt" | undefined;
|
|
2924
2926
|
sortDirection?: "asc" | "desc" | undefined;
|
|
2925
2927
|
participantIds?: string[] | undefined;
|
|
2928
|
+
afterDate?: string | undefined;
|
|
2929
|
+
beforeDate?: string | undefined;
|
|
2926
2930
|
}) => AsyncCollection<{
|
|
2927
2931
|
id: string;
|
|
2928
2932
|
currentTaskId?: string;
|
|
@@ -4203,9 +4207,14 @@ interface ListPublicPluginsResponse$1 {
|
|
|
4203
4207
|
*/
|
|
4204
4208
|
readmeUrl: string;
|
|
4205
4209
|
/**
|
|
4206
|
-
*
|
|
4210
|
+
* @deprecated
|
|
4211
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
4207
4212
|
*/
|
|
4208
4213
|
public: boolean;
|
|
4214
|
+
/**
|
|
4215
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
4216
|
+
*/
|
|
4217
|
+
visibility: "public" | "private" | "unlisted";
|
|
4209
4218
|
}[];
|
|
4210
4219
|
meta: {
|
|
4211
4220
|
/**
|
|
@@ -4420,9 +4429,14 @@ interface GetPublicPluginByIdResponse$1 {
|
|
|
4420
4429
|
*/
|
|
4421
4430
|
readmeUrl: string;
|
|
4422
4431
|
/**
|
|
4423
|
-
*
|
|
4432
|
+
* @deprecated
|
|
4433
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
4424
4434
|
*/
|
|
4425
4435
|
public: boolean;
|
|
4436
|
+
/**
|
|
4437
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
4438
|
+
*/
|
|
4439
|
+
visibility: "public" | "private" | "unlisted";
|
|
4426
4440
|
};
|
|
4427
4441
|
}
|
|
4428
4442
|
|
|
@@ -4640,9 +4654,14 @@ interface GetDereferencedPublicPluginByIdResponse$1 {
|
|
|
4640
4654
|
*/
|
|
4641
4655
|
readmeUrl: string;
|
|
4642
4656
|
/**
|
|
4643
|
-
*
|
|
4657
|
+
* @deprecated
|
|
4658
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
4644
4659
|
*/
|
|
4645
4660
|
public: boolean;
|
|
4661
|
+
/**
|
|
4662
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
4663
|
+
*/
|
|
4664
|
+
visibility: "public" | "private" | "unlisted";
|
|
4646
4665
|
};
|
|
4647
4666
|
}
|
|
4648
4667
|
|
|
@@ -4852,9 +4871,14 @@ interface GetPublicPluginResponse$1 {
|
|
|
4852
4871
|
*/
|
|
4853
4872
|
readmeUrl: string;
|
|
4854
4873
|
/**
|
|
4855
|
-
*
|
|
4874
|
+
* @deprecated
|
|
4875
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
4856
4876
|
*/
|
|
4857
4877
|
public: boolean;
|
|
4878
|
+
/**
|
|
4879
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
4880
|
+
*/
|
|
4881
|
+
visibility: "public" | "private" | "unlisted";
|
|
4858
4882
|
};
|
|
4859
4883
|
}
|
|
4860
4884
|
|
|
@@ -5626,9 +5650,14 @@ interface CreateBotResponse$1 {
|
|
|
5626
5650
|
*/
|
|
5627
5651
|
readmeUrl: string;
|
|
5628
5652
|
/**
|
|
5629
|
-
*
|
|
5653
|
+
* @deprecated
|
|
5654
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
5630
5655
|
*/
|
|
5631
5656
|
public: boolean;
|
|
5657
|
+
/**
|
|
5658
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
5659
|
+
*/
|
|
5660
|
+
visibility: "public" | "private" | "unlisted";
|
|
5632
5661
|
};
|
|
5633
5662
|
};
|
|
5634
5663
|
/**
|
|
@@ -6285,9 +6314,14 @@ interface UpdateBotResponse$1 {
|
|
|
6285
6314
|
*/
|
|
6286
6315
|
readmeUrl: string;
|
|
6287
6316
|
/**
|
|
6288
|
-
*
|
|
6317
|
+
* @deprecated
|
|
6318
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
6289
6319
|
*/
|
|
6290
6320
|
public: boolean;
|
|
6321
|
+
/**
|
|
6322
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
6323
|
+
*/
|
|
6324
|
+
visibility: "public" | "private" | "unlisted";
|
|
6291
6325
|
};
|
|
6292
6326
|
};
|
|
6293
6327
|
/**
|
|
@@ -6759,9 +6793,14 @@ interface GetBotResponse$1 {
|
|
|
6759
6793
|
*/
|
|
6760
6794
|
readmeUrl: string;
|
|
6761
6795
|
/**
|
|
6762
|
-
*
|
|
6796
|
+
* @deprecated
|
|
6797
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
6763
6798
|
*/
|
|
6764
6799
|
public: boolean;
|
|
6800
|
+
/**
|
|
6801
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
6802
|
+
*/
|
|
6803
|
+
visibility: "public" | "private" | "unlisted";
|
|
6765
6804
|
};
|
|
6766
6805
|
};
|
|
6767
6806
|
/**
|
|
@@ -7771,7 +7810,7 @@ interface GetWorkspaceResponse$1 {
|
|
|
7771
7810
|
interface ListWorkspaceUsagesRequestHeaders$1 {
|
|
7772
7811
|
}
|
|
7773
7812
|
interface ListWorkspaceUsagesRequestQuery$1 {
|
|
7774
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
7813
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
7775
7814
|
period?: string;
|
|
7776
7815
|
}
|
|
7777
7816
|
interface ListWorkspaceUsagesRequestParams$1 {
|
|
@@ -7801,14 +7840,14 @@ interface ListWorkspaceUsagesResponse$1 {
|
|
|
7801
7840
|
/**
|
|
7802
7841
|
* Usage type that can be used
|
|
7803
7842
|
*/
|
|
7804
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
7843
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
7805
7844
|
}[];
|
|
7806
7845
|
}
|
|
7807
7846
|
|
|
7808
7847
|
interface BreakDownWorkspaceUsageByBotRequestHeaders$1 {
|
|
7809
7848
|
}
|
|
7810
7849
|
interface BreakDownWorkspaceUsageByBotRequestQuery$1 {
|
|
7811
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
7850
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
7812
7851
|
period?: string;
|
|
7813
7852
|
}
|
|
7814
7853
|
interface BreakDownWorkspaceUsageByBotRequestParams$1 {
|
|
@@ -7835,7 +7874,7 @@ interface GetAllWorkspaceQuotaCompletionRequestBody$1 {
|
|
|
7835
7874
|
type GetAllWorkspaceQuotaCompletionInput$1 = GetAllWorkspaceQuotaCompletionRequestBody$1 & GetAllWorkspaceQuotaCompletionRequestHeaders$1 & GetAllWorkspaceQuotaCompletionRequestQuery$1 & GetAllWorkspaceQuotaCompletionRequestParams$1;
|
|
7836
7875
|
interface GetAllWorkspaceQuotaCompletionResponse$1 {
|
|
7837
7876
|
[k: string]: {
|
|
7838
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
7877
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
7839
7878
|
completion: number;
|
|
7840
7879
|
};
|
|
7841
7880
|
}
|
|
@@ -7843,7 +7882,7 @@ interface GetAllWorkspaceQuotaCompletionResponse$1 {
|
|
|
7843
7882
|
interface GetWorkspaceQuotaRequestHeaders$1 {
|
|
7844
7883
|
}
|
|
7845
7884
|
interface GetWorkspaceQuotaRequestQuery$1 {
|
|
7846
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
7885
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
7847
7886
|
period?: string;
|
|
7848
7887
|
}
|
|
7849
7888
|
interface GetWorkspaceQuotaRequestParams$1 {
|
|
@@ -7865,7 +7904,7 @@ interface GetWorkspaceQuotaResponse$1 {
|
|
|
7865
7904
|
/**
|
|
7866
7905
|
* Usage type that can be used
|
|
7867
7906
|
*/
|
|
7868
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
7907
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
7869
7908
|
};
|
|
7870
7909
|
}
|
|
7871
7910
|
|
|
@@ -7893,7 +7932,7 @@ interface ListWorkspaceQuotasResponse$1 {
|
|
|
7893
7932
|
/**
|
|
7894
7933
|
* Usage type that can be used
|
|
7895
7934
|
*/
|
|
7896
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
7935
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
7897
7936
|
}[];
|
|
7898
7937
|
}
|
|
7899
7938
|
|
|
@@ -8556,6 +8595,7 @@ interface CreateIntegrationRequestBody$1 {
|
|
|
8556
8595
|
enabled: boolean;
|
|
8557
8596
|
};
|
|
8558
8597
|
};
|
|
8598
|
+
sdkVersion?: string;
|
|
8559
8599
|
/**
|
|
8560
8600
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
8561
8601
|
*/
|
|
@@ -9294,6 +9334,7 @@ interface ValidateIntegrationCreationRequestBody$1 {
|
|
|
9294
9334
|
enabled: boolean;
|
|
9295
9335
|
};
|
|
9296
9336
|
};
|
|
9337
|
+
sdkVersion?: string;
|
|
9297
9338
|
/**
|
|
9298
9339
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
9299
9340
|
*/
|
|
@@ -9407,6 +9448,7 @@ interface UpdateIntegrationRequestBody$1 {
|
|
|
9407
9448
|
enabled: boolean;
|
|
9408
9449
|
};
|
|
9409
9450
|
};
|
|
9451
|
+
sdkVersion?: string;
|
|
9410
9452
|
channels?: {
|
|
9411
9453
|
[k: string]: {
|
|
9412
9454
|
/**
|
|
@@ -10132,6 +10174,7 @@ interface ValidateIntegrationUpdateRequestBody$1 {
|
|
|
10132
10174
|
enabled: boolean;
|
|
10133
10175
|
};
|
|
10134
10176
|
};
|
|
10177
|
+
sdkVersion?: string;
|
|
10135
10178
|
channels?: {
|
|
10136
10179
|
[k: string]: {
|
|
10137
10180
|
/**
|
|
@@ -11497,6 +11540,7 @@ interface CreateInterfaceRequestBody$1 {
|
|
|
11497
11540
|
attributes?: {
|
|
11498
11541
|
[k: string]: string;
|
|
11499
11542
|
};
|
|
11543
|
+
sdkVersion?: string;
|
|
11500
11544
|
/**
|
|
11501
11545
|
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
11502
11546
|
*/
|
|
@@ -12117,6 +12161,7 @@ interface UpdateInterfaceRequestBody$1 {
|
|
|
12117
12161
|
attributes?: {
|
|
12118
12162
|
[k: string]: string | null;
|
|
12119
12163
|
};
|
|
12164
|
+
sdkVersion?: string;
|
|
12120
12165
|
/**
|
|
12121
12166
|
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
12122
12167
|
*/
|
|
@@ -12525,6 +12570,7 @@ interface CreatePluginRequestBody$1 {
|
|
|
12525
12570
|
attributes?: {
|
|
12526
12571
|
[k: string]: string;
|
|
12527
12572
|
};
|
|
12573
|
+
sdkVersion?: string;
|
|
12528
12574
|
code: {
|
|
12529
12575
|
/**
|
|
12530
12576
|
* Code of plugin bundled for Node.JS
|
|
@@ -12552,9 +12598,14 @@ interface CreatePluginRequestBody$1 {
|
|
|
12552
12598
|
*/
|
|
12553
12599
|
description?: string;
|
|
12554
12600
|
/**
|
|
12555
|
-
*
|
|
12601
|
+
* @deprecated
|
|
12602
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
12556
12603
|
*/
|
|
12557
12604
|
public?: boolean;
|
|
12605
|
+
/**
|
|
12606
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
12607
|
+
*/
|
|
12608
|
+
visibility?: "public" | "private" | "unlisted";
|
|
12558
12609
|
dependencies?: {
|
|
12559
12610
|
/**
|
|
12560
12611
|
* Mapping of interface aliases to interface references
|
|
@@ -12792,9 +12843,14 @@ interface CreatePluginResponse$1 {
|
|
|
12792
12843
|
*/
|
|
12793
12844
|
readmeUrl: string;
|
|
12794
12845
|
/**
|
|
12795
|
-
*
|
|
12846
|
+
* @deprecated
|
|
12847
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
12796
12848
|
*/
|
|
12797
12849
|
public: boolean;
|
|
12850
|
+
/**
|
|
12851
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
12852
|
+
*/
|
|
12853
|
+
visibility: "public" | "private" | "unlisted";
|
|
12798
12854
|
};
|
|
12799
12855
|
}
|
|
12800
12856
|
|
|
@@ -13003,9 +13059,14 @@ interface GetPluginResponse$1 {
|
|
|
13003
13059
|
*/
|
|
13004
13060
|
readmeUrl: string;
|
|
13005
13061
|
/**
|
|
13006
|
-
*
|
|
13062
|
+
* @deprecated
|
|
13063
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13007
13064
|
*/
|
|
13008
13065
|
public: boolean;
|
|
13066
|
+
/**
|
|
13067
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
13068
|
+
*/
|
|
13069
|
+
visibility: "public" | "private" | "unlisted";
|
|
13009
13070
|
};
|
|
13010
13071
|
}
|
|
13011
13072
|
|
|
@@ -13223,9 +13284,14 @@ interface GetDereferencedPluginResponse$1 {
|
|
|
13223
13284
|
*/
|
|
13224
13285
|
readmeUrl: string;
|
|
13225
13286
|
/**
|
|
13226
|
-
*
|
|
13287
|
+
* @deprecated
|
|
13288
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13227
13289
|
*/
|
|
13228
13290
|
public: boolean;
|
|
13291
|
+
/**
|
|
13292
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
13293
|
+
*/
|
|
13294
|
+
visibility: "public" | "private" | "unlisted";
|
|
13229
13295
|
};
|
|
13230
13296
|
}
|
|
13231
13297
|
|
|
@@ -13435,9 +13501,14 @@ interface GetPluginByNameResponse$1 {
|
|
|
13435
13501
|
*/
|
|
13436
13502
|
readmeUrl: string;
|
|
13437
13503
|
/**
|
|
13438
|
-
*
|
|
13504
|
+
* @deprecated
|
|
13505
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13439
13506
|
*/
|
|
13440
13507
|
public: boolean;
|
|
13508
|
+
/**
|
|
13509
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
13510
|
+
*/
|
|
13511
|
+
visibility: "public" | "private" | "unlisted";
|
|
13441
13512
|
};
|
|
13442
13513
|
}
|
|
13443
13514
|
|
|
@@ -13577,6 +13648,7 @@ interface UpdatePluginRequestBody$1 {
|
|
|
13577
13648
|
attributes?: {
|
|
13578
13649
|
[k: string]: string | null;
|
|
13579
13650
|
};
|
|
13651
|
+
sdkVersion?: string;
|
|
13580
13652
|
code?: {
|
|
13581
13653
|
/**
|
|
13582
13654
|
* Code of plugin bundled for Node.JS
|
|
@@ -13604,9 +13676,14 @@ interface UpdatePluginRequestBody$1 {
|
|
|
13604
13676
|
*/
|
|
13605
13677
|
description?: string;
|
|
13606
13678
|
/**
|
|
13607
|
-
*
|
|
13679
|
+
* @deprecated
|
|
13680
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13608
13681
|
*/
|
|
13609
13682
|
public?: boolean;
|
|
13683
|
+
/**
|
|
13684
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
13685
|
+
*/
|
|
13686
|
+
visibility?: "public" | "private" | "unlisted";
|
|
13610
13687
|
dependencies?: {
|
|
13611
13688
|
/**
|
|
13612
13689
|
* Mapping of interface aliases to interface references
|
|
@@ -13844,9 +13921,14 @@ interface UpdatePluginResponse$1 {
|
|
|
13844
13921
|
*/
|
|
13845
13922
|
readmeUrl: string;
|
|
13846
13923
|
/**
|
|
13847
|
-
*
|
|
13924
|
+
* @deprecated
|
|
13925
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13848
13926
|
*/
|
|
13849
13927
|
public: boolean;
|
|
13928
|
+
/**
|
|
13929
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
13930
|
+
*/
|
|
13931
|
+
visibility: "public" | "private" | "unlisted";
|
|
13850
13932
|
};
|
|
13851
13933
|
}
|
|
13852
13934
|
|
|
@@ -13914,9 +13996,14 @@ interface ListPluginsResponse$1 {
|
|
|
13914
13996
|
*/
|
|
13915
13997
|
readmeUrl: string;
|
|
13916
13998
|
/**
|
|
13917
|
-
*
|
|
13999
|
+
* @deprecated
|
|
14000
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13918
14001
|
*/
|
|
13919
14002
|
public: boolean;
|
|
14003
|
+
/**
|
|
14004
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
14005
|
+
*/
|
|
14006
|
+
visibility: "public" | "private" | "unlisted";
|
|
13920
14007
|
}[];
|
|
13921
14008
|
meta: {
|
|
13922
14009
|
/**
|
|
@@ -13944,7 +14031,7 @@ interface GetPluginCodeResponse$1 {
|
|
|
13944
14031
|
interface GetUsageRequestHeaders$1 {
|
|
13945
14032
|
}
|
|
13946
14033
|
interface GetUsageRequestQuery$1 {
|
|
13947
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
14034
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
13948
14035
|
period?: string;
|
|
13949
14036
|
}
|
|
13950
14037
|
interface GetUsageRequestParams$1 {
|
|
@@ -13974,7 +14061,7 @@ interface GetUsageResponse$1 {
|
|
|
13974
14061
|
/**
|
|
13975
14062
|
* Usage type that can be used
|
|
13976
14063
|
*/
|
|
13977
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
14064
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
13978
14065
|
};
|
|
13979
14066
|
}
|
|
13980
14067
|
|
|
@@ -14011,14 +14098,14 @@ interface GetMultipleUsagesResponse$1 {
|
|
|
14011
14098
|
/**
|
|
14012
14099
|
* Usage type that can be used
|
|
14013
14100
|
*/
|
|
14014
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
14101
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
14015
14102
|
}[];
|
|
14016
14103
|
}
|
|
14017
14104
|
|
|
14018
14105
|
interface ListUsageHistoryRequestHeaders$1 {
|
|
14019
14106
|
}
|
|
14020
14107
|
interface ListUsageHistoryRequestQuery$1 {
|
|
14021
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
14108
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
14022
14109
|
}
|
|
14023
14110
|
interface ListUsageHistoryRequestParams$1 {
|
|
14024
14111
|
id: string;
|
|
@@ -14047,14 +14134,14 @@ interface ListUsageHistoryResponse$1 {
|
|
|
14047
14134
|
/**
|
|
14048
14135
|
* Usage type that can be used
|
|
14049
14136
|
*/
|
|
14050
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
14137
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
14051
14138
|
}[];
|
|
14052
14139
|
}
|
|
14053
14140
|
|
|
14054
14141
|
interface ListUsageActivityRequestHeaders$1 {
|
|
14055
14142
|
}
|
|
14056
14143
|
interface ListUsageActivityRequestQuery$1 {
|
|
14057
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
14144
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
14058
14145
|
timestampFrom?: string;
|
|
14059
14146
|
timestampUntil?: string;
|
|
14060
14147
|
nextToken?: string;
|
|
@@ -14082,7 +14169,7 @@ interface ListUsageActivityResponse$1 {
|
|
|
14082
14169
|
interface ListUsageActivityDailyRequestHeaders$1 {
|
|
14083
14170
|
}
|
|
14084
14171
|
interface ListUsageActivityDailyRequestQuery$1 {
|
|
14085
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
14172
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
14086
14173
|
dateFrom?: string;
|
|
14087
14174
|
dateUntil?: string;
|
|
14088
14175
|
nextToken?: string;
|
|
@@ -14463,7 +14550,7 @@ declare class Client$6 extends Client$7 {
|
|
|
14463
14550
|
createdAt: string;
|
|
14464
14551
|
}>;
|
|
14465
14552
|
usageActivity: (props: {
|
|
14466
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
14553
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
14467
14554
|
id: string;
|
|
14468
14555
|
timestampFrom?: string | undefined;
|
|
14469
14556
|
timestampUntil?: string | undefined;
|
|
@@ -14476,7 +14563,7 @@ declare class Client$6 extends Client$7 {
|
|
|
14476
14563
|
};
|
|
14477
14564
|
}>;
|
|
14478
14565
|
usageActivityDaily: (props: {
|
|
14479
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
14566
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
14480
14567
|
id: string;
|
|
14481
14568
|
dateFrom?: string | undefined;
|
|
14482
14569
|
dateUntil?: string | undefined;
|
|
@@ -14545,6 +14632,10 @@ interface UpsertFileRequestBody$1 {
|
|
|
14545
14632
|
*/
|
|
14546
14633
|
configuration: {
|
|
14547
14634
|
parsing?: {
|
|
14635
|
+
/**
|
|
14636
|
+
* The parsing mode to index the file. Using `agent` will use agentic document processing to parse the file and will incurr in AI Spend cost, while `standard` will use a faster but less accurate parser that will not incur in AI Spend cost.
|
|
14637
|
+
*/
|
|
14638
|
+
mode?: "agent" | "standard";
|
|
14548
14639
|
/**
|
|
14549
14640
|
* The minimum length a standalone paragraph should have. If a paragraph is shorter than this, it will be merged with the next immediate paragraph.
|
|
14550
14641
|
*/
|
|
@@ -15733,7 +15824,7 @@ interface ListTablesResponse$1 {
|
|
|
15733
15824
|
*/
|
|
15734
15825
|
name: string;
|
|
15735
15826
|
/**
|
|
15736
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
15827
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
15737
15828
|
*/
|
|
15738
15829
|
factor?: number;
|
|
15739
15830
|
/**
|
|
@@ -15878,7 +15969,7 @@ interface GetTableResponse$1 {
|
|
|
15878
15969
|
*/
|
|
15879
15970
|
name: string;
|
|
15880
15971
|
/**
|
|
15881
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
15972
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
15882
15973
|
*/
|
|
15883
15974
|
factor?: number;
|
|
15884
15975
|
/**
|
|
@@ -16023,7 +16114,7 @@ interface GetOrCreateTableRequestParams$1 {
|
|
|
16023
16114
|
}
|
|
16024
16115
|
interface GetOrCreateTableRequestBody$1 {
|
|
16025
16116
|
/**
|
|
16026
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16117
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16027
16118
|
*/
|
|
16028
16119
|
factor?: number;
|
|
16029
16120
|
/**
|
|
@@ -16059,7 +16150,7 @@ interface GetOrCreateTableResponse$1 {
|
|
|
16059
16150
|
*/
|
|
16060
16151
|
name: string;
|
|
16061
16152
|
/**
|
|
16062
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16153
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16063
16154
|
*/
|
|
16064
16155
|
factor?: number;
|
|
16065
16156
|
/**
|
|
@@ -16211,7 +16302,7 @@ interface CreateTableRequestBody$1 {
|
|
|
16211
16302
|
*/
|
|
16212
16303
|
name: string;
|
|
16213
16304
|
/**
|
|
16214
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16305
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16215
16306
|
*/
|
|
16216
16307
|
factor?: number;
|
|
16217
16308
|
/**
|
|
@@ -16247,7 +16338,7 @@ interface CreateTableResponse$1 {
|
|
|
16247
16338
|
*/
|
|
16248
16339
|
name: string;
|
|
16249
16340
|
/**
|
|
16250
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16341
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16251
16342
|
*/
|
|
16252
16343
|
factor?: number;
|
|
16253
16344
|
/**
|
|
@@ -16385,7 +16476,7 @@ interface DuplicateTableRequestBody$1 {
|
|
|
16385
16476
|
*/
|
|
16386
16477
|
schemaOnly?: boolean;
|
|
16387
16478
|
/**
|
|
16388
|
-
*
|
|
16479
|
+
* Override the factor for the duplicated table. If not provided, the new table will use the same factor as the source table.
|
|
16389
16480
|
*/
|
|
16390
16481
|
factor?: number;
|
|
16391
16482
|
}
|
|
@@ -16401,7 +16492,7 @@ interface DuplicateTableResponse$1 {
|
|
|
16401
16492
|
*/
|
|
16402
16493
|
name: string;
|
|
16403
16494
|
/**
|
|
16404
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16495
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16405
16496
|
*/
|
|
16406
16497
|
factor?: number;
|
|
16407
16498
|
/**
|
|
@@ -16642,6 +16733,10 @@ interface UpdateTableRequestBody$1 {
|
|
|
16642
16733
|
* Indicates if the table is enabled for computation.
|
|
16643
16734
|
*/
|
|
16644
16735
|
isComputeEnabled?: boolean;
|
|
16736
|
+
/**
|
|
16737
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased, not decreased. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota.
|
|
16738
|
+
*/
|
|
16739
|
+
factor?: number;
|
|
16645
16740
|
}
|
|
16646
16741
|
type UpdateTableInput$1 = UpdateTableRequestBody$1 & UpdateTableRequestHeaders$1 & UpdateTableRequestQuery$1 & UpdateTableRequestParams$1;
|
|
16647
16742
|
interface UpdateTableResponse$1 {
|
|
@@ -16655,7 +16750,7 @@ interface UpdateTableResponse$1 {
|
|
|
16655
16750
|
*/
|
|
16656
16751
|
name: string;
|
|
16657
16752
|
/**
|
|
16658
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16753
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16659
16754
|
*/
|
|
16660
16755
|
factor?: number;
|
|
16661
16756
|
/**
|
|
@@ -16812,7 +16907,7 @@ interface RenameTableColumnResponse$1 {
|
|
|
16812
16907
|
*/
|
|
16813
16908
|
name: string;
|
|
16814
16909
|
/**
|
|
16815
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16910
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16816
16911
|
*/
|
|
16817
16912
|
factor?: number;
|
|
16818
16913
|
/**
|
|
@@ -17533,6 +17628,8 @@ interface ListConversationsRequestQuery {
|
|
|
17533
17628
|
participantIds?: string[];
|
|
17534
17629
|
integrationName?: string;
|
|
17535
17630
|
channel?: string;
|
|
17631
|
+
afterDate?: string;
|
|
17632
|
+
beforeDate?: string;
|
|
17536
17633
|
}
|
|
17537
17634
|
interface ListConversationsRequestParams {
|
|
17538
17635
|
}
|
|
@@ -21320,9 +21417,14 @@ interface ListPublicPluginsResponse {
|
|
|
21320
21417
|
*/
|
|
21321
21418
|
readmeUrl: string;
|
|
21322
21419
|
/**
|
|
21323
|
-
*
|
|
21420
|
+
* @deprecated
|
|
21421
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
21324
21422
|
*/
|
|
21325
21423
|
public: boolean;
|
|
21424
|
+
/**
|
|
21425
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
21426
|
+
*/
|
|
21427
|
+
visibility: "public" | "private" | "unlisted";
|
|
21326
21428
|
}[];
|
|
21327
21429
|
meta: {
|
|
21328
21430
|
/**
|
|
@@ -21537,9 +21639,14 @@ interface GetPublicPluginByIdResponse {
|
|
|
21537
21639
|
*/
|
|
21538
21640
|
readmeUrl: string;
|
|
21539
21641
|
/**
|
|
21540
|
-
*
|
|
21642
|
+
* @deprecated
|
|
21643
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
21541
21644
|
*/
|
|
21542
21645
|
public: boolean;
|
|
21646
|
+
/**
|
|
21647
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
21648
|
+
*/
|
|
21649
|
+
visibility: "public" | "private" | "unlisted";
|
|
21543
21650
|
};
|
|
21544
21651
|
}
|
|
21545
21652
|
|
|
@@ -21757,9 +21864,14 @@ interface GetDereferencedPublicPluginByIdResponse {
|
|
|
21757
21864
|
*/
|
|
21758
21865
|
readmeUrl: string;
|
|
21759
21866
|
/**
|
|
21760
|
-
*
|
|
21867
|
+
* @deprecated
|
|
21868
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
21761
21869
|
*/
|
|
21762
21870
|
public: boolean;
|
|
21871
|
+
/**
|
|
21872
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
21873
|
+
*/
|
|
21874
|
+
visibility: "public" | "private" | "unlisted";
|
|
21763
21875
|
};
|
|
21764
21876
|
}
|
|
21765
21877
|
|
|
@@ -21969,9 +22081,14 @@ interface GetPublicPluginResponse {
|
|
|
21969
22081
|
*/
|
|
21970
22082
|
readmeUrl: string;
|
|
21971
22083
|
/**
|
|
21972
|
-
*
|
|
22084
|
+
* @deprecated
|
|
22085
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
21973
22086
|
*/
|
|
21974
22087
|
public: boolean;
|
|
22088
|
+
/**
|
|
22089
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
22090
|
+
*/
|
|
22091
|
+
visibility: "public" | "private" | "unlisted";
|
|
21975
22092
|
};
|
|
21976
22093
|
}
|
|
21977
22094
|
|
|
@@ -22743,9 +22860,14 @@ interface CreateBotResponse {
|
|
|
22743
22860
|
*/
|
|
22744
22861
|
readmeUrl: string;
|
|
22745
22862
|
/**
|
|
22746
|
-
*
|
|
22863
|
+
* @deprecated
|
|
22864
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
22747
22865
|
*/
|
|
22748
22866
|
public: boolean;
|
|
22867
|
+
/**
|
|
22868
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
22869
|
+
*/
|
|
22870
|
+
visibility: "public" | "private" | "unlisted";
|
|
22749
22871
|
};
|
|
22750
22872
|
};
|
|
22751
22873
|
/**
|
|
@@ -23402,9 +23524,14 @@ interface UpdateBotResponse {
|
|
|
23402
23524
|
*/
|
|
23403
23525
|
readmeUrl: string;
|
|
23404
23526
|
/**
|
|
23405
|
-
*
|
|
23527
|
+
* @deprecated
|
|
23528
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
23406
23529
|
*/
|
|
23407
23530
|
public: boolean;
|
|
23531
|
+
/**
|
|
23532
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
23533
|
+
*/
|
|
23534
|
+
visibility: "public" | "private" | "unlisted";
|
|
23408
23535
|
};
|
|
23409
23536
|
};
|
|
23410
23537
|
/**
|
|
@@ -23876,9 +24003,14 @@ interface GetBotResponse {
|
|
|
23876
24003
|
*/
|
|
23877
24004
|
readmeUrl: string;
|
|
23878
24005
|
/**
|
|
23879
|
-
*
|
|
24006
|
+
* @deprecated
|
|
24007
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
23880
24008
|
*/
|
|
23881
24009
|
public: boolean;
|
|
24010
|
+
/**
|
|
24011
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
24012
|
+
*/
|
|
24013
|
+
visibility: "public" | "private" | "unlisted";
|
|
23882
24014
|
};
|
|
23883
24015
|
};
|
|
23884
24016
|
/**
|
|
@@ -24888,7 +25020,7 @@ interface GetWorkspaceResponse {
|
|
|
24888
25020
|
interface ListWorkspaceUsagesRequestHeaders {
|
|
24889
25021
|
}
|
|
24890
25022
|
interface ListWorkspaceUsagesRequestQuery {
|
|
24891
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
25023
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
24892
25024
|
period?: string;
|
|
24893
25025
|
}
|
|
24894
25026
|
interface ListWorkspaceUsagesRequestParams {
|
|
@@ -24918,14 +25050,14 @@ interface ListWorkspaceUsagesResponse {
|
|
|
24918
25050
|
/**
|
|
24919
25051
|
* Usage type that can be used
|
|
24920
25052
|
*/
|
|
24921
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
25053
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
24922
25054
|
}[];
|
|
24923
25055
|
}
|
|
24924
25056
|
|
|
24925
25057
|
interface BreakDownWorkspaceUsageByBotRequestHeaders {
|
|
24926
25058
|
}
|
|
24927
25059
|
interface BreakDownWorkspaceUsageByBotRequestQuery {
|
|
24928
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
25060
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
24929
25061
|
period?: string;
|
|
24930
25062
|
}
|
|
24931
25063
|
interface BreakDownWorkspaceUsageByBotRequestParams {
|
|
@@ -24952,7 +25084,7 @@ interface GetAllWorkspaceQuotaCompletionRequestBody {
|
|
|
24952
25084
|
type GetAllWorkspaceQuotaCompletionInput = GetAllWorkspaceQuotaCompletionRequestBody & GetAllWorkspaceQuotaCompletionRequestHeaders & GetAllWorkspaceQuotaCompletionRequestQuery & GetAllWorkspaceQuotaCompletionRequestParams;
|
|
24953
25085
|
interface GetAllWorkspaceQuotaCompletionResponse {
|
|
24954
25086
|
[k: string]: {
|
|
24955
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
25087
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
24956
25088
|
completion: number;
|
|
24957
25089
|
};
|
|
24958
25090
|
}
|
|
@@ -24960,7 +25092,7 @@ interface GetAllWorkspaceQuotaCompletionResponse {
|
|
|
24960
25092
|
interface GetWorkspaceQuotaRequestHeaders {
|
|
24961
25093
|
}
|
|
24962
25094
|
interface GetWorkspaceQuotaRequestQuery {
|
|
24963
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
25095
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
24964
25096
|
period?: string;
|
|
24965
25097
|
}
|
|
24966
25098
|
interface GetWorkspaceQuotaRequestParams {
|
|
@@ -24982,7 +25114,7 @@ interface GetWorkspaceQuotaResponse {
|
|
|
24982
25114
|
/**
|
|
24983
25115
|
* Usage type that can be used
|
|
24984
25116
|
*/
|
|
24985
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
25117
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
24986
25118
|
};
|
|
24987
25119
|
}
|
|
24988
25120
|
|
|
@@ -25010,7 +25142,7 @@ interface ListWorkspaceQuotasResponse {
|
|
|
25010
25142
|
/**
|
|
25011
25143
|
* Usage type that can be used
|
|
25012
25144
|
*/
|
|
25013
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
25145
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
25014
25146
|
}[];
|
|
25015
25147
|
}
|
|
25016
25148
|
|
|
@@ -25674,6 +25806,7 @@ interface CreateIntegrationRequestBody {
|
|
|
25674
25806
|
enabled: boolean;
|
|
25675
25807
|
};
|
|
25676
25808
|
};
|
|
25809
|
+
sdkVersion?: string;
|
|
25677
25810
|
/**
|
|
25678
25811
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
25679
25812
|
*/
|
|
@@ -26412,6 +26545,7 @@ interface ValidateIntegrationCreationRequestBody {
|
|
|
26412
26545
|
enabled: boolean;
|
|
26413
26546
|
};
|
|
26414
26547
|
};
|
|
26548
|
+
sdkVersion?: string;
|
|
26415
26549
|
/**
|
|
26416
26550
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
26417
26551
|
*/
|
|
@@ -26525,6 +26659,7 @@ interface UpdateIntegrationRequestBody {
|
|
|
26525
26659
|
enabled: boolean;
|
|
26526
26660
|
};
|
|
26527
26661
|
};
|
|
26662
|
+
sdkVersion?: string;
|
|
26528
26663
|
channels?: {
|
|
26529
26664
|
[k: string]: {
|
|
26530
26665
|
/**
|
|
@@ -27250,6 +27385,7 @@ interface ValidateIntegrationUpdateRequestBody {
|
|
|
27250
27385
|
enabled: boolean;
|
|
27251
27386
|
};
|
|
27252
27387
|
};
|
|
27388
|
+
sdkVersion?: string;
|
|
27253
27389
|
channels?: {
|
|
27254
27390
|
[k: string]: {
|
|
27255
27391
|
/**
|
|
@@ -28615,6 +28751,7 @@ interface CreateInterfaceRequestBody {
|
|
|
28615
28751
|
attributes?: {
|
|
28616
28752
|
[k: string]: string;
|
|
28617
28753
|
};
|
|
28754
|
+
sdkVersion?: string;
|
|
28618
28755
|
/**
|
|
28619
28756
|
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
28620
28757
|
*/
|
|
@@ -29235,6 +29372,7 @@ interface UpdateInterfaceRequestBody {
|
|
|
29235
29372
|
attributes?: {
|
|
29236
29373
|
[k: string]: string | null;
|
|
29237
29374
|
};
|
|
29375
|
+
sdkVersion?: string;
|
|
29238
29376
|
/**
|
|
29239
29377
|
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
29240
29378
|
*/
|
|
@@ -29643,6 +29781,7 @@ interface CreatePluginRequestBody {
|
|
|
29643
29781
|
attributes?: {
|
|
29644
29782
|
[k: string]: string;
|
|
29645
29783
|
};
|
|
29784
|
+
sdkVersion?: string;
|
|
29646
29785
|
code: {
|
|
29647
29786
|
/**
|
|
29648
29787
|
* Code of plugin bundled for Node.JS
|
|
@@ -29670,9 +29809,14 @@ interface CreatePluginRequestBody {
|
|
|
29670
29809
|
*/
|
|
29671
29810
|
description?: string;
|
|
29672
29811
|
/**
|
|
29673
|
-
*
|
|
29812
|
+
* @deprecated
|
|
29813
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
29674
29814
|
*/
|
|
29675
29815
|
public?: boolean;
|
|
29816
|
+
/**
|
|
29817
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
29818
|
+
*/
|
|
29819
|
+
visibility?: "public" | "private" | "unlisted";
|
|
29676
29820
|
dependencies?: {
|
|
29677
29821
|
/**
|
|
29678
29822
|
* Mapping of interface aliases to interface references
|
|
@@ -29910,9 +30054,14 @@ interface CreatePluginResponse {
|
|
|
29910
30054
|
*/
|
|
29911
30055
|
readmeUrl: string;
|
|
29912
30056
|
/**
|
|
29913
|
-
*
|
|
30057
|
+
* @deprecated
|
|
30058
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
29914
30059
|
*/
|
|
29915
30060
|
public: boolean;
|
|
30061
|
+
/**
|
|
30062
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
30063
|
+
*/
|
|
30064
|
+
visibility: "public" | "private" | "unlisted";
|
|
29916
30065
|
};
|
|
29917
30066
|
}
|
|
29918
30067
|
|
|
@@ -30121,9 +30270,14 @@ interface GetPluginResponse {
|
|
|
30121
30270
|
*/
|
|
30122
30271
|
readmeUrl: string;
|
|
30123
30272
|
/**
|
|
30124
|
-
*
|
|
30273
|
+
* @deprecated
|
|
30274
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
30125
30275
|
*/
|
|
30126
30276
|
public: boolean;
|
|
30277
|
+
/**
|
|
30278
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
30279
|
+
*/
|
|
30280
|
+
visibility: "public" | "private" | "unlisted";
|
|
30127
30281
|
};
|
|
30128
30282
|
}
|
|
30129
30283
|
|
|
@@ -30341,9 +30495,14 @@ interface GetDereferencedPluginResponse {
|
|
|
30341
30495
|
*/
|
|
30342
30496
|
readmeUrl: string;
|
|
30343
30497
|
/**
|
|
30344
|
-
*
|
|
30498
|
+
* @deprecated
|
|
30499
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
30345
30500
|
*/
|
|
30346
30501
|
public: boolean;
|
|
30502
|
+
/**
|
|
30503
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
30504
|
+
*/
|
|
30505
|
+
visibility: "public" | "private" | "unlisted";
|
|
30347
30506
|
};
|
|
30348
30507
|
}
|
|
30349
30508
|
|
|
@@ -30553,9 +30712,14 @@ interface GetPluginByNameResponse {
|
|
|
30553
30712
|
*/
|
|
30554
30713
|
readmeUrl: string;
|
|
30555
30714
|
/**
|
|
30556
|
-
*
|
|
30715
|
+
* @deprecated
|
|
30716
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
30557
30717
|
*/
|
|
30558
30718
|
public: boolean;
|
|
30719
|
+
/**
|
|
30720
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
30721
|
+
*/
|
|
30722
|
+
visibility: "public" | "private" | "unlisted";
|
|
30559
30723
|
};
|
|
30560
30724
|
}
|
|
30561
30725
|
|
|
@@ -30695,6 +30859,7 @@ interface UpdatePluginRequestBody {
|
|
|
30695
30859
|
attributes?: {
|
|
30696
30860
|
[k: string]: string | null;
|
|
30697
30861
|
};
|
|
30862
|
+
sdkVersion?: string;
|
|
30698
30863
|
code?: {
|
|
30699
30864
|
/**
|
|
30700
30865
|
* Code of plugin bundled for Node.JS
|
|
@@ -30722,9 +30887,14 @@ interface UpdatePluginRequestBody {
|
|
|
30722
30887
|
*/
|
|
30723
30888
|
description?: string;
|
|
30724
30889
|
/**
|
|
30725
|
-
*
|
|
30890
|
+
* @deprecated
|
|
30891
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
30726
30892
|
*/
|
|
30727
30893
|
public?: boolean;
|
|
30894
|
+
/**
|
|
30895
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
30896
|
+
*/
|
|
30897
|
+
visibility?: "public" | "private" | "unlisted";
|
|
30728
30898
|
dependencies?: {
|
|
30729
30899
|
/**
|
|
30730
30900
|
* Mapping of interface aliases to interface references
|
|
@@ -30962,9 +31132,14 @@ interface UpdatePluginResponse {
|
|
|
30962
31132
|
*/
|
|
30963
31133
|
readmeUrl: string;
|
|
30964
31134
|
/**
|
|
30965
|
-
*
|
|
31135
|
+
* @deprecated
|
|
31136
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
30966
31137
|
*/
|
|
30967
31138
|
public: boolean;
|
|
31139
|
+
/**
|
|
31140
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
31141
|
+
*/
|
|
31142
|
+
visibility: "public" | "private" | "unlisted";
|
|
30968
31143
|
};
|
|
30969
31144
|
}
|
|
30970
31145
|
|
|
@@ -31032,9 +31207,14 @@ interface ListPluginsResponse {
|
|
|
31032
31207
|
*/
|
|
31033
31208
|
readmeUrl: string;
|
|
31034
31209
|
/**
|
|
31035
|
-
*
|
|
31210
|
+
* @deprecated
|
|
31211
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
31036
31212
|
*/
|
|
31037
31213
|
public: boolean;
|
|
31214
|
+
/**
|
|
31215
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
31216
|
+
*/
|
|
31217
|
+
visibility: "public" | "private" | "unlisted";
|
|
31038
31218
|
}[];
|
|
31039
31219
|
meta: {
|
|
31040
31220
|
/**
|
|
@@ -31062,7 +31242,7 @@ interface GetPluginCodeResponse {
|
|
|
31062
31242
|
interface GetUsageRequestHeaders {
|
|
31063
31243
|
}
|
|
31064
31244
|
interface GetUsageRequestQuery {
|
|
31065
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
31245
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
31066
31246
|
period?: string;
|
|
31067
31247
|
}
|
|
31068
31248
|
interface GetUsageRequestParams {
|
|
@@ -31092,7 +31272,7 @@ interface GetUsageResponse {
|
|
|
31092
31272
|
/**
|
|
31093
31273
|
* Usage type that can be used
|
|
31094
31274
|
*/
|
|
31095
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
31275
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
31096
31276
|
};
|
|
31097
31277
|
}
|
|
31098
31278
|
|
|
@@ -31129,14 +31309,14 @@ interface GetMultipleUsagesResponse {
|
|
|
31129
31309
|
/**
|
|
31130
31310
|
* Usage type that can be used
|
|
31131
31311
|
*/
|
|
31132
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
31312
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
31133
31313
|
}[];
|
|
31134
31314
|
}
|
|
31135
31315
|
|
|
31136
31316
|
interface ListUsageHistoryRequestHeaders {
|
|
31137
31317
|
}
|
|
31138
31318
|
interface ListUsageHistoryRequestQuery {
|
|
31139
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
31319
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
31140
31320
|
}
|
|
31141
31321
|
interface ListUsageHistoryRequestParams {
|
|
31142
31322
|
id: string;
|
|
@@ -31165,14 +31345,14 @@ interface ListUsageHistoryResponse {
|
|
|
31165
31345
|
/**
|
|
31166
31346
|
* Usage type that can be used
|
|
31167
31347
|
*/
|
|
31168
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
31348
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
31169
31349
|
}[];
|
|
31170
31350
|
}
|
|
31171
31351
|
|
|
31172
31352
|
interface ListUsageActivityRequestHeaders {
|
|
31173
31353
|
}
|
|
31174
31354
|
interface ListUsageActivityRequestQuery {
|
|
31175
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
31355
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
31176
31356
|
timestampFrom?: string;
|
|
31177
31357
|
timestampUntil?: string;
|
|
31178
31358
|
nextToken?: string;
|
|
@@ -31200,7 +31380,7 @@ interface ListUsageActivityResponse {
|
|
|
31200
31380
|
interface ListUsageActivityDailyRequestHeaders {
|
|
31201
31381
|
}
|
|
31202
31382
|
interface ListUsageActivityDailyRequestQuery {
|
|
31203
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
31383
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
31204
31384
|
dateFrom?: string;
|
|
31205
31385
|
dateUntil?: string;
|
|
31206
31386
|
nextToken?: string;
|
|
@@ -31322,6 +31502,10 @@ interface UpsertFileRequestBody {
|
|
|
31322
31502
|
*/
|
|
31323
31503
|
configuration: {
|
|
31324
31504
|
parsing?: {
|
|
31505
|
+
/**
|
|
31506
|
+
* The parsing mode to index the file. Using `agent` will use agentic document processing to parse the file and will incurr in AI Spend cost, while `standard` will use a faster but less accurate parser that will not incur in AI Spend cost.
|
|
31507
|
+
*/
|
|
31508
|
+
mode?: "agent" | "standard";
|
|
31325
31509
|
/**
|
|
31326
31510
|
* The minimum length a standalone paragraph should have. If a paragraph is shorter than this, it will be merged with the next immediate paragraph.
|
|
31327
31511
|
*/
|
|
@@ -32375,7 +32559,7 @@ interface ListTablesResponse {
|
|
|
32375
32559
|
*/
|
|
32376
32560
|
name: string;
|
|
32377
32561
|
/**
|
|
32378
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
32562
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
32379
32563
|
*/
|
|
32380
32564
|
factor?: number;
|
|
32381
32565
|
/**
|
|
@@ -32520,7 +32704,7 @@ interface GetTableResponse {
|
|
|
32520
32704
|
*/
|
|
32521
32705
|
name: string;
|
|
32522
32706
|
/**
|
|
32523
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
32707
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
32524
32708
|
*/
|
|
32525
32709
|
factor?: number;
|
|
32526
32710
|
/**
|
|
@@ -32665,7 +32849,7 @@ interface GetOrCreateTableRequestParams {
|
|
|
32665
32849
|
}
|
|
32666
32850
|
interface GetOrCreateTableRequestBody {
|
|
32667
32851
|
/**
|
|
32668
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
32852
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
32669
32853
|
*/
|
|
32670
32854
|
factor?: number;
|
|
32671
32855
|
/**
|
|
@@ -32701,7 +32885,7 @@ interface GetOrCreateTableResponse {
|
|
|
32701
32885
|
*/
|
|
32702
32886
|
name: string;
|
|
32703
32887
|
/**
|
|
32704
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
32888
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
32705
32889
|
*/
|
|
32706
32890
|
factor?: number;
|
|
32707
32891
|
/**
|
|
@@ -32853,7 +33037,7 @@ interface CreateTableRequestBody {
|
|
|
32853
33037
|
*/
|
|
32854
33038
|
name: string;
|
|
32855
33039
|
/**
|
|
32856
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33040
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
32857
33041
|
*/
|
|
32858
33042
|
factor?: number;
|
|
32859
33043
|
/**
|
|
@@ -32889,7 +33073,7 @@ interface CreateTableResponse {
|
|
|
32889
33073
|
*/
|
|
32890
33074
|
name: string;
|
|
32891
33075
|
/**
|
|
32892
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33076
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
32893
33077
|
*/
|
|
32894
33078
|
factor?: number;
|
|
32895
33079
|
/**
|
|
@@ -33027,7 +33211,7 @@ interface DuplicateTableRequestBody {
|
|
|
33027
33211
|
*/
|
|
33028
33212
|
schemaOnly?: boolean;
|
|
33029
33213
|
/**
|
|
33030
|
-
*
|
|
33214
|
+
* Override the factor for the duplicated table. If not provided, the new table will use the same factor as the source table.
|
|
33031
33215
|
*/
|
|
33032
33216
|
factor?: number;
|
|
33033
33217
|
}
|
|
@@ -33043,7 +33227,7 @@ interface DuplicateTableResponse {
|
|
|
33043
33227
|
*/
|
|
33044
33228
|
name: string;
|
|
33045
33229
|
/**
|
|
33046
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33230
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
33047
33231
|
*/
|
|
33048
33232
|
factor?: number;
|
|
33049
33233
|
/**
|
|
@@ -33284,6 +33468,10 @@ interface UpdateTableRequestBody {
|
|
|
33284
33468
|
* Indicates if the table is enabled for computation.
|
|
33285
33469
|
*/
|
|
33286
33470
|
isComputeEnabled?: boolean;
|
|
33471
|
+
/**
|
|
33472
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased, not decreased. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota.
|
|
33473
|
+
*/
|
|
33474
|
+
factor?: number;
|
|
33287
33475
|
}
|
|
33288
33476
|
type UpdateTableInput = UpdateTableRequestBody & UpdateTableRequestHeaders & UpdateTableRequestQuery & UpdateTableRequestParams;
|
|
33289
33477
|
interface UpdateTableResponse {
|
|
@@ -33297,7 +33485,7 @@ interface UpdateTableResponse {
|
|
|
33297
33485
|
*/
|
|
33298
33486
|
name: string;
|
|
33299
33487
|
/**
|
|
33300
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33488
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
33301
33489
|
*/
|
|
33302
33490
|
factor?: number;
|
|
33303
33491
|
/**
|
|
@@ -33454,7 +33642,7 @@ interface RenameTableColumnResponse {
|
|
|
33454
33642
|
*/
|
|
33455
33643
|
name: string;
|
|
33456
33644
|
/**
|
|
33457
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33645
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
33458
33646
|
*/
|
|
33459
33647
|
factor?: number;
|
|
33460
33648
|
/**
|
|
@@ -34131,9 +34319,14 @@ interface Bot {
|
|
|
34131
34319
|
*/
|
|
34132
34320
|
readmeUrl: string;
|
|
34133
34321
|
/**
|
|
34134
|
-
*
|
|
34322
|
+
* @deprecated
|
|
34323
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
34135
34324
|
*/
|
|
34136
34325
|
public: boolean;
|
|
34326
|
+
/**
|
|
34327
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
34328
|
+
*/
|
|
34329
|
+
visibility: "public" | "private" | "unlisted";
|
|
34137
34330
|
};
|
|
34138
34331
|
};
|
|
34139
34332
|
/**
|
|
@@ -35113,9 +35306,14 @@ interface Plugin {
|
|
|
35113
35306
|
*/
|
|
35114
35307
|
readmeUrl: string;
|
|
35115
35308
|
/**
|
|
35116
|
-
*
|
|
35309
|
+
* @deprecated
|
|
35310
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
35117
35311
|
*/
|
|
35118
35312
|
public: boolean;
|
|
35313
|
+
/**
|
|
35314
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
35315
|
+
*/
|
|
35316
|
+
visibility: "public" | "private" | "unlisted";
|
|
35119
35317
|
}
|
|
35120
35318
|
interface Workspace {
|
|
35121
35319
|
id: string;
|
|
@@ -35177,7 +35375,7 @@ interface Usage {
|
|
|
35177
35375
|
/**
|
|
35178
35376
|
* Usage type that can be used
|
|
35179
35377
|
*/
|
|
35180
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
35378
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
35181
35379
|
}
|
|
35182
35380
|
interface Issue {
|
|
35183
35381
|
id: string;
|
|
@@ -35568,7 +35766,7 @@ interface Table {
|
|
|
35568
35766
|
*/
|
|
35569
35767
|
name: string;
|
|
35570
35768
|
/**
|
|
35571
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
35769
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
35572
35770
|
*/
|
|
35573
35771
|
factor?: number;
|
|
35574
35772
|
/**
|
|
@@ -36084,6 +36282,8 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36084
36282
|
sortField?: "createdAt" | "updatedAt" | undefined;
|
|
36085
36283
|
sortDirection?: "asc" | "desc" | undefined;
|
|
36086
36284
|
participantIds?: string[] | undefined;
|
|
36285
|
+
afterDate?: string | undefined;
|
|
36286
|
+
beforeDate?: string | undefined;
|
|
36087
36287
|
}) => AsyncCollection<{
|
|
36088
36288
|
id: string;
|
|
36089
36289
|
currentTaskId?: string;
|
|
@@ -36359,6 +36559,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36359
36559
|
iconUrl: string;
|
|
36360
36560
|
readmeUrl: string;
|
|
36361
36561
|
public: boolean;
|
|
36562
|
+
visibility: "public" | "private" | "unlisted";
|
|
36362
36563
|
}>;
|
|
36363
36564
|
publicPlugins: (props: {
|
|
36364
36565
|
name?: string | undefined;
|
|
@@ -36374,6 +36575,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36374
36575
|
iconUrl: string;
|
|
36375
36576
|
readmeUrl: string;
|
|
36376
36577
|
public: boolean;
|
|
36578
|
+
visibility: "public" | "private" | "unlisted";
|
|
36377
36579
|
}>;
|
|
36378
36580
|
activities: (props: {
|
|
36379
36581
|
botId: string;
|
|
@@ -36449,7 +36651,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36449
36651
|
};
|
|
36450
36652
|
}>;
|
|
36451
36653
|
usageActivity: (props: {
|
|
36452
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
36654
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
36453
36655
|
id: string;
|
|
36454
36656
|
timestampFrom?: string | undefined;
|
|
36455
36657
|
timestampUntil?: string | undefined;
|
|
@@ -36462,7 +36664,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36462
36664
|
};
|
|
36463
36665
|
}>;
|
|
36464
36666
|
usageActivityDaily: (props: {
|
|
36465
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
36667
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
36466
36668
|
id: string;
|
|
36467
36669
|
dateFrom?: string | undefined;
|
|
36468
36670
|
dateUntil?: string | undefined;
|