@punks/backend-entity-manager 0.0.311 → 0.0.313

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.
@@ -4,6 +4,7 @@ export interface JobDispatchCommandInput {
4
4
  schedule?: JobSchedule<unknown>;
5
5
  runType: JobRunType;
6
6
  payload?: unknown;
7
+ commandPlaceholders?: Record<string, string>;
7
8
  }
8
9
  export declare class JobDispatchCommand {
9
10
  readonly input: JobDispatchCommandInput;
@@ -2,4 +2,5 @@ export type JobTriggerInput = {
2
2
  jobUid: string;
3
3
  scheduleUid?: string;
4
4
  payload?: any;
5
+ commandPlaceholders?: Record<string, string>;
5
6
  };
package/dist/index.d.ts CHANGED
@@ -2296,6 +2296,7 @@ type JobTriggerInput = {
2296
2296
  jobUid: string;
2297
2297
  scheduleUid?: string;
2298
2298
  payload?: any;
2299
+ commandPlaceholders?: Record<string, string>;
2299
2300
  };
2300
2301
 
2301
2302
  declare class JobsService {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@punks/backend-entity-manager",
3
- "version": "0.0.311",
3
+ "version": "0.0.313",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",