@ludeo/cloud-common 1.2.104 → 1.2.106

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.
@@ -27,7 +27,7 @@ export declare class BuildMetadata {
27
27
  }
28
28
  export declare class AwsArtifactData {
29
29
  basePath: string;
30
- executeableLaunchPath: string;
30
+ executableLaunchPath: string;
31
31
  runtimeEnvironmentConfigurationMap: RuntimeEnvironmentConfigurationMap;
32
32
  applicationName: string;
33
33
  applicationIdentifier?: string;
@@ -1,4 +1,5 @@
1
1
  import { MachinePoolAttributes } from "./machine";
2
2
  export declare class GamePoolAttributes extends MachinePoolAttributes {
3
3
  gameId: string;
4
+ machinePoolId?: string;
4
5
  }
@@ -19,4 +19,9 @@ __decorate([
19
19
  (0, class_validator_1.IsString)(),
20
20
  __metadata("design:type", String)
21
21
  ], GamePoolAttributes.prototype, "gameId", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsOptional)(),
24
+ (0, class_validator_1.IsString)(),
25
+ __metadata("design:type", String)
26
+ ], GamePoolAttributes.prototype, "machinePoolId", void 0);
22
27
  //# sourceMappingURL=game.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"game.js","sourceRoot":"","sources":["../../../../../../src/v4/types/pools/configuration/attributes/game.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2C;AAC3C,uCAAkD;AAElD,MAAa,kBAAmB,SAAQ,+BAAqB;CAG5D;AAHD,gDAGC;AADC;IADC,IAAA,0BAAQ,GAAE;;kDACI"}
1
+ {"version":3,"file":"game.js","sourceRoot":"","sources":["../../../../../../src/v4/types/pools/configuration/attributes/game.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AACvD,uCAAkD;AAElD,MAAa,kBAAmB,SAAQ,+BAAqB;CAO5D;AAPD,gDAOC;AALC;IADC,IAAA,0BAAQ,GAAE;;kDACI;AAIf;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;yDACY"}
@@ -1,4 +1,5 @@
1
1
  import { GamePoolAttributes } from "./game";
2
2
  export declare class LudeoPoolAttributes extends GamePoolAttributes {
3
3
  ludeoId?: string;
4
+ gamePoolId?: string;
4
5
  }
@@ -20,4 +20,9 @@ __decorate([
20
20
  (0, class_validator_1.IsString)(),
21
21
  __metadata("design:type", String)
22
22
  ], LudeoPoolAttributes.prototype, "ludeoId", void 0);
23
+ __decorate([
24
+ (0, class_validator_1.IsOptional)(),
25
+ (0, class_validator_1.IsString)(),
26
+ __metadata("design:type", String)
27
+ ], LudeoPoolAttributes.prototype, "gamePoolId", void 0);
23
28
  //# sourceMappingURL=ludeo.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ludeo.js","sourceRoot":"","sources":["../../../../../../src/v4/types/pools/configuration/attributes/ludeo.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AACvD,iCAA4C;AAE5C,MAAa,mBAAoB,SAAQ,yBAAkB;CAI1D;AAJD,kDAIC;AADC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;oDACM"}
1
+ {"version":3,"file":"ludeo.js","sourceRoot":"","sources":["../../../../../../src/v4/types/pools/configuration/attributes/ludeo.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AACvD,iCAA4C;AAE5C,MAAa,mBAAoB,SAAQ,yBAAkB;CAQ1D;AARD,kDAQC;AALC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;oDACM;AAIjB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;uDACS"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludeo/cloud-common",
3
- "version": "1.2.104",
3
+ "version": "1.2.106",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Yahil Didi",
@@ -47,7 +47,7 @@ export class BuildMetadata {
47
47
 
48
48
  export class AwsArtifactData {
49
49
  basePath: string;
50
- executeableLaunchPath: string;
50
+ executableLaunchPath: string;
51
51
  runtimeEnvironmentConfigurationMap: RuntimeEnvironmentConfigurationMap;
52
52
  applicationName: string;
53
53
  applicationIdentifier?: string;
@@ -1,7 +1,11 @@
1
- import { IsString } from "class-validator";
1
+ import { IsOptional, IsString } from "class-validator";
2
2
  import { MachinePoolAttributes } from "./machine";
3
3
 
4
4
  export class GamePoolAttributes extends MachinePoolAttributes {
5
5
  @IsString()
6
6
  gameId: string;
7
+
8
+ @IsOptional()
9
+ @IsString()
10
+ machinePoolId?: string;
7
11
  }
@@ -5,4 +5,8 @@ export class LudeoPoolAttributes extends GamePoolAttributes {
5
5
  @IsOptional()
6
6
  @IsString()
7
7
  ludeoId?: string;
8
+
9
+ @IsOptional()
10
+ @IsString()
11
+ gamePoolId?: string;
8
12
  }