@ludeo/cloud-common 1.2.33-beta-yahil-4 → 1.2.33-beta-yahil-6
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.
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { BaseCloudResource } from "./base";
|
|
2
|
+
export declare class LudeoResourceSettings {
|
|
3
|
+
gameplayId: string;
|
|
4
|
+
}
|
|
2
5
|
export declare class LudeoCloudResource extends BaseCloudResource {
|
|
3
6
|
gameResourceId?: string;
|
|
4
7
|
gamePoolId?: string;
|
|
5
|
-
settings
|
|
6
|
-
}
|
|
7
|
-
export declare class LudeoResourceSettings {
|
|
8
|
-
gameplayId: string;
|
|
8
|
+
settings?: LudeoResourceSettings;
|
|
9
9
|
}
|
|
@@ -9,9 +9,16 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
12
|
+
exports.LudeoCloudResource = exports.LudeoResourceSettings = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
const base_1 = require("./base");
|
|
15
|
+
class LudeoResourceSettings {
|
|
16
|
+
}
|
|
17
|
+
exports.LudeoResourceSettings = LudeoResourceSettings;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsUUID)(),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], LudeoResourceSettings.prototype, "gameplayId", void 0);
|
|
15
22
|
class LudeoCloudResource extends base_1.BaseCloudResource {
|
|
16
23
|
}
|
|
17
24
|
exports.LudeoCloudResource = LudeoCloudResource;
|
|
@@ -29,11 +36,4 @@ __decorate([
|
|
|
29
36
|
(0, class_validator_1.IsOptional)(),
|
|
30
37
|
__metadata("design:type", LudeoResourceSettings)
|
|
31
38
|
], LudeoCloudResource.prototype, "settings", void 0);
|
|
32
|
-
class LudeoResourceSettings {
|
|
33
|
-
}
|
|
34
|
-
exports.LudeoResourceSettings = LudeoResourceSettings;
|
|
35
|
-
__decorate([
|
|
36
|
-
(0, class_validator_1.IsUUID)(),
|
|
37
|
-
__metadata("design:type", String)
|
|
38
|
-
], LudeoResourceSettings.prototype, "gameplayId", void 0);
|
|
39
39
|
//# sourceMappingURL=ludeo.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ludeo.js","sourceRoot":"","sources":["../../../../../src/v4/types/pools/resource/ludeo.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+D;AAE/D,iCAA2C;AAE3C,MAAa,kBAAmB,SAAQ,wBAAiB;CAWxD;AAXD,gDAWC;AARC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;0DACW;AAIxB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACO;AAGpB;IADC,IAAA,4BAAU,GAAE;
|
|
1
|
+
{"version":3,"file":"ludeo.js","sourceRoot":"","sources":["../../../../../src/v4/types/pools/resource/ludeo.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+D;AAE/D,iCAA2C;AAE3C,MAAa,qBAAqB;CAGjC;AAHD,sDAGC;AADC;IADC,IAAA,wBAAM,GAAE;;yDACU;AAGrB,MAAa,kBAAmB,SAAQ,wBAAiB;CAWxD;AAXD,gDAWC;AARC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;0DACW;AAIxB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACO;AAGpB;IADC,IAAA,4BAAU,GAAE;8BACF,qBAAqB;oDAAC"}
|
package/package.json
CHANGED
|
@@ -2,6 +2,11 @@ import { IsOptional, IsString, IsUUID } from "class-validator";
|
|
|
2
2
|
|
|
3
3
|
import { BaseCloudResource } from "./base";
|
|
4
4
|
|
|
5
|
+
export class LudeoResourceSettings {
|
|
6
|
+
@IsUUID()
|
|
7
|
+
gameplayId: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
5
10
|
export class LudeoCloudResource extends BaseCloudResource {
|
|
6
11
|
@IsString()
|
|
7
12
|
@IsOptional()
|
|
@@ -12,10 +17,5 @@ export class LudeoCloudResource extends BaseCloudResource {
|
|
|
12
17
|
gamePoolId?: string;
|
|
13
18
|
|
|
14
19
|
@IsOptional()
|
|
15
|
-
settings
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export class LudeoResourceSettings {
|
|
19
|
-
@IsUUID()
|
|
20
|
-
gameplayId: string;
|
|
20
|
+
settings?: LudeoResourceSettings;
|
|
21
21
|
}
|