@escapenavigator/types 1.6.30 → 1.6.32
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/certificate-sale/enum/certificatesales-status.enum.d.ts +1 -0
- package/dist/certificate-sale/enum/certificatesales-status.enum.js +1 -0
- package/dist/openapi/widget/openapi-widget-info.ro.d.ts +1 -0
- package/dist/openapi/widget/openapi-widget-info.ro.js +4 -0
- package/dist/profile/admin-profile.ro.d.ts +2 -0
- package/dist/profile/admin-profile.ro.js +5 -0
- package/dist/profile/create-profile.dto.d.ts +2 -0
- package/dist/profile/create-profile.dto.js +6 -0
- package/dist/profile/enum/crm-verifiaction.enum.d.ts +9 -0
- package/dist/profile/enum/crm-verifiaction.enum.js +20 -0
- package/dist/profile/onboarding-steps.ro.d.ts +8 -0
- package/dist/profile/onboarding-steps.ro.js +37 -0
- package/dist/profile/profile.ro.d.ts +2 -0
- package/dist/profile/profile.ro.js +5 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -6,6 +6,7 @@ var CertificatesaleStatusEnum;
|
|
|
6
6
|
CertificatesaleStatusEnum["ANNUL"] = "annul";
|
|
7
7
|
CertificatesaleStatusEnum["USED"] = "used";
|
|
8
8
|
CertificatesaleStatusEnum["PAID_NOT_USED"] = "paid_not_used";
|
|
9
|
+
CertificatesaleStatusEnum["PAID"] = "paid";
|
|
9
10
|
CertificatesaleStatusEnum["EXPIRED"] = "expired";
|
|
10
11
|
CertificatesaleStatusEnum["EXTRA_PAYED"] = "extraPayed";
|
|
11
12
|
CertificatesaleStatusEnum["SENDED"] = "sended";
|
|
@@ -56,6 +56,10 @@ __decorate([
|
|
|
56
56
|
(0, class_transformer_1.Expose)(),
|
|
57
57
|
__metadata("design:type", String)
|
|
58
58
|
], OpenapiWidgetInfoRO.prototype, "uuid", void 0);
|
|
59
|
+
__decorate([
|
|
60
|
+
(0, class_transformer_1.Expose)(),
|
|
61
|
+
__metadata("design:type", Boolean)
|
|
62
|
+
], OpenapiWidgetInfoRO.prototype, "testMode", void 0);
|
|
59
63
|
__decorate([
|
|
60
64
|
(0, class_transformer_1.Expose)(),
|
|
61
65
|
(0, class_transformer_1.Type)(() => openapi_upselling_ro_1.OpenapiUpsellingRO),
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { CountriesEnum } from '../shared/enum/countries.enum';
|
|
2
2
|
import { ProfileActionDto } from './action/profile-action.dto';
|
|
3
3
|
import { ProfileContctRO } from './contacts/profile-contact.ro';
|
|
4
|
+
import { CrmVerificationEnum } from './enum/crm-verifiaction.enum';
|
|
4
5
|
import { PartnerProgramEnum } from './enum/partner-program.enum';
|
|
5
6
|
import { ProfileIntegrationTypeEnum } from './enum/profile-integration-type.enum';
|
|
6
7
|
import { ProfileStatusEnum } from './enum/profile-step.enum';
|
|
@@ -16,6 +17,7 @@ export declare class AdminProfileRO {
|
|
|
16
17
|
history: History[];
|
|
17
18
|
partnerProgram: PartnerProgramEnum;
|
|
18
19
|
subscriptionStatus: ProfileSubscriptionEnum;
|
|
20
|
+
crmVerification: CrmVerificationEnum;
|
|
19
21
|
subscriptionType: ProfileSubscriptionTypeEnum;
|
|
20
22
|
subscriptionCancelationDate: number;
|
|
21
23
|
status: ProfileStatusEnum;
|
|
@@ -15,6 +15,7 @@ const class_transformer_1 = require("class-transformer");
|
|
|
15
15
|
const countries_enum_1 = require("../shared/enum/countries.enum");
|
|
16
16
|
const profile_action_dto_1 = require("./action/profile-action.dto");
|
|
17
17
|
const profile_contact_ro_1 = require("./contacts/profile-contact.ro");
|
|
18
|
+
const crm_verifiaction_enum_1 = require("./enum/crm-verifiaction.enum");
|
|
18
19
|
const partner_program_enum_1 = require("./enum/partner-program.enum");
|
|
19
20
|
const profile_integration_type_enum_1 = require("./enum/profile-integration-type.enum");
|
|
20
21
|
const profile_step_enum_1 = require("./enum/profile-step.enum");
|
|
@@ -53,6 +54,10 @@ __decorate([
|
|
|
53
54
|
(0, class_transformer_1.Expose)(),
|
|
54
55
|
__metadata("design:type", String)
|
|
55
56
|
], AdminProfileRO.prototype, "subscriptionStatus", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, class_transformer_1.Expose)(),
|
|
59
|
+
__metadata("design:type", String)
|
|
60
|
+
], AdminProfileRO.prototype, "crmVerification", void 0);
|
|
56
61
|
__decorate([
|
|
57
62
|
(0, class_transformer_1.Expose)(),
|
|
58
63
|
__metadata("design:type", String)
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { CountriesEnum } from '../shared/enum/countries.enum';
|
|
2
2
|
import { Languages } from '../shared/enum/languages.enum';
|
|
3
|
+
import { CrmVerificationEnum } from './enum/crm-verifiaction.enum';
|
|
3
4
|
import { PartnerProgramEnum } from './enum/partner-program.enum';
|
|
4
5
|
import { ProfileStatusEnum } from './enum/profile-step.enum';
|
|
5
6
|
export declare class CreateProfileDto {
|
|
6
7
|
country: CountriesEnum;
|
|
8
|
+
crmVerification: CrmVerificationEnum;
|
|
7
9
|
partnerProgram: PartnerProgramEnum;
|
|
8
10
|
title: string;
|
|
9
11
|
site: string;
|
|
@@ -15,6 +15,7 @@ const class_validator_1 = require("class-validator");
|
|
|
15
15
|
const countries_enum_1 = require("../shared/enum/countries.enum");
|
|
16
16
|
const languages_enum_1 = require("../shared/enum/languages.enum");
|
|
17
17
|
const is_not_blank_1 = require("../shared/is-not-blank");
|
|
18
|
+
const crm_verifiaction_enum_1 = require("./enum/crm-verifiaction.enum");
|
|
18
19
|
const partner_program_enum_1 = require("./enum/partner-program.enum");
|
|
19
20
|
const profile_step_enum_1 = require("./enum/profile-step.enum");
|
|
20
21
|
class CreateProfileDto {
|
|
@@ -24,6 +25,11 @@ __decorate([
|
|
|
24
25
|
(0, class_transformer_1.Expose)(),
|
|
25
26
|
__metadata("design:type", String)
|
|
26
27
|
], CreateProfileDto.prototype, "country", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, class_validator_1.IsOptional)(),
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], CreateProfileDto.prototype, "crmVerification", void 0);
|
|
27
33
|
__decorate([
|
|
28
34
|
(0, is_not_blank_1.IsNotBlank)(),
|
|
29
35
|
(0, class_transformer_1.Expose)(),
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CrmVerificationEnum = void 0;
|
|
4
|
+
var CrmVerificationEnum;
|
|
5
|
+
(function (CrmVerificationEnum) {
|
|
6
|
+
// ничего не верифицировано, требуется верификация правил бронирования
|
|
7
|
+
CrmVerificationEnum["NONE"] = "none";
|
|
8
|
+
// верификация правил бронирования
|
|
9
|
+
CrmVerificationEnum["BOOKING_SETTINGS"] = "booking_settingg";
|
|
10
|
+
// настроен календарь
|
|
11
|
+
CrmVerificationEnum["SCHEDULE"] = "schedule";
|
|
12
|
+
// настроены способы оплаты
|
|
13
|
+
CrmVerificationEnum["PAYMENT_METHODS"] = "payment_methods";
|
|
14
|
+
// получили сигнал от виджетов
|
|
15
|
+
CrmVerificationEnum["WIDGETS"] = "widgets";
|
|
16
|
+
// показана кнопка все готово
|
|
17
|
+
CrmVerificationEnum["READY_TO_USE"] = "ready_to_use";
|
|
18
|
+
// нажата кнопка "готово"
|
|
19
|
+
CrmVerificationEnum["SUCCEED"] = "succeeed";
|
|
20
|
+
})(CrmVerificationEnum = exports.CrmVerificationEnum || (exports.CrmVerificationEnum = {}));
|
|
@@ -0,0 +1,37 @@
|
|
|
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.OnboardingStepsRO = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const crm_verifiaction_enum_1 = require("./enum/crm-verifiaction.enum");
|
|
15
|
+
class OnboardingStepsRO {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_transformer_1.Expose)(),
|
|
19
|
+
__metadata("design:type", Boolean)
|
|
20
|
+
], OnboardingStepsRO.prototype, "schedule", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", Boolean)
|
|
24
|
+
], OnboardingStepsRO.prototype, "bookingSettings", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
__metadata("design:type", Boolean)
|
|
28
|
+
], OnboardingStepsRO.prototype, "paymentMethods", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", Boolean)
|
|
32
|
+
], OnboardingStepsRO.prototype, "widgets", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_transformer_1.Expose)(),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], OnboardingStepsRO.prototype, "crmVerification", void 0);
|
|
37
|
+
exports.OnboardingStepsRO = OnboardingStepsRO;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { CountriesEnum } from '../shared/enum/countries.enum';
|
|
2
2
|
import { Languages } from '../shared/enum/languages.enum';
|
|
3
3
|
import { WidgetBookingFiledEnum } from '../widget/enum/widget-booking-filed.enum';
|
|
4
|
+
import { CrmVerificationEnum } from './enum/crm-verifiaction.enum';
|
|
4
5
|
import { PartnerProgramEnum } from './enum/partner-program.enum';
|
|
5
6
|
import { ProfileIntegrationTypeEnum } from './enum/profile-integration-type.enum';
|
|
6
7
|
import { ProfileStatusEnum } from './enum/profile-step.enum';
|
|
@@ -8,6 +9,7 @@ import { ProfileSubscriptionTypeEnum } from './enum/profile-subscription-type.en
|
|
|
8
9
|
import { ProfileSubscriptionEnum } from './enum/profile-subscription.enum';
|
|
9
10
|
export declare class ProfileRO {
|
|
10
11
|
partnerProgram: PartnerProgramEnum;
|
|
12
|
+
crmVerification: CrmVerificationEnum;
|
|
11
13
|
subscriptionStatus: ProfileSubscriptionEnum;
|
|
12
14
|
subscriptionType: ProfileSubscriptionTypeEnum;
|
|
13
15
|
subscriptionCancelationDate: number;
|
|
@@ -14,6 +14,7 @@ exports.ProfileRO = void 0;
|
|
|
14
14
|
const class_transformer_1 = require("class-transformer");
|
|
15
15
|
const countries_enum_1 = require("../shared/enum/countries.enum");
|
|
16
16
|
const languages_enum_1 = require("../shared/enum/languages.enum");
|
|
17
|
+
const crm_verifiaction_enum_1 = require("./enum/crm-verifiaction.enum");
|
|
17
18
|
const partner_program_enum_1 = require("./enum/partner-program.enum");
|
|
18
19
|
const profile_integration_type_enum_1 = require("./enum/profile-integration-type.enum");
|
|
19
20
|
const profile_step_enum_1 = require("./enum/profile-step.enum");
|
|
@@ -25,6 +26,10 @@ __decorate([
|
|
|
25
26
|
(0, class_transformer_1.Expose)(),
|
|
26
27
|
__metadata("design:type", String)
|
|
27
28
|
], ProfileRO.prototype, "partnerProgram", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], ProfileRO.prototype, "crmVerification", void 0);
|
|
28
33
|
__decorate([
|
|
29
34
|
(0, class_transformer_1.Expose)(),
|
|
30
35
|
__metadata("design:type", String)
|