@appconda/sdk 1.0.670 → 1.0.673

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.
@@ -1947,6 +1947,24 @@ export declare const CreateWorkerNotebookSourceSchema: z.ZodObject<{
1947
1947
  content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1948
1948
  metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1949
1949
  }, z.core.$strip>;
1950
+ export declare const CreateWorkerNotebookFileSourceSchema: z.ZodObject<{
1951
+ tenantId: z.ZodString;
1952
+ workerId: z.ZodString;
1953
+ notebookId: z.ZodString;
1954
+ fileName: z.ZodString;
1955
+ fileType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1956
+ fileData: z.ZodString;
1957
+ attachmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1958
+ }, z.core.$strip>;
1959
+ export declare const DiscoverWorkerNotebookSourcesSchema: z.ZodObject<{
1960
+ tenantId: z.ZodString;
1961
+ workerId: z.ZodString;
1962
+ notebookId: z.ZodString;
1963
+ query: z.ZodString;
1964
+ limit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1965
+ sourceType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1966
+ researchMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1967
+ }, z.core.$strip>;
1950
1968
  export declare const ImportWorkerNotebookSourcesSchema: z.ZodObject<{
1951
1969
  tenantId: z.ZodString;
1952
1970
  workerId: z.ZodString;
@@ -1978,6 +1996,11 @@ export declare const SendWorkerNotebookMessageSchema: z.ZodObject<{
1978
1996
  role: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1979
1997
  metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1980
1998
  }, z.core.$strip>;
1999
+ export declare const ClearWorkerNotebookMessagesSchema: z.ZodObject<{
2000
+ tenantId: z.ZodString;
2001
+ workerId: z.ZodString;
2002
+ notebookId: z.ZodString;
2003
+ }, z.core.$strip>;
1981
2004
  export declare const CreateWorkerNotebookNoteSchema: z.ZodObject<{
1982
2005
  tenantId: z.ZodString;
1983
2006
  workerId: z.ZodString;