UNPKG

@kontent-ai/management-sdk

Version:
17 lines 601 B
import { BaseQuery } from '../base-query'; export class ModifyCustomAppQuery extends BaseQuery { constructor(config, queryService, identifier, data) { super(config, queryService); this.config = config; this.queryService = queryService; this.identifier = identifier; this.data = data; } toPromise() { return this.queryService.modifyCustomAppAsync(this.getUrl(), this.data, this.queryConfig); } getAction() { return this.apiEndpoints.modifyCustomApp(this.identifier); } } //# sourceMappingURL=modify-custom-app-query.js.map