@smarterplan/ngx-smarterplan-core 1.2.45 → 1.2.47
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/README.md +24 -24
- package/esm2020/lib/components/csv-export/csv-export.component.mjs +59 -59
- package/esm2020/lib/components/loader/loader.component.mjs +23 -23
- package/esm2020/lib/components/menu-bar/avatar/avatar.component.mjs +80 -80
- package/esm2020/lib/components/menu-bar/menu-bar.component.mjs +99 -99
- package/esm2020/lib/components/menu-bar/navigation-bar/navigation-bar.component.mjs +384 -384
- package/esm2020/lib/components/menu-bar/range-date-picker/range-date-picker.component.mjs +147 -147
- package/esm2020/lib/components/modal-switch-visit/modal-switch-visit.component.mjs +40 -40
- package/esm2020/lib/components/search-bar/search-bar.component.mjs +63 -63
- package/esm2020/lib/components/support-modal/support-modal.component.mjs +66 -66
- package/esm2020/lib/config.mjs +4 -4
- package/esm2020/lib/helpers.service.mjs +470 -470
- package/esm2020/lib/matterport-extensions/hsl-loader/HlsLoader.mjs +69 -69
- package/esm2020/lib/matterport-extensions/nest-thermostat/CanvasImage.mjs +51 -51
- package/esm2020/lib/matterport-extensions/nest-thermostat/CanvasRenderer.mjs +61 -61
- package/esm2020/lib/matterport-extensions/nest-thermostat/NestThermostat.mjs +158 -158
- package/esm2020/lib/matterport-extensions/nest-thermostat/PlaneRenderer.mjs +85 -85
- package/esm2020/lib/matterport-extensions/scene-component/SceneComponent.mjs +128 -128
- package/esm2020/lib/matterport-extensions/security-camera/SecurityCamera.mjs +249 -249
- package/esm2020/lib/matterport-extensions/tv-player/TvPlayer.mjs +98 -98
- package/esm2020/lib/matterport-extensions/video-renderer/VideoRenderer.mjs +64 -64
- package/esm2020/lib/matterport-extensions/view-frustum-mesh/ViewFrustumMesh.mjs +221 -221
- package/esm2020/lib/mattertagData.mjs +165 -165
- package/esm2020/lib/ngx-smarterplan-core.module.mjs +122 -122
- package/esm2020/lib/ngx-smarterplan-core.service.mjs +14 -14
- package/esm2020/lib/pipes/duration-to-string.pipe.mjs +66 -66
- package/esm2020/lib/pipes/format-date-number-to-digits.pipe.mjs +30 -30
- package/esm2020/lib/pipes/hashtag-from-id.pipe.mjs +26 -26
- package/esm2020/lib/pipes/safe-url.pipe.mjs +20 -20
- package/esm2020/lib/pipes/time-date-to-local-string.pipe.mjs +104 -104
- package/esm2020/lib/pipes/username-from-id.pipe.mjs +29 -29
- package/esm2020/lib/services/amplify-cache.service.mjs +72 -72
- package/esm2020/lib/services/base-tab.service.mjs +24 -24
- package/esm2020/lib/services/baseVisibility.service.mjs +18 -18
- package/esm2020/lib/services/content.service.mjs +135 -135
- package/esm2020/lib/services/filter.service.mjs +599 -599
- package/esm2020/lib/services/intervention.service.mjs +236 -236
- package/esm2020/lib/services/locale.service.mjs +45 -45
- package/esm2020/lib/services/matterport-import.service.mjs +340 -340
- package/esm2020/lib/services/matterport.service.mjs +1587 -1587
- package/esm2020/lib/services/models/affectation.service.mjs +60 -60
- package/esm2020/lib/services/models/base-object.service.mjs +70 -70
- package/esm2020/lib/services/models/capture.service.mjs +34 -34
- package/esm2020/lib/services/models/comment.service.mjs +98 -98
- package/esm2020/lib/services/models/domain.service.mjs +78 -78
- package/esm2020/lib/services/models/equipment.service.mjs +683 -683
- package/esm2020/lib/services/models/event.service.mjs +128 -128
- package/esm2020/lib/services/models/feature.service.mjs +380 -380
- package/esm2020/lib/services/models/hashtag.service.mjs +38 -38
- package/esm2020/lib/services/models/layer.service.mjs +33 -33
- package/esm2020/lib/services/models/measurement.service.mjs +199 -199
- package/esm2020/lib/services/models/mission.service.mjs +206 -206
- package/esm2020/lib/services/models/navigation.service.mjs +92 -92
- package/esm2020/lib/services/models/node.service.mjs +31 -31
- package/esm2020/lib/services/models/object3D.service.mjs +364 -364
- package/esm2020/lib/services/models/operation.service.mjs +59 -59
- package/esm2020/lib/services/models/organisation.service.mjs +73 -73
- package/esm2020/lib/services/models/plan.service.mjs +799 -799
- package/esm2020/lib/services/models/poi.service.mjs +103 -103
- package/esm2020/lib/services/models/profile.service.mjs +58 -58
- package/esm2020/lib/services/models/property.service.mjs +44 -44
- package/esm2020/lib/services/models/space.service.mjs +204 -204
- package/esm2020/lib/services/models/template.service.mjs +41 -41
- package/esm2020/lib/services/models/ticket.service.mjs +526 -526
- package/esm2020/lib/services/models/visit.service.mjs +130 -130
- package/esm2020/lib/services/models/zone.service.mjs +225 -225
- package/esm2020/lib/services/navigator.service.mjs +212 -212
- package/esm2020/lib/services/s3.service.mjs +137 -137
- package/esm2020/lib/services/search.service.mjs +124 -124
- package/esm2020/lib/services/support.service.mjs +42 -42
- package/esm2020/lib/services/tag.service.mjs +111 -111
- package/esm2020/lib/services/user.service.mjs +501 -501
- package/esm2020/lib/services/validators.service.mjs +50 -50
- package/esm2020/lib/services/viewer.service.mjs +389 -389
- package/esm2020/lib/services/zone-drawer.service.mjs +76 -76
- package/esm2020/lib/services/zoneChange.service.mjs +30 -30
- package/esm2020/lib/types.service.mjs +311 -311
- package/esm2020/lib/validators/email.directive.mjs +7 -7
- package/esm2020/lib/validators/no-empty.directive.mjs +12 -12
- package/esm2020/lib/validators/number.directive.mjs +12 -12
- package/esm2020/lib/validators/text.directive.mjs +12 -12
- package/esm2020/public-api.mjs +72 -72
- package/esm2020/smarterplan-ngx-smarterplan-core.mjs +4 -4
- package/fesm2015/smarterplan-ngx-smarterplan-core.mjs +13014 -13014
- package/fesm2015/smarterplan-ngx-smarterplan-core.mjs.map +1 -1
- package/fesm2020/smarterplan-ngx-smarterplan-core.mjs +12263 -12263
- package/fesm2020/smarterplan-ngx-smarterplan-core.mjs.map +1 -1
- package/lib/components/csv-export/csv-export.component.d.ts +18 -18
- package/lib/components/loader/loader.component.d.ts +10 -10
- package/lib/components/menu-bar/avatar/avatar.component.d.ts +21 -21
- package/lib/components/menu-bar/menu-bar.component.d.ts +38 -38
- package/lib/components/menu-bar/navigation-bar/navigation-bar.component.d.ts +73 -73
- package/lib/components/menu-bar/range-date-picker/range-date-picker.component.d.ts +35 -35
- package/lib/components/modal-switch-visit/modal-switch-visit.component.d.ts +22 -22
- package/lib/components/search-bar/search-bar.component.d.ts +16 -16
- package/lib/components/support-modal/support-modal.component.d.ts +26 -26
- package/lib/config.d.ts +22 -22
- package/lib/helpers.service.d.ts +79 -79
- package/lib/matterport-extensions/hsl-loader/HlsLoader.d.ts +26 -26
- package/lib/matterport-extensions/nest-thermostat/CanvasImage.d.ts +31 -31
- package/lib/matterport-extensions/nest-thermostat/CanvasRenderer.d.ts +37 -37
- package/lib/matterport-extensions/nest-thermostat/NestThermostat.d.ts +42 -42
- package/lib/matterport-extensions/nest-thermostat/PlaneRenderer.d.ts +46 -46
- package/lib/matterport-extensions/scene-component/SceneComponent.d.ts +388 -388
- package/lib/matterport-extensions/security-camera/SecurityCamera.d.ts +47 -47
- package/lib/matterport-extensions/tv-player/TvPlayer.d.ts +26 -26
- package/lib/matterport-extensions/video-renderer/VideoRenderer.d.ts +26 -26
- package/lib/matterport-extensions/view-frustum-mesh/ViewFrustumMesh.d.ts +43 -43
- package/lib/mattertagData.d.ts +70 -70
- package/lib/ngx-smarterplan-core.module.d.ts +29 -29
- package/lib/ngx-smarterplan-core.service.d.ts +6 -6
- package/lib/pipes/duration-to-string.pipe.d.ts +12 -12
- package/lib/pipes/format-date-number-to-digits.pipe.d.ts +10 -10
- package/lib/pipes/hashtag-from-id.pipe.d.ts +10 -10
- package/lib/pipes/safe-url.pipe.d.ts +10 -10
- package/lib/pipes/time-date-to-local-string.pipe.d.ts +16 -16
- package/lib/pipes/username-from-id.pipe.d.ts +11 -11
- package/lib/services/amplify-cache.service.d.ts +37 -37
- package/lib/services/base-tab.service.d.ts +10 -10
- package/lib/services/baseVisibility.service.d.ts +9 -9
- package/lib/services/content.service.d.ts +28 -28
- package/lib/services/filter.service.d.ts +60 -60
- package/lib/services/intervention.service.d.ts +25 -25
- package/lib/services/locale.service.d.ts +23 -23
- package/lib/services/matterport-import.service.d.ts +53 -53
- package/lib/services/matterport.service.d.ts +336 -336
- package/lib/services/models/affectation.service.d.ts +14 -14
- package/lib/services/models/base-object.service.d.ts +20 -20
- package/lib/services/models/capture.service.d.ts +13 -13
- package/lib/services/models/comment.service.d.ts +26 -26
- package/lib/services/models/domain.service.d.ts +19 -19
- package/lib/services/models/equipment.service.d.ts +93 -93
- package/lib/services/models/event.service.d.ts +43 -43
- package/lib/services/models/feature.service.d.ts +75 -75
- package/lib/services/models/hashtag.service.d.ts +13 -13
- package/lib/services/models/layer.service.d.ts +11 -11
- package/lib/services/models/measurement.service.d.ts +51 -51
- package/lib/services/models/mission.service.d.ts +39 -39
- package/lib/services/models/navigation.service.d.ts +29 -29
- package/lib/services/models/node.service.d.ts +12 -12
- package/lib/services/models/object3D.service.d.ts +57 -57
- package/lib/services/models/operation.service.d.ts +15 -15
- package/lib/services/models/organisation.service.d.ts +19 -19
- package/lib/services/models/plan.service.d.ts +133 -133
- package/lib/services/models/poi.service.d.ts +25 -25
- package/lib/services/models/profile.service.d.ts +16 -16
- package/lib/services/models/property.service.d.ts +13 -13
- package/lib/services/models/space.service.d.ts +46 -46
- package/lib/services/models/template.service.d.ts +15 -15
- package/lib/services/models/ticket.service.d.ts +93 -93
- package/lib/services/models/visit.service.d.ts +24 -24
- package/lib/services/models/zone.service.d.ts +50 -50
- package/lib/services/navigator.service.d.ts +61 -61
- package/lib/services/s3.service.d.ts +14 -14
- package/lib/services/search.service.d.ts +20 -20
- package/lib/services/support.service.d.ts +17 -17
- package/lib/services/tag.service.d.ts +29 -29
- package/lib/services/user.service.d.ts +118 -118
- package/lib/services/validators.service.d.ts +18 -18
- package/lib/services/viewer.service.d.ts +110 -110
- package/lib/services/zone-drawer.service.d.ts +7 -7
- package/lib/services/zoneChange.service.d.ts +17 -17
- package/lib/types.service.d.ts +842 -842
- package/lib/validators/email.directive.d.ts +2 -2
- package/lib/validators/no-empty.directive.d.ts +2 -2
- package/lib/validators/number.directive.d.ts +2 -2
- package/lib/validators/text.directive.d.ts +2 -2
- package/package.json +2 -2
- package/public-api.d.ts +64 -64
- package/smarterplan-ngx-smarterplan-core.d.ts +5 -5
package/lib/types.service.d.ts
CHANGED
|
@@ -1,842 +1,842 @@
|
|
|
1
|
-
export declare enum CameraMode {
|
|
2
|
-
DOLLHOUSE = "mode.dollhouse",
|
|
3
|
-
FLOORPLAN = "mode.floorplan",
|
|
4
|
-
INSIDE = "mode.inside",
|
|
5
|
-
OUTSIDE = "mode.outside",
|
|
6
|
-
TRANSITIONING = "mode.transitioning"
|
|
7
|
-
}
|
|
8
|
-
export declare enum MattertagActionMode {
|
|
9
|
-
POSITION_TICKET = "positioning_ticket",
|
|
10
|
-
ADD_TICKET = "add_ticket",
|
|
11
|
-
ADD_OBJECT3D = "add_object3D",
|
|
12
|
-
POSITION_OBJECT3D = "positioning_object3D",
|
|
13
|
-
POSITION_EQUIPMENT = "positioning_equip",
|
|
14
|
-
ADD_EQUIPMENT = "add_equip",
|
|
15
|
-
POSITION_DATA = "positioning_feature",
|
|
16
|
-
ADD_DATA = "add_feature",
|
|
17
|
-
POSITION_DESK = "positioning_feature",
|
|
18
|
-
ADD_DESK = "add_desk",
|
|
19
|
-
POSITION_ROOM = "positioning_room",
|
|
20
|
-
ADD_ROOM = "add_room"
|
|
21
|
-
}
|
|
22
|
-
export declare enum PoiType {
|
|
23
|
-
EQUIPMENT = "EQUIPMENT",
|
|
24
|
-
INFORMATION = "INFORMATION",
|
|
25
|
-
TICKET = "TICKET",
|
|
26
|
-
OBJECT3D = "OBJECT3D",
|
|
27
|
-
MEASURE = "MEASURE",
|
|
28
|
-
DATA = "DATA",
|
|
29
|
-
PEOPLE = "PEOPLE",
|
|
30
|
-
DESK = "DESK",
|
|
31
|
-
ROOM = "ROOM"
|
|
32
|
-
}
|
|
33
|
-
export declare enum TicketPriority {
|
|
34
|
-
MINIMUM = "MINIMUM",
|
|
35
|
-
LOW = "LOW",
|
|
36
|
-
MEDIUM = "MEDIUM",
|
|
37
|
-
HIGH = "HIGH",
|
|
38
|
-
MAXIMUM = "MAXIMUM"
|
|
39
|
-
}
|
|
40
|
-
export declare enum TagAction {
|
|
41
|
-
HOVER_ON = "hoverOn",
|
|
42
|
-
AUDIO_CLICK = "audioClick",
|
|
43
|
-
VIDEO_CLICK = "videoClick",
|
|
44
|
-
IMAGE_CLICK = "imageClick",
|
|
45
|
-
DOC_CLICK = "docClick",
|
|
46
|
-
CLOSE_MODAL = "closeModal",
|
|
47
|
-
NEXT_SLIDE = "nextSlide",
|
|
48
|
-
DETAIL_CLICK = "detailsClick",
|
|
49
|
-
TICKET_CLICK = "ticketClick",
|
|
50
|
-
YOUTUBE_CLICK = "youtubeClick"
|
|
51
|
-
}
|
|
52
|
-
export declare enum TicketStatus {
|
|
53
|
-
TO_BE_PROCESSED = "TO_BE_PROCESSED",
|
|
54
|
-
PLANNED = "PLANNED",
|
|
55
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
56
|
-
WAITING_FOR_VALIDATION = "WAITING_FOR_VALIDATION",
|
|
57
|
-
VALIDATED = "VALIDATED",
|
|
58
|
-
REJECTED = "REJECTED",
|
|
59
|
-
RESOLVED = "RESOLVED",
|
|
60
|
-
ARCHIVED = "ARCHIVED",
|
|
61
|
-
LATE = "LATE",
|
|
62
|
-
BLOCKED = "BLOCKED",
|
|
63
|
-
COMPLETED = "COMPLETED",
|
|
64
|
-
DELAYED = "DELAYED",
|
|
65
|
-
CANCELLED = "CANCELLED",
|
|
66
|
-
TO_REDO = "TO_REDO",
|
|
67
|
-
CREATED = "CREATED"
|
|
68
|
-
}
|
|
69
|
-
export declare enum DomainType {
|
|
70
|
-
EQUIPMENT = "EQUIPMENT",
|
|
71
|
-
MISSION = "MISSION",
|
|
72
|
-
TICKET = "TICKET",
|
|
73
|
-
OBJECT3D = "OBJECT3D",
|
|
74
|
-
POI = "POI",
|
|
75
|
-
FEATURE = "FEATURE",
|
|
76
|
-
BOOKING = "BOOKING"
|
|
77
|
-
}
|
|
78
|
-
export declare enum RoleStatus {
|
|
79
|
-
VISITOR = "VISITOR",
|
|
80
|
-
VISITOR_MUSEUM = "VISITOR_MUSEUM",
|
|
81
|
-
GUIDE_MUSEUM = "GUIDE_MUSEUM",
|
|
82
|
-
OCCUPANT = "OCCUPANT",
|
|
83
|
-
SERVICE = "SERVICE",
|
|
84
|
-
MANAGER = "MANAGER",
|
|
85
|
-
OWNER = "OWNER",
|
|
86
|
-
ADMIN = "ADMIN"
|
|
87
|
-
}
|
|
88
|
-
export declare enum ProfileStatus {
|
|
89
|
-
WAITING_FOR_VALIDATION = "WAITING_FOR_VALIDATION",
|
|
90
|
-
WAITING_FOR_ACTIVATION = "WAITING_FOR_ACTIVATION",
|
|
91
|
-
ACTIVE = "ACTIVE",
|
|
92
|
-
INACTIVE = "INACTIVE",
|
|
93
|
-
BLOCKED = "BLOCKED"
|
|
94
|
-
}
|
|
95
|
-
export declare enum LevelStatus {
|
|
96
|
-
MINIMUM = "MINIMUM",
|
|
97
|
-
LOW = "LOW",
|
|
98
|
-
MEDIUM = "MEDIUM",
|
|
99
|
-
HIGH = "HIGH",
|
|
100
|
-
MAXIMUM = "MAXIMUM"
|
|
101
|
-
}
|
|
102
|
-
export declare enum PropertyType {
|
|
103
|
-
PROPERTY = "PROPERTY",
|
|
104
|
-
VISIT = "VISIT",
|
|
105
|
-
OCCUPANT = "OCCUPANT",
|
|
106
|
-
SHARED = "SHARED"
|
|
107
|
-
}
|
|
108
|
-
export declare enum SpaceStatus {
|
|
109
|
-
DPE_TO_VALIDATE = "DPE_TO_VALIDATE",
|
|
110
|
-
DPE_VALIDATED = "DPE_VALIDATED",
|
|
111
|
-
DPE_FETCH = "DPE_FETCH"
|
|
112
|
-
}
|
|
113
|
-
export declare enum Locale {
|
|
114
|
-
FR = "FR",
|
|
115
|
-
EN = "EN"
|
|
116
|
-
}
|
|
117
|
-
export declare enum EmailStatus {
|
|
118
|
-
CREATION_TO_DELIVER = "CREATION_TO_DELIVER",
|
|
119
|
-
UPDATE_TO_DELIVER = "UPDATE_TO_DELIVER",
|
|
120
|
-
CANCELLATION_TO_DELIVER = "CANCELLATION_TO_DELIVER",
|
|
121
|
-
SENT = "SENT",
|
|
122
|
-
SOFT_BOUNCE = "SOFT_BOUNCE",
|
|
123
|
-
HARD_BOUNCE = "HARD_BOUNCE",
|
|
124
|
-
REJECTED = "REJECTED",
|
|
125
|
-
SATISFACTION_TO_DELIVER = "SATISFACTION_TO_DELIVER"
|
|
126
|
-
}
|
|
127
|
-
export declare enum CaptureViewer {
|
|
128
|
-
CUPIX = "CUPIX",
|
|
129
|
-
MATTERPORT = "MATTERPORT",
|
|
130
|
-
SMARTERPLAN_V1 = "SMARTERPLAN_V1"
|
|
131
|
-
}
|
|
132
|
-
export declare enum InventoryStatus {
|
|
133
|
-
SUCCESS = "SUCCESS",
|
|
134
|
-
ERROR = "ERROR",
|
|
135
|
-
TO_RUN = "TO_RUN",
|
|
136
|
-
TO_RUN_ONE_IMAGE = "TO_RUN_ONE_IMAGE",
|
|
137
|
-
ERROR_FILE_OBJ_NOT_EXIST = "ERROR_FILE_OBJ_NOT_EXIST",
|
|
138
|
-
ERROR_FILE_JSON_NOT_EXIST = "ERROR_FILE_JSON_NOT_EXIST",
|
|
139
|
-
ERROR_FILE_MODEL_NOT_EXIST = "ERROR_FILE_MODEL_NOT_EXIST"
|
|
140
|
-
}
|
|
141
|
-
export declare enum TypeNote {
|
|
142
|
-
CONTRACTUAL = "CONTRACTUAL",
|
|
143
|
-
INFORMATION = "INFORMATION",
|
|
144
|
-
TECHNICAL = "TECHNICAL",
|
|
145
|
-
FINANCIAL = "FINANCIAL",
|
|
146
|
-
OTHER = "OTHER",
|
|
147
|
-
IMAGE = "IMAGE"
|
|
148
|
-
}
|
|
149
|
-
export declare enum FeatureType {
|
|
150
|
-
DESK = "DESK",
|
|
151
|
-
INDICATOR_TEMP = "INDICATOR_TEMP",
|
|
152
|
-
INFORMATION = "INFORMATION",
|
|
153
|
-
INDICATOR_CO2 = "INDICATOR_CO2",
|
|
154
|
-
PURCHASE = "PURCHASE"
|
|
155
|
-
}
|
|
156
|
-
export declare enum TicketType {
|
|
157
|
-
REPORTING = "REPORTING",
|
|
158
|
-
REQUEST_FOR_INTERVENTION = "REQUEST_FOR_INTERVENTION",
|
|
159
|
-
REQUEST_FOR_MAINTENANCE = "REQUEST_FOR_MAINTENANCE",
|
|
160
|
-
WORK_ORDER = "WORK_ORDER",
|
|
161
|
-
INCIDENT = "INCIDENT",
|
|
162
|
-
INFORMATION = "INFORMATION"
|
|
163
|
-
}
|
|
164
|
-
export declare enum EventType {
|
|
165
|
-
EQUIPMENT = "EQUIPMENT",
|
|
166
|
-
COMMENT = "COMMENT",
|
|
167
|
-
CONTRACTUAL_INTERVENTION = "CONTRACTUAL_INTERVENTION",
|
|
168
|
-
NON_CONTRACTUAL_INTERVENTION = "NON_CONTRACTUAL_INTERVENTION",
|
|
169
|
-
TICKET = "TICKET",
|
|
170
|
-
OBJECT3D = "OBJECT3D",
|
|
171
|
-
REPORTING = "REPORTING",
|
|
172
|
-
REQUEST_FOR_INTERVENTION = "REQUEST_FOR_INTERVENTION",
|
|
173
|
-
REQUEST_FOR_MAINTENANCE = "REQUEST_FOR_MAINTENANCE",
|
|
174
|
-
WORK_ORDER = "WORK_ORDER",
|
|
175
|
-
INCIDENT = "INCIDENT",
|
|
176
|
-
MEASURE = "MEASURE",
|
|
177
|
-
BOOKING = "BOOKING",
|
|
178
|
-
BOOKING_SUBCRIPTION = "BOOKING_SUBCRIPTION"
|
|
179
|
-
}
|
|
180
|
-
export declare enum EventStatus {
|
|
181
|
-
TO_BE_PROCESSED = "TO_BE_PROCESSED",
|
|
182
|
-
PLANNED = "PLANNED",
|
|
183
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
184
|
-
WAITING_FOR_VALIDATION = "WAITING_FOR_VALIDATION",
|
|
185
|
-
VALIDATED = "VALIDATED",
|
|
186
|
-
REJECTED = "REJECTED",
|
|
187
|
-
RESOLVED = "RESOLVED",
|
|
188
|
-
ARCHIVED = "ARCHIVED",
|
|
189
|
-
LATE = "LATE",
|
|
190
|
-
BLOCKED = "BLOCKED",
|
|
191
|
-
COMPLETED = "COMPLETED",
|
|
192
|
-
DELAYED = "DELAYED",
|
|
193
|
-
CANCELLED = "CANCELLED",
|
|
194
|
-
TO_REDO = "TO_REDO",
|
|
195
|
-
CREATED = "CREATED",
|
|
196
|
-
LINKED_TO_EQUIPMENT = "LINKED_TO_EQUIPMENT",
|
|
197
|
-
UNLINKED_FROM_EQUIPMENT = "UNLINKED_FROM_EQUIPMENT",
|
|
198
|
-
EDITED = "EDITED",
|
|
199
|
-
LINKED_TO_A_PARENT_TICKET = "LINKED_TO_A_PARENT_TICKET",
|
|
200
|
-
WAITING_FOR_ACCEPTATION = "WAITING_FOR_ACCEPTATION",
|
|
201
|
-
ACCEPTED = "ACCEPTED",
|
|
202
|
-
REFUSED = "REFUSED",
|
|
203
|
-
DOMAIN_UPDATED = "DOMAIN_UPDATED",
|
|
204
|
-
DATES_UPDATED = "DATES_UPDATED",
|
|
205
|
-
TICKET_CHILD_REMOVED = "TICKET_CHILD_REMOVED",
|
|
206
|
-
TYPE_UPDATED = "TYPE_UPDATED",
|
|
207
|
-
DATE_END_UPDATED = "DATE_END_UPDATED",
|
|
208
|
-
DATE_START_UPDATED = "DATE_START_UPDATED",
|
|
209
|
-
POSITION_SET = "POSITION_SET",
|
|
210
|
-
POSITION_UPDATED = "POSITION_UPDATED",
|
|
211
|
-
POSITION_REMOVED = "POSITION_REMOVED"
|
|
212
|
-
}
|
|
213
|
-
export declare enum PaymentStatus {
|
|
214
|
-
UNPAID = "UNPAID",
|
|
215
|
-
PAID = "PAID",
|
|
216
|
-
PENDING = "PENDING",
|
|
217
|
-
ERROR = "ERROR"
|
|
218
|
-
}
|
|
219
|
-
export declare enum CommentType {
|
|
220
|
-
MEASURE = "MEASURE",
|
|
221
|
-
VIDEO = "VIDEO",
|
|
222
|
-
DOCUMENT = "DOCUMENT",
|
|
223
|
-
IMAGE = "IMAGE",
|
|
224
|
-
TEXT = "TEXT",
|
|
225
|
-
AUDIO = "AUDIO",
|
|
226
|
-
URL = "URL",
|
|
227
|
-
YOUTUBE = "YOUTUBE",
|
|
228
|
-
URL_SHOP = "URL_SHOP",
|
|
229
|
-
EMBED = "EMBED",
|
|
230
|
-
IFRAME = "IFRAME"
|
|
231
|
-
}
|
|
232
|
-
export declare enum StatusEquipment {
|
|
233
|
-
TO_SETUP = "TO_SETUP",
|
|
234
|
-
BROKEN = "BROKEN",
|
|
235
|
-
UNINSTALLED = "UNINSTALLED",
|
|
236
|
-
INCIDENT = "INCIDENT",
|
|
237
|
-
IN_OPERATION = "IN_OPERATION",
|
|
238
|
-
WAITING_FOR_REPAIR = "WAITING_FOR_REPAIR",
|
|
239
|
-
DELETED = "DELETED",
|
|
240
|
-
OUT_OF_ORDER = "OUT_OF_ORDER",
|
|
241
|
-
TO_BE_REPLACED = "TO_BE_REPLACED"
|
|
242
|
-
}
|
|
243
|
-
/** Interface for Update (only id is required) */
|
|
244
|
-
export interface IUpdate {
|
|
245
|
-
id: string;
|
|
246
|
-
}
|
|
247
|
-
export declare type AWSType = {
|
|
248
|
-
__typename?: string | null;
|
|
249
|
-
id?: string | null;
|
|
250
|
-
createdAt?: string;
|
|
251
|
-
updatedAt?: string;
|
|
252
|
-
};
|
|
253
|
-
export declare type DbObjectType = {
|
|
254
|
-
spaceID?: string | null;
|
|
255
|
-
description?: string | null;
|
|
256
|
-
pois?: {
|
|
257
|
-
__typename?: 'ModelPOIConnection';
|
|
258
|
-
items?: Array<POI> | null;
|
|
259
|
-
nextToken?: string | null;
|
|
260
|
-
} | null;
|
|
261
|
-
space?: Space | null;
|
|
262
|
-
domainID?: string | null;
|
|
263
|
-
name?: string | null;
|
|
264
|
-
title?: string | null;
|
|
265
|
-
} & AWSType;
|
|
266
|
-
export declare type Ticket = {
|
|
267
|
-
spaceID: string;
|
|
268
|
-
title: string;
|
|
269
|
-
status?: TicketStatus | null;
|
|
270
|
-
priority?: TicketPriority | null;
|
|
271
|
-
ownerMissionID?: string | null;
|
|
272
|
-
ownerMission?: Mission | null;
|
|
273
|
-
type?: TicketType | null;
|
|
274
|
-
parentID?: string | null;
|
|
275
|
-
level?: LevelStatus | null;
|
|
276
|
-
friendlyLabel?: string | null;
|
|
277
|
-
domain: Domain | null;
|
|
278
|
-
domainID: string | null;
|
|
279
|
-
events?: {
|
|
280
|
-
__typename?: 'ModelEventConnection';
|
|
281
|
-
items?: Array<Event> | null;
|
|
282
|
-
nextToken?: string | null;
|
|
283
|
-
} | null;
|
|
284
|
-
assignees?: {
|
|
285
|
-
__typename?: 'ModelAffectationConnection';
|
|
286
|
-
items?: Array<Affectation> | null;
|
|
287
|
-
nextToken?: string | null;
|
|
288
|
-
} | null;
|
|
289
|
-
equipments?: Array<Equipment> | null;
|
|
290
|
-
operations?: {
|
|
291
|
-
__typename?: 'ModelOperationConnection';
|
|
292
|
-
items?: Array<Operation | null> | null;
|
|
293
|
-
nextToken?: string | null;
|
|
294
|
-
};
|
|
295
|
-
comments?: {
|
|
296
|
-
__typename?: 'ModelCommentConnection';
|
|
297
|
-
items?: Array<Comment | null> | null;
|
|
298
|
-
nextToken?: string | null;
|
|
299
|
-
};
|
|
300
|
-
prestataire?: Prestataire | null;
|
|
301
|
-
children?: {
|
|
302
|
-
__typename?: 'ModelTicketConnection';
|
|
303
|
-
items?: Array<Ticket | null> | null;
|
|
304
|
-
nextToken?: string | null;
|
|
305
|
-
};
|
|
306
|
-
archivedForMissionID?: string[] | null;
|
|
307
|
-
} & DbObjectType;
|
|
308
|
-
export declare type Operation = {
|
|
309
|
-
id?: string | null;
|
|
310
|
-
ticketID?: string | null;
|
|
311
|
-
equipmentID?: string | null;
|
|
312
|
-
deletedAt?: number | null;
|
|
313
|
-
ticket?: Ticket | null;
|
|
314
|
-
equipment?: Equipment | null;
|
|
315
|
-
} & AWSType;
|
|
316
|
-
export declare type Equipment = {
|
|
317
|
-
name: string;
|
|
318
|
-
notes?: {
|
|
319
|
-
__typename?: 'ModelNoteConnection';
|
|
320
|
-
items?: Array<Note | null> | null;
|
|
321
|
-
nextToken?: string | null;
|
|
322
|
-
};
|
|
323
|
-
documents?: Array<EquipmentDocument> | null;
|
|
324
|
-
documentationImageUrlSigned?: string | null;
|
|
325
|
-
subEquipments?: Array<Equipment | null> | null;
|
|
326
|
-
subequipmentsIDs?: Array<string | null> | null;
|
|
327
|
-
serialNumber?: string | null;
|
|
328
|
-
domain?: Domain | null;
|
|
329
|
-
childDomain?: Domain | null;
|
|
330
|
-
parentDomain?: Domain | null;
|
|
331
|
-
photo?: string | null;
|
|
332
|
-
zone?: Zone | null;
|
|
333
|
-
tickets?: Ticket[] | null;
|
|
334
|
-
domainID?: string | null;
|
|
335
|
-
spaceID: string;
|
|
336
|
-
archivedForMissionID?: string[] | null;
|
|
337
|
-
annotation?: string | null;
|
|
338
|
-
status?: StatusEquipment | null;
|
|
339
|
-
family?: Array<string | null> | null;
|
|
340
|
-
manufacturer?: string | null;
|
|
341
|
-
sku?: string | null;
|
|
342
|
-
installDate?: number | null;
|
|
343
|
-
warrantyEndDate?: number | null;
|
|
344
|
-
isCreatedByAI?: boolean | null;
|
|
345
|
-
operations?: {
|
|
346
|
-
__typename?: 'ModelOperationConnection';
|
|
347
|
-
items?: Array<Operation | null> | null;
|
|
348
|
-
nextToken?: string | null;
|
|
349
|
-
};
|
|
350
|
-
} & DbObjectType;
|
|
351
|
-
export declare type EquipmentSelected = {
|
|
352
|
-
selected?: boolean;
|
|
353
|
-
} & Equipment;
|
|
354
|
-
export declare type EquipmentDocument = {
|
|
355
|
-
filename: string;
|
|
356
|
-
url: string;
|
|
357
|
-
urlSigned: string;
|
|
358
|
-
noteID: string;
|
|
359
|
-
};
|
|
360
|
-
export declare type Prestataire = {
|
|
361
|
-
organisation: Organisation;
|
|
362
|
-
mission: Mission;
|
|
363
|
-
profile: Profile;
|
|
364
|
-
name: string;
|
|
365
|
-
};
|
|
366
|
-
export declare type Note = {
|
|
367
|
-
id?: string | null;
|
|
368
|
-
attachment?: string | null;
|
|
369
|
-
signDate?: number | null;
|
|
370
|
-
expirationDate?: number | null;
|
|
371
|
-
type?: TypeNote | null;
|
|
372
|
-
ownerMissionID?: string | null;
|
|
373
|
-
equipmentID?: string | null;
|
|
374
|
-
} & AWSType;
|
|
375
|
-
export declare type Domain = {
|
|
376
|
-
name: string;
|
|
377
|
-
slug?: string | null;
|
|
378
|
-
abbreviation?: string | null;
|
|
379
|
-
description?: string | null;
|
|
380
|
-
organisationID?: string | null;
|
|
381
|
-
parentID?: string | null;
|
|
382
|
-
type?: DomainType | null;
|
|
383
|
-
parent?: Domain | null;
|
|
384
|
-
children?: {
|
|
385
|
-
__typename?: 'ModelDomainConnection';
|
|
386
|
-
items?: Array<Domain | null> | null;
|
|
387
|
-
nextToken?: string | null;
|
|
388
|
-
};
|
|
389
|
-
} & AWSType;
|
|
390
|
-
export declare type POI = {
|
|
391
|
-
id?: string | null;
|
|
392
|
-
coordinate?: string | null;
|
|
393
|
-
tagIcon?: string | null;
|
|
394
|
-
tagDescription?: string | null;
|
|
395
|
-
tagImageID?: string | null;
|
|
396
|
-
metadata?: string | null;
|
|
397
|
-
matterportSweepID?: string | null;
|
|
398
|
-
type?: PoiType | null;
|
|
399
|
-
elementID?: string | null;
|
|
400
|
-
virtual?: boolean | null;
|
|
401
|
-
};
|
|
402
|
-
export declare enum ViewerInteractions {
|
|
403
|
-
DEFAULT = 0,
|
|
404
|
-
ADDING = 1,
|
|
405
|
-
POSITIONING = 2
|
|
406
|
-
}
|
|
407
|
-
export declare type Mission = {
|
|
408
|
-
userID: string;
|
|
409
|
-
role?: RoleStatus | null;
|
|
410
|
-
organisationID: string;
|
|
411
|
-
spaceID?: string | null;
|
|
412
|
-
level?: LevelStatus | null;
|
|
413
|
-
orderedOrganisationID?: string | null;
|
|
414
|
-
zoneID?: string | null;
|
|
415
|
-
groups?: Array<string | null> | null;
|
|
416
|
-
emailStatus?: EmailStatus | null;
|
|
417
|
-
description?: string | null;
|
|
418
|
-
metadata?: string | null;
|
|
419
|
-
deletedAt?: number | null;
|
|
420
|
-
assignments?: {
|
|
421
|
-
__typename?: 'ModelAffectationConnection';
|
|
422
|
-
items?: Array<Affectation | null> | null;
|
|
423
|
-
nextToken?: string | null;
|
|
424
|
-
};
|
|
425
|
-
organisation?: Organisation | null;
|
|
426
|
-
orderedOrganisation?: Organisation | null;
|
|
427
|
-
user?: Profile | null;
|
|
428
|
-
domains?: string[] | null;
|
|
429
|
-
space?: Space | null;
|
|
430
|
-
zone?: Zone | null;
|
|
431
|
-
startDateTime?: string | null;
|
|
432
|
-
endDateTime?: string | null;
|
|
433
|
-
hashtags?: Array<string | null> | null;
|
|
434
|
-
templateMissionID?: string | null;
|
|
435
|
-
templateMission?: VisitTemplate | null;
|
|
436
|
-
locale?: Locale | null;
|
|
437
|
-
isInWaitingRoom?: boolean | null;
|
|
438
|
-
blockedInChat?: boolean | null;
|
|
439
|
-
connectedToLiveAt?: string[] | null;
|
|
440
|
-
disconnectedFromLiveAt?: string[] | null;
|
|
441
|
-
} & AWSType;
|
|
442
|
-
export declare type Affectation = {
|
|
443
|
-
mission?: Mission | null;
|
|
444
|
-
group: string;
|
|
445
|
-
metadata?: string | null;
|
|
446
|
-
deletedAt?: number | null;
|
|
447
|
-
missionID: string;
|
|
448
|
-
ticketID: string;
|
|
449
|
-
} & AWSType;
|
|
450
|
-
export declare type MediaContent = {
|
|
451
|
-
path: string;
|
|
452
|
-
title: string;
|
|
453
|
-
description: string;
|
|
454
|
-
showInTag?: boolean;
|
|
455
|
-
type?: CommentType;
|
|
456
|
-
};
|
|
457
|
-
export declare type Comment = {
|
|
458
|
-
title: string;
|
|
459
|
-
ticket?: Ticket | null;
|
|
460
|
-
ownerID?: string | null;
|
|
461
|
-
owner?: Mission | null;
|
|
462
|
-
annexe?: string | null;
|
|
463
|
-
ticketID?: string | null;
|
|
464
|
-
type?: CommentType | null;
|
|
465
|
-
dimensions?: Array<number | null> | null;
|
|
466
|
-
featureID?: string | null;
|
|
467
|
-
isCoverImage?: boolean | null;
|
|
468
|
-
index?: number | null;
|
|
469
|
-
shownInTag?: boolean | null;
|
|
470
|
-
externalLink?: string | null;
|
|
471
|
-
} & AWSType & DbObjectType;
|
|
472
|
-
export declare type Zone = {
|
|
473
|
-
sweepIDs?: string[] | null;
|
|
474
|
-
layerID?: string | null;
|
|
475
|
-
code_ref?: string | null;
|
|
476
|
-
layer?: Layer | null;
|
|
477
|
-
parent?: Zone | null;
|
|
478
|
-
virtual?: boolean | null;
|
|
479
|
-
name: string;
|
|
480
|
-
tags?: Array<string | null> | null;
|
|
481
|
-
parentID?: string | null;
|
|
482
|
-
spaceID?: string | null;
|
|
483
|
-
space?: Space | null;
|
|
484
|
-
isMuseumVisitZone?: boolean | null;
|
|
485
|
-
nodeIDs?: Array<string | null> | null;
|
|
486
|
-
surface?: number | null;
|
|
487
|
-
metadata?: string | null;
|
|
488
|
-
isMultipleFloorZone?: boolean | null;
|
|
489
|
-
audioID?: string | null;
|
|
490
|
-
audio?: Comment | null;
|
|
491
|
-
startSweepID?: string | null;
|
|
492
|
-
} & AWSType;
|
|
493
|
-
export declare type Layer = {
|
|
494
|
-
name: string;
|
|
495
|
-
} & AWSType;
|
|
496
|
-
export declare type Profile = {
|
|
497
|
-
id?: string | null;
|
|
498
|
-
userID: string;
|
|
499
|
-
avatar?: string | null;
|
|
500
|
-
token?: string | null;
|
|
501
|
-
tokenExpiredAt?: number | null;
|
|
502
|
-
status?: ProfileStatus | null;
|
|
503
|
-
metadata?: string | null;
|
|
504
|
-
lastConnectedAt?: number | null;
|
|
505
|
-
pseudo?: string | null;
|
|
506
|
-
deletedAt?: number | null;
|
|
507
|
-
} & AWSType;
|
|
508
|
-
export declare class ProfileEntity implements Profile {
|
|
509
|
-
id?: string | null;
|
|
510
|
-
userID: string;
|
|
511
|
-
avatar?: string | null;
|
|
512
|
-
token?: string | null;
|
|
513
|
-
tokenExpiredAt?: number | null;
|
|
514
|
-
status?: ProfileStatus | null;
|
|
515
|
-
createdAt?: string;
|
|
516
|
-
updatedAt?: string;
|
|
517
|
-
firstName: string;
|
|
518
|
-
lastName: string;
|
|
519
|
-
email: string;
|
|
520
|
-
phone: string;
|
|
521
|
-
pseudo: string;
|
|
522
|
-
constructor(init?: Partial<Profile>);
|
|
523
|
-
get metadata(): string;
|
|
524
|
-
set metadata(m: string);
|
|
525
|
-
get displayName(): string;
|
|
526
|
-
}
|
|
527
|
-
export declare type Organisation = {
|
|
528
|
-
name: string;
|
|
529
|
-
siret?: string | null;
|
|
530
|
-
address?: string | null;
|
|
531
|
-
city?: string | null;
|
|
532
|
-
postal?: number | null;
|
|
533
|
-
logoUrl?: string | null;
|
|
534
|
-
originDate?: number | null;
|
|
535
|
-
deletedAt?: number | null;
|
|
536
|
-
shareToken?: string | null;
|
|
537
|
-
tokenExpiresAt?: number | null;
|
|
538
|
-
connectedAccountStripeID?: string | null;
|
|
539
|
-
stripeOnBoardingCompleted?: boolean | null;
|
|
540
|
-
stripeToken?: string | null;
|
|
541
|
-
stripeChargesEnabled?: boolean | null;
|
|
542
|
-
contactDetails?: string | null;
|
|
543
|
-
ticketOrganisationsId?: string | null;
|
|
544
|
-
} & AWSType;
|
|
545
|
-
export declare type Property = {
|
|
546
|
-
type: PropertyType;
|
|
547
|
-
deletedAt?: number | null;
|
|
548
|
-
organisationID: string;
|
|
549
|
-
spaceID: string;
|
|
550
|
-
zoneID?: string | null;
|
|
551
|
-
space?: Space | null;
|
|
552
|
-
organisation?: Organisation | null;
|
|
553
|
-
} & AWSType;
|
|
554
|
-
export declare type Space = {
|
|
555
|
-
name: string;
|
|
556
|
-
addresses?: string | null;
|
|
557
|
-
annexes?: string | null;
|
|
558
|
-
tags?: Array<string | null> | null;
|
|
559
|
-
latitude?: number | null;
|
|
560
|
-
longitude?: number | null;
|
|
561
|
-
metadata?: string | null;
|
|
562
|
-
level?: LevelStatus | null;
|
|
563
|
-
deletedAt?: number | null;
|
|
564
|
-
constructionYear?: string | null;
|
|
565
|
-
classEnergyConsumption?: string | null;
|
|
566
|
-
classGes?: string | null;
|
|
567
|
-
status?: SpaceStatus | null;
|
|
568
|
-
guestLink?: string | null;
|
|
569
|
-
signedImageUrl?: string | null;
|
|
570
|
-
zones?: {
|
|
571
|
-
__typename?: 'ModelZoneConnection';
|
|
572
|
-
items?: Array<Zone | null> | null;
|
|
573
|
-
nextToken?: string | null;
|
|
574
|
-
};
|
|
575
|
-
properties?: {
|
|
576
|
-
__typename?: 'ModelPropertyConnection';
|
|
577
|
-
items?: Array<Property | null> | null;
|
|
578
|
-
nextToken?: string | null;
|
|
579
|
-
};
|
|
580
|
-
visits?: Visit[] | null;
|
|
581
|
-
organisationID?: string | null;
|
|
582
|
-
organisation?: Organisation | null;
|
|
583
|
-
description?: string | null;
|
|
584
|
-
attachments?: Comment[] | null;
|
|
585
|
-
} & AWSType;
|
|
586
|
-
export declare type Visit = {
|
|
587
|
-
captureID: string;
|
|
588
|
-
model3d: string;
|
|
589
|
-
takenAt: number;
|
|
590
|
-
spaceID: string;
|
|
591
|
-
viewer: CaptureViewer;
|
|
592
|
-
surface: number;
|
|
593
|
-
node: Node;
|
|
594
|
-
name?: string | null;
|
|
595
|
-
nmbImagesImported: number;
|
|
596
|
-
};
|
|
597
|
-
export declare type Hashtag = {
|
|
598
|
-
name?: string | null;
|
|
599
|
-
organisationID?: string | null;
|
|
600
|
-
spaceID?: string | null;
|
|
601
|
-
organization?: Organisation | null;
|
|
602
|
-
space?: Space | null;
|
|
603
|
-
} & AWSType;
|
|
604
|
-
export declare type Capture = {
|
|
605
|
-
takenAt?: number | null;
|
|
606
|
-
viewer?: CaptureViewer | null;
|
|
607
|
-
publishedAt?: number | null;
|
|
608
|
-
surface?: number | null;
|
|
609
|
-
metadata?: string | null;
|
|
610
|
-
spaceID?: string | null;
|
|
611
|
-
nodes?: {
|
|
612
|
-
__typename?: 'ModelNodeConnection';
|
|
613
|
-
items?: Array<Node | null> | null;
|
|
614
|
-
nextToken?: string | null;
|
|
615
|
-
};
|
|
616
|
-
} & AWSType;
|
|
617
|
-
export declare type Node = {
|
|
618
|
-
model3D?: string | null;
|
|
619
|
-
coordinate?: string | null;
|
|
620
|
-
size?: string | null;
|
|
621
|
-
scale?: string | null;
|
|
622
|
-
version?: number | null;
|
|
623
|
-
active?: number | null;
|
|
624
|
-
order?: number | null;
|
|
625
|
-
metadata?: string | null;
|
|
626
|
-
captureID?: string | null;
|
|
627
|
-
inventoryStatus?: InventoryStatus | null;
|
|
628
|
-
navigationForInventory?: string | null;
|
|
629
|
-
capture?: Capture | null;
|
|
630
|
-
} & AWSType;
|
|
631
|
-
export declare type Plan = {
|
|
632
|
-
name?: string | null;
|
|
633
|
-
annexe?: string | null;
|
|
634
|
-
calibration?: string | null;
|
|
635
|
-
zoneID?: string | null;
|
|
636
|
-
isCurrentForZone?: boolean | null;
|
|
637
|
-
spaceID?: string | null;
|
|
638
|
-
isModified?: boolean | null;
|
|
639
|
-
isImportedMatterport?: boolean | null;
|
|
640
|
-
filepath?: string;
|
|
641
|
-
model3d?: string | null;
|
|
642
|
-
floor?: string | null;
|
|
643
|
-
visitName?: string | null;
|
|
644
|
-
zone?: Zone | null;
|
|
645
|
-
extension?: string | null;
|
|
646
|
-
navigationIDs?: string[] | null;
|
|
647
|
-
} & AWSType;
|
|
648
|
-
export declare type Navigation = {
|
|
649
|
-
matterportSweepID?: string | null;
|
|
650
|
-
position?: string | null;
|
|
651
|
-
rotation?: string | null;
|
|
652
|
-
radius?: number | null;
|
|
653
|
-
url?: string | null;
|
|
654
|
-
tags?: Array<string | null> | null;
|
|
655
|
-
level?: LevelStatus | null;
|
|
656
|
-
nodeID?: string | null;
|
|
657
|
-
spaceID?: string | null;
|
|
658
|
-
positionOnPlan?: Array<string | null> | null;
|
|
659
|
-
navigationSiblingsId?: string | null;
|
|
660
|
-
pois?: {
|
|
661
|
-
__typename?: 'ModelPOIConnection';
|
|
662
|
-
items?: Array<POI | null> | null;
|
|
663
|
-
nextToken?: string | null;
|
|
664
|
-
};
|
|
665
|
-
node?: Node | null;
|
|
666
|
-
} & AWSType;
|
|
667
|
-
export declare type MenuItem = {
|
|
668
|
-
label: string;
|
|
669
|
-
url?: string;
|
|
670
|
-
back?: any;
|
|
671
|
-
};
|
|
672
|
-
export declare type Measurement = {
|
|
673
|
-
id: string;
|
|
674
|
-
poi: POI;
|
|
675
|
-
comment: Comment;
|
|
676
|
-
singedUrlPhoto?: string | null;
|
|
677
|
-
values: Array<number> | null;
|
|
678
|
-
numberPoints: number;
|
|
679
|
-
};
|
|
680
|
-
export declare type Feature = {
|
|
681
|
-
title?: string | null;
|
|
682
|
-
shortDescription?: string | null;
|
|
683
|
-
ownerMissionID?: string | null;
|
|
684
|
-
level?: LevelStatus | null;
|
|
685
|
-
index?: number | null;
|
|
686
|
-
type?: FeatureType | null;
|
|
687
|
-
archivedForMissionID?: Array<string | null> | null;
|
|
688
|
-
stripeProductID?: string | null;
|
|
689
|
-
stripePriceID?: string | null;
|
|
690
|
-
bookingPriceMetadata?: string | null;
|
|
691
|
-
locale?: Locale | null;
|
|
692
|
-
hashtags?: Array<string | null> | null;
|
|
693
|
-
coverImageUrl?: string | null;
|
|
694
|
-
images?: Array<MediaContent> | null;
|
|
695
|
-
videos?: Array<MediaContent> | null;
|
|
696
|
-
audios?: Array<MediaContent> | null;
|
|
697
|
-
externalLinks?: Array<MediaContent> | null;
|
|
698
|
-
documents?: Array<{
|
|
699
|
-
path: string;
|
|
700
|
-
title: string;
|
|
701
|
-
description: string;
|
|
702
|
-
}> | null;
|
|
703
|
-
embeds?: Array<MediaContent> | null;
|
|
704
|
-
iframes?: Array<MediaContent> | null;
|
|
705
|
-
comments?: {
|
|
706
|
-
__typename?: 'ModelCommentConnection';
|
|
707
|
-
items?: Array<Comment | null> | null;
|
|
708
|
-
nextToken?: string | null;
|
|
709
|
-
};
|
|
710
|
-
domain?: Domain | null;
|
|
711
|
-
isBookingPlace?: boolean | null;
|
|
712
|
-
events?: {
|
|
713
|
-
__typename?: 'ModelEventConnection';
|
|
714
|
-
items?: Array<Event | null> | null;
|
|
715
|
-
nextToken?: string | null;
|
|
716
|
-
};
|
|
717
|
-
spaceID: string;
|
|
718
|
-
} & DbObjectType;
|
|
719
|
-
export declare type Event = {
|
|
720
|
-
title: string;
|
|
721
|
-
type?: EventType | null;
|
|
722
|
-
estimateStartDate?: number | null;
|
|
723
|
-
estimateDuration?: number | null;
|
|
724
|
-
estimateEndDate?: number | null;
|
|
725
|
-
realStartDate?: number | null;
|
|
726
|
-
timeSpent?: number | null;
|
|
727
|
-
realEndDate?: number | null;
|
|
728
|
-
status?: EventStatus | null;
|
|
729
|
-
description?: string | null;
|
|
730
|
-
group?: string | null;
|
|
731
|
-
metadata?: string | null;
|
|
732
|
-
ownerID?: string | null;
|
|
733
|
-
ticketID?: string | null;
|
|
734
|
-
createdAt?: string | null;
|
|
735
|
-
translationPath?: string | null;
|
|
736
|
-
featureID?: string | null;
|
|
737
|
-
archivedByOwner?: boolean | null;
|
|
738
|
-
paymentStatus?: PaymentStatus | null;
|
|
739
|
-
stripeSessionID?: string | null;
|
|
740
|
-
notificationStatus?: EmailStatus | null;
|
|
741
|
-
refusalReason?: string | null;
|
|
742
|
-
agoStr?: boolean | string | null;
|
|
743
|
-
owner?: Mission | null;
|
|
744
|
-
author?: ProfileEntity | null;
|
|
745
|
-
feature?: Feature | null;
|
|
746
|
-
} & AWSType;
|
|
747
|
-
export declare type RequestIntervention = {
|
|
748
|
-
estimateStartDate?: number | null;
|
|
749
|
-
estimateDuration?: number | null;
|
|
750
|
-
estimateEndDate?: number | null;
|
|
751
|
-
realStartDate?: number | null;
|
|
752
|
-
realDuration?: number | null;
|
|
753
|
-
realEndDate?: number | null;
|
|
754
|
-
type: EventType.REQUEST_FOR_INTERVENTION;
|
|
755
|
-
status: EventStatus;
|
|
756
|
-
intervention?: Event | null;
|
|
757
|
-
report?: Event | null;
|
|
758
|
-
ticketID: string;
|
|
759
|
-
} & AWSType;
|
|
760
|
-
export declare type Intervention = {
|
|
761
|
-
estimateStartDate?: number | null;
|
|
762
|
-
estimateDuration?: number | null;
|
|
763
|
-
estimateEndDate?: number | null;
|
|
764
|
-
realStartDate?: number | null;
|
|
765
|
-
realDuration?: number | null;
|
|
766
|
-
realEndDate?: number | null;
|
|
767
|
-
type: EventType;
|
|
768
|
-
status: EventStatus;
|
|
769
|
-
} & AWSType;
|
|
770
|
-
export declare type VisitTemplate = {
|
|
771
|
-
id?: string | null;
|
|
772
|
-
title?: string | null;
|
|
773
|
-
level?: LevelStatus | null;
|
|
774
|
-
description?: string | null;
|
|
775
|
-
metadata?: string | null;
|
|
776
|
-
deletedAt?: number | null;
|
|
777
|
-
startDateTime?: string | null;
|
|
778
|
-
endDateTime?: string | null;
|
|
779
|
-
hashtags?: Array<string | null> | null;
|
|
780
|
-
organisationID: string;
|
|
781
|
-
spaceID?: string | null;
|
|
782
|
-
zoneID?: string | null;
|
|
783
|
-
locale?: Locale | null;
|
|
784
|
-
realStartedAt?: number | null;
|
|
785
|
-
realEndedAt?: number | null;
|
|
786
|
-
space?: Space | null;
|
|
787
|
-
zone?: Zone | null;
|
|
788
|
-
organisation?: Organisation | null;
|
|
789
|
-
userMissions?: {
|
|
790
|
-
__typename: 'ModelMissionConnection';
|
|
791
|
-
items: Array<Mission | null>;
|
|
792
|
-
nextToken?: string | null;
|
|
793
|
-
} | null;
|
|
794
|
-
} & AWSType;
|
|
795
|
-
export declare enum SpModule {
|
|
796
|
-
MUSEUM = "MUSEUM",
|
|
797
|
-
HOTEL = "HOTEL",
|
|
798
|
-
IMMO = "IMMO"
|
|
799
|
-
}
|
|
800
|
-
/**
|
|
801
|
-
* ThreeJS object3D
|
|
802
|
-
*/
|
|
803
|
-
export declare type IObject3D = {
|
|
804
|
-
id?: string;
|
|
805
|
-
object: string;
|
|
806
|
-
format: string;
|
|
807
|
-
mode: string;
|
|
808
|
-
position: {
|
|
809
|
-
x: number;
|
|
810
|
-
y: number;
|
|
811
|
-
z: number;
|
|
812
|
-
};
|
|
813
|
-
rotation: {
|
|
814
|
-
x: number;
|
|
815
|
-
y: number;
|
|
816
|
-
z: number;
|
|
817
|
-
};
|
|
818
|
-
scale: {
|
|
819
|
-
x: number;
|
|
820
|
-
y: number;
|
|
821
|
-
z: number;
|
|
822
|
-
};
|
|
823
|
-
viewFrustum: boolean;
|
|
824
|
-
};
|
|
825
|
-
/**
|
|
826
|
-
* DynamoDb object3D
|
|
827
|
-
*/
|
|
828
|
-
export declare type Object3D = {
|
|
829
|
-
id: string;
|
|
830
|
-
path: string;
|
|
831
|
-
description: string;
|
|
832
|
-
name: string;
|
|
833
|
-
s3Bucket: boolean;
|
|
834
|
-
position: number[];
|
|
835
|
-
rotation: number[];
|
|
836
|
-
scale: number[];
|
|
837
|
-
spaceID: string;
|
|
838
|
-
viewFrustum: boolean;
|
|
839
|
-
pois: {
|
|
840
|
-
items: POI[];
|
|
841
|
-
};
|
|
842
|
-
} & AWSType;
|
|
1
|
+
export declare enum CameraMode {
|
|
2
|
+
DOLLHOUSE = "mode.dollhouse",
|
|
3
|
+
FLOORPLAN = "mode.floorplan",
|
|
4
|
+
INSIDE = "mode.inside",
|
|
5
|
+
OUTSIDE = "mode.outside",
|
|
6
|
+
TRANSITIONING = "mode.transitioning"
|
|
7
|
+
}
|
|
8
|
+
export declare enum MattertagActionMode {
|
|
9
|
+
POSITION_TICKET = "positioning_ticket",
|
|
10
|
+
ADD_TICKET = "add_ticket",
|
|
11
|
+
ADD_OBJECT3D = "add_object3D",
|
|
12
|
+
POSITION_OBJECT3D = "positioning_object3D",
|
|
13
|
+
POSITION_EQUIPMENT = "positioning_equip",
|
|
14
|
+
ADD_EQUIPMENT = "add_equip",
|
|
15
|
+
POSITION_DATA = "positioning_feature",
|
|
16
|
+
ADD_DATA = "add_feature",
|
|
17
|
+
POSITION_DESK = "positioning_feature",
|
|
18
|
+
ADD_DESK = "add_desk",
|
|
19
|
+
POSITION_ROOM = "positioning_room",
|
|
20
|
+
ADD_ROOM = "add_room"
|
|
21
|
+
}
|
|
22
|
+
export declare enum PoiType {
|
|
23
|
+
EQUIPMENT = "EQUIPMENT",
|
|
24
|
+
INFORMATION = "INFORMATION",
|
|
25
|
+
TICKET = "TICKET",
|
|
26
|
+
OBJECT3D = "OBJECT3D",
|
|
27
|
+
MEASURE = "MEASURE",
|
|
28
|
+
DATA = "DATA",
|
|
29
|
+
PEOPLE = "PEOPLE",
|
|
30
|
+
DESK = "DESK",
|
|
31
|
+
ROOM = "ROOM"
|
|
32
|
+
}
|
|
33
|
+
export declare enum TicketPriority {
|
|
34
|
+
MINIMUM = "MINIMUM",
|
|
35
|
+
LOW = "LOW",
|
|
36
|
+
MEDIUM = "MEDIUM",
|
|
37
|
+
HIGH = "HIGH",
|
|
38
|
+
MAXIMUM = "MAXIMUM"
|
|
39
|
+
}
|
|
40
|
+
export declare enum TagAction {
|
|
41
|
+
HOVER_ON = "hoverOn",
|
|
42
|
+
AUDIO_CLICK = "audioClick",
|
|
43
|
+
VIDEO_CLICK = "videoClick",
|
|
44
|
+
IMAGE_CLICK = "imageClick",
|
|
45
|
+
DOC_CLICK = "docClick",
|
|
46
|
+
CLOSE_MODAL = "closeModal",
|
|
47
|
+
NEXT_SLIDE = "nextSlide",
|
|
48
|
+
DETAIL_CLICK = "detailsClick",
|
|
49
|
+
TICKET_CLICK = "ticketClick",
|
|
50
|
+
YOUTUBE_CLICK = "youtubeClick"
|
|
51
|
+
}
|
|
52
|
+
export declare enum TicketStatus {
|
|
53
|
+
TO_BE_PROCESSED = "TO_BE_PROCESSED",
|
|
54
|
+
PLANNED = "PLANNED",
|
|
55
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
56
|
+
WAITING_FOR_VALIDATION = "WAITING_FOR_VALIDATION",
|
|
57
|
+
VALIDATED = "VALIDATED",
|
|
58
|
+
REJECTED = "REJECTED",
|
|
59
|
+
RESOLVED = "RESOLVED",
|
|
60
|
+
ARCHIVED = "ARCHIVED",
|
|
61
|
+
LATE = "LATE",
|
|
62
|
+
BLOCKED = "BLOCKED",
|
|
63
|
+
COMPLETED = "COMPLETED",
|
|
64
|
+
DELAYED = "DELAYED",
|
|
65
|
+
CANCELLED = "CANCELLED",
|
|
66
|
+
TO_REDO = "TO_REDO",
|
|
67
|
+
CREATED = "CREATED"
|
|
68
|
+
}
|
|
69
|
+
export declare enum DomainType {
|
|
70
|
+
EQUIPMENT = "EQUIPMENT",
|
|
71
|
+
MISSION = "MISSION",
|
|
72
|
+
TICKET = "TICKET",
|
|
73
|
+
OBJECT3D = "OBJECT3D",
|
|
74
|
+
POI = "POI",
|
|
75
|
+
FEATURE = "FEATURE",
|
|
76
|
+
BOOKING = "BOOKING"
|
|
77
|
+
}
|
|
78
|
+
export declare enum RoleStatus {
|
|
79
|
+
VISITOR = "VISITOR",
|
|
80
|
+
VISITOR_MUSEUM = "VISITOR_MUSEUM",
|
|
81
|
+
GUIDE_MUSEUM = "GUIDE_MUSEUM",
|
|
82
|
+
OCCUPANT = "OCCUPANT",
|
|
83
|
+
SERVICE = "SERVICE",
|
|
84
|
+
MANAGER = "MANAGER",
|
|
85
|
+
OWNER = "OWNER",
|
|
86
|
+
ADMIN = "ADMIN"
|
|
87
|
+
}
|
|
88
|
+
export declare enum ProfileStatus {
|
|
89
|
+
WAITING_FOR_VALIDATION = "WAITING_FOR_VALIDATION",
|
|
90
|
+
WAITING_FOR_ACTIVATION = "WAITING_FOR_ACTIVATION",
|
|
91
|
+
ACTIVE = "ACTIVE",
|
|
92
|
+
INACTIVE = "INACTIVE",
|
|
93
|
+
BLOCKED = "BLOCKED"
|
|
94
|
+
}
|
|
95
|
+
export declare enum LevelStatus {
|
|
96
|
+
MINIMUM = "MINIMUM",
|
|
97
|
+
LOW = "LOW",
|
|
98
|
+
MEDIUM = "MEDIUM",
|
|
99
|
+
HIGH = "HIGH",
|
|
100
|
+
MAXIMUM = "MAXIMUM"
|
|
101
|
+
}
|
|
102
|
+
export declare enum PropertyType {
|
|
103
|
+
PROPERTY = "PROPERTY",
|
|
104
|
+
VISIT = "VISIT",
|
|
105
|
+
OCCUPANT = "OCCUPANT",
|
|
106
|
+
SHARED = "SHARED"
|
|
107
|
+
}
|
|
108
|
+
export declare enum SpaceStatus {
|
|
109
|
+
DPE_TO_VALIDATE = "DPE_TO_VALIDATE",
|
|
110
|
+
DPE_VALIDATED = "DPE_VALIDATED",
|
|
111
|
+
DPE_FETCH = "DPE_FETCH"
|
|
112
|
+
}
|
|
113
|
+
export declare enum Locale {
|
|
114
|
+
FR = "FR",
|
|
115
|
+
EN = "EN"
|
|
116
|
+
}
|
|
117
|
+
export declare enum EmailStatus {
|
|
118
|
+
CREATION_TO_DELIVER = "CREATION_TO_DELIVER",
|
|
119
|
+
UPDATE_TO_DELIVER = "UPDATE_TO_DELIVER",
|
|
120
|
+
CANCELLATION_TO_DELIVER = "CANCELLATION_TO_DELIVER",
|
|
121
|
+
SENT = "SENT",
|
|
122
|
+
SOFT_BOUNCE = "SOFT_BOUNCE",
|
|
123
|
+
HARD_BOUNCE = "HARD_BOUNCE",
|
|
124
|
+
REJECTED = "REJECTED",
|
|
125
|
+
SATISFACTION_TO_DELIVER = "SATISFACTION_TO_DELIVER"
|
|
126
|
+
}
|
|
127
|
+
export declare enum CaptureViewer {
|
|
128
|
+
CUPIX = "CUPIX",
|
|
129
|
+
MATTERPORT = "MATTERPORT",
|
|
130
|
+
SMARTERPLAN_V1 = "SMARTERPLAN_V1"
|
|
131
|
+
}
|
|
132
|
+
export declare enum InventoryStatus {
|
|
133
|
+
SUCCESS = "SUCCESS",
|
|
134
|
+
ERROR = "ERROR",
|
|
135
|
+
TO_RUN = "TO_RUN",
|
|
136
|
+
TO_RUN_ONE_IMAGE = "TO_RUN_ONE_IMAGE",
|
|
137
|
+
ERROR_FILE_OBJ_NOT_EXIST = "ERROR_FILE_OBJ_NOT_EXIST",
|
|
138
|
+
ERROR_FILE_JSON_NOT_EXIST = "ERROR_FILE_JSON_NOT_EXIST",
|
|
139
|
+
ERROR_FILE_MODEL_NOT_EXIST = "ERROR_FILE_MODEL_NOT_EXIST"
|
|
140
|
+
}
|
|
141
|
+
export declare enum TypeNote {
|
|
142
|
+
CONTRACTUAL = "CONTRACTUAL",
|
|
143
|
+
INFORMATION = "INFORMATION",
|
|
144
|
+
TECHNICAL = "TECHNICAL",
|
|
145
|
+
FINANCIAL = "FINANCIAL",
|
|
146
|
+
OTHER = "OTHER",
|
|
147
|
+
IMAGE = "IMAGE"
|
|
148
|
+
}
|
|
149
|
+
export declare enum FeatureType {
|
|
150
|
+
DESK = "DESK",
|
|
151
|
+
INDICATOR_TEMP = "INDICATOR_TEMP",
|
|
152
|
+
INFORMATION = "INFORMATION",
|
|
153
|
+
INDICATOR_CO2 = "INDICATOR_CO2",
|
|
154
|
+
PURCHASE = "PURCHASE"
|
|
155
|
+
}
|
|
156
|
+
export declare enum TicketType {
|
|
157
|
+
REPORTING = "REPORTING",
|
|
158
|
+
REQUEST_FOR_INTERVENTION = "REQUEST_FOR_INTERVENTION",
|
|
159
|
+
REQUEST_FOR_MAINTENANCE = "REQUEST_FOR_MAINTENANCE",
|
|
160
|
+
WORK_ORDER = "WORK_ORDER",
|
|
161
|
+
INCIDENT = "INCIDENT",
|
|
162
|
+
INFORMATION = "INFORMATION"
|
|
163
|
+
}
|
|
164
|
+
export declare enum EventType {
|
|
165
|
+
EQUIPMENT = "EQUIPMENT",
|
|
166
|
+
COMMENT = "COMMENT",
|
|
167
|
+
CONTRACTUAL_INTERVENTION = "CONTRACTUAL_INTERVENTION",
|
|
168
|
+
NON_CONTRACTUAL_INTERVENTION = "NON_CONTRACTUAL_INTERVENTION",
|
|
169
|
+
TICKET = "TICKET",
|
|
170
|
+
OBJECT3D = "OBJECT3D",
|
|
171
|
+
REPORTING = "REPORTING",
|
|
172
|
+
REQUEST_FOR_INTERVENTION = "REQUEST_FOR_INTERVENTION",
|
|
173
|
+
REQUEST_FOR_MAINTENANCE = "REQUEST_FOR_MAINTENANCE",
|
|
174
|
+
WORK_ORDER = "WORK_ORDER",
|
|
175
|
+
INCIDENT = "INCIDENT",
|
|
176
|
+
MEASURE = "MEASURE",
|
|
177
|
+
BOOKING = "BOOKING",
|
|
178
|
+
BOOKING_SUBCRIPTION = "BOOKING_SUBCRIPTION"
|
|
179
|
+
}
|
|
180
|
+
export declare enum EventStatus {
|
|
181
|
+
TO_BE_PROCESSED = "TO_BE_PROCESSED",
|
|
182
|
+
PLANNED = "PLANNED",
|
|
183
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
184
|
+
WAITING_FOR_VALIDATION = "WAITING_FOR_VALIDATION",
|
|
185
|
+
VALIDATED = "VALIDATED",
|
|
186
|
+
REJECTED = "REJECTED",
|
|
187
|
+
RESOLVED = "RESOLVED",
|
|
188
|
+
ARCHIVED = "ARCHIVED",
|
|
189
|
+
LATE = "LATE",
|
|
190
|
+
BLOCKED = "BLOCKED",
|
|
191
|
+
COMPLETED = "COMPLETED",
|
|
192
|
+
DELAYED = "DELAYED",
|
|
193
|
+
CANCELLED = "CANCELLED",
|
|
194
|
+
TO_REDO = "TO_REDO",
|
|
195
|
+
CREATED = "CREATED",
|
|
196
|
+
LINKED_TO_EQUIPMENT = "LINKED_TO_EQUIPMENT",
|
|
197
|
+
UNLINKED_FROM_EQUIPMENT = "UNLINKED_FROM_EQUIPMENT",
|
|
198
|
+
EDITED = "EDITED",
|
|
199
|
+
LINKED_TO_A_PARENT_TICKET = "LINKED_TO_A_PARENT_TICKET",
|
|
200
|
+
WAITING_FOR_ACCEPTATION = "WAITING_FOR_ACCEPTATION",
|
|
201
|
+
ACCEPTED = "ACCEPTED",
|
|
202
|
+
REFUSED = "REFUSED",
|
|
203
|
+
DOMAIN_UPDATED = "DOMAIN_UPDATED",
|
|
204
|
+
DATES_UPDATED = "DATES_UPDATED",
|
|
205
|
+
TICKET_CHILD_REMOVED = "TICKET_CHILD_REMOVED",
|
|
206
|
+
TYPE_UPDATED = "TYPE_UPDATED",
|
|
207
|
+
DATE_END_UPDATED = "DATE_END_UPDATED",
|
|
208
|
+
DATE_START_UPDATED = "DATE_START_UPDATED",
|
|
209
|
+
POSITION_SET = "POSITION_SET",
|
|
210
|
+
POSITION_UPDATED = "POSITION_UPDATED",
|
|
211
|
+
POSITION_REMOVED = "POSITION_REMOVED"
|
|
212
|
+
}
|
|
213
|
+
export declare enum PaymentStatus {
|
|
214
|
+
UNPAID = "UNPAID",
|
|
215
|
+
PAID = "PAID",
|
|
216
|
+
PENDING = "PENDING",
|
|
217
|
+
ERROR = "ERROR"
|
|
218
|
+
}
|
|
219
|
+
export declare enum CommentType {
|
|
220
|
+
MEASURE = "MEASURE",
|
|
221
|
+
VIDEO = "VIDEO",
|
|
222
|
+
DOCUMENT = "DOCUMENT",
|
|
223
|
+
IMAGE = "IMAGE",
|
|
224
|
+
TEXT = "TEXT",
|
|
225
|
+
AUDIO = "AUDIO",
|
|
226
|
+
URL = "URL",
|
|
227
|
+
YOUTUBE = "YOUTUBE",
|
|
228
|
+
URL_SHOP = "URL_SHOP",
|
|
229
|
+
EMBED = "EMBED",
|
|
230
|
+
IFRAME = "IFRAME"
|
|
231
|
+
}
|
|
232
|
+
export declare enum StatusEquipment {
|
|
233
|
+
TO_SETUP = "TO_SETUP",
|
|
234
|
+
BROKEN = "BROKEN",
|
|
235
|
+
UNINSTALLED = "UNINSTALLED",
|
|
236
|
+
INCIDENT = "INCIDENT",
|
|
237
|
+
IN_OPERATION = "IN_OPERATION",
|
|
238
|
+
WAITING_FOR_REPAIR = "WAITING_FOR_REPAIR",
|
|
239
|
+
DELETED = "DELETED",
|
|
240
|
+
OUT_OF_ORDER = "OUT_OF_ORDER",
|
|
241
|
+
TO_BE_REPLACED = "TO_BE_REPLACED"
|
|
242
|
+
}
|
|
243
|
+
/** Interface for Update (only id is required) */
|
|
244
|
+
export interface IUpdate {
|
|
245
|
+
id: string;
|
|
246
|
+
}
|
|
247
|
+
export declare type AWSType = {
|
|
248
|
+
__typename?: string | null;
|
|
249
|
+
id?: string | null;
|
|
250
|
+
createdAt?: string;
|
|
251
|
+
updatedAt?: string;
|
|
252
|
+
};
|
|
253
|
+
export declare type DbObjectType = {
|
|
254
|
+
spaceID?: string | null;
|
|
255
|
+
description?: string | null;
|
|
256
|
+
pois?: {
|
|
257
|
+
__typename?: 'ModelPOIConnection';
|
|
258
|
+
items?: Array<POI> | null;
|
|
259
|
+
nextToken?: string | null;
|
|
260
|
+
} | null;
|
|
261
|
+
space?: Space | null;
|
|
262
|
+
domainID?: string | null;
|
|
263
|
+
name?: string | null;
|
|
264
|
+
title?: string | null;
|
|
265
|
+
} & AWSType;
|
|
266
|
+
export declare type Ticket = {
|
|
267
|
+
spaceID: string;
|
|
268
|
+
title: string;
|
|
269
|
+
status?: TicketStatus | null;
|
|
270
|
+
priority?: TicketPriority | null;
|
|
271
|
+
ownerMissionID?: string | null;
|
|
272
|
+
ownerMission?: Mission | null;
|
|
273
|
+
type?: TicketType | null;
|
|
274
|
+
parentID?: string | null;
|
|
275
|
+
level?: LevelStatus | null;
|
|
276
|
+
friendlyLabel?: string | null;
|
|
277
|
+
domain: Domain | null;
|
|
278
|
+
domainID: string | null;
|
|
279
|
+
events?: {
|
|
280
|
+
__typename?: 'ModelEventConnection';
|
|
281
|
+
items?: Array<Event> | null;
|
|
282
|
+
nextToken?: string | null;
|
|
283
|
+
} | null;
|
|
284
|
+
assignees?: {
|
|
285
|
+
__typename?: 'ModelAffectationConnection';
|
|
286
|
+
items?: Array<Affectation> | null;
|
|
287
|
+
nextToken?: string | null;
|
|
288
|
+
} | null;
|
|
289
|
+
equipments?: Array<Equipment> | null;
|
|
290
|
+
operations?: {
|
|
291
|
+
__typename?: 'ModelOperationConnection';
|
|
292
|
+
items?: Array<Operation | null> | null;
|
|
293
|
+
nextToken?: string | null;
|
|
294
|
+
};
|
|
295
|
+
comments?: {
|
|
296
|
+
__typename?: 'ModelCommentConnection';
|
|
297
|
+
items?: Array<Comment | null> | null;
|
|
298
|
+
nextToken?: string | null;
|
|
299
|
+
};
|
|
300
|
+
prestataire?: Prestataire | null;
|
|
301
|
+
children?: {
|
|
302
|
+
__typename?: 'ModelTicketConnection';
|
|
303
|
+
items?: Array<Ticket | null> | null;
|
|
304
|
+
nextToken?: string | null;
|
|
305
|
+
};
|
|
306
|
+
archivedForMissionID?: string[] | null;
|
|
307
|
+
} & DbObjectType;
|
|
308
|
+
export declare type Operation = {
|
|
309
|
+
id?: string | null;
|
|
310
|
+
ticketID?: string | null;
|
|
311
|
+
equipmentID?: string | null;
|
|
312
|
+
deletedAt?: number | null;
|
|
313
|
+
ticket?: Ticket | null;
|
|
314
|
+
equipment?: Equipment | null;
|
|
315
|
+
} & AWSType;
|
|
316
|
+
export declare type Equipment = {
|
|
317
|
+
name: string;
|
|
318
|
+
notes?: {
|
|
319
|
+
__typename?: 'ModelNoteConnection';
|
|
320
|
+
items?: Array<Note | null> | null;
|
|
321
|
+
nextToken?: string | null;
|
|
322
|
+
};
|
|
323
|
+
documents?: Array<EquipmentDocument> | null;
|
|
324
|
+
documentationImageUrlSigned?: string | null;
|
|
325
|
+
subEquipments?: Array<Equipment | null> | null;
|
|
326
|
+
subequipmentsIDs?: Array<string | null> | null;
|
|
327
|
+
serialNumber?: string | null;
|
|
328
|
+
domain?: Domain | null;
|
|
329
|
+
childDomain?: Domain | null;
|
|
330
|
+
parentDomain?: Domain | null;
|
|
331
|
+
photo?: string | null;
|
|
332
|
+
zone?: Zone | null;
|
|
333
|
+
tickets?: Ticket[] | null;
|
|
334
|
+
domainID?: string | null;
|
|
335
|
+
spaceID: string;
|
|
336
|
+
archivedForMissionID?: string[] | null;
|
|
337
|
+
annotation?: string | null;
|
|
338
|
+
status?: StatusEquipment | null;
|
|
339
|
+
family?: Array<string | null> | null;
|
|
340
|
+
manufacturer?: string | null;
|
|
341
|
+
sku?: string | null;
|
|
342
|
+
installDate?: number | null;
|
|
343
|
+
warrantyEndDate?: number | null;
|
|
344
|
+
isCreatedByAI?: boolean | null;
|
|
345
|
+
operations?: {
|
|
346
|
+
__typename?: 'ModelOperationConnection';
|
|
347
|
+
items?: Array<Operation | null> | null;
|
|
348
|
+
nextToken?: string | null;
|
|
349
|
+
};
|
|
350
|
+
} & DbObjectType;
|
|
351
|
+
export declare type EquipmentSelected = {
|
|
352
|
+
selected?: boolean;
|
|
353
|
+
} & Equipment;
|
|
354
|
+
export declare type EquipmentDocument = {
|
|
355
|
+
filename: string;
|
|
356
|
+
url: string;
|
|
357
|
+
urlSigned: string;
|
|
358
|
+
noteID: string;
|
|
359
|
+
};
|
|
360
|
+
export declare type Prestataire = {
|
|
361
|
+
organisation: Organisation;
|
|
362
|
+
mission: Mission;
|
|
363
|
+
profile: Profile;
|
|
364
|
+
name: string;
|
|
365
|
+
};
|
|
366
|
+
export declare type Note = {
|
|
367
|
+
id?: string | null;
|
|
368
|
+
attachment?: string | null;
|
|
369
|
+
signDate?: number | null;
|
|
370
|
+
expirationDate?: number | null;
|
|
371
|
+
type?: TypeNote | null;
|
|
372
|
+
ownerMissionID?: string | null;
|
|
373
|
+
equipmentID?: string | null;
|
|
374
|
+
} & AWSType;
|
|
375
|
+
export declare type Domain = {
|
|
376
|
+
name: string;
|
|
377
|
+
slug?: string | null;
|
|
378
|
+
abbreviation?: string | null;
|
|
379
|
+
description?: string | null;
|
|
380
|
+
organisationID?: string | null;
|
|
381
|
+
parentID?: string | null;
|
|
382
|
+
type?: DomainType | null;
|
|
383
|
+
parent?: Domain | null;
|
|
384
|
+
children?: {
|
|
385
|
+
__typename?: 'ModelDomainConnection';
|
|
386
|
+
items?: Array<Domain | null> | null;
|
|
387
|
+
nextToken?: string | null;
|
|
388
|
+
};
|
|
389
|
+
} & AWSType;
|
|
390
|
+
export declare type POI = {
|
|
391
|
+
id?: string | null;
|
|
392
|
+
coordinate?: string | null;
|
|
393
|
+
tagIcon?: string | null;
|
|
394
|
+
tagDescription?: string | null;
|
|
395
|
+
tagImageID?: string | null;
|
|
396
|
+
metadata?: string | null;
|
|
397
|
+
matterportSweepID?: string | null;
|
|
398
|
+
type?: PoiType | null;
|
|
399
|
+
elementID?: string | null;
|
|
400
|
+
virtual?: boolean | null;
|
|
401
|
+
};
|
|
402
|
+
export declare enum ViewerInteractions {
|
|
403
|
+
DEFAULT = 0,
|
|
404
|
+
ADDING = 1,
|
|
405
|
+
POSITIONING = 2
|
|
406
|
+
}
|
|
407
|
+
export declare type Mission = {
|
|
408
|
+
userID: string;
|
|
409
|
+
role?: RoleStatus | null;
|
|
410
|
+
organisationID: string;
|
|
411
|
+
spaceID?: string | null;
|
|
412
|
+
level?: LevelStatus | null;
|
|
413
|
+
orderedOrganisationID?: string | null;
|
|
414
|
+
zoneID?: string | null;
|
|
415
|
+
groups?: Array<string | null> | null;
|
|
416
|
+
emailStatus?: EmailStatus | null;
|
|
417
|
+
description?: string | null;
|
|
418
|
+
metadata?: string | null;
|
|
419
|
+
deletedAt?: number | null;
|
|
420
|
+
assignments?: {
|
|
421
|
+
__typename?: 'ModelAffectationConnection';
|
|
422
|
+
items?: Array<Affectation | null> | null;
|
|
423
|
+
nextToken?: string | null;
|
|
424
|
+
};
|
|
425
|
+
organisation?: Organisation | null;
|
|
426
|
+
orderedOrganisation?: Organisation | null;
|
|
427
|
+
user?: Profile | null;
|
|
428
|
+
domains?: string[] | null;
|
|
429
|
+
space?: Space | null;
|
|
430
|
+
zone?: Zone | null;
|
|
431
|
+
startDateTime?: string | null;
|
|
432
|
+
endDateTime?: string | null;
|
|
433
|
+
hashtags?: Array<string | null> | null;
|
|
434
|
+
templateMissionID?: string | null;
|
|
435
|
+
templateMission?: VisitTemplate | null;
|
|
436
|
+
locale?: Locale | null;
|
|
437
|
+
isInWaitingRoom?: boolean | null;
|
|
438
|
+
blockedInChat?: boolean | null;
|
|
439
|
+
connectedToLiveAt?: string[] | null;
|
|
440
|
+
disconnectedFromLiveAt?: string[] | null;
|
|
441
|
+
} & AWSType;
|
|
442
|
+
export declare type Affectation = {
|
|
443
|
+
mission?: Mission | null;
|
|
444
|
+
group: string;
|
|
445
|
+
metadata?: string | null;
|
|
446
|
+
deletedAt?: number | null;
|
|
447
|
+
missionID: string;
|
|
448
|
+
ticketID: string;
|
|
449
|
+
} & AWSType;
|
|
450
|
+
export declare type MediaContent = {
|
|
451
|
+
path: string;
|
|
452
|
+
title: string;
|
|
453
|
+
description: string;
|
|
454
|
+
showInTag?: boolean;
|
|
455
|
+
type?: CommentType;
|
|
456
|
+
};
|
|
457
|
+
export declare type Comment = {
|
|
458
|
+
title: string;
|
|
459
|
+
ticket?: Ticket | null;
|
|
460
|
+
ownerID?: string | null;
|
|
461
|
+
owner?: Mission | null;
|
|
462
|
+
annexe?: string | null;
|
|
463
|
+
ticketID?: string | null;
|
|
464
|
+
type?: CommentType | null;
|
|
465
|
+
dimensions?: Array<number | null> | null;
|
|
466
|
+
featureID?: string | null;
|
|
467
|
+
isCoverImage?: boolean | null;
|
|
468
|
+
index?: number | null;
|
|
469
|
+
shownInTag?: boolean | null;
|
|
470
|
+
externalLink?: string | null;
|
|
471
|
+
} & AWSType & DbObjectType;
|
|
472
|
+
export declare type Zone = {
|
|
473
|
+
sweepIDs?: string[] | null;
|
|
474
|
+
layerID?: string | null;
|
|
475
|
+
code_ref?: string | null;
|
|
476
|
+
layer?: Layer | null;
|
|
477
|
+
parent?: Zone | null;
|
|
478
|
+
virtual?: boolean | null;
|
|
479
|
+
name: string;
|
|
480
|
+
tags?: Array<string | null> | null;
|
|
481
|
+
parentID?: string | null;
|
|
482
|
+
spaceID?: string | null;
|
|
483
|
+
space?: Space | null;
|
|
484
|
+
isMuseumVisitZone?: boolean | null;
|
|
485
|
+
nodeIDs?: Array<string | null> | null;
|
|
486
|
+
surface?: number | null;
|
|
487
|
+
metadata?: string | null;
|
|
488
|
+
isMultipleFloorZone?: boolean | null;
|
|
489
|
+
audioID?: string | null;
|
|
490
|
+
audio?: Comment | null;
|
|
491
|
+
startSweepID?: string | null;
|
|
492
|
+
} & AWSType;
|
|
493
|
+
export declare type Layer = {
|
|
494
|
+
name: string;
|
|
495
|
+
} & AWSType;
|
|
496
|
+
export declare type Profile = {
|
|
497
|
+
id?: string | null;
|
|
498
|
+
userID: string;
|
|
499
|
+
avatar?: string | null;
|
|
500
|
+
token?: string | null;
|
|
501
|
+
tokenExpiredAt?: number | null;
|
|
502
|
+
status?: ProfileStatus | null;
|
|
503
|
+
metadata?: string | null;
|
|
504
|
+
lastConnectedAt?: number | null;
|
|
505
|
+
pseudo?: string | null;
|
|
506
|
+
deletedAt?: number | null;
|
|
507
|
+
} & AWSType;
|
|
508
|
+
export declare class ProfileEntity implements Profile {
|
|
509
|
+
id?: string | null;
|
|
510
|
+
userID: string;
|
|
511
|
+
avatar?: string | null;
|
|
512
|
+
token?: string | null;
|
|
513
|
+
tokenExpiredAt?: number | null;
|
|
514
|
+
status?: ProfileStatus | null;
|
|
515
|
+
createdAt?: string;
|
|
516
|
+
updatedAt?: string;
|
|
517
|
+
firstName: string;
|
|
518
|
+
lastName: string;
|
|
519
|
+
email: string;
|
|
520
|
+
phone: string;
|
|
521
|
+
pseudo: string;
|
|
522
|
+
constructor(init?: Partial<Profile>);
|
|
523
|
+
get metadata(): string;
|
|
524
|
+
set metadata(m: string);
|
|
525
|
+
get displayName(): string;
|
|
526
|
+
}
|
|
527
|
+
export declare type Organisation = {
|
|
528
|
+
name: string;
|
|
529
|
+
siret?: string | null;
|
|
530
|
+
address?: string | null;
|
|
531
|
+
city?: string | null;
|
|
532
|
+
postal?: number | null;
|
|
533
|
+
logoUrl?: string | null;
|
|
534
|
+
originDate?: number | null;
|
|
535
|
+
deletedAt?: number | null;
|
|
536
|
+
shareToken?: string | null;
|
|
537
|
+
tokenExpiresAt?: number | null;
|
|
538
|
+
connectedAccountStripeID?: string | null;
|
|
539
|
+
stripeOnBoardingCompleted?: boolean | null;
|
|
540
|
+
stripeToken?: string | null;
|
|
541
|
+
stripeChargesEnabled?: boolean | null;
|
|
542
|
+
contactDetails?: string | null;
|
|
543
|
+
ticketOrganisationsId?: string | null;
|
|
544
|
+
} & AWSType;
|
|
545
|
+
export declare type Property = {
|
|
546
|
+
type: PropertyType;
|
|
547
|
+
deletedAt?: number | null;
|
|
548
|
+
organisationID: string;
|
|
549
|
+
spaceID: string;
|
|
550
|
+
zoneID?: string | null;
|
|
551
|
+
space?: Space | null;
|
|
552
|
+
organisation?: Organisation | null;
|
|
553
|
+
} & AWSType;
|
|
554
|
+
export declare type Space = {
|
|
555
|
+
name: string;
|
|
556
|
+
addresses?: string | null;
|
|
557
|
+
annexes?: string | null;
|
|
558
|
+
tags?: Array<string | null> | null;
|
|
559
|
+
latitude?: number | null;
|
|
560
|
+
longitude?: number | null;
|
|
561
|
+
metadata?: string | null;
|
|
562
|
+
level?: LevelStatus | null;
|
|
563
|
+
deletedAt?: number | null;
|
|
564
|
+
constructionYear?: string | null;
|
|
565
|
+
classEnergyConsumption?: string | null;
|
|
566
|
+
classGes?: string | null;
|
|
567
|
+
status?: SpaceStatus | null;
|
|
568
|
+
guestLink?: string | null;
|
|
569
|
+
signedImageUrl?: string | null;
|
|
570
|
+
zones?: {
|
|
571
|
+
__typename?: 'ModelZoneConnection';
|
|
572
|
+
items?: Array<Zone | null> | null;
|
|
573
|
+
nextToken?: string | null;
|
|
574
|
+
};
|
|
575
|
+
properties?: {
|
|
576
|
+
__typename?: 'ModelPropertyConnection';
|
|
577
|
+
items?: Array<Property | null> | null;
|
|
578
|
+
nextToken?: string | null;
|
|
579
|
+
};
|
|
580
|
+
visits?: Visit[] | null;
|
|
581
|
+
organisationID?: string | null;
|
|
582
|
+
organisation?: Organisation | null;
|
|
583
|
+
description?: string | null;
|
|
584
|
+
attachments?: Comment[] | null;
|
|
585
|
+
} & AWSType;
|
|
586
|
+
export declare type Visit = {
|
|
587
|
+
captureID: string;
|
|
588
|
+
model3d: string;
|
|
589
|
+
takenAt: number;
|
|
590
|
+
spaceID: string;
|
|
591
|
+
viewer: CaptureViewer;
|
|
592
|
+
surface: number;
|
|
593
|
+
node: Node;
|
|
594
|
+
name?: string | null;
|
|
595
|
+
nmbImagesImported: number;
|
|
596
|
+
};
|
|
597
|
+
export declare type Hashtag = {
|
|
598
|
+
name?: string | null;
|
|
599
|
+
organisationID?: string | null;
|
|
600
|
+
spaceID?: string | null;
|
|
601
|
+
organization?: Organisation | null;
|
|
602
|
+
space?: Space | null;
|
|
603
|
+
} & AWSType;
|
|
604
|
+
export declare type Capture = {
|
|
605
|
+
takenAt?: number | null;
|
|
606
|
+
viewer?: CaptureViewer | null;
|
|
607
|
+
publishedAt?: number | null;
|
|
608
|
+
surface?: number | null;
|
|
609
|
+
metadata?: string | null;
|
|
610
|
+
spaceID?: string | null;
|
|
611
|
+
nodes?: {
|
|
612
|
+
__typename?: 'ModelNodeConnection';
|
|
613
|
+
items?: Array<Node | null> | null;
|
|
614
|
+
nextToken?: string | null;
|
|
615
|
+
};
|
|
616
|
+
} & AWSType;
|
|
617
|
+
export declare type Node = {
|
|
618
|
+
model3D?: string | null;
|
|
619
|
+
coordinate?: string | null;
|
|
620
|
+
size?: string | null;
|
|
621
|
+
scale?: string | null;
|
|
622
|
+
version?: number | null;
|
|
623
|
+
active?: number | null;
|
|
624
|
+
order?: number | null;
|
|
625
|
+
metadata?: string | null;
|
|
626
|
+
captureID?: string | null;
|
|
627
|
+
inventoryStatus?: InventoryStatus | null;
|
|
628
|
+
navigationForInventory?: string | null;
|
|
629
|
+
capture?: Capture | null;
|
|
630
|
+
} & AWSType;
|
|
631
|
+
export declare type Plan = {
|
|
632
|
+
name?: string | null;
|
|
633
|
+
annexe?: string | null;
|
|
634
|
+
calibration?: string | null;
|
|
635
|
+
zoneID?: string | null;
|
|
636
|
+
isCurrentForZone?: boolean | null;
|
|
637
|
+
spaceID?: string | null;
|
|
638
|
+
isModified?: boolean | null;
|
|
639
|
+
isImportedMatterport?: boolean | null;
|
|
640
|
+
filepath?: string;
|
|
641
|
+
model3d?: string | null;
|
|
642
|
+
floor?: string | null;
|
|
643
|
+
visitName?: string | null;
|
|
644
|
+
zone?: Zone | null;
|
|
645
|
+
extension?: string | null;
|
|
646
|
+
navigationIDs?: string[] | null;
|
|
647
|
+
} & AWSType;
|
|
648
|
+
export declare type Navigation = {
|
|
649
|
+
matterportSweepID?: string | null;
|
|
650
|
+
position?: string | null;
|
|
651
|
+
rotation?: string | null;
|
|
652
|
+
radius?: number | null;
|
|
653
|
+
url?: string | null;
|
|
654
|
+
tags?: Array<string | null> | null;
|
|
655
|
+
level?: LevelStatus | null;
|
|
656
|
+
nodeID?: string | null;
|
|
657
|
+
spaceID?: string | null;
|
|
658
|
+
positionOnPlan?: Array<string | null> | null;
|
|
659
|
+
navigationSiblingsId?: string | null;
|
|
660
|
+
pois?: {
|
|
661
|
+
__typename?: 'ModelPOIConnection';
|
|
662
|
+
items?: Array<POI | null> | null;
|
|
663
|
+
nextToken?: string | null;
|
|
664
|
+
};
|
|
665
|
+
node?: Node | null;
|
|
666
|
+
} & AWSType;
|
|
667
|
+
export declare type MenuItem = {
|
|
668
|
+
label: string;
|
|
669
|
+
url?: string;
|
|
670
|
+
back?: any;
|
|
671
|
+
};
|
|
672
|
+
export declare type Measurement = {
|
|
673
|
+
id: string;
|
|
674
|
+
poi: POI;
|
|
675
|
+
comment: Comment;
|
|
676
|
+
singedUrlPhoto?: string | null;
|
|
677
|
+
values: Array<number> | null;
|
|
678
|
+
numberPoints: number;
|
|
679
|
+
};
|
|
680
|
+
export declare type Feature = {
|
|
681
|
+
title?: string | null;
|
|
682
|
+
shortDescription?: string | null;
|
|
683
|
+
ownerMissionID?: string | null;
|
|
684
|
+
level?: LevelStatus | null;
|
|
685
|
+
index?: number | null;
|
|
686
|
+
type?: FeatureType | null;
|
|
687
|
+
archivedForMissionID?: Array<string | null> | null;
|
|
688
|
+
stripeProductID?: string | null;
|
|
689
|
+
stripePriceID?: string | null;
|
|
690
|
+
bookingPriceMetadata?: string | null;
|
|
691
|
+
locale?: Locale | null;
|
|
692
|
+
hashtags?: Array<string | null> | null;
|
|
693
|
+
coverImageUrl?: string | null;
|
|
694
|
+
images?: Array<MediaContent> | null;
|
|
695
|
+
videos?: Array<MediaContent> | null;
|
|
696
|
+
audios?: Array<MediaContent> | null;
|
|
697
|
+
externalLinks?: Array<MediaContent> | null;
|
|
698
|
+
documents?: Array<{
|
|
699
|
+
path: string;
|
|
700
|
+
title: string;
|
|
701
|
+
description: string;
|
|
702
|
+
}> | null;
|
|
703
|
+
embeds?: Array<MediaContent> | null;
|
|
704
|
+
iframes?: Array<MediaContent> | null;
|
|
705
|
+
comments?: {
|
|
706
|
+
__typename?: 'ModelCommentConnection';
|
|
707
|
+
items?: Array<Comment | null> | null;
|
|
708
|
+
nextToken?: string | null;
|
|
709
|
+
};
|
|
710
|
+
domain?: Domain | null;
|
|
711
|
+
isBookingPlace?: boolean | null;
|
|
712
|
+
events?: {
|
|
713
|
+
__typename?: 'ModelEventConnection';
|
|
714
|
+
items?: Array<Event | null> | null;
|
|
715
|
+
nextToken?: string | null;
|
|
716
|
+
};
|
|
717
|
+
spaceID: string;
|
|
718
|
+
} & DbObjectType;
|
|
719
|
+
export declare type Event = {
|
|
720
|
+
title: string;
|
|
721
|
+
type?: EventType | null;
|
|
722
|
+
estimateStartDate?: number | null;
|
|
723
|
+
estimateDuration?: number | null;
|
|
724
|
+
estimateEndDate?: number | null;
|
|
725
|
+
realStartDate?: number | null;
|
|
726
|
+
timeSpent?: number | null;
|
|
727
|
+
realEndDate?: number | null;
|
|
728
|
+
status?: EventStatus | null;
|
|
729
|
+
description?: string | null;
|
|
730
|
+
group?: string | null;
|
|
731
|
+
metadata?: string | null;
|
|
732
|
+
ownerID?: string | null;
|
|
733
|
+
ticketID?: string | null;
|
|
734
|
+
createdAt?: string | null;
|
|
735
|
+
translationPath?: string | null;
|
|
736
|
+
featureID?: string | null;
|
|
737
|
+
archivedByOwner?: boolean | null;
|
|
738
|
+
paymentStatus?: PaymentStatus | null;
|
|
739
|
+
stripeSessionID?: string | null;
|
|
740
|
+
notificationStatus?: EmailStatus | null;
|
|
741
|
+
refusalReason?: string | null;
|
|
742
|
+
agoStr?: boolean | string | null;
|
|
743
|
+
owner?: Mission | null;
|
|
744
|
+
author?: ProfileEntity | null;
|
|
745
|
+
feature?: Feature | null;
|
|
746
|
+
} & AWSType;
|
|
747
|
+
export declare type RequestIntervention = {
|
|
748
|
+
estimateStartDate?: number | null;
|
|
749
|
+
estimateDuration?: number | null;
|
|
750
|
+
estimateEndDate?: number | null;
|
|
751
|
+
realStartDate?: number | null;
|
|
752
|
+
realDuration?: number | null;
|
|
753
|
+
realEndDate?: number | null;
|
|
754
|
+
type: EventType.REQUEST_FOR_INTERVENTION;
|
|
755
|
+
status: EventStatus;
|
|
756
|
+
intervention?: Event | null;
|
|
757
|
+
report?: Event | null;
|
|
758
|
+
ticketID: string;
|
|
759
|
+
} & AWSType;
|
|
760
|
+
export declare type Intervention = {
|
|
761
|
+
estimateStartDate?: number | null;
|
|
762
|
+
estimateDuration?: number | null;
|
|
763
|
+
estimateEndDate?: number | null;
|
|
764
|
+
realStartDate?: number | null;
|
|
765
|
+
realDuration?: number | null;
|
|
766
|
+
realEndDate?: number | null;
|
|
767
|
+
type: EventType;
|
|
768
|
+
status: EventStatus;
|
|
769
|
+
} & AWSType;
|
|
770
|
+
export declare type VisitTemplate = {
|
|
771
|
+
id?: string | null;
|
|
772
|
+
title?: string | null;
|
|
773
|
+
level?: LevelStatus | null;
|
|
774
|
+
description?: string | null;
|
|
775
|
+
metadata?: string | null;
|
|
776
|
+
deletedAt?: number | null;
|
|
777
|
+
startDateTime?: string | null;
|
|
778
|
+
endDateTime?: string | null;
|
|
779
|
+
hashtags?: Array<string | null> | null;
|
|
780
|
+
organisationID: string;
|
|
781
|
+
spaceID?: string | null;
|
|
782
|
+
zoneID?: string | null;
|
|
783
|
+
locale?: Locale | null;
|
|
784
|
+
realStartedAt?: number | null;
|
|
785
|
+
realEndedAt?: number | null;
|
|
786
|
+
space?: Space | null;
|
|
787
|
+
zone?: Zone | null;
|
|
788
|
+
organisation?: Organisation | null;
|
|
789
|
+
userMissions?: {
|
|
790
|
+
__typename: 'ModelMissionConnection';
|
|
791
|
+
items: Array<Mission | null>;
|
|
792
|
+
nextToken?: string | null;
|
|
793
|
+
} | null;
|
|
794
|
+
} & AWSType;
|
|
795
|
+
export declare enum SpModule {
|
|
796
|
+
MUSEUM = "MUSEUM",
|
|
797
|
+
HOTEL = "HOTEL",
|
|
798
|
+
IMMO = "IMMO"
|
|
799
|
+
}
|
|
800
|
+
/**
|
|
801
|
+
* ThreeJS object3D
|
|
802
|
+
*/
|
|
803
|
+
export declare type IObject3D = {
|
|
804
|
+
id?: string;
|
|
805
|
+
object: string;
|
|
806
|
+
format: string;
|
|
807
|
+
mode: string;
|
|
808
|
+
position: {
|
|
809
|
+
x: number;
|
|
810
|
+
y: number;
|
|
811
|
+
z: number;
|
|
812
|
+
};
|
|
813
|
+
rotation: {
|
|
814
|
+
x: number;
|
|
815
|
+
y: number;
|
|
816
|
+
z: number;
|
|
817
|
+
};
|
|
818
|
+
scale: {
|
|
819
|
+
x: number;
|
|
820
|
+
y: number;
|
|
821
|
+
z: number;
|
|
822
|
+
};
|
|
823
|
+
viewFrustum: boolean;
|
|
824
|
+
};
|
|
825
|
+
/**
|
|
826
|
+
* DynamoDb object3D
|
|
827
|
+
*/
|
|
828
|
+
export declare type Object3D = {
|
|
829
|
+
id: string;
|
|
830
|
+
path: string;
|
|
831
|
+
description: string;
|
|
832
|
+
name: string;
|
|
833
|
+
s3Bucket: boolean;
|
|
834
|
+
position: number[];
|
|
835
|
+
rotation: number[];
|
|
836
|
+
scale: number[];
|
|
837
|
+
spaceID: string;
|
|
838
|
+
viewFrustum: boolean;
|
|
839
|
+
pois: {
|
|
840
|
+
items: POI[];
|
|
841
|
+
};
|
|
842
|
+
} & AWSType;
|