@ludeo/cloud-common 1.2.167-beta-yahil-5 → 1.2.167-beta-yahil-7

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.
@@ -2,7 +2,7 @@ import { LudeoCastSite } from "./site";
2
2
  export declare class LudeoCastProviderSettings {
3
3
  site: LudeoCastSite;
4
4
  namespace: string;
5
- region: string;
5
+ region?: string;
6
6
  executableLaunchPath?: string;
7
7
  additionalEnvironmentVariables?: Record<string, string>;
8
8
  }
@@ -1,4 +1,5 @@
1
1
  import { BasePoolAttributes } from "./base";
2
2
  export declare class MachinePoolAttributes extends BasePoolAttributes {
3
3
  machineClass: string;
4
+ namespace?: string;
4
5
  }
@@ -19,4 +19,9 @@ __decorate([
19
19
  (0, class_validator_1.IsString)(),
20
20
  __metadata("design:type", String)
21
21
  ], MachinePoolAttributes.prototype, "machineClass", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsOptional)(),
24
+ (0, class_validator_1.IsString)(),
25
+ __metadata("design:type", String)
26
+ ], MachinePoolAttributes.prototype, "namespace", void 0);
22
27
  //# sourceMappingURL=machine.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"machine.js","sourceRoot":"","sources":["../../../../../../src/v4/types/pools/configuration/attributes/machine.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2C;AAE3C,iCAA4C;AAE5C,MAAa,qBAAsB,SAAQ,yBAAkB;CAG5D;AAHD,sDAGC;AADC;IADC,IAAA,0BAAQ,GAAE;;2DACU"}
1
+ {"version":3,"file":"machine.js","sourceRoot":"","sources":["../../../../../../src/v4/types/pools/configuration/attributes/machine.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AAEvD,iCAA4C;AAE5C,MAAa,qBAAsB,SAAQ,yBAAkB;CAO5D;AAPD,sDAOC;AALC;IADC,IAAA,0BAAQ,GAAE;;2DACU;AAIrB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;wDACQ"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludeo/cloud-common",
3
- "version": "1.2.167-beta-yahil-5",
3
+ "version": "1.2.167-beta-yahil-7",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Yahil Didi",
@@ -5,7 +5,7 @@ export class LudeoCastProviderSettings {
5
5
 
6
6
  namespace: string;
7
7
 
8
- region: string;
8
+ region?: string;
9
9
 
10
10
  executableLaunchPath?: string;
11
11
 
@@ -1,8 +1,12 @@
1
- import { IsString } from "class-validator";
1
+ import { IsOptional, IsString } from "class-validator";
2
2
 
3
3
  import { BasePoolAttributes } from "./base";
4
4
 
5
5
  export class MachinePoolAttributes extends BasePoolAttributes {
6
6
  @IsString()
7
7
  machineClass: string;
8
+
9
+ @IsOptional()
10
+ @IsString()
11
+ namespace?: string;
8
12
  }