@punks/backend-entity-manager 0.0.474 → 0.0.475

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.
@@ -1,6 +1,8 @@
1
+ import { BatchJobVariables } from "../../../../plugins/jobs/aws-batch/manager/types";
1
2
  export type JobTriggerInput = {
2
3
  jobUid: string;
3
4
  scheduleUid?: string;
4
5
  payload?: any;
5
6
  commandPlaceholders?: Record<string, string>;
7
+ variables?: BatchJobVariables;
6
8
  };
package/dist/esm/index.js CHANGED
@@ -34812,6 +34812,7 @@ let JobsService = class JobsService {
34812
34812
  runType: JobRunType.OnDemand,
34813
34813
  payload: input.payload,
34814
34814
  commandPlaceholders: input.commandPlaceholders,
34815
+ variables: input.variables,
34815
34816
  }));
34816
34817
  };
34817
34818
  this.updateJob = async (input) => {