@punks/backend-entity-manager 0.0.265 → 0.0.267
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 +7 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/extensions/jobs/task/index.d.ts +3 -0
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/settings/index.d.ts +2 -2
- package/dist/esm/index.js +7 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/extensions/jobs/task/index.d.ts +3 -0
- package/dist/esm/types/platforms/nest/plugins/jobs/aws-batch/settings/index.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -33989,10 +33989,13 @@ const JobProcessors = [RunnableJobsProcessor];
|
|
|
33989
33989
|
|
|
33990
33990
|
const JobResolverProviders = [JobsProviderFactory];
|
|
33991
33991
|
|
|
33992
|
+
const JobTasks = [JobsMonitorTask, JobsSchedulerTask];
|
|
33993
|
+
|
|
33992
33994
|
var JobsModule_1;
|
|
33993
33995
|
const ModuleData$7 = {
|
|
33994
33996
|
providers: [
|
|
33995
33997
|
...JobsProviders,
|
|
33998
|
+
...JobTasks,
|
|
33996
33999
|
...JobsServices,
|
|
33997
34000
|
...JobHandlers,
|
|
33998
34001
|
...JobProcessors,
|
|
@@ -39862,10 +39865,11 @@ let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
|
|
|
39862
39865
|
this.awsSettings = awsSettings;
|
|
39863
39866
|
this.logger = Log.getLogger(AwsBatchService_1.name);
|
|
39864
39867
|
this.client = () => new BatchClient({
|
|
39865
|
-
...(this.awsSettings.
|
|
39868
|
+
...(this.awsSettings.awsSecretAccessKey &&
|
|
39869
|
+
this.awsSettings.awsSecretAccessKey
|
|
39866
39870
|
? {
|
|
39867
|
-
accessKeyId: this.awsSettings.
|
|
39868
|
-
secretAccessKey: this.awsSettings.
|
|
39871
|
+
accessKeyId: this.awsSettings.awsSecretAccessKey,
|
|
39872
|
+
secretAccessKey: this.awsSettings.awsSecretAccessKey,
|
|
39869
39873
|
}
|
|
39870
39874
|
: {}),
|
|
39871
39875
|
});
|