@punks/backend-entity-manager 0.0.474 → 0.0.476
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +6 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/extensions/jobs/services/jobs-service/types.d.ts +2 -0
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/models/index.d.ts +1 -0
- package/dist/esm/index.js +6 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/extensions/jobs/services/jobs-service/types.d.ts +2 -0
- package/dist/esm/types/platforms/nest/plugins/jobs/aws-batch/models/index.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -34827,6 +34827,7 @@ exports.JobsService = class JobsService {
|
|
|
34827
34827
|
runType: exports.JobRunType.OnDemand,
|
|
34828
34828
|
payload: input.payload,
|
|
34829
34829
|
commandPlaceholders: input.commandPlaceholders,
|
|
34830
|
+
variables: input.variables,
|
|
34830
34831
|
}));
|
|
34831
34832
|
};
|
|
34832
34833
|
this.updateJob = async (input) => {
|
|
@@ -41671,6 +41672,11 @@ let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
|
|
|
41671
41672
|
command: definition.invocationParams.startCommand,
|
|
41672
41673
|
image: definition.infrastructureParams.dockerImage,
|
|
41673
41674
|
executionRoleArn: this.awsSettings.batchExecutionRole,
|
|
41675
|
+
ephemeralStorage: definition.infrastructureParams.ephemeralStorageGB
|
|
41676
|
+
? {
|
|
41677
|
+
sizeInGiB: definition.infrastructureParams.ephemeralStorageGB,
|
|
41678
|
+
}
|
|
41679
|
+
: undefined,
|
|
41674
41680
|
resourceRequirements: [
|
|
41675
41681
|
{
|
|
41676
41682
|
type: clientBatch.ResourceType.MEMORY,
|