test(e2e): fix auth specs for character routes
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
export const chatCharactersResponse = {
|
||||
items: [
|
||||
{
|
||||
id: "elio",
|
||||
displayName: "Elio Silvestri",
|
||||
isActive: true,
|
||||
capabilities: { chat: true, privateContent: true },
|
||||
sortOrder: 10,
|
||||
},
|
||||
{
|
||||
id: "maya-tan",
|
||||
displayName: "Maya Tan",
|
||||
isActive: true,
|
||||
capabilities: { chat: true, privateContent: true },
|
||||
sortOrder: 20,
|
||||
},
|
||||
{
|
||||
id: "nayeli-cervantes",
|
||||
displayName: "Nayeli Cervantes",
|
||||
isActive: true,
|
||||
capabilities: { chat: true, privateContent: true },
|
||||
sortOrder: 30,
|
||||
},
|
||||
],
|
||||
defaultCharacterId: "elio",
|
||||
};
|
||||
@@ -9,6 +9,8 @@ export const emptyChatHistoryResponse = {
|
||||
privateCanViewFree: false,
|
||||
};
|
||||
|
||||
export const emptyChatPreviewsResponse = { items: [] };
|
||||
|
||||
export const chatSendResponse = {
|
||||
reply: "Hello from the E2E boyfriend.",
|
||||
audioUrl: "",
|
||||
|
||||
Reference in New Issue
Block a user