vector-shared 1.1.444 → 1.1.446
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/tsconfig.tsbuildinfo +1 -1
- package/dist/types/funnel/funnel-dto.type.d.ts +40 -0
- package/dist/types/funnel/funnel-dto.type.js +3 -0
- package/dist/types/funnel/funnel-dto.type.js.map +1 -0
- package/dist/types/funnel/funnel-entity-progress.type.d.ts +46 -0
- package/dist/types/funnel/funnel-entity-progress.type.js +3 -0
- package/dist/types/funnel/funnel-entity-progress.type.js.map +1 -0
- package/dist/types/funnel/funnel-mandatory-task.type.d.ts +42 -0
- package/dist/types/funnel/funnel-mandatory-task.type.js +35 -0
- package/dist/types/funnel/funnel-mandatory-task.type.js.map +1 -0
- package/dist/types/funnel/funnel-manual-subtask.type.d.ts +18 -0
- package/dist/types/funnel/funnel-manual-subtask.type.js +3 -0
- package/dist/types/funnel/funnel-manual-subtask.type.js.map +1 -0
- package/dist/types/funnel/funnel-manual-task.type.d.ts +11 -0
- package/dist/types/funnel/funnel-manual-task.type.js +3 -0
- package/dist/types/funnel/funnel-manual-task.type.js.map +1 -0
- package/dist/types/funnel/funnel-response.type.d.ts +29 -0
- package/dist/types/funnel/funnel-response.type.js +3 -0
- package/dist/types/funnel/funnel-response.type.js.map +1 -0
- package/dist/types/funnel/index.d.ts +6 -0
- package/dist/types/funnel/index.js +6 -0
- package/dist/types/funnel/index.js.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.js +15 -0
- package/dist/types/index.js.map +1 -1
- package/dist/types/snapshot/advert-source.snapshot.d.ts +2 -2
- package/dist/types/snapshot/apartment-complex.snapshot.d.ts +2 -2
- package/dist/types/snapshot/archive-reason.snapshot.d.ts +2 -2
- package/dist/types/snapshot/attorney.snapshot.d.ts +2 -2
- package/dist/types/snapshot/build-company.snapshot.d.ts +2 -2
- package/dist/types/snapshot/office.snapshot.d.ts +2 -2
- package/dist/types/snapshot/representation.snapshot.d.ts +2 -2
- package/dist/types/snapshot/topzone.snapshot.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export type GetFunnelProgressDto = {
|
|
2
|
+
propertyId?: number;
|
|
3
|
+
requestId?: number;
|
|
4
|
+
handlingId?: number;
|
|
5
|
+
currentStage: string;
|
|
6
|
+
};
|
|
7
|
+
export type UpdateFunnelStageDto = {
|
|
8
|
+
propertyId?: number;
|
|
9
|
+
requestId?: number;
|
|
10
|
+
handlingId?: number;
|
|
11
|
+
currentStage: string;
|
|
12
|
+
};
|
|
13
|
+
export type ToggleManualSubtaskDto = {
|
|
14
|
+
propertyId?: number;
|
|
15
|
+
requestId?: number;
|
|
16
|
+
handlingId?: number;
|
|
17
|
+
currentStage: string;
|
|
18
|
+
taskKey: string;
|
|
19
|
+
completed: boolean;
|
|
20
|
+
};
|
|
21
|
+
export type CreateFunnelCommentDto = {
|
|
22
|
+
propertyId?: number;
|
|
23
|
+
requestId?: number;
|
|
24
|
+
handlingId?: number;
|
|
25
|
+
comment: string;
|
|
26
|
+
};
|
|
27
|
+
export type CreateFunnelRemarkDto = {
|
|
28
|
+
propertyId?: number;
|
|
29
|
+
requestId?: number;
|
|
30
|
+
handlingId?: number;
|
|
31
|
+
realtorId: number;
|
|
32
|
+
remark: string;
|
|
33
|
+
};
|
|
34
|
+
export type CreateFunnelReminderDto = {
|
|
35
|
+
propertyId?: number;
|
|
36
|
+
requestId?: number;
|
|
37
|
+
handlingId?: number;
|
|
38
|
+
message: string;
|
|
39
|
+
remindAt: Date;
|
|
40
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"funnel-dto.type.js","sourceRoot":"","sources":["../../../types/funnel/funnel-dto.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { BaseEntity } from '../core/base-entity.type';
|
|
2
|
+
import { CustomerPropertyEntity } from '../core/customer-property.type';
|
|
3
|
+
import { CustomerRequestEntity } from '../core/customer-request.type';
|
|
4
|
+
import { HandlingEntity } from '../core/handling.type';
|
|
5
|
+
export type ManualTaskState = {
|
|
6
|
+
taskKey: string;
|
|
7
|
+
completed: boolean;
|
|
8
|
+
completedAt?: Date;
|
|
9
|
+
completedByUserId?: number;
|
|
10
|
+
};
|
|
11
|
+
export type FunnelComment = {
|
|
12
|
+
id: string;
|
|
13
|
+
comment: string;
|
|
14
|
+
createdAt: Date;
|
|
15
|
+
createdByUserId: number;
|
|
16
|
+
};
|
|
17
|
+
export type FunnelRemark = {
|
|
18
|
+
id: string;
|
|
19
|
+
remark: string;
|
|
20
|
+
realtorId: number;
|
|
21
|
+
isRead: boolean;
|
|
22
|
+
readAt?: Date;
|
|
23
|
+
createdAt: Date;
|
|
24
|
+
createdByUserId: number;
|
|
25
|
+
};
|
|
26
|
+
export type FunnelReminder = {
|
|
27
|
+
id: string;
|
|
28
|
+
message: string;
|
|
29
|
+
remindAt: Date;
|
|
30
|
+
isSent: boolean;
|
|
31
|
+
sentAt?: Date;
|
|
32
|
+
createdAt: Date;
|
|
33
|
+
createdByUserId: number;
|
|
34
|
+
};
|
|
35
|
+
export type FunnelEntityProgressEntity = BaseEntity & {
|
|
36
|
+
propertyId?: number | null;
|
|
37
|
+
property?: CustomerPropertyEntity;
|
|
38
|
+
requestId?: number | null;
|
|
39
|
+
request?: CustomerRequestEntity;
|
|
40
|
+
handlingId?: number | null;
|
|
41
|
+
handling?: HandlingEntity;
|
|
42
|
+
manual: Record<string, ManualTaskState[]>;
|
|
43
|
+
comments: FunnelComment[];
|
|
44
|
+
remarks: FunnelRemark[];
|
|
45
|
+
reminders: FunnelReminder[];
|
|
46
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"funnel-entity-progress.type.js","sourceRoot":"","sources":["../../../types/funnel/funnel-entity-progress.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { BaseEntity } from '../core/base-entity.type';
|
|
2
|
+
import { MultiLanguage } from '../common/multi-language-column.type';
|
|
3
|
+
export declare enum TaskConditionType {
|
|
4
|
+
HAS_REALTOR = "hasRealtor",
|
|
5
|
+
HAS_PROPERTY_ASSIGNED = "hasPropertyAssigned",
|
|
6
|
+
HAS_REQUEST_ASSIGNED = "hasRequestAssigned",
|
|
7
|
+
HAS_PRICE = "hasPrice",
|
|
8
|
+
HAS_PHOTOS = "hasPhotos",
|
|
9
|
+
HAS_ADDRESS = "hasAddress",
|
|
10
|
+
HAS_DESCRIPTION = "hasDescription",
|
|
11
|
+
HAS_BUDGET = "hasBudget",
|
|
12
|
+
HAS_CRITERIA = "hasCriteria",
|
|
13
|
+
IS_PUBLISHED = "isPublished",
|
|
14
|
+
IS_ACTIVE = "isActive",
|
|
15
|
+
HAS_PROPERTY_WITH_SELLER = "hasPropertyWithSeller",
|
|
16
|
+
HAS_SELLER_CONTACTS = "hasSellerContacts",
|
|
17
|
+
NO_DUPLICATES = "noDuplicates",
|
|
18
|
+
HAS_MIN_PHOTOS = "hasMinPhotos",
|
|
19
|
+
HAS_SELFIE_PHOTO = "hasSelfiePhoto",
|
|
20
|
+
HAS_AD_TEXT = "hasAdText",
|
|
21
|
+
HAS_TITLE = "hasTitle",
|
|
22
|
+
HAS_TRANSLATION = "hasTranslation",
|
|
23
|
+
HAS_ALL_ATTRIBUTES = "hasAllAttributes",
|
|
24
|
+
HAS_PRESENTATION_GENERATED = "hasPresentationGenerated",
|
|
25
|
+
IS_VNP_PREPAYMENT = "isVnpPrepayment",
|
|
26
|
+
HAS_CALCULATION = "hasCalculation",
|
|
27
|
+
HAS_BUYER_REGISTERED = "hasBuyerRegistered",
|
|
28
|
+
HAS_PRESENTATION_CREATED = "hasPresentationCreated",
|
|
29
|
+
IS_VNP_PREPAYMENT_REQUEST = "isVnpPrepaymentRequest",
|
|
30
|
+
HAS_CALCULATION_REQUEST = "hasCalculationRequest",
|
|
31
|
+
HAS_SELECTION_CREATED = "hasSelectionCreated"
|
|
32
|
+
}
|
|
33
|
+
export type FunnelMandatoryTaskEntity = BaseEntity & {
|
|
34
|
+
key: string;
|
|
35
|
+
name: MultiLanguage;
|
|
36
|
+
description: MultiLanguage;
|
|
37
|
+
category: string;
|
|
38
|
+
stage: string;
|
|
39
|
+
entity: 'property' | 'request';
|
|
40
|
+
conditionType: TaskConditionType;
|
|
41
|
+
order: number;
|
|
42
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TaskConditionType = void 0;
|
|
4
|
+
var TaskConditionType;
|
|
5
|
+
(function (TaskConditionType) {
|
|
6
|
+
TaskConditionType["HAS_REALTOR"] = "hasRealtor";
|
|
7
|
+
TaskConditionType["HAS_PROPERTY_ASSIGNED"] = "hasPropertyAssigned";
|
|
8
|
+
TaskConditionType["HAS_REQUEST_ASSIGNED"] = "hasRequestAssigned";
|
|
9
|
+
TaskConditionType["HAS_PRICE"] = "hasPrice";
|
|
10
|
+
TaskConditionType["HAS_PHOTOS"] = "hasPhotos";
|
|
11
|
+
TaskConditionType["HAS_ADDRESS"] = "hasAddress";
|
|
12
|
+
TaskConditionType["HAS_DESCRIPTION"] = "hasDescription";
|
|
13
|
+
TaskConditionType["HAS_BUDGET"] = "hasBudget";
|
|
14
|
+
TaskConditionType["HAS_CRITERIA"] = "hasCriteria";
|
|
15
|
+
TaskConditionType["IS_PUBLISHED"] = "isPublished";
|
|
16
|
+
TaskConditionType["IS_ACTIVE"] = "isActive";
|
|
17
|
+
TaskConditionType["HAS_PROPERTY_WITH_SELLER"] = "hasPropertyWithSeller";
|
|
18
|
+
TaskConditionType["HAS_SELLER_CONTACTS"] = "hasSellerContacts";
|
|
19
|
+
TaskConditionType["NO_DUPLICATES"] = "noDuplicates";
|
|
20
|
+
TaskConditionType["HAS_MIN_PHOTOS"] = "hasMinPhotos";
|
|
21
|
+
TaskConditionType["HAS_SELFIE_PHOTO"] = "hasSelfiePhoto";
|
|
22
|
+
TaskConditionType["HAS_AD_TEXT"] = "hasAdText";
|
|
23
|
+
TaskConditionType["HAS_TITLE"] = "hasTitle";
|
|
24
|
+
TaskConditionType["HAS_TRANSLATION"] = "hasTranslation";
|
|
25
|
+
TaskConditionType["HAS_ALL_ATTRIBUTES"] = "hasAllAttributes";
|
|
26
|
+
TaskConditionType["HAS_PRESENTATION_GENERATED"] = "hasPresentationGenerated";
|
|
27
|
+
TaskConditionType["IS_VNP_PREPAYMENT"] = "isVnpPrepayment";
|
|
28
|
+
TaskConditionType["HAS_CALCULATION"] = "hasCalculation";
|
|
29
|
+
TaskConditionType["HAS_BUYER_REGISTERED"] = "hasBuyerRegistered";
|
|
30
|
+
TaskConditionType["HAS_PRESENTATION_CREATED"] = "hasPresentationCreated";
|
|
31
|
+
TaskConditionType["IS_VNP_PREPAYMENT_REQUEST"] = "isVnpPrepaymentRequest";
|
|
32
|
+
TaskConditionType["HAS_CALCULATION_REQUEST"] = "hasCalculationRequest";
|
|
33
|
+
TaskConditionType["HAS_SELECTION_CREATED"] = "hasSelectionCreated";
|
|
34
|
+
})(TaskConditionType || (exports.TaskConditionType = TaskConditionType = {}));
|
|
35
|
+
//# sourceMappingURL=funnel-mandatory-task.type.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"funnel-mandatory-task.type.js","sourceRoot":"","sources":["../../../types/funnel/funnel-mandatory-task.type.ts"],"names":[],"mappings":";;;AAGA,IAAY,iBA+BX;AA/BD,WAAY,iBAAiB;IAC3B,+CAA0B,CAAA;IAC1B,kEAA6C,CAAA;IAC7C,gEAA2C,CAAA;IAC3C,2CAAsB,CAAA;IACtB,6CAAwB,CAAA;IACxB,+CAA0B,CAAA;IAC1B,uDAAkC,CAAA;IAClC,6CAAwB,CAAA;IACxB,iDAA4B,CAAA;IAC5B,iDAA4B,CAAA;IAC5B,2CAAsB,CAAA;IAEtB,uEAAkD,CAAA;IAClD,8DAAyC,CAAA;IACzC,mDAA8B,CAAA;IAC9B,oDAA+B,CAAA;IAC/B,wDAAmC,CAAA;IACnC,8CAAyB,CAAA;IACzB,2CAAsB,CAAA;IACtB,uDAAkC,CAAA;IAClC,4DAAuC,CAAA;IACvC,4EAAuD,CAAA;IACvD,0DAAqC,CAAA;IACrC,uDAAkC,CAAA;IAElC,gEAA2C,CAAA;IAC3C,wEAAmD,CAAA;IACnD,yEAAoD,CAAA;IACpD,sEAAiD,CAAA;IACjD,kEAA6C,CAAA;AAC/C,CAAC,EA/BW,iBAAiB,iCAAjB,iBAAiB,QA+B5B"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { BaseEntity } from '../core/base-entity.type';
|
|
2
|
+
import { CustomerPropertyEntity } from '../core/customer-property.type';
|
|
3
|
+
import { CustomerRequestEntity } from '../core/customer-request.type';
|
|
4
|
+
import { HandlingEntity } from '../core/handling.type';
|
|
5
|
+
import { UserEntity } from '../core/user.type';
|
|
6
|
+
export type FunnelManualSubtaskEntity = BaseEntity & {
|
|
7
|
+
propertyId?: number | null;
|
|
8
|
+
property?: CustomerPropertyEntity;
|
|
9
|
+
requestId?: number | null;
|
|
10
|
+
request?: CustomerRequestEntity;
|
|
11
|
+
handlingId?: number | null;
|
|
12
|
+
handling?: HandlingEntity;
|
|
13
|
+
subtaskId: string;
|
|
14
|
+
completed: boolean;
|
|
15
|
+
completedAt?: Date | null;
|
|
16
|
+
completedByUserId?: number | null;
|
|
17
|
+
completedByUser?: UserEntity;
|
|
18
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"funnel-manual-subtask.type.js","sourceRoot":"","sources":["../../../types/funnel/funnel-manual-subtask.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseEntity } from '../core/base-entity.type';
|
|
2
|
+
import { MultiLanguage } from '../common/multi-language-column.type';
|
|
3
|
+
export type FunnelManualTaskEntity = BaseEntity & {
|
|
4
|
+
key: string;
|
|
5
|
+
name: MultiLanguage;
|
|
6
|
+
description: MultiLanguage;
|
|
7
|
+
category: string;
|
|
8
|
+
stage: string;
|
|
9
|
+
entity: 'property' | 'request';
|
|
10
|
+
order: number;
|
|
11
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"funnel-manual-task.type.js","sourceRoot":"","sources":["../../../types/funnel/funnel-manual-task.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { FunnelComment, FunnelRemark, FunnelReminder } from './funnel-entity-progress.type';
|
|
2
|
+
export type FunnelStage = {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string;
|
|
6
|
+
order: number;
|
|
7
|
+
};
|
|
8
|
+
export type FunnelTask = {
|
|
9
|
+
key: string;
|
|
10
|
+
name: string;
|
|
11
|
+
description: string;
|
|
12
|
+
type: 'mandatory' | 'manual';
|
|
13
|
+
completed: boolean;
|
|
14
|
+
editable: boolean;
|
|
15
|
+
completedAt?: Date;
|
|
16
|
+
completedByUserId?: number;
|
|
17
|
+
};
|
|
18
|
+
export type FunnelTaskCategory = {
|
|
19
|
+
category: string;
|
|
20
|
+
tasks: FunnelTask[];
|
|
21
|
+
};
|
|
22
|
+
export type FunnelProgressResponse = {
|
|
23
|
+
currentStage: string;
|
|
24
|
+
stages: FunnelStage[];
|
|
25
|
+
taskCategories: FunnelTaskCategory[];
|
|
26
|
+
comments: FunnelComment[];
|
|
27
|
+
remarks: FunnelRemark[];
|
|
28
|
+
reminders: FunnelReminder[];
|
|
29
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"funnel-response.type.js","sourceRoot":"","sources":["../../../types/funnel/funnel-response.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { FunnelEntityProgressEntity, ManualTaskState, FunnelComment, FunnelRemark, FunnelReminder, } from './funnel-entity-progress.type';
|
|
2
|
+
export { FunnelManualSubtaskEntity } from './funnel-manual-subtask.type';
|
|
3
|
+
export { FunnelMandatoryTaskEntity, TaskConditionType, } from './funnel-mandatory-task.type';
|
|
4
|
+
export { FunnelManualTaskEntity } from './funnel-manual-task.type';
|
|
5
|
+
export { GetFunnelProgressDto, UpdateFunnelStageDto, ToggleManualSubtaskDto, CreateFunnelCommentDto, CreateFunnelRemarkDto, CreateFunnelReminderDto, } from './funnel-dto.type';
|
|
6
|
+
export { FunnelStage, FunnelProgressResponse, FunnelTask, FunnelTaskCategory, } from './funnel-response.type';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TaskConditionType = void 0;
|
|
4
|
+
var funnel_mandatory_task_type_1 = require("./funnel-mandatory-task.type");
|
|
5
|
+
Object.defineProperty(exports, "TaskConditionType", { enumerable: true, get: function () { return funnel_mandatory_task_type_1.TaskConditionType; } });
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/funnel/index.ts"],"names":[],"mappings":";;;AAQA,2EAGsC;AADpC,+HAAA,iBAAiB,OAAA"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -136,3 +136,4 @@ export { HandlerProps, XlsAreasHandlers } from './parse/mapping-handler.types';
|
|
|
136
136
|
export { XlsMappingColRows, XlsArea, HeaderSettings, } from './parse/mapping.types';
|
|
137
137
|
export { ParserSchemes } from './parse/schemes.enum';
|
|
138
138
|
export { AttachVideoToPropertyDto } from './video';
|
|
139
|
+
export * from './funnel';
|
package/dist/types/index.js
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
17
|
exports.AttributeTypeEnum = exports.AttributeDestinationEnum = exports.AttributeCategoryEnum = exports.RegistrationTypeEnum = exports.DealTypeEnum = exports.ApartmentTypeEnum = exports.ObjectTypeEnum = exports.AttributeUnitEnum = exports.AttributeKeyEnum = exports.Male = exports.ClassificationType = exports.DirectionEnum = exports.PropertyDocumentCategory = exports.PropertyExclusiveStatusEnum = exports.RealtySubtypeEnum = exports.RentTypeEnum = exports.MarketTypeEnum = exports.RealtyTypeEnum = exports.LanguageEnum = exports.NodeEnvEnum = exports.MyOfficePermissions = exports.UserActionLogsPermissions = exports.FunnelPermissions = exports.MainPagePermissions = exports.FlatPermissions = exports.FloorPermissions = exports.SectionPermissions = exports.QueuePermissions = exports.LayoutPermissions = exports.ApartmentComplexPermissions = exports.BuildCompanyPermissions = exports.NewsPermissions = exports.NotaryPermissions = exports.TelephonyPermissions = exports.DutyPermissions = exports.FeedbackPermissions = exports.DealPermissions = exports.ExportedPropertyPermissions = exports.CustomerRequestPermissions = exports.AttributePermissions = exports.GeoPermissions = exports.OrganizationPermissions = exports.AdvertPermissions = exports.AnalyticPermission = exports.SellerPermissions = exports.BuyerPermissions = exports.HandlingPermissions = exports.CustomerPropertyPermissions = exports.UserPermissions = exports.PermissionEnum = void 0;
|
|
4
18
|
exports.DealAgreementTypeDto = exports.BuildCompanySortByFieldEnum = exports.AttentionRequiredEntityEnum = exports.AttentionRequiredOfficeStatisticSortByFieldEnum = exports.AttentionRequiredWithChangesSortByFieldEnum = exports.AttorneyTypeEnum = exports.ArchiveReasonDestinationEnum = exports.SupportedAggregateType = exports.ApartmentComplexSortByFieldEnum = exports.MismatchActionEnum = exports.CustomerRequestSelectionUpdateStatus = exports.CustomerPropertyDuplicateStatusEnum = exports.ApartmentComplexImageCategory = exports.FlatStatus = exports.FeedbackCategoryEnum = exports.FeedbackStatusEnum = exports.Messenger = exports.UserPointsEvent = exports.PropertyDocumentTypeEnum = exports.ReactionEnum = exports.TemplateContentEnum = exports.TemplateEnum = exports.VchasnoDocumentStatus = exports.VchasnoDocumentCategory = exports.DealParticipantType = exports.DealExpensesCategory = exports.DealTransactionEnum = exports.DealAgreementType = exports.DealFormat = exports.MortgageProgram = exports.PartyTypeEnum = exports.DealPayer = exports.DealDocumentEnum = exports.RealtyPlatform = exports.ModelName = exports.CallTypeEnum = exports.ComplexType = exports.Currency = exports.Day = exports.QueryBoolean = exports.CustomerBucketScope = exports.ActivityPotential = exports.CustomerType = exports.RecipientEnum = exports.HandlingType = exports.PromotionGeo = exports.GeoLevel = exports.GeoTypeEnum = exports.NormCategoriesEnum = exports.ImageCategoryEnum = void 0;
|
|
@@ -224,4 +238,5 @@ var parse_fields_enum_1 = require("./parse/parse-fields.enum");
|
|
|
224
238
|
Object.defineProperty(exports, "ParseFields", { enumerable: true, get: function () { return parse_fields_enum_1.ParseFields; } });
|
|
225
239
|
var schemes_enum_1 = require("./parse/schemes.enum");
|
|
226
240
|
Object.defineProperty(exports, "ParserSchemes", { enumerable: true, get: function () { return schemes_enum_1.ParserSchemes; } });
|
|
241
|
+
__exportStar(require("./funnel"), exports);
|
|
227
242
|
//# sourceMappingURL=index.js.map
|
package/dist/types/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../types/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../types/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
1
2
|
import { MultiLanguage } from '../common';
|
|
2
|
-
export type AdvertSourceSnapshot = {
|
|
3
|
-
id: string;
|
|
3
|
+
export type AdvertSourceSnapshot = BaseSnapshot & {
|
|
4
4
|
name: MultiLanguage;
|
|
5
5
|
sort: number;
|
|
6
6
|
receiveType: number[] | null;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
1
2
|
import { MultiLanguage } from '../common';
|
|
2
3
|
type Manager = {
|
|
3
4
|
phone: string;
|
|
@@ -9,8 +10,7 @@ type Expression = {
|
|
|
9
10
|
value: string;
|
|
10
11
|
scope: Record<string, unknown>;
|
|
11
12
|
};
|
|
12
|
-
export type ApartmentComplexSnapshot = {
|
|
13
|
-
id: string;
|
|
13
|
+
export type ApartmentComplexSnapshot = BaseSnapshot & {
|
|
14
14
|
name: MultiLanguage;
|
|
15
15
|
type: number | null;
|
|
16
16
|
lat: string | null;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
1
2
|
import { MultiLanguage } from '../common';
|
|
2
3
|
import { ArchiveReasonDestinationEnum } from '../archive-reasons';
|
|
3
|
-
export type ArchiveReasonSnapshot = {
|
|
4
|
-
id: string;
|
|
4
|
+
export type ArchiveReasonSnapshot = BaseSnapshot & {
|
|
5
5
|
text: MultiLanguage;
|
|
6
6
|
destination: ArchiveReasonDestinationEnum;
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
1
2
|
import { MultiLanguage } from '../common';
|
|
2
3
|
import { AttorneyTypeEnum } from '../attorney/attorney-type.enum';
|
|
3
|
-
export type AttorneySnapshot = {
|
|
4
|
-
id: string;
|
|
4
|
+
export type AttorneySnapshot = BaseSnapshot & {
|
|
5
5
|
name: MultiLanguage;
|
|
6
6
|
vchasnoApiKey: string | null;
|
|
7
7
|
edrpo: string | null;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
1
2
|
import { MultiLanguage } from '../common';
|
|
2
3
|
type BuildCompanyImage = {
|
|
3
4
|
imageId: string;
|
|
@@ -10,8 +11,7 @@ type Currency = {
|
|
|
10
11
|
name: string;
|
|
11
12
|
value: number;
|
|
12
13
|
};
|
|
13
|
-
export type BuildCompanySnapshot = {
|
|
14
|
-
id: string;
|
|
14
|
+
export type BuildCompanySnapshot = BaseSnapshot & {
|
|
15
15
|
name: string;
|
|
16
16
|
alias: string;
|
|
17
17
|
description: MultiLanguage;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
1
2
|
import { MultiLanguage } from '../common';
|
|
2
3
|
import { DirectionEnum } from '../direction';
|
|
3
4
|
import { RealtyTypeEnum } from '../customer-property';
|
|
@@ -10,8 +11,7 @@ type EmployeesCount = {
|
|
|
10
11
|
rentalRealtors: number;
|
|
11
12
|
internetManagers: number;
|
|
12
13
|
};
|
|
13
|
-
export type OfficeSnapshot = {
|
|
14
|
-
id: string;
|
|
14
|
+
export type OfficeSnapshot = BaseSnapshot & {
|
|
15
15
|
officeNumber: number;
|
|
16
16
|
email: string;
|
|
17
17
|
isActive: boolean;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
1
2
|
import { MultiLanguage } from '../common';
|
|
2
3
|
type Coordinate = {
|
|
3
4
|
lat: string;
|
|
@@ -7,8 +8,7 @@ type Bounds = {
|
|
|
7
8
|
northeast: Coordinate;
|
|
8
9
|
southwest: Coordinate;
|
|
9
10
|
};
|
|
10
|
-
export type TopzoneSnapshot = {
|
|
11
|
-
id: string;
|
|
11
|
+
export type TopzoneSnapshot = BaseSnapshot & {
|
|
12
12
|
name: MultiLanguage;
|
|
13
13
|
declension: MultiLanguage;
|
|
14
14
|
alias: string;
|