@appconda/sdk 1.0.678 → 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 +21 -0
- package/dist/modules/emploid/schema.js +24 -1
- package/dist/modules/emploid/service.d.ts +8 -0
- package/dist/modules/emploid/service.js +10 -1
- package/dist/modules/emploid/types.d.ts +49 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +26 -0
- package/src/modules/emploid/service.ts +14 -0
- package/src/modules/emploid/types.ts +53 -0
|
@@ -4,6 +4,8 @@ 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";
|
|
@@ -197,6 +199,12 @@ export declare class EmploidService extends ServiceClient {
|
|
|
197
199
|
ListChannels(payload: z.infer<typeof ListChannelsSchema>): Promise<TChannel[]>;
|
|
198
200
|
UpdateChannel(payload: z.infer<typeof UpdateChannelSchema>): Promise<TChannel>;
|
|
199
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>;
|
|
200
208
|
ListGoogleMeetCalendars(payload: z.infer<typeof ListGoogleMeetCalendarsSchema>): Promise<TGoogleMeetCalendarSources>;
|
|
201
209
|
GetGoogleMeetBrowserBotAvailability(payload: z.infer<typeof GetGoogleMeetBrowserBotAvailabilitySchema>): Promise<TGoogleMeetBrowserBotAvailability>;
|
|
202
210
|
ListGoogleMeetEmailApprovals(payload: z.infer<typeof ListGoogleMeetEmailApprovalsSchema>): Promise<TGoogleMeetEmailApproval[]>;
|