@chatbotkit/sdk 1.26.0 → 1.26.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/types/api/v1.d.ts +383 -2
- package/dist/esm/types/api/v1.d.ts +383 -2
- package/package.json +1 -1
|
@@ -3506,6 +3506,66 @@ export interface paths {
|
|
|
3506
3506
|
patch?: never;
|
|
3507
3507
|
trace?: never;
|
|
3508
3508
|
};
|
|
3509
|
+
"/platform/guide/{guideId}/fetch": {
|
|
3510
|
+
parameters: {
|
|
3511
|
+
query?: never;
|
|
3512
|
+
header?: never;
|
|
3513
|
+
path?: never;
|
|
3514
|
+
cookie?: never;
|
|
3515
|
+
};
|
|
3516
|
+
/**
|
|
3517
|
+
* Fetch a specific platform guide
|
|
3518
|
+
* @description Retrieves the complete content and metadata of a specific guide. This
|
|
3519
|
+
* includes the markdown content and all associated frontmatter.
|
|
3520
|
+
*
|
|
3521
|
+
*/
|
|
3522
|
+
get: operations["fetchPlatformGuide"];
|
|
3523
|
+
put?: never;
|
|
3524
|
+
post?: never;
|
|
3525
|
+
delete?: never;
|
|
3526
|
+
options?: never;
|
|
3527
|
+
head?: never;
|
|
3528
|
+
patch?: never;
|
|
3529
|
+
trace?: never;
|
|
3530
|
+
};
|
|
3531
|
+
"/platform/guide/list": {
|
|
3532
|
+
parameters: {
|
|
3533
|
+
query?: never;
|
|
3534
|
+
header?: never;
|
|
3535
|
+
path?: never;
|
|
3536
|
+
cookie?: never;
|
|
3537
|
+
};
|
|
3538
|
+
/**
|
|
3539
|
+
* Retrieve a list of platform guides
|
|
3540
|
+
* @description Returns a list of available guides with their metadata.
|
|
3541
|
+
*
|
|
3542
|
+
*/
|
|
3543
|
+
get: operations["listPlatformGuides"];
|
|
3544
|
+
put?: never;
|
|
3545
|
+
post?: never;
|
|
3546
|
+
delete?: never;
|
|
3547
|
+
options?: never;
|
|
3548
|
+
head?: never;
|
|
3549
|
+
patch?: never;
|
|
3550
|
+
trace?: never;
|
|
3551
|
+
};
|
|
3552
|
+
"/platform/guide/search": {
|
|
3553
|
+
parameters: {
|
|
3554
|
+
query?: never;
|
|
3555
|
+
header?: never;
|
|
3556
|
+
path?: never;
|
|
3557
|
+
cookie?: never;
|
|
3558
|
+
};
|
|
3559
|
+
get?: never;
|
|
3560
|
+
put?: never;
|
|
3561
|
+
/** Search platform guides using semantic similarity */
|
|
3562
|
+
post: operations["searchPlatformGuides"];
|
|
3563
|
+
delete?: never;
|
|
3564
|
+
options?: never;
|
|
3565
|
+
head?: never;
|
|
3566
|
+
patch?: never;
|
|
3567
|
+
trace?: never;
|
|
3568
|
+
};
|
|
3509
3569
|
"/platform/manual/{manualId}/fetch": {
|
|
3510
3570
|
parameters: {
|
|
3511
3571
|
query?: never;
|
|
@@ -4478,6 +4538,11 @@ export interface components {
|
|
|
4478
4538
|
* @enum {string}
|
|
4479
4539
|
*/
|
|
4480
4540
|
Schedule: "never" | "quarterhourly" | "halfhourly" | "hourly" | "daily" | "weekly" | "monthly";
|
|
4541
|
+
/**
|
|
4542
|
+
* @description The sync status of an integration
|
|
4543
|
+
* @enum {string}
|
|
4544
|
+
*/
|
|
4545
|
+
SyncStatus: "pending" | "synced" | "error";
|
|
4481
4546
|
/**
|
|
4482
4547
|
* @description The task execution status
|
|
4483
4548
|
* @enum {string}
|
|
@@ -12936,8 +13001,18 @@ export interface operations {
|
|
|
12936
13001
|
datasetId: string;
|
|
12937
13002
|
/** @description The Notion API token (returned as '********' if configured, null otherwise) */
|
|
12938
13003
|
token?: string;
|
|
13004
|
+
/**
|
|
13005
|
+
* @description The sync status of an integration
|
|
13006
|
+
* @enum {string}
|
|
13007
|
+
*/
|
|
13008
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
12939
13009
|
/** @description The sync schedule */
|
|
12940
13010
|
syncSchedule?: string;
|
|
13011
|
+
/**
|
|
13012
|
+
* Format: date-time
|
|
13013
|
+
* @description The timestamp of the last successful sync
|
|
13014
|
+
*/
|
|
13015
|
+
lastSyncedAt?: string;
|
|
12941
13016
|
/** @description The time in milliseconds until records expire */
|
|
12942
13017
|
expiresIn?: number;
|
|
12943
13018
|
};
|
|
@@ -13140,8 +13215,18 @@ export interface operations {
|
|
|
13140
13215
|
datasetId: string;
|
|
13141
13216
|
/** @description The Notion API token (returned as '********' if configured, null otherwise) */
|
|
13142
13217
|
token?: string;
|
|
13218
|
+
/**
|
|
13219
|
+
* @description The sync status of an integration
|
|
13220
|
+
* @enum {string}
|
|
13221
|
+
*/
|
|
13222
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
13143
13223
|
/** @description The sync schedule */
|
|
13144
13224
|
syncSchedule?: string;
|
|
13225
|
+
/**
|
|
13226
|
+
* Format: date-time
|
|
13227
|
+
* @description The timestamp of the last successful sync
|
|
13228
|
+
*/
|
|
13229
|
+
lastSyncedAt?: string;
|
|
13145
13230
|
/** @description The time in milliseconds until records expire */
|
|
13146
13231
|
expiresIn?: number;
|
|
13147
13232
|
}[];
|
|
@@ -13174,8 +13259,18 @@ export interface operations {
|
|
|
13174
13259
|
datasetId: string;
|
|
13175
13260
|
/** @description The Notion API token (returned as '********' if configured, null otherwise) */
|
|
13176
13261
|
token?: string;
|
|
13262
|
+
/**
|
|
13263
|
+
* @description The sync status of an integration
|
|
13264
|
+
* @enum {string}
|
|
13265
|
+
*/
|
|
13266
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
13177
13267
|
/** @description The sync schedule */
|
|
13178
13268
|
syncSchedule?: string;
|
|
13269
|
+
/**
|
|
13270
|
+
* Format: date-time
|
|
13271
|
+
* @description The timestamp of the last successful sync
|
|
13272
|
+
*/
|
|
13273
|
+
lastSyncedAt?: string;
|
|
13179
13274
|
/** @description The time in milliseconds until records expire */
|
|
13180
13275
|
expiresIn?: number;
|
|
13181
13276
|
};
|
|
@@ -13271,8 +13366,18 @@ export interface operations {
|
|
|
13271
13366
|
selectors?: string;
|
|
13272
13367
|
/** @description Indicates if the Sitemap integration should use JavaScript during the spidering process */
|
|
13273
13368
|
javascript?: boolean;
|
|
13369
|
+
/**
|
|
13370
|
+
* @description The sync status of an integration
|
|
13371
|
+
* @enum {string}
|
|
13372
|
+
*/
|
|
13373
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
13274
13374
|
/** @description The sync schedule to use for this Sitemap integration */
|
|
13275
13375
|
syncSchedule?: string;
|
|
13376
|
+
/**
|
|
13377
|
+
* Format: date-time
|
|
13378
|
+
* @description The timestamp of the last successful sync
|
|
13379
|
+
*/
|
|
13380
|
+
lastSyncedAt?: string;
|
|
13276
13381
|
/** @description Record expiry in milliseconds */
|
|
13277
13382
|
expiresIn?: number;
|
|
13278
13383
|
};
|
|
@@ -13493,8 +13598,18 @@ export interface operations {
|
|
|
13493
13598
|
selectors?: string;
|
|
13494
13599
|
/** @description Indicates if the Sitemap integration should use JavaScript during the spidering process */
|
|
13495
13600
|
javascript?: boolean;
|
|
13601
|
+
/**
|
|
13602
|
+
* @description The sync status of an integration
|
|
13603
|
+
* @enum {string}
|
|
13604
|
+
*/
|
|
13605
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
13496
13606
|
/** @description The sync schedule to use for this Sitemap integration */
|
|
13497
13607
|
syncSchedule?: string;
|
|
13608
|
+
/**
|
|
13609
|
+
* Format: date-time
|
|
13610
|
+
* @description The timestamp of the last successful sync
|
|
13611
|
+
*/
|
|
13612
|
+
lastSyncedAt?: string;
|
|
13498
13613
|
/** @description Record expiry in milliseconds */
|
|
13499
13614
|
expiresIn?: number;
|
|
13500
13615
|
}[];
|
|
@@ -13533,8 +13648,18 @@ export interface operations {
|
|
|
13533
13648
|
selectors?: string;
|
|
13534
13649
|
/** @description Indicates if the Sitemap integration should use JavaScript during the spidering process */
|
|
13535
13650
|
javascript?: boolean;
|
|
13651
|
+
/**
|
|
13652
|
+
* @description The sync status of an integration
|
|
13653
|
+
* @enum {string}
|
|
13654
|
+
*/
|
|
13655
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
13536
13656
|
/** @description The sync schedule to use for this Sitemap integration */
|
|
13537
13657
|
syncSchedule?: string;
|
|
13658
|
+
/**
|
|
13659
|
+
* Format: date-time
|
|
13660
|
+
* @description The timestamp of the last successful sync
|
|
13661
|
+
*/
|
|
13662
|
+
lastSyncedAt?: string;
|
|
13538
13663
|
/** @description Record expiry in milliseconds */
|
|
13539
13664
|
expiresIn?: number;
|
|
13540
13665
|
};
|
|
@@ -17318,6 +17443,10 @@ export interface operations {
|
|
|
17318
17443
|
secret?: string;
|
|
17319
17444
|
/** @description The ID of the file associated with the ability */
|
|
17320
17445
|
file?: string;
|
|
17446
|
+
/** @description The ID of the space associated with the ability */
|
|
17447
|
+
space?: string;
|
|
17448
|
+
/** @description The provider of the ability */
|
|
17449
|
+
provider?: string;
|
|
17321
17450
|
icon: string;
|
|
17322
17451
|
tags?: string[];
|
|
17323
17452
|
setup?: string;
|
|
@@ -17369,6 +17498,10 @@ export interface operations {
|
|
|
17369
17498
|
secret?: string;
|
|
17370
17499
|
/** @description The ID of the file associated with the ability */
|
|
17371
17500
|
file?: string;
|
|
17501
|
+
/** @description The ID of the space associated with the ability */
|
|
17502
|
+
space?: string;
|
|
17503
|
+
/** @description The provider of the ability */
|
|
17504
|
+
provider?: string;
|
|
17372
17505
|
icon: string;
|
|
17373
17506
|
tags?: string[];
|
|
17374
17507
|
setup?: string;
|
|
@@ -17948,6 +18081,226 @@ export interface operations {
|
|
|
17948
18081
|
};
|
|
17949
18082
|
};
|
|
17950
18083
|
};
|
|
18084
|
+
fetchPlatformGuide: {
|
|
18085
|
+
parameters: {
|
|
18086
|
+
query?: never;
|
|
18087
|
+
header?: never;
|
|
18088
|
+
path: {
|
|
18089
|
+
guideId: string;
|
|
18090
|
+
};
|
|
18091
|
+
cookie?: never;
|
|
18092
|
+
};
|
|
18093
|
+
requestBody?: never;
|
|
18094
|
+
responses: {
|
|
18095
|
+
/** @description The guide was retrieved successfully */
|
|
18096
|
+
200: {
|
|
18097
|
+
headers: {
|
|
18098
|
+
[name: string]: unknown;
|
|
18099
|
+
};
|
|
18100
|
+
content: {
|
|
18101
|
+
"application/json": {
|
|
18102
|
+
/** @description The associated name */
|
|
18103
|
+
name: string;
|
|
18104
|
+
/** @description The associated description */
|
|
18105
|
+
description?: string;
|
|
18106
|
+
/** @description Meta data information */
|
|
18107
|
+
meta?: {
|
|
18108
|
+
[key: string]: unknown;
|
|
18109
|
+
};
|
|
18110
|
+
/** @description The instance ID */
|
|
18111
|
+
id: string;
|
|
18112
|
+
/** @description The timestamp (ms) when the instance was created */
|
|
18113
|
+
createdAt: number;
|
|
18114
|
+
/** @description The timestamp (ms) when the instance was updated */
|
|
18115
|
+
updatedAt: number;
|
|
18116
|
+
/** @description The category of the guide */
|
|
18117
|
+
category?: string;
|
|
18118
|
+
/** @description Tags associated with the guide */
|
|
18119
|
+
tags?: string[];
|
|
18120
|
+
/** @description The display order index */
|
|
18121
|
+
index?: number;
|
|
18122
|
+
/** @description The markdown content of the guide */
|
|
18123
|
+
content: string;
|
|
18124
|
+
/** @description The URL to the official guide page */
|
|
18125
|
+
link?: string;
|
|
18126
|
+
};
|
|
18127
|
+
};
|
|
18128
|
+
};
|
|
18129
|
+
/** @description Guide not found */
|
|
18130
|
+
404: {
|
|
18131
|
+
headers: {
|
|
18132
|
+
[name: string]: unknown;
|
|
18133
|
+
};
|
|
18134
|
+
content?: never;
|
|
18135
|
+
};
|
|
18136
|
+
/** @description An error response */
|
|
18137
|
+
default: {
|
|
18138
|
+
headers: {
|
|
18139
|
+
[name: string]: unknown;
|
|
18140
|
+
};
|
|
18141
|
+
content?: never;
|
|
18142
|
+
};
|
|
18143
|
+
};
|
|
18144
|
+
};
|
|
18145
|
+
listPlatformGuides: {
|
|
18146
|
+
parameters: {
|
|
18147
|
+
query?: {
|
|
18148
|
+
cursor?: string;
|
|
18149
|
+
order?: "asc" | "desc";
|
|
18150
|
+
take?: number;
|
|
18151
|
+
meta?: {
|
|
18152
|
+
[key: string]: string;
|
|
18153
|
+
};
|
|
18154
|
+
};
|
|
18155
|
+
header?: never;
|
|
18156
|
+
path?: never;
|
|
18157
|
+
cookie?: never;
|
|
18158
|
+
};
|
|
18159
|
+
requestBody?: never;
|
|
18160
|
+
responses: {
|
|
18161
|
+
/** @description The list of guides was retrieved successfully */
|
|
18162
|
+
200: {
|
|
18163
|
+
headers: {
|
|
18164
|
+
[name: string]: unknown;
|
|
18165
|
+
};
|
|
18166
|
+
content: {
|
|
18167
|
+
"application/json": {
|
|
18168
|
+
items: {
|
|
18169
|
+
/** @description The associated name */
|
|
18170
|
+
name: string;
|
|
18171
|
+
/** @description The associated description */
|
|
18172
|
+
description: string;
|
|
18173
|
+
/** @description Meta data information */
|
|
18174
|
+
meta?: {
|
|
18175
|
+
[key: string]: unknown;
|
|
18176
|
+
};
|
|
18177
|
+
/** @description The instance ID */
|
|
18178
|
+
id: string;
|
|
18179
|
+
/** @description The timestamp (ms) when the instance was created */
|
|
18180
|
+
createdAt: number;
|
|
18181
|
+
/** @description The timestamp (ms) when the instance was updated */
|
|
18182
|
+
updatedAt: number;
|
|
18183
|
+
/** @description The category of the guide */
|
|
18184
|
+
category?: string;
|
|
18185
|
+
/** @description Tags associated with the guide */
|
|
18186
|
+
tags: string[];
|
|
18187
|
+
/** @description The display order index */
|
|
18188
|
+
index: number;
|
|
18189
|
+
/** @description The URL to the official guide page */
|
|
18190
|
+
link: string;
|
|
18191
|
+
}[];
|
|
18192
|
+
};
|
|
18193
|
+
"application/jsonl": {
|
|
18194
|
+
/**
|
|
18195
|
+
* @description The type of event
|
|
18196
|
+
* @enum {string}
|
|
18197
|
+
*/
|
|
18198
|
+
type: "item";
|
|
18199
|
+
/** @description Instance list properties */
|
|
18200
|
+
data: {
|
|
18201
|
+
/** @description The associated name */
|
|
18202
|
+
name: string;
|
|
18203
|
+
/** @description The associated description */
|
|
18204
|
+
description: string;
|
|
18205
|
+
/** @description Meta data information */
|
|
18206
|
+
meta?: {
|
|
18207
|
+
[key: string]: unknown;
|
|
18208
|
+
};
|
|
18209
|
+
/** @description The instance ID */
|
|
18210
|
+
id: string;
|
|
18211
|
+
/** @description The timestamp (ms) when the instance was created */
|
|
18212
|
+
createdAt: number;
|
|
18213
|
+
/** @description The timestamp (ms) when the instance was updated */
|
|
18214
|
+
updatedAt: number;
|
|
18215
|
+
/** @description The category of the guide */
|
|
18216
|
+
category?: string;
|
|
18217
|
+
/** @description Tags associated with the guide */
|
|
18218
|
+
tags: string[];
|
|
18219
|
+
/** @description The display order index */
|
|
18220
|
+
index: number;
|
|
18221
|
+
/** @description The URL to the official guide page */
|
|
18222
|
+
link: string;
|
|
18223
|
+
};
|
|
18224
|
+
};
|
|
18225
|
+
};
|
|
18226
|
+
};
|
|
18227
|
+
/** @description An error response */
|
|
18228
|
+
default: {
|
|
18229
|
+
headers: {
|
|
18230
|
+
[name: string]: unknown;
|
|
18231
|
+
};
|
|
18232
|
+
content?: never;
|
|
18233
|
+
};
|
|
18234
|
+
};
|
|
18235
|
+
};
|
|
18236
|
+
searchPlatformGuides: {
|
|
18237
|
+
parameters: {
|
|
18238
|
+
query?: never;
|
|
18239
|
+
header?: never;
|
|
18240
|
+
path?: never;
|
|
18241
|
+
cookie?: never;
|
|
18242
|
+
};
|
|
18243
|
+
requestBody: {
|
|
18244
|
+
content: {
|
|
18245
|
+
"application/json": {
|
|
18246
|
+
/** @description The search query to find relevant guides */
|
|
18247
|
+
search: string;
|
|
18248
|
+
/**
|
|
18249
|
+
* @description The maximum number of results to return (1-100, default 10)
|
|
18250
|
+
* @default 10
|
|
18251
|
+
*/
|
|
18252
|
+
take?: number;
|
|
18253
|
+
};
|
|
18254
|
+
};
|
|
18255
|
+
};
|
|
18256
|
+
responses: {
|
|
18257
|
+
/** @description The search was successful */
|
|
18258
|
+
200: {
|
|
18259
|
+
headers: {
|
|
18260
|
+
[name: string]: unknown;
|
|
18261
|
+
};
|
|
18262
|
+
content: {
|
|
18263
|
+
"application/json": {
|
|
18264
|
+
items: {
|
|
18265
|
+
/** @description The associated name */
|
|
18266
|
+
name: string;
|
|
18267
|
+
/** @description The associated description */
|
|
18268
|
+
description: string;
|
|
18269
|
+
/** @description Meta data information */
|
|
18270
|
+
meta?: {
|
|
18271
|
+
[key: string]: unknown;
|
|
18272
|
+
};
|
|
18273
|
+
/** @description The instance ID */
|
|
18274
|
+
id: string;
|
|
18275
|
+
/** @description The timestamp (ms) when the instance was created */
|
|
18276
|
+
createdAt: number;
|
|
18277
|
+
/** @description The timestamp (ms) when the instance was updated */
|
|
18278
|
+
updatedAt: number;
|
|
18279
|
+
/** @description The category of the guide */
|
|
18280
|
+
category?: string;
|
|
18281
|
+
/** @description Tags associated with the guide */
|
|
18282
|
+
tags: string[];
|
|
18283
|
+
/** @description The display order index */
|
|
18284
|
+
index: number;
|
|
18285
|
+
/** @description The similarity score of the search result */
|
|
18286
|
+
score: number;
|
|
18287
|
+
/** @description An excerpt from the most relevant part of the guide */
|
|
18288
|
+
excerpt: string;
|
|
18289
|
+
/** @description The URL to the official guide page */
|
|
18290
|
+
link: string;
|
|
18291
|
+
}[];
|
|
18292
|
+
};
|
|
18293
|
+
};
|
|
18294
|
+
};
|
|
18295
|
+
/** @description An error response */
|
|
18296
|
+
default: {
|
|
18297
|
+
headers: {
|
|
18298
|
+
[name: string]: unknown;
|
|
18299
|
+
};
|
|
18300
|
+
content?: never;
|
|
18301
|
+
};
|
|
18302
|
+
};
|
|
18303
|
+
};
|
|
17951
18304
|
fetchPlatformManual: {
|
|
17952
18305
|
parameters: {
|
|
17953
18306
|
query?: never;
|
|
@@ -19721,6 +20074,8 @@ export interface operations {
|
|
|
19721
20074
|
fileId?: string;
|
|
19722
20075
|
/** @description The ID of the bot associated with the ability */
|
|
19723
20076
|
botId?: string;
|
|
20077
|
+
/** @description The ID of the space associated with the ability */
|
|
20078
|
+
spaceId?: string;
|
|
19724
20079
|
/** @description The instruction of the skillset ability */
|
|
19725
20080
|
instruction: string;
|
|
19726
20081
|
};
|
|
@@ -19764,6 +20119,8 @@ export interface operations {
|
|
|
19764
20119
|
fileId?: string;
|
|
19765
20120
|
/** @description The ID of the bot associated with the ability */
|
|
19766
20121
|
botId?: string;
|
|
20122
|
+
/** @description The ID of the space associated with the ability */
|
|
20123
|
+
spaceId?: string;
|
|
19767
20124
|
/** @description The text to update the ability with */
|
|
19768
20125
|
instruction?: string;
|
|
19769
20126
|
};
|
|
@@ -19819,6 +20176,8 @@ export interface operations {
|
|
|
19819
20176
|
fileId?: string;
|
|
19820
20177
|
/** @description The ID of the bot associated with the ability */
|
|
19821
20178
|
botId?: string;
|
|
20179
|
+
/** @description The ID of the space associated with the ability */
|
|
20180
|
+
spaceId?: string;
|
|
19822
20181
|
/** @description The instruction of the ability */
|
|
19823
20182
|
instruction?: string;
|
|
19824
20183
|
};
|
|
@@ -19891,6 +20250,8 @@ export interface operations {
|
|
|
19891
20250
|
fileId?: string;
|
|
19892
20251
|
/** @description The ID of the bot associated with the ability */
|
|
19893
20252
|
botId?: string;
|
|
20253
|
+
/** @description The ID of the space associated with the ability */
|
|
20254
|
+
spaceId?: string;
|
|
19894
20255
|
instruction: string;
|
|
19895
20256
|
}[];
|
|
19896
20257
|
};
|
|
@@ -19924,6 +20285,8 @@ export interface operations {
|
|
|
19924
20285
|
fileId?: string;
|
|
19925
20286
|
/** @description The ID of the bot associated with the ability */
|
|
19926
20287
|
botId?: string;
|
|
20288
|
+
/** @description The ID of the space associated with the ability */
|
|
20289
|
+
spaceId?: string;
|
|
19927
20290
|
instruction: string;
|
|
19928
20291
|
};
|
|
19929
20292
|
};
|
|
@@ -19984,6 +20347,8 @@ export interface operations {
|
|
|
19984
20347
|
fileId?: string;
|
|
19985
20348
|
/** @description The ID of the bot associated with the ability */
|
|
19986
20349
|
botId?: string;
|
|
20350
|
+
/** @description The ID of the space associated with the ability */
|
|
20351
|
+
spaceId?: string;
|
|
19987
20352
|
instruction: string;
|
|
19988
20353
|
}[];
|
|
19989
20354
|
};
|
|
@@ -20017,6 +20382,8 @@ export interface operations {
|
|
|
20017
20382
|
fileId?: string;
|
|
20018
20383
|
/** @description The ID of the bot associated with the ability */
|
|
20019
20384
|
botId?: string;
|
|
20385
|
+
/** @description The ID of the space associated with the ability */
|
|
20386
|
+
spaceId?: string;
|
|
20020
20387
|
instruction: string;
|
|
20021
20388
|
};
|
|
20022
20389
|
};
|
|
@@ -20341,6 +20708,8 @@ export interface operations {
|
|
|
20341
20708
|
createdAt: number;
|
|
20342
20709
|
/** @description The timestamp (ms) when the instance was updated */
|
|
20343
20710
|
updatedAt: number;
|
|
20711
|
+
/** @description The ID of the blueprint */
|
|
20712
|
+
blueprintId?: string;
|
|
20344
20713
|
/** @description The contact associated with the space */
|
|
20345
20714
|
contactId?: string;
|
|
20346
20715
|
};
|
|
@@ -20375,6 +20744,8 @@ export interface operations {
|
|
|
20375
20744
|
meta?: {
|
|
20376
20745
|
[key: string]: unknown;
|
|
20377
20746
|
};
|
|
20747
|
+
/** @description The ID of the blueprint */
|
|
20748
|
+
blueprintId?: string;
|
|
20378
20749
|
/** @description The contact associated with the space */
|
|
20379
20750
|
contactId?: string;
|
|
20380
20751
|
};
|
|
@@ -20420,6 +20791,8 @@ export interface operations {
|
|
|
20420
20791
|
meta?: {
|
|
20421
20792
|
[key: string]: unknown;
|
|
20422
20793
|
};
|
|
20794
|
+
/** @description The ID of the blueprint */
|
|
20795
|
+
blueprintId?: string;
|
|
20423
20796
|
/** @description The contact associated with the space */
|
|
20424
20797
|
contactId?: string;
|
|
20425
20798
|
};
|
|
@@ -20485,6 +20858,8 @@ export interface operations {
|
|
|
20485
20858
|
createdAt: number;
|
|
20486
20859
|
/** @description The timestamp (ms) when the instance was updated */
|
|
20487
20860
|
updatedAt: number;
|
|
20861
|
+
/** @description The ID of the blueprint */
|
|
20862
|
+
blueprintId?: string;
|
|
20488
20863
|
/** @description The contact associated with the space */
|
|
20489
20864
|
contactId?: string;
|
|
20490
20865
|
}[];
|
|
@@ -20495,7 +20870,7 @@ export interface operations {
|
|
|
20495
20870
|
* @enum {string}
|
|
20496
20871
|
*/
|
|
20497
20872
|
type: "item";
|
|
20498
|
-
/** @description
|
|
20873
|
+
/** @description Blueprint properties */
|
|
20499
20874
|
data: {
|
|
20500
20875
|
/** @description The associated name */
|
|
20501
20876
|
name?: string;
|
|
@@ -20511,6 +20886,8 @@ export interface operations {
|
|
|
20511
20886
|
createdAt: number;
|
|
20512
20887
|
/** @description The timestamp (ms) when the instance was updated */
|
|
20513
20888
|
updatedAt: number;
|
|
20889
|
+
/** @description The ID of the blueprint */
|
|
20890
|
+
blueprintId?: string;
|
|
20514
20891
|
/** @description The contact associated with the space */
|
|
20515
20892
|
contactId?: string;
|
|
20516
20893
|
};
|
|
@@ -20565,6 +20942,8 @@ export interface operations {
|
|
|
20565
20942
|
createdAt: number;
|
|
20566
20943
|
/** @description The timestamp (ms) when the instance was updated */
|
|
20567
20944
|
updatedAt: number;
|
|
20945
|
+
/** @description The ID of the blueprint */
|
|
20946
|
+
blueprintId?: string;
|
|
20568
20947
|
/** @description The contact associated with the space */
|
|
20569
20948
|
contactId?: string;
|
|
20570
20949
|
}[];
|
|
@@ -20575,7 +20954,7 @@ export interface operations {
|
|
|
20575
20954
|
* @enum {string}
|
|
20576
20955
|
*/
|
|
20577
20956
|
type: "item";
|
|
20578
|
-
/** @description
|
|
20957
|
+
/** @description Blueprint properties */
|
|
20579
20958
|
data: {
|
|
20580
20959
|
/** @description The associated name */
|
|
20581
20960
|
name?: string;
|
|
@@ -20591,6 +20970,8 @@ export interface operations {
|
|
|
20591
20970
|
createdAt: number;
|
|
20592
20971
|
/** @description The timestamp (ms) when the instance was updated */
|
|
20593
20972
|
updatedAt: number;
|
|
20973
|
+
/** @description The ID of the blueprint */
|
|
20974
|
+
blueprintId?: string;
|
|
20594
20975
|
/** @description The contact associated with the space */
|
|
20595
20976
|
contactId?: string;
|
|
20596
20977
|
};
|
|
@@ -3506,6 +3506,66 @@ export interface paths {
|
|
|
3506
3506
|
patch?: never;
|
|
3507
3507
|
trace?: never;
|
|
3508
3508
|
};
|
|
3509
|
+
"/platform/guide/{guideId}/fetch": {
|
|
3510
|
+
parameters: {
|
|
3511
|
+
query?: never;
|
|
3512
|
+
header?: never;
|
|
3513
|
+
path?: never;
|
|
3514
|
+
cookie?: never;
|
|
3515
|
+
};
|
|
3516
|
+
/**
|
|
3517
|
+
* Fetch a specific platform guide
|
|
3518
|
+
* @description Retrieves the complete content and metadata of a specific guide. This
|
|
3519
|
+
* includes the markdown content and all associated frontmatter.
|
|
3520
|
+
*
|
|
3521
|
+
*/
|
|
3522
|
+
get: operations["fetchPlatformGuide"];
|
|
3523
|
+
put?: never;
|
|
3524
|
+
post?: never;
|
|
3525
|
+
delete?: never;
|
|
3526
|
+
options?: never;
|
|
3527
|
+
head?: never;
|
|
3528
|
+
patch?: never;
|
|
3529
|
+
trace?: never;
|
|
3530
|
+
};
|
|
3531
|
+
"/platform/guide/list": {
|
|
3532
|
+
parameters: {
|
|
3533
|
+
query?: never;
|
|
3534
|
+
header?: never;
|
|
3535
|
+
path?: never;
|
|
3536
|
+
cookie?: never;
|
|
3537
|
+
};
|
|
3538
|
+
/**
|
|
3539
|
+
* Retrieve a list of platform guides
|
|
3540
|
+
* @description Returns a list of available guides with their metadata.
|
|
3541
|
+
*
|
|
3542
|
+
*/
|
|
3543
|
+
get: operations["listPlatformGuides"];
|
|
3544
|
+
put?: never;
|
|
3545
|
+
post?: never;
|
|
3546
|
+
delete?: never;
|
|
3547
|
+
options?: never;
|
|
3548
|
+
head?: never;
|
|
3549
|
+
patch?: never;
|
|
3550
|
+
trace?: never;
|
|
3551
|
+
};
|
|
3552
|
+
"/platform/guide/search": {
|
|
3553
|
+
parameters: {
|
|
3554
|
+
query?: never;
|
|
3555
|
+
header?: never;
|
|
3556
|
+
path?: never;
|
|
3557
|
+
cookie?: never;
|
|
3558
|
+
};
|
|
3559
|
+
get?: never;
|
|
3560
|
+
put?: never;
|
|
3561
|
+
/** Search platform guides using semantic similarity */
|
|
3562
|
+
post: operations["searchPlatformGuides"];
|
|
3563
|
+
delete?: never;
|
|
3564
|
+
options?: never;
|
|
3565
|
+
head?: never;
|
|
3566
|
+
patch?: never;
|
|
3567
|
+
trace?: never;
|
|
3568
|
+
};
|
|
3509
3569
|
"/platform/manual/{manualId}/fetch": {
|
|
3510
3570
|
parameters: {
|
|
3511
3571
|
query?: never;
|
|
@@ -4478,6 +4538,11 @@ export interface components {
|
|
|
4478
4538
|
* @enum {string}
|
|
4479
4539
|
*/
|
|
4480
4540
|
Schedule: "never" | "quarterhourly" | "halfhourly" | "hourly" | "daily" | "weekly" | "monthly";
|
|
4541
|
+
/**
|
|
4542
|
+
* @description The sync status of an integration
|
|
4543
|
+
* @enum {string}
|
|
4544
|
+
*/
|
|
4545
|
+
SyncStatus: "pending" | "synced" | "error";
|
|
4481
4546
|
/**
|
|
4482
4547
|
* @description The task execution status
|
|
4483
4548
|
* @enum {string}
|
|
@@ -12936,8 +13001,18 @@ export interface operations {
|
|
|
12936
13001
|
datasetId: string;
|
|
12937
13002
|
/** @description The Notion API token (returned as '********' if configured, null otherwise) */
|
|
12938
13003
|
token?: string;
|
|
13004
|
+
/**
|
|
13005
|
+
* @description The sync status of an integration
|
|
13006
|
+
* @enum {string}
|
|
13007
|
+
*/
|
|
13008
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
12939
13009
|
/** @description The sync schedule */
|
|
12940
13010
|
syncSchedule?: string;
|
|
13011
|
+
/**
|
|
13012
|
+
* Format: date-time
|
|
13013
|
+
* @description The timestamp of the last successful sync
|
|
13014
|
+
*/
|
|
13015
|
+
lastSyncedAt?: string;
|
|
12941
13016
|
/** @description The time in milliseconds until records expire */
|
|
12942
13017
|
expiresIn?: number;
|
|
12943
13018
|
};
|
|
@@ -13140,8 +13215,18 @@ export interface operations {
|
|
|
13140
13215
|
datasetId: string;
|
|
13141
13216
|
/** @description The Notion API token (returned as '********' if configured, null otherwise) */
|
|
13142
13217
|
token?: string;
|
|
13218
|
+
/**
|
|
13219
|
+
* @description The sync status of an integration
|
|
13220
|
+
* @enum {string}
|
|
13221
|
+
*/
|
|
13222
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
13143
13223
|
/** @description The sync schedule */
|
|
13144
13224
|
syncSchedule?: string;
|
|
13225
|
+
/**
|
|
13226
|
+
* Format: date-time
|
|
13227
|
+
* @description The timestamp of the last successful sync
|
|
13228
|
+
*/
|
|
13229
|
+
lastSyncedAt?: string;
|
|
13145
13230
|
/** @description The time in milliseconds until records expire */
|
|
13146
13231
|
expiresIn?: number;
|
|
13147
13232
|
}[];
|
|
@@ -13174,8 +13259,18 @@ export interface operations {
|
|
|
13174
13259
|
datasetId: string;
|
|
13175
13260
|
/** @description The Notion API token (returned as '********' if configured, null otherwise) */
|
|
13176
13261
|
token?: string;
|
|
13262
|
+
/**
|
|
13263
|
+
* @description The sync status of an integration
|
|
13264
|
+
* @enum {string}
|
|
13265
|
+
*/
|
|
13266
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
13177
13267
|
/** @description The sync schedule */
|
|
13178
13268
|
syncSchedule?: string;
|
|
13269
|
+
/**
|
|
13270
|
+
* Format: date-time
|
|
13271
|
+
* @description The timestamp of the last successful sync
|
|
13272
|
+
*/
|
|
13273
|
+
lastSyncedAt?: string;
|
|
13179
13274
|
/** @description The time in milliseconds until records expire */
|
|
13180
13275
|
expiresIn?: number;
|
|
13181
13276
|
};
|
|
@@ -13271,8 +13366,18 @@ export interface operations {
|
|
|
13271
13366
|
selectors?: string;
|
|
13272
13367
|
/** @description Indicates if the Sitemap integration should use JavaScript during the spidering process */
|
|
13273
13368
|
javascript?: boolean;
|
|
13369
|
+
/**
|
|
13370
|
+
* @description The sync status of an integration
|
|
13371
|
+
* @enum {string}
|
|
13372
|
+
*/
|
|
13373
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
13274
13374
|
/** @description The sync schedule to use for this Sitemap integration */
|
|
13275
13375
|
syncSchedule?: string;
|
|
13376
|
+
/**
|
|
13377
|
+
* Format: date-time
|
|
13378
|
+
* @description The timestamp of the last successful sync
|
|
13379
|
+
*/
|
|
13380
|
+
lastSyncedAt?: string;
|
|
13276
13381
|
/** @description Record expiry in milliseconds */
|
|
13277
13382
|
expiresIn?: number;
|
|
13278
13383
|
};
|
|
@@ -13493,8 +13598,18 @@ export interface operations {
|
|
|
13493
13598
|
selectors?: string;
|
|
13494
13599
|
/** @description Indicates if the Sitemap integration should use JavaScript during the spidering process */
|
|
13495
13600
|
javascript?: boolean;
|
|
13601
|
+
/**
|
|
13602
|
+
* @description The sync status of an integration
|
|
13603
|
+
* @enum {string}
|
|
13604
|
+
*/
|
|
13605
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
13496
13606
|
/** @description The sync schedule to use for this Sitemap integration */
|
|
13497
13607
|
syncSchedule?: string;
|
|
13608
|
+
/**
|
|
13609
|
+
* Format: date-time
|
|
13610
|
+
* @description The timestamp of the last successful sync
|
|
13611
|
+
*/
|
|
13612
|
+
lastSyncedAt?: string;
|
|
13498
13613
|
/** @description Record expiry in milliseconds */
|
|
13499
13614
|
expiresIn?: number;
|
|
13500
13615
|
}[];
|
|
@@ -13533,8 +13648,18 @@ export interface operations {
|
|
|
13533
13648
|
selectors?: string;
|
|
13534
13649
|
/** @description Indicates if the Sitemap integration should use JavaScript during the spidering process */
|
|
13535
13650
|
javascript?: boolean;
|
|
13651
|
+
/**
|
|
13652
|
+
* @description The sync status of an integration
|
|
13653
|
+
* @enum {string}
|
|
13654
|
+
*/
|
|
13655
|
+
syncStatus?: "pending" | "synced" | "error";
|
|
13536
13656
|
/** @description The sync schedule to use for this Sitemap integration */
|
|
13537
13657
|
syncSchedule?: string;
|
|
13658
|
+
/**
|
|
13659
|
+
* Format: date-time
|
|
13660
|
+
* @description The timestamp of the last successful sync
|
|
13661
|
+
*/
|
|
13662
|
+
lastSyncedAt?: string;
|
|
13538
13663
|
/** @description Record expiry in milliseconds */
|
|
13539
13664
|
expiresIn?: number;
|
|
13540
13665
|
};
|
|
@@ -17318,6 +17443,10 @@ export interface operations {
|
|
|
17318
17443
|
secret?: string;
|
|
17319
17444
|
/** @description The ID of the file associated with the ability */
|
|
17320
17445
|
file?: string;
|
|
17446
|
+
/** @description The ID of the space associated with the ability */
|
|
17447
|
+
space?: string;
|
|
17448
|
+
/** @description The provider of the ability */
|
|
17449
|
+
provider?: string;
|
|
17321
17450
|
icon: string;
|
|
17322
17451
|
tags?: string[];
|
|
17323
17452
|
setup?: string;
|
|
@@ -17369,6 +17498,10 @@ export interface operations {
|
|
|
17369
17498
|
secret?: string;
|
|
17370
17499
|
/** @description The ID of the file associated with the ability */
|
|
17371
17500
|
file?: string;
|
|
17501
|
+
/** @description The ID of the space associated with the ability */
|
|
17502
|
+
space?: string;
|
|
17503
|
+
/** @description The provider of the ability */
|
|
17504
|
+
provider?: string;
|
|
17372
17505
|
icon: string;
|
|
17373
17506
|
tags?: string[];
|
|
17374
17507
|
setup?: string;
|
|
@@ -17948,6 +18081,226 @@ export interface operations {
|
|
|
17948
18081
|
};
|
|
17949
18082
|
};
|
|
17950
18083
|
};
|
|
18084
|
+
fetchPlatformGuide: {
|
|
18085
|
+
parameters: {
|
|
18086
|
+
query?: never;
|
|
18087
|
+
header?: never;
|
|
18088
|
+
path: {
|
|
18089
|
+
guideId: string;
|
|
18090
|
+
};
|
|
18091
|
+
cookie?: never;
|
|
18092
|
+
};
|
|
18093
|
+
requestBody?: never;
|
|
18094
|
+
responses: {
|
|
18095
|
+
/** @description The guide was retrieved successfully */
|
|
18096
|
+
200: {
|
|
18097
|
+
headers: {
|
|
18098
|
+
[name: string]: unknown;
|
|
18099
|
+
};
|
|
18100
|
+
content: {
|
|
18101
|
+
"application/json": {
|
|
18102
|
+
/** @description The associated name */
|
|
18103
|
+
name: string;
|
|
18104
|
+
/** @description The associated description */
|
|
18105
|
+
description?: string;
|
|
18106
|
+
/** @description Meta data information */
|
|
18107
|
+
meta?: {
|
|
18108
|
+
[key: string]: unknown;
|
|
18109
|
+
};
|
|
18110
|
+
/** @description The instance ID */
|
|
18111
|
+
id: string;
|
|
18112
|
+
/** @description The timestamp (ms) when the instance was created */
|
|
18113
|
+
createdAt: number;
|
|
18114
|
+
/** @description The timestamp (ms) when the instance was updated */
|
|
18115
|
+
updatedAt: number;
|
|
18116
|
+
/** @description The category of the guide */
|
|
18117
|
+
category?: string;
|
|
18118
|
+
/** @description Tags associated with the guide */
|
|
18119
|
+
tags?: string[];
|
|
18120
|
+
/** @description The display order index */
|
|
18121
|
+
index?: number;
|
|
18122
|
+
/** @description The markdown content of the guide */
|
|
18123
|
+
content: string;
|
|
18124
|
+
/** @description The URL to the official guide page */
|
|
18125
|
+
link?: string;
|
|
18126
|
+
};
|
|
18127
|
+
};
|
|
18128
|
+
};
|
|
18129
|
+
/** @description Guide not found */
|
|
18130
|
+
404: {
|
|
18131
|
+
headers: {
|
|
18132
|
+
[name: string]: unknown;
|
|
18133
|
+
};
|
|
18134
|
+
content?: never;
|
|
18135
|
+
};
|
|
18136
|
+
/** @description An error response */
|
|
18137
|
+
default: {
|
|
18138
|
+
headers: {
|
|
18139
|
+
[name: string]: unknown;
|
|
18140
|
+
};
|
|
18141
|
+
content?: never;
|
|
18142
|
+
};
|
|
18143
|
+
};
|
|
18144
|
+
};
|
|
18145
|
+
listPlatformGuides: {
|
|
18146
|
+
parameters: {
|
|
18147
|
+
query?: {
|
|
18148
|
+
cursor?: string;
|
|
18149
|
+
order?: "asc" | "desc";
|
|
18150
|
+
take?: number;
|
|
18151
|
+
meta?: {
|
|
18152
|
+
[key: string]: string;
|
|
18153
|
+
};
|
|
18154
|
+
};
|
|
18155
|
+
header?: never;
|
|
18156
|
+
path?: never;
|
|
18157
|
+
cookie?: never;
|
|
18158
|
+
};
|
|
18159
|
+
requestBody?: never;
|
|
18160
|
+
responses: {
|
|
18161
|
+
/** @description The list of guides was retrieved successfully */
|
|
18162
|
+
200: {
|
|
18163
|
+
headers: {
|
|
18164
|
+
[name: string]: unknown;
|
|
18165
|
+
};
|
|
18166
|
+
content: {
|
|
18167
|
+
"application/json": {
|
|
18168
|
+
items: {
|
|
18169
|
+
/** @description The associated name */
|
|
18170
|
+
name: string;
|
|
18171
|
+
/** @description The associated description */
|
|
18172
|
+
description: string;
|
|
18173
|
+
/** @description Meta data information */
|
|
18174
|
+
meta?: {
|
|
18175
|
+
[key: string]: unknown;
|
|
18176
|
+
};
|
|
18177
|
+
/** @description The instance ID */
|
|
18178
|
+
id: string;
|
|
18179
|
+
/** @description The timestamp (ms) when the instance was created */
|
|
18180
|
+
createdAt: number;
|
|
18181
|
+
/** @description The timestamp (ms) when the instance was updated */
|
|
18182
|
+
updatedAt: number;
|
|
18183
|
+
/** @description The category of the guide */
|
|
18184
|
+
category?: string;
|
|
18185
|
+
/** @description Tags associated with the guide */
|
|
18186
|
+
tags: string[];
|
|
18187
|
+
/** @description The display order index */
|
|
18188
|
+
index: number;
|
|
18189
|
+
/** @description The URL to the official guide page */
|
|
18190
|
+
link: string;
|
|
18191
|
+
}[];
|
|
18192
|
+
};
|
|
18193
|
+
"application/jsonl": {
|
|
18194
|
+
/**
|
|
18195
|
+
* @description The type of event
|
|
18196
|
+
* @enum {string}
|
|
18197
|
+
*/
|
|
18198
|
+
type: "item";
|
|
18199
|
+
/** @description Instance list properties */
|
|
18200
|
+
data: {
|
|
18201
|
+
/** @description The associated name */
|
|
18202
|
+
name: string;
|
|
18203
|
+
/** @description The associated description */
|
|
18204
|
+
description: string;
|
|
18205
|
+
/** @description Meta data information */
|
|
18206
|
+
meta?: {
|
|
18207
|
+
[key: string]: unknown;
|
|
18208
|
+
};
|
|
18209
|
+
/** @description The instance ID */
|
|
18210
|
+
id: string;
|
|
18211
|
+
/** @description The timestamp (ms) when the instance was created */
|
|
18212
|
+
createdAt: number;
|
|
18213
|
+
/** @description The timestamp (ms) when the instance was updated */
|
|
18214
|
+
updatedAt: number;
|
|
18215
|
+
/** @description The category of the guide */
|
|
18216
|
+
category?: string;
|
|
18217
|
+
/** @description Tags associated with the guide */
|
|
18218
|
+
tags: string[];
|
|
18219
|
+
/** @description The display order index */
|
|
18220
|
+
index: number;
|
|
18221
|
+
/** @description The URL to the official guide page */
|
|
18222
|
+
link: string;
|
|
18223
|
+
};
|
|
18224
|
+
};
|
|
18225
|
+
};
|
|
18226
|
+
};
|
|
18227
|
+
/** @description An error response */
|
|
18228
|
+
default: {
|
|
18229
|
+
headers: {
|
|
18230
|
+
[name: string]: unknown;
|
|
18231
|
+
};
|
|
18232
|
+
content?: never;
|
|
18233
|
+
};
|
|
18234
|
+
};
|
|
18235
|
+
};
|
|
18236
|
+
searchPlatformGuides: {
|
|
18237
|
+
parameters: {
|
|
18238
|
+
query?: never;
|
|
18239
|
+
header?: never;
|
|
18240
|
+
path?: never;
|
|
18241
|
+
cookie?: never;
|
|
18242
|
+
};
|
|
18243
|
+
requestBody: {
|
|
18244
|
+
content: {
|
|
18245
|
+
"application/json": {
|
|
18246
|
+
/** @description The search query to find relevant guides */
|
|
18247
|
+
search: string;
|
|
18248
|
+
/**
|
|
18249
|
+
* @description The maximum number of results to return (1-100, default 10)
|
|
18250
|
+
* @default 10
|
|
18251
|
+
*/
|
|
18252
|
+
take?: number;
|
|
18253
|
+
};
|
|
18254
|
+
};
|
|
18255
|
+
};
|
|
18256
|
+
responses: {
|
|
18257
|
+
/** @description The search was successful */
|
|
18258
|
+
200: {
|
|
18259
|
+
headers: {
|
|
18260
|
+
[name: string]: unknown;
|
|
18261
|
+
};
|
|
18262
|
+
content: {
|
|
18263
|
+
"application/json": {
|
|
18264
|
+
items: {
|
|
18265
|
+
/** @description The associated name */
|
|
18266
|
+
name: string;
|
|
18267
|
+
/** @description The associated description */
|
|
18268
|
+
description: string;
|
|
18269
|
+
/** @description Meta data information */
|
|
18270
|
+
meta?: {
|
|
18271
|
+
[key: string]: unknown;
|
|
18272
|
+
};
|
|
18273
|
+
/** @description The instance ID */
|
|
18274
|
+
id: string;
|
|
18275
|
+
/** @description The timestamp (ms) when the instance was created */
|
|
18276
|
+
createdAt: number;
|
|
18277
|
+
/** @description The timestamp (ms) when the instance was updated */
|
|
18278
|
+
updatedAt: number;
|
|
18279
|
+
/** @description The category of the guide */
|
|
18280
|
+
category?: string;
|
|
18281
|
+
/** @description Tags associated with the guide */
|
|
18282
|
+
tags: string[];
|
|
18283
|
+
/** @description The display order index */
|
|
18284
|
+
index: number;
|
|
18285
|
+
/** @description The similarity score of the search result */
|
|
18286
|
+
score: number;
|
|
18287
|
+
/** @description An excerpt from the most relevant part of the guide */
|
|
18288
|
+
excerpt: string;
|
|
18289
|
+
/** @description The URL to the official guide page */
|
|
18290
|
+
link: string;
|
|
18291
|
+
}[];
|
|
18292
|
+
};
|
|
18293
|
+
};
|
|
18294
|
+
};
|
|
18295
|
+
/** @description An error response */
|
|
18296
|
+
default: {
|
|
18297
|
+
headers: {
|
|
18298
|
+
[name: string]: unknown;
|
|
18299
|
+
};
|
|
18300
|
+
content?: never;
|
|
18301
|
+
};
|
|
18302
|
+
};
|
|
18303
|
+
};
|
|
17951
18304
|
fetchPlatformManual: {
|
|
17952
18305
|
parameters: {
|
|
17953
18306
|
query?: never;
|
|
@@ -19721,6 +20074,8 @@ export interface operations {
|
|
|
19721
20074
|
fileId?: string;
|
|
19722
20075
|
/** @description The ID of the bot associated with the ability */
|
|
19723
20076
|
botId?: string;
|
|
20077
|
+
/** @description The ID of the space associated with the ability */
|
|
20078
|
+
spaceId?: string;
|
|
19724
20079
|
/** @description The instruction of the skillset ability */
|
|
19725
20080
|
instruction: string;
|
|
19726
20081
|
};
|
|
@@ -19764,6 +20119,8 @@ export interface operations {
|
|
|
19764
20119
|
fileId?: string;
|
|
19765
20120
|
/** @description The ID of the bot associated with the ability */
|
|
19766
20121
|
botId?: string;
|
|
20122
|
+
/** @description The ID of the space associated with the ability */
|
|
20123
|
+
spaceId?: string;
|
|
19767
20124
|
/** @description The text to update the ability with */
|
|
19768
20125
|
instruction?: string;
|
|
19769
20126
|
};
|
|
@@ -19819,6 +20176,8 @@ export interface operations {
|
|
|
19819
20176
|
fileId?: string;
|
|
19820
20177
|
/** @description The ID of the bot associated with the ability */
|
|
19821
20178
|
botId?: string;
|
|
20179
|
+
/** @description The ID of the space associated with the ability */
|
|
20180
|
+
spaceId?: string;
|
|
19822
20181
|
/** @description The instruction of the ability */
|
|
19823
20182
|
instruction?: string;
|
|
19824
20183
|
};
|
|
@@ -19891,6 +20250,8 @@ export interface operations {
|
|
|
19891
20250
|
fileId?: string;
|
|
19892
20251
|
/** @description The ID of the bot associated with the ability */
|
|
19893
20252
|
botId?: string;
|
|
20253
|
+
/** @description The ID of the space associated with the ability */
|
|
20254
|
+
spaceId?: string;
|
|
19894
20255
|
instruction: string;
|
|
19895
20256
|
}[];
|
|
19896
20257
|
};
|
|
@@ -19924,6 +20285,8 @@ export interface operations {
|
|
|
19924
20285
|
fileId?: string;
|
|
19925
20286
|
/** @description The ID of the bot associated with the ability */
|
|
19926
20287
|
botId?: string;
|
|
20288
|
+
/** @description The ID of the space associated with the ability */
|
|
20289
|
+
spaceId?: string;
|
|
19927
20290
|
instruction: string;
|
|
19928
20291
|
};
|
|
19929
20292
|
};
|
|
@@ -19984,6 +20347,8 @@ export interface operations {
|
|
|
19984
20347
|
fileId?: string;
|
|
19985
20348
|
/** @description The ID of the bot associated with the ability */
|
|
19986
20349
|
botId?: string;
|
|
20350
|
+
/** @description The ID of the space associated with the ability */
|
|
20351
|
+
spaceId?: string;
|
|
19987
20352
|
instruction: string;
|
|
19988
20353
|
}[];
|
|
19989
20354
|
};
|
|
@@ -20017,6 +20382,8 @@ export interface operations {
|
|
|
20017
20382
|
fileId?: string;
|
|
20018
20383
|
/** @description The ID of the bot associated with the ability */
|
|
20019
20384
|
botId?: string;
|
|
20385
|
+
/** @description The ID of the space associated with the ability */
|
|
20386
|
+
spaceId?: string;
|
|
20020
20387
|
instruction: string;
|
|
20021
20388
|
};
|
|
20022
20389
|
};
|
|
@@ -20341,6 +20708,8 @@ export interface operations {
|
|
|
20341
20708
|
createdAt: number;
|
|
20342
20709
|
/** @description The timestamp (ms) when the instance was updated */
|
|
20343
20710
|
updatedAt: number;
|
|
20711
|
+
/** @description The ID of the blueprint */
|
|
20712
|
+
blueprintId?: string;
|
|
20344
20713
|
/** @description The contact associated with the space */
|
|
20345
20714
|
contactId?: string;
|
|
20346
20715
|
};
|
|
@@ -20375,6 +20744,8 @@ export interface operations {
|
|
|
20375
20744
|
meta?: {
|
|
20376
20745
|
[key: string]: unknown;
|
|
20377
20746
|
};
|
|
20747
|
+
/** @description The ID of the blueprint */
|
|
20748
|
+
blueprintId?: string;
|
|
20378
20749
|
/** @description The contact associated with the space */
|
|
20379
20750
|
contactId?: string;
|
|
20380
20751
|
};
|
|
@@ -20420,6 +20791,8 @@ export interface operations {
|
|
|
20420
20791
|
meta?: {
|
|
20421
20792
|
[key: string]: unknown;
|
|
20422
20793
|
};
|
|
20794
|
+
/** @description The ID of the blueprint */
|
|
20795
|
+
blueprintId?: string;
|
|
20423
20796
|
/** @description The contact associated with the space */
|
|
20424
20797
|
contactId?: string;
|
|
20425
20798
|
};
|
|
@@ -20485,6 +20858,8 @@ export interface operations {
|
|
|
20485
20858
|
createdAt: number;
|
|
20486
20859
|
/** @description The timestamp (ms) when the instance was updated */
|
|
20487
20860
|
updatedAt: number;
|
|
20861
|
+
/** @description The ID of the blueprint */
|
|
20862
|
+
blueprintId?: string;
|
|
20488
20863
|
/** @description The contact associated with the space */
|
|
20489
20864
|
contactId?: string;
|
|
20490
20865
|
}[];
|
|
@@ -20495,7 +20870,7 @@ export interface operations {
|
|
|
20495
20870
|
* @enum {string}
|
|
20496
20871
|
*/
|
|
20497
20872
|
type: "item";
|
|
20498
|
-
/** @description
|
|
20873
|
+
/** @description Blueprint properties */
|
|
20499
20874
|
data: {
|
|
20500
20875
|
/** @description The associated name */
|
|
20501
20876
|
name?: string;
|
|
@@ -20511,6 +20886,8 @@ export interface operations {
|
|
|
20511
20886
|
createdAt: number;
|
|
20512
20887
|
/** @description The timestamp (ms) when the instance was updated */
|
|
20513
20888
|
updatedAt: number;
|
|
20889
|
+
/** @description The ID of the blueprint */
|
|
20890
|
+
blueprintId?: string;
|
|
20514
20891
|
/** @description The contact associated with the space */
|
|
20515
20892
|
contactId?: string;
|
|
20516
20893
|
};
|
|
@@ -20565,6 +20942,8 @@ export interface operations {
|
|
|
20565
20942
|
createdAt: number;
|
|
20566
20943
|
/** @description The timestamp (ms) when the instance was updated */
|
|
20567
20944
|
updatedAt: number;
|
|
20945
|
+
/** @description The ID of the blueprint */
|
|
20946
|
+
blueprintId?: string;
|
|
20568
20947
|
/** @description The contact associated with the space */
|
|
20569
20948
|
contactId?: string;
|
|
20570
20949
|
}[];
|
|
@@ -20575,7 +20954,7 @@ export interface operations {
|
|
|
20575
20954
|
* @enum {string}
|
|
20576
20955
|
*/
|
|
20577
20956
|
type: "item";
|
|
20578
|
-
/** @description
|
|
20957
|
+
/** @description Blueprint properties */
|
|
20579
20958
|
data: {
|
|
20580
20959
|
/** @description The associated name */
|
|
20581
20960
|
name?: string;
|
|
@@ -20591,6 +20970,8 @@ export interface operations {
|
|
|
20591
20970
|
createdAt: number;
|
|
20592
20971
|
/** @description The timestamp (ms) when the instance was updated */
|
|
20593
20972
|
updatedAt: number;
|
|
20973
|
+
/** @description The ID of the blueprint */
|
|
20974
|
+
blueprintId?: string;
|
|
20594
20975
|
/** @description The contact associated with the space */
|
|
20595
20976
|
contactId?: string;
|
|
20596
20977
|
};
|