@punks/backend-entity-manager 0.0.471 → 0.0.472
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 +59 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/manager/index.d.ts +1 -0
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/manager/types.d.ts +4 -0
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/models/index.d.ts +1 -0
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/settings/index.d.ts +2 -1
- package/dist/esm/index.js +60 -9
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/plugins/jobs/aws-batch/manager/index.d.ts +1 -0
- package/dist/esm/types/platforms/nest/plugins/jobs/aws-batch/manager/types.d.ts +4 -0
- package/dist/esm/types/platforms/nest/plugins/jobs/aws-batch/models/index.d.ts +1 -0
- package/dist/esm/types/platforms/nest/plugins/jobs/aws-batch/settings/index.d.ts +2 -1
- package/dist/index.d.ts +3 -1
- package/package.json +3 -3
|
@@ -9,6 +9,7 @@ export type BathJobDefinition = {
|
|
|
9
9
|
};
|
|
10
10
|
export type BatchJobOverrides = {
|
|
11
11
|
command?: string[];
|
|
12
|
+
batchComputeEnvironment?: string;
|
|
12
13
|
};
|
|
13
14
|
export type SubmitBatchJobInput = {
|
|
14
15
|
overrides?: BatchJobOverrides;
|
|
@@ -24,3 +25,6 @@ export type AwsJobDefinition = {
|
|
|
24
25
|
infrastructureParams: AwsBatchInfrastructureParams;
|
|
25
26
|
invocationParams: AwsBatchInvocationParams;
|
|
26
27
|
};
|
|
28
|
+
export type AwsBatchCreateQueueOptions = {
|
|
29
|
+
batchComputeEnvironment: string;
|
|
30
|
+
};
|
|
@@ -3,7 +3,8 @@ export type AwsBatchSettings = {
|
|
|
3
3
|
awsAccessKeyId?: string;
|
|
4
4
|
awsSecretAccessKey?: string;
|
|
5
5
|
region?: string;
|
|
6
|
-
|
|
6
|
+
defaultFargateBatchComputeEnvironment: string;
|
|
7
|
+
defaultEc2BatchComputeEnvironment?: string;
|
|
7
8
|
batchExecutionRole: string;
|
|
8
9
|
batchResourcesPrefix: string;
|
|
9
10
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -3666,6 +3666,7 @@ type AwsBatchInfrastructureParams = {
|
|
|
3666
3666
|
assignPublicIp?: boolean;
|
|
3667
3667
|
logGroupName?: string;
|
|
3668
3668
|
privileged?: boolean;
|
|
3669
|
+
batchComputeEnvironment?: string;
|
|
3669
3670
|
};
|
|
3670
3671
|
type AwsBatchInvocationParams = {
|
|
3671
3672
|
startCommand: string[];
|
|
@@ -3676,7 +3677,8 @@ type AwsBatchSettings = {
|
|
|
3676
3677
|
awsAccessKeyId?: string;
|
|
3677
3678
|
awsSecretAccessKey?: string;
|
|
3678
3679
|
region?: string;
|
|
3679
|
-
|
|
3680
|
+
defaultFargateBatchComputeEnvironment: string;
|
|
3681
|
+
defaultEc2BatchComputeEnvironment?: string;
|
|
3680
3682
|
batchExecutionRole: string;
|
|
3681
3683
|
batchResourcesPrefix: string;
|
|
3682
3684
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@punks/backend-entity-manager",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.472",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@nestjs/swagger": "^7.3.0",
|
|
48
48
|
"@nestjs/testing": "^10.4.1",
|
|
49
49
|
"@nestjs/typeorm": "^10.0.0",
|
|
50
|
-
"@punks/backend-core": "^0.0.
|
|
50
|
+
"@punks/backend-core": "^0.0.82",
|
|
51
51
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
52
52
|
"@rollup/plugin-json": "^6.0.0",
|
|
53
53
|
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"@nestjs/swagger": "^7.3.0",
|
|
112
112
|
"@nestjs/testing": "^10.4.1",
|
|
113
113
|
"@nestjs/typeorm": "^10.0.0",
|
|
114
|
-
"@punks/backend-core": "0.0.
|
|
114
|
+
"@punks/backend-core": "0.0.82",
|
|
115
115
|
"@sanity/client": "^6.10.0",
|
|
116
116
|
"@sendgrid/mail": "^7.7.0",
|
|
117
117
|
"bcrypt": "^5.1.0",
|