async performContentBundleAction()

in lib/client/services/contentBundle/contentBundles.service.ts [28:40]


  async performContentBundleAction(
    contentBundleAction: ContentBundleAction,
    filterStatement: Statement,
  ): Promise<UpdateResult> {
    return this._client.performContentBundleAction({
      contentBundleAction: {
        attributes: {
          "xsi:type": contentBundleAction.constructor.name,
        },
      },
      filterStatement,
    });
  }