@escapenavigator/services 1.10.161 → 1.10.162
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { create } from './create';
|
|
2
|
+
import { getById } from './get-by-id';
|
|
2
3
|
import { getProfileEmails } from './get-profile-emails';
|
|
3
4
|
import { query } from './query';
|
|
4
5
|
import { remove } from './remove';
|
|
@@ -7,6 +8,7 @@ import { resync } from './resync';
|
|
|
7
8
|
type ApiDeclaration = {
|
|
8
9
|
resync: typeof resync;
|
|
9
10
|
getProfileEmails: typeof getProfileEmails;
|
|
11
|
+
getById: typeof getById;
|
|
10
12
|
query: typeof query;
|
|
11
13
|
create: typeof create;
|
|
12
14
|
remove: typeof remove;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.emailsApiDeclaration = void 0;
|
|
4
4
|
var create_1 = require("./create");
|
|
5
|
+
var get_by_id_1 = require("./get-by-id");
|
|
5
6
|
var get_profile_emails_1 = require("./get-profile-emails");
|
|
6
7
|
var query_1 = require("./query");
|
|
7
8
|
var remove_1 = require("./remove");
|
|
@@ -10,6 +11,7 @@ var resync_1 = require("./resync");
|
|
|
10
11
|
exports.emailsApiDeclaration = {
|
|
11
12
|
resync: resync_1.resync,
|
|
12
13
|
getProfileEmails: get_profile_emails_1.getProfileEmails,
|
|
14
|
+
getById: get_by_id_1.getById,
|
|
13
15
|
query: query_1.query,
|
|
14
16
|
create: create_1.create,
|
|
15
17
|
resend: resend_1.resend,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { GameSessionEventDto } from '@escapenavigator/types/dist/game-session/game-session-event.dto';
|
|
2
1
|
import { GameSessionRO } from '@escapenavigator/types/dist/game-session/game-session.ro';
|
|
2
|
+
import { GameSessionEventDto } from '@escapenavigator/types/dist/game-session/game-session-event.dto';
|
|
3
3
|
import { ApiMethodDeclaration } from '..';
|
|
4
4
|
type ParamsData = {
|
|
5
5
|
id: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escapenavigator/services",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.162",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "rm -rf dist && tsc --project tsconfig.json"
|
|
14
14
|
},
|
|
15
|
-
"gitHead": "
|
|
15
|
+
"gitHead": "6ba35e576b925e6345c5f2114185de04e3d072e0",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@escapenavigator/types": "^1.10.150",
|
|
18
|
-
"@escapenavigator/utils": "^1.10.
|
|
18
|
+
"@escapenavigator/utils": "^1.10.157",
|
|
19
19
|
"axios": "^0.21.4",
|
|
20
20
|
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.2",
|