@appconda/sdk 1.0.673 → 1.0.675

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.
@@ -1867,6 +1867,28 @@ export declare const ListChannelsSchema: z.ZodObject<{
1867
1867
  tenantId: z.ZodString;
1868
1868
  entityId: z.ZodOptional<z.ZodString>;
1869
1869
  }, z.core.$strip>;
1870
+ export declare const ListGoogleMeetCalendarsSchema: z.ZodObject<{
1871
+ tenantId: z.ZodString;
1872
+ credentialId: z.ZodString;
1873
+ }, z.core.$strip>;
1874
+ export declare const ListGoogleMeetEmailApprovalsSchema: z.ZodObject<{
1875
+ tenantId: z.ZodString;
1876
+ channelId: z.ZodString;
1877
+ includeResolved: z.ZodOptional<z.ZodBoolean>;
1878
+ }, z.core.$strip>;
1879
+ export declare const ResolveGoogleMeetEmailApprovalSchema: z.ZodObject<{
1880
+ tenantId: z.ZodString;
1881
+ channelId: z.ZodString;
1882
+ deliveryId: z.ZodString;
1883
+ decision: z.ZodEnum<{
1884
+ APPROVE: "APPROVE";
1885
+ REJECT: "REJECT";
1886
+ }>;
1887
+ }, z.core.$strip>;
1888
+ export declare const TestGoogleMeetCredentialSchema: z.ZodObject<{
1889
+ tenantId: z.ZodString;
1890
+ credentialId: z.ZodString;
1891
+ }, z.core.$strip>;
1870
1892
  export declare const CreateKnowledgeSchema: z.ZodObject<{
1871
1893
  tenantId: z.ZodString;
1872
1894
  entityId: z.ZodString;
@@ -1925,6 +1947,12 @@ export declare const GetWorkerNotebookSchema: z.ZodObject<{
1925
1947
  workerId: z.ZodString;
1926
1948
  notebookId: z.ZodString;
1927
1949
  }, z.core.$strip>;
1950
+ export declare const BuildWorkerNotebookContextSchema: z.ZodObject<{
1951
+ tenantId: z.ZodString;
1952
+ workerId: z.ZodString;
1953
+ notebookId: z.ZodString;
1954
+ contextConfig: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1955
+ }, z.core.$strip>;
1928
1956
  export declare const UpdateWorkerNotebookSchema: z.ZodObject<{
1929
1957
  tenantId: z.ZodString;
1930
1958
  workerId: z.ZodString;
@@ -1946,6 +1974,8 @@ export declare const CreateWorkerNotebookSourceSchema: z.ZodObject<{
1946
1974
  url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1947
1975
  content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1948
1976
  metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1977
+ transformations: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1978
+ embed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1949
1979
  }, z.core.$strip>;
1950
1980
  export declare const CreateWorkerNotebookFileSourceSchema: z.ZodObject<{
1951
1981
  tenantId: z.ZodString;
@@ -1955,6 +1985,8 @@ export declare const CreateWorkerNotebookFileSourceSchema: z.ZodObject<{
1955
1985
  fileType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1956
1986
  fileData: z.ZodString;
1957
1987
  attachmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1988
+ transformations: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1989
+ embed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1958
1990
  }, z.core.$strip>;
1959
1991
  export declare const DiscoverWorkerNotebookSourcesSchema: z.ZodObject<{
1960
1992
  tenantId: z.ZodString;
@@ -1970,6 +2002,8 @@ export declare const ImportWorkerNotebookSourcesSchema: z.ZodObject<{
1970
2002
  workerId: z.ZodString;
1971
2003
  notebookId: z.ZodString;
1972
2004
  urls: z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodString]>;
2005
+ transformations: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2006
+ embed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1973
2007
  }, z.core.$strip>;
1974
2008
  export declare const UpdateWorkerNotebookSourceSchema: z.ZodObject<{
1975
2009
  tenantId: z.ZodString;