@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/cjs/index.js CHANGED
@@ -40023,10 +40023,14 @@ let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
40023
40023
  jobQueue: queue.jobQueueArn,
40024
40024
  jobDefinition: jobDefinition.jobDefinitionArn,
40025
40025
  jobName,
40026
- containerOverrides: {
40027
- command: input.overrides?.command ??
40028
- jobDefinition.containerProperties.command,
40029
- },
40026
+ ...(input.overrides?.command || jobDefinition.containerProperties?.command
40027
+ ? {
40028
+ containerOverrides: {
40029
+ command: input.overrides?.command ??
40030
+ jobDefinition.containerProperties.command,
40031
+ },
40032
+ }
40033
+ : {}),
40030
40034
  };
40031
40035
  this.logger.info(`AWS JOB -> submitting job ${jobName} ${queue.jobQueueArn}`, {
40032
40036
  request: submitJobRequest,