@appconda/sdk 1.0.673 → 1.0.676
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 +38 -0
- package/dist/modules/emploid/schema.js +36 -1
- package/dist/modules/emploid/service.d.ts +10 -4
- package/dist/modules/emploid/service.js +19 -1
- package/dist/modules/emploid/types.d.ts +54 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +41 -0
- package/src/modules/emploid/service.ts +28 -4
- package/src/modules/emploid/types.ts +60 -0
|
@@ -1867,6 +1867,32 @@ 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 GetGoogleMeetBrowserBotAvailabilitySchema: z.ZodObject<{
|
|
1875
|
+
tenantId: z.ZodString;
|
|
1876
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
1877
|
+
}, z.core.$strip>;
|
|
1878
|
+
export declare const ListGoogleMeetEmailApprovalsSchema: z.ZodObject<{
|
|
1879
|
+
tenantId: z.ZodString;
|
|
1880
|
+
channelId: z.ZodString;
|
|
1881
|
+
includeResolved: z.ZodOptional<z.ZodBoolean>;
|
|
1882
|
+
}, z.core.$strip>;
|
|
1883
|
+
export declare const ResolveGoogleMeetEmailApprovalSchema: z.ZodObject<{
|
|
1884
|
+
tenantId: z.ZodString;
|
|
1885
|
+
channelId: z.ZodString;
|
|
1886
|
+
deliveryId: z.ZodString;
|
|
1887
|
+
decision: z.ZodEnum<{
|
|
1888
|
+
APPROVE: "APPROVE";
|
|
1889
|
+
REJECT: "REJECT";
|
|
1890
|
+
}>;
|
|
1891
|
+
}, z.core.$strip>;
|
|
1892
|
+
export declare const TestGoogleMeetCredentialSchema: z.ZodObject<{
|
|
1893
|
+
tenantId: z.ZodString;
|
|
1894
|
+
credentialId: z.ZodString;
|
|
1895
|
+
}, z.core.$strip>;
|
|
1870
1896
|
export declare const CreateKnowledgeSchema: z.ZodObject<{
|
|
1871
1897
|
tenantId: z.ZodString;
|
|
1872
1898
|
entityId: z.ZodString;
|
|
@@ -1925,6 +1951,12 @@ export declare const GetWorkerNotebookSchema: z.ZodObject<{
|
|
|
1925
1951
|
workerId: z.ZodString;
|
|
1926
1952
|
notebookId: z.ZodString;
|
|
1927
1953
|
}, z.core.$strip>;
|
|
1954
|
+
export declare const BuildWorkerNotebookContextSchema: z.ZodObject<{
|
|
1955
|
+
tenantId: z.ZodString;
|
|
1956
|
+
workerId: z.ZodString;
|
|
1957
|
+
notebookId: z.ZodString;
|
|
1958
|
+
contextConfig: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1959
|
+
}, z.core.$strip>;
|
|
1928
1960
|
export declare const UpdateWorkerNotebookSchema: z.ZodObject<{
|
|
1929
1961
|
tenantId: z.ZodString;
|
|
1930
1962
|
workerId: z.ZodString;
|
|
@@ -1946,6 +1978,8 @@ export declare const CreateWorkerNotebookSourceSchema: z.ZodObject<{
|
|
|
1946
1978
|
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1947
1979
|
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1948
1980
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1981
|
+
transformations: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
1982
|
+
embed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1949
1983
|
}, z.core.$strip>;
|
|
1950
1984
|
export declare const CreateWorkerNotebookFileSourceSchema: z.ZodObject<{
|
|
1951
1985
|
tenantId: z.ZodString;
|
|
@@ -1955,6 +1989,8 @@ export declare const CreateWorkerNotebookFileSourceSchema: z.ZodObject<{
|
|
|
1955
1989
|
fileType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1956
1990
|
fileData: z.ZodString;
|
|
1957
1991
|
attachmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1992
|
+
transformations: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
1993
|
+
embed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1958
1994
|
}, z.core.$strip>;
|
|
1959
1995
|
export declare const DiscoverWorkerNotebookSourcesSchema: z.ZodObject<{
|
|
1960
1996
|
tenantId: z.ZodString;
|
|
@@ -1970,6 +2006,8 @@ export declare const ImportWorkerNotebookSourcesSchema: z.ZodObject<{
|
|
|
1970
2006
|
workerId: z.ZodString;
|
|
1971
2007
|
notebookId: z.ZodString;
|
|
1972
2008
|
urls: z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodString]>;
|
|
2009
|
+
transformations: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
2010
|
+
embed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1973
2011
|
}, z.core.$strip>;
|
|
1974
2012
|
export declare const UpdateWorkerNotebookSourceSchema: z.ZodObject<{
|
|
1975
2013
|
tenantId: z.ZodString;
|