@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
package/dist/cjs/index.js
CHANGED
|
@@ -40101,16 +40101,16 @@ let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
|
|
|
40101
40101
|
type: clientBatch.ResourceType.VCPU,
|
|
40102
40102
|
value: definition.infrastructureParams.vcpu.toString(),
|
|
40103
40103
|
},
|
|
40104
|
-
...(definition.infrastructureParams.
|
|
40104
|
+
...(definition.infrastructureParams.gpu
|
|
40105
40105
|
? [
|
|
40106
40106
|
{
|
|
40107
40107
|
type: clientBatch.ResourceType.GPU,
|
|
40108
|
-
value: definition.infrastructureParams.
|
|
40108
|
+
value: definition.infrastructureParams.gpu.toString(),
|
|
40109
40109
|
},
|
|
40110
40110
|
]
|
|
40111
40111
|
: []),
|
|
40112
40112
|
],
|
|
40113
|
-
networkConfiguration: definition.infrastructureParams.
|
|
40113
|
+
networkConfiguration: definition.infrastructureParams.assignPublicIp
|
|
40114
40114
|
? {
|
|
40115
40115
|
assignPublicIp: clientBatch.AssignPublicIp.ENABLED,
|
|
40116
40116
|
}
|