pika-shared 1.3.0 → 1.4.1
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.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types/chatbot/bedrock-lambda-error.js.map +1 -1
- package/dist/types/chatbot/bedrock-lambda-error.mjs.map +1 -1
- package/dist/types/chatbot/chatbot-types.d.mts +467 -14
- package/dist/types/chatbot/chatbot-types.d.ts +467 -14
- package/dist/types/chatbot/chatbot-types.js +6 -2
- package/dist/types/chatbot/chatbot-types.js.map +1 -1
- package/dist/types/chatbot/chatbot-types.mjs +6 -3
- package/dist/types/chatbot/chatbot-types.mjs.map +1 -1
- package/dist/types/chatbot/webcomp-types.d.mts +107 -0
- package/dist/types/chatbot/webcomp-types.d.ts +107 -0
- package/dist/types/chatbot/webcomp-types.js +4 -0
- package/dist/types/chatbot/webcomp-types.js.map +1 -0
- package/dist/types/chatbot/webcomp-types.mjs +3 -0
- package/dist/types/chatbot/webcomp-types.mjs.map +1 -0
- package/dist/util/api-gateway-utils.js +14 -1
- package/dist/util/api-gateway-utils.js.map +1 -1
- package/dist/util/api-gateway-utils.mjs +14 -1
- package/dist/util/api-gateway-utils.mjs.map +1 -1
- package/dist/util/bad-request-error.d.mts +7 -0
- package/dist/util/bad-request-error.d.ts +7 -0
- package/dist/util/bad-request-error.js +20 -0
- package/dist/util/bad-request-error.js.map +1 -0
- package/dist/util/bad-request-error.mjs +18 -0
- package/dist/util/bad-request-error.mjs.map +1 -0
- package/dist/util/bedrock.js.map +1 -1
- package/dist/util/bedrock.mjs.map +1 -1
- package/dist/util/chatbot-shared-utils.js.map +1 -1
- package/dist/util/chatbot-shared-utils.mjs.map +1 -1
- package/dist/util/forbidden-error.d.mts +7 -0
- package/dist/util/forbidden-error.d.ts +7 -0
- package/dist/util/forbidden-error.js +20 -0
- package/dist/util/forbidden-error.js.map +1 -0
- package/dist/util/forbidden-error.mjs +18 -0
- package/dist/util/forbidden-error.mjs.map +1 -0
- package/dist/util/http-status-error.js.map +1 -1
- package/dist/util/http-status-error.mjs.map +1 -1
- package/dist/util/instruction-assistance-utils.js.map +1 -1
- package/dist/util/instruction-assistance-utils.mjs.map +1 -1
- package/dist/util/jwt.js.map +1 -1
- package/dist/util/jwt.mjs.map +1 -1
- package/dist/util/server-client-utils.js.map +1 -1
- package/dist/util/server-client-utils.mjs.map +1 -1
- package/dist/util/server-utils.d.mts +41 -1
- package/dist/util/server-utils.d.ts +41 -1
- package/dist/util/server-utils.js +303 -0
- package/dist/util/server-utils.js.map +1 -1
- package/dist/util/server-utils.mjs +301 -1
- package/dist/util/server-utils.mjs.map +1 -1
- package/dist/util/unauthorized-error.d.mts +7 -0
- package/dist/util/unauthorized-error.d.ts +7 -0
- package/dist/util/unauthorized-error.js +20 -0
- package/dist/util/unauthorized-error.js.map +1 -0
- package/dist/util/unauthorized-error.mjs +18 -0
- package/dist/util/unauthorized-error.mjs.map +1 -0
- package/dist/util/wc-utils.d.mts +22 -0
- package/dist/util/wc-utils.d.ts +22 -0
- package/dist/util/wc-utils.js +26 -0
- package/dist/util/wc-utils.js.map +1 -0
- package/dist/util/wc-utils.mjs +24 -0
- package/dist/util/wc-utils.mjs.map +1 -0
- package/package.json +1 -1
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;AAUO,IAAM,
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;AAUO,IAAM,WAAA,GAAc;AAAA,EACvB,IAAA,EAAM,aAAA;AAAA,EACN,WAAA,EAAa;AACjB","file":"index.js","sourcesContent":["/**\n * pika-shared package\n *\n * This package contains shared types, utilities, and other code used across the Pika project.\n *\n * You can import specific modules using direct paths:\n * import { ChatUser } from 'pika-shared/types/chatbot/chatbot';\n * import { apiGatewayFunctionDecorator } from 'pika-shared/util/api-gateway-utils';\n */\n\nexport const packageInfo = {\n name: 'pika-shared',\n description: 'Shared utilities and types for Pika project'\n};\n"]}
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";AAUO,IAAM,
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";AAUO,IAAM,WAAA,GAAc;AAAA,EACvB,IAAA,EAAM,aAAA;AAAA,EACN,WAAA,EAAa;AACjB","file":"index.mjs","sourcesContent":["/**\n * pika-shared package\n *\n * This package contains shared types, utilities, and other code used across the Pika project.\n *\n * You can import specific modules using direct paths:\n * import { ChatUser } from 'pika-shared/types/chatbot/chatbot';\n * import { apiGatewayFunctionDecorator } from 'pika-shared/util/api-gateway-utils';\n */\n\nexport const packageInfo = {\n name: 'pika-shared',\n description: 'Shared utilities and types for Pika project'\n};\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/types/chatbot/bedrock-lambda-error.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"sources":["../../../src/types/chatbot/bedrock-lambda-error.ts"],"names":[],"mappings":";;;AAOO,IAAM,kBAAA,GAAN,cAAiC,KAAA,CAAM;AAAA,EAC1C,YAAY,OAAA,EAAiB;AACzB,IAAA,KAAA,CAAM,OAAO,CAAA;AAAA,EACjB;AACJ","file":"bedrock-lambda-error.js","sourcesContent":["/**\n * This error is used to allow us to distinguish between errors that are\n * expected to be returned to the user and errors that are unexpected.\n *\n * These errors are caught in the Bedrock Lambda and converted into a\n * BedrockLambdaResponse object using the message as the body.\n */\nexport class BedrockLambdaError extends Error {\n constructor(message: string) {\n super(message);\n }\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/types/chatbot/bedrock-lambda-error.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"sources":["../../../src/types/chatbot/bedrock-lambda-error.ts"],"names":[],"mappings":";AAOO,IAAM,kBAAA,GAAN,cAAiC,KAAA,CAAM;AAAA,EAC1C,YAAY,OAAA,EAAiB;AACzB,IAAA,KAAA,CAAM,OAAO,CAAA;AAAA,EACjB;AACJ","file":"bedrock-lambda-error.mjs","sourcesContent":["/**\n * This error is used to allow us to distinguish between errors that are\n * expected to be returned to the user and errors that are unexpected.\n *\n * These errors are caught in the Bedrock Lambda and converted into a\n * BedrockLambdaResponse object using the message as the body.\n */\nexport class BedrockLambdaError extends Error {\n constructor(message: string) {\n super(message);\n }\n}\n"]}
|
|
@@ -66,6 +66,15 @@ interface ChatSession<T extends RecordOrUndef = undefined> {
|
|
|
66
66
|
createDate: string;
|
|
67
67
|
/** ISO 8601 formatted timestamp of the last session update */
|
|
68
68
|
lastUpdate: string;
|
|
69
|
+
/**
|
|
70
|
+
* If the entity feature is enabled, this is the entity ID of the user who created the session at the moment of creation.
|
|
71
|
+
*
|
|
72
|
+
* If the site wide entity feature is not enabled or if the associated chat app has disabled the entity feature or
|
|
73
|
+
* if this session is being created in the context of a direct invocation (no chat app involved) then this is the string
|
|
74
|
+
* "chat-app-global" indicating that if the user chooses to share this session, it will be accessible to anyone with access to the chat app who has the link.
|
|
75
|
+
* Otherwise, only those who have access to the chat app and are associated with the same entity ID as the session owner will be able to access the session.
|
|
76
|
+
*/
|
|
77
|
+
entityId: string;
|
|
69
78
|
/**
|
|
70
79
|
* Last Message that has been analyzed by the system for insights, this lets us detect if the user came back to
|
|
71
80
|
* the chat after the session is believed to be complete and added another message that we should analyze again.
|
|
@@ -129,6 +138,16 @@ interface ChatSession<T extends RecordOrUndef = undefined> {
|
|
|
129
138
|
* when the session is created and when the last message ID is added. This should be fine.
|
|
130
139
|
*/
|
|
131
140
|
insightStatus?: InsightStatusNeedsInsightsAnalysis | undefined;
|
|
141
|
+
/** The share ID if this session is shared */
|
|
142
|
+
shareId?: string;
|
|
143
|
+
/** User ID of the user who created the share */
|
|
144
|
+
shareCreatedByUserId?: string;
|
|
145
|
+
/** When this session was first shared */
|
|
146
|
+
shareDate?: string;
|
|
147
|
+
/** When this session's share was revoked */
|
|
148
|
+
shareRevokedDate?: string;
|
|
149
|
+
/** If set to 'mock', this session is used for integration testing purposes. */
|
|
150
|
+
testType?: 'mock';
|
|
132
151
|
}
|
|
133
152
|
/**
|
|
134
153
|
* Convenience type for updating a session with the last analyzed message id and insights s3 url.
|
|
@@ -435,6 +454,20 @@ type UserRole = PikaUserRole | (string & {
|
|
|
435
454
|
__pika?: never;
|
|
436
455
|
});
|
|
437
456
|
type RecordOrUndef = Record<string, string | undefined> | undefined;
|
|
457
|
+
interface UserCognitoIdentity {
|
|
458
|
+
cognitoIdentityId: string;
|
|
459
|
+
cognitoAccessToken: string;
|
|
460
|
+
}
|
|
461
|
+
interface UserAwsCredentials {
|
|
462
|
+
accessKeyId: string;
|
|
463
|
+
secretKey: string;
|
|
464
|
+
sessionToken: string;
|
|
465
|
+
expiration: string;
|
|
466
|
+
}
|
|
467
|
+
interface UserAwsCredentialsResponse {
|
|
468
|
+
success: boolean;
|
|
469
|
+
awsCredentials: UserAwsCredentials;
|
|
470
|
+
}
|
|
438
471
|
/**
|
|
439
472
|
* Represents a user in the chat system with their associated features and preferences.
|
|
440
473
|
* This is saved in the chat user database.
|
|
@@ -481,6 +514,8 @@ interface ChatUser<T extends RecordOrUndef = undefined> {
|
|
|
481
514
|
features: {
|
|
482
515
|
[K in FeatureType]: K extends 'instruction' ? InstructionFeature : K extends 'history' ? HistoryFeature : never;
|
|
483
516
|
};
|
|
517
|
+
/** If set to 'mock', this user is used for integration testing purposes. */
|
|
518
|
+
testType?: 'mock';
|
|
484
519
|
}
|
|
485
520
|
interface ChatUserLite {
|
|
486
521
|
userId: string;
|
|
@@ -521,6 +556,27 @@ interface SimpleAuthenticatedUser<T extends RecordOrUndef = undefined> {
|
|
|
521
556
|
* to use the various features of pika. It is not persisted to the database or in cookies. We use it
|
|
522
557
|
*/
|
|
523
558
|
interface ChatAppOverridableFeatures {
|
|
559
|
+
/**
|
|
560
|
+
* If enabled, entity-based access control and filtering is active for this chat app.
|
|
561
|
+
* Chat apps can only disable the entity feature, not modify the site-level configuration
|
|
562
|
+
* like attributeName or display settings.
|
|
563
|
+
*/
|
|
564
|
+
entity: {
|
|
565
|
+
/**
|
|
566
|
+
* If false, entity features are disabled for this chat app regardless of site settings. This
|
|
567
|
+
* affects the session share feature. If this is false, then a shared session will be
|
|
568
|
+
* accessible to anyone with access to the chat app that the session exists within.
|
|
569
|
+
*/
|
|
570
|
+
enabled: boolean;
|
|
571
|
+
/**
|
|
572
|
+
* The attribute name in the user's custom data that is used to match against the entity access control lists.
|
|
573
|
+
*
|
|
574
|
+
* This value is copied from the site level entity feature configuration and may not be overridden at the chat app level.
|
|
575
|
+
*
|
|
576
|
+
* It enabled is true and this is not set, then an error will be thrown.
|
|
577
|
+
*/
|
|
578
|
+
attributeName?: string;
|
|
579
|
+
};
|
|
524
580
|
/**
|
|
525
581
|
*
|
|
526
582
|
* If true then the verify response feature is enabled.
|
|
@@ -815,9 +871,9 @@ interface SetChatUserPrefsResponse {
|
|
|
815
871
|
prefs?: UserPrefs;
|
|
816
872
|
error?: string;
|
|
817
873
|
}
|
|
818
|
-
interface ChatUserAddOrUpdateResponse
|
|
874
|
+
interface ChatUserAddOrUpdateResponse {
|
|
819
875
|
success: boolean;
|
|
820
|
-
user: ChatUser<
|
|
876
|
+
user: ChatUser<RecordOrUndef>;
|
|
821
877
|
error?: string;
|
|
822
878
|
}
|
|
823
879
|
interface ChatMessageResponse {
|
|
@@ -1051,8 +1107,8 @@ interface AgentDefinition {
|
|
|
1051
1107
|
createdAt: string;
|
|
1052
1108
|
/** ISO 8601 formatted timestamp of last update */
|
|
1053
1109
|
updatedAt: string;
|
|
1054
|
-
/** If
|
|
1055
|
-
|
|
1110
|
+
/** If set to 'mock', this is a test agent that will get deleted after 1 day. This is used for integration testing. */
|
|
1111
|
+
testType?: 'mock';
|
|
1056
1112
|
}
|
|
1057
1113
|
type UpdateableAgentDefinitionFields = Extract<keyof AgentDefinition, 'basePrompt' | 'toolIds' | 'accessRules' | 'runtimeAdapter' | 'rolloutPolicy' | 'dontCacheThis' | 'knowledgeBases'>;
|
|
1058
1114
|
type AgentDefinitionForUpdate = Partial<Omit<AgentDefinition, 'version' | 'createdAt' | 'createdBy' | 'updatedAt' | 'lastModifiedBy' | 'test'>> & {
|
|
@@ -1175,8 +1231,8 @@ interface ToolDefinitionBase {
|
|
|
1175
1231
|
createdAt: string;
|
|
1176
1232
|
/** ISO 8601 formatted timestamp of last update */
|
|
1177
1233
|
updatedAt: string;
|
|
1178
|
-
/** If
|
|
1179
|
-
|
|
1234
|
+
/** If set to 'mock', this is a test tool that will get deleted after 1 day. This is used for integration testing. */
|
|
1235
|
+
testType?: 'mock';
|
|
1180
1236
|
}
|
|
1181
1237
|
interface LambdaToolDefinition extends ToolDefinitionBase {
|
|
1182
1238
|
executionType: 'lambda';
|
|
@@ -1203,11 +1259,16 @@ type ToolDefinitionForCreate = (Omit<LambdaToolDefinition, 'version' | 'createdA
|
|
|
1203
1259
|
}) | (Omit<McpToolDefinition, 'version' | 'createdAt' | 'updatedAt' | 'lastModifiedBy' | 'createdBy'> & {
|
|
1204
1260
|
toolId?: ToolDefinition['toolId'];
|
|
1205
1261
|
});
|
|
1206
|
-
type ToolDefinitionForIdempotentCreateOrUpdate = Omit<
|
|
1207
|
-
lambdaArn: string;
|
|
1262
|
+
type ToolDefinitionForIdempotentCreateOrUpdate = (Omit<LambdaToolDefinition, 'version' | 'createdAt' | 'updatedAt' | 'lastModifiedBy' | 'createdBy'> & {
|
|
1208
1263
|
functionSchema: FunctionDefinition[];
|
|
1209
1264
|
supportedAgentFrameworks: ['bedrock'];
|
|
1210
|
-
}
|
|
1265
|
+
}) | (Omit<InlineToolDefinition, 'version' | 'createdAt' | 'updatedAt' | 'lastModifiedBy' | 'createdBy'> & {
|
|
1266
|
+
functionSchema: FunctionDefinition[];
|
|
1267
|
+
supportedAgentFrameworks: ['bedrock'];
|
|
1268
|
+
}) | (Omit<McpToolDefinition, 'version' | 'createdAt' | 'updatedAt' | 'lastModifiedBy' | 'createdBy'> & {
|
|
1269
|
+
functionSchema: FunctionDefinition[];
|
|
1270
|
+
supportedAgentFrameworks: ['bedrock'];
|
|
1271
|
+
});
|
|
1211
1272
|
interface OAuth {
|
|
1212
1273
|
clientId: string;
|
|
1213
1274
|
clientSecret: string;
|
|
@@ -1281,6 +1342,266 @@ interface UpdateChatAppRequest {
|
|
|
1281
1342
|
chatApp: ChatAppForUpdate;
|
|
1282
1343
|
userId: string;
|
|
1283
1344
|
}
|
|
1345
|
+
interface DeleteMockDataRequest {
|
|
1346
|
+
userId: string;
|
|
1347
|
+
sessions?: {
|
|
1348
|
+
sessionId: string;
|
|
1349
|
+
sessionUserId: string;
|
|
1350
|
+
}[];
|
|
1351
|
+
chatApps?: {
|
|
1352
|
+
chatAppId: string;
|
|
1353
|
+
}[];
|
|
1354
|
+
agents?: {
|
|
1355
|
+
agentId: string;
|
|
1356
|
+
}[];
|
|
1357
|
+
tools?: {
|
|
1358
|
+
toolId: string;
|
|
1359
|
+
}[];
|
|
1360
|
+
users?: {
|
|
1361
|
+
userId: string;
|
|
1362
|
+
}[];
|
|
1363
|
+
}
|
|
1364
|
+
interface DeleteMockDataResponse {
|
|
1365
|
+
success: boolean;
|
|
1366
|
+
}
|
|
1367
|
+
interface CreateOrUpdateMockSessionRequest {
|
|
1368
|
+
session: ChatSessionForCreate & {
|
|
1369
|
+
test: 'test';
|
|
1370
|
+
};
|
|
1371
|
+
userId: string;
|
|
1372
|
+
}
|
|
1373
|
+
interface CreateOrUpdateMockSessionResponse {
|
|
1374
|
+
success: boolean;
|
|
1375
|
+
session: ChatSession<RecordOrUndef>;
|
|
1376
|
+
}
|
|
1377
|
+
interface DeleteMockSessionRequest {
|
|
1378
|
+
sessionId: string;
|
|
1379
|
+
sessionUserId: string;
|
|
1380
|
+
userId: string;
|
|
1381
|
+
}
|
|
1382
|
+
interface DeleteMockSessionResponse {
|
|
1383
|
+
success: boolean;
|
|
1384
|
+
}
|
|
1385
|
+
interface CreateOrUpdateMockChatAppRequest {
|
|
1386
|
+
chatApp: ChatApp & {
|
|
1387
|
+
test: 'test';
|
|
1388
|
+
};
|
|
1389
|
+
userId: string;
|
|
1390
|
+
}
|
|
1391
|
+
interface CreateOrUpdateMockChatAppResponse {
|
|
1392
|
+
success: boolean;
|
|
1393
|
+
chatApp: ChatApp;
|
|
1394
|
+
}
|
|
1395
|
+
interface DeleteMockChatAppRequest {
|
|
1396
|
+
chatAppId: string;
|
|
1397
|
+
userId: string;
|
|
1398
|
+
}
|
|
1399
|
+
interface DeleteMockChatAppResponse {
|
|
1400
|
+
success: boolean;
|
|
1401
|
+
}
|
|
1402
|
+
interface CreateOrUpdateMockAgentRequest {
|
|
1403
|
+
agent: AgentDefinition & {
|
|
1404
|
+
test: 'test';
|
|
1405
|
+
};
|
|
1406
|
+
userId: string;
|
|
1407
|
+
}
|
|
1408
|
+
interface CreateOrUpdateMockAgentResponse {
|
|
1409
|
+
success: boolean;
|
|
1410
|
+
agent: AgentDefinition;
|
|
1411
|
+
}
|
|
1412
|
+
interface DeleteMockAgentRequest {
|
|
1413
|
+
agentId: string;
|
|
1414
|
+
userId: string;
|
|
1415
|
+
}
|
|
1416
|
+
interface DeleteMockAgentResponse {
|
|
1417
|
+
success: boolean;
|
|
1418
|
+
}
|
|
1419
|
+
interface CreateOrUpdateMockToolRequest {
|
|
1420
|
+
tool: ToolDefinition & {
|
|
1421
|
+
test: 'test';
|
|
1422
|
+
};
|
|
1423
|
+
userId: string;
|
|
1424
|
+
}
|
|
1425
|
+
interface CreateOrUpdateMockToolResponse {
|
|
1426
|
+
success: boolean;
|
|
1427
|
+
tool: ToolDefinition;
|
|
1428
|
+
}
|
|
1429
|
+
interface DeleteMockToolRequest {
|
|
1430
|
+
toolId: string;
|
|
1431
|
+
userId: string;
|
|
1432
|
+
}
|
|
1433
|
+
interface DeleteMockToolResponse {
|
|
1434
|
+
success: boolean;
|
|
1435
|
+
}
|
|
1436
|
+
interface CreateOrUpdateMockUserRequest {
|
|
1437
|
+
user: ChatUser<RecordOrUndef> & {
|
|
1438
|
+
test: 'test';
|
|
1439
|
+
};
|
|
1440
|
+
userId: string;
|
|
1441
|
+
}
|
|
1442
|
+
interface CreateOrUpdateMockUserResponse {
|
|
1443
|
+
success: boolean;
|
|
1444
|
+
user: ChatUser<RecordOrUndef>;
|
|
1445
|
+
}
|
|
1446
|
+
interface DeleteMockUserRequest {
|
|
1447
|
+
mockUserId: string;
|
|
1448
|
+
userId: string;
|
|
1449
|
+
}
|
|
1450
|
+
interface DeleteMockUserResponse {
|
|
1451
|
+
success: boolean;
|
|
1452
|
+
}
|
|
1453
|
+
interface GetAllMockSessionsRequest {
|
|
1454
|
+
limit?: number;
|
|
1455
|
+
nextToken?: string;
|
|
1456
|
+
}
|
|
1457
|
+
interface GetAllMockSessionsResponse {
|
|
1458
|
+
success: boolean;
|
|
1459
|
+
chatSessions: ChatSession<RecordOrUndef>[];
|
|
1460
|
+
nextToken?: string;
|
|
1461
|
+
}
|
|
1462
|
+
interface GetMockSessionByUserIdAndSessionIdRequest {
|
|
1463
|
+
sessionId: string;
|
|
1464
|
+
userId: string;
|
|
1465
|
+
}
|
|
1466
|
+
interface GetMockSessionByUserIdAndSessionIdResponse {
|
|
1467
|
+
success: boolean;
|
|
1468
|
+
chatSession?: ChatSession<RecordOrUndef>;
|
|
1469
|
+
}
|
|
1470
|
+
interface GetAllMockUsersRequest {
|
|
1471
|
+
limit?: number;
|
|
1472
|
+
nextToken?: string;
|
|
1473
|
+
}
|
|
1474
|
+
interface GetAllMockUsersResponse {
|
|
1475
|
+
success: boolean;
|
|
1476
|
+
chatUsers: ChatUser<RecordOrUndef>[];
|
|
1477
|
+
nextToken?: string;
|
|
1478
|
+
}
|
|
1479
|
+
interface GetAllMockAgentsRequest {
|
|
1480
|
+
limit?: number;
|
|
1481
|
+
nextToken?: string;
|
|
1482
|
+
}
|
|
1483
|
+
interface GetAllMockAgentsResponse {
|
|
1484
|
+
success: boolean;
|
|
1485
|
+
agents: AgentDefinition[];
|
|
1486
|
+
nextToken?: string;
|
|
1487
|
+
}
|
|
1488
|
+
interface GetAllMockToolsRequest {
|
|
1489
|
+
limit?: number;
|
|
1490
|
+
nextToken?: string;
|
|
1491
|
+
}
|
|
1492
|
+
interface GetAllMockToolsResponse {
|
|
1493
|
+
success: boolean;
|
|
1494
|
+
tools: ToolDefinition[];
|
|
1495
|
+
nextToken?: string;
|
|
1496
|
+
}
|
|
1497
|
+
interface GetAllMockChatAppsRequest {
|
|
1498
|
+
limit?: number;
|
|
1499
|
+
nextToken?: string;
|
|
1500
|
+
}
|
|
1501
|
+
interface GetAllMockChatAppsResponse {
|
|
1502
|
+
success: boolean;
|
|
1503
|
+
chatApps: ChatApp[];
|
|
1504
|
+
nextToken?: string;
|
|
1505
|
+
}
|
|
1506
|
+
interface GetAllMockSharedSessionVisitsRequest {
|
|
1507
|
+
limit?: number;
|
|
1508
|
+
nextToken?: string;
|
|
1509
|
+
}
|
|
1510
|
+
interface GetAllMockSharedSessionVisitsResponse {
|
|
1511
|
+
success: boolean;
|
|
1512
|
+
sharedSessionVisits: SharedSessionVisitHistory[];
|
|
1513
|
+
nextToken?: string;
|
|
1514
|
+
}
|
|
1515
|
+
interface GetAllMockPinnedSessionsRequest {
|
|
1516
|
+
limit?: number;
|
|
1517
|
+
nextToken?: string;
|
|
1518
|
+
}
|
|
1519
|
+
interface GetAllMockPinnedSessionsResponse {
|
|
1520
|
+
success: boolean;
|
|
1521
|
+
pinnedSessions: PinnedSession[];
|
|
1522
|
+
nextToken?: string;
|
|
1523
|
+
}
|
|
1524
|
+
interface GetAllMockDataRequest {
|
|
1525
|
+
limit?: number;
|
|
1526
|
+
}
|
|
1527
|
+
interface GetAllMockDataResponse {
|
|
1528
|
+
success: boolean;
|
|
1529
|
+
data: {
|
|
1530
|
+
sessions: ChatSession<RecordOrUndef>[];
|
|
1531
|
+
users: ChatUser<RecordOrUndef>[];
|
|
1532
|
+
agents: AgentDefinition[];
|
|
1533
|
+
tools: ToolDefinition[];
|
|
1534
|
+
chatApps: ChatApp[];
|
|
1535
|
+
sharedSessionVisits: SharedSessionVisitHistory[];
|
|
1536
|
+
pinnedSessions: PinnedSession[];
|
|
1537
|
+
};
|
|
1538
|
+
}
|
|
1539
|
+
interface DeleteAllMockSessionsRequest {
|
|
1540
|
+
userId: string;
|
|
1541
|
+
}
|
|
1542
|
+
interface DeleteAllMockSessionsResponse {
|
|
1543
|
+
success: boolean;
|
|
1544
|
+
deletedCount: number;
|
|
1545
|
+
}
|
|
1546
|
+
interface DeleteAllMockUsersRequest {
|
|
1547
|
+
userId: string;
|
|
1548
|
+
}
|
|
1549
|
+
interface DeleteAllMockUsersResponse {
|
|
1550
|
+
success: boolean;
|
|
1551
|
+
deletedCount: number;
|
|
1552
|
+
}
|
|
1553
|
+
interface DeleteAllMockAgentsRequest {
|
|
1554
|
+
userId: string;
|
|
1555
|
+
}
|
|
1556
|
+
interface DeleteAllMockAgentsResponse {
|
|
1557
|
+
success: boolean;
|
|
1558
|
+
deletedCount: number;
|
|
1559
|
+
}
|
|
1560
|
+
interface DeleteAllMockToolsRequest {
|
|
1561
|
+
userId: string;
|
|
1562
|
+
}
|
|
1563
|
+
interface DeleteAllMockToolsResponse {
|
|
1564
|
+
success: boolean;
|
|
1565
|
+
deletedCount: number;
|
|
1566
|
+
}
|
|
1567
|
+
interface DeleteAllMockChatAppsRequest {
|
|
1568
|
+
userId: string;
|
|
1569
|
+
}
|
|
1570
|
+
interface DeleteAllMockChatAppsResponse {
|
|
1571
|
+
success: boolean;
|
|
1572
|
+
deletedCount: number;
|
|
1573
|
+
}
|
|
1574
|
+
interface DeleteAllMockSharedSessionVisitsRequest {
|
|
1575
|
+
userId: string;
|
|
1576
|
+
}
|
|
1577
|
+
interface DeleteAllMockSharedSessionVisitsResponse {
|
|
1578
|
+
success: boolean;
|
|
1579
|
+
deletedCount: number;
|
|
1580
|
+
}
|
|
1581
|
+
interface DeleteAllMockPinnedSessionsRequest {
|
|
1582
|
+
userId: string;
|
|
1583
|
+
}
|
|
1584
|
+
interface DeleteAllMockPinnedSessionsResponse {
|
|
1585
|
+
success: boolean;
|
|
1586
|
+
deletedCount: number;
|
|
1587
|
+
}
|
|
1588
|
+
interface DeleteAllMockDataRequest {
|
|
1589
|
+
userId: string;
|
|
1590
|
+
confirm?: boolean;
|
|
1591
|
+
}
|
|
1592
|
+
interface DeleteAllMockDataResponse {
|
|
1593
|
+
success: boolean;
|
|
1594
|
+
deletedCounts: {
|
|
1595
|
+
sessions: number;
|
|
1596
|
+
users: number;
|
|
1597
|
+
agents: number;
|
|
1598
|
+
tools: number;
|
|
1599
|
+
chatApps: number;
|
|
1600
|
+
sharedSessionVisits: number;
|
|
1601
|
+
pinnedSessions: number;
|
|
1602
|
+
total: number;
|
|
1603
|
+
};
|
|
1604
|
+
}
|
|
1284
1605
|
type ChatAppMode = 'standalone' | 'embedded';
|
|
1285
1606
|
/**
|
|
1286
1607
|
* This extends AccessRules so you can enable/disable the chat app for certain users.
|
|
@@ -1341,8 +1662,8 @@ interface ChatApp extends AccessRules {
|
|
|
1341
1662
|
createDate: string;
|
|
1342
1663
|
/** ISO 8601 formatted timestamp of the last chat app update */
|
|
1343
1664
|
lastUpdate: string;
|
|
1344
|
-
/** If
|
|
1345
|
-
|
|
1665
|
+
/** If set to 'mock', this is a test chat app that will get deleted after 1 day. This is used for integration testing. */
|
|
1666
|
+
testType?: 'mock';
|
|
1346
1667
|
}
|
|
1347
1668
|
interface ChatAppLite {
|
|
1348
1669
|
/**
|
|
@@ -1434,7 +1755,7 @@ interface ChatAppDataRequest {
|
|
|
1434
1755
|
/**
|
|
1435
1756
|
* These are the features that are available to be overridden by the chat app.
|
|
1436
1757
|
*/
|
|
1437
|
-
type ChatAppFeature = FileUploadFeatureForChatApp | SuggestionsFeatureForChatApp | PromptInputFieldLabelFeatureForChatApp | UiCustomizationFeatureForChatApp | VerifyResponseFeatureForChatApp | TracesFeatureForChatApp | ChatDisclaimerNoticeFeatureForChatApp | LogoutFeatureForChatApp | SessionInsightsFeatureForChatApp | UserDataOverrideFeatureForChatApp | TagsFeatureForChatApp | AgentInstructionAssistanceFeatureForChatApp | InstructionAugmentationFeatureForChatApp | UserMemoryFeatureForChatApp;
|
|
1758
|
+
type ChatAppFeature = FileUploadFeatureForChatApp | SuggestionsFeatureForChatApp | PromptInputFieldLabelFeatureForChatApp | UiCustomizationFeatureForChatApp | VerifyResponseFeatureForChatApp | TracesFeatureForChatApp | ChatDisclaimerNoticeFeatureForChatApp | LogoutFeatureForChatApp | SessionInsightsFeatureForChatApp | UserDataOverrideFeatureForChatApp | TagsFeatureForChatApp | AgentInstructionAssistanceFeatureForChatApp | InstructionAugmentationFeatureForChatApp | UserMemoryFeatureForChatApp | EntityFeatureForChatApp;
|
|
1438
1759
|
interface Feature {
|
|
1439
1760
|
/**
|
|
1440
1761
|
* Must be unique, only alphanumeric and - _ allowed, may not start with a number
|
|
@@ -1445,7 +1766,7 @@ interface Feature {
|
|
|
1445
1766
|
/** Whether the feature is on or off for the chat app in question. Most features are off by default, see the specific feature for details. */
|
|
1446
1767
|
enabled: boolean;
|
|
1447
1768
|
}
|
|
1448
|
-
declare const FeatureIdList: readonly ["fileUpload", "promptInputFieldLabel", "suggestions", "uiCustomization", "verifyResponse", "traces", "chatDisclaimerNotice", "logout", "sessionInsights", "userDataOverrides", "tags", "agentInstructionAssistance", "instructionAugmentation", "userMemory"];
|
|
1769
|
+
declare const FeatureIdList: readonly ["fileUpload", "promptInputFieldLabel", "suggestions", "uiCustomization", "verifyResponse", "traces", "chatDisclaimerNotice", "logout", "sessionInsights", "userDataOverrides", "tags", "agentInstructionAssistance", "instructionAugmentation", "userMemory", "entity"];
|
|
1449
1770
|
type FeatureIdType = (typeof FeatureIdList)[number];
|
|
1450
1771
|
declare const EndToEndFeatureIdList: readonly ["verifyResponse", "traces"];
|
|
1451
1772
|
type EndToEndFeatureIdType = (typeof EndToEndFeatureIdList)[number];
|
|
@@ -1655,6 +1976,12 @@ interface InstructionAugmentationFeatureForChatApp extends InstructionAugmentati
|
|
|
1655
1976
|
interface UserMemoryFeatureForChatApp extends UserMemoryFeature, Feature {
|
|
1656
1977
|
featureId: 'userMemory';
|
|
1657
1978
|
}
|
|
1979
|
+
interface EntityFeatureForChatApp extends Feature {
|
|
1980
|
+
featureId: 'entity';
|
|
1981
|
+
/** Whether entity feature is enabled for this chat app. Can only be set to false to disable site-level configuration. */
|
|
1982
|
+
enabled: boolean;
|
|
1983
|
+
attributeName?: string;
|
|
1984
|
+
}
|
|
1658
1985
|
/**
|
|
1659
1986
|
* The prompt instruction assistance feature is used to add a markdown section to the prompt that instructs the agent on how to format its response.
|
|
1660
1987
|
*
|
|
@@ -3146,5 +3473,131 @@ interface TagDefInJsonFile {
|
|
|
3146
3473
|
scope: string;
|
|
3147
3474
|
gzippedBase64EncodedString: string;
|
|
3148
3475
|
}
|
|
3476
|
+
/**
|
|
3477
|
+
* SharedSessionVisitHistory tracks user visits to shared sessions
|
|
3478
|
+
*/
|
|
3479
|
+
interface SharedSessionVisitHistory {
|
|
3480
|
+
shareId: string;
|
|
3481
|
+
entityId: string;
|
|
3482
|
+
chatAppId: string;
|
|
3483
|
+
firstVisitedAt: string;
|
|
3484
|
+
lastVisitedAt: string;
|
|
3485
|
+
visitCount: number;
|
|
3486
|
+
title: string;
|
|
3487
|
+
/** If set to 'mock', this is a test shared session visit history. This is used for integration testing. */
|
|
3488
|
+
testType?: 'mock';
|
|
3489
|
+
}
|
|
3490
|
+
interface SharedSessionVisitHistoryDynamoDb extends SharedSessionVisitHistory {
|
|
3491
|
+
userIdChatAppId: string;
|
|
3492
|
+
}
|
|
3493
|
+
/**
|
|
3494
|
+
* PinnedSession represents user-curated sidebar items (both own and shared sessions)
|
|
3495
|
+
*/
|
|
3496
|
+
interface PinnedSession {
|
|
3497
|
+
shareId?: string;
|
|
3498
|
+
sessionId?: string;
|
|
3499
|
+
userId: string;
|
|
3500
|
+
chatAppId: string;
|
|
3501
|
+
pinnedAt: string;
|
|
3502
|
+
/** If set to 'mock', this is a test pinned session. This is used for integration testing. */
|
|
3503
|
+
testType?: 'mock';
|
|
3504
|
+
}
|
|
3505
|
+
type PinnedSessionDynamoDb = PinnedSession & {
|
|
3506
|
+
userIdChatAppId: string;
|
|
3507
|
+
sessionOrShareId: string;
|
|
3508
|
+
};
|
|
3509
|
+
interface PinnedObjAndChatSession {
|
|
3510
|
+
pinnedSession: PinnedSession;
|
|
3511
|
+
chatSession: ChatSession<RecordOrUndef>;
|
|
3512
|
+
}
|
|
3513
|
+
interface CreateSharedSessionRequest {
|
|
3514
|
+
sessionId: string;
|
|
3515
|
+
sessionUserId: string;
|
|
3516
|
+
chatAppId: string;
|
|
3517
|
+
}
|
|
3518
|
+
interface CreateSharedSessionResponse {
|
|
3519
|
+
success: boolean;
|
|
3520
|
+
shareId: string;
|
|
3521
|
+
chatAppId: string;
|
|
3522
|
+
error?: string;
|
|
3523
|
+
}
|
|
3524
|
+
interface RevokeSharedSessionRequest {
|
|
3525
|
+
shareId: string;
|
|
3526
|
+
}
|
|
3527
|
+
interface RevokeSharedSessionResponse {
|
|
3528
|
+
success: boolean;
|
|
3529
|
+
error?: string;
|
|
3530
|
+
}
|
|
3531
|
+
interface UnrevokeSharedSessionRequest {
|
|
3532
|
+
shareId: string;
|
|
3533
|
+
}
|
|
3534
|
+
interface UnrevokeSharedSessionResponse {
|
|
3535
|
+
success: boolean;
|
|
3536
|
+
error?: string;
|
|
3537
|
+
}
|
|
3538
|
+
interface GetRecentSharedRequest {
|
|
3539
|
+
chatAppId: string;
|
|
3540
|
+
limit?: number;
|
|
3541
|
+
entityId?: string;
|
|
3542
|
+
nextToken?: string;
|
|
3543
|
+
}
|
|
3544
|
+
interface GetRecentSharedResponse {
|
|
3545
|
+
success: boolean;
|
|
3546
|
+
recentShared: SharedSessionVisitHistory[];
|
|
3547
|
+
error?: string;
|
|
3548
|
+
nextToken?: string;
|
|
3549
|
+
}
|
|
3550
|
+
interface GetPinnedSessionsRequest {
|
|
3551
|
+
chatAppId: string;
|
|
3552
|
+
limit?: number;
|
|
3553
|
+
nextToken?: string;
|
|
3554
|
+
}
|
|
3555
|
+
interface GetPinnedSessionsResponse {
|
|
3556
|
+
success: boolean;
|
|
3557
|
+
results: PinnedObjAndChatSession[];
|
|
3558
|
+
nextToken?: string;
|
|
3559
|
+
error?: string;
|
|
3560
|
+
}
|
|
3561
|
+
interface PinSessionRequest {
|
|
3562
|
+
pinnedSession: PinnedSession;
|
|
3563
|
+
}
|
|
3564
|
+
interface PinSessionResponse {
|
|
3565
|
+
success: boolean;
|
|
3566
|
+
error?: string;
|
|
3567
|
+
}
|
|
3568
|
+
interface UnpinSessionRequest {
|
|
3569
|
+
sessionId?: string;
|
|
3570
|
+
shareId?: string;
|
|
3571
|
+
chatAppId: string;
|
|
3572
|
+
}
|
|
3573
|
+
interface UnpinSessionResponse {
|
|
3574
|
+
success: boolean;
|
|
3575
|
+
error?: string;
|
|
3576
|
+
}
|
|
3577
|
+
interface ValidateShareAccessRequest {
|
|
3578
|
+
shareId: string;
|
|
3579
|
+
chatAppId: string;
|
|
3580
|
+
entityId?: string;
|
|
3581
|
+
}
|
|
3582
|
+
interface ValidateShareAccessResponse {
|
|
3583
|
+
success: boolean;
|
|
3584
|
+
hasAccess: boolean;
|
|
3585
|
+
sessionData?: ChatSession<RecordOrUndef>;
|
|
3586
|
+
error?: string;
|
|
3587
|
+
}
|
|
3588
|
+
interface RecordShareVisitRequest {
|
|
3589
|
+
shareId: string;
|
|
3590
|
+
}
|
|
3591
|
+
interface RecordShareVisitResponse {
|
|
3592
|
+
success: boolean;
|
|
3593
|
+
error?: string;
|
|
3594
|
+
}
|
|
3595
|
+
interface ShowToastOptions {
|
|
3596
|
+
type: 'success' | 'error' | 'warning' | 'info';
|
|
3597
|
+
duration?: number | 'infinite';
|
|
3598
|
+
}
|
|
3599
|
+
type ShowToastFn = (message: string, options: ShowToastOptions) => void;
|
|
3600
|
+
declare const ShareSessionStateList: readonly ["disable-share-feature", "shared-by-me", "shared-by-someone-else", "not-shared"];
|
|
3601
|
+
type ShareSessionState = (typeof ShareSessionStateList)[number];
|
|
3149
3602
|
|
|
3150
|
-
export { type AccessRule, type AccessRules, Accurate, AccurateWithStatedAssumptions, AccurateWithUnstatedAssumptions, type AddChatSessionFeedbackAdminRequest, type AddChatSessionFeedbackRequest, type AddChatSessionFeedbackResponse, type AgentAndTools, type AgentDataRequest, type AgentDataResponse, type AgentDefinition, type AgentDefinitionForCreate, type AgentDefinitionForIdempotentCreateOrUpdate, type AgentDefinitionForUpdate, type AgentFramework, type AgentInstructionAssistanceFeature, type AgentInstructionAssistanceFeatureForChatApp, type AgentInstructionChatAppOverridableFeature, type ApplyRulesAs, type AssistantMessageContent, type AssistantRationaleContent, type Attachment, type AuthenticateResult, type AuthenticatedUser, type BaseRequestData, type BaseStackConfig, type ChatApp, type ChatAppDataRequest, type ChatAppDataResponse, type ChatAppFeature, type ChatAppForCreate, type ChatAppForIdempotentCreateOrUpdate, type ChatAppForUpdate, type ChatAppLite, type ChatAppMode, type ChatAppOverridableFeatures, type ChatAppOverridableFeaturesForConverseFn, type ChatAppOverride, type ChatAppOverrideDdb, type ChatAppOverrideForCreateOrUpdate, type ChatDisclaimerNoticeFeature, type ChatDisclaimerNoticeFeatureForChatApp, type ChatMessage, type ChatMessageFile, type ChatMessageFileBase, ChatMessageFileLocationType, type ChatMessageFileS3, ChatMessageFileUseCase, type ChatMessageForCreate, type ChatMessageForRendering, type ChatMessageResponse, type ChatMessageUsage, type ChatMessagesResponse, type ChatSession, type ChatSessionFeedback, type ChatSessionFeedbackForCreate, type ChatSessionFeedbackForUpdate, type ChatSessionForCreate, type ChatSessionLiteForUpdate, type ChatSessionResponse, type ChatSessionsResponse, type ChatTitleUpdateRequest, type ChatUser, type ChatUserAddOrUpdateResponse, type ChatUserFeature, type ChatUserFeatureBase, type ChatUserLite, type ChatUserResponse, type ChatUserSearchResponse, type ClearConverseLambdaCacheRequest, type ClearConverseLambdaCacheResponse, type ClearConverseLambdaCacheType, ClearConverseLambdaCacheTypes, type ClearSvelteKitCacheType, ClearSvelteKitCacheTypes, type ClearSvelteKitCachesRequest, type ClearSvelteKitCachesResponse, type ClearUserOverrideDataRequest, type ClearUserOverrideDataResponse, type CompanyType, type ComponentTagDefinition, ContentAdminCommand, type ContentAdminCommandRequestBase, type ContentAdminCommandResponseBase, type ContentAdminData, type ContentAdminRequest, type ContentAdminResponse, type ContentAdminSiteFeature, type ConverseInvocationMode, ConverseInvocationModes, type ConverseRequest, type ConverseRequestWithCommand, type CreateAgentRequest, type CreateChatAppRequest, type CreateOrUpdateChatAppOverrideRequest, type CreateOrUpdateChatAppOverrideResponse, type CreateOrUpdateTagDefinitionAdminRequest, type CreateToolRequest, type CustomDataUiRepresentation, DEFAULT_EVENT_EXPIRY_DURATION, DEFAULT_MAX_K_MATCHES_PER_STRATEGY, DEFAULT_MAX_MEMORY_RECORDS_PER_PROMPT, DEFAULT_MEMORY_STRATEGIES, type DeleteChatAppOverrideRequest, type DeleteChatAppOverrideResponse, type DeleteTagDefinitionAdminRequest, EndToEndFeatureIdList, type EndToEndFeatureIdType, type EntitySiteFeature, type ExecutionType, FEATURE_NAMES, FEEDBACK_INTERNAL_COMMENT_STATUS, FEEDBACK_INTERNAL_COMMENT_STATUS_VALUES, FEEDBACK_INTERNAL_COMMENT_TYPE, FEEDBACK_INTERNAL_COMMENT_TYPE_VALUES, type Feature, type FeatureError, FeatureIdList, type FeatureIdType, type FeatureType, FeatureTypeArr, type FeedbackInternalComment, type FeedbackInternalCommentStatus, type FeedbackInternalCommentType, type FileUploadFeature, type FileUploadFeatureForChatApp, type GetAgentRequest, type GetAgentResponse, type GetAllAgentsAdminRequest, type GetAllAgentsAdminResponse, type GetAllChatAppsAdminRequest, type GetAllChatAppsAdminResponse, type GetAllMemoryRecordsAdminRequest, type GetAllMemoryRecordsAdminResponse, type GetAllToolsAdminRequest, type GetAllToolsAdminResponse, type GetChatAppsByRulesRequest, type GetChatAppsByRulesResponse, type GetChatMessagesAsAdminRequest, type GetChatMessagesAsAdminResponse, type GetChatSessionFeedbackResponse, type GetChatUserPrefsResponse, type GetInitialDataRequest, type GetInitialDataResponse, type GetInitialDialogDataRequest, type GetInitialDialogDataResponse, type GetInstructionAssistanceConfigFromSsmRequest, type GetInstructionAssistanceConfigFromSsmResponse, type GetInstructionsAddedForUserMemoryAdminRequest, type GetInstructionsAddedForUserMemoryAdminResponse, type GetInstructionsAddedForUserMemoryRequest, type GetInstructionsAddedForUserMemoryResponse, type GetValuesForAutoCompleteRequest, type GetValuesForAutoCompleteResponse, type GetValuesForContentAdminAutoCompleteRequest, type GetValuesForContentAdminAutoCompleteResponse, type GetValuesForEntityAutoCompleteRequest, type GetValuesForEntityAutoCompleteResponse, type GetValuesForUserAutoCompleteRequest, type GetValuesForUserAutoCompleteResponse, type GetViewingContentForUserResponse, type HistoryFeature, type HomePageLinksToChatAppsSiteFeature, type HomePageSiteFeature, INSIGHT_STATUS_NEEDS_INSIGHTS_ANALYSIS, Inaccurate, type InlineToolDefinition, type InsightStatusNeedsInsightsAnalysis, type InsightsSearchParams, type InstructionAssistanceConfig, type InstructionAugmentationFeature, type InstructionAugmentationFeatureForChatApp, type InstructionAugmentationScopeType, type InstructionAugmentationScopeTypeDisplayName, InstructionAugmentationScopeTypeDisplayNames, InstructionAugmentationScopeTypes, type InstructionAugmentationType, type InstructionAugmentationTypeDisplayName, InstructionAugmentationTypeDisplayNames, InstructionAugmentationTypes, type InstructionFeature, type InvocationScopes, type KnowledgeBase, type LambdaToolDefinition, type LifecycleStatus, type LogoutFeature, type LogoutFeatureForChatApp, type McpToolDefinition, type MemoryContent, type MemoryQueryOptions, type MessageSegment, type MessageSegmentBase, MessageSource, type NameValueDescTriple, type NameValuePair, type OAuth, type PagedRecordsResult, type PikaConfig, type PikaStack, type PikaUserRole, PikaUserRoles, type PromptInputFieldLabelFeature, type PromptInputFieldLabelFeatureForChatApp, type RecordOrUndef, type RefreshChatAppRequest, type RefreshChatAppResponse, type RetrievedMemoryContent, type RetrievedMemoryRecordSummary, type RetryableVerifyResponseClassification, RetryableVerifyResponseClassifications, type RolloutPolicy, SCORE_SEARCH_OPERATORS, SCORE_SEARCH_OPERATORS_VALUES, SESSION_FEEDBACK_SEVERITY, SESSION_FEEDBACK_SEVERITY_VALUES, SESSION_FEEDBACK_STATUS, SESSION_FEEDBACK_STATUS_VALUES, SESSION_FEEDBACK_TYPE, SESSION_FEEDBACK_TYPE_VALUES, SESSION_INSIGHT_GOAL_COMPLETION_STATUS, SESSION_INSIGHT_GOAL_COMPLETION_STATUS_VALUES, SESSION_INSIGHT_METRICS_AI_CONFIDENCE_LEVEL, SESSION_INSIGHT_METRICS_AI_CONFIDENCE_LEVEL_VALUES, SESSION_INSIGHT_METRICS_COMPLEXITY_LEVEL, SESSION_INSIGHT_METRICS_COMPLEXITY_LEVEL_VALUES, SESSION_INSIGHT_METRICS_SESSION_DURATION_ESTIMATE, SESSION_INSIGHT_METRICS_SESSION_DURATION_ESTIMATE_VALUES, SESSION_INSIGHT_METRICS_USER_EFFORT_REQUIRED, SESSION_INSIGHT_METRICS_USER_EFFORT_REQUIRED_VALUES, SESSION_INSIGHT_SATISFACTION_LEVEL, SESSION_INSIGHT_SATISFACTION_LEVEL_VALUES, SESSION_INSIGHT_USER_SENTIMENT, SESSION_INSIGHT_USER_SENTIMENT_VALUES, SESSION_SEARCH_DATE_PRESETS, SESSION_SEARCH_DATE_PRESETS_SHORT_VALUES, SESSION_SEARCH_DATE_PRESETS_VALUES, SESSION_SEARCH_DATE_TYPES, SESSION_SEARCH_DATE_TYPES_VALUES, SESSION_SEARCH_SORT_FIELDS, SESSION_SEARCH_SORT_FIELDS_VALUES, type SaveUserOverrideDataRequest, type SaveUserOverrideDataResponse, type ScoreSearchOperator, type ScoreSearchParams, type SearchAllMemoryRecordsRequest, type SearchAllMemoryRecordsResponse, type SearchAllMyMemoryRecordsRequest, type SearchAllMyMemoryRecordsResponse, type SearchSemanticDirectivesAdminRequest, type SearchSemanticDirectivesRequest, type SearchSemanticDirectivesResponse, type SearchTagDefinitionsAdminRequest, type SearchToolsRequest, type SegmentType, type SemanticDirective, type SemanticDirectiveCreateOrUpdateAdminRequest, type SemanticDirectiveCreateOrUpdateRequest, type SemanticDirectiveCreateOrUpdateResponse, type SemanticDirectiveDataRequest, type SemanticDirectiveDeleteAdminRequest, type SemanticDirectiveDeleteRequest, type SemanticDirectiveDeleteResponse, type SemanticDirectiveForCreateOrUpdate, type SemanticDirectiveScope, type SessionAttributes, type SessionAttributesWithoutToken, type SessionData, type SessionDataWithChatUserCustomDataSpreadIn, type SessionFeedbackSeverity, type SessionFeedbackStatus, type SessionFeedbackType, type SessionInsightGoalCompletionStatus, type SessionInsightMetricsAiConfidenceLevel, type SessionInsightMetricsComplexityLevel, type SessionInsightMetricsSessionDurationEstimate, type SessionInsightMetricsUserEffortRequired, type SessionInsightSatisfactionLevel, type SessionInsightScoring, type SessionInsightUsage, type SessionInsightUserSentiment, type SessionInsights, type SessionInsightsFeature, type SessionInsightsFeatureForChatApp, type SessionInsightsOpenSearchConfig, type SessionSearchAdminRequest, type SessionSearchDateFilter, type SessionSearchDatePreset, type SessionSearchDateType, type SessionSearchRequest, type SessionSearchResponse, type SessionSearchSortField, type SetChatUserPrefsRequest, type SetChatUserPrefsResponse, type SimpleAuthenticatedUser, type SimpleOption, SiteAdminCommand, type SiteAdminCommandRequestBase, type SiteAdminCommandResponseBase, type SiteAdminFeature, type SiteAdminRequest, type SiteAdminResponse, type SiteFeatures, type StopViewingContentForUserRequest, type StopViewingContentForUserResponse, type StreamingStatus, type SuggestionsFeature, type SuggestionsFeatureForChatApp, type TagDefInJsonFile, type TagDefinition, type TagDefinitionCreateOrUpdateRequest, type TagDefinitionCreateOrUpdateResponse, type TagDefinitionDeleteRequest, type TagDefinitionDeleteResponse, type TagDefinitionForCreateOrUpdate, type TagDefinitionLite, type TagDefinitionSearchRequest, type TagDefinitionSearchResponse, type TagDefinitionWebComponent, type TagDefinitionWidget, type TagDefinitionWidgetBase, type TagDefinitionWidgetCustomCompiledIn, type TagDefinitionWidgetPassThrough, type TagDefinitionWidgetPikaCompiledIn, type TagDefinitionWidgetType, type TagDefinitionWidgetWebComponent, type TagDefinitionsJsonFile, type TagMessageSegment, type TagWebComponentEncoding, type TagsChatAppOverridableFeature, type TagsFeatureForChatApp, type TagsSiteFeature, type TextMessageSegment, type ToolDefinition, type ToolDefinitionBase, type ToolDefinitionForCreate, type ToolDefinitionForIdempotentCreateOrUpdate, type ToolDefinitionForUpdate, type ToolIdToLambdaArnMap, type ToolInvocationContent, type ToolLifecycle, type TracesFeature, type TracesFeatureForChatApp, type TypedContentWithRole, UPDATEABLE_FEEDBACK_FIELDS, type UiCustomizationFeature, type UiCustomizationFeatureForChatApp, Unclassified, type UpdateAgentRequest, type UpdateChatAppRequest, type UpdateChatSessionFeedbackAdminRequest, type UpdateChatSessionFeedbackRequest, type UpdateChatSessionFeedbackResponse, type UpdateToolRequest, type UpdateableAgentDefinitionFields, type UpdateableChatAppFields, type UpdateableChatAppOverrideFields, type UpdateableFeedbackFields, type UpdateableToolDefinitionFields, type UserChatAppRule, type UserDataOverrideFeatureForChatApp, type UserDataOverrideSettings, type UserDataOverridesSiteFeature, type UserMemoryFeature, type UserMemoryFeatureForChatApp, type UserMemoryFeatureWithMemoryInfo, UserMemoryStrategies, type UserMemoryStrategy, type UserMessageContent, type UserOverrideData, UserOverrideDataCommand, type UserOverrideDataCommandRequest, type UserOverrideDataCommandRequestBase, type UserOverrideDataCommandResponse, type UserOverrideDataCommandResponseBase, type UserPrefs, type UserRole, type UserType, UserTypes, type VerifyResponseClassification, type VerifyResponseClassificationDescription, VerifyResponseClassificationDescriptions, VerifyResponseClassifications, type VerifyResponseFeature, type VerifyResponseFeatureForChatApp, type VerifyResponseRetryableClassificationDescription, VerifyResponseRetryableClassificationDescriptions, type ViewContentForUserRequest, type ViewContentForUserResponse, type VitePreviewConfig, type ViteServerConfig };
|
|
3603
|
+
export { type AccessRule, type AccessRules, Accurate, AccurateWithStatedAssumptions, AccurateWithUnstatedAssumptions, type AddChatSessionFeedbackAdminRequest, type AddChatSessionFeedbackRequest, type AddChatSessionFeedbackResponse, type AgentAndTools, type AgentDataRequest, type AgentDataResponse, type AgentDefinition, type AgentDefinitionForCreate, type AgentDefinitionForIdempotentCreateOrUpdate, type AgentDefinitionForUpdate, type AgentFramework, type AgentInstructionAssistanceFeature, type AgentInstructionAssistanceFeatureForChatApp, type AgentInstructionChatAppOverridableFeature, type ApplyRulesAs, type AssistantMessageContent, type AssistantRationaleContent, type Attachment, type AuthenticateResult, type AuthenticatedUser, type BaseRequestData, type BaseStackConfig, type ChatApp, type ChatAppDataRequest, type ChatAppDataResponse, type ChatAppFeature, type ChatAppForCreate, type ChatAppForIdempotentCreateOrUpdate, type ChatAppForUpdate, type ChatAppLite, type ChatAppMode, type ChatAppOverridableFeatures, type ChatAppOverridableFeaturesForConverseFn, type ChatAppOverride, type ChatAppOverrideDdb, type ChatAppOverrideForCreateOrUpdate, type ChatDisclaimerNoticeFeature, type ChatDisclaimerNoticeFeatureForChatApp, type ChatMessage, type ChatMessageFile, type ChatMessageFileBase, ChatMessageFileLocationType, type ChatMessageFileS3, ChatMessageFileUseCase, type ChatMessageForCreate, type ChatMessageForRendering, type ChatMessageResponse, type ChatMessageUsage, type ChatMessagesResponse, type ChatSession, type ChatSessionFeedback, type ChatSessionFeedbackForCreate, type ChatSessionFeedbackForUpdate, type ChatSessionForCreate, type ChatSessionLiteForUpdate, type ChatSessionResponse, type ChatSessionsResponse, type ChatTitleUpdateRequest, type ChatUser, type ChatUserAddOrUpdateResponse, type ChatUserFeature, type ChatUserFeatureBase, type ChatUserLite, type ChatUserResponse, type ChatUserSearchResponse, type ClearConverseLambdaCacheRequest, type ClearConverseLambdaCacheResponse, type ClearConverseLambdaCacheType, ClearConverseLambdaCacheTypes, type ClearSvelteKitCacheType, ClearSvelteKitCacheTypes, type ClearSvelteKitCachesRequest, type ClearSvelteKitCachesResponse, type ClearUserOverrideDataRequest, type ClearUserOverrideDataResponse, type CompanyType, type ComponentTagDefinition, ContentAdminCommand, type ContentAdminCommandRequestBase, type ContentAdminCommandResponseBase, type ContentAdminData, type ContentAdminRequest, type ContentAdminResponse, type ContentAdminSiteFeature, type ConverseInvocationMode, ConverseInvocationModes, type ConverseRequest, type ConverseRequestWithCommand, type CreateAgentRequest, type CreateChatAppRequest, type CreateOrUpdateChatAppOverrideRequest, type CreateOrUpdateChatAppOverrideResponse, type CreateOrUpdateMockAgentRequest, type CreateOrUpdateMockAgentResponse, type CreateOrUpdateMockChatAppRequest, type CreateOrUpdateMockChatAppResponse, type CreateOrUpdateMockSessionRequest, type CreateOrUpdateMockSessionResponse, type CreateOrUpdateMockToolRequest, type CreateOrUpdateMockToolResponse, type CreateOrUpdateMockUserRequest, type CreateOrUpdateMockUserResponse, type CreateOrUpdateTagDefinitionAdminRequest, type CreateSharedSessionRequest, type CreateSharedSessionResponse, type CreateToolRequest, type CustomDataUiRepresentation, DEFAULT_EVENT_EXPIRY_DURATION, DEFAULT_MAX_K_MATCHES_PER_STRATEGY, DEFAULT_MAX_MEMORY_RECORDS_PER_PROMPT, DEFAULT_MEMORY_STRATEGIES, type DeleteAllMockAgentsRequest, type DeleteAllMockAgentsResponse, type DeleteAllMockChatAppsRequest, type DeleteAllMockChatAppsResponse, type DeleteAllMockDataRequest, type DeleteAllMockDataResponse, type DeleteAllMockPinnedSessionsRequest, type DeleteAllMockPinnedSessionsResponse, type DeleteAllMockSessionsRequest, type DeleteAllMockSessionsResponse, type DeleteAllMockSharedSessionVisitsRequest, type DeleteAllMockSharedSessionVisitsResponse, type DeleteAllMockToolsRequest, type DeleteAllMockToolsResponse, type DeleteAllMockUsersRequest, type DeleteAllMockUsersResponse, type DeleteChatAppOverrideRequest, type DeleteChatAppOverrideResponse, type DeleteMockAgentRequest, type DeleteMockAgentResponse, type DeleteMockChatAppRequest, type DeleteMockChatAppResponse, type DeleteMockDataRequest, type DeleteMockDataResponse, type DeleteMockSessionRequest, type DeleteMockSessionResponse, type DeleteMockToolRequest, type DeleteMockToolResponse, type DeleteMockUserRequest, type DeleteMockUserResponse, type DeleteTagDefinitionAdminRequest, EndToEndFeatureIdList, type EndToEndFeatureIdType, type EntityFeatureForChatApp, type EntitySiteFeature, type ExecutionType, FEATURE_NAMES, FEEDBACK_INTERNAL_COMMENT_STATUS, FEEDBACK_INTERNAL_COMMENT_STATUS_VALUES, FEEDBACK_INTERNAL_COMMENT_TYPE, FEEDBACK_INTERNAL_COMMENT_TYPE_VALUES, type Feature, type FeatureError, FeatureIdList, type FeatureIdType, type FeatureType, FeatureTypeArr, type FeedbackInternalComment, type FeedbackInternalCommentStatus, type FeedbackInternalCommentType, type FileUploadFeature, type FileUploadFeatureForChatApp, type GetAgentRequest, type GetAgentResponse, type GetAllAgentsAdminRequest, type GetAllAgentsAdminResponse, type GetAllChatAppsAdminRequest, type GetAllChatAppsAdminResponse, type GetAllMemoryRecordsAdminRequest, type GetAllMemoryRecordsAdminResponse, type GetAllMockAgentsRequest, type GetAllMockAgentsResponse, type GetAllMockChatAppsRequest, type GetAllMockChatAppsResponse, type GetAllMockDataRequest, type GetAllMockDataResponse, type GetAllMockPinnedSessionsRequest, type GetAllMockPinnedSessionsResponse, type GetAllMockSessionsRequest, type GetAllMockSessionsResponse, type GetAllMockSharedSessionVisitsRequest, type GetAllMockSharedSessionVisitsResponse, type GetAllMockToolsRequest, type GetAllMockToolsResponse, type GetAllMockUsersRequest, type GetAllMockUsersResponse, type GetAllToolsAdminRequest, type GetAllToolsAdminResponse, type GetChatAppsByRulesRequest, type GetChatAppsByRulesResponse, type GetChatMessagesAsAdminRequest, type GetChatMessagesAsAdminResponse, type GetChatSessionFeedbackResponse, type GetChatUserPrefsResponse, type GetInitialDataRequest, type GetInitialDataResponse, type GetInitialDialogDataRequest, type GetInitialDialogDataResponse, type GetInstructionAssistanceConfigFromSsmRequest, type GetInstructionAssistanceConfigFromSsmResponse, type GetInstructionsAddedForUserMemoryAdminRequest, type GetInstructionsAddedForUserMemoryAdminResponse, type GetInstructionsAddedForUserMemoryRequest, type GetInstructionsAddedForUserMemoryResponse, type GetMockSessionByUserIdAndSessionIdRequest, type GetMockSessionByUserIdAndSessionIdResponse, type GetPinnedSessionsRequest, type GetPinnedSessionsResponse, type GetRecentSharedRequest, type GetRecentSharedResponse, type GetValuesForAutoCompleteRequest, type GetValuesForAutoCompleteResponse, type GetValuesForContentAdminAutoCompleteRequest, type GetValuesForContentAdminAutoCompleteResponse, type GetValuesForEntityAutoCompleteRequest, type GetValuesForEntityAutoCompleteResponse, type GetValuesForUserAutoCompleteRequest, type GetValuesForUserAutoCompleteResponse, type GetViewingContentForUserResponse, type HistoryFeature, type HomePageLinksToChatAppsSiteFeature, type HomePageSiteFeature, INSIGHT_STATUS_NEEDS_INSIGHTS_ANALYSIS, Inaccurate, type InlineToolDefinition, type InsightStatusNeedsInsightsAnalysis, type InsightsSearchParams, type InstructionAssistanceConfig, type InstructionAugmentationFeature, type InstructionAugmentationFeatureForChatApp, type InstructionAugmentationScopeType, type InstructionAugmentationScopeTypeDisplayName, InstructionAugmentationScopeTypeDisplayNames, InstructionAugmentationScopeTypes, type InstructionAugmentationType, type InstructionAugmentationTypeDisplayName, InstructionAugmentationTypeDisplayNames, InstructionAugmentationTypes, type InstructionFeature, type InvocationScopes, type KnowledgeBase, type LambdaToolDefinition, type LifecycleStatus, type LogoutFeature, type LogoutFeatureForChatApp, type McpToolDefinition, type MemoryContent, type MemoryQueryOptions, type MessageSegment, type MessageSegmentBase, MessageSource, type NameValueDescTriple, type NameValuePair, type OAuth, type PagedRecordsResult, type PikaConfig, type PikaStack, type PikaUserRole, PikaUserRoles, type PinSessionRequest, type PinSessionResponse, type PinnedObjAndChatSession, type PinnedSession, type PinnedSessionDynamoDb, type PromptInputFieldLabelFeature, type PromptInputFieldLabelFeatureForChatApp, type RecordOrUndef, type RecordShareVisitRequest, type RecordShareVisitResponse, type RefreshChatAppRequest, type RefreshChatAppResponse, type RetrievedMemoryContent, type RetrievedMemoryRecordSummary, type RetryableVerifyResponseClassification, RetryableVerifyResponseClassifications, type RevokeSharedSessionRequest, type RevokeSharedSessionResponse, type RolloutPolicy, SCORE_SEARCH_OPERATORS, SCORE_SEARCH_OPERATORS_VALUES, SESSION_FEEDBACK_SEVERITY, SESSION_FEEDBACK_SEVERITY_VALUES, SESSION_FEEDBACK_STATUS, SESSION_FEEDBACK_STATUS_VALUES, SESSION_FEEDBACK_TYPE, SESSION_FEEDBACK_TYPE_VALUES, SESSION_INSIGHT_GOAL_COMPLETION_STATUS, SESSION_INSIGHT_GOAL_COMPLETION_STATUS_VALUES, SESSION_INSIGHT_METRICS_AI_CONFIDENCE_LEVEL, SESSION_INSIGHT_METRICS_AI_CONFIDENCE_LEVEL_VALUES, SESSION_INSIGHT_METRICS_COMPLEXITY_LEVEL, SESSION_INSIGHT_METRICS_COMPLEXITY_LEVEL_VALUES, SESSION_INSIGHT_METRICS_SESSION_DURATION_ESTIMATE, SESSION_INSIGHT_METRICS_SESSION_DURATION_ESTIMATE_VALUES, SESSION_INSIGHT_METRICS_USER_EFFORT_REQUIRED, SESSION_INSIGHT_METRICS_USER_EFFORT_REQUIRED_VALUES, SESSION_INSIGHT_SATISFACTION_LEVEL, SESSION_INSIGHT_SATISFACTION_LEVEL_VALUES, SESSION_INSIGHT_USER_SENTIMENT, SESSION_INSIGHT_USER_SENTIMENT_VALUES, SESSION_SEARCH_DATE_PRESETS, SESSION_SEARCH_DATE_PRESETS_SHORT_VALUES, SESSION_SEARCH_DATE_PRESETS_VALUES, SESSION_SEARCH_DATE_TYPES, SESSION_SEARCH_DATE_TYPES_VALUES, SESSION_SEARCH_SORT_FIELDS, SESSION_SEARCH_SORT_FIELDS_VALUES, type SaveUserOverrideDataRequest, type SaveUserOverrideDataResponse, type ScoreSearchOperator, type ScoreSearchParams, type SearchAllMemoryRecordsRequest, type SearchAllMemoryRecordsResponse, type SearchAllMyMemoryRecordsRequest, type SearchAllMyMemoryRecordsResponse, type SearchSemanticDirectivesAdminRequest, type SearchSemanticDirectivesRequest, type SearchSemanticDirectivesResponse, type SearchTagDefinitionsAdminRequest, type SearchToolsRequest, type SegmentType, type SemanticDirective, type SemanticDirectiveCreateOrUpdateAdminRequest, type SemanticDirectiveCreateOrUpdateRequest, type SemanticDirectiveCreateOrUpdateResponse, type SemanticDirectiveDataRequest, type SemanticDirectiveDeleteAdminRequest, type SemanticDirectiveDeleteRequest, type SemanticDirectiveDeleteResponse, type SemanticDirectiveForCreateOrUpdate, type SemanticDirectiveScope, type SessionAttributes, type SessionAttributesWithoutToken, type SessionData, type SessionDataWithChatUserCustomDataSpreadIn, type SessionFeedbackSeverity, type SessionFeedbackStatus, type SessionFeedbackType, type SessionInsightGoalCompletionStatus, type SessionInsightMetricsAiConfidenceLevel, type SessionInsightMetricsComplexityLevel, type SessionInsightMetricsSessionDurationEstimate, type SessionInsightMetricsUserEffortRequired, type SessionInsightSatisfactionLevel, type SessionInsightScoring, type SessionInsightUsage, type SessionInsightUserSentiment, type SessionInsights, type SessionInsightsFeature, type SessionInsightsFeatureForChatApp, type SessionInsightsOpenSearchConfig, type SessionSearchAdminRequest, type SessionSearchDateFilter, type SessionSearchDatePreset, type SessionSearchDateType, type SessionSearchRequest, type SessionSearchResponse, type SessionSearchSortField, type SetChatUserPrefsRequest, type SetChatUserPrefsResponse, type ShareSessionState, ShareSessionStateList, type SharedSessionVisitHistory, type SharedSessionVisitHistoryDynamoDb, type ShowToastFn, type ShowToastOptions, type SimpleAuthenticatedUser, type SimpleOption, SiteAdminCommand, type SiteAdminCommandRequestBase, type SiteAdminCommandResponseBase, type SiteAdminFeature, type SiteAdminRequest, type SiteAdminResponse, type SiteFeatures, type StopViewingContentForUserRequest, type StopViewingContentForUserResponse, type StreamingStatus, type SuggestionsFeature, type SuggestionsFeatureForChatApp, type TagDefInJsonFile, type TagDefinition, type TagDefinitionCreateOrUpdateRequest, type TagDefinitionCreateOrUpdateResponse, type TagDefinitionDeleteRequest, type TagDefinitionDeleteResponse, type TagDefinitionForCreateOrUpdate, type TagDefinitionLite, type TagDefinitionSearchRequest, type TagDefinitionSearchResponse, type TagDefinitionWebComponent, type TagDefinitionWidget, type TagDefinitionWidgetBase, type TagDefinitionWidgetCustomCompiledIn, type TagDefinitionWidgetPassThrough, type TagDefinitionWidgetPikaCompiledIn, type TagDefinitionWidgetType, type TagDefinitionWidgetWebComponent, type TagDefinitionsJsonFile, type TagMessageSegment, type TagWebComponentEncoding, type TagsChatAppOverridableFeature, type TagsFeatureForChatApp, type TagsSiteFeature, type TextMessageSegment, type ToolDefinition, type ToolDefinitionBase, type ToolDefinitionForCreate, type ToolDefinitionForIdempotentCreateOrUpdate, type ToolDefinitionForUpdate, type ToolIdToLambdaArnMap, type ToolInvocationContent, type ToolLifecycle, type TracesFeature, type TracesFeatureForChatApp, type TypedContentWithRole, UPDATEABLE_FEEDBACK_FIELDS, type UiCustomizationFeature, type UiCustomizationFeatureForChatApp, Unclassified, type UnpinSessionRequest, type UnpinSessionResponse, type UnrevokeSharedSessionRequest, type UnrevokeSharedSessionResponse, type UpdateAgentRequest, type UpdateChatAppRequest, type UpdateChatSessionFeedbackAdminRequest, type UpdateChatSessionFeedbackRequest, type UpdateChatSessionFeedbackResponse, type UpdateToolRequest, type UpdateableAgentDefinitionFields, type UpdateableChatAppFields, type UpdateableChatAppOverrideFields, type UpdateableFeedbackFields, type UpdateableToolDefinitionFields, type UserAwsCredentials, type UserAwsCredentialsResponse, type UserChatAppRule, type UserCognitoIdentity, type UserDataOverrideFeatureForChatApp, type UserDataOverrideSettings, type UserDataOverridesSiteFeature, type UserMemoryFeature, type UserMemoryFeatureForChatApp, type UserMemoryFeatureWithMemoryInfo, UserMemoryStrategies, type UserMemoryStrategy, type UserMessageContent, type UserOverrideData, UserOverrideDataCommand, type UserOverrideDataCommandRequest, type UserOverrideDataCommandRequestBase, type UserOverrideDataCommandResponse, type UserOverrideDataCommandResponseBase, type UserPrefs, type UserRole, type UserType, UserTypes, type ValidateShareAccessRequest, type ValidateShareAccessResponse, type VerifyResponseClassification, type VerifyResponseClassificationDescription, VerifyResponseClassificationDescriptions, VerifyResponseClassifications, type VerifyResponseFeature, type VerifyResponseFeatureForChatApp, type VerifyResponseRetryableClassificationDescription, VerifyResponseRetryableClassificationDescriptions, type ViewContentForUserRequest, type ViewContentForUserResponse, type VitePreviewConfig, type ViteServerConfig };
|