vector-shared 1.1.475 → 1.1.477
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/index.d.ts +1 -0
- package/dist/types/core/index.js +5 -0
- package/dist/types/core/index.js.map +1 -1
- package/dist/types/core/viewing.type.d.ts +45 -0
- package/dist/types/core/viewing.type.js +22 -0
- package/dist/types/core/viewing.type.js.map +1 -0
- package/dist/types/geo/geo-hierarchy.types.d.ts +38 -0
- package/dist/types/geo/geo-hierarchy.types.js +3 -0
- package/dist/types/geo/geo-hierarchy.types.js.map +1 -0
- package/dist/types/index.d.ts +7 -1
- package/dist/types/index.js +12 -2
- package/dist/types/index.js.map +1 -1
- package/dist/types/location/selected-location.type.d.ts +6 -0
- package/dist/types/location/selected-location.type.js +3 -0
- package/dist/types/location/selected-location.type.js.map +1 -0
- package/dist/types/search/search-attribute-value-type-enum.d.ts +8 -0
- package/dist/types/search/search-attribute-value-type-enum.js +13 -0
- package/dist/types/search/search-attribute-value-type-enum.js.map +1 -0
- package/dist/types/search/search-attribute-value-type.d.ts +21 -0
- package/dist/types/search/search-attribute-value-type.js +3 -0
- package/dist/types/search/search-attribute-value-type.js.map +1 -0
- package/dist/types/search/search-fields.types.d.ts +14 -0
- package/dist/types/search/search-fields.types.js +3 -0
- package/dist/types/search/search-fields.types.js.map +1 -0
- package/dist/types/search/search-payload.d.ts +11 -0
- package/dist/types/search/search-payload.js +3 -0
- package/dist/types/search/search-payload.js.map +1 -0
- package/package.json +1 -1
|
@@ -102,3 +102,4 @@ export { ResetPasswordEntity } from './reset-password.type';
|
|
|
102
102
|
export { UserTrustedDeviceEntity } from './user-trusted-device.type';
|
|
103
103
|
export { PropertyVideoEntity } from './property-video.type';
|
|
104
104
|
export { VideoEntity } from './video.type';
|
|
105
|
+
export { ViewingEntity, ViewingStatus, ViewingType, ParticipantType, ExternalRealtorData, ExternalPropertyData } from './viewing.type';
|
package/dist/types/core/index.js
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ParticipantType = exports.ViewingType = exports.ViewingStatus = void 0;
|
|
4
|
+
var viewing_type_1 = require("./viewing.type");
|
|
5
|
+
Object.defineProperty(exports, "ViewingStatus", { enumerable: true, get: function () { return viewing_type_1.ViewingStatus; } });
|
|
6
|
+
Object.defineProperty(exports, "ViewingType", { enumerable: true, get: function () { return viewing_type_1.ViewingType; } });
|
|
7
|
+
Object.defineProperty(exports, "ParticipantType", { enumerable: true, get: function () { return viewing_type_1.ParticipantType; } });
|
|
3
8
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/core/index.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/core/index.ts"],"names":[],"mappings":";;;AA4GA,+CAAuI;AAA/G,6GAAA,aAAa,OAAA;AAAE,2GAAA,WAAW,OAAA;AAAE,+GAAA,eAAe,OAAA"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { BaseEntity } from './base-entity.type';
|
|
2
|
+
import { CustomerPropertyEntity } from './customer-property.type';
|
|
3
|
+
import { UserEntity } from './user.type';
|
|
4
|
+
import { CustomerEntity } from './customer.type';
|
|
5
|
+
export declare enum ViewingStatus {
|
|
6
|
+
Pending = "pending",
|
|
7
|
+
Confirmed = "confirmed",
|
|
8
|
+
Cancelled = "cancelled",
|
|
9
|
+
Completed = "completed"
|
|
10
|
+
}
|
|
11
|
+
export declare enum ViewingType {
|
|
12
|
+
Atlanta = "atlanta",
|
|
13
|
+
External = "external"
|
|
14
|
+
}
|
|
15
|
+
export declare enum ParticipantType {
|
|
16
|
+
MyBuyer = "my-buyer",
|
|
17
|
+
AtlantaRealtor = "atlanta-realtor",
|
|
18
|
+
ExternalRealtor = "external-realtor"
|
|
19
|
+
}
|
|
20
|
+
export type ExternalRealtorData = {
|
|
21
|
+
firstName: string;
|
|
22
|
+
lastName: string;
|
|
23
|
+
phone: string;
|
|
24
|
+
};
|
|
25
|
+
export type ExternalPropertyData = {
|
|
26
|
+
address: string;
|
|
27
|
+
type: string;
|
|
28
|
+
price?: number;
|
|
29
|
+
};
|
|
30
|
+
export type ViewingEntity = BaseEntity & {
|
|
31
|
+
propertyId: number;
|
|
32
|
+
property: CustomerPropertyEntity;
|
|
33
|
+
createdById: number;
|
|
34
|
+
createdBy?: UserEntity;
|
|
35
|
+
realtorId?: number;
|
|
36
|
+
realtor?: UserEntity;
|
|
37
|
+
buyerId?: number;
|
|
38
|
+
buyer?: CustomerEntity;
|
|
39
|
+
viewingDate: Date;
|
|
40
|
+
status: ViewingStatus;
|
|
41
|
+
viewingType: ViewingType;
|
|
42
|
+
participantType: ParticipantType;
|
|
43
|
+
externalRealtorData?: ExternalRealtorData;
|
|
44
|
+
externalPropertyData?: ExternalPropertyData;
|
|
45
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ParticipantType = exports.ViewingType = exports.ViewingStatus = void 0;
|
|
4
|
+
var ViewingStatus;
|
|
5
|
+
(function (ViewingStatus) {
|
|
6
|
+
ViewingStatus["Pending"] = "pending";
|
|
7
|
+
ViewingStatus["Confirmed"] = "confirmed";
|
|
8
|
+
ViewingStatus["Cancelled"] = "cancelled";
|
|
9
|
+
ViewingStatus["Completed"] = "completed";
|
|
10
|
+
})(ViewingStatus || (exports.ViewingStatus = ViewingStatus = {}));
|
|
11
|
+
var ViewingType;
|
|
12
|
+
(function (ViewingType) {
|
|
13
|
+
ViewingType["Atlanta"] = "atlanta";
|
|
14
|
+
ViewingType["External"] = "external";
|
|
15
|
+
})(ViewingType || (exports.ViewingType = ViewingType = {}));
|
|
16
|
+
var ParticipantType;
|
|
17
|
+
(function (ParticipantType) {
|
|
18
|
+
ParticipantType["MyBuyer"] = "my-buyer";
|
|
19
|
+
ParticipantType["AtlantaRealtor"] = "atlanta-realtor";
|
|
20
|
+
ParticipantType["ExternalRealtor"] = "external-realtor";
|
|
21
|
+
})(ParticipantType || (exports.ParticipantType = ParticipantType = {}));
|
|
22
|
+
//# sourceMappingURL=viewing.type.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"viewing.type.js","sourceRoot":"","sources":["../../../types/core/viewing.type.ts"],"names":[],"mappings":";;;AAKA,IAAY,aAKT;AALH,WAAY,aAAa;IACrB,oCAAmB,CAAA;IACnB,wCAAuB,CAAA;IACvB,wCAAuB,CAAA;IACvB,wCAAuB,CAAA;AACzB,CAAC,EALS,aAAa,6BAAb,aAAa,QAKtB;AAED,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,oCAAqB,CAAA;AACvB,CAAC,EAHW,WAAW,2BAAX,WAAW,QAGtB;AAED,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,uCAAoB,CAAA;IACpB,qDAAkC,CAAA;IAClC,uDAAoC,CAAA;AACtC,CAAC,EAJW,eAAe,+BAAf,eAAe,QAI1B"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
type GeoHierarchyEntityType = 'geo' | 'street' | 'topzone' | 'apartment_complex';
|
|
2
|
+
type GeoHierarchyBreadcrumb = {
|
|
3
|
+
id: number;
|
|
4
|
+
label: string;
|
|
5
|
+
type: string;
|
|
6
|
+
geoType?: string;
|
|
7
|
+
};
|
|
8
|
+
type GeoHierarchyRecord = {
|
|
9
|
+
value: string;
|
|
10
|
+
label: string;
|
|
11
|
+
type: GeoHierarchyEntityType;
|
|
12
|
+
geoType?: string;
|
|
13
|
+
breadcrumbs: GeoHierarchyBreadcrumb[];
|
|
14
|
+
meta: {
|
|
15
|
+
entityId: number;
|
|
16
|
+
entityType: GeoHierarchyEntityType;
|
|
17
|
+
geoId?: number;
|
|
18
|
+
geoType?: string;
|
|
19
|
+
parentGeoId?: number;
|
|
20
|
+
lvl?: number;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
type GeoHierarchySearchParams = {
|
|
24
|
+
id?: number;
|
|
25
|
+
q?: string;
|
|
26
|
+
parentGeoId?: number;
|
|
27
|
+
geoTypes?: string[];
|
|
28
|
+
entityTypes?: GeoHierarchyEntityType[];
|
|
29
|
+
limitPerType?: number;
|
|
30
|
+
lang?: string;
|
|
31
|
+
};
|
|
32
|
+
type GeoHierarchyPathItem = {
|
|
33
|
+
id: number;
|
|
34
|
+
label: string;
|
|
35
|
+
entityType: GeoHierarchyEntityType;
|
|
36
|
+
geoType?: string;
|
|
37
|
+
};
|
|
38
|
+
export type { GeoHierarchyBreadcrumb, GeoHierarchyEntityType, GeoHierarchyPathItem, GeoHierarchyRecord, GeoHierarchySearchParams, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"geo-hierarchy.types.js","sourceRoot":"","sources":["../../../types/geo/geo-hierarchy.types.ts"],"names":[],"mappings":""}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export { CalendarDay, DutyCalendarItem } from './calendar/calendar.type';
|
|
|
73
73
|
export { CustomerPropertyDuplicateStatusEnum } from './customer-property/property-duplicate-status.enum';
|
|
74
74
|
export { CustomerRequestSelectionUpdateStatus } from './customer/customer-request-selection.enum';
|
|
75
75
|
export { MismatchActionEnum } from './mistmatch/mismatch-action.types.enum';
|
|
76
|
-
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';
|
|
76
|
+
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, ViewingEntity, ViewingStatus, ViewingType, ParticipantType, ExternalRealtorData, ExternalPropertyData, } from './core';
|
|
77
77
|
export { BaseSnapshot, UserSnapshot, AdvertSourceSnapshot, CustomerSnapshot, CustomerPropertySnapshot, CustomerRequestSnapshot, OfficeSnapshot, OfficeCenterSnapshot, RepresentationSnapshot, AttorneySnapshot, UserAttorneySnapshot, BuildCompanySnapshot, ArchiveReasonSnapshot, TopzoneSnapshot, ApartmentComplexSnapshot, HandlingSnapshot, CallSnapshot, CustomerCallSnapshot, GeoSnapshot, StreetSnapshot, SupportedAggregateType, } from './snapshot';
|
|
78
78
|
export { AggregateToSnapshot, Payload, SnapshotBuildResult, } from './snapshot-builder';
|
|
79
79
|
export { LoginByGoogleDto, LoginDto, ForgotPasswordDto, ResetPasswordDto, LoginResponseDto, ForgotPasswordResponseDto, ResetPasswordResponseDto, ValidateResetTokenRequestDto, ValidateResetTokenResponseDto, TwoFactorAuthResponseDto, Initiate2FADto, Verify2FADto, } from './auth';
|
|
@@ -133,3 +133,9 @@ export { XlsMappingColRows, XlsArea, HeaderSettings, } from './parse/mapping.typ
|
|
|
133
133
|
export { ParserSchemes } from './parse/schemes.enum';
|
|
134
134
|
export { AttachVideoToPropertyDto } from './video';
|
|
135
135
|
export * from './funnel';
|
|
136
|
+
export * from './geo/geo-hierarchy.types';
|
|
137
|
+
export * from './location/selected-location.type';
|
|
138
|
+
export * from './search/search-attribute-value-type';
|
|
139
|
+
export * from './search/search-attribute-value-type-enum';
|
|
140
|
+
export * from './search/search-fields.types';
|
|
141
|
+
export * from './search/search-payload';
|
package/dist/types/index.js
CHANGED
|
@@ -15,8 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.MarketTypeEnum = 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.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;
|
|
18
|
-
exports.
|
|
19
|
-
exports.ParserSchemes = exports.ParseFields = exports.VNP_REASON_IDS = exports.SortOrderEnum = exports.CustomerSortByFieldEnum = exports.CustomerPropertySortByFieldEnum = exports.UserActionLogsSortByFieldEnum = exports.UserSortByFieldEnum = exports.UserAttorneyType = exports.UploadedFileType = exports.TopzoneSortByFieldEnum = exports.StreetSortByFieldEnum = exports.HandlingListeningsStatisticsSortByFieldEnum = exports.EmployeeAgreementsStatisticsSortByFieldEnum = exports.SectionSortByFieldEnum = exports.ROLE_WEIGHT_MAP = exports.Role = exports.RepresentationSortByFieldEnum = exports.QueueSortByFieldEnum = exports.OfficeSortByFieldEnum = exports.OfficeCenterSortByFieldEnum = exports.TelegramNotificationType = exports.NotificationType = exports.NotarySortByFieldEnum = exports.LayoutsSortByFieldEnum = exports.LayoutTypes = exports.HandlingSortByFieldEnum = exports.FloorSortByFieldEnum = exports.FlatSortByFieldEnum = exports.FeedbackSortByFieldEnum = exports.BuyerDocumentTypeEnum = exports.DealStatusEnum = exports.DealSortByFieldEnum = exports.DealUserAttorneyLinkType = exports.PartyTypeDto = exports.MortgageProgramDto = exports.DealTransactionEnumDto = exports.DealStatusDto = exports.DealPayerDto = exports.DealParticipantTypeDto = exports.DealFormatDto = exports.DealExpensesCategoryDto = exports.DealDocumentEnumDto = void 0;
|
|
18
|
+
exports.AttentionRequiredOfficeStatisticSortByFieldEnum = exports.AttentionRequiredWithChangesSortByFieldEnum = exports.AttorneyTypeEnum = exports.ArchiveReasonDestinationEnum = exports.SupportedAggregateType = exports.ParticipantType = exports.ViewingType = exports.ViewingStatus = 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 = exports.MethodSellingEnum = void 0;
|
|
19
|
+
exports.ParserSchemes = exports.ParseFields = exports.VNP_REASON_IDS = exports.SortOrderEnum = exports.CustomerSortByFieldEnum = exports.CustomerPropertySortByFieldEnum = exports.UserActionLogsSortByFieldEnum = exports.UserSortByFieldEnum = exports.UserAttorneyType = exports.UploadedFileType = exports.TopzoneSortByFieldEnum = exports.StreetSortByFieldEnum = exports.HandlingListeningsStatisticsSortByFieldEnum = exports.EmployeeAgreementsStatisticsSortByFieldEnum = exports.SectionSortByFieldEnum = exports.ROLE_WEIGHT_MAP = exports.Role = exports.RepresentationSortByFieldEnum = exports.QueueSortByFieldEnum = exports.OfficeSortByFieldEnum = exports.OfficeCenterSortByFieldEnum = exports.TelegramNotificationType = exports.NotificationType = exports.NotarySortByFieldEnum = exports.LayoutsSortByFieldEnum = exports.LayoutTypes = exports.HandlingSortByFieldEnum = exports.FloorSortByFieldEnum = exports.FlatSortByFieldEnum = exports.FeedbackSortByFieldEnum = exports.BuyerDocumentTypeEnum = exports.DealStatusEnum = exports.DealSortByFieldEnum = exports.DealUserAttorneyLinkType = exports.PartyTypeDto = exports.MortgageProgramDto = exports.DealTransactionEnumDto = exports.DealStatusDto = exports.DealPayerDto = exports.DealParticipantTypeDto = exports.DealFormatDto = exports.DealExpensesCategoryDto = exports.DealDocumentEnumDto = exports.DealAgreementTypeDto = exports.BuildCompanySortByFieldEnum = exports.AttentionRequiredEntityEnum = void 0;
|
|
20
20
|
var permission_enum_1 = require("./permissions/permission.enum");
|
|
21
21
|
Object.defineProperty(exports, "PermissionEnum", { enumerable: true, get: function () { return permission_enum_1.PermissionEnum; } });
|
|
22
22
|
Object.defineProperty(exports, "UserPermissions", { enumerable: true, get: function () { return permission_enum_1.UserPermissions; } });
|
|
@@ -157,6 +157,10 @@ var customer_request_selection_enum_1 = require("./customer/customer-request-sel
|
|
|
157
157
|
Object.defineProperty(exports, "CustomerRequestSelectionUpdateStatus", { enumerable: true, get: function () { return customer_request_selection_enum_1.CustomerRequestSelectionUpdateStatus; } });
|
|
158
158
|
var mismatch_action_types_enum_1 = require("./mistmatch/mismatch-action.types.enum");
|
|
159
159
|
Object.defineProperty(exports, "MismatchActionEnum", { enumerable: true, get: function () { return mismatch_action_types_enum_1.MismatchActionEnum; } });
|
|
160
|
+
var core_1 = require("./core");
|
|
161
|
+
Object.defineProperty(exports, "ViewingStatus", { enumerable: true, get: function () { return core_1.ViewingStatus; } });
|
|
162
|
+
Object.defineProperty(exports, "ViewingType", { enumerable: true, get: function () { return core_1.ViewingType; } });
|
|
163
|
+
Object.defineProperty(exports, "ParticipantType", { enumerable: true, get: function () { return core_1.ParticipantType; } });
|
|
160
164
|
var snapshot_1 = require("./snapshot");
|
|
161
165
|
Object.defineProperty(exports, "SupportedAggregateType", { enumerable: true, get: function () { return snapshot_1.SupportedAggregateType; } });
|
|
162
166
|
var archive_reasons_1 = require("./archive-reasons");
|
|
@@ -240,4 +244,10 @@ Object.defineProperty(exports, "ParseFields", { enumerable: true, get: function
|
|
|
240
244
|
var schemes_enum_1 = require("./parse/schemes.enum");
|
|
241
245
|
Object.defineProperty(exports, "ParserSchemes", { enumerable: true, get: function () { return schemes_enum_1.ParserSchemes; } });
|
|
242
246
|
__exportStar(require("./funnel"), exports);
|
|
247
|
+
__exportStar(require("./geo/geo-hierarchy.types"), exports);
|
|
248
|
+
__exportStar(require("./location/selected-location.type"), exports);
|
|
249
|
+
__exportStar(require("./search/search-attribute-value-type"), exports);
|
|
250
|
+
__exportStar(require("./search/search-attribute-value-type-enum"), exports);
|
|
251
|
+
__exportStar(require("./search/search-fields.types"), exports);
|
|
252
|
+
__exportStar(require("./search/search-payload"), exports);
|
|
243
253
|
//# 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":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../types/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selected-location.type.js","sourceRoot":"","sources":["../../../types/location/selected-location.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SearchAttributeValueTypeEnum = void 0;
|
|
4
|
+
var SearchAttributeValueTypeEnum;
|
|
5
|
+
(function (SearchAttributeValueTypeEnum) {
|
|
6
|
+
SearchAttributeValueTypeEnum["Range"] = "range";
|
|
7
|
+
SearchAttributeValueTypeEnum["Boolean"] = "boolean";
|
|
8
|
+
SearchAttributeValueTypeEnum["String"] = "string";
|
|
9
|
+
SearchAttributeValueTypeEnum["Date"] = "date";
|
|
10
|
+
SearchAttributeValueTypeEnum["ForeignKey"] = "foreignKey";
|
|
11
|
+
SearchAttributeValueTypeEnum["MultiForeignKey"] = "multiForeignKey";
|
|
12
|
+
})(SearchAttributeValueTypeEnum || (exports.SearchAttributeValueTypeEnum = SearchAttributeValueTypeEnum = {}));
|
|
13
|
+
//# sourceMappingURL=search-attribute-value-type-enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-attribute-value-type-enum.js","sourceRoot":"","sources":["../../../types/search/search-attribute-value-type-enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,4BAOX;AAPD,WAAY,4BAA4B;IACtC,+CAAe,CAAA;IACf,mDAAmB,CAAA;IACnB,iDAAiB,CAAA;IACjB,6CAAa,CAAA;IACb,yDAAyB,CAAA;IACzB,mEAAmC,CAAA;AACrC,CAAC,EAPW,4BAA4B,4CAA5B,4BAA4B,QAOvC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { SearchAttributeValueTypeEnum } from './search-attribute-value-type-enum';
|
|
2
|
+
import { SearchFieldTypePayload, SearchRangeTypePayload } from './search-fields.types';
|
|
3
|
+
export type AttributeValue = {
|
|
4
|
+
type: SearchAttributeValueTypeEnum.Range;
|
|
5
|
+
value?: SearchRangeTypePayload<number>;
|
|
6
|
+
} | {
|
|
7
|
+
type: SearchAttributeValueTypeEnum.Boolean;
|
|
8
|
+
value?: boolean;
|
|
9
|
+
} | {
|
|
10
|
+
type: SearchAttributeValueTypeEnum.String;
|
|
11
|
+
value?: string;
|
|
12
|
+
} | {
|
|
13
|
+
type: SearchAttributeValueTypeEnum.Date;
|
|
14
|
+
value?: SearchRangeTypePayload<string>;
|
|
15
|
+
} | {
|
|
16
|
+
type: SearchAttributeValueTypeEnum.ForeignKey;
|
|
17
|
+
value?: unknown;
|
|
18
|
+
} | {
|
|
19
|
+
type: SearchAttributeValueTypeEnum.MultiForeignKey;
|
|
20
|
+
values?: SearchFieldTypePayload<unknown>[];
|
|
21
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-attribute-value-type.js","sourceRoot":"","sources":["../../../types/search/search-attribute-value-type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SelectedLocation } from '../location/selected-location.type';
|
|
2
|
+
export type SearchFieldTypePayload<T> = {
|
|
3
|
+
fieldValue: T;
|
|
4
|
+
isSelected?: boolean;
|
|
5
|
+
isExcluded?: boolean;
|
|
6
|
+
};
|
|
7
|
+
export type SearchRangeTypePayload<T extends string | number> = {
|
|
8
|
+
from: T;
|
|
9
|
+
to?: T;
|
|
10
|
+
unit?: string;
|
|
11
|
+
};
|
|
12
|
+
export type SearchGeoTypePayload = SelectedLocation & {
|
|
13
|
+
paths: number[];
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-fields.types.js","sourceRoot":"","sources":["../../../types/search/search-fields.types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AttributeValue } from './search-attribute-value-type';
|
|
2
|
+
import { SearchFieldTypePayload, SearchGeoTypePayload } from './search-fields.types';
|
|
3
|
+
import { RealtyTypeEnum } from '../customer-property/realty-type.enum';
|
|
4
|
+
import { DealTypeEnum } from '../attributes/deal-type.enum';
|
|
5
|
+
import { AttributeCategoryEnum } from '../attributes/attribute-category.enum';
|
|
6
|
+
export type SearchPayload = {
|
|
7
|
+
fieldRealtyType?: SearchFieldTypePayload<RealtyTypeEnum>[];
|
|
8
|
+
fieldDealType?: SearchFieldTypePayload<DealTypeEnum>[];
|
|
9
|
+
locations?: SearchGeoTypePayload[];
|
|
10
|
+
attributes: Partial<Record<AttributeCategoryEnum, Record<string, AttributeValue>>>;
|
|
11
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-payload.js","sourceRoot":"","sources":["../../../types/search/search-payload.ts"],"names":[],"mappings":""}
|