@botpress/client 1.27.1 → 1.28.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 +9 -9
- package/dist/bundle.cjs.map +3 -3
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +3 -3
- package/dist/index.d.ts +684 -86
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +3 -3
- 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
|
}
|
|
@@ -1117,6 +1119,8 @@ interface ListMessagesRequestQuery$1 {
|
|
|
1117
1119
|
tags?: {
|
|
1118
1120
|
[k: string]: string;
|
|
1119
1121
|
};
|
|
1122
|
+
afterDate?: string;
|
|
1123
|
+
beforeDate?: string;
|
|
1120
1124
|
}
|
|
1121
1125
|
interface ListMessagesRequestParams$1 {
|
|
1122
1126
|
}
|
|
@@ -2923,6 +2927,8 @@ declare class Client$8 extends Client$9 {
|
|
|
2923
2927
|
sortField?: "createdAt" | "updatedAt" | undefined;
|
|
2924
2928
|
sortDirection?: "asc" | "desc" | undefined;
|
|
2925
2929
|
participantIds?: string[] | undefined;
|
|
2930
|
+
afterDate?: string | undefined;
|
|
2931
|
+
beforeDate?: string | undefined;
|
|
2926
2932
|
}) => AsyncCollection<{
|
|
2927
2933
|
id: string;
|
|
2928
2934
|
currentTaskId?: string;
|
|
@@ -2971,6 +2977,8 @@ declare class Client$8 extends Client$9 {
|
|
|
2971
2977
|
tags?: {
|
|
2972
2978
|
[x: string]: string;
|
|
2973
2979
|
} | undefined;
|
|
2980
|
+
afterDate?: string | undefined;
|
|
2981
|
+
beforeDate?: string | undefined;
|
|
2974
2982
|
conversationId?: string | undefined;
|
|
2975
2983
|
}) => AsyncCollection<{
|
|
2976
2984
|
id: string;
|
|
@@ -3286,6 +3294,10 @@ interface ListPublicIntegrationsResponse$1 {
|
|
|
3286
3294
|
* Status of the integration version verification
|
|
3287
3295
|
*/
|
|
3288
3296
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
3297
|
+
/**
|
|
3298
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
3299
|
+
*/
|
|
3300
|
+
lifecycleStatus: "published" | "deprecated";
|
|
3289
3301
|
ownerWorkspace: {
|
|
3290
3302
|
id: string;
|
|
3291
3303
|
handle: string | null;
|
|
@@ -3724,6 +3736,10 @@ interface GetPublicIntegrationByIdResponse$1 {
|
|
|
3724
3736
|
* Status of the integration version verification
|
|
3725
3737
|
*/
|
|
3726
3738
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
3739
|
+
/**
|
|
3740
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
3741
|
+
*/
|
|
3742
|
+
lifecycleStatus: "published" | "deprecated";
|
|
3727
3743
|
/**
|
|
3728
3744
|
* 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.
|
|
3729
3745
|
*/
|
|
@@ -4136,6 +4152,10 @@ interface GetPublicIntegrationResponse$1 {
|
|
|
4136
4152
|
* Status of the integration version verification
|
|
4137
4153
|
*/
|
|
4138
4154
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
4155
|
+
/**
|
|
4156
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
4157
|
+
*/
|
|
4158
|
+
lifecycleStatus: "published" | "deprecated";
|
|
4139
4159
|
/**
|
|
4140
4160
|
* 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.
|
|
4141
4161
|
*/
|
|
@@ -4203,9 +4223,18 @@ interface ListPublicPluginsResponse$1 {
|
|
|
4203
4223
|
*/
|
|
4204
4224
|
readmeUrl: string;
|
|
4205
4225
|
/**
|
|
4206
|
-
*
|
|
4226
|
+
* @deprecated
|
|
4227
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
4207
4228
|
*/
|
|
4208
4229
|
public: boolean;
|
|
4230
|
+
/**
|
|
4231
|
+
* 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.
|
|
4232
|
+
*/
|
|
4233
|
+
visibility: "public" | "private" | "unlisted";
|
|
4234
|
+
/**
|
|
4235
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
4236
|
+
*/
|
|
4237
|
+
lifecycleStatus: "published" | "deprecated";
|
|
4209
4238
|
}[];
|
|
4210
4239
|
meta: {
|
|
4211
4240
|
/**
|
|
@@ -4420,9 +4449,18 @@ interface GetPublicPluginByIdResponse$1 {
|
|
|
4420
4449
|
*/
|
|
4421
4450
|
readmeUrl: string;
|
|
4422
4451
|
/**
|
|
4423
|
-
*
|
|
4452
|
+
* @deprecated
|
|
4453
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
4424
4454
|
*/
|
|
4425
4455
|
public: boolean;
|
|
4456
|
+
/**
|
|
4457
|
+
* 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.
|
|
4458
|
+
*/
|
|
4459
|
+
visibility: "public" | "private" | "unlisted";
|
|
4460
|
+
/**
|
|
4461
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
4462
|
+
*/
|
|
4463
|
+
lifecycleStatus: "published" | "deprecated";
|
|
4426
4464
|
};
|
|
4427
4465
|
}
|
|
4428
4466
|
|
|
@@ -4640,9 +4678,18 @@ interface GetDereferencedPublicPluginByIdResponse$1 {
|
|
|
4640
4678
|
*/
|
|
4641
4679
|
readmeUrl: string;
|
|
4642
4680
|
/**
|
|
4643
|
-
*
|
|
4681
|
+
* @deprecated
|
|
4682
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
4644
4683
|
*/
|
|
4645
4684
|
public: boolean;
|
|
4685
|
+
/**
|
|
4686
|
+
* 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.
|
|
4687
|
+
*/
|
|
4688
|
+
visibility: "public" | "private" | "unlisted";
|
|
4689
|
+
/**
|
|
4690
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
4691
|
+
*/
|
|
4692
|
+
lifecycleStatus: "published" | "deprecated";
|
|
4646
4693
|
};
|
|
4647
4694
|
}
|
|
4648
4695
|
|
|
@@ -4852,9 +4899,18 @@ interface GetPublicPluginResponse$1 {
|
|
|
4852
4899
|
*/
|
|
4853
4900
|
readmeUrl: string;
|
|
4854
4901
|
/**
|
|
4855
|
-
*
|
|
4902
|
+
* @deprecated
|
|
4903
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
4856
4904
|
*/
|
|
4857
4905
|
public: boolean;
|
|
4906
|
+
/**
|
|
4907
|
+
* 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.
|
|
4908
|
+
*/
|
|
4909
|
+
visibility: "public" | "private" | "unlisted";
|
|
4910
|
+
/**
|
|
4911
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
4912
|
+
*/
|
|
4913
|
+
lifecycleStatus: "published" | "deprecated";
|
|
4858
4914
|
};
|
|
4859
4915
|
}
|
|
4860
4916
|
|
|
@@ -5459,6 +5515,10 @@ interface CreateBotRequestBody$1 {
|
|
|
5459
5515
|
* Optional name for the bot, if not provided will be auto-generated
|
|
5460
5516
|
*/
|
|
5461
5517
|
name?: string;
|
|
5518
|
+
/**
|
|
5519
|
+
* Optional description for the bot
|
|
5520
|
+
*/
|
|
5521
|
+
description?: string;
|
|
5462
5522
|
/**
|
|
5463
5523
|
* Media files associated with the [Bot](#schema_bot)
|
|
5464
5524
|
*/
|
|
@@ -5558,6 +5618,10 @@ interface CreateBotResponse$1 {
|
|
|
5558
5618
|
* Status of the integration version verification
|
|
5559
5619
|
*/
|
|
5560
5620
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
5621
|
+
/**
|
|
5622
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
5623
|
+
*/
|
|
5624
|
+
lifecycleStatus: "published" | "deprecated";
|
|
5561
5625
|
};
|
|
5562
5626
|
};
|
|
5563
5627
|
/**
|
|
@@ -5626,9 +5690,18 @@ interface CreateBotResponse$1 {
|
|
|
5626
5690
|
*/
|
|
5627
5691
|
readmeUrl: string;
|
|
5628
5692
|
/**
|
|
5629
|
-
*
|
|
5693
|
+
* @deprecated
|
|
5694
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
5630
5695
|
*/
|
|
5631
5696
|
public: boolean;
|
|
5697
|
+
/**
|
|
5698
|
+
* 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.
|
|
5699
|
+
*/
|
|
5700
|
+
visibility: "public" | "private" | "unlisted";
|
|
5701
|
+
/**
|
|
5702
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
5703
|
+
*/
|
|
5704
|
+
lifecycleStatus: "published" | "deprecated";
|
|
5632
5705
|
};
|
|
5633
5706
|
};
|
|
5634
5707
|
/**
|
|
@@ -5839,6 +5912,10 @@ interface CreateBotResponse$1 {
|
|
|
5839
5912
|
* Name of the [Bot](#schema_bot)
|
|
5840
5913
|
*/
|
|
5841
5914
|
name: string;
|
|
5915
|
+
/**
|
|
5916
|
+
* Description of the [Bot](#schema_bot)
|
|
5917
|
+
*/
|
|
5918
|
+
description?: string;
|
|
5842
5919
|
/**
|
|
5843
5920
|
* Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
|
|
5844
5921
|
*/
|
|
@@ -6121,6 +6198,10 @@ interface UpdateBotRequestBody$1 {
|
|
|
6121
6198
|
* Optional name for the bot, if not provided will be auto-generated
|
|
6122
6199
|
*/
|
|
6123
6200
|
name?: string;
|
|
6201
|
+
/**
|
|
6202
|
+
* Optional description for the bot
|
|
6203
|
+
*/
|
|
6204
|
+
description?: string;
|
|
6124
6205
|
/**
|
|
6125
6206
|
* Media files associated with the [Bot](#schema_bot)
|
|
6126
6207
|
*/
|
|
@@ -6217,6 +6298,10 @@ interface UpdateBotResponse$1 {
|
|
|
6217
6298
|
* Status of the integration version verification
|
|
6218
6299
|
*/
|
|
6219
6300
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
6301
|
+
/**
|
|
6302
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
6303
|
+
*/
|
|
6304
|
+
lifecycleStatus: "published" | "deprecated";
|
|
6220
6305
|
};
|
|
6221
6306
|
};
|
|
6222
6307
|
/**
|
|
@@ -6285,9 +6370,18 @@ interface UpdateBotResponse$1 {
|
|
|
6285
6370
|
*/
|
|
6286
6371
|
readmeUrl: string;
|
|
6287
6372
|
/**
|
|
6288
|
-
*
|
|
6373
|
+
* @deprecated
|
|
6374
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
6289
6375
|
*/
|
|
6290
6376
|
public: boolean;
|
|
6377
|
+
/**
|
|
6378
|
+
* 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.
|
|
6379
|
+
*/
|
|
6380
|
+
visibility: "public" | "private" | "unlisted";
|
|
6381
|
+
/**
|
|
6382
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
6383
|
+
*/
|
|
6384
|
+
lifecycleStatus: "published" | "deprecated";
|
|
6291
6385
|
};
|
|
6292
6386
|
};
|
|
6293
6387
|
/**
|
|
@@ -6498,6 +6592,10 @@ interface UpdateBotResponse$1 {
|
|
|
6498
6592
|
* Name of the [Bot](#schema_bot)
|
|
6499
6593
|
*/
|
|
6500
6594
|
name: string;
|
|
6595
|
+
/**
|
|
6596
|
+
* Description of the [Bot](#schema_bot)
|
|
6597
|
+
*/
|
|
6598
|
+
description?: string;
|
|
6501
6599
|
/**
|
|
6502
6600
|
* Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
|
|
6503
6601
|
*/
|
|
@@ -6691,6 +6789,10 @@ interface GetBotResponse$1 {
|
|
|
6691
6789
|
* Status of the integration version verification
|
|
6692
6790
|
*/
|
|
6693
6791
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
6792
|
+
/**
|
|
6793
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
6794
|
+
*/
|
|
6795
|
+
lifecycleStatus: "published" | "deprecated";
|
|
6694
6796
|
};
|
|
6695
6797
|
};
|
|
6696
6798
|
/**
|
|
@@ -6759,9 +6861,18 @@ interface GetBotResponse$1 {
|
|
|
6759
6861
|
*/
|
|
6760
6862
|
readmeUrl: string;
|
|
6761
6863
|
/**
|
|
6762
|
-
*
|
|
6864
|
+
* @deprecated
|
|
6865
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
6763
6866
|
*/
|
|
6764
6867
|
public: boolean;
|
|
6868
|
+
/**
|
|
6869
|
+
* 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.
|
|
6870
|
+
*/
|
|
6871
|
+
visibility: "public" | "private" | "unlisted";
|
|
6872
|
+
/**
|
|
6873
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
6874
|
+
*/
|
|
6875
|
+
lifecycleStatus: "published" | "deprecated";
|
|
6765
6876
|
};
|
|
6766
6877
|
};
|
|
6767
6878
|
/**
|
|
@@ -6972,6 +7083,10 @@ interface GetBotResponse$1 {
|
|
|
6972
7083
|
* Name of the [Bot](#schema_bot)
|
|
6973
7084
|
*/
|
|
6974
7085
|
name: string;
|
|
7086
|
+
/**
|
|
7087
|
+
* Description of the [Bot](#schema_bot)
|
|
7088
|
+
*/
|
|
7089
|
+
description?: string;
|
|
6975
7090
|
/**
|
|
6976
7091
|
* Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
|
|
6977
7092
|
*/
|
|
@@ -7771,7 +7886,7 @@ interface GetWorkspaceResponse$1 {
|
|
|
7771
7886
|
interface ListWorkspaceUsagesRequestHeaders$1 {
|
|
7772
7887
|
}
|
|
7773
7888
|
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";
|
|
7889
|
+
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
7890
|
period?: string;
|
|
7776
7891
|
}
|
|
7777
7892
|
interface ListWorkspaceUsagesRequestParams$1 {
|
|
@@ -7801,14 +7916,14 @@ interface ListWorkspaceUsagesResponse$1 {
|
|
|
7801
7916
|
/**
|
|
7802
7917
|
* Usage type that can be used
|
|
7803
7918
|
*/
|
|
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";
|
|
7919
|
+
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
7920
|
}[];
|
|
7806
7921
|
}
|
|
7807
7922
|
|
|
7808
7923
|
interface BreakDownWorkspaceUsageByBotRequestHeaders$1 {
|
|
7809
7924
|
}
|
|
7810
7925
|
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";
|
|
7926
|
+
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
7927
|
period?: string;
|
|
7813
7928
|
}
|
|
7814
7929
|
interface BreakDownWorkspaceUsageByBotRequestParams$1 {
|
|
@@ -7835,7 +7950,7 @@ interface GetAllWorkspaceQuotaCompletionRequestBody$1 {
|
|
|
7835
7950
|
type GetAllWorkspaceQuotaCompletionInput$1 = GetAllWorkspaceQuotaCompletionRequestBody$1 & GetAllWorkspaceQuotaCompletionRequestHeaders$1 & GetAllWorkspaceQuotaCompletionRequestQuery$1 & GetAllWorkspaceQuotaCompletionRequestParams$1;
|
|
7836
7951
|
interface GetAllWorkspaceQuotaCompletionResponse$1 {
|
|
7837
7952
|
[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";
|
|
7953
|
+
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
7954
|
completion: number;
|
|
7840
7955
|
};
|
|
7841
7956
|
}
|
|
@@ -7843,7 +7958,7 @@ interface GetAllWorkspaceQuotaCompletionResponse$1 {
|
|
|
7843
7958
|
interface GetWorkspaceQuotaRequestHeaders$1 {
|
|
7844
7959
|
}
|
|
7845
7960
|
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";
|
|
7961
|
+
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
7962
|
period?: string;
|
|
7848
7963
|
}
|
|
7849
7964
|
interface GetWorkspaceQuotaRequestParams$1 {
|
|
@@ -7865,7 +7980,7 @@ interface GetWorkspaceQuotaResponse$1 {
|
|
|
7865
7980
|
/**
|
|
7866
7981
|
* Usage type that can be used
|
|
7867
7982
|
*/
|
|
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";
|
|
7983
|
+
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
7984
|
};
|
|
7870
7985
|
}
|
|
7871
7986
|
|
|
@@ -7893,7 +8008,7 @@ interface ListWorkspaceQuotasResponse$1 {
|
|
|
7893
8008
|
/**
|
|
7894
8009
|
* Usage type that can be used
|
|
7895
8010
|
*/
|
|
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";
|
|
8011
|
+
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
8012
|
}[];
|
|
7898
8013
|
}
|
|
7899
8014
|
|
|
@@ -8556,6 +8671,7 @@ interface CreateIntegrationRequestBody$1 {
|
|
|
8556
8671
|
enabled: boolean;
|
|
8557
8672
|
};
|
|
8558
8673
|
};
|
|
8674
|
+
sdkVersion?: string;
|
|
8559
8675
|
/**
|
|
8560
8676
|
* 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
8677
|
*/
|
|
@@ -8987,6 +9103,10 @@ interface CreateIntegrationResponse$1 {
|
|
|
8987
9103
|
* Status of the integration version verification
|
|
8988
9104
|
*/
|
|
8989
9105
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
9106
|
+
/**
|
|
9107
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
9108
|
+
*/
|
|
9109
|
+
lifecycleStatus: "published" | "deprecated";
|
|
8990
9110
|
/**
|
|
8991
9111
|
* 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.
|
|
8992
9112
|
*/
|
|
@@ -9294,6 +9414,7 @@ interface ValidateIntegrationCreationRequestBody$1 {
|
|
|
9294
9414
|
enabled: boolean;
|
|
9295
9415
|
};
|
|
9296
9416
|
};
|
|
9417
|
+
sdkVersion?: string;
|
|
9297
9418
|
/**
|
|
9298
9419
|
* 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
9420
|
*/
|
|
@@ -9407,6 +9528,7 @@ interface UpdateIntegrationRequestBody$1 {
|
|
|
9407
9528
|
enabled: boolean;
|
|
9408
9529
|
};
|
|
9409
9530
|
};
|
|
9531
|
+
sdkVersion?: string;
|
|
9410
9532
|
channels?: {
|
|
9411
9533
|
[k: string]: {
|
|
9412
9534
|
/**
|
|
@@ -10061,6 +10183,10 @@ interface UpdateIntegrationResponse$1 {
|
|
|
10061
10183
|
* Status of the integration version verification
|
|
10062
10184
|
*/
|
|
10063
10185
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
10186
|
+
/**
|
|
10187
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
10188
|
+
*/
|
|
10189
|
+
lifecycleStatus: "published" | "deprecated";
|
|
10064
10190
|
/**
|
|
10065
10191
|
* 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.
|
|
10066
10192
|
*/
|
|
@@ -10132,6 +10258,7 @@ interface ValidateIntegrationUpdateRequestBody$1 {
|
|
|
10132
10258
|
enabled: boolean;
|
|
10133
10259
|
};
|
|
10134
10260
|
};
|
|
10261
|
+
sdkVersion?: string;
|
|
10135
10262
|
channels?: {
|
|
10136
10263
|
[k: string]: {
|
|
10137
10264
|
/**
|
|
@@ -10473,6 +10600,10 @@ interface ListIntegrationsResponse$1 {
|
|
|
10473
10600
|
* Status of the integration version verification
|
|
10474
10601
|
*/
|
|
10475
10602
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
10603
|
+
/**
|
|
10604
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
10605
|
+
*/
|
|
10606
|
+
lifecycleStatus: "published" | "deprecated";
|
|
10476
10607
|
/**
|
|
10477
10608
|
* Metadata about which fields matched the search criteria
|
|
10478
10609
|
*/
|
|
@@ -10907,6 +11038,10 @@ interface GetIntegrationResponse$1 {
|
|
|
10907
11038
|
* Status of the integration version verification
|
|
10908
11039
|
*/
|
|
10909
11040
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
11041
|
+
/**
|
|
11042
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
11043
|
+
*/
|
|
11044
|
+
lifecycleStatus: "published" | "deprecated";
|
|
10910
11045
|
/**
|
|
10911
11046
|
* 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.
|
|
10912
11047
|
*/
|
|
@@ -11339,6 +11474,10 @@ interface GetIntegrationByNameResponse$1 {
|
|
|
11339
11474
|
* Status of the integration version verification
|
|
11340
11475
|
*/
|
|
11341
11476
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
11477
|
+
/**
|
|
11478
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
11479
|
+
*/
|
|
11480
|
+
lifecycleStatus: "published" | "deprecated";
|
|
11342
11481
|
/**
|
|
11343
11482
|
* 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.
|
|
11344
11483
|
*/
|
|
@@ -11497,6 +11636,7 @@ interface CreateInterfaceRequestBody$1 {
|
|
|
11497
11636
|
attributes?: {
|
|
11498
11637
|
[k: string]: string;
|
|
11499
11638
|
};
|
|
11639
|
+
sdkVersion?: string;
|
|
11500
11640
|
/**
|
|
11501
11641
|
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
11502
11642
|
*/
|
|
@@ -12117,6 +12257,7 @@ interface UpdateInterfaceRequestBody$1 {
|
|
|
12117
12257
|
attributes?: {
|
|
12118
12258
|
[k: string]: string | null;
|
|
12119
12259
|
};
|
|
12260
|
+
sdkVersion?: string;
|
|
12120
12261
|
/**
|
|
12121
12262
|
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
12122
12263
|
*/
|
|
@@ -12525,6 +12666,7 @@ interface CreatePluginRequestBody$1 {
|
|
|
12525
12666
|
attributes?: {
|
|
12526
12667
|
[k: string]: string;
|
|
12527
12668
|
};
|
|
12669
|
+
sdkVersion?: string;
|
|
12528
12670
|
code: {
|
|
12529
12671
|
/**
|
|
12530
12672
|
* Code of plugin bundled for Node.JS
|
|
@@ -12552,9 +12694,14 @@ interface CreatePluginRequestBody$1 {
|
|
|
12552
12694
|
*/
|
|
12553
12695
|
description?: string;
|
|
12554
12696
|
/**
|
|
12555
|
-
*
|
|
12697
|
+
* @deprecated
|
|
12698
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
12556
12699
|
*/
|
|
12557
12700
|
public?: boolean;
|
|
12701
|
+
/**
|
|
12702
|
+
* 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.
|
|
12703
|
+
*/
|
|
12704
|
+
visibility?: "public" | "private" | "unlisted";
|
|
12558
12705
|
dependencies?: {
|
|
12559
12706
|
/**
|
|
12560
12707
|
* Mapping of interface aliases to interface references
|
|
@@ -12792,9 +12939,18 @@ interface CreatePluginResponse$1 {
|
|
|
12792
12939
|
*/
|
|
12793
12940
|
readmeUrl: string;
|
|
12794
12941
|
/**
|
|
12795
|
-
*
|
|
12942
|
+
* @deprecated
|
|
12943
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
12796
12944
|
*/
|
|
12797
12945
|
public: boolean;
|
|
12946
|
+
/**
|
|
12947
|
+
* 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.
|
|
12948
|
+
*/
|
|
12949
|
+
visibility: "public" | "private" | "unlisted";
|
|
12950
|
+
/**
|
|
12951
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
12952
|
+
*/
|
|
12953
|
+
lifecycleStatus: "published" | "deprecated";
|
|
12798
12954
|
};
|
|
12799
12955
|
}
|
|
12800
12956
|
|
|
@@ -13003,9 +13159,18 @@ interface GetPluginResponse$1 {
|
|
|
13003
13159
|
*/
|
|
13004
13160
|
readmeUrl: string;
|
|
13005
13161
|
/**
|
|
13006
|
-
*
|
|
13162
|
+
* @deprecated
|
|
13163
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13007
13164
|
*/
|
|
13008
13165
|
public: boolean;
|
|
13166
|
+
/**
|
|
13167
|
+
* 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.
|
|
13168
|
+
*/
|
|
13169
|
+
visibility: "public" | "private" | "unlisted";
|
|
13170
|
+
/**
|
|
13171
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
13172
|
+
*/
|
|
13173
|
+
lifecycleStatus: "published" | "deprecated";
|
|
13009
13174
|
};
|
|
13010
13175
|
}
|
|
13011
13176
|
|
|
@@ -13223,9 +13388,18 @@ interface GetDereferencedPluginResponse$1 {
|
|
|
13223
13388
|
*/
|
|
13224
13389
|
readmeUrl: string;
|
|
13225
13390
|
/**
|
|
13226
|
-
*
|
|
13391
|
+
* @deprecated
|
|
13392
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13227
13393
|
*/
|
|
13228
13394
|
public: boolean;
|
|
13395
|
+
/**
|
|
13396
|
+
* 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.
|
|
13397
|
+
*/
|
|
13398
|
+
visibility: "public" | "private" | "unlisted";
|
|
13399
|
+
/**
|
|
13400
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
13401
|
+
*/
|
|
13402
|
+
lifecycleStatus: "published" | "deprecated";
|
|
13229
13403
|
};
|
|
13230
13404
|
}
|
|
13231
13405
|
|
|
@@ -13435,9 +13609,18 @@ interface GetPluginByNameResponse$1 {
|
|
|
13435
13609
|
*/
|
|
13436
13610
|
readmeUrl: string;
|
|
13437
13611
|
/**
|
|
13438
|
-
*
|
|
13612
|
+
* @deprecated
|
|
13613
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13439
13614
|
*/
|
|
13440
13615
|
public: boolean;
|
|
13616
|
+
/**
|
|
13617
|
+
* 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.
|
|
13618
|
+
*/
|
|
13619
|
+
visibility: "public" | "private" | "unlisted";
|
|
13620
|
+
/**
|
|
13621
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
13622
|
+
*/
|
|
13623
|
+
lifecycleStatus: "published" | "deprecated";
|
|
13441
13624
|
};
|
|
13442
13625
|
}
|
|
13443
13626
|
|
|
@@ -13577,6 +13760,7 @@ interface UpdatePluginRequestBody$1 {
|
|
|
13577
13760
|
attributes?: {
|
|
13578
13761
|
[k: string]: string | null;
|
|
13579
13762
|
};
|
|
13763
|
+
sdkVersion?: string;
|
|
13580
13764
|
code?: {
|
|
13581
13765
|
/**
|
|
13582
13766
|
* Code of plugin bundled for Node.JS
|
|
@@ -13604,9 +13788,14 @@ interface UpdatePluginRequestBody$1 {
|
|
|
13604
13788
|
*/
|
|
13605
13789
|
description?: string;
|
|
13606
13790
|
/**
|
|
13607
|
-
*
|
|
13791
|
+
* @deprecated
|
|
13792
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13608
13793
|
*/
|
|
13609
13794
|
public?: boolean;
|
|
13795
|
+
/**
|
|
13796
|
+
* 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.
|
|
13797
|
+
*/
|
|
13798
|
+
visibility?: "public" | "private" | "unlisted";
|
|
13610
13799
|
dependencies?: {
|
|
13611
13800
|
/**
|
|
13612
13801
|
* Mapping of interface aliases to interface references
|
|
@@ -13844,9 +14033,18 @@ interface UpdatePluginResponse$1 {
|
|
|
13844
14033
|
*/
|
|
13845
14034
|
readmeUrl: string;
|
|
13846
14035
|
/**
|
|
13847
|
-
*
|
|
14036
|
+
* @deprecated
|
|
14037
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13848
14038
|
*/
|
|
13849
14039
|
public: boolean;
|
|
14040
|
+
/**
|
|
14041
|
+
* 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.
|
|
14042
|
+
*/
|
|
14043
|
+
visibility: "public" | "private" | "unlisted";
|
|
14044
|
+
/**
|
|
14045
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
14046
|
+
*/
|
|
14047
|
+
lifecycleStatus: "published" | "deprecated";
|
|
13850
14048
|
};
|
|
13851
14049
|
}
|
|
13852
14050
|
|
|
@@ -13914,9 +14112,18 @@ interface ListPluginsResponse$1 {
|
|
|
13914
14112
|
*/
|
|
13915
14113
|
readmeUrl: string;
|
|
13916
14114
|
/**
|
|
13917
|
-
*
|
|
14115
|
+
* @deprecated
|
|
14116
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13918
14117
|
*/
|
|
13919
14118
|
public: boolean;
|
|
14119
|
+
/**
|
|
14120
|
+
* 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.
|
|
14121
|
+
*/
|
|
14122
|
+
visibility: "public" | "private" | "unlisted";
|
|
14123
|
+
/**
|
|
14124
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
14125
|
+
*/
|
|
14126
|
+
lifecycleStatus: "published" | "deprecated";
|
|
13920
14127
|
}[];
|
|
13921
14128
|
meta: {
|
|
13922
14129
|
/**
|
|
@@ -13944,7 +14151,7 @@ interface GetPluginCodeResponse$1 {
|
|
|
13944
14151
|
interface GetUsageRequestHeaders$1 {
|
|
13945
14152
|
}
|
|
13946
14153
|
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";
|
|
14154
|
+
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
14155
|
period?: string;
|
|
13949
14156
|
}
|
|
13950
14157
|
interface GetUsageRequestParams$1 {
|
|
@@ -13974,7 +14181,7 @@ interface GetUsageResponse$1 {
|
|
|
13974
14181
|
/**
|
|
13975
14182
|
* Usage type that can be used
|
|
13976
14183
|
*/
|
|
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";
|
|
14184
|
+
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
14185
|
};
|
|
13979
14186
|
}
|
|
13980
14187
|
|
|
@@ -14011,14 +14218,14 @@ interface GetMultipleUsagesResponse$1 {
|
|
|
14011
14218
|
/**
|
|
14012
14219
|
* Usage type that can be used
|
|
14013
14220
|
*/
|
|
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";
|
|
14221
|
+
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
14222
|
}[];
|
|
14016
14223
|
}
|
|
14017
14224
|
|
|
14018
14225
|
interface ListUsageHistoryRequestHeaders$1 {
|
|
14019
14226
|
}
|
|
14020
14227
|
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";
|
|
14228
|
+
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
14229
|
}
|
|
14023
14230
|
interface ListUsageHistoryRequestParams$1 {
|
|
14024
14231
|
id: string;
|
|
@@ -14047,14 +14254,14 @@ interface ListUsageHistoryResponse$1 {
|
|
|
14047
14254
|
/**
|
|
14048
14255
|
* Usage type that can be used
|
|
14049
14256
|
*/
|
|
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";
|
|
14257
|
+
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
14258
|
}[];
|
|
14052
14259
|
}
|
|
14053
14260
|
|
|
14054
14261
|
interface ListUsageActivityRequestHeaders$1 {
|
|
14055
14262
|
}
|
|
14056
14263
|
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";
|
|
14264
|
+
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
14265
|
timestampFrom?: string;
|
|
14059
14266
|
timestampUntil?: string;
|
|
14060
14267
|
nextToken?: string;
|
|
@@ -14082,7 +14289,7 @@ interface ListUsageActivityResponse$1 {
|
|
|
14082
14289
|
interface ListUsageActivityDailyRequestHeaders$1 {
|
|
14083
14290
|
}
|
|
14084
14291
|
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";
|
|
14292
|
+
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
14293
|
dateFrom?: string;
|
|
14087
14294
|
dateUntil?: string;
|
|
14088
14295
|
nextToken?: string;
|
|
@@ -14327,6 +14534,7 @@ declare class Client$6 extends Client$7 {
|
|
|
14327
14534
|
public: boolean;
|
|
14328
14535
|
visibility: "public" | "private" | "unlisted";
|
|
14329
14536
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
14537
|
+
lifecycleStatus: "published" | "deprecated";
|
|
14330
14538
|
ownerWorkspace: {
|
|
14331
14539
|
id: string;
|
|
14332
14540
|
handle: string | null;
|
|
@@ -14421,6 +14629,7 @@ declare class Client$6 extends Client$7 {
|
|
|
14421
14629
|
public: boolean;
|
|
14422
14630
|
visibility: "public" | "private" | "unlisted";
|
|
14423
14631
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
14632
|
+
lifecycleStatus: "published" | "deprecated";
|
|
14424
14633
|
matchedOn?: {
|
|
14425
14634
|
name?: boolean;
|
|
14426
14635
|
title?: boolean;
|
|
@@ -14463,7 +14672,7 @@ declare class Client$6 extends Client$7 {
|
|
|
14463
14672
|
createdAt: string;
|
|
14464
14673
|
}>;
|
|
14465
14674
|
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";
|
|
14675
|
+
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
14676
|
id: string;
|
|
14468
14677
|
timestampFrom?: string | undefined;
|
|
14469
14678
|
timestampUntil?: string | undefined;
|
|
@@ -14476,7 +14685,7 @@ declare class Client$6 extends Client$7 {
|
|
|
14476
14685
|
};
|
|
14477
14686
|
}>;
|
|
14478
14687
|
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";
|
|
14688
|
+
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
14689
|
id: string;
|
|
14481
14690
|
dateFrom?: string | undefined;
|
|
14482
14691
|
dateUntil?: string | undefined;
|
|
@@ -14545,6 +14754,10 @@ interface UpsertFileRequestBody$1 {
|
|
|
14545
14754
|
*/
|
|
14546
14755
|
configuration: {
|
|
14547
14756
|
parsing?: {
|
|
14757
|
+
/**
|
|
14758
|
+
* 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.
|
|
14759
|
+
*/
|
|
14760
|
+
mode?: "agent" | "standard";
|
|
14548
14761
|
/**
|
|
14549
14762
|
* 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
14763
|
*/
|
|
@@ -14753,6 +14966,10 @@ interface UpsertFileResponse$1 {
|
|
|
14753
14966
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
14754
14967
|
*/
|
|
14755
14968
|
name?: string;
|
|
14969
|
+
/**
|
|
14970
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
14971
|
+
*/
|
|
14972
|
+
alias?: string;
|
|
14756
14973
|
};
|
|
14757
14974
|
/**
|
|
14758
14975
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -14879,6 +15096,10 @@ interface ListFilesResponse$1 {
|
|
|
14879
15096
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
14880
15097
|
*/
|
|
14881
15098
|
name?: string;
|
|
15099
|
+
/**
|
|
15100
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
15101
|
+
*/
|
|
15102
|
+
alias?: string;
|
|
14882
15103
|
};
|
|
14883
15104
|
/**
|
|
14884
15105
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -14987,6 +15208,10 @@ interface GetFileResponse$1 {
|
|
|
14987
15208
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
14988
15209
|
*/
|
|
14989
15210
|
name?: string;
|
|
15211
|
+
/**
|
|
15212
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
15213
|
+
*/
|
|
15214
|
+
alias?: string;
|
|
14990
15215
|
};
|
|
14991
15216
|
/**
|
|
14992
15217
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -15109,6 +15334,10 @@ interface UpdateFileMetadataResponse$1 {
|
|
|
15109
15334
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
15110
15335
|
*/
|
|
15111
15336
|
name?: string;
|
|
15337
|
+
/**
|
|
15338
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
15339
|
+
*/
|
|
15340
|
+
alias?: string;
|
|
15112
15341
|
};
|
|
15113
15342
|
/**
|
|
15114
15343
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -15219,6 +15448,10 @@ interface CopyFileResponse$1 {
|
|
|
15219
15448
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
15220
15449
|
*/
|
|
15221
15450
|
name?: string;
|
|
15451
|
+
/**
|
|
15452
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
15453
|
+
*/
|
|
15454
|
+
alias?: string;
|
|
15222
15455
|
};
|
|
15223
15456
|
/**
|
|
15224
15457
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -15652,6 +15885,7 @@ declare class Client$4 extends Client$5 implements IClient$2 {
|
|
|
15652
15885
|
type: "bot" | "integration" | "user";
|
|
15653
15886
|
id?: string;
|
|
15654
15887
|
name?: string;
|
|
15888
|
+
alias?: string;
|
|
15655
15889
|
};
|
|
15656
15890
|
indexingStack?: "v1" | "v2";
|
|
15657
15891
|
}>;
|
|
@@ -15733,13 +15967,17 @@ interface ListTablesResponse$1 {
|
|
|
15733
15967
|
*/
|
|
15734
15968
|
name: string;
|
|
15735
15969
|
/**
|
|
15736
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
15970
|
+
* 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
15971
|
*/
|
|
15738
15972
|
factor?: number;
|
|
15739
15973
|
/**
|
|
15740
15974
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
15741
15975
|
*/
|
|
15742
15976
|
frozen?: boolean;
|
|
15977
|
+
/**
|
|
15978
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
15979
|
+
*/
|
|
15980
|
+
keyColumn?: string | null;
|
|
15743
15981
|
schema: {
|
|
15744
15982
|
$schema?: string;
|
|
15745
15983
|
/**
|
|
@@ -15878,13 +16116,17 @@ interface GetTableResponse$1 {
|
|
|
15878
16116
|
*/
|
|
15879
16117
|
name: string;
|
|
15880
16118
|
/**
|
|
15881
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16119
|
+
* 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
16120
|
*/
|
|
15883
16121
|
factor?: number;
|
|
15884
16122
|
/**
|
|
15885
16123
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
15886
16124
|
*/
|
|
15887
16125
|
frozen?: boolean;
|
|
16126
|
+
/**
|
|
16127
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
16128
|
+
*/
|
|
16129
|
+
keyColumn?: string | null;
|
|
15888
16130
|
schema: {
|
|
15889
16131
|
$schema?: string;
|
|
15890
16132
|
/**
|
|
@@ -16023,13 +16265,17 @@ interface GetOrCreateTableRequestParams$1 {
|
|
|
16023
16265
|
}
|
|
16024
16266
|
interface GetOrCreateTableRequestBody$1 {
|
|
16025
16267
|
/**
|
|
16026
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16268
|
+
* 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
16269
|
*/
|
|
16028
16270
|
factor?: number;
|
|
16029
16271
|
/**
|
|
16030
16272
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
16031
16273
|
*/
|
|
16032
16274
|
frozen?: boolean;
|
|
16275
|
+
/**
|
|
16276
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
16277
|
+
*/
|
|
16278
|
+
keyColumn?: string | null;
|
|
16033
16279
|
/**
|
|
16034
16280
|
* Provide an object or a JSON schema to define the columns of the table. A maximum of 20 keys in the object/schema is allowed.
|
|
16035
16281
|
*/
|
|
@@ -16059,13 +16305,17 @@ interface GetOrCreateTableResponse$1 {
|
|
|
16059
16305
|
*/
|
|
16060
16306
|
name: string;
|
|
16061
16307
|
/**
|
|
16062
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16308
|
+
* 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
16309
|
*/
|
|
16064
16310
|
factor?: number;
|
|
16065
16311
|
/**
|
|
16066
16312
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
16067
16313
|
*/
|
|
16068
16314
|
frozen?: boolean;
|
|
16315
|
+
/**
|
|
16316
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
16317
|
+
*/
|
|
16318
|
+
keyColumn?: string | null;
|
|
16069
16319
|
schema: {
|
|
16070
16320
|
$schema?: string;
|
|
16071
16321
|
/**
|
|
@@ -16211,13 +16461,17 @@ interface CreateTableRequestBody$1 {
|
|
|
16211
16461
|
*/
|
|
16212
16462
|
name: string;
|
|
16213
16463
|
/**
|
|
16214
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16464
|
+
* 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
16465
|
*/
|
|
16216
16466
|
factor?: number;
|
|
16217
16467
|
/**
|
|
16218
16468
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
16219
16469
|
*/
|
|
16220
16470
|
frozen?: boolean;
|
|
16471
|
+
/**
|
|
16472
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
16473
|
+
*/
|
|
16474
|
+
keyColumn?: string | null;
|
|
16221
16475
|
/**
|
|
16222
16476
|
* Provide an object or a JSON schema to define the columns of the table. A maximum of 20 keys in the object/schema is allowed.
|
|
16223
16477
|
*/
|
|
@@ -16247,13 +16501,17 @@ interface CreateTableResponse$1 {
|
|
|
16247
16501
|
*/
|
|
16248
16502
|
name: string;
|
|
16249
16503
|
/**
|
|
16250
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16504
|
+
* 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
16505
|
*/
|
|
16252
16506
|
factor?: number;
|
|
16253
16507
|
/**
|
|
16254
16508
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
16255
16509
|
*/
|
|
16256
16510
|
frozen?: boolean;
|
|
16511
|
+
/**
|
|
16512
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
16513
|
+
*/
|
|
16514
|
+
keyColumn?: string | null;
|
|
16257
16515
|
schema: {
|
|
16258
16516
|
$schema?: string;
|
|
16259
16517
|
/**
|
|
@@ -16385,7 +16643,7 @@ interface DuplicateTableRequestBody$1 {
|
|
|
16385
16643
|
*/
|
|
16386
16644
|
schemaOnly?: boolean;
|
|
16387
16645
|
/**
|
|
16388
|
-
*
|
|
16646
|
+
* Override the factor for the duplicated table. If not provided, the new table will use the same factor as the source table.
|
|
16389
16647
|
*/
|
|
16390
16648
|
factor?: number;
|
|
16391
16649
|
}
|
|
@@ -16401,13 +16659,17 @@ interface DuplicateTableResponse$1 {
|
|
|
16401
16659
|
*/
|
|
16402
16660
|
name: string;
|
|
16403
16661
|
/**
|
|
16404
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16662
|
+
* 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
16663
|
*/
|
|
16406
16664
|
factor?: number;
|
|
16407
16665
|
/**
|
|
16408
16666
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
16409
16667
|
*/
|
|
16410
16668
|
frozen?: boolean;
|
|
16669
|
+
/**
|
|
16670
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
16671
|
+
*/
|
|
16672
|
+
keyColumn?: string | null;
|
|
16411
16673
|
schema: {
|
|
16412
16674
|
$schema?: string;
|
|
16413
16675
|
/**
|
|
@@ -16626,6 +16888,10 @@ interface UpdateTableRequestBody$1 {
|
|
|
16626
16888
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
16627
16889
|
*/
|
|
16628
16890
|
frozen?: boolean;
|
|
16891
|
+
/**
|
|
16892
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
16893
|
+
*/
|
|
16894
|
+
keyColumn?: string | null;
|
|
16629
16895
|
/**
|
|
16630
16896
|
* Provide an object or a JSON schema to define the columns of the table. A maximum of 20 keys in the object/schema is allowed.
|
|
16631
16897
|
*/
|
|
@@ -16642,6 +16908,10 @@ interface UpdateTableRequestBody$1 {
|
|
|
16642
16908
|
* Indicates if the table is enabled for computation.
|
|
16643
16909
|
*/
|
|
16644
16910
|
isComputeEnabled?: boolean;
|
|
16911
|
+
/**
|
|
16912
|
+
* 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.
|
|
16913
|
+
*/
|
|
16914
|
+
factor?: number;
|
|
16645
16915
|
}
|
|
16646
16916
|
type UpdateTableInput$1 = UpdateTableRequestBody$1 & UpdateTableRequestHeaders$1 & UpdateTableRequestQuery$1 & UpdateTableRequestParams$1;
|
|
16647
16917
|
interface UpdateTableResponse$1 {
|
|
@@ -16655,13 +16925,17 @@ interface UpdateTableResponse$1 {
|
|
|
16655
16925
|
*/
|
|
16656
16926
|
name: string;
|
|
16657
16927
|
/**
|
|
16658
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16928
|
+
* 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
16929
|
*/
|
|
16660
16930
|
factor?: number;
|
|
16661
16931
|
/**
|
|
16662
16932
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
16663
16933
|
*/
|
|
16664
16934
|
frozen?: boolean;
|
|
16935
|
+
/**
|
|
16936
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
16937
|
+
*/
|
|
16938
|
+
keyColumn?: string | null;
|
|
16665
16939
|
schema: {
|
|
16666
16940
|
$schema?: string;
|
|
16667
16941
|
/**
|
|
@@ -16812,13 +17086,17 @@ interface RenameTableColumnResponse$1 {
|
|
|
16812
17086
|
*/
|
|
16813
17087
|
name: string;
|
|
16814
17088
|
/**
|
|
16815
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
17089
|
+
* 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
17090
|
*/
|
|
16817
17091
|
factor?: number;
|
|
16818
17092
|
/**
|
|
16819
17093
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
16820
17094
|
*/
|
|
16821
17095
|
frozen?: boolean;
|
|
17096
|
+
/**
|
|
17097
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
17098
|
+
*/
|
|
17099
|
+
keyColumn?: string | null;
|
|
16822
17100
|
schema: {
|
|
16823
17101
|
$schema?: string;
|
|
16824
17102
|
/**
|
|
@@ -17533,6 +17811,8 @@ interface ListConversationsRequestQuery {
|
|
|
17533
17811
|
participantIds?: string[];
|
|
17534
17812
|
integrationName?: string;
|
|
17535
17813
|
channel?: string;
|
|
17814
|
+
afterDate?: string;
|
|
17815
|
+
beforeDate?: string;
|
|
17536
17816
|
}
|
|
17537
17817
|
interface ListConversationsRequestParams {
|
|
17538
17818
|
}
|
|
@@ -18446,6 +18726,8 @@ interface ListMessagesRequestQuery {
|
|
|
18446
18726
|
tags?: {
|
|
18447
18727
|
[k: string]: string;
|
|
18448
18728
|
};
|
|
18729
|
+
afterDate?: string;
|
|
18730
|
+
beforeDate?: string;
|
|
18449
18731
|
}
|
|
18450
18732
|
interface ListMessagesRequestParams {
|
|
18451
18733
|
}
|
|
@@ -20403,6 +20685,10 @@ interface ListPublicIntegrationsResponse {
|
|
|
20403
20685
|
* Status of the integration version verification
|
|
20404
20686
|
*/
|
|
20405
20687
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
20688
|
+
/**
|
|
20689
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
20690
|
+
*/
|
|
20691
|
+
lifecycleStatus: "published" | "deprecated";
|
|
20406
20692
|
ownerWorkspace: {
|
|
20407
20693
|
id: string;
|
|
20408
20694
|
handle: string | null;
|
|
@@ -20841,6 +21127,10 @@ interface GetPublicIntegrationByIdResponse {
|
|
|
20841
21127
|
* Status of the integration version verification
|
|
20842
21128
|
*/
|
|
20843
21129
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
21130
|
+
/**
|
|
21131
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
21132
|
+
*/
|
|
21133
|
+
lifecycleStatus: "published" | "deprecated";
|
|
20844
21134
|
/**
|
|
20845
21135
|
* 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.
|
|
20846
21136
|
*/
|
|
@@ -21253,6 +21543,10 @@ interface GetPublicIntegrationResponse {
|
|
|
21253
21543
|
* Status of the integration version verification
|
|
21254
21544
|
*/
|
|
21255
21545
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
21546
|
+
/**
|
|
21547
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
21548
|
+
*/
|
|
21549
|
+
lifecycleStatus: "published" | "deprecated";
|
|
21256
21550
|
/**
|
|
21257
21551
|
* 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.
|
|
21258
21552
|
*/
|
|
@@ -21320,9 +21614,18 @@ interface ListPublicPluginsResponse {
|
|
|
21320
21614
|
*/
|
|
21321
21615
|
readmeUrl: string;
|
|
21322
21616
|
/**
|
|
21323
|
-
*
|
|
21617
|
+
* @deprecated
|
|
21618
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
21324
21619
|
*/
|
|
21325
21620
|
public: boolean;
|
|
21621
|
+
/**
|
|
21622
|
+
* 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.
|
|
21623
|
+
*/
|
|
21624
|
+
visibility: "public" | "private" | "unlisted";
|
|
21625
|
+
/**
|
|
21626
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
21627
|
+
*/
|
|
21628
|
+
lifecycleStatus: "published" | "deprecated";
|
|
21326
21629
|
}[];
|
|
21327
21630
|
meta: {
|
|
21328
21631
|
/**
|
|
@@ -21537,9 +21840,18 @@ interface GetPublicPluginByIdResponse {
|
|
|
21537
21840
|
*/
|
|
21538
21841
|
readmeUrl: string;
|
|
21539
21842
|
/**
|
|
21540
|
-
*
|
|
21843
|
+
* @deprecated
|
|
21844
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
21541
21845
|
*/
|
|
21542
21846
|
public: boolean;
|
|
21847
|
+
/**
|
|
21848
|
+
* 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.
|
|
21849
|
+
*/
|
|
21850
|
+
visibility: "public" | "private" | "unlisted";
|
|
21851
|
+
/**
|
|
21852
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
21853
|
+
*/
|
|
21854
|
+
lifecycleStatus: "published" | "deprecated";
|
|
21543
21855
|
};
|
|
21544
21856
|
}
|
|
21545
21857
|
|
|
@@ -21757,9 +22069,18 @@ interface GetDereferencedPublicPluginByIdResponse {
|
|
|
21757
22069
|
*/
|
|
21758
22070
|
readmeUrl: string;
|
|
21759
22071
|
/**
|
|
21760
|
-
*
|
|
22072
|
+
* @deprecated
|
|
22073
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
21761
22074
|
*/
|
|
21762
22075
|
public: boolean;
|
|
22076
|
+
/**
|
|
22077
|
+
* 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.
|
|
22078
|
+
*/
|
|
22079
|
+
visibility: "public" | "private" | "unlisted";
|
|
22080
|
+
/**
|
|
22081
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
22082
|
+
*/
|
|
22083
|
+
lifecycleStatus: "published" | "deprecated";
|
|
21763
22084
|
};
|
|
21764
22085
|
}
|
|
21765
22086
|
|
|
@@ -21969,9 +22290,18 @@ interface GetPublicPluginResponse {
|
|
|
21969
22290
|
*/
|
|
21970
22291
|
readmeUrl: string;
|
|
21971
22292
|
/**
|
|
21972
|
-
*
|
|
22293
|
+
* @deprecated
|
|
22294
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
21973
22295
|
*/
|
|
21974
22296
|
public: boolean;
|
|
22297
|
+
/**
|
|
22298
|
+
* 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.
|
|
22299
|
+
*/
|
|
22300
|
+
visibility: "public" | "private" | "unlisted";
|
|
22301
|
+
/**
|
|
22302
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
22303
|
+
*/
|
|
22304
|
+
lifecycleStatus: "published" | "deprecated";
|
|
21975
22305
|
};
|
|
21976
22306
|
}
|
|
21977
22307
|
|
|
@@ -22576,6 +22906,10 @@ interface CreateBotRequestBody {
|
|
|
22576
22906
|
* Optional name for the bot, if not provided will be auto-generated
|
|
22577
22907
|
*/
|
|
22578
22908
|
name?: string;
|
|
22909
|
+
/**
|
|
22910
|
+
* Optional description for the bot
|
|
22911
|
+
*/
|
|
22912
|
+
description?: string;
|
|
22579
22913
|
/**
|
|
22580
22914
|
* Media files associated with the [Bot](#schema_bot)
|
|
22581
22915
|
*/
|
|
@@ -22675,6 +23009,10 @@ interface CreateBotResponse {
|
|
|
22675
23009
|
* Status of the integration version verification
|
|
22676
23010
|
*/
|
|
22677
23011
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
23012
|
+
/**
|
|
23013
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
23014
|
+
*/
|
|
23015
|
+
lifecycleStatus: "published" | "deprecated";
|
|
22678
23016
|
};
|
|
22679
23017
|
};
|
|
22680
23018
|
/**
|
|
@@ -22743,9 +23081,18 @@ interface CreateBotResponse {
|
|
|
22743
23081
|
*/
|
|
22744
23082
|
readmeUrl: string;
|
|
22745
23083
|
/**
|
|
22746
|
-
*
|
|
23084
|
+
* @deprecated
|
|
23085
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
22747
23086
|
*/
|
|
22748
23087
|
public: boolean;
|
|
23088
|
+
/**
|
|
23089
|
+
* 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.
|
|
23090
|
+
*/
|
|
23091
|
+
visibility: "public" | "private" | "unlisted";
|
|
23092
|
+
/**
|
|
23093
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
23094
|
+
*/
|
|
23095
|
+
lifecycleStatus: "published" | "deprecated";
|
|
22749
23096
|
};
|
|
22750
23097
|
};
|
|
22751
23098
|
/**
|
|
@@ -22956,6 +23303,10 @@ interface CreateBotResponse {
|
|
|
22956
23303
|
* Name of the [Bot](#schema_bot)
|
|
22957
23304
|
*/
|
|
22958
23305
|
name: string;
|
|
23306
|
+
/**
|
|
23307
|
+
* Description of the [Bot](#schema_bot)
|
|
23308
|
+
*/
|
|
23309
|
+
description?: string;
|
|
22959
23310
|
/**
|
|
22960
23311
|
* Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
|
|
22961
23312
|
*/
|
|
@@ -23238,6 +23589,10 @@ interface UpdateBotRequestBody {
|
|
|
23238
23589
|
* Optional name for the bot, if not provided will be auto-generated
|
|
23239
23590
|
*/
|
|
23240
23591
|
name?: string;
|
|
23592
|
+
/**
|
|
23593
|
+
* Optional description for the bot
|
|
23594
|
+
*/
|
|
23595
|
+
description?: string;
|
|
23241
23596
|
/**
|
|
23242
23597
|
* Media files associated with the [Bot](#schema_bot)
|
|
23243
23598
|
*/
|
|
@@ -23334,6 +23689,10 @@ interface UpdateBotResponse {
|
|
|
23334
23689
|
* Status of the integration version verification
|
|
23335
23690
|
*/
|
|
23336
23691
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
23692
|
+
/**
|
|
23693
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
23694
|
+
*/
|
|
23695
|
+
lifecycleStatus: "published" | "deprecated";
|
|
23337
23696
|
};
|
|
23338
23697
|
};
|
|
23339
23698
|
/**
|
|
@@ -23402,9 +23761,18 @@ interface UpdateBotResponse {
|
|
|
23402
23761
|
*/
|
|
23403
23762
|
readmeUrl: string;
|
|
23404
23763
|
/**
|
|
23405
|
-
*
|
|
23764
|
+
* @deprecated
|
|
23765
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
23406
23766
|
*/
|
|
23407
23767
|
public: boolean;
|
|
23768
|
+
/**
|
|
23769
|
+
* 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.
|
|
23770
|
+
*/
|
|
23771
|
+
visibility: "public" | "private" | "unlisted";
|
|
23772
|
+
/**
|
|
23773
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
23774
|
+
*/
|
|
23775
|
+
lifecycleStatus: "published" | "deprecated";
|
|
23408
23776
|
};
|
|
23409
23777
|
};
|
|
23410
23778
|
/**
|
|
@@ -23615,6 +23983,10 @@ interface UpdateBotResponse {
|
|
|
23615
23983
|
* Name of the [Bot](#schema_bot)
|
|
23616
23984
|
*/
|
|
23617
23985
|
name: string;
|
|
23986
|
+
/**
|
|
23987
|
+
* Description of the [Bot](#schema_bot)
|
|
23988
|
+
*/
|
|
23989
|
+
description?: string;
|
|
23618
23990
|
/**
|
|
23619
23991
|
* Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
|
|
23620
23992
|
*/
|
|
@@ -23808,6 +24180,10 @@ interface GetBotResponse {
|
|
|
23808
24180
|
* Status of the integration version verification
|
|
23809
24181
|
*/
|
|
23810
24182
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
24183
|
+
/**
|
|
24184
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
24185
|
+
*/
|
|
24186
|
+
lifecycleStatus: "published" | "deprecated";
|
|
23811
24187
|
};
|
|
23812
24188
|
};
|
|
23813
24189
|
/**
|
|
@@ -23876,9 +24252,18 @@ interface GetBotResponse {
|
|
|
23876
24252
|
*/
|
|
23877
24253
|
readmeUrl: string;
|
|
23878
24254
|
/**
|
|
23879
|
-
*
|
|
24255
|
+
* @deprecated
|
|
24256
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
23880
24257
|
*/
|
|
23881
24258
|
public: boolean;
|
|
24259
|
+
/**
|
|
24260
|
+
* 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.
|
|
24261
|
+
*/
|
|
24262
|
+
visibility: "public" | "private" | "unlisted";
|
|
24263
|
+
/**
|
|
24264
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
24265
|
+
*/
|
|
24266
|
+
lifecycleStatus: "published" | "deprecated";
|
|
23882
24267
|
};
|
|
23883
24268
|
};
|
|
23884
24269
|
/**
|
|
@@ -24089,6 +24474,10 @@ interface GetBotResponse {
|
|
|
24089
24474
|
* Name of the [Bot](#schema_bot)
|
|
24090
24475
|
*/
|
|
24091
24476
|
name: string;
|
|
24477
|
+
/**
|
|
24478
|
+
* Description of the [Bot](#schema_bot)
|
|
24479
|
+
*/
|
|
24480
|
+
description?: string;
|
|
24092
24481
|
/**
|
|
24093
24482
|
* Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
|
|
24094
24483
|
*/
|
|
@@ -24888,7 +25277,7 @@ interface GetWorkspaceResponse {
|
|
|
24888
25277
|
interface ListWorkspaceUsagesRequestHeaders {
|
|
24889
25278
|
}
|
|
24890
25279
|
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";
|
|
25280
|
+
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
25281
|
period?: string;
|
|
24893
25282
|
}
|
|
24894
25283
|
interface ListWorkspaceUsagesRequestParams {
|
|
@@ -24918,14 +25307,14 @@ interface ListWorkspaceUsagesResponse {
|
|
|
24918
25307
|
/**
|
|
24919
25308
|
* Usage type that can be used
|
|
24920
25309
|
*/
|
|
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";
|
|
25310
|
+
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
25311
|
}[];
|
|
24923
25312
|
}
|
|
24924
25313
|
|
|
24925
25314
|
interface BreakDownWorkspaceUsageByBotRequestHeaders {
|
|
24926
25315
|
}
|
|
24927
25316
|
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";
|
|
25317
|
+
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
25318
|
period?: string;
|
|
24930
25319
|
}
|
|
24931
25320
|
interface BreakDownWorkspaceUsageByBotRequestParams {
|
|
@@ -24952,7 +25341,7 @@ interface GetAllWorkspaceQuotaCompletionRequestBody {
|
|
|
24952
25341
|
type GetAllWorkspaceQuotaCompletionInput = GetAllWorkspaceQuotaCompletionRequestBody & GetAllWorkspaceQuotaCompletionRequestHeaders & GetAllWorkspaceQuotaCompletionRequestQuery & GetAllWorkspaceQuotaCompletionRequestParams;
|
|
24953
25342
|
interface GetAllWorkspaceQuotaCompletionResponse {
|
|
24954
25343
|
[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";
|
|
25344
|
+
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
25345
|
completion: number;
|
|
24957
25346
|
};
|
|
24958
25347
|
}
|
|
@@ -24960,7 +25349,7 @@ interface GetAllWorkspaceQuotaCompletionResponse {
|
|
|
24960
25349
|
interface GetWorkspaceQuotaRequestHeaders {
|
|
24961
25350
|
}
|
|
24962
25351
|
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";
|
|
25352
|
+
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
25353
|
period?: string;
|
|
24965
25354
|
}
|
|
24966
25355
|
interface GetWorkspaceQuotaRequestParams {
|
|
@@ -24982,7 +25371,7 @@ interface GetWorkspaceQuotaResponse {
|
|
|
24982
25371
|
/**
|
|
24983
25372
|
* Usage type that can be used
|
|
24984
25373
|
*/
|
|
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";
|
|
25374
|
+
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
25375
|
};
|
|
24987
25376
|
}
|
|
24988
25377
|
|
|
@@ -25010,7 +25399,7 @@ interface ListWorkspaceQuotasResponse {
|
|
|
25010
25399
|
/**
|
|
25011
25400
|
* Usage type that can be used
|
|
25012
25401
|
*/
|
|
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";
|
|
25402
|
+
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
25403
|
}[];
|
|
25015
25404
|
}
|
|
25016
25405
|
|
|
@@ -25674,6 +26063,7 @@ interface CreateIntegrationRequestBody {
|
|
|
25674
26063
|
enabled: boolean;
|
|
25675
26064
|
};
|
|
25676
26065
|
};
|
|
26066
|
+
sdkVersion?: string;
|
|
25677
26067
|
/**
|
|
25678
26068
|
* 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
26069
|
*/
|
|
@@ -26105,6 +26495,10 @@ interface CreateIntegrationResponse {
|
|
|
26105
26495
|
* Status of the integration version verification
|
|
26106
26496
|
*/
|
|
26107
26497
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
26498
|
+
/**
|
|
26499
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
26500
|
+
*/
|
|
26501
|
+
lifecycleStatus: "published" | "deprecated";
|
|
26108
26502
|
/**
|
|
26109
26503
|
* 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.
|
|
26110
26504
|
*/
|
|
@@ -26412,6 +26806,7 @@ interface ValidateIntegrationCreationRequestBody {
|
|
|
26412
26806
|
enabled: boolean;
|
|
26413
26807
|
};
|
|
26414
26808
|
};
|
|
26809
|
+
sdkVersion?: string;
|
|
26415
26810
|
/**
|
|
26416
26811
|
* 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
26812
|
*/
|
|
@@ -26525,6 +26920,7 @@ interface UpdateIntegrationRequestBody {
|
|
|
26525
26920
|
enabled: boolean;
|
|
26526
26921
|
};
|
|
26527
26922
|
};
|
|
26923
|
+
sdkVersion?: string;
|
|
26528
26924
|
channels?: {
|
|
26529
26925
|
[k: string]: {
|
|
26530
26926
|
/**
|
|
@@ -27179,6 +27575,10 @@ interface UpdateIntegrationResponse {
|
|
|
27179
27575
|
* Status of the integration version verification
|
|
27180
27576
|
*/
|
|
27181
27577
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
27578
|
+
/**
|
|
27579
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
27580
|
+
*/
|
|
27581
|
+
lifecycleStatus: "published" | "deprecated";
|
|
27182
27582
|
/**
|
|
27183
27583
|
* 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.
|
|
27184
27584
|
*/
|
|
@@ -27250,6 +27650,7 @@ interface ValidateIntegrationUpdateRequestBody {
|
|
|
27250
27650
|
enabled: boolean;
|
|
27251
27651
|
};
|
|
27252
27652
|
};
|
|
27653
|
+
sdkVersion?: string;
|
|
27253
27654
|
channels?: {
|
|
27254
27655
|
[k: string]: {
|
|
27255
27656
|
/**
|
|
@@ -27591,6 +27992,10 @@ interface ListIntegrationsResponse {
|
|
|
27591
27992
|
* Status of the integration version verification
|
|
27592
27993
|
*/
|
|
27593
27994
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
27995
|
+
/**
|
|
27996
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
27997
|
+
*/
|
|
27998
|
+
lifecycleStatus: "published" | "deprecated";
|
|
27594
27999
|
/**
|
|
27595
28000
|
* Metadata about which fields matched the search criteria
|
|
27596
28001
|
*/
|
|
@@ -28025,6 +28430,10 @@ interface GetIntegrationResponse {
|
|
|
28025
28430
|
* Status of the integration version verification
|
|
28026
28431
|
*/
|
|
28027
28432
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
28433
|
+
/**
|
|
28434
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
28435
|
+
*/
|
|
28436
|
+
lifecycleStatus: "published" | "deprecated";
|
|
28028
28437
|
/**
|
|
28029
28438
|
* 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.
|
|
28030
28439
|
*/
|
|
@@ -28457,6 +28866,10 @@ interface GetIntegrationByNameResponse {
|
|
|
28457
28866
|
* Status of the integration version verification
|
|
28458
28867
|
*/
|
|
28459
28868
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
28869
|
+
/**
|
|
28870
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
28871
|
+
*/
|
|
28872
|
+
lifecycleStatus: "published" | "deprecated";
|
|
28460
28873
|
/**
|
|
28461
28874
|
* 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.
|
|
28462
28875
|
*/
|
|
@@ -28615,6 +29028,7 @@ interface CreateInterfaceRequestBody {
|
|
|
28615
29028
|
attributes?: {
|
|
28616
29029
|
[k: string]: string;
|
|
28617
29030
|
};
|
|
29031
|
+
sdkVersion?: string;
|
|
28618
29032
|
/**
|
|
28619
29033
|
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
28620
29034
|
*/
|
|
@@ -29235,6 +29649,7 @@ interface UpdateInterfaceRequestBody {
|
|
|
29235
29649
|
attributes?: {
|
|
29236
29650
|
[k: string]: string | null;
|
|
29237
29651
|
};
|
|
29652
|
+
sdkVersion?: string;
|
|
29238
29653
|
/**
|
|
29239
29654
|
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
29240
29655
|
*/
|
|
@@ -29643,6 +30058,7 @@ interface CreatePluginRequestBody {
|
|
|
29643
30058
|
attributes?: {
|
|
29644
30059
|
[k: string]: string;
|
|
29645
30060
|
};
|
|
30061
|
+
sdkVersion?: string;
|
|
29646
30062
|
code: {
|
|
29647
30063
|
/**
|
|
29648
30064
|
* Code of plugin bundled for Node.JS
|
|
@@ -29670,9 +30086,14 @@ interface CreatePluginRequestBody {
|
|
|
29670
30086
|
*/
|
|
29671
30087
|
description?: string;
|
|
29672
30088
|
/**
|
|
29673
|
-
*
|
|
30089
|
+
* @deprecated
|
|
30090
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
29674
30091
|
*/
|
|
29675
30092
|
public?: boolean;
|
|
30093
|
+
/**
|
|
30094
|
+
* 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.
|
|
30095
|
+
*/
|
|
30096
|
+
visibility?: "public" | "private" | "unlisted";
|
|
29676
30097
|
dependencies?: {
|
|
29677
30098
|
/**
|
|
29678
30099
|
* Mapping of interface aliases to interface references
|
|
@@ -29910,9 +30331,18 @@ interface CreatePluginResponse {
|
|
|
29910
30331
|
*/
|
|
29911
30332
|
readmeUrl: string;
|
|
29912
30333
|
/**
|
|
29913
|
-
*
|
|
30334
|
+
* @deprecated
|
|
30335
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
29914
30336
|
*/
|
|
29915
30337
|
public: boolean;
|
|
30338
|
+
/**
|
|
30339
|
+
* 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.
|
|
30340
|
+
*/
|
|
30341
|
+
visibility: "public" | "private" | "unlisted";
|
|
30342
|
+
/**
|
|
30343
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
30344
|
+
*/
|
|
30345
|
+
lifecycleStatus: "published" | "deprecated";
|
|
29916
30346
|
};
|
|
29917
30347
|
}
|
|
29918
30348
|
|
|
@@ -30121,9 +30551,18 @@ interface GetPluginResponse {
|
|
|
30121
30551
|
*/
|
|
30122
30552
|
readmeUrl: string;
|
|
30123
30553
|
/**
|
|
30124
|
-
*
|
|
30554
|
+
* @deprecated
|
|
30555
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
30125
30556
|
*/
|
|
30126
30557
|
public: boolean;
|
|
30558
|
+
/**
|
|
30559
|
+
* 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.
|
|
30560
|
+
*/
|
|
30561
|
+
visibility: "public" | "private" | "unlisted";
|
|
30562
|
+
/**
|
|
30563
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
30564
|
+
*/
|
|
30565
|
+
lifecycleStatus: "published" | "deprecated";
|
|
30127
30566
|
};
|
|
30128
30567
|
}
|
|
30129
30568
|
|
|
@@ -30341,9 +30780,18 @@ interface GetDereferencedPluginResponse {
|
|
|
30341
30780
|
*/
|
|
30342
30781
|
readmeUrl: string;
|
|
30343
30782
|
/**
|
|
30344
|
-
*
|
|
30783
|
+
* @deprecated
|
|
30784
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
30345
30785
|
*/
|
|
30346
30786
|
public: boolean;
|
|
30787
|
+
/**
|
|
30788
|
+
* 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.
|
|
30789
|
+
*/
|
|
30790
|
+
visibility: "public" | "private" | "unlisted";
|
|
30791
|
+
/**
|
|
30792
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
30793
|
+
*/
|
|
30794
|
+
lifecycleStatus: "published" | "deprecated";
|
|
30347
30795
|
};
|
|
30348
30796
|
}
|
|
30349
30797
|
|
|
@@ -30553,9 +31001,18 @@ interface GetPluginByNameResponse {
|
|
|
30553
31001
|
*/
|
|
30554
31002
|
readmeUrl: string;
|
|
30555
31003
|
/**
|
|
30556
|
-
*
|
|
31004
|
+
* @deprecated
|
|
31005
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
30557
31006
|
*/
|
|
30558
31007
|
public: boolean;
|
|
31008
|
+
/**
|
|
31009
|
+
* 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.
|
|
31010
|
+
*/
|
|
31011
|
+
visibility: "public" | "private" | "unlisted";
|
|
31012
|
+
/**
|
|
31013
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
31014
|
+
*/
|
|
31015
|
+
lifecycleStatus: "published" | "deprecated";
|
|
30559
31016
|
};
|
|
30560
31017
|
}
|
|
30561
31018
|
|
|
@@ -30695,6 +31152,7 @@ interface UpdatePluginRequestBody {
|
|
|
30695
31152
|
attributes?: {
|
|
30696
31153
|
[k: string]: string | null;
|
|
30697
31154
|
};
|
|
31155
|
+
sdkVersion?: string;
|
|
30698
31156
|
code?: {
|
|
30699
31157
|
/**
|
|
30700
31158
|
* Code of plugin bundled for Node.JS
|
|
@@ -30722,9 +31180,14 @@ interface UpdatePluginRequestBody {
|
|
|
30722
31180
|
*/
|
|
30723
31181
|
description?: string;
|
|
30724
31182
|
/**
|
|
30725
|
-
*
|
|
31183
|
+
* @deprecated
|
|
31184
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
30726
31185
|
*/
|
|
30727
31186
|
public?: boolean;
|
|
31187
|
+
/**
|
|
31188
|
+
* 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.
|
|
31189
|
+
*/
|
|
31190
|
+
visibility?: "public" | "private" | "unlisted";
|
|
30728
31191
|
dependencies?: {
|
|
30729
31192
|
/**
|
|
30730
31193
|
* Mapping of interface aliases to interface references
|
|
@@ -30962,9 +31425,18 @@ interface UpdatePluginResponse {
|
|
|
30962
31425
|
*/
|
|
30963
31426
|
readmeUrl: string;
|
|
30964
31427
|
/**
|
|
30965
|
-
*
|
|
31428
|
+
* @deprecated
|
|
31429
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
30966
31430
|
*/
|
|
30967
31431
|
public: boolean;
|
|
31432
|
+
/**
|
|
31433
|
+
* 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.
|
|
31434
|
+
*/
|
|
31435
|
+
visibility: "public" | "private" | "unlisted";
|
|
31436
|
+
/**
|
|
31437
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
31438
|
+
*/
|
|
31439
|
+
lifecycleStatus: "published" | "deprecated";
|
|
30968
31440
|
};
|
|
30969
31441
|
}
|
|
30970
31442
|
|
|
@@ -31032,9 +31504,18 @@ interface ListPluginsResponse {
|
|
|
31032
31504
|
*/
|
|
31033
31505
|
readmeUrl: string;
|
|
31034
31506
|
/**
|
|
31035
|
-
*
|
|
31507
|
+
* @deprecated
|
|
31508
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
31036
31509
|
*/
|
|
31037
31510
|
public: boolean;
|
|
31511
|
+
/**
|
|
31512
|
+
* 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.
|
|
31513
|
+
*/
|
|
31514
|
+
visibility: "public" | "private" | "unlisted";
|
|
31515
|
+
/**
|
|
31516
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
31517
|
+
*/
|
|
31518
|
+
lifecycleStatus: "published" | "deprecated";
|
|
31038
31519
|
}[];
|
|
31039
31520
|
meta: {
|
|
31040
31521
|
/**
|
|
@@ -31062,7 +31543,7 @@ interface GetPluginCodeResponse {
|
|
|
31062
31543
|
interface GetUsageRequestHeaders {
|
|
31063
31544
|
}
|
|
31064
31545
|
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";
|
|
31546
|
+
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
31547
|
period?: string;
|
|
31067
31548
|
}
|
|
31068
31549
|
interface GetUsageRequestParams {
|
|
@@ -31092,7 +31573,7 @@ interface GetUsageResponse {
|
|
|
31092
31573
|
/**
|
|
31093
31574
|
* Usage type that can be used
|
|
31094
31575
|
*/
|
|
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";
|
|
31576
|
+
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
31577
|
};
|
|
31097
31578
|
}
|
|
31098
31579
|
|
|
@@ -31129,14 +31610,14 @@ interface GetMultipleUsagesResponse {
|
|
|
31129
31610
|
/**
|
|
31130
31611
|
* Usage type that can be used
|
|
31131
31612
|
*/
|
|
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";
|
|
31613
|
+
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
31614
|
}[];
|
|
31134
31615
|
}
|
|
31135
31616
|
|
|
31136
31617
|
interface ListUsageHistoryRequestHeaders {
|
|
31137
31618
|
}
|
|
31138
31619
|
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";
|
|
31620
|
+
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
31621
|
}
|
|
31141
31622
|
interface ListUsageHistoryRequestParams {
|
|
31142
31623
|
id: string;
|
|
@@ -31165,14 +31646,14 @@ interface ListUsageHistoryResponse {
|
|
|
31165
31646
|
/**
|
|
31166
31647
|
* Usage type that can be used
|
|
31167
31648
|
*/
|
|
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";
|
|
31649
|
+
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
31650
|
}[];
|
|
31170
31651
|
}
|
|
31171
31652
|
|
|
31172
31653
|
interface ListUsageActivityRequestHeaders {
|
|
31173
31654
|
}
|
|
31174
31655
|
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";
|
|
31656
|
+
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
31657
|
timestampFrom?: string;
|
|
31177
31658
|
timestampUntil?: string;
|
|
31178
31659
|
nextToken?: string;
|
|
@@ -31200,7 +31681,7 @@ interface ListUsageActivityResponse {
|
|
|
31200
31681
|
interface ListUsageActivityDailyRequestHeaders {
|
|
31201
31682
|
}
|
|
31202
31683
|
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";
|
|
31684
|
+
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
31685
|
dateFrom?: string;
|
|
31205
31686
|
dateUntil?: string;
|
|
31206
31687
|
nextToken?: string;
|
|
@@ -31322,6 +31803,10 @@ interface UpsertFileRequestBody {
|
|
|
31322
31803
|
*/
|
|
31323
31804
|
configuration: {
|
|
31324
31805
|
parsing?: {
|
|
31806
|
+
/**
|
|
31807
|
+
* 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.
|
|
31808
|
+
*/
|
|
31809
|
+
mode?: "agent" | "standard";
|
|
31325
31810
|
/**
|
|
31326
31811
|
* 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
31812
|
*/
|
|
@@ -31530,6 +32015,10 @@ interface UpsertFileResponse {
|
|
|
31530
32015
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
31531
32016
|
*/
|
|
31532
32017
|
name?: string;
|
|
32018
|
+
/**
|
|
32019
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
32020
|
+
*/
|
|
32021
|
+
alias?: string;
|
|
31533
32022
|
};
|
|
31534
32023
|
/**
|
|
31535
32024
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -31656,6 +32145,10 @@ interface ListFilesResponse {
|
|
|
31656
32145
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
31657
32146
|
*/
|
|
31658
32147
|
name?: string;
|
|
32148
|
+
/**
|
|
32149
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
32150
|
+
*/
|
|
32151
|
+
alias?: string;
|
|
31659
32152
|
};
|
|
31660
32153
|
/**
|
|
31661
32154
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -31764,6 +32257,10 @@ interface GetFileResponse {
|
|
|
31764
32257
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
31765
32258
|
*/
|
|
31766
32259
|
name?: string;
|
|
32260
|
+
/**
|
|
32261
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
32262
|
+
*/
|
|
32263
|
+
alias?: string;
|
|
31767
32264
|
};
|
|
31768
32265
|
/**
|
|
31769
32266
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -31886,6 +32383,10 @@ interface UpdateFileMetadataResponse {
|
|
|
31886
32383
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
31887
32384
|
*/
|
|
31888
32385
|
name?: string;
|
|
32386
|
+
/**
|
|
32387
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
32388
|
+
*/
|
|
32389
|
+
alias?: string;
|
|
31889
32390
|
};
|
|
31890
32391
|
/**
|
|
31891
32392
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -31996,6 +32497,10 @@ interface CopyFileResponse {
|
|
|
31996
32497
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
31997
32498
|
*/
|
|
31998
32499
|
name?: string;
|
|
32500
|
+
/**
|
|
32501
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
32502
|
+
*/
|
|
32503
|
+
alias?: string;
|
|
31999
32504
|
};
|
|
32000
32505
|
/**
|
|
32001
32506
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -32375,13 +32880,17 @@ interface ListTablesResponse {
|
|
|
32375
32880
|
*/
|
|
32376
32881
|
name: string;
|
|
32377
32882
|
/**
|
|
32378
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
32883
|
+
* 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
32884
|
*/
|
|
32380
32885
|
factor?: number;
|
|
32381
32886
|
/**
|
|
32382
32887
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
32383
32888
|
*/
|
|
32384
32889
|
frozen?: boolean;
|
|
32890
|
+
/**
|
|
32891
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
32892
|
+
*/
|
|
32893
|
+
keyColumn?: string | null;
|
|
32385
32894
|
schema: {
|
|
32386
32895
|
$schema?: string;
|
|
32387
32896
|
/**
|
|
@@ -32520,13 +33029,17 @@ interface GetTableResponse {
|
|
|
32520
33029
|
*/
|
|
32521
33030
|
name: string;
|
|
32522
33031
|
/**
|
|
32523
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33032
|
+
* 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
33033
|
*/
|
|
32525
33034
|
factor?: number;
|
|
32526
33035
|
/**
|
|
32527
33036
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
32528
33037
|
*/
|
|
32529
33038
|
frozen?: boolean;
|
|
33039
|
+
/**
|
|
33040
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
33041
|
+
*/
|
|
33042
|
+
keyColumn?: string | null;
|
|
32530
33043
|
schema: {
|
|
32531
33044
|
$schema?: string;
|
|
32532
33045
|
/**
|
|
@@ -32665,13 +33178,17 @@ interface GetOrCreateTableRequestParams {
|
|
|
32665
33178
|
}
|
|
32666
33179
|
interface GetOrCreateTableRequestBody {
|
|
32667
33180
|
/**
|
|
32668
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33181
|
+
* 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
33182
|
*/
|
|
32670
33183
|
factor?: number;
|
|
32671
33184
|
/**
|
|
32672
33185
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
32673
33186
|
*/
|
|
32674
33187
|
frozen?: boolean;
|
|
33188
|
+
/**
|
|
33189
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
33190
|
+
*/
|
|
33191
|
+
keyColumn?: string | null;
|
|
32675
33192
|
/**
|
|
32676
33193
|
* Provide an object or a JSON schema to define the columns of the table. A maximum of 20 keys in the object/schema is allowed.
|
|
32677
33194
|
*/
|
|
@@ -32701,13 +33218,17 @@ interface GetOrCreateTableResponse {
|
|
|
32701
33218
|
*/
|
|
32702
33219
|
name: string;
|
|
32703
33220
|
/**
|
|
32704
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33221
|
+
* 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
33222
|
*/
|
|
32706
33223
|
factor?: number;
|
|
32707
33224
|
/**
|
|
32708
33225
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
32709
33226
|
*/
|
|
32710
33227
|
frozen?: boolean;
|
|
33228
|
+
/**
|
|
33229
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
33230
|
+
*/
|
|
33231
|
+
keyColumn?: string | null;
|
|
32711
33232
|
schema: {
|
|
32712
33233
|
$schema?: string;
|
|
32713
33234
|
/**
|
|
@@ -32853,13 +33374,17 @@ interface CreateTableRequestBody {
|
|
|
32853
33374
|
*/
|
|
32854
33375
|
name: string;
|
|
32855
33376
|
/**
|
|
32856
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33377
|
+
* 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
33378
|
*/
|
|
32858
33379
|
factor?: number;
|
|
32859
33380
|
/**
|
|
32860
33381
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
32861
33382
|
*/
|
|
32862
33383
|
frozen?: boolean;
|
|
33384
|
+
/**
|
|
33385
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
33386
|
+
*/
|
|
33387
|
+
keyColumn?: string | null;
|
|
32863
33388
|
/**
|
|
32864
33389
|
* Provide an object or a JSON schema to define the columns of the table. A maximum of 20 keys in the object/schema is allowed.
|
|
32865
33390
|
*/
|
|
@@ -32889,13 +33414,17 @@ interface CreateTableResponse {
|
|
|
32889
33414
|
*/
|
|
32890
33415
|
name: string;
|
|
32891
33416
|
/**
|
|
32892
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33417
|
+
* 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
33418
|
*/
|
|
32894
33419
|
factor?: number;
|
|
32895
33420
|
/**
|
|
32896
33421
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
32897
33422
|
*/
|
|
32898
33423
|
frozen?: boolean;
|
|
33424
|
+
/**
|
|
33425
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
33426
|
+
*/
|
|
33427
|
+
keyColumn?: string | null;
|
|
32899
33428
|
schema: {
|
|
32900
33429
|
$schema?: string;
|
|
32901
33430
|
/**
|
|
@@ -33027,7 +33556,7 @@ interface DuplicateTableRequestBody {
|
|
|
33027
33556
|
*/
|
|
33028
33557
|
schemaOnly?: boolean;
|
|
33029
33558
|
/**
|
|
33030
|
-
*
|
|
33559
|
+
* Override the factor for the duplicated table. If not provided, the new table will use the same factor as the source table.
|
|
33031
33560
|
*/
|
|
33032
33561
|
factor?: number;
|
|
33033
33562
|
}
|
|
@@ -33043,13 +33572,17 @@ interface DuplicateTableResponse {
|
|
|
33043
33572
|
*/
|
|
33044
33573
|
name: string;
|
|
33045
33574
|
/**
|
|
33046
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33575
|
+
* 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
33576
|
*/
|
|
33048
33577
|
factor?: number;
|
|
33049
33578
|
/**
|
|
33050
33579
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
33051
33580
|
*/
|
|
33052
33581
|
frozen?: boolean;
|
|
33582
|
+
/**
|
|
33583
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
33584
|
+
*/
|
|
33585
|
+
keyColumn?: string | null;
|
|
33053
33586
|
schema: {
|
|
33054
33587
|
$schema?: string;
|
|
33055
33588
|
/**
|
|
@@ -33268,6 +33801,10 @@ interface UpdateTableRequestBody {
|
|
|
33268
33801
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
33269
33802
|
*/
|
|
33270
33803
|
frozen?: boolean;
|
|
33804
|
+
/**
|
|
33805
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
33806
|
+
*/
|
|
33807
|
+
keyColumn?: string | null;
|
|
33271
33808
|
/**
|
|
33272
33809
|
* Provide an object or a JSON schema to define the columns of the table. A maximum of 20 keys in the object/schema is allowed.
|
|
33273
33810
|
*/
|
|
@@ -33284,6 +33821,10 @@ interface UpdateTableRequestBody {
|
|
|
33284
33821
|
* Indicates if the table is enabled for computation.
|
|
33285
33822
|
*/
|
|
33286
33823
|
isComputeEnabled?: boolean;
|
|
33824
|
+
/**
|
|
33825
|
+
* 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.
|
|
33826
|
+
*/
|
|
33827
|
+
factor?: number;
|
|
33287
33828
|
}
|
|
33288
33829
|
type UpdateTableInput = UpdateTableRequestBody & UpdateTableRequestHeaders & UpdateTableRequestQuery & UpdateTableRequestParams;
|
|
33289
33830
|
interface UpdateTableResponse {
|
|
@@ -33297,13 +33838,17 @@ interface UpdateTableResponse {
|
|
|
33297
33838
|
*/
|
|
33298
33839
|
name: string;
|
|
33299
33840
|
/**
|
|
33300
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
33841
|
+
* 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
33842
|
*/
|
|
33302
33843
|
factor?: number;
|
|
33303
33844
|
/**
|
|
33304
33845
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
33305
33846
|
*/
|
|
33306
33847
|
frozen?: boolean;
|
|
33848
|
+
/**
|
|
33849
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
33850
|
+
*/
|
|
33851
|
+
keyColumn?: string | null;
|
|
33307
33852
|
schema: {
|
|
33308
33853
|
$schema?: string;
|
|
33309
33854
|
/**
|
|
@@ -33454,13 +33999,17 @@ interface RenameTableColumnResponse {
|
|
|
33454
33999
|
*/
|
|
33455
34000
|
name: string;
|
|
33456
34001
|
/**
|
|
33457
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
34002
|
+
* 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
34003
|
*/
|
|
33459
34004
|
factor?: number;
|
|
33460
34005
|
/**
|
|
33461
34006
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
33462
34007
|
*/
|
|
33463
34008
|
frozen?: boolean;
|
|
34009
|
+
/**
|
|
34010
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
34011
|
+
*/
|
|
34012
|
+
keyColumn?: string | null;
|
|
33464
34013
|
schema: {
|
|
33465
34014
|
$schema?: string;
|
|
33466
34015
|
/**
|
|
@@ -34063,6 +34612,10 @@ interface Bot {
|
|
|
34063
34612
|
* Status of the integration version verification
|
|
34064
34613
|
*/
|
|
34065
34614
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
34615
|
+
/**
|
|
34616
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
34617
|
+
*/
|
|
34618
|
+
lifecycleStatus: "published" | "deprecated";
|
|
34066
34619
|
};
|
|
34067
34620
|
};
|
|
34068
34621
|
/**
|
|
@@ -34131,9 +34684,18 @@ interface Bot {
|
|
|
34131
34684
|
*/
|
|
34132
34685
|
readmeUrl: string;
|
|
34133
34686
|
/**
|
|
34134
|
-
*
|
|
34687
|
+
* @deprecated
|
|
34688
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
34135
34689
|
*/
|
|
34136
34690
|
public: boolean;
|
|
34691
|
+
/**
|
|
34692
|
+
* 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.
|
|
34693
|
+
*/
|
|
34694
|
+
visibility: "public" | "private" | "unlisted";
|
|
34695
|
+
/**
|
|
34696
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
34697
|
+
*/
|
|
34698
|
+
lifecycleStatus: "published" | "deprecated";
|
|
34137
34699
|
};
|
|
34138
34700
|
};
|
|
34139
34701
|
/**
|
|
@@ -34344,6 +34906,10 @@ interface Bot {
|
|
|
34344
34906
|
* Name of the [Bot](#schema_bot)
|
|
34345
34907
|
*/
|
|
34346
34908
|
name: string;
|
|
34909
|
+
/**
|
|
34910
|
+
* Description of the [Bot](#schema_bot)
|
|
34911
|
+
*/
|
|
34912
|
+
description?: string;
|
|
34347
34913
|
/**
|
|
34348
34914
|
* Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
|
|
34349
34915
|
*/
|
|
@@ -34762,6 +35328,10 @@ interface Integration {
|
|
|
34762
35328
|
* Status of the integration version verification
|
|
34763
35329
|
*/
|
|
34764
35330
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
35331
|
+
/**
|
|
35332
|
+
* The lifecycle status of the integration. When an integration is deprecated, it can no longer be installed.
|
|
35333
|
+
*/
|
|
35334
|
+
lifecycleStatus: "published" | "deprecated";
|
|
34765
35335
|
/**
|
|
34766
35336
|
* 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.
|
|
34767
35337
|
*/
|
|
@@ -35113,9 +35683,18 @@ interface Plugin {
|
|
|
35113
35683
|
*/
|
|
35114
35684
|
readmeUrl: string;
|
|
35115
35685
|
/**
|
|
35116
|
-
*
|
|
35686
|
+
* @deprecated
|
|
35687
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
35117
35688
|
*/
|
|
35118
35689
|
public: boolean;
|
|
35690
|
+
/**
|
|
35691
|
+
* 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.
|
|
35692
|
+
*/
|
|
35693
|
+
visibility: "public" | "private" | "unlisted";
|
|
35694
|
+
/**
|
|
35695
|
+
* The lifecycle status of the plugin. When a plugin is deprecated, it can no longer be installed.
|
|
35696
|
+
*/
|
|
35697
|
+
lifecycleStatus: "published" | "deprecated";
|
|
35119
35698
|
}
|
|
35120
35699
|
interface Workspace {
|
|
35121
35700
|
id: string;
|
|
@@ -35177,7 +35756,7 @@ interface Usage {
|
|
|
35177
35756
|
/**
|
|
35178
35757
|
* Usage type that can be used
|
|
35179
35758
|
*/
|
|
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";
|
|
35759
|
+
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
35760
|
}
|
|
35182
35761
|
interface Issue {
|
|
35183
35762
|
id: string;
|
|
@@ -35568,13 +36147,17 @@ interface Table {
|
|
|
35568
36147
|
*/
|
|
35569
36148
|
name: string;
|
|
35570
36149
|
/**
|
|
35571
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
36150
|
+
* 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
36151
|
*/
|
|
35573
36152
|
factor?: number;
|
|
35574
36153
|
/**
|
|
35575
36154
|
* A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.
|
|
35576
36155
|
*/
|
|
35577
36156
|
frozen?: boolean;
|
|
36157
|
+
/**
|
|
36158
|
+
* Designate a column as the primary unique identifier for this table. When set, a unique index is automatically created on this column, enabling significantly faster upsert operations. All values in this column must be unique across the table. When set to null, the key index is removed.
|
|
36159
|
+
*/
|
|
36160
|
+
keyColumn?: string | null;
|
|
35578
36161
|
schema: {
|
|
35579
36162
|
$schema?: string;
|
|
35580
36163
|
/**
|
|
@@ -35854,6 +36437,10 @@ interface File {
|
|
|
35854
36437
|
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
|
|
35855
36438
|
*/
|
|
35856
36439
|
name?: string;
|
|
36440
|
+
/**
|
|
36441
|
+
* This field is present if the `type` is "integration". If `type` is "integration", this is the integration instance alias.
|
|
36442
|
+
*/
|
|
36443
|
+
alias?: string;
|
|
35857
36444
|
};
|
|
35858
36445
|
/**
|
|
35859
36446
|
* Indicates the indexing stack used to index this file. Present only when file has been successfully indexed. A value of "v2" denotes the latest stack, "v1" denotes the legacy stack.
|
|
@@ -36084,6 +36671,8 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36084
36671
|
sortField?: "createdAt" | "updatedAt" | undefined;
|
|
36085
36672
|
sortDirection?: "asc" | "desc" | undefined;
|
|
36086
36673
|
participantIds?: string[] | undefined;
|
|
36674
|
+
afterDate?: string | undefined;
|
|
36675
|
+
beforeDate?: string | undefined;
|
|
36087
36676
|
}) => AsyncCollection<{
|
|
36088
36677
|
id: string;
|
|
36089
36678
|
currentTaskId?: string;
|
|
@@ -36132,6 +36721,8 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36132
36721
|
tags?: {
|
|
36133
36722
|
[x: string]: string;
|
|
36134
36723
|
} | undefined;
|
|
36724
|
+
afterDate?: string | undefined;
|
|
36725
|
+
beforeDate?: string | undefined;
|
|
36135
36726
|
conversationId?: string | undefined;
|
|
36136
36727
|
}) => AsyncCollection<{
|
|
36137
36728
|
id: string;
|
|
@@ -36216,6 +36807,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36216
36807
|
public: boolean;
|
|
36217
36808
|
visibility: "public" | "private" | "unlisted";
|
|
36218
36809
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
36810
|
+
lifecycleStatus: "published" | "deprecated";
|
|
36219
36811
|
ownerWorkspace: {
|
|
36220
36812
|
id: string;
|
|
36221
36813
|
handle: string | null;
|
|
@@ -36302,6 +36894,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36302
36894
|
public: boolean;
|
|
36303
36895
|
visibility: "public" | "private" | "unlisted";
|
|
36304
36896
|
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
36897
|
+
lifecycleStatus: "published" | "deprecated";
|
|
36305
36898
|
matchedOn?: {
|
|
36306
36899
|
name?: boolean;
|
|
36307
36900
|
title?: boolean;
|
|
@@ -36359,6 +36952,8 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36359
36952
|
iconUrl: string;
|
|
36360
36953
|
readmeUrl: string;
|
|
36361
36954
|
public: boolean;
|
|
36955
|
+
visibility: "public" | "private" | "unlisted";
|
|
36956
|
+
lifecycleStatus: "published" | "deprecated";
|
|
36362
36957
|
}>;
|
|
36363
36958
|
publicPlugins: (props: {
|
|
36364
36959
|
name?: string | undefined;
|
|
@@ -36374,6 +36969,8 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36374
36969
|
iconUrl: string;
|
|
36375
36970
|
readmeUrl: string;
|
|
36376
36971
|
public: boolean;
|
|
36972
|
+
visibility: "public" | "private" | "unlisted";
|
|
36973
|
+
lifecycleStatus: "published" | "deprecated";
|
|
36377
36974
|
}>;
|
|
36378
36975
|
activities: (props: {
|
|
36379
36976
|
botId: string;
|
|
@@ -36417,6 +37014,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36417
37014
|
type: "bot" | "integration" | "user";
|
|
36418
37015
|
id?: string;
|
|
36419
37016
|
name?: string;
|
|
37017
|
+
alias?: string;
|
|
36420
37018
|
};
|
|
36421
37019
|
indexingStack?: "v1" | "v2";
|
|
36422
37020
|
}>;
|
|
@@ -36449,7 +37047,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36449
37047
|
};
|
|
36450
37048
|
}>;
|
|
36451
37049
|
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";
|
|
37050
|
+
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
37051
|
id: string;
|
|
36454
37052
|
timestampFrom?: string | undefined;
|
|
36455
37053
|
timestampUntil?: string | undefined;
|
|
@@ -36462,7 +37060,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36462
37060
|
};
|
|
36463
37061
|
}>;
|
|
36464
37062
|
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";
|
|
37063
|
+
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
37064
|
id: string;
|
|
36467
37065
|
dateFrom?: string | undefined;
|
|
36468
37066
|
dateUntil?: string | undefined;
|