@appconda/sdk 1.0.667 → 1.0.669

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.
@@ -1909,6 +1909,106 @@ export declare const ListWorkerTopicsSchema: z.ZodObject<{
1909
1909
  tenantId: z.ZodString;
1910
1910
  workerId: z.ZodOptional<z.ZodString>;
1911
1911
  }, z.core.$strip>;
1912
+ export declare const CreateWorkerNotebookSchema: z.ZodObject<{
1913
+ tenantId: z.ZodString;
1914
+ workerId: z.ZodString;
1915
+ name: z.ZodString;
1916
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1917
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1918
+ }, z.core.$strip>;
1919
+ export declare const ListWorkerNotebooksSchema: z.ZodObject<{
1920
+ tenantId: z.ZodString;
1921
+ workerId: z.ZodString;
1922
+ }, z.core.$strip>;
1923
+ export declare const GetWorkerNotebookSchema: z.ZodObject<{
1924
+ tenantId: z.ZodString;
1925
+ workerId: z.ZodString;
1926
+ notebookId: z.ZodString;
1927
+ }, z.core.$strip>;
1928
+ export declare const UpdateWorkerNotebookSchema: z.ZodObject<{
1929
+ tenantId: z.ZodString;
1930
+ workerId: z.ZodString;
1931
+ notebookId: z.ZodString;
1932
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1933
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1934
+ }, z.core.$strip>;
1935
+ export declare const DeleteWorkerNotebookSchema: z.ZodObject<{
1936
+ tenantId: z.ZodString;
1937
+ workerId: z.ZodString;
1938
+ notebookId: z.ZodString;
1939
+ }, z.core.$strip>;
1940
+ export declare const CreateWorkerNotebookSourceSchema: z.ZodObject<{
1941
+ tenantId: z.ZodString;
1942
+ workerId: z.ZodString;
1943
+ notebookId: z.ZodString;
1944
+ type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1945
+ title: z.ZodString;
1946
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1947
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1948
+ metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1949
+ }, z.core.$strip>;
1950
+ export declare const UpdateWorkerNotebookSourceSchema: z.ZodObject<{
1951
+ tenantId: z.ZodString;
1952
+ workerId: z.ZodString;
1953
+ notebookId: z.ZodString;
1954
+ sourceId: z.ZodString;
1955
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1956
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1957
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1958
+ metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1959
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1960
+ }, z.core.$strip>;
1961
+ export declare const DeleteWorkerNotebookSourceSchema: z.ZodObject<{
1962
+ tenantId: z.ZodString;
1963
+ workerId: z.ZodString;
1964
+ notebookId: z.ZodString;
1965
+ sourceId: z.ZodString;
1966
+ }, z.core.$strip>;
1967
+ export declare const SendWorkerNotebookMessageSchema: z.ZodObject<{
1968
+ tenantId: z.ZodString;
1969
+ workerId: z.ZodString;
1970
+ notebookId: z.ZodString;
1971
+ content: z.ZodString;
1972
+ role: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1973
+ metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1974
+ }, z.core.$strip>;
1975
+ export declare const CreateWorkerNotebookNoteSchema: z.ZodObject<{
1976
+ tenantId: z.ZodString;
1977
+ workerId: z.ZodString;
1978
+ notebookId: z.ZodString;
1979
+ title: z.ZodString;
1980
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1981
+ }, z.core.$strip>;
1982
+ export declare const DeleteWorkerNotebookNoteSchema: z.ZodObject<{
1983
+ tenantId: z.ZodString;
1984
+ workerId: z.ZodString;
1985
+ notebookId: z.ZodString;
1986
+ noteId: z.ZodString;
1987
+ }, z.core.$strip>;
1988
+ export declare const CreateWorkerNotebookStudioOutputSchema: z.ZodObject<{
1989
+ tenantId: z.ZodString;
1990
+ workerId: z.ZodString;
1991
+ notebookId: z.ZodString;
1992
+ type: z.ZodString;
1993
+ title: z.ZodString;
1994
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1995
+ metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1996
+ }, z.core.$strip>;
1997
+ export declare const UpdateWorkerNotebookStudioOutputSchema: z.ZodObject<{
1998
+ tenantId: z.ZodString;
1999
+ workerId: z.ZodString;
2000
+ notebookId: z.ZodString;
2001
+ outputId: z.ZodString;
2002
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2003
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2004
+ metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2005
+ }, z.core.$strip>;
2006
+ export declare const DeleteWorkerNotebookStudioOutputSchema: z.ZodObject<{
2007
+ tenantId: z.ZodString;
2008
+ workerId: z.ZodString;
2009
+ notebookId: z.ZodString;
2010
+ outputId: z.ZodString;
2011
+ }, z.core.$strip>;
1912
2012
  export declare const CreateTopicSchema: z.ZodObject<{
1913
2013
  tenantId: z.ZodString;
1914
2014
  entityId: z.ZodString;