@punks/backend-entity-manager 0.0.265 → 0.0.266
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 +4 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/settings/index.d.ts +2 -2
- package/dist/esm/index.js +4 -3
- package/dist/esm/index.js.map +1 -1
- 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
|
@@ -39877,10 +39877,11 @@ let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
|
|
|
39877
39877
|
this.awsSettings = awsSettings;
|
|
39878
39878
|
this.logger = backendCore.Log.getLogger(AwsBatchService_1.name);
|
|
39879
39879
|
this.client = () => new clientBatch.BatchClient({
|
|
39880
|
-
...(this.awsSettings.
|
|
39880
|
+
...(this.awsSettings.awsSecretAccessKey &&
|
|
39881
|
+
this.awsSettings.awsSecretAccessKey
|
|
39881
39882
|
? {
|
|
39882
|
-
accessKeyId: this.awsSettings.
|
|
39883
|
-
secretAccessKey: this.awsSettings.
|
|
39883
|
+
accessKeyId: this.awsSettings.awsSecretAccessKey,
|
|
39884
|
+
secretAccessKey: this.awsSettings.awsSecretAccessKey,
|
|
39884
39885
|
}
|
|
39885
39886
|
: {}),
|
|
39886
39887
|
});
|