@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.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/models/index.d.ts +2 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/plugins/jobs/aws-batch/models/index.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -3,9 +3,10 @@ export type AwsJobComputePlatformType = "ec2" | "fargate";
|
|
|
3
3
|
export type AwsBatchInfrastructureParams = {
|
|
4
4
|
vcpu: number;
|
|
5
5
|
memory: number;
|
|
6
|
-
|
|
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
|
-
|
|
2856
|
+
gpu?: number;
|
|
2857
2857
|
dockerImage: string;
|
|
2858
2858
|
computePlatformType?: AwsJobComputePlatformType;
|
|
2859
|
+
assignPublicIp?: boolean;
|
|
2859
2860
|
};
|
|
2860
2861
|
type AwsBatchInvocationParams = {
|
|
2861
2862
|
startCommand: string[];
|