vector-shared 1.1.439 → 1.1.441
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/core/customer-property.type.d.ts +2 -0
- package/dist/types/core/index.d.ts +2 -0
- package/dist/types/core/property-video.type.d.ts +14 -0
- package/dist/types/core/property-video.type.js +3 -0
- package/dist/types/core/property-video.type.js.map +1 -0
- package/dist/types/core/video.type.d.ts +12 -0
- package/dist/types/core/video.type.js +3 -0
- package/dist/types/core/video.type.js.map +1 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/index.js.map +1 -1
- package/dist/types/snapshot/call.snapshot.d.ts +11 -0
- package/dist/types/snapshot/call.snapshot.js +3 -0
- package/dist/types/snapshot/call.snapshot.js.map +1 -0
- package/dist/types/snapshot/customer-property.snapshot.d.ts +84 -0
- package/dist/types/snapshot/customer-property.snapshot.js +3 -0
- package/dist/types/snapshot/customer-property.snapshot.js.map +1 -0
- package/dist/types/snapshot/customer-request.snapshot.d.ts +28 -0
- package/dist/types/snapshot/customer-request.snapshot.js +16 -0
- package/dist/types/snapshot/customer-request.snapshot.js.map +1 -0
- package/dist/types/snapshot/handling.snapshot.d.ts +20 -0
- package/dist/types/snapshot/handling.snapshot.js +3 -0
- package/dist/types/snapshot/handling.snapshot.js.map +1 -0
- package/dist/types/snapshot/index.d.ts +5 -0
- package/dist/types/snapshot/index.js +5 -0
- package/dist/types/snapshot/index.js.map +1 -1
- package/dist/types/snapshot/office-center.snapshot.d.ts +13 -0
- package/dist/types/snapshot/office-center.snapshot.js +3 -0
- package/dist/types/snapshot/office-center.snapshot.js.map +1 -0
- package/dist/types/snapshot/supported-aggregate-type.enum.d.ts +6 -1
- package/dist/types/snapshot/supported-aggregate-type.enum.js +5 -0
- package/dist/types/snapshot/supported-aggregate-type.enum.js.map +1 -1
- package/dist/types/snapshot-builder/snapshot-builder.type.d.ts +9 -1
- package/dist/types/snapshot-builder/snapshot-builder.type.js.map +1 -1
- package/dist/types/video/attach-video-to-property.dto.d.ts +9 -0
- package/dist/types/video/attach-video-to-property.dto.js +3 -0
- package/dist/types/video/attach-video-to-property.dto.js.map +1 -0
- package/dist/types/video/index.d.ts +1 -0
- package/dist/types/video/index.js +3 -0
- package/dist/types/video/index.js.map +1 -0
- package/package.json +1 -1
|
@@ -23,6 +23,7 @@ import { CustomerPropertyCadastralNumberDto, ExclusivePropertyAgreementDataDto,
|
|
|
23
23
|
import { CustomerPropertyAttributes, DealTypeEnum, RegistrationTypeEnum } from '../attributes';
|
|
24
24
|
import { CustomerPropertyOwner } from '../customer';
|
|
25
25
|
import { CustomerEntity } from './customer.type';
|
|
26
|
+
import { PropertyVideoEntity } from './property-video.type';
|
|
26
27
|
export type CustomerPropertyEntity = BaseEntity & {
|
|
27
28
|
dealType: DealTypeEnum;
|
|
28
29
|
realtyType: RealtyTypeEnum;
|
|
@@ -91,5 +92,6 @@ export type CustomerPropertyEntity = BaseEntity & {
|
|
|
91
92
|
mismatchReports?: MismatchReportEntity[];
|
|
92
93
|
documents?: PropertyDocumentEntity[];
|
|
93
94
|
images?: PropertyImageEntity[];
|
|
95
|
+
videos?: PropertyVideoEntity[];
|
|
94
96
|
focus: boolean;
|
|
95
97
|
};
|
|
@@ -100,3 +100,5 @@ export { XCustomerNotificationEntity } from './x-customer-notification.type';
|
|
|
100
100
|
export { ObjectClassificationQueueEntity } from './object-classification-queue.type';
|
|
101
101
|
export { ResetPasswordEntity } from './reset-password.type';
|
|
102
102
|
export { UserTrustedDeviceEntity } from './user-trusted-device.type';
|
|
103
|
+
export { PropertyVideoEntity } from './property-video.type';
|
|
104
|
+
export { VideoEntity } from './video.type';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UniqueIdEntity } from './unique-id-entity.type';
|
|
2
|
+
import { VideoEntity } from './video.type';
|
|
3
|
+
import { CustomerPropertyEntity } from './customer-property.type';
|
|
4
|
+
export type PropertyVideoEntity = UniqueIdEntity & {
|
|
5
|
+
category: string | null;
|
|
6
|
+
description: string | null;
|
|
7
|
+
isMain: boolean;
|
|
8
|
+
showOnSite: boolean;
|
|
9
|
+
sortOrder: number;
|
|
10
|
+
videoId: number;
|
|
11
|
+
video?: VideoEntity;
|
|
12
|
+
propertyId: number;
|
|
13
|
+
property?: CustomerPropertyEntity;
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"property-video.type.js","sourceRoot":"","sources":["../../../types/core/property-video.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaseEntity } from './base-entity.type';
|
|
2
|
+
import { PropertyVideoEntity } from './property-video.type';
|
|
3
|
+
export type VideoEntity = BaseEntity & {
|
|
4
|
+
key: string;
|
|
5
|
+
url: string;
|
|
6
|
+
originalFilename: string | null;
|
|
7
|
+
fileSize: number | null;
|
|
8
|
+
mimeType: string | null;
|
|
9
|
+
duration: number | null;
|
|
10
|
+
metadata: Record<string, any> | null;
|
|
11
|
+
propertyVideo?: PropertyVideoEntity;
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"video.type.js","sourceRoot":"","sources":["../../../types/core/video.type.ts"],"names":[],"mappings":""}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -77,7 +77,7 @@ export { CustomerPropertyDuplicateStatusEnum } from './customer-property/propert
|
|
|
77
77
|
export { CustomerRequestSelectionUpdateStatus } from './customer/customer-request-selection.enum';
|
|
78
78
|
export { MismatchActionEnum } from './mistmatch/mismatch-action.types.enum';
|
|
79
79
|
export { ApartmentComplexSortByFieldEnum, ApartmentComplexSearchParamsDto, ApartmentComplexAutocompleteParamsDto, } from './apartment-complex';
|
|
80
|
-
export { AdvertSourceEntity, AgencyEntity, ApartmentComplexImageEntity, ApartmentComplexInfoEntity, ApartmentComplexEntity, AppraiserEntity, ArchiveReasonEntity, AttentionRequiredEntity, AttorneyEntity, AttributeRepresentationEntity, AttributeValueEntity, AttributeEntity, BaseEntity, BuildCompanyEntity, CallRedirectEntity, CallEntity, ContractTypeEntity, CustomerBucketEntity, CustomerCallEntity, CustomerPhoneEntity, CustomerPropertyDuplicateEntity, CustomerPropertyEntity, CustomerRequestSelectionEntity, CustomerRequestEntity, CustomerEntity, DealDocumentEntity, DealParticipantEntity, DealTransactionEntity, DealTypePercentageEntity, DealTypeEntity, DealEntity, DocumentEntity, DutyEntity, EmployeeNormEntity, FeedbackFileEntity, FeedbackViewEntity, FeedbackEntity, FlatEntity, FloorEntity, GeoTopzoneEntity, GeoEntity, GoogleContactEntity, HandlingListeningEntity, HandlingEntity, ImageEntity, LayoutEntity, MismatchAggregateEntity, MismatchDecisionEntity, MismatchReasonEntity, MismatchReportEntity, NormCategoryEntity, NotaryEntity, NotificationPreferenceEntity, NotificationEntity, OfficeCenterEntity, OfficeEntity, PermissionEntity, PermissionCategoryEntity, PropertyDocumentEntity, PropertyImageEntity, PropertySeoEntity, QueueEntity, RealtorNumberEntity, RepresentationEntity, RequestPresentationPropertyEntity, RequestPresentationEntity, RequestPropertyEntity, RealtyPresentationEntity, RealtyPresentationImageEntity, RoleEntity, SectionEntity, StreetEntity, TelegramChatEntity, TelegramMessageEntity, TemplateCommentReactionEntity, TemplateCommentEntity, TemplateOfficeEntity, TemplateParticipantEntity, TemplateReactionEntity, TemplateRepresentationEntity, TemplateRoleEntity, TemplateViewEntity, TemplateEntity, TimeMetricEntity, TopzoneEntity, UniqueIdEntity, UploadedFileEntity, UserActionsLogEntity, UserAttorneyEntity, UserOfficeEntity, UserPhoneEntity, UserPointsChangeEntity, UserPointsRuleEntity, UserProfileEntity, UserEntity, ValuationEntity, VnpReasonEntity, XCustomerNotificationEntity, ObjectClassificationQueueEntity, ResetPasswordEntity, UserTrustedDeviceEntity, DirtyAggregatesEntity, OutboxEntity, } from './core';
|
|
80
|
+
export { AdvertSourceEntity, AgencyEntity, ApartmentComplexImageEntity, ApartmentComplexInfoEntity, ApartmentComplexEntity, AppraiserEntity, ArchiveReasonEntity, AttentionRequiredEntity, AttorneyEntity, AttributeRepresentationEntity, AttributeValueEntity, AttributeEntity, BaseEntity, BuildCompanyEntity, CallRedirectEntity, CallEntity, ContractTypeEntity, CustomerBucketEntity, CustomerCallEntity, CustomerPhoneEntity, CustomerPropertyDuplicateEntity, CustomerPropertyEntity, CustomerRequestSelectionEntity, CustomerRequestEntity, CustomerEntity, DealDocumentEntity, DealParticipantEntity, DealTransactionEntity, DealTypePercentageEntity, DealTypeEntity, DealEntity, DocumentEntity, DutyEntity, EmployeeNormEntity, FeedbackFileEntity, FeedbackViewEntity, FeedbackEntity, FlatEntity, FloorEntity, GeoTopzoneEntity, GeoEntity, GoogleContactEntity, HandlingListeningEntity, HandlingEntity, ImageEntity, LayoutEntity, MismatchAggregateEntity, MismatchDecisionEntity, MismatchReasonEntity, MismatchReportEntity, NormCategoryEntity, NotaryEntity, NotificationPreferenceEntity, NotificationEntity, OfficeCenterEntity, OfficeEntity, PermissionEntity, PermissionCategoryEntity, PropertyDocumentEntity, PropertyImageEntity, PropertySeoEntity, QueueEntity, RealtorNumberEntity, RepresentationEntity, RequestPresentationPropertyEntity, RequestPresentationEntity, RequestPropertyEntity, RealtyPresentationEntity, RealtyPresentationImageEntity, RoleEntity, SectionEntity, StreetEntity, TelegramChatEntity, TelegramMessageEntity, TemplateCommentReactionEntity, TemplateCommentEntity, TemplateOfficeEntity, TemplateParticipantEntity, TemplateReactionEntity, TemplateRepresentationEntity, TemplateRoleEntity, TemplateViewEntity, TemplateEntity, TimeMetricEntity, TopzoneEntity, UniqueIdEntity, UploadedFileEntity, UserActionsLogEntity, UserAttorneyEntity, UserOfficeEntity, UserPhoneEntity, UserPointsChangeEntity, UserPointsRuleEntity, UserProfileEntity, UserEntity, ValuationEntity, VnpReasonEntity, XCustomerNotificationEntity, ObjectClassificationQueueEntity, ResetPasswordEntity, UserTrustedDeviceEntity, DirtyAggregatesEntity, OutboxEntity, PropertyVideoEntity, VideoEntity, } from './core';
|
|
81
81
|
export { BaseSnapshot, UserSnapshot, AdvertSourceSnapshot, CustomerSnapshot, OfficeSnapshot, RepresentationSnapshot, AttorneySnapshot, BuildCompanySnapshot, ArchiveReasonSnapshot, TopzoneSnapshot, ApartmentComplexSnapshot, SupportedAggregateType, } from './snapshot';
|
|
82
82
|
export { AggregateToSnapshot, Payload, SnapshotBuildResult, } from './snapshot-builder';
|
|
83
83
|
export { LoginByGoogleDto, LoginDto, ForgotPasswordDto, ResetPasswordDto, LoginResponseDto, ForgotPasswordResponseDto, ResetPasswordResponseDto, ValidateResetTokenRequestDto, ValidateResetTokenResponseDto, TwoFactorAuthResponseDto, Initiate2FADto, Verify2FADto, } from './auth';
|
|
@@ -135,3 +135,4 @@ export { ParseFields } from './parse/parse-fields.enum';
|
|
|
135
135
|
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
|
+
export { AttachVideoToPropertyDto } from './video';
|
package/dist/types/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../types/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../types/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
2
|
+
export type CallSnapshot = BaseSnapshot & {
|
|
3
|
+
callValue: string | null;
|
|
4
|
+
sourcePhone: string;
|
|
5
|
+
fromPhone: string;
|
|
6
|
+
callType: string | null;
|
|
7
|
+
timeCreate: string | null;
|
|
8
|
+
callData: Record<string, unknown>;
|
|
9
|
+
redirectId: number | null;
|
|
10
|
+
sourceId: string | null;
|
|
11
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"call.snapshot.js","sourceRoot":"","sources":["../../../types/snapshot/call.snapshot.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { MultiLanguage } from '../common';
|
|
2
|
+
import { DealTypeEnum, RegistrationTypeEnum } from '../attributes';
|
|
3
|
+
import { RealtySubtypeEnum, RealtyTypeEnum, PropertyExclusiveStatusEnum } from '../customer-property';
|
|
4
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
5
|
+
type PropertyImage = {
|
|
6
|
+
id: string;
|
|
7
|
+
key: string;
|
|
8
|
+
url: string;
|
|
9
|
+
sort: number;
|
|
10
|
+
};
|
|
11
|
+
type PropertyDocument = {
|
|
12
|
+
id: string;
|
|
13
|
+
key: string;
|
|
14
|
+
url: string;
|
|
15
|
+
type: string;
|
|
16
|
+
};
|
|
17
|
+
type ExclusiveAgreementData = {
|
|
18
|
+
number: string;
|
|
19
|
+
endDate: Date;
|
|
20
|
+
location: string;
|
|
21
|
+
realtySubtype: RealtySubtypeEnum | null;
|
|
22
|
+
roomsCount: number | null;
|
|
23
|
+
squareTotal: number | null;
|
|
24
|
+
squareLiving: number | null;
|
|
25
|
+
price: number | null;
|
|
26
|
+
otherRequirements: string | null;
|
|
27
|
+
currencyConvertCoefficient: number | null;
|
|
28
|
+
servicesSumPercent: number;
|
|
29
|
+
minServicesSum: number;
|
|
30
|
+
penaltyPercent: number;
|
|
31
|
+
additionalConditions: string;
|
|
32
|
+
};
|
|
33
|
+
export type CustomerPropertySnapshot = BaseSnapshot & {
|
|
34
|
+
dealType: DealTypeEnum;
|
|
35
|
+
realtyType: RealtyTypeEnum;
|
|
36
|
+
realtySubtype: RealtySubtypeEnum | null;
|
|
37
|
+
registrationType: RegistrationTypeEnum;
|
|
38
|
+
showOnSite: boolean;
|
|
39
|
+
hasInspection: boolean;
|
|
40
|
+
focus: boolean;
|
|
41
|
+
recipient: number | null;
|
|
42
|
+
streetMark: string | null;
|
|
43
|
+
houseNumber: number | null;
|
|
44
|
+
houseNumberAdd: number | null;
|
|
45
|
+
houseNumberTemp: string | null;
|
|
46
|
+
apartmentNumber: number | null;
|
|
47
|
+
apartmentNumberAdd: string | null;
|
|
48
|
+
apartmentNumberTemp: string | null;
|
|
49
|
+
landNumber: number | null;
|
|
50
|
+
fieldNumber: number | null;
|
|
51
|
+
geoArrNumber: number | null;
|
|
52
|
+
corps: string | null;
|
|
53
|
+
attributes: Record<string, unknown>;
|
|
54
|
+
description: MultiLanguage;
|
|
55
|
+
additionalOwners: Record<string, unknown> | null;
|
|
56
|
+
cadastralNumber: Record<string, unknown> | null;
|
|
57
|
+
lng: number | null;
|
|
58
|
+
lat: number | null;
|
|
59
|
+
archiveAnnotation: string | null;
|
|
60
|
+
archiveSetDate: Date | null;
|
|
61
|
+
vnpReasonId: number | null;
|
|
62
|
+
vnpTillDate: Date | null;
|
|
63
|
+
vnpAnnotation: string | null;
|
|
64
|
+
exclusiveStatus: PropertyExclusiveStatusEnum | null;
|
|
65
|
+
exclusiveAnnotation: string | null;
|
|
66
|
+
exclusiveTillDate: Date | null;
|
|
67
|
+
exclusiveSetDate: Date | null;
|
|
68
|
+
exclusiveAgreementData: ExclusiveAgreementData | null;
|
|
69
|
+
markAsLiquidAt: Date | null;
|
|
70
|
+
videoUrl: string | null;
|
|
71
|
+
sellerId: string | null;
|
|
72
|
+
realtorId: string | null;
|
|
73
|
+
createdById: string | null;
|
|
74
|
+
archiveReasonId: string | null;
|
|
75
|
+
complexId: string | null;
|
|
76
|
+
sourceId: string | null;
|
|
77
|
+
streetId: number | null;
|
|
78
|
+
geoId: number | null;
|
|
79
|
+
topzoneId: string | null;
|
|
80
|
+
attorneyId: string | null;
|
|
81
|
+
images: PropertyImage[];
|
|
82
|
+
documents: PropertyDocument[];
|
|
83
|
+
};
|
|
84
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customer-property.snapshot.js","sourceRoot":"","sources":["../../../types/snapshot/customer-property.snapshot.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
2
|
+
export declare enum ActivityPotentialEnum {
|
|
3
|
+
High = "high",
|
|
4
|
+
Medium = "medium",
|
|
5
|
+
Low = "low"
|
|
6
|
+
}
|
|
7
|
+
export declare enum RecipientEnum {
|
|
8
|
+
ForMyself = 1,
|
|
9
|
+
ForRelatives = 2,
|
|
10
|
+
ForClients = 3
|
|
11
|
+
}
|
|
12
|
+
export type CustomerRequestSnapshot = BaseSnapshot & {
|
|
13
|
+
activity: ActivityPotentialEnum | null;
|
|
14
|
+
activityAnnotation: string | null;
|
|
15
|
+
setActiveAt: Date | null;
|
|
16
|
+
vnpTillDate: Date | null;
|
|
17
|
+
vnpAnnotation: string | null;
|
|
18
|
+
recipient: RecipientEnum | null;
|
|
19
|
+
hasVideo: boolean;
|
|
20
|
+
focus: boolean;
|
|
21
|
+
sourceId: string | null;
|
|
22
|
+
buyerId: string | null;
|
|
23
|
+
realtorId: string | null;
|
|
24
|
+
realtorAssignedAt: Date | null;
|
|
25
|
+
archiveAnnotation: string | null;
|
|
26
|
+
setArchiveAt: Date | null;
|
|
27
|
+
archiveReasonId: string | null;
|
|
28
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RecipientEnum = exports.ActivityPotentialEnum = void 0;
|
|
4
|
+
var ActivityPotentialEnum;
|
|
5
|
+
(function (ActivityPotentialEnum) {
|
|
6
|
+
ActivityPotentialEnum["High"] = "high";
|
|
7
|
+
ActivityPotentialEnum["Medium"] = "medium";
|
|
8
|
+
ActivityPotentialEnum["Low"] = "low";
|
|
9
|
+
})(ActivityPotentialEnum || (exports.ActivityPotentialEnum = ActivityPotentialEnum = {}));
|
|
10
|
+
var RecipientEnum;
|
|
11
|
+
(function (RecipientEnum) {
|
|
12
|
+
RecipientEnum[RecipientEnum["ForMyself"] = 1] = "ForMyself";
|
|
13
|
+
RecipientEnum[RecipientEnum["ForRelatives"] = 2] = "ForRelatives";
|
|
14
|
+
RecipientEnum[RecipientEnum["ForClients"] = 3] = "ForClients";
|
|
15
|
+
})(RecipientEnum || (exports.RecipientEnum = RecipientEnum = {}));
|
|
16
|
+
//# sourceMappingURL=customer-request.snapshot.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customer-request.snapshot.js","sourceRoot":"","sources":["../../../types/snapshot/customer-request.snapshot.ts"],"names":[],"mappings":";;;AAEA,IAAY,qBAIX;AAJD,WAAY,qBAAqB;IAC/B,sCAAa,CAAA;IACb,0CAAiB,CAAA;IACjB,oCAAW,CAAA;AACb,CAAC,EAJW,qBAAqB,qCAArB,qBAAqB,QAIhC;AAED,IAAY,aAIX;AAJD,WAAY,aAAa;IACvB,2DAAa,CAAA;IACb,iEAAgB,CAAA;IAChB,6DAAc,CAAA;AAChB,CAAC,EAJW,aAAa,6BAAb,aAAa,QAIxB"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
2
|
+
export type HandlingSnapshot = BaseSnapshot & {
|
|
3
|
+
isBlackList: boolean;
|
|
4
|
+
archiveAnnotation: string | null;
|
|
5
|
+
callId: number | null;
|
|
6
|
+
type: number;
|
|
7
|
+
recipient: number;
|
|
8
|
+
readAt: Date | null;
|
|
9
|
+
annotation: string | null;
|
|
10
|
+
name: string;
|
|
11
|
+
country: string | null;
|
|
12
|
+
phoneNumber: string;
|
|
13
|
+
realtorId: string | null;
|
|
14
|
+
createdById: string | null;
|
|
15
|
+
handledById: string | null;
|
|
16
|
+
requestId: string | null;
|
|
17
|
+
propertyId: string | null;
|
|
18
|
+
sourceId: string | null;
|
|
19
|
+
archiveReasonId: string | null;
|
|
20
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"handling.snapshot.js","sourceRoot":"","sources":["../../../types/snapshot/handling.snapshot.ts"],"names":[],"mappings":""}
|
|
@@ -2,11 +2,16 @@ export * from './base.snapshot';
|
|
|
2
2
|
export * from './user.snapshot';
|
|
3
3
|
export * from './advert-source.snapshot';
|
|
4
4
|
export * from './customer.snapshot';
|
|
5
|
+
export * from './customer-property.snapshot';
|
|
6
|
+
export * from './customer-request.snapshot';
|
|
5
7
|
export * from './office.snapshot';
|
|
8
|
+
export * from './office-center.snapshot';
|
|
6
9
|
export * from './representation.snapshot';
|
|
7
10
|
export * from './attorney.snapshot';
|
|
8
11
|
export * from './build-company.snapshot';
|
|
9
12
|
export * from './archive-reason.snapshot';
|
|
10
13
|
export * from './topzone.snapshot';
|
|
11
14
|
export * from './apartment-complex.snapshot';
|
|
15
|
+
export * from './handling.snapshot';
|
|
16
|
+
export * from './call.snapshot';
|
|
12
17
|
export * from './supported-aggregate-type.enum';
|
|
@@ -18,12 +18,17 @@ __exportStar(require("./base.snapshot"), exports);
|
|
|
18
18
|
__exportStar(require("./user.snapshot"), exports);
|
|
19
19
|
__exportStar(require("./advert-source.snapshot"), exports);
|
|
20
20
|
__exportStar(require("./customer.snapshot"), exports);
|
|
21
|
+
__exportStar(require("./customer-property.snapshot"), exports);
|
|
22
|
+
__exportStar(require("./customer-request.snapshot"), exports);
|
|
21
23
|
__exportStar(require("./office.snapshot"), exports);
|
|
24
|
+
__exportStar(require("./office-center.snapshot"), exports);
|
|
22
25
|
__exportStar(require("./representation.snapshot"), exports);
|
|
23
26
|
__exportStar(require("./attorney.snapshot"), exports);
|
|
24
27
|
__exportStar(require("./build-company.snapshot"), exports);
|
|
25
28
|
__exportStar(require("./archive-reason.snapshot"), exports);
|
|
26
29
|
__exportStar(require("./topzone.snapshot"), exports);
|
|
27
30
|
__exportStar(require("./apartment-complex.snapshot"), exports);
|
|
31
|
+
__exportStar(require("./handling.snapshot"), exports);
|
|
32
|
+
__exportStar(require("./call.snapshot"), exports);
|
|
28
33
|
__exportStar(require("./supported-aggregate-type.enum"), exports);
|
|
29
34
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/snapshot/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,kDAAgC;AAChC,2DAAyC;AACzC,sDAAoC;AACpC,oDAAkC;AAClC,4DAA0C;AAC1C,sDAAoC;AACpC,2DAAyC;AACzC,4DAA0C;AAC1C,qDAAmC;AACnC,+DAA6C;AAC7C,kEAAgD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/snapshot/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,kDAAgC;AAChC,2DAAyC;AACzC,sDAAoC;AACpC,+DAA6C;AAC7C,8DAA4C;AAC5C,oDAAkC;AAClC,2DAAyC;AACzC,4DAA0C;AAC1C,sDAAoC;AACpC,2DAAyC;AACzC,4DAA0C;AAC1C,qDAAmC;AACnC,+DAA6C;AAC7C,sDAAoC;AACpC,kDAAgC;AAChC,kEAAgD"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { MultiLanguage } from '../common';
|
|
2
|
+
import { BaseSnapshot } from './base.snapshot';
|
|
3
|
+
export type OfficeCenterSnapshot = BaseSnapshot & {
|
|
4
|
+
name: MultiLanguage;
|
|
5
|
+
alias: string;
|
|
6
|
+
weight: number;
|
|
7
|
+
lng: number | null;
|
|
8
|
+
lat: number | null;
|
|
9
|
+
contacts: Record<string, unknown>;
|
|
10
|
+
schedule: Record<string, unknown> | null;
|
|
11
|
+
group: MultiLanguage;
|
|
12
|
+
representationId: string | null;
|
|
13
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"office-center.snapshot.js","sourceRoot":"","sources":["../../../types/snapshot/office-center.snapshot.ts"],"names":[],"mappings":""}
|
|
@@ -2,11 +2,16 @@ export declare enum SupportedAggregateType {
|
|
|
2
2
|
User = "user",
|
|
3
3
|
AdvertSource = "advert-source",
|
|
4
4
|
Customer = "customer",
|
|
5
|
+
CustomerProperty = "customer-property",
|
|
6
|
+
CustomerRequest = "customer-request",
|
|
5
7
|
Office = "office",
|
|
8
|
+
OfficeCenter = "office-center",
|
|
6
9
|
Representation = "representation",
|
|
7
10
|
Attorney = "attorney",
|
|
8
11
|
BuildCompany = "build-company",
|
|
9
12
|
ArchiveReason = "archive-reason",
|
|
10
13
|
Topzone = "topzone",
|
|
11
|
-
ApartmentComplex = "apartment-complex"
|
|
14
|
+
ApartmentComplex = "apartment-complex",
|
|
15
|
+
Handling = "handling",
|
|
16
|
+
Call = "call"
|
|
12
17
|
}
|
|
@@ -6,12 +6,17 @@ var SupportedAggregateType;
|
|
|
6
6
|
SupportedAggregateType["User"] = "user";
|
|
7
7
|
SupportedAggregateType["AdvertSource"] = "advert-source";
|
|
8
8
|
SupportedAggregateType["Customer"] = "customer";
|
|
9
|
+
SupportedAggregateType["CustomerProperty"] = "customer-property";
|
|
10
|
+
SupportedAggregateType["CustomerRequest"] = "customer-request";
|
|
9
11
|
SupportedAggregateType["Office"] = "office";
|
|
12
|
+
SupportedAggregateType["OfficeCenter"] = "office-center";
|
|
10
13
|
SupportedAggregateType["Representation"] = "representation";
|
|
11
14
|
SupportedAggregateType["Attorney"] = "attorney";
|
|
12
15
|
SupportedAggregateType["BuildCompany"] = "build-company";
|
|
13
16
|
SupportedAggregateType["ArchiveReason"] = "archive-reason";
|
|
14
17
|
SupportedAggregateType["Topzone"] = "topzone";
|
|
15
18
|
SupportedAggregateType["ApartmentComplex"] = "apartment-complex";
|
|
19
|
+
SupportedAggregateType["Handling"] = "handling";
|
|
20
|
+
SupportedAggregateType["Call"] = "call";
|
|
16
21
|
})(SupportedAggregateType || (exports.SupportedAggregateType = SupportedAggregateType = {}));
|
|
17
22
|
//# sourceMappingURL=supported-aggregate-type.enum.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"supported-aggregate-type.enum.js","sourceRoot":"","sources":["../../../types/snapshot/supported-aggregate-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"supported-aggregate-type.enum.js","sourceRoot":"","sources":["../../../types/snapshot/supported-aggregate-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,sBAgBX;AAhBD,WAAY,sBAAsB;IAChC,uCAAa,CAAA;IACb,wDAA8B,CAAA;IAC9B,+CAAqB,CAAA;IACrB,gEAAsC,CAAA;IACtC,8DAAoC,CAAA;IACpC,2CAAiB,CAAA;IACjB,wDAA8B,CAAA;IAC9B,2DAAiC,CAAA;IACjC,+CAAqB,CAAA;IACrB,wDAA8B,CAAA;IAC9B,0DAAgC,CAAA;IAChC,6CAAmB,CAAA;IACnB,gEAAsC,CAAA;IACtC,+CAAqB,CAAA;IACrB,uCAAa,CAAA;AACf,CAAC,EAhBW,sBAAsB,sCAAtB,sBAAsB,QAgBjC"}
|
|
@@ -1,17 +1,25 @@
|
|
|
1
|
-
import { UserSnapshot, AdvertSourceSnapshot, CustomerSnapshot, OfficeSnapshot, RepresentationSnapshot, AttorneySnapshot, BuildCompanySnapshot, ArchiveReasonSnapshot, TopzoneSnapshot, ApartmentComplexSnapshot, SupportedAggregateType } from '../snapshot';
|
|
1
|
+
import { UserSnapshot, AdvertSourceSnapshot, CustomerSnapshot, CustomerPropertySnapshot, CustomerRequestSnapshot, OfficeSnapshot, OfficeCenterSnapshot, RepresentationSnapshot, AttorneySnapshot, BuildCompanySnapshot, ArchiveReasonSnapshot, TopzoneSnapshot, ApartmentComplexSnapshot, HandlingSnapshot, CallSnapshot, SupportedAggregateType } from '../snapshot';
|
|
2
2
|
export type AggregateToSnapshot = {
|
|
3
3
|
[SupportedAggregateType.User]: UserSnapshot;
|
|
4
4
|
[SupportedAggregateType.AdvertSource]: AdvertSourceSnapshot;
|
|
5
5
|
[SupportedAggregateType.Customer]: CustomerSnapshot;
|
|
6
|
+
[SupportedAggregateType.CustomerProperty]: CustomerPropertySnapshot;
|
|
7
|
+
[SupportedAggregateType.CustomerRequest]: CustomerRequestSnapshot;
|
|
6
8
|
[SupportedAggregateType.Office]: OfficeSnapshot;
|
|
9
|
+
[SupportedAggregateType.OfficeCenter]: OfficeCenterSnapshot;
|
|
7
10
|
[SupportedAggregateType.Representation]: RepresentationSnapshot;
|
|
8
11
|
[SupportedAggregateType.Attorney]: AttorneySnapshot;
|
|
9
12
|
[SupportedAggregateType.BuildCompany]: BuildCompanySnapshot;
|
|
10
13
|
[SupportedAggregateType.ArchiveReason]: ArchiveReasonSnapshot;
|
|
11
14
|
[SupportedAggregateType.Topzone]: TopzoneSnapshot;
|
|
12
15
|
[SupportedAggregateType.ApartmentComplex]: ApartmentComplexSnapshot;
|
|
16
|
+
[SupportedAggregateType.Handling]: HandlingSnapshot;
|
|
17
|
+
[SupportedAggregateType.Call]: CallSnapshot;
|
|
13
18
|
};
|
|
14
19
|
export type Payload<A extends SupportedAggregateType = SupportedAggregateType> = AggregateToSnapshot[A];
|
|
15
20
|
export type SnapshotBuildResult<A extends SupportedAggregateType> = {
|
|
16
21
|
payload: Payload<A>;
|
|
22
|
+
} | {
|
|
23
|
+
success: false;
|
|
24
|
+
reason: string;
|
|
17
25
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snapshot-builder.type.js","sourceRoot":"","sources":["../../../types/snapshot-builder/snapshot-builder.type.ts"],"names":[],"mappings":";;AAAA,
|
|
1
|
+
{"version":3,"file":"snapshot-builder.type.js","sourceRoot":"","sources":["../../../types/snapshot-builder/snapshot-builder.type.ts"],"names":[],"mappings":";;AAAA,0CAiBqB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attach-video-to-property.dto.js","sourceRoot":"","sources":["../../../types/video/attach-video-to-property.dto.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { AttachVideoToPropertyDto } from './attach-video-to-property.dto';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/video/index.ts"],"names":[],"mappings":""}
|