Request for Feature Enhancement (RFE) Summary:Create a new Java library that does same functions of aio-lib-state like AdobeState.get(), .put(), etcUse-case:This is a suggestion after my previous posts on allowing AssetCompute microservice to accept altText and another problem. Will be nice if AEMaa...
My use case follows an idea I posted https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager-ideas/enhance-assetcompute-microservice-to-accept-alttext/idi-p/705880 Basically I am receiving asset creation events from Workfront and am creating assets into AEM using a runtime action. ...
After multiple trial-n-error, figured the answer to this onNext is invoked asynchronously - I added log statements and confirmed onNext function gets invoked for ALL available events and action doesnt wait for any of event completion.I even forced await like this .subscribe(
async (x) => awai...
I am closing my question after I opened a suggestion idea in community. https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager-ideas/enhance-openapi-content-fragment-for-list-fragments/idi-p/705961#M1951 I have also mailed to aem-apis@adobe.com hoping to get acknowledgement. Than...
Request for Feature Enhancement (RFE) Summary:Enhance Content Fragment OpenAPI for List Fragments to include eTagUse-case:List Content Fragment documentation reads, API would return `etag`.
But when testing against AEM, the etag field is missing in response.
This leads to a problem when updating CF...
Request for Feature Enhancement (RFE) Summary:Enhance aem-upload library to accept sourceUrls instead of current local filePath and blob only.Use-case:After Adobe deprecated the legacy Asset Upload APIs the alternate solution suggested was Open-sourced upload library aem-upload. Unfortunately altern...
I wrote a simple webaction and deployed to my workspace import { setGlobals } from "./common.mjs";
function main(params) {
setGlobals(params);
return { result: "Trigger runtime action successfully" };
}
const _main = main;
export { _main as main }; When I call the action from Postman, I only r...
When we subscribe to event journal using getEventsObservableFromJournal, does the subscriber WAIT for each event callback to complete before switching to next event? Say if 500 events are queued into the journal, and I invoke getEventsObservableFromJournal.Do ALL events get consumed parallel and 500...
Request for Feature Enhancement (RFE) Summary:Enhance AssetCompute microservice to accept altTextUse-case:Today AssetCompute microservice, helps to upload asset. If the asset has associated `altText` or additional metadata, the code has to wait until processing complete event. And then update `altTe...