@punks/backend-entity-manager 0.0.298 → 0.0.300

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.
@@ -3,9 +3,10 @@ export type AwsJobComputePlatformType = "ec2" | "fargate";
3
3
  export type AwsBatchInfrastructureParams = {
4
4
  vcpu: number;
5
5
  memory: number;
6
- gpuMemory?: number;
6
+ gpu?: number;
7
7
  dockerImage: string;
8
8
  computePlatformType?: AwsJobComputePlatformType;
9
+ assignPublicIp?: boolean;
9
10
  };
10
11
  export type AwsBatchInvocationParams = {
11
12
  startCommand: string[];
package/dist/index.d.ts CHANGED
@@ -2853,9 +2853,10 @@ type AwsJobComputePlatformType = "ec2" | "fargate";
2853
2853
  type AwsBatchInfrastructureParams = {
2854
2854
  vcpu: number;
2855
2855
  memory: number;
2856
- gpuMemory?: number;
2856
+ gpu?: number;
2857
2857
  dockerImage: string;
2858
2858
  computePlatformType?: AwsJobComputePlatformType;
2859
+ assignPublicIp?: boolean;
2859
2860
  };
2860
2861
  type AwsBatchInvocationParams = {
2861
2862
  startCommand: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@punks/backend-entity-manager",
3
- "version": "0.0.298",
3
+ "version": "0.0.300",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",