@appconda/sdk 1.0.677 → 1.0.678

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.
@@ -7,6 +7,8 @@ import type { TGoogleMeetBrowserBotAvailability, TGoogleMeetEmailApproval, TKnow
7
7
  import { ImportDataModelSchema } from "./schema";
8
8
  import { CreateWikiSpaceSchema, DeleteWikiSpaceSchema, GetPrivateWikiSpaceSchema, ListWikiSpacesSchema, UpdateWikiSpaceSchema } from "./schema";
9
9
  import type { TWikiSpace } from "./types";
10
+ import { CreateWorkerBackgroundJobSchema, ClearWorkerBackgroundJobExecutionsSchema, ListWorkerBackgroundJobExecutionsSchema, ListWorkerBackgroundJobsSchema, UpdateWorkerBackgroundJobSchema } from "./schema";
11
+ import type { TWorkerBackgroundJob, TWorkerBackgroundJobExecutionPage, TClearWorkerBackgroundJobExecutionsResult } from "./types";
10
12
  export declare class EmploidService extends ServiceClient {
11
13
  protected getServiceName(): string;
12
14
  private isHttpUrl;
@@ -30,6 +32,11 @@ export declare class EmploidService extends ServiceClient {
30
32
  ListScopes(payload: z.infer<typeof ListScopesSchema>): Promise<TScope[]>;
31
33
  GetScopeByType(payload: z.infer<typeof GetScopeByTypeSchema>): Promise<TScope | null>;
32
34
  CreateScope(payload: z.infer<typeof CreateScopeSchema>): Promise<TScope>;
35
+ CreateWorkerBackgroundJob(payload: z.infer<typeof CreateWorkerBackgroundJobSchema>): Promise<TWorkerBackgroundJob>;
36
+ ListWorkerBackgroundJobs(payload: z.infer<typeof ListWorkerBackgroundJobsSchema>): Promise<TWorkerBackgroundJob[]>;
37
+ UpdateWorkerBackgroundJob(payload: z.infer<typeof UpdateWorkerBackgroundJobSchema>): Promise<TWorkerBackgroundJob>;
38
+ ListWorkerBackgroundJobExecutions(payload: z.infer<typeof ListWorkerBackgroundJobExecutionsSchema>): Promise<TWorkerBackgroundJobExecutionPage>;
39
+ ClearWorkerBackgroundJobExecutions(payload: z.infer<typeof ClearWorkerBackgroundJobExecutionsSchema>): Promise<TClearWorkerBackgroundJobExecutionsResult>;
33
40
  UpdateScope(payload: z.infer<typeof UpdateScopeSchema>): Promise<TScope>;
34
41
  DeleteScope(payload: z.infer<typeof DeleteScopeSchema>): Promise<TScope>;
35
42
  ExportKnowledgeTree(payload: {