fix(connector): Remove unused typedrequest implementation in cloudlyconnector

This commit is contained in:
Philipp Kunz 2024-11-05 02:39:53 +01:00
parent 01256480c4
commit c763db40bb
3 changed files with 7 additions and 10 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## 2024-11-05 - 4.1.34 - fix(connector)
Remove unused typedrequest implementation in cloudlyconnector
- Removed commented out code that initialized typedrequest in CloudlyConnector.
## 2024-11-05 - 4.1.33 - fix(core)
Updated dependencies and improved npm preparation logic.

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@ship.zone/npmci',
version: '4.1.33',
version: '4.1.34',
description: 'A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities.'
}

View File

@ -26,14 +26,6 @@ export class CloudlyConnector {
return;
}
const typedrequest =
new plugins.typedrequest.TypedRequest<plugins.servezoneInterfaces.requests.IRequest_InformAboutNewContainerImage>(
`https://${cloudlyUrl}/typedrequest`,
'servezonestandard_InformAboutNewContainerVersion'
);
const response = await typedrequest.fire({
containerImageInfo: optionsArg,
});
// lets push to cloudly here
}
}