We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e14a9b commit 3b47d0dCopy full SHA for 3b47d0d
servers/fdr/src/controllers/api/getRegisterApiService.ts
@@ -50,6 +50,14 @@ export function getRegisterApiService(app: FdrApplication): APIV1WriteService {
50
};
51
}
52
53
+ // Update the "latest" pointer for each language so that future requests
54
+ // without a version can resolve to this version
55
+ await app.services.s3.updateSdkDynamicIrLatestPointer({
56
+ orgId: req.body.orgId,
57
+ version: req.body.version,
58
+ snippetConfiguration: req.body.snippetConfiguration
59
+ });
60
+
61
app.logger.debug(`Successfully prepared dynamic IR upload URLs for SDK generation`);
62
return res.send({
63
uploadUrls: dynamicIrUploads
0 commit comments