@punks/backend-entity-manager 0.0.288 → 0.0.289

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/esm/index.js CHANGED
@@ -40008,10 +40008,14 @@ let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
40008
40008
  jobQueue: queue.jobQueueArn,
40009
40009
  jobDefinition: jobDefinition.jobDefinitionArn,
40010
40010
  jobName,
40011
- containerOverrides: {
40012
- command: input.overrides?.command ??
40013
- jobDefinition.containerProperties.command,
40014
- },
40011
+ ...(input.overrides?.command || jobDefinition.containerProperties?.command
40012
+ ? {
40013
+ containerOverrides: {
40014
+ command: input.overrides?.command ??
40015
+ jobDefinition.containerProperties.command,
40016
+ },
40017
+ }
40018
+ : {}),
40015
40019
  };
40016
40020
  this.logger.info(`AWS JOB -> submitting job ${jobName} ${queue.jobQueueArn}`, {
40017
40021
  request: submitJobRequest,