@crewdle/web-sdk-types 1.0.50 → 1.0.51

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.
@@ -43,6 +43,10 @@ export interface IGenerativeAIInferenceCreateJobParameters extends IGenerativeAI
43
43
  * Enable reasoning for the AI job.
44
44
  */
45
45
  reasoning?: boolean;
46
+ /**
47
+ * The privacy flag for the AI job.
48
+ */
49
+ privacy?: boolean;
46
50
  /**
47
51
  * The context for the AI job.
48
52
  */
@@ -38,6 +38,10 @@ export interface IGenerativeAIInferenceJob extends IGenerativeAIJob {
38
38
  * Enable reasoning for the AI job.
39
39
  */
40
40
  reasoning?: boolean;
41
+ /**
42
+ * The privacy flag for the AI job.
43
+ */
44
+ privacy?: boolean;
41
45
  /**
42
46
  * The context for the AI job.
43
47
  */
@@ -42,6 +42,10 @@ export interface IGenerativeAIInferenceWorkerParameters extends IGenerativeAIWor
42
42
  * Enable reasoning for the AI job.
43
43
  */
44
44
  reasoning?: boolean;
45
+ /**
46
+ * The privacy flag for the AI job.
47
+ */
48
+ privacy?: boolean;
45
49
  /**
46
50
  * The context for the AI job.
47
51
  */
@@ -39,6 +39,10 @@ export interface IGenerativeAIPromptCreateJobParameters extends IGenerativeAICre
39
39
  * The agent id
40
40
  */
41
41
  agentId?: string;
42
+ /**
43
+ * The privacy flag for the AI job.
44
+ */
45
+ privacy?: boolean;
42
46
  /**
43
47
  * The context for the AI job.
44
48
  */
@@ -33,6 +33,10 @@ export interface IGenerativeAIPromptJob extends IGenerativeAIJob {
33
33
  * The agent id
34
34
  */
35
35
  agentId?: string;
36
+ /**
37
+ * The privacy flag for the AI job.
38
+ */
39
+ privacy?: boolean;
36
40
  /**
37
41
  * The context for the AI job.
38
42
  */
@@ -36,6 +36,10 @@ export interface IGenerativeAIPromptOptions extends IGenerativeAIOptions {
36
36
  * Enable reasoning for the AI job.
37
37
  */
38
38
  reasoning?: boolean;
39
+ /**
40
+ * The privacy flag for the AI job.
41
+ */
42
+ privacy?: boolean;
39
43
  /**
40
44
  * The context for the AI job.
41
45
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewdle/web-sdk-types",
3
- "version": "1.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "The Crewdle Mist Web SDK public types and interfaces",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",