vector-shared 1.1.537 → 1.1.538

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.
@@ -2,13 +2,10 @@ import { BaseEntity } from './base-entity.type';
2
2
  import { ImageEntity } from './image.type';
3
3
  import { ApartmentComplexEntity } from './apartment-complex.type';
4
4
  import { ApartmentComplexImageCategory } from '../image/apartment-complex-image-category.enum';
5
- import { MediaEntity } from './media.type';
6
5
  export type ApartmentComplexImageEntity = BaseEntity & {
7
6
  category: ApartmentComplexImageCategory;
8
7
  imageId?: number;
9
8
  image?: ImageEntity;
10
- mediaId?: number;
11
- media?: MediaEntity;
12
9
  complexId?: number;
13
10
  complex?: ApartmentComplexEntity;
14
11
  sortOrder: number;
@@ -3,7 +3,6 @@ import { ImageEntity } from './image.type';
3
3
  import { ApartmentComplexEntity } from './apartment-complex.type';
4
4
  import { MultiLanguage } from '../common/multi-language-column.type';
5
5
  import { CurrencyValue } from '../common/currency.value.interface';
6
- import { MediaEntity } from './media.type';
7
6
  export type BuildCompanyEntity = BaseEntity & {
8
7
  globalId: string;
9
8
  name: string;
@@ -11,8 +10,6 @@ export type BuildCompanyEntity = BaseEntity & {
11
10
  description: MultiLanguage;
12
11
  imageId?: number | null;
13
12
  image?: ImageEntity;
14
- mediaId?: number | null;
15
- mediaImage?: MediaEntity;
16
13
  site: string | null;
17
14
  currencies: CurrencyValue[] | null;
18
15
  apartmentComplexes?: ApartmentComplexEntity[];
@@ -2,14 +2,11 @@ import { BaseEntity } from './base-entity.type';
2
2
  import { SectionEntity } from './section.type';
3
3
  import { ImageEntity } from './image.type';
4
4
  import { FlatEntity } from './flat.type';
5
- import { MediaEntity } from './media.type';
6
5
  export type FloorEntity = BaseEntity & {
7
6
  globalId: string;
8
7
  floorNumber: number;
9
8
  imageId?: number;
10
9
  plan?: ImageEntity;
11
- mediaId?: number;
12
- mediaPlan?: MediaEntity;
13
10
  flats?: FlatEntity[];
14
11
  sectionId?: number;
15
12
  section?: SectionEntity;
@@ -105,5 +105,3 @@ export { UserTrustedDeviceEntity } from './user-trusted-device.type';
105
105
  export { PropertyVideoEntity } from './property-video.type';
106
106
  export { VideoEntity } from './video.type';
107
107
  export { ViewingEntity, ViewingStatus, ViewingType, ParticipantType, ExternalRealtorData, ExternalPropertyData, ViewingCompletionStatus, } from './viewing.type';
108
- export { MediaCategory, MediaStatus, ThumbnailSet, MediaEntity, } from './media.type';
109
- export { MediaUrlsDto } from './media-urls.type';
@@ -1,12 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MediaStatus = exports.MediaCategory = exports.ViewingCompletionStatus = exports.ParticipantType = exports.ViewingType = exports.ViewingStatus = void 0;
3
+ exports.ViewingCompletionStatus = exports.ParticipantType = exports.ViewingType = exports.ViewingStatus = void 0;
4
4
  var viewing_type_1 = require("./viewing.type");
5
5
  Object.defineProperty(exports, "ViewingStatus", { enumerable: true, get: function () { return viewing_type_1.ViewingStatus; } });
6
6
  Object.defineProperty(exports, "ViewingType", { enumerable: true, get: function () { return viewing_type_1.ViewingType; } });
7
7
  Object.defineProperty(exports, "ParticipantType", { enumerable: true, get: function () { return viewing_type_1.ParticipantType; } });
8
8
  Object.defineProperty(exports, "ViewingCompletionStatus", { enumerable: true, get: function () { return viewing_type_1.ViewingCompletionStatus; } });
9
- var media_type_1 = require("./media.type");
10
- Object.defineProperty(exports, "MediaCategory", { enumerable: true, get: function () { return media_type_1.MediaCategory; } });
11
- Object.defineProperty(exports, "MediaStatus", { enumerable: true, get: function () { return media_type_1.MediaStatus; } });
12
9
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/core/index.ts"],"names":[],"mappings":";;;AA8GA,+CAQwB;AANtB,6GAAA,aAAa,OAAA;AACb,2GAAA,WAAW,OAAA;AACX,+GAAA,eAAe,OAAA;AAGf,uHAAA,uBAAuB,OAAA;AAEzB,2CAKsB;AAJpB,2GAAA,aAAa,OAAA;AACb,yGAAA,WAAW,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/core/index.ts"],"names":[],"mappings":";;;AA8GA,+CAQwB;AANtB,6GAAA,aAAa,OAAA;AACb,2GAAA,WAAW,OAAA;AACX,+GAAA,eAAe,OAAA;AAGf,uHAAA,uBAAuB,OAAA"}
@@ -3,7 +3,6 @@ import { ApartmentComplexEntity } from './apartment-complex.type';
3
3
  import { ImageEntity } from './image.type';
4
4
  import { FlatEntity } from './flat.type';
5
5
  import { LayoutTypes } from '../layout/layout.types.enum';
6
- import { MediaEntity } from './media.type';
7
6
  export type LayoutEntity = BaseEntity & {
8
7
  name: string;
9
8
  type: LayoutTypes;
@@ -13,10 +12,8 @@ export type LayoutEntity = BaseEntity & {
13
12
  livingSquare: number;
14
13
  kitchenSquare: number;
15
14
  imageId?: number;
16
- image?: ImageEntity;
17
- mediaId?: number;
18
- mediaImage?: MediaEntity;
19
15
  complexId?: number;
16
+ image?: ImageEntity;
20
17
  complex?: ApartmentComplexEntity;
21
18
  flats?: FlatEntity[];
22
19
  sourceAlias?: string;
@@ -1,13 +1,10 @@
1
1
  import { BaseEntity } from './base-entity.type';
2
2
  import { CustomerPropertyEntity } from './customer-property.type';
3
3
  import { ImageEntity } from './image.type';
4
- import { MediaEntity } from './media.type';
5
4
  export type PropertyDocumentEntity = BaseEntity & {
6
5
  category: string;
7
6
  propertyId?: number;
8
7
  imageId?: number;
9
8
  property?: CustomerPropertyEntity;
10
9
  image?: ImageEntity;
11
- mediaId?: number;
12
- media?: MediaEntity;
13
10
  };
@@ -2,15 +2,12 @@ import { UniqueIdEntity } from './unique-id-entity.type';
2
2
  import { CustomerPropertyEntity } from './customer-property.type';
3
3
  import { ImageEntity } from './image.type';
4
4
  import { ImageCategoryEnum } from '../image/image-category.enum';
5
- import { MediaEntity } from './media.type';
6
5
  export type PropertyImageEntity = UniqueIdEntity & {
7
6
  category: ImageCategoryEnum;
8
7
  showOnSite: boolean;
9
8
  isMain: boolean;
10
9
  imageId?: number;
11
10
  image?: ImageEntity;
12
- mediaId?: number;
13
- media?: MediaEntity;
14
11
  propertyId?: number;
15
12
  property?: CustomerPropertyEntity;
16
13
  };
@@ -2,14 +2,11 @@ import { BaseEntity } from './base-entity.type';
2
2
  import { ImageEntity } from './image.type';
3
3
  import { FloorEntity } from './floor.type';
4
4
  import { QueueEntity } from './queue.type';
5
- import { MediaEntity } from './media.type';
6
5
  export type SectionEntity = BaseEntity & {
7
6
  globalId: string;
8
7
  name: string;
9
8
  imageId?: number;
10
9
  plan?: ImageEntity;
11
- mediaId?: number;
12
- mediaPlan?: MediaEntity;
13
10
  queueId?: number;
14
11
  queue?: QueueEntity;
15
12
  floors?: FloorEntity[];
@@ -1,6 +1,5 @@
1
1
  export type CustomerPropertyDocumentDto = {
2
2
  id?: number;
3
3
  category: string;
4
- imageId?: number;
5
- mediaId?: number;
4
+ imageId: number;
6
5
  };
@@ -1,6 +1,3 @@
1
1
  import { PropertyImageEntity } from '../core/property-image.type';
2
2
  import { UniqueIdEntity } from '../core';
3
- export type CustomerPropertyImageDto = Partial<UniqueIdEntity> & Pick<PropertyImageEntity, 'isMain' | 'showOnSite'> & {
4
- imageId?: number;
5
- mediaId?: number;
6
- };
3
+ export type CustomerPropertyImageDto = Partial<UniqueIdEntity> & Pick<PropertyImageEntity, 'imageId' | 'isMain' | 'showOnSite'>;
@@ -71,7 +71,7 @@ export { CalendarDay, DutyCalendarItem, DutyTimeBlockItem, } from './calendar/ca
71
71
  export { CustomerPropertyDuplicateStatusEnum } from './customer-property/property-duplicate-status.enum';
72
72
  export { CustomerRequestSelectionUpdateStatus } from './customer/customer-request-selection.enum';
73
73
  export { MismatchActionEnum } from './mistmatch/mismatch-action.types.enum';
74
- 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, DutyTimeBlockEntity, 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, UserSettingsEntity, UserEntity, ValuationEntity, VnpReasonEntity, XCustomerNotificationEntity, ObjectClassificationQueueEntity, ResetPasswordEntity, UserTrustedDeviceEntity, DirtyAggregatesEntity, OutboxEntity, PropertyVideoEntity, VideoEntity, ViewingEntity, ViewingStatus, ViewingType, ParticipantType, ExternalRealtorData, ExternalPropertyData, ViewingCompletionStatus, MediaCategory, MediaStatus, ThumbnailSet, MediaEntity, MediaUrlsDto, } from './core';
74
+ 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, DutyTimeBlockEntity, 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, UserSettingsEntity, UserEntity, ValuationEntity, VnpReasonEntity, XCustomerNotificationEntity, ObjectClassificationQueueEntity, ResetPasswordEntity, UserTrustedDeviceEntity, DirtyAggregatesEntity, OutboxEntity, PropertyVideoEntity, VideoEntity, ViewingEntity, ViewingStatus, ViewingType, ParticipantType, ExternalRealtorData, ExternalPropertyData, ViewingCompletionStatus, } from './core';
75
75
  export { BaseSnapshot, UserSnapshot, UserSocials, AdvertSourceSnapshot, CustomerSnapshot, CustomerPropertySnapshot, CustomerRequestSnapshot, CustomerRequestSelectionSnapshot, OfficeSnapshot, OfficeCenterSnapshot, RepresentationSnapshot, AttorneySnapshot, UserAttorneySnapshot, BuildCompanySnapshot, ArchiveReasonSnapshot, TopzoneSnapshot, ApartmentComplexSnapshot, ApartmentComplexType, HandlingSnapshot, CallSnapshot, CallRedirectSnapshot, GeoSnapshot, StreetSnapshot, AttributeSnapshot, AttributeValueSnapshot, PropertyAttributeValue, PropertyAttributeOperator, SupportedAggregateType, SnapshotApartmentTypeEnum, SnapshotObjectTypeEnum, DealSnapshot, NotarySnapshot, AgencySnapshot, } from './snapshot';
76
76
  export { AggregateToSnapshot, Payload, SnapshotBuildResult, } from './snapshot-builder';
77
77
  export { LoginByGoogleDto, LoginDto, ForgotPasswordDto, ResetPasswordDto, LoginResponseDto, ForgotPasswordResponseDto, ResetPasswordResponseDto, ValidateResetTokenRequestDto, ValidateResetTokenResponseDto, TwoFactorAuthResponseDto, Initiate2FADto, Verify2FADto, } from './auth';
@@ -16,8 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
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.RealtyTypeEnum = exports.LanguageEnum = exports.NodeEnvEnum = exports.HeaderPermissions = 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
18
  exports.ViewingCompletionStatus = 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.UserCategoryEnum = exports.RealtyPlatform = exports.ModelName = exports.CallTypeEnum = exports.ComplexType = exports.CURRENCY_SIGN = 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.SecrSignatureEnum = exports.MethodSellingEnum = exports.MarketTypeEnum = void 0;
19
- 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 = exports.AttentionRequiredOfficeStatisticSortByFieldEnum = exports.AttentionRequiredWithChangesSortByFieldEnum = exports.AttorneyTypeEnum = exports.ArchiveReasonDestinationEnum = exports.SnapshotObjectTypeEnum = exports.SnapshotApartmentTypeEnum = exports.SupportedAggregateType = exports.ApartmentComplexType = exports.MediaStatus = exports.MediaCategory = void 0;
20
- exports.NegativeCompletionStatuses = exports.PositiveCompletionStatuses = exports.ViewingCompletionStatusLabels = exports.ViewingStatusLabels = exports.ParserSchemes = exports.ParseFields = exports.VNP_REASON_IDS = exports.SortOrderEnum = exports.CustomerSortByFieldEnum = exports.CustomerPropertySortByFieldEnum = void 0;
19
+ 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 = exports.AttentionRequiredOfficeStatisticSortByFieldEnum = exports.AttentionRequiredWithChangesSortByFieldEnum = exports.AttorneyTypeEnum = exports.ArchiveReasonDestinationEnum = exports.SnapshotObjectTypeEnum = exports.SnapshotApartmentTypeEnum = exports.SupportedAggregateType = exports.ApartmentComplexType = void 0;
20
+ exports.NegativeCompletionStatuses = exports.PositiveCompletionStatuses = exports.ViewingCompletionStatusLabels = exports.ViewingStatusLabels = exports.ParserSchemes = exports.ParseFields = exports.VNP_REASON_IDS = exports.SortOrderEnum = void 0;
21
21
  var permission_enum_1 = require("./permissions/permission.enum");
22
22
  Object.defineProperty(exports, "PermissionEnum", { enumerable: true, get: function () { return permission_enum_1.PermissionEnum; } });
23
23
  Object.defineProperty(exports, "UserPermissions", { enumerable: true, get: function () { return permission_enum_1.UserPermissions; } });
@@ -168,8 +168,6 @@ Object.defineProperty(exports, "ViewingStatus", { enumerable: true, get: functio
168
168
  Object.defineProperty(exports, "ViewingType", { enumerable: true, get: function () { return core_1.ViewingType; } });
169
169
  Object.defineProperty(exports, "ParticipantType", { enumerable: true, get: function () { return core_1.ParticipantType; } });
170
170
  Object.defineProperty(exports, "ViewingCompletionStatus", { enumerable: true, get: function () { return core_1.ViewingCompletionStatus; } });
171
- Object.defineProperty(exports, "MediaCategory", { enumerable: true, get: function () { return core_1.MediaCategory; } });
172
- Object.defineProperty(exports, "MediaStatus", { enumerable: true, get: function () { return core_1.MediaStatus; } });
173
171
  var snapshot_1 = require("./snapshot");
174
172
  Object.defineProperty(exports, "ApartmentComplexType", { enumerable: true, get: function () { return snapshot_1.ApartmentComplexType; } });
175
173
  Object.defineProperty(exports, "SupportedAggregateType", { enumerable: true, get: function () { return snapshot_1.SupportedAggregateType; } });
@@ -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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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vector-shared",
3
- "version": "1.1.537",
3
+ "version": "1.1.538",
4
4
  "description": "Private shared package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,9 +0,0 @@
1
- export type MediaUrlsDto = {
2
- original: string | null;
3
- watermarked: string | null;
4
- thumbnails: {
5
- sm: string | null;
6
- md: string | null;
7
- lg: string | null;
8
- } | null;
9
- };
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=media-urls.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"media-urls.type.js","sourceRoot":"","sources":["../../../types/core/media-urls.type.ts"],"names":[],"mappings":""}
@@ -1,42 +0,0 @@
1
- import { BaseEntity } from './base-entity.type';
2
- export declare enum MediaCategory {
3
- PropertyImage = "property_image",
4
- PropertyDocument = "property_document",
5
- ComplexImage = "complex_image",
6
- ProfilePhoto = "profile_photo",
7
- Document = "document",
8
- DealDocument = "deal_document",
9
- Feedback = "feedback",
10
- Video = "video",
11
- FloorPlan = "floor_plan",
12
- SectionPlan = "section_plan",
13
- Layout = "layout",
14
- BuilderLogo = "builder_logo",
15
- Presentation = "presentation"
16
- }
17
- export declare enum MediaStatus {
18
- PendingUpload = "pending_upload",
19
- Uploaded = "uploaded",
20
- Processing = "processing",
21
- Ready = "ready",
22
- Failed = "failed"
23
- }
24
- export type ThumbnailSet = {
25
- sm?: string;
26
- md?: string;
27
- lg?: string;
28
- };
29
- export type MediaEntity = BaseEntity & {
30
- key: string;
31
- originalFilename: string;
32
- mimeType: string;
33
- fileSize: number | null;
34
- category: MediaCategory;
35
- status: MediaStatus;
36
- processedKey: string | null;
37
- thumbnails: ThumbnailSet | null;
38
- watermarkedKey: string | null;
39
- width: number | null;
40
- height: number | null;
41
- metadata: Record<string, unknown> | null;
42
- };
@@ -1,28 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MediaStatus = exports.MediaCategory = void 0;
4
- var MediaCategory;
5
- (function (MediaCategory) {
6
- MediaCategory["PropertyImage"] = "property_image";
7
- MediaCategory["PropertyDocument"] = "property_document";
8
- MediaCategory["ComplexImage"] = "complex_image";
9
- MediaCategory["ProfilePhoto"] = "profile_photo";
10
- MediaCategory["Document"] = "document";
11
- MediaCategory["DealDocument"] = "deal_document";
12
- MediaCategory["Feedback"] = "feedback";
13
- MediaCategory["Video"] = "video";
14
- MediaCategory["FloorPlan"] = "floor_plan";
15
- MediaCategory["SectionPlan"] = "section_plan";
16
- MediaCategory["Layout"] = "layout";
17
- MediaCategory["BuilderLogo"] = "builder_logo";
18
- MediaCategory["Presentation"] = "presentation";
19
- })(MediaCategory || (exports.MediaCategory = MediaCategory = {}));
20
- var MediaStatus;
21
- (function (MediaStatus) {
22
- MediaStatus["PendingUpload"] = "pending_upload";
23
- MediaStatus["Uploaded"] = "uploaded";
24
- MediaStatus["Processing"] = "processing";
25
- MediaStatus["Ready"] = "ready";
26
- MediaStatus["Failed"] = "failed";
27
- })(MediaStatus || (exports.MediaStatus = MediaStatus = {}));
28
- //# sourceMappingURL=media.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"media.type.js","sourceRoot":"","sources":["../../../types/core/media.type.ts"],"names":[],"mappings":";;;AAEA,IAAY,aAcX;AAdD,WAAY,aAAa;IACrB,iDAAgC,CAAA;IAChC,uDAAsC,CAAA;IACtC,+CAA8B,CAAA;IAC9B,+CAA8B,CAAA;IAC9B,sCAAqB,CAAA;IACrB,+CAA8B,CAAA;IAC9B,sCAAqB,CAAA;IACrB,gCAAe,CAAA;IACf,yCAAwB,CAAA;IACxB,6CAA4B,CAAA;IAC5B,kCAAiB,CAAA;IACjB,6CAA4B,CAAA;IAC5B,8CAA6B,CAAA;AACjC,CAAC,EAdW,aAAa,6BAAb,aAAa,QAcxB;AAEC,IAAY,WAMb;AANC,WAAY,WAAW;IACrB,+CAAgC,CAAA;IAChC,oCAAqB,CAAA;IACrB,wCAAyB,CAAA;IACzB,8BAAe,CAAA;IACf,gCAAiB,CAAA;AACrB,CAAC,EANa,WAAW,2BAAX,WAAW,QAMxB"}