@ludeo/cloud-common 1.2.211 → 1.2.213
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/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/v4/events/activation/activation-created.d.ts +12 -0
- package/dist/v4/events/activation/activation-created.js +36 -0
- package/dist/v4/events/activation/activation-created.js.map +1 -0
- package/dist/v4/events/activation/activation-deleted.d.ts +12 -0
- package/dist/v4/events/activation/activation-deleted.js +36 -0
- package/dist/v4/events/activation/activation-deleted.js.map +1 -0
- package/dist/v4/events/activation/activation-saved.d.ts +13 -0
- package/dist/v4/events/activation/activation-saved.js +42 -0
- package/dist/v4/events/activation/activation-saved.js.map +1 -0
- package/dist/v4/events/activation/activation-updated.d.ts +12 -0
- package/dist/v4/events/activation/activation-updated.js +36 -0
- package/dist/v4/events/activation/activation-updated.js.map +1 -0
- package/dist/v4/events/activation/game-activation-action-created.d.ts +12 -0
- package/dist/v4/events/activation/game-activation-action-created.js +36 -0
- package/dist/v4/events/activation/game-activation-action-created.js.map +1 -0
- package/dist/v4/events/activation/game-activation-action-deleted.d.ts +12 -0
- package/dist/v4/events/activation/game-activation-action-deleted.js +36 -0
- package/dist/v4/events/activation/game-activation-action-deleted.js.map +1 -0
- package/dist/v4/events/activation/game-activation-action-updated.d.ts +12 -0
- package/dist/v4/events/activation/game-activation-action-updated.js +36 -0
- package/dist/v4/events/activation/game-activation-action-updated.js.map +1 -0
- package/dist/v4/events/activation/index.d.ts +7 -0
- package/dist/v4/events/activation/index.js +24 -0
- package/dist/v4/events/activation/index.js.map +1 -0
- package/dist/v4/events/forecast/forecast-ended.d.ts +5 -10
- package/dist/v4/events/forecast/forecast-ended.js +20 -13
- package/dist/v4/events/forecast/forecast-ended.js.map +1 -1
- package/dist/v4/events/index.d.ts +1 -0
- package/dist/v4/events/index.js +1 -0
- package/dist/v4/events/index.js.map +1 -1
- package/dist/v4/types/cloud/activation.d.ts +26 -0
- package/dist/v4/types/cloud/activation.js +85 -0
- package/dist/v4/types/cloud/activation.js.map +1 -0
- package/dist/v4/types/cloud/game-activation-action.d.ts +19 -0
- package/dist/v4/types/cloud/game-activation-action.js +71 -0
- package/dist/v4/types/cloud/game-activation-action.js.map +1 -0
- package/dist/v4/types/cloud/index.d.ts +2 -0
- package/dist/v4/types/cloud/index.js +2 -0
- package/dist/v4/types/cloud/index.js.map +1 -1
- package/package.json +1 -1
- package/src/v4/events/activation/activation-created.ts +23 -0
- package/src/v4/events/activation/activation-deleted.ts +23 -0
- package/src/v4/events/activation/activation-saved.ts +28 -0
- package/src/v4/events/activation/activation-updated.ts +23 -0
- package/src/v4/events/activation/game-activation-action-created.ts +23 -0
- package/src/v4/events/activation/game-activation-action-deleted.ts +23 -0
- package/src/v4/events/activation/game-activation-action-updated.ts +23 -0
- package/src/v4/events/activation/index.ts +7 -0
- package/src/v4/events/forecast/forecast-ended.ts +14 -14
- package/src/v4/events/index.ts +1 -0
- package/src/v4/types/cloud/activation.ts +65 -0
- package/src/v4/types/cloud/game-activation-action.ts +52 -0
- package/src/v4/types/cloud/index.ts +2 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LudeoEvent } from "../../../infra";
|
|
2
|
+
import { Activation } from "../../types/cloud/activation";
|
|
3
|
+
export declare class ActivationCreatedPayload {
|
|
4
|
+
activation: Activation;
|
|
5
|
+
}
|
|
6
|
+
export declare class ActivationCreated extends LudeoEvent {
|
|
7
|
+
static readonly EVENT_NAME = "activations.activation-created";
|
|
8
|
+
eventVersion: string;
|
|
9
|
+
constructor(payload: ActivationCreatedPayload);
|
|
10
|
+
payload: ActivationCreatedPayload;
|
|
11
|
+
context: never;
|
|
12
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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.ActivationCreated = exports.ActivationCreatedPayload = void 0;
|
|
13
|
+
const infra_1 = require("../../../infra");
|
|
14
|
+
const decorators_1 = require("../../../decorators");
|
|
15
|
+
const activation_1 = require("../../types/cloud/activation");
|
|
16
|
+
class ActivationCreatedPayload {
|
|
17
|
+
}
|
|
18
|
+
exports.ActivationCreatedPayload = ActivationCreatedPayload;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, decorators_1.ValidateNestedType)(() => activation_1.Activation),
|
|
21
|
+
__metadata("design:type", activation_1.Activation)
|
|
22
|
+
], ActivationCreatedPayload.prototype, "activation", void 0);
|
|
23
|
+
class ActivationCreated extends infra_1.LudeoEvent {
|
|
24
|
+
constructor(payload) {
|
|
25
|
+
super(ActivationCreated.EVENT_NAME);
|
|
26
|
+
this.eventVersion = "4.0";
|
|
27
|
+
this.payload = payload;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.ActivationCreated = ActivationCreated;
|
|
31
|
+
ActivationCreated.EVENT_NAME = "activations.activation-created";
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, decorators_1.ValidateNestedType)(() => ActivationCreatedPayload),
|
|
34
|
+
__metadata("design:type", ActivationCreatedPayload)
|
|
35
|
+
], ActivationCreated.prototype, "payload", void 0);
|
|
36
|
+
//# sourceMappingURL=activation-created.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"activation-created.js","sourceRoot":"","sources":["../../../../src/v4/events/activation/activation-created.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAA4C;AAC5C,oDAAyD;AACzD,6DAA0D;AAE1D,MAAa,wBAAwB;CAGpC;AAHD,4DAGC;AADC;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,uBAAU,CAAC;8BACzB,uBAAU;4DAAC;AAGzB,MAAa,iBAAkB,SAAQ,kBAAU;IAI/C,YAAY,OAAiC;QAC3C,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAAC;QAHtC,iBAAY,GAAG,KAAK,CAAC;QAInB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAPH,8CAaC;AAZiB,4BAAU,GAAG,gCAAgC,AAAnC,CAAoC;AAS9D;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,wBAAwB,CAAC;8BAC1C,wBAAwB;kDAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LudeoEvent } from "../../../infra";
|
|
2
|
+
import { Activation } from "../../types/cloud/activation";
|
|
3
|
+
export declare class ActivationDeletedPayload {
|
|
4
|
+
activation: Activation;
|
|
5
|
+
}
|
|
6
|
+
export declare class ActivationDeleted extends LudeoEvent {
|
|
7
|
+
static readonly EVENT_NAME = "activations.activation-deleted";
|
|
8
|
+
eventVersion: string;
|
|
9
|
+
constructor(payload: ActivationDeletedPayload);
|
|
10
|
+
payload: ActivationDeletedPayload;
|
|
11
|
+
context: never;
|
|
12
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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.ActivationDeleted = exports.ActivationDeletedPayload = void 0;
|
|
13
|
+
const infra_1 = require("../../../infra");
|
|
14
|
+
const decorators_1 = require("../../../decorators");
|
|
15
|
+
const activation_1 = require("../../types/cloud/activation");
|
|
16
|
+
class ActivationDeletedPayload {
|
|
17
|
+
}
|
|
18
|
+
exports.ActivationDeletedPayload = ActivationDeletedPayload;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, decorators_1.ValidateNestedType)(() => activation_1.Activation),
|
|
21
|
+
__metadata("design:type", activation_1.Activation)
|
|
22
|
+
], ActivationDeletedPayload.prototype, "activation", void 0);
|
|
23
|
+
class ActivationDeleted extends infra_1.LudeoEvent {
|
|
24
|
+
constructor(payload) {
|
|
25
|
+
super(ActivationDeleted.EVENT_NAME);
|
|
26
|
+
this.eventVersion = "4.0";
|
|
27
|
+
this.payload = payload;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.ActivationDeleted = ActivationDeleted;
|
|
31
|
+
ActivationDeleted.EVENT_NAME = "activations.activation-deleted";
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, decorators_1.ValidateNestedType)(() => ActivationDeletedPayload),
|
|
34
|
+
__metadata("design:type", ActivationDeletedPayload)
|
|
35
|
+
], ActivationDeleted.prototype, "payload", void 0);
|
|
36
|
+
//# sourceMappingURL=activation-deleted.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"activation-deleted.js","sourceRoot":"","sources":["../../../../src/v4/events/activation/activation-deleted.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAA4C;AAC5C,oDAAyD;AACzD,6DAA0D;AAE1D,MAAa,wBAAwB;CAGpC;AAHD,4DAGC;AADC;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,uBAAU,CAAC;8BACzB,uBAAU;4DAAC;AAGzB,MAAa,iBAAkB,SAAQ,kBAAU;IAI/C,YAAY,OAAiC;QAC3C,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAAC;QAHtC,iBAAY,GAAG,KAAK,CAAC;QAInB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAPH,8CAaC;AAZiB,4BAAU,GAAG,gCAAgC,AAAnC,CAAoC;AAS9D;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,wBAAwB,CAAC;8BAC1C,wBAAwB;kDAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { LudeoEvent } from "../../../infra";
|
|
2
|
+
import { Activation } from "../../types/cloud/activation";
|
|
3
|
+
export declare class ActivationSavedPayload {
|
|
4
|
+
activation: Activation;
|
|
5
|
+
ludeos: string[];
|
|
6
|
+
}
|
|
7
|
+
export declare class ActivationSaved extends LudeoEvent {
|
|
8
|
+
static readonly EVENT_NAME = "activations.activation-saved";
|
|
9
|
+
eventVersion: string;
|
|
10
|
+
constructor(payload: ActivationSavedPayload);
|
|
11
|
+
payload: ActivationSavedPayload;
|
|
12
|
+
context: never;
|
|
13
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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.ActivationSaved = exports.ActivationSavedPayload = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const infra_1 = require("../../../infra");
|
|
15
|
+
const decorators_1 = require("../../../decorators");
|
|
16
|
+
const activation_1 = require("../../types/cloud/activation");
|
|
17
|
+
class ActivationSavedPayload {
|
|
18
|
+
}
|
|
19
|
+
exports.ActivationSavedPayload = ActivationSavedPayload;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, decorators_1.ValidateNestedType)(() => activation_1.Activation),
|
|
22
|
+
__metadata("design:type", activation_1.Activation)
|
|
23
|
+
], ActivationSavedPayload.prototype, "activation", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsArray)(),
|
|
26
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
27
|
+
__metadata("design:type", Array)
|
|
28
|
+
], ActivationSavedPayload.prototype, "ludeos", void 0);
|
|
29
|
+
class ActivationSaved extends infra_1.LudeoEvent {
|
|
30
|
+
constructor(payload) {
|
|
31
|
+
super(ActivationSaved.EVENT_NAME);
|
|
32
|
+
this.eventVersion = "4.0";
|
|
33
|
+
this.payload = payload;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.ActivationSaved = ActivationSaved;
|
|
37
|
+
ActivationSaved.EVENT_NAME = "activations.activation-saved";
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, decorators_1.ValidateNestedType)(() => ActivationSavedPayload),
|
|
40
|
+
__metadata("design:type", ActivationSavedPayload)
|
|
41
|
+
], ActivationSaved.prototype, "payload", void 0);
|
|
42
|
+
//# sourceMappingURL=activation-saved.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"activation-saved.js","sourceRoot":"","sources":["../../../../src/v4/events/activation/activation-saved.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAoD;AACpD,0CAA4C;AAC5C,oDAAyD;AACzD,6DAA0D;AAE1D,MAAa,sBAAsB;CAOlC;AAPD,wDAOC;AALC;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,uBAAU,CAAC;8BACzB,uBAAU;0DAAC;AAIvB;IAFC,IAAA,yBAAO,GAAE;IACT,IAAA,0BAAQ,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;sDACR;AAGnB,MAAa,eAAgB,SAAQ,kBAAU;IAI7C,YAAY,OAA+B;QACzC,KAAK,CAAC,eAAe,CAAC,UAAU,CAAC,CAAC;QAHpC,iBAAY,GAAG,KAAK,CAAC;QAInB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAPH,0CAaC;AAZiB,0BAAU,GAAG,8BAA8B,AAAjC,CAAkC;AAS5D;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,sBAAsB,CAAC;8BACxC,sBAAsB;gDAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LudeoEvent } from "../../../infra";
|
|
2
|
+
import { Activation } from "../../types/cloud/activation";
|
|
3
|
+
export declare class ActivationUpdatedPayload {
|
|
4
|
+
activation: Activation;
|
|
5
|
+
}
|
|
6
|
+
export declare class ActivationUpdated extends LudeoEvent {
|
|
7
|
+
static readonly EVENT_NAME = "activations.activation-updated";
|
|
8
|
+
eventVersion: string;
|
|
9
|
+
constructor(payload: ActivationUpdatedPayload);
|
|
10
|
+
payload: ActivationUpdatedPayload;
|
|
11
|
+
context: never;
|
|
12
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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.ActivationUpdated = exports.ActivationUpdatedPayload = void 0;
|
|
13
|
+
const infra_1 = require("../../../infra");
|
|
14
|
+
const decorators_1 = require("../../../decorators");
|
|
15
|
+
const activation_1 = require("../../types/cloud/activation");
|
|
16
|
+
class ActivationUpdatedPayload {
|
|
17
|
+
}
|
|
18
|
+
exports.ActivationUpdatedPayload = ActivationUpdatedPayload;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, decorators_1.ValidateNestedType)(() => activation_1.Activation),
|
|
21
|
+
__metadata("design:type", activation_1.Activation)
|
|
22
|
+
], ActivationUpdatedPayload.prototype, "activation", void 0);
|
|
23
|
+
class ActivationUpdated extends infra_1.LudeoEvent {
|
|
24
|
+
constructor(payload) {
|
|
25
|
+
super(ActivationUpdated.EVENT_NAME);
|
|
26
|
+
this.eventVersion = "4.0";
|
|
27
|
+
this.payload = payload;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.ActivationUpdated = ActivationUpdated;
|
|
31
|
+
ActivationUpdated.EVENT_NAME = "activations.activation-updated";
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, decorators_1.ValidateNestedType)(() => ActivationUpdatedPayload),
|
|
34
|
+
__metadata("design:type", ActivationUpdatedPayload)
|
|
35
|
+
], ActivationUpdated.prototype, "payload", void 0);
|
|
36
|
+
//# sourceMappingURL=activation-updated.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"activation-updated.js","sourceRoot":"","sources":["../../../../src/v4/events/activation/activation-updated.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAA4C;AAC5C,oDAAyD;AACzD,6DAA0D;AAE1D,MAAa,wBAAwB;CAGpC;AAHD,4DAGC;AADC;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,uBAAU,CAAC;8BACzB,uBAAU;4DAAC;AAGzB,MAAa,iBAAkB,SAAQ,kBAAU;IAI/C,YAAY,OAAiC;QAC3C,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAAC;QAHtC,iBAAY,GAAG,KAAK,CAAC;QAInB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAPH,8CAaC;AAZiB,4BAAU,GAAG,gCAAgC,AAAnC,CAAoC;AAS9D;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,wBAAwB,CAAC;8BAC1C,wBAAwB;kDAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LudeoEvent } from "../../../infra";
|
|
2
|
+
import { GameActivationAction } from "../../types/cloud/game-activation-action";
|
|
3
|
+
export declare class GameActivationActionCreatedPayload {
|
|
4
|
+
action: GameActivationAction;
|
|
5
|
+
}
|
|
6
|
+
export declare class GameActivationActionCreated extends LudeoEvent {
|
|
7
|
+
static readonly EVENT_NAME = "activations.game-activation-action-created";
|
|
8
|
+
eventVersion: string;
|
|
9
|
+
constructor(payload: GameActivationActionCreatedPayload);
|
|
10
|
+
payload: GameActivationActionCreatedPayload;
|
|
11
|
+
context: never;
|
|
12
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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.GameActivationActionCreated = exports.GameActivationActionCreatedPayload = void 0;
|
|
13
|
+
const infra_1 = require("../../../infra");
|
|
14
|
+
const decorators_1 = require("../../../decorators");
|
|
15
|
+
const game_activation_action_1 = require("../../types/cloud/game-activation-action");
|
|
16
|
+
class GameActivationActionCreatedPayload {
|
|
17
|
+
}
|
|
18
|
+
exports.GameActivationActionCreatedPayload = GameActivationActionCreatedPayload;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, decorators_1.ValidateNestedType)(() => game_activation_action_1.GameActivationAction),
|
|
21
|
+
__metadata("design:type", game_activation_action_1.GameActivationAction)
|
|
22
|
+
], GameActivationActionCreatedPayload.prototype, "action", void 0);
|
|
23
|
+
class GameActivationActionCreated extends infra_1.LudeoEvent {
|
|
24
|
+
constructor(payload) {
|
|
25
|
+
super(GameActivationActionCreated.EVENT_NAME);
|
|
26
|
+
this.eventVersion = "4.0";
|
|
27
|
+
this.payload = payload;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.GameActivationActionCreated = GameActivationActionCreated;
|
|
31
|
+
GameActivationActionCreated.EVENT_NAME = "activations.game-activation-action-created";
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, decorators_1.ValidateNestedType)(() => GameActivationActionCreatedPayload),
|
|
34
|
+
__metadata("design:type", GameActivationActionCreatedPayload)
|
|
35
|
+
], GameActivationActionCreated.prototype, "payload", void 0);
|
|
36
|
+
//# sourceMappingURL=game-activation-action-created.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"game-activation-action-created.js","sourceRoot":"","sources":["../../../../src/v4/events/activation/game-activation-action-created.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAA4C;AAC5C,oDAAyD;AACzD,qFAAgF;AAEhF,MAAa,kCAAkC;CAG9C;AAHD,gFAGC;AADC;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;8BACvC,6CAAoB;kEAAC;AAG/B,MAAa,2BAA4B,SAAQ,kBAAU;IAIzD,YAAY,OAA2C;QACrD,KAAK,CAAC,2BAA2B,CAAC,UAAU,CAAC,CAAC;QAHhD,iBAAY,GAAG,KAAK,CAAC;QAInB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAPH,kEAaC;AAZiB,sCAAU,GAAG,4CAA4C,AAA/C,CAAgD;AAS1E;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,kCAAkC,CAAC;8BACpD,kCAAkC;4DAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LudeoEvent } from "../../../infra";
|
|
2
|
+
import { GameActivationAction } from "../../types/cloud/game-activation-action";
|
|
3
|
+
export declare class GameActivationActionDeletedPayload {
|
|
4
|
+
action: GameActivationAction;
|
|
5
|
+
}
|
|
6
|
+
export declare class GameActivationActionDeleted extends LudeoEvent {
|
|
7
|
+
static readonly EVENT_NAME = "activations.game-activation-action-deleted";
|
|
8
|
+
eventVersion: string;
|
|
9
|
+
constructor(payload: GameActivationActionDeletedPayload);
|
|
10
|
+
payload: GameActivationActionDeletedPayload;
|
|
11
|
+
context: never;
|
|
12
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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.GameActivationActionDeleted = exports.GameActivationActionDeletedPayload = void 0;
|
|
13
|
+
const infra_1 = require("../../../infra");
|
|
14
|
+
const decorators_1 = require("../../../decorators");
|
|
15
|
+
const game_activation_action_1 = require("../../types/cloud/game-activation-action");
|
|
16
|
+
class GameActivationActionDeletedPayload {
|
|
17
|
+
}
|
|
18
|
+
exports.GameActivationActionDeletedPayload = GameActivationActionDeletedPayload;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, decorators_1.ValidateNestedType)(() => game_activation_action_1.GameActivationAction),
|
|
21
|
+
__metadata("design:type", game_activation_action_1.GameActivationAction)
|
|
22
|
+
], GameActivationActionDeletedPayload.prototype, "action", void 0);
|
|
23
|
+
class GameActivationActionDeleted extends infra_1.LudeoEvent {
|
|
24
|
+
constructor(payload) {
|
|
25
|
+
super(GameActivationActionDeleted.EVENT_NAME);
|
|
26
|
+
this.eventVersion = "4.0";
|
|
27
|
+
this.payload = payload;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.GameActivationActionDeleted = GameActivationActionDeleted;
|
|
31
|
+
GameActivationActionDeleted.EVENT_NAME = "activations.game-activation-action-deleted";
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, decorators_1.ValidateNestedType)(() => GameActivationActionDeletedPayload),
|
|
34
|
+
__metadata("design:type", GameActivationActionDeletedPayload)
|
|
35
|
+
], GameActivationActionDeleted.prototype, "payload", void 0);
|
|
36
|
+
//# sourceMappingURL=game-activation-action-deleted.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"game-activation-action-deleted.js","sourceRoot":"","sources":["../../../../src/v4/events/activation/game-activation-action-deleted.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAA4C;AAC5C,oDAAyD;AACzD,qFAAgF;AAEhF,MAAa,kCAAkC;CAG9C;AAHD,gFAGC;AADC;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;8BACvC,6CAAoB;kEAAC;AAG/B,MAAa,2BAA4B,SAAQ,kBAAU;IAIzD,YAAY,OAA2C;QACrD,KAAK,CAAC,2BAA2B,CAAC,UAAU,CAAC,CAAC;QAHhD,iBAAY,GAAG,KAAK,CAAC;QAInB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAPH,kEAaC;AAZiB,sCAAU,GAAG,4CAA4C,AAA/C,CAAgD;AAS1E;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,kCAAkC,CAAC;8BACpD,kCAAkC;4DAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LudeoEvent } from "../../../infra";
|
|
2
|
+
import { GameActivationAction } from "../../types/cloud/game-activation-action";
|
|
3
|
+
export declare class GameActivationActionUpdatedPayload {
|
|
4
|
+
action: GameActivationAction;
|
|
5
|
+
}
|
|
6
|
+
export declare class GameActivationActionUpdated extends LudeoEvent {
|
|
7
|
+
static readonly EVENT_NAME = "activations.game-activation-action-updated";
|
|
8
|
+
eventVersion: string;
|
|
9
|
+
constructor(payload: GameActivationActionUpdatedPayload);
|
|
10
|
+
payload: GameActivationActionUpdatedPayload;
|
|
11
|
+
context: never;
|
|
12
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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.GameActivationActionUpdated = exports.GameActivationActionUpdatedPayload = void 0;
|
|
13
|
+
const infra_1 = require("../../../infra");
|
|
14
|
+
const decorators_1 = require("../../../decorators");
|
|
15
|
+
const game_activation_action_1 = require("../../types/cloud/game-activation-action");
|
|
16
|
+
class GameActivationActionUpdatedPayload {
|
|
17
|
+
}
|
|
18
|
+
exports.GameActivationActionUpdatedPayload = GameActivationActionUpdatedPayload;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, decorators_1.ValidateNestedType)(() => game_activation_action_1.GameActivationAction),
|
|
21
|
+
__metadata("design:type", game_activation_action_1.GameActivationAction)
|
|
22
|
+
], GameActivationActionUpdatedPayload.prototype, "action", void 0);
|
|
23
|
+
class GameActivationActionUpdated extends infra_1.LudeoEvent {
|
|
24
|
+
constructor(payload) {
|
|
25
|
+
super(GameActivationActionUpdated.EVENT_NAME);
|
|
26
|
+
this.eventVersion = "4.0";
|
|
27
|
+
this.payload = payload;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.GameActivationActionUpdated = GameActivationActionUpdated;
|
|
31
|
+
GameActivationActionUpdated.EVENT_NAME = "activations.game-activation-action-updated";
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, decorators_1.ValidateNestedType)(() => GameActivationActionUpdatedPayload),
|
|
34
|
+
__metadata("design:type", GameActivationActionUpdatedPayload)
|
|
35
|
+
], GameActivationActionUpdated.prototype, "payload", void 0);
|
|
36
|
+
//# sourceMappingURL=game-activation-action-updated.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"game-activation-action-updated.js","sourceRoot":"","sources":["../../../../src/v4/events/activation/game-activation-action-updated.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAA4C;AAC5C,oDAAyD;AACzD,qFAAgF;AAEhF,MAAa,kCAAkC;CAG9C;AAHD,gFAGC;AADC;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;8BACvC,6CAAoB;kEAAC;AAG/B,MAAa,2BAA4B,SAAQ,kBAAU;IAIzD,YAAY,OAA2C;QACrD,KAAK,CAAC,2BAA2B,CAAC,UAAU,CAAC,CAAC;QAHhD,iBAAY,GAAG,KAAK,CAAC;QAInB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;;AAPH,kEAaC;AAZiB,sCAAU,GAAG,4CAA4C,AAA/C,CAAgD;AAS1E;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,kCAAkC,CAAC;8BACpD,kCAAkC;4DAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from "./activation-created";
|
|
2
|
+
export * from "./activation-saved";
|
|
3
|
+
export * from "./activation-updated";
|
|
4
|
+
export * from "./activation-deleted";
|
|
5
|
+
export * from "./game-activation-action-created";
|
|
6
|
+
export * from "./game-activation-action-updated";
|
|
7
|
+
export * from "./game-activation-action-deleted";
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./activation-created"), exports);
|
|
18
|
+
__exportStar(require("./activation-saved"), exports);
|
|
19
|
+
__exportStar(require("./activation-updated"), exports);
|
|
20
|
+
__exportStar(require("./activation-deleted"), exports);
|
|
21
|
+
__exportStar(require("./game-activation-action-created"), exports);
|
|
22
|
+
__exportStar(require("./game-activation-action-updated"), exports);
|
|
23
|
+
__exportStar(require("./game-activation-action-deleted"), exports);
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/v4/events/activation/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC;AACrC,qDAAmC;AACnC,uDAAqC;AACrC,uDAAqC;AACrC,mEAAiD;AACjD,mEAAiD;AACjD,mEAAiD"}
|
|
@@ -1,20 +1,15 @@
|
|
|
1
1
|
import { LudeoEvent } from "../../../infra";
|
|
2
2
|
import { ForecastContext } from "../../contexts";
|
|
3
3
|
import { LudeoFeatures } from "../../types/predictor";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class ForecastDemandEntry {
|
|
5
|
+
location: string;
|
|
6
|
+
gameId: string;
|
|
7
|
+
majorVersion: string;
|
|
5
8
|
totalDemand: number;
|
|
6
9
|
ludeoFeatures?: LudeoFeatures;
|
|
7
10
|
}
|
|
8
|
-
export declare class ForecastEnvironment {
|
|
9
|
-
[majorVersion: string]: ForecastMajorVersion;
|
|
10
|
-
}
|
|
11
|
-
export declare class ForecastLocation {
|
|
12
|
-
[envId: string]: ForecastEnvironment;
|
|
13
|
-
}
|
|
14
11
|
export declare class ForecastEndedPayload {
|
|
15
|
-
forecasts:
|
|
16
|
-
[location: string]: ForecastLocation;
|
|
17
|
-
};
|
|
12
|
+
forecasts: ForecastDemandEntry[];
|
|
18
13
|
}
|
|
19
14
|
export declare class ForecastEnded extends LudeoEvent {
|
|
20
15
|
static readonly EVENT_NAME = "forecast.forecast-ended";
|
|
@@ -9,37 +9,44 @@ 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.ForecastEnded = exports.ForecastEndedPayload = exports.
|
|
12
|
+
exports.ForecastEnded = exports.ForecastEndedPayload = exports.ForecastDemandEntry = void 0;
|
|
13
13
|
const infra_1 = require("../../../infra");
|
|
14
14
|
const decorators_1 = require("../../../decorators");
|
|
15
15
|
const class_validator_1 = require("class-validator");
|
|
16
16
|
const contexts_1 = require("../../contexts");
|
|
17
17
|
const predictor_1 = require("../../types/predictor");
|
|
18
|
-
class
|
|
18
|
+
class ForecastDemandEntry {
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
20
|
+
exports.ForecastDemandEntry = ForecastDemandEntry;
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsString)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], ForecastDemandEntry.prototype, "location", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_validator_1.IsString)(),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], ForecastDemandEntry.prototype, "gameId", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_validator_1.IsString)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], ForecastDemandEntry.prototype, "majorVersion", void 0);
|
|
21
33
|
__decorate([
|
|
22
34
|
(0, class_validator_1.IsNumber)(),
|
|
23
35
|
__metadata("design:type", Number)
|
|
24
|
-
],
|
|
36
|
+
], ForecastDemandEntry.prototype, "totalDemand", void 0);
|
|
25
37
|
__decorate([
|
|
26
38
|
(0, class_validator_1.IsOptional)(),
|
|
27
39
|
(0, decorators_1.ValidateNestedType)(() => predictor_1.LudeoFeatures),
|
|
28
40
|
__metadata("design:type", predictor_1.LudeoFeatures)
|
|
29
|
-
],
|
|
30
|
-
class ForecastEnvironment {
|
|
31
|
-
}
|
|
32
|
-
exports.ForecastEnvironment = ForecastEnvironment;
|
|
33
|
-
class ForecastLocation {
|
|
34
|
-
}
|
|
35
|
-
exports.ForecastLocation = ForecastLocation;
|
|
41
|
+
], ForecastDemandEntry.prototype, "ludeoFeatures", void 0);
|
|
36
42
|
class ForecastEndedPayload {
|
|
37
43
|
}
|
|
38
44
|
exports.ForecastEndedPayload = ForecastEndedPayload;
|
|
39
45
|
__decorate([
|
|
40
46
|
(0, class_validator_1.IsDefined)(),
|
|
41
|
-
(0,
|
|
42
|
-
|
|
47
|
+
(0, class_validator_1.IsArray)(),
|
|
48
|
+
(0, decorators_1.ValidateNestedType)(() => ForecastDemandEntry),
|
|
49
|
+
__metadata("design:type", Array)
|
|
43
50
|
], ForecastEndedPayload.prototype, "forecasts", void 0);
|
|
44
51
|
class ForecastEnded extends infra_1.LudeoEvent {
|
|
45
52
|
constructor(payload, context) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"forecast-ended.js","sourceRoot":"","sources":["../../../../src/v4/events/forecast/forecast-ended.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAA4C;AAC5C,oDAAyD;AACzD,
|
|
1
|
+
{"version":3,"file":"forecast-ended.js","sourceRoot":"","sources":["../../../../src/v4/events/forecast/forecast-ended.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAA4C;AAC5C,oDAAyD;AACzD,qDAAqF;AACrF,6CAAiD;AACjD,qDAAsD;AAEtD,MAAa,mBAAmB;CAgB/B;AAhBD,kDAgBC;AAdG;IADC,IAAA,0BAAQ,GAAE;;qDACM;AAGjB;IADC,IAAA,0BAAQ,GAAE;;mDACI;AAGf;IADC,IAAA,0BAAQ,GAAE;;yDACU;AAGrB;IADC,IAAA,0BAAQ,GAAE;;wDACS;AAIpB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,yBAAa,CAAC;8BACxB,yBAAa;0DAAC;AAGlC,MAAa,oBAAoB;CAKhC;AALD,oDAKC;AADG;IAHC,IAAA,2BAAS,GAAE;IACX,IAAA,yBAAO,GAAE;IACT,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,mBAAmB,CAAC;;uDACb;AAGrC,MAAa,aAAc,SAAQ,kBAAU;IAGzC,YAAY,OAA6B,EAAE,OAAwB;QAC/D,KAAK,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;QAChC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IAC3B,CAAC;;AAPL,sCAcC;AAbmB,wBAAU,GAAG,yBAAyB,CAAC;AASvD;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,oBAAoB,CAAC;8BACtC,oBAAoB;8CAAC;AAG9B;IADC,IAAA,+BAAkB,EAAC,GAAG,EAAE,CAAC,0BAAe,CAAC;8BACjC,0BAAe;8CAAC"}
|
package/dist/v4/events/index.js
CHANGED
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.SonicServer = exports.LudeocastAgent = exports.Provisioner = exports.Forecast = exports.CloudBuilds = exports.CloudResources = exports.SiteController = void 0;
|
|
18
|
+
__exportStar(require("./activation"), exports);
|
|
18
19
|
__exportStar(require("./allocate-game-request"), exports);
|
|
19
20
|
__exportStar(require("./allocate-game-resource-request"), exports);
|
|
20
21
|
__exportStar(require("./allocate-machine-request"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/v4/events/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,0DAAwC;AACxC,mEAAiD;AACjD,6DAA2C;AAC3C,uEAAqD;AACrD,4EAA0D;AAC1D,6DAA2C;AAC3C,qEAAmD;AACnD,iEAA+C;AAC/C,yDAAuC;AACvC,0EAAwD;AACxD,oEAAkD;AAClD,4DAA0C;AAC1C,+DAA6C;AAC7C,mDAAiC;AACjC,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,mEAAiD;AACjD,wDAAsC;AACtC,0DAAwC;AACxC,2EAAyD;AACzD,iEAA+C;AAC/C,qEAAmD;AACnD,4EAA0D;AAC1D,8DAA4C;AAC5C,0EAAwD;AACxD,0DAAwC;AACxC,oEAAkD;AAClD,8DAA4C;AAC5C,wDAAsC;AACtC,6DAA2C;AAC3C,4DAA0C;AAC1C,sEAAoD;AACpD,qEAAmD;AACnD,0DAAwC;AACxC,kEAAgD;AAChD,yDAAuC;AACvC,mEAAiD;AACjD,2DAAyC;AACzC,oEAAkD;AAClD,6DAA2C;AAC3C,yEAAuD;AACvD,+DAA6C;AAC7C,wEAAsD;AACtD,+DAA6C;AAC7C,wDAAsC;AACtC,gEAA8C;AAC9C,4EAA0D;AAC1D,+EAA6D;AAC7D,oEAAkD;AAClD,qEAAmD;AACnD,4EAA0D;AAC1D,4DAA0C;AAC1C,oDAAkC;AAClC,kEAAgD;AAChD,mEAAiD;AACjD,8DAA4C;AAC5C,sEAAoD;AACpD,2DAAyC;AACzC,4DAA0C;AAC1C,kEAAgD;AAChD,+DAA6C;AAC7C,oEAAkD;AAClD,kEAAgD;AAChD,yDAAuC;AACvC,+DAA6C;AAC7C,iEAA+C;AAC/C,+DAA6C;AAC7C,sDAAoC;AACpC,kDAAgC;AAChC,wDAAsC;AACtC,kEAAgD;AAChD,sEAAoD;AACpD,uEAAqD;AACrD,oDAAkC;AAClC,iEAA+C;AAC/C,mDAAiC;AACjC,iDAA+B;AAC/B,0DAAwC;AACxC,uDAAqC;AACrC,uDAAqC;AACrC,uDAAqC;AACrC,iFAA+D;AAC/D,iDAA+B;AAC/B,2EAAyD;AACzD,iFAA+D;AAC/D,yEAAuD;AACvD,sFAAoE;AACpE,6DAA2C;AAC3C,qEAAmD;AACnD,mDAAiC;AACjC,oEAAkD;AAClD,kEAAgD;AAChD,4DAA0C;AAC1C,8EAA4D;AAC5D,wDAAsC;AACtC,iEAA+C;AAC/C,8EAA4D;AAC5D,iEAA+C;AAC/C,0EAAwD;AACxD,wEAAsD;AACtD,yDAAuC;AACvC,2DAAyC;AACzC,wDAAsC;AACtC,mDAAiC;AACjC,4EAA0D;AAC1D,+EAA6D;AAC7D,uDAAqC;AACrC,4DAA0C;AAC1C,iDAA+B;AAC/B,kDAAgC;AAChC,4DAA0C;AAC1C,sEAAoD;AACpD,oEAAkD;AAClD,+DAA6C;AAC7C,gEAA8C;AAC9C,iEAA+C;AAC/C,2DAAyC;AACzC,mEAAiD;AACjD,iDAA+B;AAC/B,qDAAmC;AACnC,4DAA0C;AAC1C,8DAA4C;AAC5C,kDAAgC;AAChC,0DAAwC;AACxC,2DAAyC;AACzC,4DAA0C;AAC1C,oEAAkD;AAClD,2EAAyD;AACzD,kFAAgE;AAEhE,sDAAoD;AACpD,sDAAoD;AACpD,gDAA8C;AAC9C,yCAAuC;AACvC,+CAA6C;AAC7C,sDAAoD;AACpD,gDAA8C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/v4/events/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare enum ActivationType {
|
|
2
|
+
SOCIAL_CAMPAIGN = "SOCIAL_CAMPAIGN",
|
|
3
|
+
CONFERENCE = "CONFERENCE",
|
|
4
|
+
INFLUENCER = "INFLUENCER",
|
|
5
|
+
NEWSLETTER = "NEWSLETTER",
|
|
6
|
+
DEMO = "DEMO",
|
|
7
|
+
DARE_DROP = "DARE_DROP",
|
|
8
|
+
LUDEOS_ON_STOREFRONT = "LUDEOS_ON_STOREFRONT",
|
|
9
|
+
TEST_REQUEST = "TEST_REQUEST"
|
|
10
|
+
}
|
|
11
|
+
export declare class Activation {
|
|
12
|
+
id: string;
|
|
13
|
+
name: string;
|
|
14
|
+
initiator: string;
|
|
15
|
+
type: ActivationType;
|
|
16
|
+
input?: any;
|
|
17
|
+
userName: string;
|
|
18
|
+
activationUserId: string;
|
|
19
|
+
startDate: number;
|
|
20
|
+
endDate: number;
|
|
21
|
+
duration: number;
|
|
22
|
+
permittedUsers: string[];
|
|
23
|
+
nickname: string;
|
|
24
|
+
createdAt: number;
|
|
25
|
+
updatedAt: number;
|
|
26
|
+
}
|