@ludeo/cloud-common 1.1.13 → 1.1.15

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.
Files changed (37) hide show
  1. package/dist/tsconfig.tsbuildinfo +1 -1
  2. package/dist/v3/contexts/getCloudContextType.d.ts +1 -1
  3. package/dist/v3/events/game-allocated-response.d.ts +14 -0
  4. package/dist/v3/events/game-allocated-response.js +50 -0
  5. package/dist/v3/events/game-allocated-response.js.map +1 -0
  6. package/dist/v3/events/game-created-response.d.ts +15 -0
  7. package/dist/v3/events/game-created-response.js +54 -0
  8. package/dist/v3/events/game-created-response.js.map +1 -0
  9. package/dist/v3/events/game-terminated-response.d.ts +12 -0
  10. package/dist/v3/events/{prepare-cloud-machine-auth.js → game-terminated-response.js} +17 -21
  11. package/dist/v3/events/game-terminated-response.js.map +1 -0
  12. package/dist/v3/events/index.d.ts +0 -1
  13. package/dist/v3/events/index.js +0 -1
  14. package/dist/v3/events/index.js.map +1 -1
  15. package/dist/v3/events/machine-created-response.d.ts +12 -0
  16. package/dist/v3/events/machine-created-response.js +45 -0
  17. package/dist/v3/events/machine-created-response.js.map +1 -0
  18. package/package.json +1 -1
  19. package/src/v3/events/allocate-game-request.ts +1 -1
  20. package/src/v3/events/allocate-game-resource-request.ts +1 -1
  21. package/src/v3/events/create-games-request.ts +4 -4
  22. package/src/v3/events/create-machines-request.ts +7 -4
  23. package/src/v3/events/deallocate-machine-request.ts +2 -3
  24. package/src/v3/events/index.ts +2 -0
  25. package/src/v3/events/machine-deallocated-response.ts +1 -1
  26. package/src/v3/events/machine-deallocation-failed-response.ts +1 -1
  27. package/src/v3/events/prepare-cloud-machine-auth-failed.ts +29 -0
  28. package/src/v3/events/set-pool.event.ts +4 -4
  29. package/src/v3/events/swap-cloud-user-request-failed.ts +1 -1
  30. package/src/v3/events/swap-cloud-user-request.ts +1 -1
  31. package/src/v3/events/terminate-games-request.ts +7 -4
  32. package/src/v3/events/terminate-machines-request.ts +7 -4
  33. package/dist/v3/events/prepare-cloud-machine-auth.d.ts +0 -13
  34. package/dist/v3/events/prepare-cloud-machine-auth.js.map +0 -1
  35. package/dist/v3/events/token-required.event.d.ts +0 -24
  36. package/dist/v3/events/token-required.event.js +0 -82
  37. package/dist/v3/events/token-required.event.js.map +0 -1
@@ -1,4 +1,4 @@
1
1
  import { TypeHelpOptions } from "class-transformer";
2
2
  import { CloudPoolContext } from "./cloud-pool-context";
3
3
  import { CloudSessionContext } from "./cloud-session-context";
4
- export declare const getCloudContextType: ({ object }: TypeHelpOptions) => typeof CloudSessionContext | typeof CloudPoolContext;
4
+ export declare const getCloudContextType: ({ object }: TypeHelpOptions) => typeof CloudPoolContext | typeof CloudSessionContext;
@@ -0,0 +1,14 @@
1
+ import { CloudResourceContext } from "../contexts";
2
+ import { LudeoEvent } from "../../infra/ludeo-event";
3
+ import { CloudProviderAllocationData } from "../types";
4
+ export declare class GameAllocatedResponsePayload {
5
+ gameResourceId: string;
6
+ gamePoolId: string;
7
+ allocationData: CloudProviderAllocationData;
8
+ }
9
+ export declare class GameAllocatedResponse extends LudeoEvent {
10
+ static readonly EVENT_NAME = "cloud-resources.game-allocated-response";
11
+ constructor(payload: GameAllocatedResponsePayload, context: CloudResourceContext);
12
+ context: CloudResourceContext;
13
+ payload: GameAllocatedResponsePayload;
14
+ }
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.GameAllocatedResponse = exports.GameAllocatedResponsePayload = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const contexts_1 = require("../contexts");
15
+ const ludeo_event_1 = require("../../infra/ludeo-event");
16
+ const validate_nested_type_decorator_1 = require("../../decorators/validate-nested-type.decorator");
17
+ const types_1 = require("../types");
18
+ class GameAllocatedResponsePayload {
19
+ }
20
+ exports.GameAllocatedResponsePayload = GameAllocatedResponsePayload;
21
+ __decorate([
22
+ (0, class_validator_1.IsUUID)(),
23
+ __metadata("design:type", String)
24
+ ], GameAllocatedResponsePayload.prototype, "gameResourceId", void 0);
25
+ __decorate([
26
+ (0, class_validator_1.IsUUID)(),
27
+ __metadata("design:type", String)
28
+ ], GameAllocatedResponsePayload.prototype, "gamePoolId", void 0);
29
+ __decorate([
30
+ (0, validate_nested_type_decorator_1.ValidateNestedType)(() => types_1.AwsAllocationData),
31
+ __metadata("design:type", Object)
32
+ ], GameAllocatedResponsePayload.prototype, "allocationData", void 0);
33
+ class GameAllocatedResponse extends ludeo_event_1.LudeoEvent {
34
+ constructor(payload, context) {
35
+ super(GameAllocatedResponse.EVENT_NAME);
36
+ this.payload = payload;
37
+ this.context = context;
38
+ }
39
+ }
40
+ exports.GameAllocatedResponse = GameAllocatedResponse;
41
+ GameAllocatedResponse.EVENT_NAME = "cloud-resources.game-allocated-response";
42
+ __decorate([
43
+ (0, validate_nested_type_decorator_1.ValidateNestedType)(() => contexts_1.CloudResourceContext),
44
+ __metadata("design:type", contexts_1.CloudResourceContext)
45
+ ], GameAllocatedResponse.prototype, "context", void 0);
46
+ __decorate([
47
+ (0, validate_nested_type_decorator_1.ValidateNestedType)(() => GameAllocatedResponsePayload),
48
+ __metadata("design:type", GameAllocatedResponsePayload)
49
+ ], GameAllocatedResponse.prototype, "payload", void 0);
50
+ //# sourceMappingURL=game-allocated-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"game-allocated-response.js","sourceRoot":"","sources":["../../../src/v3/events/game-allocated-response.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAyC;AAEzC,0CAAmD;AACnD,yDAAqD;AACrD,oGAAqF;AACrF,oCAA0E;AAE1E,MAAa,4BAA4B;CASxC;AATD,oEASC;AAPC;IADC,IAAA,wBAAM,GAAE;;oEACc;AAGvB;IADC,IAAA,wBAAM,GAAE;;gEACU;AAGnB;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,yBAAiB,CAAC;;oEACA;AAG9C,MAAa,qBAAsB,SAAQ,wBAAU;IAGnD,YACE,OAAqC,EACrC,OAA6B;QAE7B,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,CAAC;QACxC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAVH,sDAiBC;AAhBiB,gCAAU,GAAG,yCAAyC,CAAC;AAYvE;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,+BAAoB,CAAC;8BACtC,+BAAoB;sDAAC;AAG9B;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,4BAA4B,CAAC;8BAC9C,4BAA4B;sDAAC"}
@@ -0,0 +1,15 @@
1
+ import { CloudResourceContext } from "../contexts";
2
+ import { LudeoEvent } from "../../infra/ludeo-event";
3
+ import { CloudProviderSettings, CloudProvider } from "../types";
4
+ export declare class GameCreatedResponsePayload {
5
+ gameResourceId: string;
6
+ gamePoolId: string;
7
+ providerSettings: CloudProviderSettings;
8
+ cloudProvider: CloudProvider;
9
+ }
10
+ export declare class GameCreatedResponse extends LudeoEvent {
11
+ static readonly EVENT_NAME = "cloud-resources.game-created-response";
12
+ constructor(payload: GameCreatedResponsePayload, context: CloudResourceContext);
13
+ context: CloudResourceContext;
14
+ payload: GameCreatedResponsePayload;
15
+ }
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.GameCreatedResponse = exports.GameCreatedResponsePayload = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const contexts_1 = require("../contexts");
15
+ const ludeo_event_1 = require("../../infra/ludeo-event");
16
+ const validate_nested_type_decorator_1 = require("../../decorators/validate-nested-type.decorator");
17
+ const types_1 = require("../types");
18
+ class GameCreatedResponsePayload {
19
+ }
20
+ exports.GameCreatedResponsePayload = GameCreatedResponsePayload;
21
+ __decorate([
22
+ (0, class_validator_1.IsUUID)(),
23
+ __metadata("design:type", String)
24
+ ], GameCreatedResponsePayload.prototype, "gameResourceId", void 0);
25
+ __decorate([
26
+ (0, class_validator_1.IsUUID)(),
27
+ __metadata("design:type", String)
28
+ ], GameCreatedResponsePayload.prototype, "gamePoolId", void 0);
29
+ __decorate([
30
+ (0, validate_nested_type_decorator_1.ValidateNestedType)(() => types_1.AWSProviderSettings),
31
+ __metadata("design:type", Object)
32
+ ], GameCreatedResponsePayload.prototype, "providerSettings", void 0);
33
+ __decorate([
34
+ (0, class_validator_1.IsEnum)(types_1.CloudProvider),
35
+ __metadata("design:type", String)
36
+ ], GameCreatedResponsePayload.prototype, "cloudProvider", void 0);
37
+ class GameCreatedResponse extends ludeo_event_1.LudeoEvent {
38
+ constructor(payload, context) {
39
+ super(GameCreatedResponse.EVENT_NAME);
40
+ this.payload = payload;
41
+ this.context = context;
42
+ }
43
+ }
44
+ exports.GameCreatedResponse = GameCreatedResponse;
45
+ GameCreatedResponse.EVENT_NAME = "cloud-resources.game-created-response";
46
+ __decorate([
47
+ (0, validate_nested_type_decorator_1.ValidateNestedType)(() => contexts_1.CloudResourceContext),
48
+ __metadata("design:type", contexts_1.CloudResourceContext)
49
+ ], GameCreatedResponse.prototype, "context", void 0);
50
+ __decorate([
51
+ (0, validate_nested_type_decorator_1.ValidateNestedType)(() => GameCreatedResponsePayload),
52
+ __metadata("design:type", GameCreatedResponsePayload)
53
+ ], GameCreatedResponse.prototype, "payload", void 0);
54
+ //# sourceMappingURL=game-created-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"game-created-response.js","sourceRoot":"","sources":["../../../src/v3/events/game-created-response.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAiD;AAEjD,0CAAmD;AACnD,yDAAqD;AACrD,oGAAqF;AACrF,oCAIkB;AAElB,MAAa,0BAA0B;CAYtC;AAZD,gEAYC;AAVC;IADC,IAAA,wBAAM,GAAE;;kEACc;AAGvB;IADC,IAAA,wBAAM,GAAE;;8DACU;AAGnB;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,2BAAmB,CAAC;;oEACN;AAGxC;IADC,IAAA,wBAAM,EAAC,qBAAa,CAAC;;iEACO;AAG/B,MAAa,mBAAoB,SAAQ,wBAAU;IAGjD,YACE,OAAmC,EACnC,OAA6B;QAE7B,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,CAAC;QACtC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAVH,kDAiBC;AAhBiB,8BAAU,GAAG,uCAAuC,CAAC;AAYrE;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,+BAAoB,CAAC;8BACtC,+BAAoB;oDAAC;AAG9B;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,0BAA0B,CAAC;8BAC5C,0BAA0B;oDAAC"}
@@ -0,0 +1,12 @@
1
+ import { CloudResourceContext } from "../contexts";
2
+ import { LudeoEvent } from "../../infra/ludeo-event";
3
+ export declare class GameTerminatedResponsePayload {
4
+ gameResourceId: string;
5
+ gamePoolId: string;
6
+ }
7
+ export declare class GameTerminatedResponse extends LudeoEvent {
8
+ static readonly EVENT_NAME = "cloud-resources.game-terminated-response";
9
+ constructor(payload: GameTerminatedResponsePayload, context: CloudResourceContext);
10
+ context: CloudResourceContext;
11
+ payload: GameTerminatedResponsePayload;
12
+ }
@@ -9,41 +9,37 @@ 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.PrepareCloudMachineAuth = exports.PrepareCloudMachineAuthPayload = void 0;
12
+ exports.GameTerminatedResponse = exports.GameTerminatedResponsePayload = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
- const validate_nested_type_decorator_1 = require("../../decorators/validate-nested-type.decorator");
15
- const infra_1 = require("../../infra");
16
14
  const contexts_1 = require("../contexts");
17
- class PrepareCloudMachineAuthPayload {
15
+ const ludeo_event_1 = require("../../infra/ludeo-event");
16
+ const validate_nested_type_decorator_1 = require("../../decorators/validate-nested-type.decorator");
17
+ class GameTerminatedResponsePayload {
18
18
  }
19
- exports.PrepareCloudMachineAuthPayload = PrepareCloudMachineAuthPayload;
19
+ exports.GameTerminatedResponsePayload = GameTerminatedResponsePayload;
20
20
  __decorate([
21
21
  (0, class_validator_1.IsUUID)(),
22
22
  __metadata("design:type", String)
23
- ], PrepareCloudMachineAuthPayload.prototype, "cloudUserId", void 0);
23
+ ], GameTerminatedResponsePayload.prototype, "gameResourceId", void 0);
24
24
  __decorate([
25
25
  (0, class_validator_1.IsUUID)(),
26
26
  __metadata("design:type", String)
27
- ], PrepareCloudMachineAuthPayload.prototype, "authTokenId", void 0);
28
- __decorate([
29
- (0, class_validator_1.IsUUID)(),
30
- __metadata("design:type", String)
31
- ], PrepareCloudMachineAuthPayload.prototype, "resourceId", void 0);
32
- class PrepareCloudMachineAuth extends infra_1.LudeoEvent {
27
+ ], GameTerminatedResponsePayload.prototype, "gamePoolId", void 0);
28
+ class GameTerminatedResponse extends ludeo_event_1.LudeoEvent {
33
29
  constructor(payload, context) {
34
- super(PrepareCloudMachineAuth.EVENT_NAME);
30
+ super(GameTerminatedResponse.EVENT_NAME);
35
31
  this.payload = payload;
36
32
  this.context = context;
37
33
  }
38
34
  }
39
- exports.PrepareCloudMachineAuth = PrepareCloudMachineAuth;
40
- PrepareCloudMachineAuth.EVENT_NAME = "cloud-pools.prepare-cloud-machine-auth";
41
- __decorate([
42
- (0, validate_nested_type_decorator_1.ValidateNestedType)(() => PrepareCloudMachineAuthPayload),
43
- __metadata("design:type", PrepareCloudMachineAuthPayload)
44
- ], PrepareCloudMachineAuth.prototype, "payload", void 0);
35
+ exports.GameTerminatedResponse = GameTerminatedResponse;
36
+ GameTerminatedResponse.EVENT_NAME = "cloud-resources.game-terminated-response";
45
37
  __decorate([
46
38
  (0, validate_nested_type_decorator_1.ValidateNestedType)(() => contexts_1.CloudResourceContext),
47
39
  __metadata("design:type", contexts_1.CloudResourceContext)
48
- ], PrepareCloudMachineAuth.prototype, "context", void 0);
49
- //# sourceMappingURL=prepare-cloud-machine-auth.js.map
40
+ ], GameTerminatedResponse.prototype, "context", void 0);
41
+ __decorate([
42
+ (0, validate_nested_type_decorator_1.ValidateNestedType)(() => GameTerminatedResponsePayload),
43
+ __metadata("design:type", GameTerminatedResponsePayload)
44
+ ], GameTerminatedResponse.prototype, "payload", void 0);
45
+ //# sourceMappingURL=game-terminated-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"game-terminated-response.js","sourceRoot":"","sources":["../../../src/v3/events/game-terminated-response.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAyC;AAEzC,0CAAmD;AACnD,yDAAqD;AACrD,oGAAqF;AAErF,MAAa,6BAA6B;CAMzC;AAND,sEAMC;AAJC;IADC,IAAA,wBAAM,GAAE;;qEACc;AAGvB;IADC,IAAA,wBAAM,GAAE;;iEACU;AAGrB,MAAa,sBAAuB,SAAQ,wBAAU;IAGpD,YACE,OAAsC,EACtC,OAA6B;QAE7B,KAAK,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC;QACzC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAVH,wDAiBC;AAhBiB,iCAAU,GAAG,0CAA0C,CAAC;AAYxE;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,+BAAoB,CAAC;8BACtC,+BAAoB;uDAAC;AAG9B;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,6BAA6B,CAAC;8BAC/C,6BAA6B;uDAAC"}
@@ -25,4 +25,3 @@ export * from "./terminate-machine-resource-batch-request";
25
25
  export * from "./terminate-machines-request";
26
26
  export * from "./swap-cloud-user-request";
27
27
  export * from "./swap-cloud-user-request-failed";
28
- export * from "./prepare-cloud-machine-auth";
@@ -41,5 +41,4 @@ __exportStar(require("./terminate-machine-resource-batch-request"), exports);
41
41
  __exportStar(require("./terminate-machines-request"), exports);
42
42
  __exportStar(require("./swap-cloud-user-request"), exports);
43
43
  __exportStar(require("./swap-cloud-user-request-failed"), exports);
44
- __exportStar(require("./prepare-cloud-machine-auth"), exports);
45
44
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/v3/events/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AACxC,mEAAiD;AACjD,6DAA2C;AAC3C,iEAA+C;AAC/C,yDAAuC;AACvC,0EAAwD;AACxD,4DAA0C;AAC1C,+DAA6C;AAC7C,qEAAmD;AACnD,6EAA2D;AAC3D,mEAAiD;AACjD,2EAAyD;AACzD,sEAAoD;AACpD,8EAA4D;AAC5D,+DAA6C;AAC7C,uEAAqD;AACrD,iEAA+C;AAC/C,yEAAuD;AACvD,sEAAoD;AACpD,8EAA4D;AAC5D,mDAAiC;AACjC,oEAAkD;AAClD,4DAA0C;AAC1C,6EAA2D;AAC3D,+DAA6C;AAC7C,4DAA0C;AAC1C,mEAAiD;AACjD,+DAA6C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/v3/events/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AACxC,mEAAiD;AACjD,6DAA2C;AAC3C,iEAA+C;AAC/C,yDAAuC;AACvC,0EAAwD;AACxD,4DAA0C;AAC1C,+DAA6C;AAC7C,qEAAmD;AACnD,6EAA2D;AAC3D,mEAAiD;AACjD,2EAAyD;AACzD,sEAAoD;AACpD,8EAA4D;AAC5D,+DAA6C;AAC7C,uEAAqD;AACrD,iEAA+C;AAC/C,yEAAuD;AACvD,sEAAoD;AACpD,8EAA4D;AAC5D,mDAAiC;AACjC,oEAAkD;AAClD,4DAA0C;AAC1C,6EAA2D;AAC3D,+DAA6C;AAC7C,4DAA0C;AAC1C,mEAAiD"}
@@ -0,0 +1,12 @@
1
+ import { CloudResourceContext } from "../contexts";
2
+ import { LudeoEvent } from "../../infra/ludeo-event";
3
+ export declare class MachineCreatedResponsePayload {
4
+ machineResourceId: string;
5
+ machinePoolId: string;
6
+ }
7
+ export declare class MachineCreatedResponse extends LudeoEvent {
8
+ static readonly EVENT_NAME = "cloud-resources.machine-created-response";
9
+ constructor(payload: MachineCreatedResponsePayload, context: CloudResourceContext);
10
+ context: CloudResourceContext;
11
+ payload: MachineCreatedResponsePayload;
12
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.MachineCreatedResponse = exports.MachineCreatedResponsePayload = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const contexts_1 = require("../contexts");
15
+ const ludeo_event_1 = require("../../infra/ludeo-event");
16
+ const validate_nested_type_decorator_1 = require("../../decorators/validate-nested-type.decorator");
17
+ class MachineCreatedResponsePayload {
18
+ }
19
+ exports.MachineCreatedResponsePayload = MachineCreatedResponsePayload;
20
+ __decorate([
21
+ (0, class_validator_1.IsUUID)(),
22
+ __metadata("design:type", String)
23
+ ], MachineCreatedResponsePayload.prototype, "machineResourceId", void 0);
24
+ __decorate([
25
+ (0, class_validator_1.IsUUID)(),
26
+ __metadata("design:type", String)
27
+ ], MachineCreatedResponsePayload.prototype, "machinePoolId", void 0);
28
+ class MachineCreatedResponse extends ludeo_event_1.LudeoEvent {
29
+ constructor(payload, context) {
30
+ super(MachineCreatedResponse.EVENT_NAME);
31
+ this.payload = payload;
32
+ this.context = context;
33
+ }
34
+ }
35
+ exports.MachineCreatedResponse = MachineCreatedResponse;
36
+ MachineCreatedResponse.EVENT_NAME = "cloud-resources.machine-created-response";
37
+ __decorate([
38
+ (0, validate_nested_type_decorator_1.ValidateNestedType)(() => contexts_1.CloudResourceContext),
39
+ __metadata("design:type", contexts_1.CloudResourceContext)
40
+ ], MachineCreatedResponse.prototype, "context", void 0);
41
+ __decorate([
42
+ (0, validate_nested_type_decorator_1.ValidateNestedType)(() => MachineCreatedResponsePayload),
43
+ __metadata("design:type", MachineCreatedResponsePayload)
44
+ ], MachineCreatedResponse.prototype, "payload", void 0);
45
+ //# sourceMappingURL=machine-created-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"machine-created-response.js","sourceRoot":"","sources":["../../../src/v3/events/machine-created-response.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAyC;AAEzC,0CAAmD;AACnD,yDAAqD;AACrD,oGAAqF;AAErF,MAAa,6BAA6B;CAMzC;AAND,sEAMC;AAJC;IADC,IAAA,wBAAM,GAAE;;wEACiB;AAG1B;IADC,IAAA,wBAAM,GAAE;;oEACa;AAGxB,MAAa,sBAAuB,SAAQ,wBAAU;IAGpD,YACE,OAAsC,EACtC,OAA6B;QAE7B,KAAK,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC;QACzC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAVH,wDAiBC;AAhBiB,iCAAU,GAAG,0CAA0C,CAAC;AAYxE;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,+BAAoB,CAAC;8BACtC,+BAAoB;uDAAC;AAG9B;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,6BAA6B,CAAC;8BAC/C,6BAA6B;uDAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludeo/cloud-common",
3
- "version": "1.1.13",
3
+ "version": "1.1.15",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Yahil Didi",
@@ -2,7 +2,7 @@ import { IsUUID } from "class-validator";
2
2
 
3
3
  import { AllocationRequestData } from "../types";
4
4
  import { LudeoEvent } from "../../infra/ludeo-event";
5
- import { CloudSessionContext } from "../../v2/contexts";
5
+ import { CloudSessionContext } from "../contexts";
6
6
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
7
7
 
8
8
  export class AllocateGameRequestPayload {
@@ -1,7 +1,7 @@
1
1
  import { IsUUID, IsEnum } from "class-validator";
2
2
 
3
3
  import { LudeoEvent } from "../../infra/ludeo-event";
4
- import { CloudSessionContext } from "../../v2/contexts";
4
+ import { CloudSessionContext } from "../contexts";
5
5
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
6
6
  import {
7
7
  AWSProviderSettings,
@@ -1,6 +1,6 @@
1
1
  import { IsNumber, IsUUID } from "class-validator";
2
2
 
3
- import { PoolContext } from "../../v2/contexts";
3
+ import { CloudPoolContext } from "../contexts";
4
4
  import { LudeoEvent } from "../../infra/ludeo-event";
5
5
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
6
6
 
@@ -15,14 +15,14 @@ export class CreateGamesRequestPayload {
15
15
  export class CreateGamesRequest extends LudeoEvent {
16
16
  static readonly EVENT_NAME = "cloud-pools.create-games-request";
17
17
 
18
- constructor(payload: CreateGamesRequestPayload, context: PoolContext) {
18
+ constructor(payload: CreateGamesRequestPayload, context: CloudPoolContext) {
19
19
  super(CreateGamesRequest.EVENT_NAME);
20
20
  this.payload = payload;
21
21
  this.context = context;
22
22
  }
23
23
 
24
- @ValidateNestedType(() => PoolContext)
25
- context: PoolContext;
24
+ @ValidateNestedType(() => CloudPoolContext)
25
+ context: CloudPoolContext;
26
26
 
27
27
  @ValidateNestedType(() => CreateGamesRequestPayload)
28
28
  payload: CreateGamesRequestPayload;
@@ -1,6 +1,6 @@
1
1
  import { IsNumber, IsUUID } from "class-validator";
2
2
 
3
- import { PoolContext } from "../../v2/contexts";
3
+ import { CloudPoolContext } from "../contexts";
4
4
  import { LudeoEvent } from "../../infra/ludeo-event";
5
5
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
6
6
 
@@ -15,14 +15,17 @@ export class CreateMachinesRequestPayload {
15
15
  export class CreateMachinesRequest extends LudeoEvent {
16
16
  static readonly EVENT_NAME = "cloud-pools.create-machines-request";
17
17
 
18
- constructor(payload: CreateMachinesRequestPayload, context: PoolContext) {
18
+ constructor(
19
+ payload: CreateMachinesRequestPayload,
20
+ context: CloudPoolContext
21
+ ) {
19
22
  super(CreateMachinesRequest.EVENT_NAME);
20
23
  this.payload = payload;
21
24
  this.context = context;
22
25
  }
23
26
 
24
- @ValidateNestedType(() => PoolContext)
25
- context: PoolContext;
27
+ @ValidateNestedType(() => CloudPoolContext)
28
+ context: CloudPoolContext;
26
29
 
27
30
  @ValidateNestedType(() => CreateMachinesRequestPayload)
28
31
  payload: CreateMachinesRequestPayload;
@@ -1,9 +1,8 @@
1
- import { Type } from "class-transformer";
2
- import { IsUUID, ValidateNested } from "class-validator";
1
+ import { IsUUID } from "class-validator";
3
2
 
4
3
  import { CloudPoolContext } from "../contexts";
5
4
  import { LudeoEvent } from "../../infra/ludeo-event";
6
- import { CloudSessionContext } from "../../v2/contexts";
5
+ import { CloudSessionContext } from "../contexts";
7
6
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
8
7
  import { getCloudContextType } from "../contexts/getCloudContextType";
9
8
 
@@ -26,3 +26,5 @@ export * from "./terminate-machines-request";
26
26
  export * from "./swap-cloud-user-request";
27
27
  export * from "./swap-cloud-user-request-failed";
28
28
  export * from "./prepare-cloud-machine-auth";
29
+ export * from "./prepare-cloud-machine-auth-failed";
30
+ export * from "./token-required.event";
@@ -1,7 +1,7 @@
1
1
  import { IsUUID } from "class-validator";
2
2
 
3
3
  import { LudeoEvent } from "../../infra/ludeo-event";
4
- import { CloudSessionContext } from "../../v2/contexts";
4
+ import { CloudSessionContext } from "../contexts";
5
5
  import { CloudPoolContext, getCloudContextType } from "../contexts";
6
6
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
7
7
 
@@ -1,7 +1,7 @@
1
1
  import { IsString, IsUUID } from "class-validator";
2
2
 
3
3
  import { LudeoEvent } from "../../infra/ludeo-event";
4
- import { CloudSessionContext } from "../../v2/contexts";
4
+ import { CloudSessionContext } from "../contexts";
5
5
  import { CloudPoolContext, getCloudContextType } from "../contexts";
6
6
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
7
7
 
@@ -0,0 +1,29 @@
1
+ import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
2
+ import { LudeoEvent } from "../../infra";
3
+ import { CloudResourceContext } from "../contexts";
4
+ import { IsOptional, IsString } from "class-validator";
5
+
6
+ export class PrepareCloudMachineAuthFailedPayload {
7
+ @IsString()
8
+ @IsOptional()
9
+ errorMessage: string;
10
+ }
11
+
12
+ export class PrepareCloudMachineAuthFailed extends LudeoEvent {
13
+ static readonly EVENT_NAME = "cloud-pools.prepare-cloud-machine-auth-failed";
14
+
15
+ constructor(
16
+ payload: PrepareCloudMachineAuthFailedPayload,
17
+ context: CloudResourceContext,
18
+ ) {
19
+ super(PrepareCloudMachineAuthFailed.EVENT_NAME);
20
+ this.payload = payload;
21
+ this.context = context;
22
+ }
23
+
24
+ @ValidateNestedType(() => PrepareCloudMachineAuthFailedPayload)
25
+ payload: PrepareCloudMachineAuthFailedPayload;
26
+
27
+ @ValidateNestedType(() => CloudResourceContext)
28
+ context: CloudResourceContext;
29
+ }
@@ -1,4 +1,4 @@
1
- import { PoolContext } from "../../v2/contexts/pool-context";
1
+ import { CloudPoolContext } from "../contexts";
2
2
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
3
3
  import { LudeoEvent } from "../../infra/ludeo-event";
4
4
  import { BaseCloudPoolConfiguration } from "../types";
@@ -8,15 +8,15 @@ export class SetPoolEvent extends LudeoEvent {
8
8
 
9
9
  constructor(
10
10
  payload: Partial<BaseCloudPoolConfiguration>,
11
- context: PoolContext
11
+ context: CloudPoolContext
12
12
  ) {
13
13
  super(SetPoolEvent.EVENT_NAME);
14
14
  this.payload = payload;
15
15
  this.context = context;
16
16
  }
17
17
 
18
- @ValidateNestedType(() => PoolContext)
19
- context: PoolContext;
18
+ @ValidateNestedType(() => CloudPoolContext)
19
+ context: CloudPoolContext;
20
20
 
21
21
  @ValidateNestedType(() => BaseCloudPoolConfiguration)
22
22
  payload: Partial<BaseCloudPoolConfiguration>;
@@ -1,7 +1,7 @@
1
1
  import { IsString, IsUUID } from "class-validator";
2
2
 
3
+ import { CloudSessionContext } from "../contexts";
3
4
  import { LudeoEvent } from "../../infra/ludeo-event";
4
- import { CloudSessionContext } from "../../v2/contexts";
5
5
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
6
6
 
7
7
  export class SwapCloudUserRequestFailedPayload {
@@ -1,7 +1,7 @@
1
1
  import { IsString, IsUUID } from "class-validator";
2
2
 
3
+ import { CloudSessionContext } from "../contexts";
3
4
  import { LudeoEvent } from "../../infra/ludeo-event";
4
- import { CloudSessionContext } from "../../v2/contexts";
5
5
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
6
6
 
7
7
  export class SwapCloudUserRequestPayload {
@@ -1,6 +1,6 @@
1
1
  import { IsNumber, IsUUID } from "class-validator";
2
2
 
3
- import { PoolContext } from "../../v2/contexts";
3
+ import { CloudPoolContext } from "../contexts";
4
4
  import { LudeoEvent } from "../../infra/ludeo-event";
5
5
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
6
6
 
@@ -15,14 +15,17 @@ export class TerminateGamesRequestPayload {
15
15
  export class TerminateGamesRequest extends LudeoEvent {
16
16
  static readonly EVENT_NAME = "cloud-pools.terminate-games-request";
17
17
 
18
- constructor(payload: TerminateGamesRequestPayload, context: PoolContext) {
18
+ constructor(
19
+ payload: TerminateGamesRequestPayload,
20
+ context: CloudPoolContext
21
+ ) {
19
22
  super(TerminateGamesRequest.EVENT_NAME);
20
23
  this.payload = payload;
21
24
  this.context = context;
22
25
  }
23
26
 
24
- @ValidateNestedType(() => PoolContext)
25
- context: PoolContext;
27
+ @ValidateNestedType(() => CloudPoolContext)
28
+ context: CloudPoolContext;
26
29
 
27
30
  @ValidateNestedType(() => TerminateGamesRequestPayload)
28
31
  payload: TerminateGamesRequestPayload;
@@ -1,6 +1,6 @@
1
1
  import { IsNumber, IsUUID } from "class-validator";
2
2
 
3
- import { PoolContext } from "../../v2/contexts";
3
+ import { CloudPoolContext } from "../contexts";
4
4
  import { LudeoEvent } from "../../infra/ludeo-event";
5
5
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
6
6
 
@@ -15,14 +15,17 @@ export class TerminateMachinesRequestPayload {
15
15
  export class TerminateMachinesRequest extends LudeoEvent {
16
16
  static readonly EVENT_NAME = "cloud-pools.terminate-machines-request";
17
17
 
18
- constructor(payload: TerminateMachinesRequestPayload, context: PoolContext) {
18
+ constructor(
19
+ payload: TerminateMachinesRequestPayload,
20
+ context: CloudPoolContext
21
+ ) {
19
22
  super(TerminateMachinesRequest.EVENT_NAME);
20
23
  this.payload = payload;
21
24
  this.context = context;
22
25
  }
23
26
 
24
- @ValidateNestedType(() => PoolContext)
25
- context: PoolContext;
27
+ @ValidateNestedType(() => CloudPoolContext)
28
+ context: CloudPoolContext;
26
29
 
27
30
  @ValidateNestedType(() => TerminateMachinesRequestPayload)
28
31
  payload: TerminateMachinesRequestPayload;
@@ -1,13 +0,0 @@
1
- import { LudeoEvent } from "../../infra";
2
- import { CloudResourceContext } from "../contexts";
3
- export declare class PrepareCloudMachineAuthPayload {
4
- cloudUserId: string;
5
- authTokenId: string;
6
- resourceId: string;
7
- }
8
- export declare class PrepareCloudMachineAuth extends LudeoEvent {
9
- static readonly EVENT_NAME = "cloud-pools.prepare-cloud-machine-auth";
10
- constructor(payload: PrepareCloudMachineAuthPayload, context: CloudResourceContext);
11
- payload: PrepareCloudMachineAuthPayload;
12
- context: CloudResourceContext;
13
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"prepare-cloud-machine-auth.js","sourceRoot":"","sources":["../../../src/v3/events/prepare-cloud-machine-auth.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAyC;AACzC,oGAAqF;AACrF,uCAAyC;AACzC,0CAAmD;AAEnD,MAAa,8BAA8B;CAS1C;AATD,wEASC;AAPC;IADC,IAAA,wBAAM,GAAE;;mEACW;AAGpB;IADC,IAAA,wBAAM,GAAE;;mEACW;AAGpB;IADC,IAAA,wBAAM,GAAE;;kEACU;AAGrB,MAAa,uBAAwB,SAAQ,kBAAU;IAGrD,YACE,OAAuC,EACvC,OAA6B;QAE7B,KAAK,CAAC,uBAAuB,CAAC,UAAU,CAAC,CAAC;QAC1C,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAVH,0DAiBC;AAhBiB,kCAAU,GAAG,wCAAwC,CAAC;AAYtE;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,8BAA8B,CAAC;8BAChD,8BAA8B;wDAAC;AAGxC;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,+BAAoB,CAAC;8BACtC,+BAAoB;wDAAC"}
@@ -1,24 +0,0 @@
1
- import { LudeoEvent } from "../../infra/ludeo-event";
2
- export declare class TokenRequiredConnectionDetails {
3
- resourceId: string;
4
- }
5
- export declare class TokenRequiredEventData {
6
- authSource: string;
7
- connectionDetails: TokenRequiredConnectionDetails;
8
- authToken: string;
9
- }
10
- export declare class TokenRequiredEventPayload {
11
- id: string;
12
- type: string;
13
- userId: string;
14
- expireAt: number;
15
- quota: number;
16
- isUnique: boolean;
17
- data: TokenRequiredEventData;
18
- }
19
- export declare class TokenRequired extends LudeoEvent {
20
- static readonly EVENT_NAME = "tokens.token-required";
21
- payload: TokenRequiredEventPayload;
22
- context?: never;
23
- constructor(payload: TokenRequiredEventPayload, context?: never);
24
- }