@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/cjs/index.js
CHANGED
|
@@ -34004,10 +34004,13 @@ const JobProcessors = [RunnableJobsProcessor];
|
|
|
34004
34004
|
|
|
34005
34005
|
const JobResolverProviders = [JobsProviderFactory];
|
|
34006
34006
|
|
|
34007
|
+
const JobTasks = [JobsMonitorTask, JobsSchedulerTask];
|
|
34008
|
+
|
|
34007
34009
|
var JobsModule_1;
|
|
34008
34010
|
const ModuleData$7 = {
|
|
34009
34011
|
providers: [
|
|
34010
34012
|
...JobsProviders,
|
|
34013
|
+
...JobTasks,
|
|
34011
34014
|
...JobsServices,
|
|
34012
34015
|
...JobHandlers,
|
|
34013
34016
|
...JobProcessors,
|
|
@@ -39877,10 +39880,11 @@ let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
|
|
|
39877
39880
|
this.awsSettings = awsSettings;
|
|
39878
39881
|
this.logger = backendCore.Log.getLogger(AwsBatchService_1.name);
|
|
39879
39882
|
this.client = () => new clientBatch.BatchClient({
|
|
39880
|
-
...(this.awsSettings.
|
|
39883
|
+
...(this.awsSettings.awsSecretAccessKey &&
|
|
39884
|
+
this.awsSettings.awsSecretAccessKey
|
|
39881
39885
|
? {
|
|
39882
|
-
accessKeyId: this.awsSettings.
|
|
39883
|
-
secretAccessKey: this.awsSettings.
|
|
39886
|
+
accessKeyId: this.awsSettings.awsSecretAccessKey,
|
|
39887
|
+
secretAccessKey: this.awsSettings.awsSecretAccessKey,
|
|
39884
39888
|
}
|
|
39885
39889
|
: {}),
|
|
39886
39890
|
});
|