@kontent-ai/management-sdk
Version:
Official Kontent.ai management SDK
18 lines • 539 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ActionQuery = void 0;
class ActionQuery {
constructor(config, queryService, buildResult) {
this.config = config;
this.queryService = queryService;
this.buildResult = buildResult;
}
/**
* Sets action to use for request
*/
withAction(action) {
return this.buildResult(this.config, this.queryService, action);
}
}
exports.ActionQuery = ActionQuery;
//# sourceMappingURL=action-query.class.js.map