@punks/backend-entity-manager 0.0.310 → 0.0.312

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 JobDispatchInput {
4
4
  schedule?: JobSchedule<unknown>;
5
5
  instanceId: string;
6
6
  payload?: unknown;
7
+ commandPlaceholders?: Record<string, string>;
7
8
  }
8
9
  export declare enum JobProviderState {
9
10
  Initializing = "initializing",
@@ -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
@@ -2246,6 +2246,7 @@ interface JobDispatchInput {
2246
2246
  schedule?: JobSchedule<unknown>;
2247
2247
  instanceId: string;
2248
2248
  payload?: unknown;
2249
+ commandPlaceholders?: Record<string, string>;
2249
2250
  }
2250
2251
  declare enum JobProviderState {
2251
2252
  Initializing = "initializing",
@@ -2295,6 +2296,7 @@ type JobTriggerInput = {
2295
2296
  jobUid: string;
2296
2297
  scheduleUid?: string;
2297
2298
  payload?: any;
2299
+ commandPlaceholders?: Record<string, string>;
2298
2300
  };
2299
2301
 
2300
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.310",
3
+ "version": "0.0.312",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",