@truelab/trueserver 0.0.4 → 0.1.0
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/CHANGELOG.md +67 -0
- package/MIGRATION.md +508 -0
- package/README.md +114 -94
- package/dist/application.d.ts.map +1 -1
- package/dist/application.js +9 -5
- package/dist/application.js.map +1 -1
- package/dist/examples.d.ts +1 -0
- package/dist/examples.d.ts.map +1 -1
- package/dist/examples.js +3 -1
- package/dist/examples.js.map +1 -1
- package/dist/helpers/config.helper.d.ts +9 -1
- package/dist/helpers/config.helper.d.ts.map +1 -1
- package/dist/helpers/config.helper.js +29 -0
- package/dist/helpers/config.helper.js.map +1 -1
- package/dist/helpers/errors.helper.d.ts +19 -0
- package/dist/helpers/errors.helper.d.ts.map +1 -0
- package/dist/helpers/errors.helper.js +21 -0
- package/dist/helpers/errors.helper.js.map +1 -0
- package/dist/helpers/fastify.helper.d.ts +5 -1
- package/dist/helpers/fastify.helper.d.ts.map +1 -1
- package/dist/helpers/fastify.helper.js +3 -1
- package/dist/helpers/fastify.helper.js.map +1 -1
- package/dist/helpers/handlers.helper.d.ts +10 -1
- package/dist/helpers/handlers.helper.d.ts.map +1 -1
- package/dist/helpers/handlers.helper.js +2 -1
- package/dist/helpers/handlers.helper.js.map +1 -1
- package/dist/helpers/money.helper.d.ts +13 -0
- package/dist/helpers/money.helper.d.ts.map +1 -0
- package/dist/helpers/money.helper.js +29 -0
- package/dist/helpers/money.helper.js.map +1 -0
- package/dist/index.d.ts +7 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/dist/plugins/404.plugin.d.ts.map +1 -1
- package/dist/plugins/404.plugin.js +2 -1
- package/dist/plugins/404.plugin.js.map +1 -1
- package/dist/plugins/apikey.plugin.d.ts.map +1 -1
- package/dist/plugins/apikey.plugin.js +6 -7
- package/dist/plugins/apikey.plugin.js.map +1 -1
- package/dist/plugins/error.plugin.d.ts.map +1 -1
- package/dist/plugins/error.plugin.js +6 -2
- package/dist/plugins/error.plugin.js.map +1 -1
- package/dist/plugins/sentry.plugin.d.ts.map +1 -1
- package/dist/plugins/sentry.plugin.js +1 -2
- package/dist/plugins/sentry.plugin.js.map +1 -1
- package/dist/plugins/swagger.plugin.d.ts.map +1 -1
- package/dist/plugins/swagger.plugin.js +5 -1
- package/dist/plugins/swagger.plugin.js.map +1 -1
- package/dist/routes/checksum/checksum.route.d.ts +3 -0
- package/dist/routes/checksum/checksum.route.d.ts.map +1 -0
- package/dist/routes/checksum/checksum.route.js +21 -0
- package/dist/routes/checksum/checksum.route.js.map +1 -0
- package/dist/routes/checksum/index.d.ts +3 -0
- package/dist/routes/checksum/index.d.ts.map +1 -0
- package/dist/routes/checksum/index.js +12 -0
- package/dist/routes/checksum/index.js.map +1 -0
- package/dist/routes/client/client.route.d.ts +3 -0
- package/dist/routes/client/client.route.d.ts.map +1 -0
- package/dist/routes/{client.route.js → client/client.route.js} +5 -5
- package/dist/routes/client/client.route.js.map +1 -0
- package/dist/routes/client/index.d.ts +3 -0
- package/dist/routes/client/index.d.ts.map +1 -0
- package/dist/routes/client/index.js +12 -0
- package/dist/routes/client/index.js.map +1 -0
- package/dist/routes/config/config.route.js +1 -1
- package/dist/routes/config/config.route.js.map +1 -1
- package/dist/routes/config/config.route.validate.plugin.d.ts.map +1 -1
- package/dist/routes/config/config.route.validate.plugin.js +48 -17
- package/dist/routes/config/config.route.validate.plugin.js.map +1 -1
- package/dist/routes/play/play.route.validate.plugin.d.ts +10 -9
- package/dist/routes/play/play.route.validate.plugin.d.ts.map +1 -1
- package/dist/routes/play/play.route.validate.plugin.js +90 -39
- package/dist/routes/play/play.route.validate.plugin.js.map +1 -1
- package/dist/routes/validate/validate.route.validate.plugin.d.ts.map +1 -1
- package/dist/routes/validate/validate.route.validate.plugin.js +5 -4
- package/dist/routes/validate/validate.route.validate.plugin.js.map +1 -1
- package/dist/routes-public/healthcheck.route.d.ts.map +1 -0
- package/dist/{routes → routes-public}/healthcheck.route.js +4 -10
- package/dist/routes-public/healthcheck.route.js.map +1 -0
- package/dist/schemas/checksum.schema.d.ts +11 -0
- package/dist/schemas/checksum.schema.d.ts.map +1 -0
- package/dist/schemas/checksum.schema.js +26 -0
- package/dist/schemas/checksum.schema.js.map +1 -0
- package/dist/schemas/client.schema.d.ts +1 -1
- package/dist/schemas/client.schema.js +4 -4
- package/dist/schemas/client.schema.js.map +1 -1
- package/dist/schemas/config.schema.d.ts +17 -20
- package/dist/schemas/config.schema.d.ts.map +1 -1
- package/dist/schemas/config.schema.js +42 -43
- package/dist/schemas/config.schema.js.map +1 -1
- package/dist/schemas/examples/checksum.schema.examples.d.ts +3 -0
- package/dist/schemas/examples/checksum.schema.examples.d.ts.map +1 -0
- package/dist/schemas/examples/checksum.schema.examples.js +26 -0
- package/dist/schemas/examples/checksum.schema.examples.js.map +1 -0
- package/dist/schemas/examples/client.schema.examples.d.ts.map +1 -1
- package/dist/schemas/examples/client.schema.examples.js +15 -18
- package/dist/schemas/examples/client.schema.examples.js.map +1 -1
- package/dist/schemas/examples/config.schema.examples.d.ts.map +1 -1
- package/dist/schemas/examples/config.schema.examples.js +65 -33
- package/dist/schemas/examples/config.schema.examples.js.map +1 -1
- package/dist/schemas/examples/healthcheck.schema.examples.d.ts.map +1 -1
- package/dist/schemas/examples/healthcheck.schema.examples.js +3 -14
- package/dist/schemas/examples/healthcheck.schema.examples.js.map +1 -1
- package/dist/schemas/examples/play.schema.examples.d.ts.map +1 -1
- package/dist/schemas/examples/play.schema.examples.js +94 -130
- package/dist/schemas/examples/play.schema.examples.js.map +1 -1
- package/dist/schemas/examples/validate.schema.examples.d.ts.map +1 -1
- package/dist/schemas/examples/validate.schema.examples.js +51 -41
- package/dist/schemas/examples/validate.schema.examples.js.map +1 -1
- package/dist/schemas/healthcheck.schema.d.ts +2 -20
- package/dist/schemas/healthcheck.schema.d.ts.map +1 -1
- package/dist/schemas/healthcheck.schema.js +10 -41
- package/dist/schemas/healthcheck.schema.js.map +1 -1
- package/dist/schemas/play.schema.d.ts +22 -17
- package/dist/schemas/play.schema.d.ts.map +1 -1
- package/dist/schemas/play.schema.js +37 -45
- package/dist/schemas/play.schema.js.map +1 -1
- package/dist/schemas/shared.d.ts +13 -21
- package/dist/schemas/shared.d.ts.map +1 -1
- package/dist/schemas/shared.js +56 -72
- package/dist/schemas/shared.js.map +1 -1
- package/dist/schemas/validate.schema.d.ts +11 -7
- package/dist/schemas/validate.schema.d.ts.map +1 -1
- package/dist/schemas/validate.schema.js +14 -16
- package/dist/schemas/validate.schema.js.map +1 -1
- package/package.json +5 -2
- package/dist/plugins/metrics.plugin.d.ts +0 -9
- package/dist/plugins/metrics.plugin.d.ts.map +0 -1
- package/dist/plugins/metrics.plugin.js +0 -24
- package/dist/plugins/metrics.plugin.js.map +0 -1
- package/dist/routes/client.route.d.ts +0 -3
- package/dist/routes/client.route.d.ts.map +0 -1
- package/dist/routes/client.route.js.map +0 -1
- package/dist/routes/healthcheck.route.d.ts.map +0 -1
- package/dist/routes/healthcheck.route.js.map +0 -1
- /package/dist/{routes → routes-public}/healthcheck.route.d.ts +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.schema.js","sourceRoot":"","sources":["../../schemas/config.schema.ts"],"names":[],"mappings":";;;AAAA,qCAAsC;AAEtC,8EAAuE;AACvE,
|
|
1
|
+
{"version":3,"file":"config.schema.js","sourceRoot":"","sources":["../../schemas/config.schema.ts"],"names":[],"mappings":";;;AAAA,qCAAsC;AAEtC,8EAAuE;AACvE,qCAA0C;AAE7B,QAAA,mBAAmB,GAAG,cAAI,CAAC,MAAM,CAAC,EAAE,EAAE;IAC/C,GAAG,EAAE,eAAe;IACpB,oBAAoB,EAAE,KAAK;CAC9B,CAAC,CAAA;AAEW,QAAA,iBAAiB,GAAG,cAAI,CAAC,MAAM,CAAC;IACzC,MAAM,EAAE,cAAI,CAAC,MAAM,CAAC;QAChB,WAAW,EAAE,2FAA2F;KAC3G,CAAC;IACF,UAAU,EAAE,cAAI,CAAC,MAAM,CAAC;QACpB,WAAW,EAAE,gEAAgE;QAC7E,IAAI,EAAE,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC;KACjD,CAAC;IACF,GAAG,EAAE,cAAI,CAAC,MAAM,CAAC;QACb,WAAW,EAAE,4EAA4E;QACzF,OAAO,EAAE,kBAAkB;KAC9B,CAAC;IACF,UAAU,EAAE,cAAI,CAAC,MAAM,CAAC;QACpB,WAAW,EAAE,8IAA8I;QAC3J,SAAS,EAAE,CAAC;KACf,CAAC;IACF,OAAO,EAAE,cAAI,CAAC,OAAO,CAAC;QAClB,WAAW,EAAE,2EAA2E;KAC3F,CAAC;IACF,SAAS,EAAE,cAAI,CAAC,OAAO,CAAC;QACpB,WAAW,EAAE,2EAA2E;KAC3F,CAAC;IACF,UAAU,EAAE,cAAI,CAAC,OAAO,CAAC;QACrB,WAAW,EAAE,2FAA2F;KAC3G,CAAC;IACF,aAAa,EAAE,cAAI,CAAC,OAAO,CAAC;QACxB,WAAW,EAAE,sDAAsD;KACtE,CAAC;IACF,iBAAiB,EAAE,cAAI,CAAC,OAAO,CAAC;QAC5B,WAAW,EAAE,6FAA6F;KAC7G,CAAC;IACF,cAAc,EAAE,cAAI,CAAC,QAAQ,CAAC,cAAI,CAAC,KAAK,CAAC,cAAI,CAAC,MAAM,CAAC,EAAE,gBAAgB,EAAE,CAAC,EAAE,CAAC,EAAE;QAC3E,WAAW,EAAE,sJAAsJ;QACnK,QAAQ,EAAE,CAAC;KACd,CAAC,CAAC;IACH,YAAY,EAAE,cAAI,CAAC,QAAQ,CAAC,cAAI,CAAC,MAAM,CAAC;QACpC,WAAW,EAAE,kHAAkH;QAC/H,gBAAgB,EAAE,CAAC;KACtB,CAAC,CAAC;IACH,SAAS,EAAE,cAAI,CAAC,QAAQ,CAAC,cAAI,CAAC,MAAM,CAAC;QACjC,WAAW,EAAE,iGAAiG;QAC9G,gBAAgB,EAAE,CAAC;KACtB,CAAC,CAAC;IACH,MAAM,EAAE,cAAI,CAAC,MAAM,CAAC;QAChB,WAAW,EAAE,oEAAoE;QACjF,OAAO,EAAE,CAAC;KACb,CAAC;IACF,MAAM,EAAE,cAAI,CAAC,MAAM,CAAC;QAChB,WAAW,EAAE,oEAAoE;QACjF,gBAAgB,EAAE,CAAC;KACtB,CAAC;IACF,iBAAiB,EAAE,cAAI,CAAC,OAAO,CAAC;QAC5B,WAAW,EAAE,+CAA+C;KAC/D,CAAC;IACF,WAAW,EAAE,cAAI,CAAC,OAAO,CAAC;QACtB,WAAW,EAAE,8FAA8F;KAC9G,CAAC;IACF,UAAU,EAAE,cAAI,CAAC,KAAK,CAAC,wBAAe,EAAE;QACpC,WAAW,EAAE,+CAA+C;QAC5D,QAAQ,EAAE,CAAC;KACd,CAAC;CACL,EAAE;IACC,GAAG,EAAE,aAAa;IAClB,oBAAoB,EAAE,KAAK;IAC3B,YAAY,EAAE,4CAAmB;CACpC,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"checksum.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/checksum.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAmBrC,eAAO,MAAM,qBAAqB,EAAE,SAKnC,CAAA"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.checksumReplyExamples = void 0;
|
|
4
|
+
const defaultReply = {
|
|
5
|
+
files: [
|
|
6
|
+
{
|
|
7
|
+
path: 'src/math/probabilities.json',
|
|
8
|
+
hash: '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08',
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
path: 'src/math/paytable.json',
|
|
12
|
+
hash: '6c1bb5c8c2e6c4f1d0e3a7b8e1d4f7a0e2c5b8d1f3e6a9b2c5d8e1f4a7b0c3d6',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
path: 'src/math/spin.js',
|
|
16
|
+
hash: '3a4f6a4f3a4f6a4f3a4f6a4f3a4f6a4f3a4f6a4f3a4f6a4f3a4f6a4f3a4f6a4f',
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
};
|
|
20
|
+
exports.checksumReplyExamples = {
|
|
21
|
+
default: {
|
|
22
|
+
summary: 'Default reply',
|
|
23
|
+
value: defaultReply,
|
|
24
|
+
},
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=checksum.schema.examples.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"checksum.schema.examples.js","sourceRoot":"","sources":["../../../schemas/examples/checksum.schema.examples.ts"],"names":[],"mappings":";;;AAEA,MAAM,YAAY,GAAG;IACjB,KAAK,EAAE;QACH;YACI,IAAI,EAAE,6BAA6B;YACnC,IAAI,EAAE,kEAAkE;SAC3E;QACD;YACI,IAAI,EAAE,wBAAwB;YAC9B,IAAI,EAAE,kEAAkE;SAC3E;QACD;YACI,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE,kEAAkE;SAC3E;KACJ;CACJ,CAAA;AAEY,QAAA,qBAAqB,GAAc;IAC5C,OAAO,EAAE;QACL,OAAO,EAAE,eAAe;QACxB,KAAK,EAAE,YAAY;KACtB;CACJ,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/client.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"client.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/client.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAmBrC,eAAO,MAAM,mBAAmB,EAAE,SASjC,CAAA"}
|
|
@@ -2,25 +2,18 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.clientReplyExamples = void 0;
|
|
4
4
|
const defaultReply = {
|
|
5
|
-
ok: true,
|
|
6
5
|
data: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
[0, 0, 0, 9, 27, 135, 540],
|
|
19
|
-
[0, 0, 0, 15, 45, 225, 900],
|
|
20
|
-
[0, 0, 0, 15, 45, 225, 900],
|
|
21
|
-
[0, 0, 0, 36, 120, 600, 2400],
|
|
22
|
-
[0, 0, 0, 36, 120, 600, 2400],
|
|
23
|
-
],
|
|
6
|
+
paytable: {},
|
|
7
|
+
numReels: 5,
|
|
8
|
+
numRows: 3,
|
|
9
|
+
limitWin: 5000,
|
|
10
|
+
limitBets: 100,
|
|
11
|
+
},
|
|
12
|
+
};
|
|
13
|
+
const withTestReply = {
|
|
14
|
+
...defaultReply,
|
|
15
|
+
test: {
|
|
16
|
+
cheats: {},
|
|
24
17
|
},
|
|
25
18
|
};
|
|
26
19
|
exports.clientReplyExamples = {
|
|
@@ -28,5 +21,9 @@ exports.clientReplyExamples = {
|
|
|
28
21
|
summary: 'Default reply',
|
|
29
22
|
value: defaultReply,
|
|
30
23
|
},
|
|
24
|
+
withTest: {
|
|
25
|
+
summary: 'Reply with cheat-tool payload',
|
|
26
|
+
value: withTestReply,
|
|
27
|
+
},
|
|
31
28
|
};
|
|
32
29
|
//# sourceMappingURL=client.schema.examples.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.schema.examples.js","sourceRoot":"","sources":["../../../schemas/examples/client.schema.examples.ts"],"names":[],"mappings":";;;AAEA,MAAM,YAAY,GAAG;IACjB,
|
|
1
|
+
{"version":3,"file":"client.schema.examples.js","sourceRoot":"","sources":["../../../schemas/examples/client.schema.examples.ts"],"names":[],"mappings":";;;AAEA,MAAM,YAAY,GAAG;IACjB,IAAI,EAAE;QACF,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE,CAAC;QACX,OAAO,EAAE,CAAC;QACV,QAAQ,EAAE,IAAI;QACd,SAAS,EAAE,GAAG;KACjB;CACJ,CAAA;AAED,MAAM,aAAa,GAAG;IAClB,GAAG,YAAY;IACf,IAAI,EAAE;QACF,MAAM,EAAE,EAAE;KACb;CACJ,CAAA;AAEY,QAAA,mBAAmB,GAAc;IAC1C,OAAO,EAAE;QACL,OAAO,EAAE,eAAe;QACxB,KAAK,EAAE,YAAY;KACtB;IACD,QAAQ,EAAE;QACN,OAAO,EAAE,+BAA+B;QACxC,KAAK,EAAE,aAAa;KACvB;CACJ,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/config.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"config.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/config.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,WAAW,CAAA;AA0EjD,eAAO,MAAM,mBAAmB,EAAE,SAajC,CAAA"}
|
|
@@ -2,55 +2,87 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.configReplyExamples = void 0;
|
|
4
4
|
const shared_1 = require("../shared");
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
const fixedLevelsReply = {
|
|
6
|
+
gameId: 'book-of-odin',
|
|
7
|
+
volatility: 2.5,
|
|
8
|
+
rtp: '96.17',
|
|
9
|
+
rtpVersion: '96',
|
|
10
|
+
hasMeta: true,
|
|
11
|
+
hasChoice: true,
|
|
12
|
+
hasRestore: true,
|
|
13
|
+
hasMultiStake: false,
|
|
14
|
+
hasVariableLevels: false,
|
|
15
|
+
coinRatio: 20,
|
|
16
|
+
minWin: 0.1,
|
|
17
|
+
maxWin: 10000,
|
|
18
|
+
freeroundsAllowed: true,
|
|
19
|
+
hasValidate: false,
|
|
9
20
|
stakeModes: [
|
|
10
21
|
{
|
|
11
22
|
name: 'default',
|
|
12
|
-
type:
|
|
23
|
+
type: shared_1.EStakeType.default,
|
|
13
24
|
bets: 1,
|
|
14
25
|
parametric: false,
|
|
15
|
-
multiple: true,
|
|
16
|
-
maxQty: 100,
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
name: 'bonusBet',
|
|
20
|
-
type: shared_1.EStakeType.bonusBet,
|
|
21
|
-
bets: 1.25,
|
|
22
|
-
parametric: false,
|
|
23
|
-
multiple: true,
|
|
24
|
-
maxQty: 100,
|
|
25
26
|
},
|
|
26
27
|
{
|
|
27
28
|
name: 'buyBonus',
|
|
28
29
|
type: shared_1.EStakeType.buy,
|
|
29
30
|
bets: 100,
|
|
30
31
|
parametric: false,
|
|
31
|
-
multiple: true,
|
|
32
|
-
maxQty: 100,
|
|
33
32
|
},
|
|
34
33
|
],
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
34
|
+
};
|
|
35
|
+
const variableLevelsReply = {
|
|
36
|
+
...fixedLevelsReply,
|
|
37
|
+
hasVariableLevels: true,
|
|
38
|
+
variableLevels: [1, 3, 5, 7, 9, 10],
|
|
39
|
+
defaultLevel: 9,
|
|
40
|
+
coinRatio: undefined,
|
|
41
|
+
};
|
|
42
|
+
// Per-contract invariants: hasMultiStake=true requires freeroundsAllowed=false and hasValidate=true
|
|
43
|
+
const multiStakeReply = {
|
|
44
|
+
gameId: 'roulette-classic',
|
|
45
|
+
volatility: 1,
|
|
46
|
+
rtp: '97.30',
|
|
47
|
+
rtpVersion: '97',
|
|
48
|
+
hasMeta: false,
|
|
49
|
+
hasChoice: false,
|
|
50
|
+
hasRestore: false,
|
|
41
51
|
hasMultiStake: true,
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
52
|
+
hasVariableLevels: false,
|
|
53
|
+
coinRatio: 1,
|
|
54
|
+
minWin: 0,
|
|
55
|
+
maxWin: 35,
|
|
56
|
+
freeroundsAllowed: false,
|
|
57
|
+
hasValidate: true,
|
|
58
|
+
stakeModes: [
|
|
59
|
+
{
|
|
60
|
+
name: 'straight',
|
|
61
|
+
type: shared_1.EStakeType.default,
|
|
62
|
+
bets: 1,
|
|
63
|
+
multiple: true,
|
|
64
|
+
maxQty: 37,
|
|
65
|
+
parametric: true,
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
name: 'red',
|
|
69
|
+
type: shared_1.EStakeType.default,
|
|
70
|
+
bets: 1,
|
|
71
|
+
},
|
|
72
|
+
],
|
|
49
73
|
};
|
|
50
74
|
exports.configReplyExamples = {
|
|
51
|
-
|
|
52
|
-
summary: '
|
|
53
|
-
value:
|
|
75
|
+
fixedLevels: {
|
|
76
|
+
summary: 'Fixed-levels game (coinRatio)',
|
|
77
|
+
value: fixedLevelsReply,
|
|
78
|
+
},
|
|
79
|
+
variableLevels: {
|
|
80
|
+
summary: 'Variable-levels game (variableLevels + defaultLevel)',
|
|
81
|
+
value: variableLevelsReply,
|
|
82
|
+
},
|
|
83
|
+
multiStake: {
|
|
84
|
+
summary: 'Multi-stake game (hasMultiStake=true, freeroundsAllowed=false, hasValidate=true)',
|
|
85
|
+
value: multiStakeReply,
|
|
54
86
|
},
|
|
55
87
|
};
|
|
56
88
|
//# sourceMappingURL=config.schema.examples.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.schema.examples.js","sourceRoot":"","sources":["../../../schemas/examples/config.schema.examples.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"config.schema.examples.js","sourceRoot":"","sources":["../../../schemas/examples/config.schema.examples.ts"],"names":[],"mappings":";;;AAAA,sCAAiD;AAEjD,MAAM,gBAAgB,GAAG;IACrB,MAAM,EAAE,cAAc;IACtB,UAAU,EAAE,GAAG;IACf,GAAG,EAAE,OAAO;IACZ,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE,IAAI;IACb,SAAS,EAAE,IAAI;IACf,UAAU,EAAE,IAAI;IAChB,aAAa,EAAE,KAAK;IACpB,iBAAiB,EAAE,KAAK;IACxB,SAAS,EAAE,EAAE;IACb,MAAM,EAAE,GAAG;IACX,MAAM,EAAE,KAAK;IACb,iBAAiB,EAAE,IAAI;IACvB,WAAW,EAAE,KAAK;IAClB,UAAU,EAAE;QACR;YACI,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,mBAAU,CAAC,OAAO;YACxB,IAAI,EAAE,CAAC;YACP,UAAU,EAAE,KAAK;SACpB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,mBAAU,CAAC,GAAG;YACpB,IAAI,EAAE,GAAG;YACT,UAAU,EAAE,KAAK;SACpB;KACJ;CACJ,CAAA;AAED,MAAM,mBAAmB,GAAG;IACxB,GAAG,gBAAgB;IACnB,iBAAiB,EAAE,IAAI;IACvB,cAAc,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;IACnC,YAAY,EAAE,CAAC;IACf,SAAS,EAAE,SAAS;CACvB,CAAA;AAED,oGAAoG;AACpG,MAAM,eAAe,GAAG;IACpB,MAAM,EAAE,kBAAkB;IAC1B,UAAU,EAAE,CAAC;IACb,GAAG,EAAE,OAAO;IACZ,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,KAAK;IAChB,UAAU,EAAE,KAAK;IACjB,aAAa,EAAE,IAAI;IACnB,iBAAiB,EAAE,KAAK;IACxB,SAAS,EAAE,CAAC;IACZ,MAAM,EAAE,CAAC;IACT,MAAM,EAAE,EAAE;IACV,iBAAiB,EAAE,KAAK;IACxB,WAAW,EAAE,IAAI;IACjB,UAAU,EAAE;QACR;YACI,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,mBAAU,CAAC,OAAO;YACxB,IAAI,EAAE,CAAC;YACP,QAAQ,EAAE,IAAI;YACd,MAAM,EAAE,EAAE;YACV,UAAU,EAAE,IAAI;SACnB;QACD;YACI,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,mBAAU,CAAC,OAAO;YACxB,IAAI,EAAE,CAAC;SACV;KACJ;CACJ,CAAA;AAEY,QAAA,mBAAmB,GAAc;IAC1C,WAAW,EAAE;QACT,OAAO,EAAE,+BAA+B;QACxC,KAAK,EAAE,gBAAgB;KAC1B;IACD,cAAc,EAAE;QACZ,OAAO,EAAE,sDAAsD;QAC/D,KAAK,EAAE,mBAAmB;KAC7B;IACD,UAAU,EAAE;QACR,OAAO,EAAE,kFAAkF;QAC3F,KAAK,EAAE,eAAe;KACzB;CACJ,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"healthcheck.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/healthcheck.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"healthcheck.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/healthcheck.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAUrC,eAAO,MAAM,wBAAwB,EAAE,SAKtC,CAAA"}
|
|
@@ -2,22 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.healthcheckReplyExamples = void 0;
|
|
4
4
|
const defaultReply = {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
environment: '
|
|
8
|
-
service: 'crazy-mix',
|
|
5
|
+
ok: true,
|
|
6
|
+
gameId: 'book-of-odin',
|
|
7
|
+
environment: 'production',
|
|
9
8
|
uptime: 423.825598962,
|
|
10
|
-
message: 'OK',
|
|
11
9
|
timestamp: 1666026861687,
|
|
12
|
-
metrics: {
|
|
13
|
-
requests: {
|
|
14
|
-
success: 18526,
|
|
15
|
-
failed: 2,
|
|
16
|
-
},
|
|
17
|
-
},
|
|
18
|
-
services: {
|
|
19
|
-
sentry: true,
|
|
20
|
-
},
|
|
21
10
|
};
|
|
22
11
|
exports.healthcheckReplyExamples = {
|
|
23
12
|
default: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"healthcheck.schema.examples.js","sourceRoot":"","sources":["../../../schemas/examples/healthcheck.schema.examples.ts"],"names":[],"mappings":";;;AAEA,MAAM,YAAY,GAAG;IACjB,
|
|
1
|
+
{"version":3,"file":"healthcheck.schema.examples.js","sourceRoot":"","sources":["../../../schemas/examples/healthcheck.schema.examples.ts"],"names":[],"mappings":";;;AAEA,MAAM,YAAY,GAAG;IACjB,EAAE,EAAE,IAAI;IACR,MAAM,EAAE,cAAc;IACtB,WAAW,EAAE,YAAY;IACzB,MAAM,EAAE,aAAa;IACrB,SAAS,EAAE,aAAa;CAC3B,CAAA;AAEY,QAAA,wBAAwB,GAAc;IAC/C,OAAO,EAAE;QACL,OAAO,EAAE,eAAe;QACxB,KAAK,EAAE,YAAY;KACtB;CACJ,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"play.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/play.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"play.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/play.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAmGrC,eAAO,MAAM,mBAAmB,EAAE,SAiBjC,CAAA;AAED,eAAO,MAAM,iBAAiB,EAAE,SAiB/B,CAAA"}
|
|
@@ -1,165 +1,129 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.playReplyExamples = exports.playRequestExamples = void 0;
|
|
4
|
-
const
|
|
5
|
-
|
|
4
|
+
const openingStepRequest = {
|
|
5
|
+
isDemo: false,
|
|
6
6
|
currencyDecimals: 2,
|
|
7
|
+
stepIndex: 0,
|
|
7
8
|
stakes: [{
|
|
8
|
-
name: 'default',
|
|
9
|
+
name: 'default',
|
|
10
|
+
amount: 1.0,
|
|
11
|
+
coinValue: 0.1,
|
|
12
|
+
level: 9,
|
|
9
13
|
}],
|
|
10
|
-
isGambleAllowed: false,
|
|
11
|
-
metaPublic: '{}',
|
|
12
|
-
metaPrivate: '{}',
|
|
13
14
|
};
|
|
14
|
-
const
|
|
15
|
-
|
|
15
|
+
const continuationStepRequest = {
|
|
16
|
+
isDemo: false,
|
|
16
17
|
currencyDecimals: 2,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
left: 10, right: 90,
|
|
24
|
-
}),
|
|
25
|
-
}, {
|
|
26
|
-
name: 'cell',
|
|
27
|
-
amount: 75,
|
|
28
|
-
level: 2,
|
|
29
|
-
qty: 6,
|
|
30
|
-
params: JSON.stringify({
|
|
31
|
-
value: 14,
|
|
32
|
-
}),
|
|
33
|
-
}],
|
|
34
|
-
isGambleAllowed: true,
|
|
35
|
-
test: JSON.stringify({
|
|
36
|
-
symbols: {
|
|
37
|
-
value: 'Wild',
|
|
38
|
-
},
|
|
39
|
-
randomNumbers: {
|
|
40
|
-
value: '0,0,0,0,0',
|
|
41
|
-
},
|
|
42
|
-
}),
|
|
43
|
-
metaPublic: JSON.stringify({
|
|
44
|
-
someProgress: 15,
|
|
45
|
-
}),
|
|
46
|
-
metaPrivate: JSON.stringify({
|
|
47
|
-
coinsTotal: 1480,
|
|
48
|
-
}),
|
|
49
|
-
choice: 2,
|
|
50
|
-
};
|
|
51
|
-
const buyBonusRequest = {
|
|
52
|
-
...minimalRequest,
|
|
53
|
-
stakes: [{
|
|
54
|
-
name: 'buyBonus', amount: 30,
|
|
55
|
-
}],
|
|
56
|
-
};
|
|
57
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
58
|
-
const { stakes, ...withoutStakes } = minimalRequest;
|
|
59
|
-
const makeChoiceRequest = {
|
|
60
|
-
...withoutStakes,
|
|
61
|
-
choice: 0,
|
|
62
|
-
metaPrivate: JSON.stringify({
|
|
63
|
-
coinsTotal: 100,
|
|
64
|
-
}),
|
|
65
|
-
};
|
|
66
|
-
const metaDataRequest = {
|
|
67
|
-
...minimalRequest,
|
|
68
|
-
metaPublic: JSON.stringify({
|
|
69
|
-
someProgress: 15,
|
|
70
|
-
}),
|
|
71
|
-
metaPrivate: JSON.stringify({
|
|
72
|
-
hiddenProperty: 'value',
|
|
73
|
-
}),
|
|
74
|
-
};
|
|
75
|
-
const cheatRequest = {
|
|
76
|
-
...minimalRequest,
|
|
77
|
-
test: JSON.stringify({
|
|
78
|
-
symbols: {
|
|
79
|
-
value: 'Wild',
|
|
80
|
-
},
|
|
81
|
-
randomNumbers: {
|
|
82
|
-
value: '0,0,0,0,0',
|
|
83
|
-
},
|
|
84
|
-
}),
|
|
85
|
-
};
|
|
86
|
-
const variabelLinesRequest = {
|
|
87
|
-
...minimalRequest,
|
|
88
|
-
stakes: [{
|
|
89
|
-
name: 'default', amount: 75, level: 2,
|
|
90
|
-
}],
|
|
18
|
+
stepIndex: 1,
|
|
19
|
+
choice: 3,
|
|
20
|
+
meta: {
|
|
21
|
+
public: { someProgress: 15 },
|
|
22
|
+
private: { coinsTotal: 1480 },
|
|
23
|
+
},
|
|
91
24
|
};
|
|
92
25
|
const multiStakeRequest = {
|
|
93
|
-
|
|
26
|
+
isDemo: false,
|
|
27
|
+
currencyDecimals: 2,
|
|
28
|
+
stepIndex: 0,
|
|
94
29
|
stakes: [{
|
|
95
30
|
name: 'red',
|
|
96
|
-
amount:
|
|
31
|
+
amount: 30,
|
|
97
32
|
qty: 3,
|
|
98
33
|
}, {
|
|
99
34
|
name: 'single-27',
|
|
100
|
-
amount:
|
|
35
|
+
amount: 22,
|
|
101
36
|
qty: 11,
|
|
102
37
|
}],
|
|
103
38
|
};
|
|
104
|
-
const
|
|
105
|
-
|
|
106
|
-
|
|
39
|
+
const cheatRequest = {
|
|
40
|
+
...openingStepRequest,
|
|
41
|
+
test: JSON.stringify({
|
|
42
|
+
symbols: { value: 'Wild' },
|
|
43
|
+
randomNumbers: { value: '0,0,0,0,0' },
|
|
44
|
+
}),
|
|
45
|
+
};
|
|
46
|
+
const finishedReply = {
|
|
47
|
+
gameResponse: {},
|
|
48
|
+
rng: [
|
|
49
|
+
{ value: 0.1234567 },
|
|
50
|
+
{ value: 0.9876543 },
|
|
51
|
+
],
|
|
52
|
+
winCoins: 250,
|
|
53
|
+
winCash: 2.5,
|
|
107
54
|
finished: true,
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
55
|
+
hasMaxWin: false,
|
|
56
|
+
};
|
|
57
|
+
const continuesWithChoiceReply = {
|
|
58
|
+
gameResponse: {},
|
|
59
|
+
rng: [
|
|
60
|
+
{ value: 0.1234567 },
|
|
61
|
+
],
|
|
62
|
+
winCash: 0,
|
|
63
|
+
finished: false,
|
|
64
|
+
hasMaxWin: false,
|
|
65
|
+
choices: [1, 3, 5],
|
|
66
|
+
meta: {
|
|
67
|
+
public: {},
|
|
68
|
+
private: {},
|
|
112
69
|
},
|
|
113
70
|
};
|
|
114
|
-
const
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
71
|
+
const continuationStepReply = {
|
|
72
|
+
gameResponse: {},
|
|
73
|
+
rng: [
|
|
74
|
+
{ value: 0.5555555 },
|
|
75
|
+
{ value: 0.2222222 },
|
|
76
|
+
],
|
|
77
|
+
winCoins: 500,
|
|
78
|
+
winCash: 5.0,
|
|
79
|
+
finished: true,
|
|
80
|
+
hasMaxWin: false,
|
|
81
|
+
choice: 3,
|
|
82
|
+
};
|
|
83
|
+
const maxWinReply = {
|
|
84
|
+
gameResponse: {},
|
|
85
|
+
rng: [
|
|
86
|
+
{ value: 0.0001 },
|
|
87
|
+
],
|
|
88
|
+
winCoins: 100000,
|
|
89
|
+
winCash: 10000,
|
|
90
|
+
finished: true,
|
|
91
|
+
hasMaxWin: true,
|
|
120
92
|
};
|
|
121
93
|
exports.playRequestExamples = {
|
|
122
|
-
|
|
123
|
-
summary: '
|
|
124
|
-
value:
|
|
94
|
+
openingStep: {
|
|
95
|
+
summary: 'Opening step (round open)',
|
|
96
|
+
value: openingStepRequest,
|
|
125
97
|
},
|
|
126
|
-
|
|
127
|
-
summary: '
|
|
128
|
-
value:
|
|
98
|
+
continuationStep: {
|
|
99
|
+
summary: 'Continuation step (in-round choice)',
|
|
100
|
+
value: continuationStepRequest,
|
|
129
101
|
},
|
|
130
|
-
|
|
131
|
-
summary: '
|
|
132
|
-
value:
|
|
133
|
-
},
|
|
134
|
-
makeChoice: {
|
|
135
|
-
summary: 'Make choice',
|
|
136
|
-
value: makeChoiceRequest,
|
|
137
|
-
},
|
|
138
|
-
metaData: {
|
|
139
|
-
summary: 'Meta data',
|
|
140
|
-
value: metaDataRequest,
|
|
102
|
+
multiStake: {
|
|
103
|
+
summary: 'Multi stake (hasMultiStake=true)',
|
|
104
|
+
value: multiStakeRequest,
|
|
141
105
|
},
|
|
142
106
|
cheat: {
|
|
143
|
-
summary: 'Cheat',
|
|
107
|
+
summary: 'Cheat tool (non-production only)',
|
|
144
108
|
value: cheatRequest,
|
|
145
109
|
},
|
|
146
|
-
variabelLines: {
|
|
147
|
-
summary: 'Variable lines',
|
|
148
|
-
value: variabelLinesRequest,
|
|
149
|
-
},
|
|
150
|
-
multiStake: {
|
|
151
|
-
summary: 'Multi stake',
|
|
152
|
-
value: multiStakeRequest,
|
|
153
|
-
},
|
|
154
110
|
};
|
|
155
111
|
exports.playReplyExamples = {
|
|
156
|
-
|
|
157
|
-
summary: '
|
|
158
|
-
value:
|
|
112
|
+
finished: {
|
|
113
|
+
summary: 'Round finishes in one step',
|
|
114
|
+
value: finishedReply,
|
|
115
|
+
},
|
|
116
|
+
continuesWithChoice: {
|
|
117
|
+
summary: 'Round continues with a choice',
|
|
118
|
+
value: continuesWithChoiceReply,
|
|
119
|
+
},
|
|
120
|
+
continuationStep: {
|
|
121
|
+
summary: 'Continuation step reply (echoes choice)',
|
|
122
|
+
value: continuationStepReply,
|
|
159
123
|
},
|
|
160
|
-
|
|
161
|
-
summary: '
|
|
162
|
-
value:
|
|
124
|
+
maxWin: {
|
|
125
|
+
summary: 'Max-win hit (hasMaxWin=true, finished=true)',
|
|
126
|
+
value: maxWinReply,
|
|
163
127
|
},
|
|
164
128
|
};
|
|
165
129
|
//# sourceMappingURL=play.schema.examples.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"play.schema.examples.js","sourceRoot":"","sources":["../../../schemas/examples/play.schema.examples.ts"],"names":[],"mappings":";;;AAEA,MAAM,
|
|
1
|
+
{"version":3,"file":"play.schema.examples.js","sourceRoot":"","sources":["../../../schemas/examples/play.schema.examples.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/validate.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"validate.schema.examples.d.ts","sourceRoot":"","sources":["../../../schemas/examples/validate.schema.examples.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAmFrC,eAAO,MAAM,uBAAuB,EAAE,SAqBrC,CAAA;AAED,eAAO,MAAM,qBAAqB,EAAE,SASnC,CAAA"}
|