@appconda/sdk 1.0.677 → 1.0.680
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 +129 -3
- package/dist/modules/emploid/schema.js +72 -2
- package/dist/modules/emploid/service.d.ts +15 -0
- package/dist/modules/emploid/service.js +25 -1
- package/dist/modules/emploid/types.d.ts +140 -0
- package/dist/modules/emploid/types.js +1 -1
- package/dist/modules/scheduled-job/types.d.ts +7 -0
- package/dist/modules/scheduled-job/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +81 -1
- package/src/modules/emploid/service.ts +46 -0
- package/src/modules/emploid/types.ts +151 -0
- package/src/modules/scheduled-job/types.ts +7 -0
|
@@ -4,9 +4,13 @@ import { AggregateRecordsSchema, BulkCreateRecordsSchema, BulkDeleteRecordsSchem
|
|
|
4
4
|
import { GetGoogleMeetBrowserBotAvailabilitySchema, ListGoogleMeetEmailApprovalsSchema, ResolveCollectionFileViewSchema, ResolveGoogleMeetEmailApprovalSchema } from "./schema";
|
|
5
5
|
import { TAgentFlow, TAgentFlowFolder, TAssistant, TAssistantChannel, TAssistantConstraint, TAssistantDatasource, TAssistantInstruction, TAssistantSkill, TChannel, TChat, TCollectionAutomationRule, TCollectionButton, TCollectionRelation, TCollectionView, TCommand, TCompetency, TConstraint, TDatasource, TDeleteAgentFlowResult, TDocument, TDomainTopic, TDriveDeleteImpact, TDriveFileContent, TDriveFileTextContent, TDriveItem, TDriveProviderFolder, TDriveRoot, TDriveRootProvider, TDriveTreeNode, TEmploid, TEnhanceTopic, TExtension, TGoogleMeetCalendarSources, TGoogleMeetCredentialTest, TInput, TInstruction, TJobDefinition, TKnowledge, TMarketStoreItem, TOccupation, TPaginatedEmploidsResult, TPreparedDriveUpload, TPublishEmploid, TPublishWorkerToMarketStore, TRelationRecordOption, TScope, TSkill, TStreamId, TTaskTemplate, TTeam, TTopic, TUploadedFile, TWikiAiCommand, TWikiAiRunResult, TWikiAiSetting, TWikiComment, TWikiCommentPagination, TWikiFileViewResolution, TWikiReference, TWikiReferenceListResponse, TWorker, TWorkerNotebook, TWorkerNotebookClearMessagesResult, TWorkerNotebookContextResult, TWorkerNotebookNote, TWorkerNotebookSendMessageResult, TWorkerNotebookSource, TWorkerNotebookSourceDiscoveryResult, TWorkerNotebookStudioOutput, TWorkerTopic } from "./types";
|
|
6
6
|
import type { TGoogleMeetBrowserBotAvailability, TGoogleMeetEmailApproval, TKnowledgeTreeExportPayload, TKnowledgeTreeImportResult } from "./types";
|
|
7
|
+
import { ListWorkerWhatsAppMessagesSchema, SendWorkerWhatsAppMessageSchema, TestWorkerWhatsAppChannelSchema } from "./schema";
|
|
8
|
+
import type { TWorkerChannelMessage, TWorkerWhatsAppHealth, TWorkerWhatsAppMessageHistory } from "./types";
|
|
7
9
|
import { ImportDataModelSchema } from "./schema";
|
|
8
10
|
import { CreateWikiSpaceSchema, DeleteWikiSpaceSchema, GetPrivateWikiSpaceSchema, ListWikiSpacesSchema, UpdateWikiSpaceSchema } from "./schema";
|
|
9
11
|
import type { TWikiSpace } from "./types";
|
|
12
|
+
import { CreateWorkerBackgroundJobSchema, ClearWorkerBackgroundJobExecutionsSchema, ListWorkerBackgroundJobExecutionsSchema, ListWorkerBackgroundJobsSchema, UpdateWorkerBackgroundJobSchema } from "./schema";
|
|
13
|
+
import type { TWorkerBackgroundJob, TWorkerBackgroundJobExecutionPage, TClearWorkerBackgroundJobExecutionsResult } from "./types";
|
|
10
14
|
export declare class EmploidService extends ServiceClient {
|
|
11
15
|
protected getServiceName(): string;
|
|
12
16
|
private isHttpUrl;
|
|
@@ -30,6 +34,11 @@ export declare class EmploidService extends ServiceClient {
|
|
|
30
34
|
ListScopes(payload: z.infer<typeof ListScopesSchema>): Promise<TScope[]>;
|
|
31
35
|
GetScopeByType(payload: z.infer<typeof GetScopeByTypeSchema>): Promise<TScope | null>;
|
|
32
36
|
CreateScope(payload: z.infer<typeof CreateScopeSchema>): Promise<TScope>;
|
|
37
|
+
CreateWorkerBackgroundJob(payload: z.infer<typeof CreateWorkerBackgroundJobSchema>): Promise<TWorkerBackgroundJob>;
|
|
38
|
+
ListWorkerBackgroundJobs(payload: z.infer<typeof ListWorkerBackgroundJobsSchema>): Promise<TWorkerBackgroundJob[]>;
|
|
39
|
+
UpdateWorkerBackgroundJob(payload: z.infer<typeof UpdateWorkerBackgroundJobSchema>): Promise<TWorkerBackgroundJob>;
|
|
40
|
+
ListWorkerBackgroundJobExecutions(payload: z.infer<typeof ListWorkerBackgroundJobExecutionsSchema>): Promise<TWorkerBackgroundJobExecutionPage>;
|
|
41
|
+
ClearWorkerBackgroundJobExecutions(payload: z.infer<typeof ClearWorkerBackgroundJobExecutionsSchema>): Promise<TClearWorkerBackgroundJobExecutionsResult>;
|
|
33
42
|
UpdateScope(payload: z.infer<typeof UpdateScopeSchema>): Promise<TScope>;
|
|
34
43
|
DeleteScope(payload: z.infer<typeof DeleteScopeSchema>): Promise<TScope>;
|
|
35
44
|
ExportKnowledgeTree(payload: {
|
|
@@ -190,6 +199,12 @@ export declare class EmploidService extends ServiceClient {
|
|
|
190
199
|
ListChannels(payload: z.infer<typeof ListChannelsSchema>): Promise<TChannel[]>;
|
|
191
200
|
UpdateChannel(payload: z.infer<typeof UpdateChannelSchema>): Promise<TChannel>;
|
|
192
201
|
DeleteChannel(payload: z.infer<typeof DeleteChannelSchema>): Promise<TChannel>;
|
|
202
|
+
SendWorkerWhatsAppMessage(payload: z.infer<typeof SendWorkerWhatsAppMessageSchema>): Promise<TWorkerChannelMessage>;
|
|
203
|
+
TestWorkerWhatsAppChannel(payload: z.infer<typeof TestWorkerWhatsAppChannelSchema>): Promise<{
|
|
204
|
+
health?: TWorkerWhatsAppHealth;
|
|
205
|
+
[key: string]: unknown;
|
|
206
|
+
}>;
|
|
207
|
+
ListWorkerWhatsAppMessages(payload: z.infer<typeof ListWorkerWhatsAppMessagesSchema>): Promise<TWorkerWhatsAppMessageHistory>;
|
|
193
208
|
ListGoogleMeetCalendars(payload: z.infer<typeof ListGoogleMeetCalendarsSchema>): Promise<TGoogleMeetCalendarSources>;
|
|
194
209
|
GetGoogleMeetBrowserBotAvailability(payload: z.infer<typeof GetGoogleMeetBrowserBotAvailabilitySchema>): Promise<TGoogleMeetBrowserBotAvailability>;
|
|
195
210
|
ListGoogleMeetEmailApprovals(payload: z.infer<typeof ListGoogleMeetEmailApprovalsSchema>): Promise<TGoogleMeetEmailApproval[]>;
|