lib/client/services/contentBundle/contentBundles.service.ts (41 lines of code) (raw):

import type { Client } from "soap"; import type { Statement, UpdateResult } from "../../../common/types"; import type { ContentBundleAction } from "./contentBundle.action"; import type { ContentBundle, ContentBundlePage } from "./contentBundle.type"; import type { ContentBundleServiceOperations } from "./contentBundleService.interface"; export class ContentBundleService implements ContentBundleServiceOperations { private _client: Client; constructor(client: Client) { this._client = client; } async createContentBundles( contentBundles: Partial<ContentBundle>[], ): Promise<ContentBundle[]> { return this._client.createContentBundles({ contentBundles }); } async getContentBundlesByStatement( filterStatement: Statement, ): Promise<ContentBundlePage> { return this._client.getContentBundlesByStatement({ filterStatement, }); } async performContentBundleAction( contentBundleAction: ContentBundleAction, filterStatement: Statement, ): Promise<UpdateResult> { return this._client.performContentBundleAction({ contentBundleAction: { attributes: { "xsi:type": contentBundleAction.constructor.name, }, }, filterStatement, }); } async updateContentBundles( contentBundles: ContentBundle[], ): Promise<ContentBundle[]> { return this._client.updateContentBundles({ contentBundles }); } }