@ludeo/cloud-common 1.1.106 → 1.1.107-beta1
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/.idea/cloud-common.iml +12 -0
- package/.idea/git_toolbox_blame.xml +6 -0
- package/.idea/git_toolbox_prj.xml +15 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/v3/events/cloud-session-ended.d.ts +8 -0
- package/dist/v3/events/cloud-session-ended.js +29 -0
- package/dist/v3/events/cloud-session-ended.js.map +1 -0
- package/dist/v3/events/game-resource-status-changed.d.ts +1 -1
- package/dist/v3/events/game-resource-status-changed.js +1 -0
- package/dist/v3/events/game-resource-status-changed.js.map +1 -1
- package/dist/v3/events/index.d.ts +1 -0
- package/dist/v3/events/index.js +1 -0
- package/dist/v3/events/index.js.map +1 -1
- package/package.json +1 -1
- package/src/v3/events/cloud-session-ended.ts +18 -0
- package/src/v3/events/game-resource-status-changed.ts +2 -1
- package/src/v3/events/index.ts +1 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { LudeoEvent } from "../../infra/ludeo-event";
|
|
2
|
+
import { CloudSessionContext } from "../contexts";
|
|
3
|
+
export declare class CloudSessionEnded extends LudeoEvent {
|
|
4
|
+
static readonly EVENT_NAME = "cloud-sessions.cloud-session-ended";
|
|
5
|
+
constructor(payload: {}, context: CloudSessionContext);
|
|
6
|
+
context: CloudSessionContext;
|
|
7
|
+
payload: {};
|
|
8
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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.CloudSessionEnded = void 0;
|
|
13
|
+
const validate_nested_type_decorator_1 = require("../../decorators/validate-nested-type.decorator");
|
|
14
|
+
const ludeo_event_1 = require("../../infra/ludeo-event");
|
|
15
|
+
const contexts_1 = require("../contexts");
|
|
16
|
+
class CloudSessionEnded extends ludeo_event_1.LudeoEvent {
|
|
17
|
+
constructor(payload, context) {
|
|
18
|
+
super(CloudSessionEnded.EVENT_NAME);
|
|
19
|
+
this.context = context;
|
|
20
|
+
this.payload = payload;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.CloudSessionEnded = CloudSessionEnded;
|
|
24
|
+
CloudSessionEnded.EVENT_NAME = "cloud-sessions.cloud-session-ended";
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, validate_nested_type_decorator_1.ValidateNestedType)(() => contexts_1.CloudSessionContext),
|
|
27
|
+
__metadata("design:type", contexts_1.CloudSessionContext)
|
|
28
|
+
], CloudSessionEnded.prototype, "context", void 0);
|
|
29
|
+
//# sourceMappingURL=cloud-session-ended.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cloud-session-ended.js","sourceRoot":"","sources":["../../../src/v3/events/cloud-session-ended.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oGAAqF;AACrF,yDAAqD;AACrD,0CAAkD;AAElD,MAAa,iBAAkB,SAAQ,wBAAU;IAG/C,YAAY,OAAW,EAAE,OAA4B;QACnD,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAAC;QACpC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAPH,8CAaC;AAZiB,4BAAU,GAAG,oCAAoC,CAAC;AASlE;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,8BAAmB,CAAC;8BACrC,8BAAmB;kDAAC"}
|
|
@@ -6,7 +6,7 @@ export declare class GameResourceStatusChangedEventPayload {
|
|
|
6
6
|
gamePoolId: string;
|
|
7
7
|
providerSettings: AWSResourceProviderSettings;
|
|
8
8
|
status: CloudResourceStatus;
|
|
9
|
-
previousStatus
|
|
9
|
+
previousStatus?: CloudResourceStatus;
|
|
10
10
|
error?: string;
|
|
11
11
|
}
|
|
12
12
|
export declare class GameResourceStatusChangedEvent extends LudeoEvent {
|
|
@@ -35,6 +35,7 @@ __decorate([
|
|
|
35
35
|
__metadata("design:type", String)
|
|
36
36
|
], GameResourceStatusChangedEventPayload.prototype, "status", void 0);
|
|
37
37
|
__decorate([
|
|
38
|
+
(0, class_validator_1.IsOptional)(),
|
|
38
39
|
(0, class_validator_1.IsString)(),
|
|
39
40
|
__metadata("design:type", String)
|
|
40
41
|
], GameResourceStatusChangedEventPayload.prototype, "previousStatus", void 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"game-resource-status-changed.js","sourceRoot":"","sources":["../../../src/v3/events/game-resource-status-changed.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+D;AAC/D,yDAAqD;AACrD,+EAA0E;AAC1E,oCAA4E;AAC5E,oGAAqF;AAErF,MAAa,qCAAqC;
|
|
1
|
+
{"version":3,"file":"game-resource-status-changed.js","sourceRoot":"","sources":["../../../src/v3/events/game-resource-status-changed.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+D;AAC/D,yDAAqD;AACrD,+EAA0E;AAC1E,oCAA4E;AAC5E,oGAAqF;AAErF,MAAa,qCAAqC;CAoBjD;AApBD,sFAoBC;AAlBC;IADC,IAAA,wBAAM,GAAE;;6EACc;AAGvB;IADC,IAAA,wBAAM,GAAE;;yEACU;AAGnB;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,mCAA2B,CAAC;8BACpC,mCAA2B;+EAAC;AAG9C;IADC,IAAA,0BAAQ,GAAE;;qEACiB;AAI5B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;6EAC0B;AAIrC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;oEACI;AAGjB,MAAa,8BAA+B,SAAQ,wBAAU;IAI5D,YACE,OAA8C,EAC9C,OAA6B;QAE7B,KAAK,CAAC,8BAA8B,CAAC,UAAU,CAAC,CAAC;QACjD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAXH,wEAkBC;AAjBiB,yCAAU,GACxB,qDAAqD,CAAC;AAYxD;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;8BACtC,6CAAoB;+DAAC;AAG9B;IADC,IAAA,mDAAkB,EAAC,GAAG,EAAE,CAAC,qCAAqC,CAAC;8BACvD,qCAAqC;+DAAC"}
|
package/dist/v3/events/index.js
CHANGED
|
@@ -72,4 +72,5 @@ __exportStar(require("./ludeo-obtained-timeout-task"), exports);
|
|
|
72
72
|
__exportStar(require("./terminate-cloud-session-request"), exports);
|
|
73
73
|
__exportStar(require("./cloud-session-created"), exports);
|
|
74
74
|
__exportStar(require("./cloud-session-allocated"), exports);
|
|
75
|
+
__exportStar(require("./cloud-session-ended"), exports);
|
|
75
76
|
//# 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,oEAAkD;AAClD,4DAA0C;AAC1C,+DAA6C;AAC7C,4DAA0C;AAC1C,oEAAkD;AAClD,qEAAmD;AACnD,6EAA2D;AAC3D,mEAAiD;AACjD,2EAAyD;AACzD,sEAAoD;AACpD,8EAA4D;AAC5D,6DAA2C;AAC3C,qEAAmD;AACnD,iEAA+C;AAC/C,+DAA6C;AAC7C,uEAAqD;AACrD,iEAA+C;AAC/C,yEAAuD;AACvD,+DAA6C;AAC7C,oFAAkE;AAClE,uFAAqE;AACrE,sEAAoD;AACpD,8EAA4D;AAC5D,yEAAuD;AACvD,6DAA2C;AAC3C,+DAA6C;AAC7C,gDAA8B;AAC9B,4DAA0C;AAC1C,6CAA2B;AAC3B,oDAAkC;AAClC,8DAA4C;AAC5C,mEAAiD;AACjD,4DAA0C;AAC1C,2DAAyC;AACzC,oEAAkD;AAClD,4DAA0C;AAC1C,uEAAqD;AACrD,6EAA2D;AAC3D,+DAA6C;AAC7C,0DAAwC;AACxC,6DAA2C;AAC3C,+DAA6C;AAC7C,sEAAoD;AACpD,yDAAuC;AACvC,6DAA2C;AAC3C,kEAAgD;AAChD,mEAAiD;AACjD,+DAA6C;AAC7C,gEAA8C;AAC9C,oEAAkD;AAClD,0DAAwC;AACxC,4DAA0C"}
|
|
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,oEAAkD;AAClD,4DAA0C;AAC1C,+DAA6C;AAC7C,4DAA0C;AAC1C,oEAAkD;AAClD,qEAAmD;AACnD,6EAA2D;AAC3D,mEAAiD;AACjD,2EAAyD;AACzD,sEAAoD;AACpD,8EAA4D;AAC5D,6DAA2C;AAC3C,qEAAmD;AACnD,iEAA+C;AAC/C,+DAA6C;AAC7C,uEAAqD;AACrD,iEAA+C;AAC/C,yEAAuD;AACvD,+DAA6C;AAC7C,oFAAkE;AAClE,uFAAqE;AACrE,sEAAoD;AACpD,8EAA4D;AAC5D,yEAAuD;AACvD,6DAA2C;AAC3C,+DAA6C;AAC7C,gDAA8B;AAC9B,4DAA0C;AAC1C,6CAA2B;AAC3B,oDAAkC;AAClC,8DAA4C;AAC5C,mEAAiD;AACjD,4DAA0C;AAC1C,2DAAyC;AACzC,oEAAkD;AAClD,4DAA0C;AAC1C,uEAAqD;AACrD,6EAA2D;AAC3D,+DAA6C;AAC7C,0DAAwC;AACxC,6DAA2C;AAC3C,+DAA6C;AAC7C,sEAAoD;AACpD,yDAAuC;AACvC,6DAA2C;AAC3C,kEAAgD;AAChD,mEAAiD;AACjD,+DAA6C;AAC7C,gEAA8C;AAC9C,oEAAkD;AAClD,0DAAwC;AACxC,4DAA0C;AAC1C,wDAAsC"}
|
package/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
|
|
2
|
+
import { LudeoEvent } from "../../infra/ludeo-event";
|
|
3
|
+
import { CloudSessionContext } from "../contexts";
|
|
4
|
+
|
|
5
|
+
export class CloudSessionEnded extends LudeoEvent {
|
|
6
|
+
static readonly EVENT_NAME = "cloud-sessions.cloud-session-ended";
|
|
7
|
+
|
|
8
|
+
constructor(payload: {}, context: CloudSessionContext) {
|
|
9
|
+
super(CloudSessionEnded.EVENT_NAME);
|
|
10
|
+
this.context = context;
|
|
11
|
+
this.payload = payload;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@ValidateNestedType(() => CloudSessionContext)
|
|
15
|
+
context: CloudSessionContext;
|
|
16
|
+
|
|
17
|
+
payload: {};
|
|
18
|
+
}
|
package/src/v3/events/index.ts
CHANGED