@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/index.d.ts
CHANGED
|
@@ -2818,8 +2818,8 @@ type AwsBatchInvocationParams = {
|
|
|
2818
2818
|
type AwsJobDefinition = JobDefinition<AwsBatchInfrastructureParams, AwsBatchInvocationParams>;
|
|
2819
2819
|
|
|
2820
2820
|
type AwsBatchSettings = {
|
|
2821
|
-
|
|
2822
|
-
|
|
2821
|
+
awsAccessKeyId?: string;
|
|
2822
|
+
awsSecretAccessKey?: string;
|
|
2823
2823
|
region?: string;
|
|
2824
2824
|
defaultQueueName: string;
|
|
2825
2825
|
batchComputeEnvironment: string;
|