@liveblocks/node 3.13.1 → 3.13.3-slate1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -182,6 +182,7 @@ type AiCopilot = {
182
182
  description?: string;
183
183
  systemPrompt: string;
184
184
  knowledgePrompt?: string;
185
+ alwaysUseKnowledge: boolean;
185
186
  createdAt: Date;
186
187
  updatedAt: Date;
187
188
  lastUsedAt?: Date;
@@ -329,6 +330,7 @@ type CreateAiCopilotOptions = {
329
330
  description?: string;
330
331
  systemPrompt: string;
331
332
  knowledgePrompt?: string;
333
+ alwaysUseKnowledge?: boolean;
332
334
  settings?: AiCopilotProviderSettings;
333
335
  providerApiKey: string;
334
336
  } & ({
@@ -354,6 +356,7 @@ type UpdateAiCopilotOptions = {
354
356
  description?: string | null;
355
357
  systemPrompt?: string;
356
358
  knowledgePrompt?: string | null;
359
+ alwaysUseKnowledge?: boolean;
357
360
  settings?: AiCopilotProviderSettings | null;
358
361
  providerApiKey?: string;
359
362
  } & ({
package/dist/index.d.ts CHANGED
@@ -182,6 +182,7 @@ type AiCopilot = {
182
182
  description?: string;
183
183
  systemPrompt: string;
184
184
  knowledgePrompt?: string;
185
+ alwaysUseKnowledge: boolean;
185
186
  createdAt: Date;
186
187
  updatedAt: Date;
187
188
  lastUsedAt?: Date;
@@ -329,6 +330,7 @@ type CreateAiCopilotOptions = {
329
330
  description?: string;
330
331
  systemPrompt: string;
331
332
  knowledgePrompt?: string;
333
+ alwaysUseKnowledge?: boolean;
332
334
  settings?: AiCopilotProviderSettings;
333
335
  providerApiKey: string;
334
336
  } & ({
@@ -354,6 +356,7 @@ type UpdateAiCopilotOptions = {
354
356
  description?: string | null;
355
357
  systemPrompt?: string;
356
358
  knowledgePrompt?: string | null;
359
+ alwaysUseKnowledge?: boolean;
357
360
  settings?: AiCopilotProviderSettings | null;
358
361
  providerApiKey?: string;
359
362
  } & ({
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import { detectDupes } from "@liveblocks/core";
3
3
 
4
4
  // src/version.ts
5
5
  var PKG_NAME = "@liveblocks/node";
6
- var PKG_VERSION = "3.13.1";
6
+ var PKG_VERSION = "3.13.3-slate1";
7
7
  var PKG_FORMAT = "esm";
8
8
 
9
9
  // src/client.ts