@botpress/client 1.27.2 → 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/index.d.ts CHANGED
@@ -1119,6 +1119,8 @@ interface ListMessagesRequestQuery$1 {
1119
1119
  tags?: {
1120
1120
  [k: string]: string;
1121
1121
  };
1122
+ afterDate?: string;
1123
+ beforeDate?: string;
1122
1124
  }
1123
1125
  interface ListMessagesRequestParams$1 {
1124
1126
  }
@@ -2975,6 +2977,8 @@ declare class Client$8 extends Client$9 {
2975
2977
  tags?: {
2976
2978
  [x: string]: string;
2977
2979
  } | undefined;
2980
+ afterDate?: string | undefined;
2981
+ beforeDate?: string | undefined;
2978
2982
  conversationId?: string | undefined;
2979
2983
  }) => AsyncCollection<{
2980
2984
  id: string;
@@ -3290,6 +3294,10 @@ interface ListPublicIntegrationsResponse$1 {
3290
3294
  * Status of the integration version verification
3291
3295
  */
3292
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";
3293
3301
  ownerWorkspace: {
3294
3302
  id: string;
3295
3303
  handle: string | null;
@@ -3728,6 +3736,10 @@ interface GetPublicIntegrationByIdResponse$1 {
3728
3736
  * Status of the integration version verification
3729
3737
  */
3730
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";
3731
3743
  /**
3732
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.
3733
3745
  */
@@ -4140,6 +4152,10 @@ interface GetPublicIntegrationResponse$1 {
4140
4152
  * Status of the integration version verification
4141
4153
  */
4142
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";
4143
4159
  /**
4144
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.
4145
4161
  */
@@ -4215,6 +4231,10 @@ interface ListPublicPluginsResponse$1 {
4215
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.
4216
4232
  */
4217
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";
4218
4238
  }[];
4219
4239
  meta: {
4220
4240
  /**
@@ -4437,6 +4457,10 @@ interface GetPublicPluginByIdResponse$1 {
4437
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.
4438
4458
  */
4439
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";
4440
4464
  };
4441
4465
  }
4442
4466
 
@@ -4662,6 +4686,10 @@ interface GetDereferencedPublicPluginByIdResponse$1 {
4662
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.
4663
4687
  */
4664
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";
4665
4693
  };
4666
4694
  }
4667
4695
 
@@ -4879,6 +4907,10 @@ interface GetPublicPluginResponse$1 {
4879
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.
4880
4908
  */
4881
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";
4882
4914
  };
4883
4915
  }
4884
4916
 
@@ -5483,6 +5515,10 @@ interface CreateBotRequestBody$1 {
5483
5515
  * Optional name for the bot, if not provided will be auto-generated
5484
5516
  */
5485
5517
  name?: string;
5518
+ /**
5519
+ * Optional description for the bot
5520
+ */
5521
+ description?: string;
5486
5522
  /**
5487
5523
  * Media files associated with the [Bot](#schema_bot)
5488
5524
  */
@@ -5582,6 +5618,10 @@ interface CreateBotResponse$1 {
5582
5618
  * Status of the integration version verification
5583
5619
  */
5584
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";
5585
5625
  };
5586
5626
  };
5587
5627
  /**
@@ -5658,6 +5698,10 @@ interface CreateBotResponse$1 {
5658
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.
5659
5699
  */
5660
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";
5661
5705
  };
5662
5706
  };
5663
5707
  /**
@@ -5868,6 +5912,10 @@ interface CreateBotResponse$1 {
5868
5912
  * Name of the [Bot](#schema_bot)
5869
5913
  */
5870
5914
  name: string;
5915
+ /**
5916
+ * Description of the [Bot](#schema_bot)
5917
+ */
5918
+ description?: string;
5871
5919
  /**
5872
5920
  * Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
5873
5921
  */
@@ -6150,6 +6198,10 @@ interface UpdateBotRequestBody$1 {
6150
6198
  * Optional name for the bot, if not provided will be auto-generated
6151
6199
  */
6152
6200
  name?: string;
6201
+ /**
6202
+ * Optional description for the bot
6203
+ */
6204
+ description?: string;
6153
6205
  /**
6154
6206
  * Media files associated with the [Bot](#schema_bot)
6155
6207
  */
@@ -6246,6 +6298,10 @@ interface UpdateBotResponse$1 {
6246
6298
  * Status of the integration version verification
6247
6299
  */
6248
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";
6249
6305
  };
6250
6306
  };
6251
6307
  /**
@@ -6322,6 +6378,10 @@ interface UpdateBotResponse$1 {
6322
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.
6323
6379
  */
6324
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";
6325
6385
  };
6326
6386
  };
6327
6387
  /**
@@ -6532,6 +6592,10 @@ interface UpdateBotResponse$1 {
6532
6592
  * Name of the [Bot](#schema_bot)
6533
6593
  */
6534
6594
  name: string;
6595
+ /**
6596
+ * Description of the [Bot](#schema_bot)
6597
+ */
6598
+ description?: string;
6535
6599
  /**
6536
6600
  * Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
6537
6601
  */
@@ -6725,6 +6789,10 @@ interface GetBotResponse$1 {
6725
6789
  * Status of the integration version verification
6726
6790
  */
6727
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";
6728
6796
  };
6729
6797
  };
6730
6798
  /**
@@ -6801,6 +6869,10 @@ interface GetBotResponse$1 {
6801
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.
6802
6870
  */
6803
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";
6804
6876
  };
6805
6877
  };
6806
6878
  /**
@@ -7011,6 +7083,10 @@ interface GetBotResponse$1 {
7011
7083
  * Name of the [Bot](#schema_bot)
7012
7084
  */
7013
7085
  name: string;
7086
+ /**
7087
+ * Description of the [Bot](#schema_bot)
7088
+ */
7089
+ description?: string;
7014
7090
  /**
7015
7091
  * Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
7016
7092
  */
@@ -9027,6 +9103,10 @@ interface CreateIntegrationResponse$1 {
9027
9103
  * Status of the integration version verification
9028
9104
  */
9029
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";
9030
9110
  /**
9031
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.
9032
9112
  */
@@ -10103,6 +10183,10 @@ interface UpdateIntegrationResponse$1 {
10103
10183
  * Status of the integration version verification
10104
10184
  */
10105
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";
10106
10190
  /**
10107
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.
10108
10192
  */
@@ -10516,6 +10600,10 @@ interface ListIntegrationsResponse$1 {
10516
10600
  * Status of the integration version verification
10517
10601
  */
10518
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";
10519
10607
  /**
10520
10608
  * Metadata about which fields matched the search criteria
10521
10609
  */
@@ -10950,6 +11038,10 @@ interface GetIntegrationResponse$1 {
10950
11038
  * Status of the integration version verification
10951
11039
  */
10952
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";
10953
11045
  /**
10954
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.
10955
11047
  */
@@ -11382,6 +11474,10 @@ interface GetIntegrationByNameResponse$1 {
11382
11474
  * Status of the integration version verification
11383
11475
  */
11384
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";
11385
11481
  /**
11386
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.
11387
11483
  */
@@ -12851,6 +12947,10 @@ interface CreatePluginResponse$1 {
12851
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.
12852
12948
  */
12853
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";
12854
12954
  };
12855
12955
  }
12856
12956
 
@@ -13067,6 +13167,10 @@ interface GetPluginResponse$1 {
13067
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.
13068
13168
  */
13069
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";
13070
13174
  };
13071
13175
  }
13072
13176
 
@@ -13292,6 +13396,10 @@ interface GetDereferencedPluginResponse$1 {
13292
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.
13293
13397
  */
13294
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";
13295
13403
  };
13296
13404
  }
13297
13405
 
@@ -13509,6 +13617,10 @@ interface GetPluginByNameResponse$1 {
13509
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.
13510
13618
  */
13511
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";
13512
13624
  };
13513
13625
  }
13514
13626
 
@@ -13929,6 +14041,10 @@ interface UpdatePluginResponse$1 {
13929
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.
13930
14042
  */
13931
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";
13932
14048
  };
13933
14049
  }
13934
14050
 
@@ -14004,6 +14120,10 @@ interface ListPluginsResponse$1 {
14004
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.
14005
14121
  */
14006
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";
14007
14127
  }[];
14008
14128
  meta: {
14009
14129
  /**
@@ -14414,6 +14534,7 @@ declare class Client$6 extends Client$7 {
14414
14534
  public: boolean;
14415
14535
  visibility: "public" | "private" | "unlisted";
14416
14536
  verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
14537
+ lifecycleStatus: "published" | "deprecated";
14417
14538
  ownerWorkspace: {
14418
14539
  id: string;
14419
14540
  handle: string | null;
@@ -14508,6 +14629,7 @@ declare class Client$6 extends Client$7 {
14508
14629
  public: boolean;
14509
14630
  visibility: "public" | "private" | "unlisted";
14510
14631
  verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
14632
+ lifecycleStatus: "published" | "deprecated";
14511
14633
  matchedOn?: {
14512
14634
  name?: boolean;
14513
14635
  title?: boolean;
@@ -14844,6 +14966,10 @@ interface UpsertFileResponse$1 {
14844
14966
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
14845
14967
  */
14846
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;
14847
14973
  };
14848
14974
  /**
14849
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.
@@ -14970,6 +15096,10 @@ interface ListFilesResponse$1 {
14970
15096
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
14971
15097
  */
14972
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;
14973
15103
  };
14974
15104
  /**
14975
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.
@@ -15078,6 +15208,10 @@ interface GetFileResponse$1 {
15078
15208
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
15079
15209
  */
15080
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;
15081
15215
  };
15082
15216
  /**
15083
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.
@@ -15200,6 +15334,10 @@ interface UpdateFileMetadataResponse$1 {
15200
15334
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
15201
15335
  */
15202
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;
15203
15341
  };
15204
15342
  /**
15205
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.
@@ -15310,6 +15448,10 @@ interface CopyFileResponse$1 {
15310
15448
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
15311
15449
  */
15312
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;
15313
15455
  };
15314
15456
  /**
15315
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.
@@ -15743,6 +15885,7 @@ declare class Client$4 extends Client$5 implements IClient$2 {
15743
15885
  type: "bot" | "integration" | "user";
15744
15886
  id?: string;
15745
15887
  name?: string;
15888
+ alias?: string;
15746
15889
  };
15747
15890
  indexingStack?: "v1" | "v2";
15748
15891
  }>;
@@ -15831,6 +15974,10 @@ interface ListTablesResponse$1 {
15831
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.
15832
15975
  */
15833
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;
15834
15981
  schema: {
15835
15982
  $schema?: string;
15836
15983
  /**
@@ -15976,6 +16123,10 @@ interface GetTableResponse$1 {
15976
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.
15977
16124
  */
15978
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;
15979
16130
  schema: {
15980
16131
  $schema?: string;
15981
16132
  /**
@@ -16121,6 +16272,10 @@ interface GetOrCreateTableRequestBody$1 {
16121
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.
16122
16273
  */
16123
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;
16124
16279
  /**
16125
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.
16126
16281
  */
@@ -16157,6 +16312,10 @@ interface GetOrCreateTableResponse$1 {
16157
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.
16158
16313
  */
16159
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;
16160
16319
  schema: {
16161
16320
  $schema?: string;
16162
16321
  /**
@@ -16309,6 +16468,10 @@ interface CreateTableRequestBody$1 {
16309
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.
16310
16469
  */
16311
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;
16312
16475
  /**
16313
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.
16314
16477
  */
@@ -16345,6 +16508,10 @@ interface CreateTableResponse$1 {
16345
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.
16346
16509
  */
16347
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;
16348
16515
  schema: {
16349
16516
  $schema?: string;
16350
16517
  /**
@@ -16499,6 +16666,10 @@ interface DuplicateTableResponse$1 {
16499
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.
16500
16667
  */
16501
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;
16502
16673
  schema: {
16503
16674
  $schema?: string;
16504
16675
  /**
@@ -16717,6 +16888,10 @@ interface UpdateTableRequestBody$1 {
16717
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.
16718
16889
  */
16719
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;
16720
16895
  /**
16721
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.
16722
16897
  */
@@ -16757,6 +16932,10 @@ interface UpdateTableResponse$1 {
16757
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.
16758
16933
  */
16759
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;
16760
16939
  schema: {
16761
16940
  $schema?: string;
16762
16941
  /**
@@ -16914,6 +17093,10 @@ interface RenameTableColumnResponse$1 {
16914
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.
16915
17094
  */
16916
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;
16917
17100
  schema: {
16918
17101
  $schema?: string;
16919
17102
  /**
@@ -18543,6 +18726,8 @@ interface ListMessagesRequestQuery {
18543
18726
  tags?: {
18544
18727
  [k: string]: string;
18545
18728
  };
18729
+ afterDate?: string;
18730
+ beforeDate?: string;
18546
18731
  }
18547
18732
  interface ListMessagesRequestParams {
18548
18733
  }
@@ -20500,6 +20685,10 @@ interface ListPublicIntegrationsResponse {
20500
20685
  * Status of the integration version verification
20501
20686
  */
20502
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";
20503
20692
  ownerWorkspace: {
20504
20693
  id: string;
20505
20694
  handle: string | null;
@@ -20938,6 +21127,10 @@ interface GetPublicIntegrationByIdResponse {
20938
21127
  * Status of the integration version verification
20939
21128
  */
20940
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";
20941
21134
  /**
20942
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.
20943
21136
  */
@@ -21350,6 +21543,10 @@ interface GetPublicIntegrationResponse {
21350
21543
  * Status of the integration version verification
21351
21544
  */
21352
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";
21353
21550
  /**
21354
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.
21355
21552
  */
@@ -21425,6 +21622,10 @@ interface ListPublicPluginsResponse {
21425
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.
21426
21623
  */
21427
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";
21428
21629
  }[];
21429
21630
  meta: {
21430
21631
  /**
@@ -21647,6 +21848,10 @@ interface GetPublicPluginByIdResponse {
21647
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.
21648
21849
  */
21649
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";
21650
21855
  };
21651
21856
  }
21652
21857
 
@@ -21872,6 +22077,10 @@ interface GetDereferencedPublicPluginByIdResponse {
21872
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.
21873
22078
  */
21874
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";
21875
22084
  };
21876
22085
  }
21877
22086
 
@@ -22089,6 +22298,10 @@ interface GetPublicPluginResponse {
22089
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.
22090
22299
  */
22091
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";
22092
22305
  };
22093
22306
  }
22094
22307
 
@@ -22693,6 +22906,10 @@ interface CreateBotRequestBody {
22693
22906
  * Optional name for the bot, if not provided will be auto-generated
22694
22907
  */
22695
22908
  name?: string;
22909
+ /**
22910
+ * Optional description for the bot
22911
+ */
22912
+ description?: string;
22696
22913
  /**
22697
22914
  * Media files associated with the [Bot](#schema_bot)
22698
22915
  */
@@ -22792,6 +23009,10 @@ interface CreateBotResponse {
22792
23009
  * Status of the integration version verification
22793
23010
  */
22794
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";
22795
23016
  };
22796
23017
  };
22797
23018
  /**
@@ -22868,6 +23089,10 @@ interface CreateBotResponse {
22868
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.
22869
23090
  */
22870
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";
22871
23096
  };
22872
23097
  };
22873
23098
  /**
@@ -23078,6 +23303,10 @@ interface CreateBotResponse {
23078
23303
  * Name of the [Bot](#schema_bot)
23079
23304
  */
23080
23305
  name: string;
23306
+ /**
23307
+ * Description of the [Bot](#schema_bot)
23308
+ */
23309
+ description?: string;
23081
23310
  /**
23082
23311
  * Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
23083
23312
  */
@@ -23360,6 +23589,10 @@ interface UpdateBotRequestBody {
23360
23589
  * Optional name for the bot, if not provided will be auto-generated
23361
23590
  */
23362
23591
  name?: string;
23592
+ /**
23593
+ * Optional description for the bot
23594
+ */
23595
+ description?: string;
23363
23596
  /**
23364
23597
  * Media files associated with the [Bot](#schema_bot)
23365
23598
  */
@@ -23456,6 +23689,10 @@ interface UpdateBotResponse {
23456
23689
  * Status of the integration version verification
23457
23690
  */
23458
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";
23459
23696
  };
23460
23697
  };
23461
23698
  /**
@@ -23532,6 +23769,10 @@ interface UpdateBotResponse {
23532
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.
23533
23770
  */
23534
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";
23535
23776
  };
23536
23777
  };
23537
23778
  /**
@@ -23742,6 +23983,10 @@ interface UpdateBotResponse {
23742
23983
  * Name of the [Bot](#schema_bot)
23743
23984
  */
23744
23985
  name: string;
23986
+ /**
23987
+ * Description of the [Bot](#schema_bot)
23988
+ */
23989
+ description?: string;
23745
23990
  /**
23746
23991
  * Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
23747
23992
  */
@@ -23935,6 +24180,10 @@ interface GetBotResponse {
23935
24180
  * Status of the integration version verification
23936
24181
  */
23937
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";
23938
24187
  };
23939
24188
  };
23940
24189
  /**
@@ -24011,6 +24260,10 @@ interface GetBotResponse {
24011
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.
24012
24261
  */
24013
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";
24014
24267
  };
24015
24268
  };
24016
24269
  /**
@@ -24221,6 +24474,10 @@ interface GetBotResponse {
24221
24474
  * Name of the [Bot](#schema_bot)
24222
24475
  */
24223
24476
  name: string;
24477
+ /**
24478
+ * Description of the [Bot](#schema_bot)
24479
+ */
24480
+ description?: string;
24224
24481
  /**
24225
24482
  * Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
24226
24483
  */
@@ -26238,6 +26495,10 @@ interface CreateIntegrationResponse {
26238
26495
  * Status of the integration version verification
26239
26496
  */
26240
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";
26241
26502
  /**
26242
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.
26243
26504
  */
@@ -27314,6 +27575,10 @@ interface UpdateIntegrationResponse {
27314
27575
  * Status of the integration version verification
27315
27576
  */
27316
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";
27317
27582
  /**
27318
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.
27319
27584
  */
@@ -27727,6 +27992,10 @@ interface ListIntegrationsResponse {
27727
27992
  * Status of the integration version verification
27728
27993
  */
27729
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";
27730
27999
  /**
27731
28000
  * Metadata about which fields matched the search criteria
27732
28001
  */
@@ -28161,6 +28430,10 @@ interface GetIntegrationResponse {
28161
28430
  * Status of the integration version verification
28162
28431
  */
28163
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";
28164
28437
  /**
28165
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.
28166
28439
  */
@@ -28593,6 +28866,10 @@ interface GetIntegrationByNameResponse {
28593
28866
  * Status of the integration version verification
28594
28867
  */
28595
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";
28596
28873
  /**
28597
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.
28598
28875
  */
@@ -30062,6 +30339,10 @@ interface CreatePluginResponse {
30062
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.
30063
30340
  */
30064
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";
30065
30346
  };
30066
30347
  }
30067
30348
 
@@ -30278,6 +30559,10 @@ interface GetPluginResponse {
30278
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.
30279
30560
  */
30280
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";
30281
30566
  };
30282
30567
  }
30283
30568
 
@@ -30503,6 +30788,10 @@ interface GetDereferencedPluginResponse {
30503
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.
30504
30789
  */
30505
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";
30506
30795
  };
30507
30796
  }
30508
30797
 
@@ -30720,6 +31009,10 @@ interface GetPluginByNameResponse {
30720
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.
30721
31010
  */
30722
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";
30723
31016
  };
30724
31017
  }
30725
31018
 
@@ -31140,6 +31433,10 @@ interface UpdatePluginResponse {
31140
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.
31141
31434
  */
31142
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";
31143
31440
  };
31144
31441
  }
31145
31442
 
@@ -31215,6 +31512,10 @@ interface ListPluginsResponse {
31215
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.
31216
31513
  */
31217
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";
31218
31519
  }[];
31219
31520
  meta: {
31220
31521
  /**
@@ -31714,6 +32015,10 @@ interface UpsertFileResponse {
31714
32015
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
31715
32016
  */
31716
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;
31717
32022
  };
31718
32023
  /**
31719
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.
@@ -31840,6 +32145,10 @@ interface ListFilesResponse {
31840
32145
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
31841
32146
  */
31842
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;
31843
32152
  };
31844
32153
  /**
31845
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.
@@ -31948,6 +32257,10 @@ interface GetFileResponse {
31948
32257
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
31949
32258
  */
31950
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;
31951
32264
  };
31952
32265
  /**
31953
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.
@@ -32070,6 +32383,10 @@ interface UpdateFileMetadataResponse {
32070
32383
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
32071
32384
  */
32072
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;
32073
32390
  };
32074
32391
  /**
32075
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.
@@ -32180,6 +32497,10 @@ interface CopyFileResponse {
32180
32497
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
32181
32498
  */
32182
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;
32183
32504
  };
32184
32505
  /**
32185
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.
@@ -32566,6 +32887,10 @@ interface ListTablesResponse {
32566
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.
32567
32888
  */
32568
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;
32569
32894
  schema: {
32570
32895
  $schema?: string;
32571
32896
  /**
@@ -32711,6 +33036,10 @@ interface GetTableResponse {
32711
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.
32712
33037
  */
32713
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;
32714
33043
  schema: {
32715
33044
  $schema?: string;
32716
33045
  /**
@@ -32856,6 +33185,10 @@ interface GetOrCreateTableRequestBody {
32856
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.
32857
33186
  */
32858
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;
32859
33192
  /**
32860
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.
32861
33194
  */
@@ -32892,6 +33225,10 @@ interface GetOrCreateTableResponse {
32892
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.
32893
33226
  */
32894
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;
32895
33232
  schema: {
32896
33233
  $schema?: string;
32897
33234
  /**
@@ -33044,6 +33381,10 @@ interface CreateTableRequestBody {
33044
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.
33045
33382
  */
33046
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;
33047
33388
  /**
33048
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.
33049
33390
  */
@@ -33080,6 +33421,10 @@ interface CreateTableResponse {
33080
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.
33081
33422
  */
33082
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;
33083
33428
  schema: {
33084
33429
  $schema?: string;
33085
33430
  /**
@@ -33234,6 +33579,10 @@ interface DuplicateTableResponse {
33234
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.
33235
33580
  */
33236
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;
33237
33586
  schema: {
33238
33587
  $schema?: string;
33239
33588
  /**
@@ -33452,6 +33801,10 @@ interface UpdateTableRequestBody {
33452
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.
33453
33802
  */
33454
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;
33455
33808
  /**
33456
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.
33457
33810
  */
@@ -33492,6 +33845,10 @@ interface UpdateTableResponse {
33492
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.
33493
33846
  */
33494
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;
33495
33852
  schema: {
33496
33853
  $schema?: string;
33497
33854
  /**
@@ -33649,6 +34006,10 @@ interface RenameTableColumnResponse {
33649
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.
33650
34007
  */
33651
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;
33652
34013
  schema: {
33653
34014
  $schema?: string;
33654
34015
  /**
@@ -34251,6 +34612,10 @@ interface Bot {
34251
34612
  * Status of the integration version verification
34252
34613
  */
34253
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";
34254
34619
  };
34255
34620
  };
34256
34621
  /**
@@ -34327,6 +34692,10 @@ interface Bot {
34327
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.
34328
34693
  */
34329
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";
34330
34699
  };
34331
34700
  };
34332
34701
  /**
@@ -34537,6 +34906,10 @@ interface Bot {
34537
34906
  * Name of the [Bot](#schema_bot)
34538
34907
  */
34539
34908
  name: string;
34909
+ /**
34910
+ * Description of the [Bot](#schema_bot)
34911
+ */
34912
+ description?: string;
34540
34913
  /**
34541
34914
  * Last deployment date of the [Bot](#schema_bot) in the ISO 8601 format
34542
34915
  */
@@ -34955,6 +35328,10 @@ interface Integration {
34955
35328
  * Status of the integration version verification
34956
35329
  */
34957
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";
34958
35335
  /**
34959
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.
34960
35337
  */
@@ -35314,6 +35691,10 @@ interface Plugin {
35314
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.
35315
35692
  */
35316
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";
35317
35698
  }
35318
35699
  interface Workspace {
35319
35700
  id: string;
@@ -35773,6 +36154,10 @@ interface Table {
35773
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.
35774
36155
  */
35775
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;
35776
36161
  schema: {
35777
36162
  $schema?: string;
35778
36163
  /**
@@ -36052,6 +36437,10 @@ interface File {
36052
36437
  * This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.
36053
36438
  */
36054
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;
36055
36444
  };
36056
36445
  /**
36057
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.
@@ -36332,6 +36721,8 @@ declare class Client extends Client$1 implements IClient {
36332
36721
  tags?: {
36333
36722
  [x: string]: string;
36334
36723
  } | undefined;
36724
+ afterDate?: string | undefined;
36725
+ beforeDate?: string | undefined;
36335
36726
  conversationId?: string | undefined;
36336
36727
  }) => AsyncCollection<{
36337
36728
  id: string;
@@ -36416,6 +36807,7 @@ declare class Client extends Client$1 implements IClient {
36416
36807
  public: boolean;
36417
36808
  visibility: "public" | "private" | "unlisted";
36418
36809
  verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
36810
+ lifecycleStatus: "published" | "deprecated";
36419
36811
  ownerWorkspace: {
36420
36812
  id: string;
36421
36813
  handle: string | null;
@@ -36502,6 +36894,7 @@ declare class Client extends Client$1 implements IClient {
36502
36894
  public: boolean;
36503
36895
  visibility: "public" | "private" | "unlisted";
36504
36896
  verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
36897
+ lifecycleStatus: "published" | "deprecated";
36505
36898
  matchedOn?: {
36506
36899
  name?: boolean;
36507
36900
  title?: boolean;
@@ -36560,6 +36953,7 @@ declare class Client extends Client$1 implements IClient {
36560
36953
  readmeUrl: string;
36561
36954
  public: boolean;
36562
36955
  visibility: "public" | "private" | "unlisted";
36956
+ lifecycleStatus: "published" | "deprecated";
36563
36957
  }>;
36564
36958
  publicPlugins: (props: {
36565
36959
  name?: string | undefined;
@@ -36576,6 +36970,7 @@ declare class Client extends Client$1 implements IClient {
36576
36970
  readmeUrl: string;
36577
36971
  public: boolean;
36578
36972
  visibility: "public" | "private" | "unlisted";
36973
+ lifecycleStatus: "published" | "deprecated";
36579
36974
  }>;
36580
36975
  activities: (props: {
36581
36976
  botId: string;
@@ -36619,6 +37014,7 @@ declare class Client extends Client$1 implements IClient {
36619
37014
  type: "bot" | "integration" | "user";
36620
37015
  id?: string;
36621
37016
  name?: string;
37017
+ alias?: string;
36622
37018
  };
36623
37019
  indexingStack?: "v1" | "v2";
36624
37020
  }>;