@punks/backend-entity-manager 0.0.300 → 0.0.301

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.
@@ -6,6 +6,7 @@ export declare class AwsBatchService {
6
6
  submitJob(input: SubmitBatchJobInput): Promise<void>;
7
7
  ensureJobDefinition(definition: AwsJobDefinition): Promise<import("@aws-sdk/client-batch").JobDefinition>;
8
8
  private unregisterJobDefinition;
9
+ private ensureJobLogDriver;
9
10
  private registerJobDefinition;
10
11
  private getLatestJobDefinition;
11
12
  private getActiveJobDefinitions;
@@ -7,6 +7,7 @@ export type AwsBatchInfrastructureParams = {
7
7
  dockerImage: string;
8
8
  computePlatformType?: AwsJobComputePlatformType;
9
9
  assignPublicIp?: boolean;
10
+ logGroupName?: string;
10
11
  };
11
12
  export type AwsBatchInvocationParams = {
12
13
  startCommand: string[];
@@ -0,0 +1,2 @@
1
+ import { AwsBatchSettings } from "../settings";
2
+ export declare const ensureJobLogGroup: (logGroupName: string, awsSettings: AwsBatchSettings) => Promise<void>;
package/dist/index.d.ts CHANGED
@@ -2857,6 +2857,7 @@ type AwsBatchInfrastructureParams = {
2857
2857
  dockerImage: string;
2858
2858
  computePlatformType?: AwsJobComputePlatformType;
2859
2859
  assignPublicIp?: boolean;
2860
+ logGroupName?: string;
2860
2861
  };
2861
2862
  type AwsBatchInvocationParams = {
2862
2863
  startCommand: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@punks/backend-entity-manager",
3
- "version": "0.0.300",
3
+ "version": "0.0.301",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -26,11 +26,12 @@
26
26
  "author": "WebPunks",
27
27
  "license": "ISC",
28
28
  "devDependencies": {
29
- "@aws-sdk/client-batch": "^3.525.0",
30
- "@aws-sdk/client-s3": "^3.525.0",
31
- "@aws-sdk/client-secrets-manager": "^3.525.0",
32
- "@aws-sdk/client-ses": "^3.525.0",
33
- "@aws-sdk/s3-request-presigner": "^3.525.0",
29
+ "@aws-sdk/client-batch": "^3.535.0",
30
+ "@aws-sdk/client-cloudwatch-logs": "^3.535.0",
31
+ "@aws-sdk/client-s3": "^3.535.0",
32
+ "@aws-sdk/client-secrets-manager": "^3.535.0",
33
+ "@aws-sdk/client-ses": "^3.535.0",
34
+ "@aws-sdk/s3-request-presigner": "^3.535.0",
34
35
  "@babel/core": "^7.21.0",
35
36
  "@faker-js/faker": "^8.1.0",
36
37
  "@nestjs-plus/discovery": "^2.0.2",
@@ -88,11 +89,12 @@
88
89
  "winston": "^3.11.0"
89
90
  },
90
91
  "peerDependencies": {
91
- "@aws-sdk/client-batch": "^3.525.0",
92
- "@aws-sdk/client-s3": "^3.525.0",
93
- "@aws-sdk/client-secrets-manager": "^3.525.0",
94
- "@aws-sdk/client-ses": "^3.525.0",
95
- "@aws-sdk/s3-request-presigner": "^3.525.0",
92
+ "@aws-sdk/client-batch": "^3.535.0",
93
+ "@aws-sdk/client-cloudwatch-logs": "^3.535.0",
94
+ "@aws-sdk/client-s3": "^3.535.0",
95
+ "@aws-sdk/client-secrets-manager": "^3.535.0",
96
+ "@aws-sdk/client-ses": "^3.535.0",
97
+ "@aws-sdk/s3-request-presigner": "^3.535.0",
96
98
  "@nestjs-plus/discovery": "^2.0.2",
97
99
  "@nestjs/common": "^10.3.3",
98
100
  "@nestjs/core": "^10.3.3",