@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.
@@ -12,6 +12,7 @@ export declare class AwsBatchService {
12
12
  private getActiveJobDefinitions;
13
13
  private ensureQueue;
14
14
  private createQueue;
15
+ private updateQueue;
15
16
  private getQueue;
16
17
  private client;
17
18
  private get awsSettings();
@@ -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
+ };
@@ -14,6 +14,7 @@ export type AwsBatchInfrastructureParams = {
14
14
  assignPublicIp?: boolean;
15
15
  logGroupName?: string;
16
16
  privileged?: boolean;
17
+ batchComputeEnvironment?: string;
17
18
  };
18
19
  export type AwsBatchInvocationParams = {
19
20
  startCommand: string[];
@@ -3,7 +3,8 @@ export type AwsBatchSettings = {
3
3
  awsAccessKeyId?: string;
4
4
  awsSecretAccessKey?: string;
5
5
  region?: string;
6
- batchComputeEnvironment: string;
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
- batchComputeEnvironment: string;
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.471",
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.81",
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.81",
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",