@escapenavigator/services 1.6.33 → 1.6.34
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.
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { OnboardingStepsRO } from '@escapenavigator/types/dist/profile/onboarding-steps.ro';
|
|
2
|
+
import { ApiMethodDeclaration } from '..';
|
|
3
|
+
declare type ParamsData = undefined;
|
|
4
|
+
declare type ResponseData = OnboardingStepsRO;
|
|
5
|
+
export declare const getOnboardingSteps: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getOnboardingSteps = void 0;
|
|
4
|
+
var getOnboardingSteps = function () { return ({
|
|
5
|
+
url: '/profiles/onboarding',
|
|
6
|
+
method: 'GET',
|
|
7
|
+
}); };
|
|
8
|
+
exports.getOnboardingSteps = getOnboardingSteps;
|
|
@@ -32,6 +32,7 @@ import { paginateBills } from './subscription/paginate-bills';
|
|
|
32
32
|
import { updateSubscription } from './subscription/update-subscription';
|
|
33
33
|
import { create } from './create';
|
|
34
34
|
import { getBySlugForVerify } from './get-by-slug-for-verify';
|
|
35
|
+
import { getOnboardingSteps } from './get-onboarding-steps';
|
|
35
36
|
import { getOne } from './get-one';
|
|
36
37
|
import { query } from './query';
|
|
37
38
|
import { remove } from './remove';
|
|
@@ -54,6 +55,7 @@ declare type ApiDeclaration = {
|
|
|
54
55
|
getAllCrm: typeof getAllCrm;
|
|
55
56
|
createOtherCrm: typeof createOtherCrm;
|
|
56
57
|
updateProfileCrm: typeof updateProfileCrm;
|
|
58
|
+
getOnboardingSteps: typeof getOnboardingSteps;
|
|
57
59
|
updateCrmVerification: typeof updateCrmVerification;
|
|
58
60
|
resyncBookeo: typeof resyncBookeo;
|
|
59
61
|
getBookeoInfo: typeof getBookeoInfo;
|
|
@@ -35,6 +35,7 @@ var paginate_bills_1 = require("./subscription/paginate-bills");
|
|
|
35
35
|
var update_subscription_1 = require("./subscription/update-subscription");
|
|
36
36
|
var create_1 = require("./create");
|
|
37
37
|
var get_by_slug_for_verify_1 = require("./get-by-slug-for-verify");
|
|
38
|
+
var get_onboarding_steps_1 = require("./get-onboarding-steps");
|
|
38
39
|
var get_one_1 = require("./get-one");
|
|
39
40
|
// import { initialCustomization } from './initial-customization';
|
|
40
41
|
var query_1 = require("./query");
|
|
@@ -47,6 +48,7 @@ exports.profilesApiDeclaration = {
|
|
|
47
48
|
createContact: create_contact_1.createContact,
|
|
48
49
|
removeContact: remove_contact_1.removeContact,
|
|
49
50
|
updateProfileCrm: update_profile_crm_1.updateProfileCrm,
|
|
51
|
+
getOnboardingSteps: get_onboarding_steps_1.getOnboardingSteps,
|
|
50
52
|
updateCrmVerification: update_crm_verification_1.updateCrmVerification,
|
|
51
53
|
updatePartnerProgram: update_partner_program_1.updatePartnerProgram,
|
|
52
54
|
queryActions: query_actions_1.queryActions,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escapenavigator/services",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.34",
|
|
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": "238f037449fecef93ea11cb7172b3530fd7bd244",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@escapenavigator/types": "^1.6.
|
|
18
|
-
"@escapenavigator/utils": "^1.6.
|
|
17
|
+
"@escapenavigator/types": "^1.6.32",
|
|
18
|
+
"@escapenavigator/utils": "^1.6.32",
|
|
19
19
|
"axios": "^0.21.4",
|
|
20
20
|
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.1",
|