@smarterplan/ngx-smarterplan-core 0.4.39 → 0.4.41
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/esm2020/lib/services/matterport.service.mjs +4 -1
- package/esm2020/lib/services/viewer.service.mjs +3 -3
- package/esm2020/lib/types.service.mjs +2 -1
- package/fesm2015/smarterplan-ngx-smarterplan-core.mjs +8 -2
- package/fesm2015/smarterplan-ngx-smarterplan-core.mjs.map +1 -1
- package/fesm2020/smarterplan-ngx-smarterplan-core.mjs +6 -2
- package/fesm2020/smarterplan-ngx-smarterplan-core.mjs.map +1 -1
- package/lib/services/matterport.service.d.ts +1 -0
- package/lib/services/viewer.service.d.ts +1 -1
- package/lib/types.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -97,6 +97,7 @@ export declare class MatterportService {
|
|
|
97
97
|
getDistPosition(pos1: any, pos2: any): number;
|
|
98
98
|
updatePositionInTagData(): void;
|
|
99
99
|
updateMatterTagFromId(mattertagID: string, object?: any, tagType?: PoiType | null): Promise<void>;
|
|
100
|
+
updateInjectedHtmlForTagID(mattertagID: string, object: any, tagType: PoiType): Promise<void>;
|
|
100
101
|
deleteMattertagFromId(mattertagID: string): void;
|
|
101
102
|
deleteLastMattertag(): void;
|
|
102
103
|
action_toolbox_floorplan(): Promise<void>;
|
|
@@ -92,7 +92,7 @@ export declare class ViewerService {
|
|
|
92
92
|
editOnlyTagStyleForPoi(poi: POI, object: DbObjectType): void;
|
|
93
93
|
addIconAndSetForPoi(poi: POI, iconPath: string): void;
|
|
94
94
|
changeToRegistredIconForPoi(poi: POI, iconName: string): void;
|
|
95
|
-
|
|
95
|
+
updateHtmlTagForPoiWithObject(poi: POI, object: DbObjectType): Promise<void>;
|
|
96
96
|
/**
|
|
97
97
|
* Move an existing poi in Matterport
|
|
98
98
|
* @param poi
|
package/lib/types.service.d.ts
CHANGED
|
@@ -105,7 +105,8 @@ export declare enum EmailStatus {
|
|
|
105
105
|
SENT = "SENT",
|
|
106
106
|
SOFT_BOUNCE = "SOFT_BOUNCE",
|
|
107
107
|
HARD_BOUNCE = "HARD_BOUNCE",
|
|
108
|
-
REJECTED = "REJECTED"
|
|
108
|
+
REJECTED = "REJECTED",
|
|
109
|
+
SATISFACTION_TO_DELIVER = "SATISFACTION_TO_DELIVER"
|
|
109
110
|
}
|
|
110
111
|
export declare enum CaptureViewer {
|
|
111
112
|
CUPIX = "CUPIX",
|