@appconda/sdk 1.0.671 → 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.
- package/dist/modules/emploid/schema.d.ts +48 -0
- package/dist/modules/emploid/schema.js +46 -1
- package/dist/modules/emploid/service.d.ts +11 -3
- package/dist/modules/emploid/service.js +22 -1
- package/dist/modules/emploid/types.d.ts +64 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +52 -0
- package/src/modules/emploid/service.ts +32 -3
- package/src/modules/emploid/types.ts +72 -0
|
@@ -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,12 +1985,25 @@ 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>>;
|
|
1990
|
+
}, z.core.$strip>;
|
|
1991
|
+
export declare const DiscoverWorkerNotebookSourcesSchema: z.ZodObject<{
|
|
1992
|
+
tenantId: z.ZodString;
|
|
1993
|
+
workerId: z.ZodString;
|
|
1994
|
+
notebookId: z.ZodString;
|
|
1995
|
+
query: z.ZodString;
|
|
1996
|
+
limit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1997
|
+
sourceType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1998
|
+
researchMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1958
1999
|
}, z.core.$strip>;
|
|
1959
2000
|
export declare const ImportWorkerNotebookSourcesSchema: z.ZodObject<{
|
|
1960
2001
|
tenantId: z.ZodString;
|
|
1961
2002
|
workerId: z.ZodString;
|
|
1962
2003
|
notebookId: z.ZodString;
|
|
1963
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>>;
|
|
1964
2007
|
}, z.core.$strip>;
|
|
1965
2008
|
export declare const UpdateWorkerNotebookSourceSchema: z.ZodObject<{
|
|
1966
2009
|
tenantId: z.ZodString;
|
|
@@ -1987,6 +2030,11 @@ export declare const SendWorkerNotebookMessageSchema: z.ZodObject<{
|
|
|
1987
2030
|
role: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1988
2031
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1989
2032
|
}, z.core.$strip>;
|
|
2033
|
+
export declare const ClearWorkerNotebookMessagesSchema: z.ZodObject<{
|
|
2034
|
+
tenantId: z.ZodString;
|
|
2035
|
+
workerId: z.ZodString;
|
|
2036
|
+
notebookId: z.ZodString;
|
|
2037
|
+
}, z.core.$strip>;
|
|
1990
2038
|
export declare const CreateWorkerNotebookNoteSchema: z.ZodObject<{
|
|
1991
2039
|
tenantId: z.ZodString;
|
|
1992
2040
|
workerId: z.ZodString;
|