@escapenavigator/services 1.10.45 → 1.10.46
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.
|
@@ -56,6 +56,7 @@ import { cancelSubscription } from './subscription/remove-subscription';
|
|
|
56
56
|
import { updateSubscription } from './subscription/update-subscription';
|
|
57
57
|
import { createVRRoomGroup } from './vr/create';
|
|
58
58
|
import { deleteVRRoomGroup } from './vr/delete';
|
|
59
|
+
import { getAllVRRoomsGroups } from './vr/get-all';
|
|
59
60
|
import { getVRRoomGroup } from './vr/get-one';
|
|
60
61
|
import { updateVRRoomGroup } from './vr/update';
|
|
61
62
|
import { getProfileWaiver } from './waiver/get-profile-waiver';
|
|
@@ -74,6 +75,7 @@ import { updateCrmVerification } from './update-crm-verification';
|
|
|
74
75
|
import { updatePartnerProgram } from './update-partner-program';
|
|
75
76
|
import { updateStep } from './update-step';
|
|
76
77
|
type ApiDeclaration = {
|
|
78
|
+
getAllVRRoomsGroups: typeof getAllVRRoomsGroups;
|
|
77
79
|
deleteVRRoomGroup: typeof deleteVRRoomGroup;
|
|
78
80
|
createVRRoomGroup: typeof createVRRoomGroup;
|
|
79
81
|
getVRRoomGroup: typeof getVRRoomGroup;
|
|
@@ -59,6 +59,7 @@ var remove_subscription_1 = require("./subscription/remove-subscription");
|
|
|
59
59
|
var update_subscription_1 = require("./subscription/update-subscription");
|
|
60
60
|
var create_3 = require("./vr/create");
|
|
61
61
|
var delete_1 = require("./vr/delete");
|
|
62
|
+
var get_all_1 = require("./vr/get-all");
|
|
62
63
|
var get_one_1 = require("./vr/get-one");
|
|
63
64
|
var update_2 = require("./vr/update");
|
|
64
65
|
var get_profile_waiver_1 = require("./waiver/get-profile-waiver");
|
|
@@ -77,6 +78,7 @@ var update_crm_verification_1 = require("./update-crm-verification");
|
|
|
77
78
|
var update_partner_program_1 = require("./update-partner-program");
|
|
78
79
|
var update_step_1 = require("./update-step");
|
|
79
80
|
exports.profilesApiDeclaration = {
|
|
81
|
+
getAllVRRoomsGroups: get_all_1.getAllVRRoomsGroups,
|
|
80
82
|
updateVRRoomGroup: update_2.updateVRRoomGroup,
|
|
81
83
|
updateNotificationChanel: update_1.updateNotificationChanel,
|
|
82
84
|
getVRRoomGroup: get_one_1.getVRRoomGroup,
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { VRRoomGroupRO } from '@escapenavigator/types/dist/vr/ro';
|
|
2
|
+
import { ApiMethodDeclaration } from 'src/api';
|
|
3
|
+
type GetGroupParams = undefined;
|
|
4
|
+
type GetGroupResponse = VRRoomGroupRO[];
|
|
5
|
+
export declare const getAllVRRoomsGroups: ApiMethodDeclaration<GetGroupParams, GetGroupResponse>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getAllVRRoomsGroups = void 0;
|
|
4
|
+
var getAllVRRoomsGroups = function () { return ({
|
|
5
|
+
url: '/vr/room-groups',
|
|
6
|
+
method: 'GET',
|
|
7
|
+
}); };
|
|
8
|
+
exports.getAllVRRoomsGroups = getAllVRRoomsGroups;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escapenavigator/services",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.46",
|
|
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": "931fe84076ada17067b247e256036b84a7f19146",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@escapenavigator/types": "^1.10.
|
|
18
|
-
"@escapenavigator/utils": "^1.10.
|
|
17
|
+
"@escapenavigator/types": "^1.10.41",
|
|
18
|
+
"@escapenavigator/utils": "^1.10.45",
|
|
19
19
|
"axios": "^0.21.4",
|
|
20
20
|
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.2",
|