@sedni/cloud_common 3.0.3 → 3.0.5
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/.idea/cloud_common.iml +8 -0
- package/.idea/copilot.data.migration.agent.xml +6 -0
- package/.idea/copilot.data.migration.ask.xml +6 -0
- package/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/.idea/copilot.data.migration.edit.xml +6 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/shelf/Changes/shelved.patch +30 -0
- package/.idea/shelf/Changes.xml +4 -0
- package/.idea/shelf/Changes1/shelved.patch +229 -0
- package/.idea/shelf/Changes1.xml +4 -0
- package/.idea/shelf/Uncommitted_changes_before_Checkout_at_16_2_26,_10_07_[Changes]/shelved.patch +229 -0
- package/.idea/shelf/Uncommitted_changes_before_Checkout_at_16_2_26,_10_20_[Changes]/shelved.patch +23 -0
- package/.idea/shelf/Uncommitted_changes_before_Checkout_at_16_2_26__10_07__Changes_.xml +4 -0
- package/.idea/shelf/Uncommitted_changes_before_Checkout_at_16_2_26__10_20__Changes_.xml +4 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/workspace.xml +245 -0
- package/dist/browser-index.cjs +32 -5
- package/dist/browser-index.d.cts +38 -17
- package/dist/browser-index.d.ts +38 -17
- package/dist/browser-index.js +7 -1
- package/dist/chunk-72OOHARB.js +1442 -0
- package/dist/{chunk-VQWCQ4E2.js → chunk-XZJXANPO.js} +539 -2
- package/dist/index.cjs +44 -15
- package/dist/index.d.cts +45 -24
- package/dist/index.d.ts +45 -24
- package/dist/index.js +13 -7
- package/dist/models/Channel.d.ts +53 -0
- package/dist/models/Channel.js +65 -0
- package/dist/models/ChannelDataBucket.d.ts +81 -0
- package/dist/models/ChannelDataBucket.js +93 -0
- package/dist/models/ChannelDataPoint.d.ts +21 -0
- package/dist/models/ChannelDataPoint.js +75 -0
- package/dist/models/Event.d.ts +28 -0
- package/dist/models/Event.js +84 -0
- package/dist/models/History.d.ts +30 -0
- package/dist/models/History.js +96 -0
- package/dist/models/Unit.d.ts +50 -0
- package/dist/models/Unit.js +58 -0
- package/dist/models/docs/Channel.json +58 -0
- package/dist/models/docs/ChannelDataBucket.json +77 -0
- package/dist/models/docs/ChannelDataPoint.json +39 -0
- package/dist/models/docs/ChannelWithData.json +58 -0
- package/dist/models/docs/Event.json +78 -0
- package/dist/models/docs/History.json +103 -0
- package/dist/models/docs/Unit.json +67 -0
- package/dist/models/docs/index.d.ts +448 -0
- package/dist/models/docs/index.js +27 -0
- package/dist/models/mimics/AuxiliaryElements.d.ts +39 -0
- package/dist/models/mimics/AuxiliaryElements.js +33 -0
- package/dist/models/mimics/ChannelMimic.d.ts +9 -0
- package/dist/models/mimics/ChannelMimic.js +8 -0
- package/dist/models/mimics/ControlElements.d.ts +123 -0
- package/dist/models/mimics/ControlElements.js +114 -0
- package/dist/models/mimics/Elements.d.ts +109 -0
- package/dist/models/mimics/Elements.js +99 -0
- package/dist/models/mimics/IasElements.d.ts +25 -0
- package/dist/models/mimics/IasElements.js +21 -0
- package/dist/models/mimics/MimicSupport.d.ts +77 -0
- package/dist/models/mimics/MimicSupport.js +59 -0
- package/dist/models/mimics/MimicTraits.d.ts +58 -0
- package/dist/models/mimics/MimicTraits.js +48 -0
- package/dist/models/mimics/PmsElements.d.ts +74 -0
- package/dist/models/mimics/PmsElements.js +66 -0
- package/dist/network/requests/mimics/AuxiliaryElements.d.ts +29 -0
- package/dist/network/requests/mimics/AuxiliaryElements.js +23 -0
- package/dist/network/requests/mimics/ChannelMimic.d.ts +9 -0
- package/dist/network/requests/mimics/ChannelMimic.js +8 -0
- package/dist/network/requests/mimics/ControlElements.d.ts +68 -0
- package/dist/network/requests/mimics/ControlElements.js +59 -0
- package/dist/network/requests/mimics/Elements.d.ts +46 -0
- package/dist/network/requests/mimics/Elements.js +36 -0
- package/dist/network/requests/mimics/IasElements.d.ts +16 -0
- package/dist/network/requests/mimics/IasElements.js +12 -0
- package/dist/network/requests/mimics/MimicSupport.d.ts +77 -0
- package/dist/network/requests/mimics/MimicSupport.js +59 -0
- package/dist/network/requests/mimics/MimicTraits.d.ts +55 -0
- package/dist/network/requests/mimics/MimicTraits.js +45 -0
- package/dist/network/requests/mimics/PmsElements.d.ts +58 -0
- package/dist/network/requests/mimics/PmsElements.js +50 -0
- package/dist/network/responses/mimics/AuxiliaryElements.d.ts +23 -0
- package/dist/network/responses/mimics/AuxiliaryElements.js +17 -0
- package/dist/network/responses/mimics/ControlElements.d.ts +63 -0
- package/dist/network/responses/mimics/ControlElements.js +54 -0
- package/dist/network/responses/mimics/Elements.d.ts +58 -0
- package/dist/network/responses/mimics/Elements.js +48 -0
- package/dist/network/responses/mimics/IasElements.d.ts +17 -0
- package/dist/network/responses/mimics/IasElements.js +13 -0
- package/dist/network/responses/mimics/PmsElements.d.ts +44 -0
- package/dist/network/responses/mimics/PmsElements.js +37 -0
- package/dist/types/alarm.types.d.ts +42 -0
- package/dist/types/alarm.types.js +38 -0
- package/dist/types/channel.types.d.ts +27 -0
- package/dist/types/channel.types.js +30 -0
- package/dist/types/event.types.d.ts +19 -0
- package/dist/types/event.types.js +17 -0
- package/dist/types/mimics.types.d.ts +254 -0
- package/dist/types/mimics.types.js +325 -0
- package/dist/types/unit.types.d.ts +11 -0
- package/dist/types/unit.types.js +10 -0
- package/dist/user.types-CBlsVzYC.d.cts +1270 -0
- package/dist/user.types-CBlsVzYC.d.ts +1270 -0
- package/dist/{unit.types-4ZD9ivHi.d.cts → user.types-DaVBScqh.d.cts} +493 -17
- package/dist/{unit.types-4ZD9ivHi.d.ts → user.types-DaVBScqh.d.ts} +493 -17
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<changelist name="Uncommitted_changes_before_Checkout_at_16_2_26,_10_07_[Changes]" date="1771232878633" recycled="true" deleted="true">
|
|
2
|
+
<option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Checkout_at_16_2_26,_10_07_[Changes]/shelved.patch" />
|
|
3
|
+
<option name="DESCRIPTION" value="Uncommitted changes before Checkout at 16/2/26, 10:07 [Changes]" />
|
|
4
|
+
</changelist>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<changelist name="Uncommitted_changes_before_Checkout_at_16_2_26,_10_20_[Changes]" date="1771233610738" recycled="true" deleted="true">
|
|
2
|
+
<option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Checkout_at_16_2_26,_10_20_[Changes]/shelved.patch" />
|
|
3
|
+
<option name="DESCRIPTION" value="Uncommitted changes before Checkout at 16/2/26, 10:20 [Changes]" />
|
|
4
|
+
</changelist>
|
package/.idea/vcs.xml
ADDED
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="AutoImportSettings">
|
|
4
|
+
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ChangeListManager">
|
|
7
|
+
<list default="true" id="61d42077-b099-48fb-bd86-247f258790af" name="Changes" comment="ADD: Missing types." />
|
|
8
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
9
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
11
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
12
|
+
</component>
|
|
13
|
+
<component name="ChangesViewManager">
|
|
14
|
+
<option name="groupingKeys">
|
|
15
|
+
<option value="directory" />
|
|
16
|
+
<option value="repository" />
|
|
17
|
+
</option>
|
|
18
|
+
</component>
|
|
19
|
+
<component name="Git.Settings">
|
|
20
|
+
<option name="RECENT_BRANCH_BY_REPOSITORY">
|
|
21
|
+
<map>
|
|
22
|
+
<entry key="$PROJECT_DIR$" value="40b4d0a6faeea34e08138245c6da57f37467b382" />
|
|
23
|
+
</map>
|
|
24
|
+
</option>
|
|
25
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
26
|
+
</component>
|
|
27
|
+
<component name="GitHubPullRequestSearchHistory">{
|
|
28
|
+
"lastFilter": {
|
|
29
|
+
"state": "OPEN",
|
|
30
|
+
"assignee": "samuel0122"
|
|
31
|
+
}
|
|
32
|
+
}</component>
|
|
33
|
+
<component name="GithubPullRequestsUISettings">{
|
|
34
|
+
"selectedUrlAndAccountId": {
|
|
35
|
+
"url": "https://github.com/sedni-sa/cloud_common.git",
|
|
36
|
+
"accountId": "01fee952-c18c-4647-a6a6-7737f2c9d0bc"
|
|
37
|
+
}
|
|
38
|
+
}</component>
|
|
39
|
+
<component name="ProjectColorInfo">{
|
|
40
|
+
"associatedIndex": 3
|
|
41
|
+
}</component>
|
|
42
|
+
<component name="ProjectId" id="37vJgtAWwOTk44iJNXd0NNwDrLx" />
|
|
43
|
+
<component name="ProjectViewState">
|
|
44
|
+
<option name="hideEmptyMiddlePackages" value="true" />
|
|
45
|
+
<option name="showLibraryContents" value="true" />
|
|
46
|
+
</component>
|
|
47
|
+
<component name="PropertiesComponent">{
|
|
48
|
+
"keyToString": {
|
|
49
|
+
"ModuleVcsDetector.initialDetectionPerformed": "true",
|
|
50
|
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
51
|
+
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
|
|
52
|
+
"RunOnceActivity.git.unshallow": "true",
|
|
53
|
+
"RunOnceActivity.typescript.service.memoryLimit.init": "true",
|
|
54
|
+
"com.intellij.ml.llm.matterhorn.ej.ui.settings.DefaultModelSelectionForGA.v1": "true",
|
|
55
|
+
"git-widget-placeholder": "feat/3-5-14-mimic-elements-update",
|
|
56
|
+
"javascript.preferred.runtime.type.id": "node",
|
|
57
|
+
"junie.onboarding.icon.badge.shown": "true",
|
|
58
|
+
"last_opened_file_path": "/home/soliva/Documentos/GitHub/cloud_common/app/network/responses",
|
|
59
|
+
"node.js.detected.package.eslint": "true",
|
|
60
|
+
"node.js.detected.package.tslint": "true",
|
|
61
|
+
"node.js.selected.package.eslint": "(autodetect)",
|
|
62
|
+
"node.js.selected.package.tslint": "(autodetect)",
|
|
63
|
+
"nodejs_interpreter_path": "/home/soliva/.nvm/versions/node/v22.14.0/bin/node",
|
|
64
|
+
"nodejs_package_manager_path": "npm",
|
|
65
|
+
"npm.build.executor": "Run",
|
|
66
|
+
"settings.editor.selected.configurable": "settings.javascript.runtime",
|
|
67
|
+
"to.speed.mode.migration.done": "true",
|
|
68
|
+
"ts.external.directory.path": "/home/soliva/Documentos/GitHub/cloud_common/node_modules/typescript/lib",
|
|
69
|
+
"vue.rearranger.settings.migration": "true"
|
|
70
|
+
}
|
|
71
|
+
}</component>
|
|
72
|
+
<component name="RecentsManager">
|
|
73
|
+
<key name="CopyFile.RECENT_KEYS">
|
|
74
|
+
<recent name="$PROJECT_DIR$/app/network/responses" />
|
|
75
|
+
<recent name="$PROJECT_DIR$/app/network/requests" />
|
|
76
|
+
</key>
|
|
77
|
+
</component>
|
|
78
|
+
<component name="RunManager">
|
|
79
|
+
<configuration name="build" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
|
|
80
|
+
<package-json value="$PROJECT_DIR$/package.json" />
|
|
81
|
+
<command value="run" />
|
|
82
|
+
<scripts>
|
|
83
|
+
<script value="build" />
|
|
84
|
+
</scripts>
|
|
85
|
+
<node-interpreter value="project" />
|
|
86
|
+
<envs />
|
|
87
|
+
<method v="2" />
|
|
88
|
+
</configuration>
|
|
89
|
+
<recent_temporary>
|
|
90
|
+
<list>
|
|
91
|
+
<item itemvalue="npm.build" />
|
|
92
|
+
<item itemvalue="npm.build" />
|
|
93
|
+
</list>
|
|
94
|
+
</recent_temporary>
|
|
95
|
+
</component>
|
|
96
|
+
<component name="SharedIndexes">
|
|
97
|
+
<attachedChunks>
|
|
98
|
+
<set>
|
|
99
|
+
<option value="bundled-js-predefined-d6986cc7102b-9b0f141eb926-JavaScript-WS-253.29346.143" />
|
|
100
|
+
</set>
|
|
101
|
+
</attachedChunks>
|
|
102
|
+
</component>
|
|
103
|
+
<component name="TaskManager">
|
|
104
|
+
<task active="true" id="Default" summary="Default task">
|
|
105
|
+
<changelist id="61d42077-b099-48fb-bd86-247f258790af" name="Changes" comment="" />
|
|
106
|
+
<created>1767777726096</created>
|
|
107
|
+
<option name="number" value="Default" />
|
|
108
|
+
<option name="presentableId" value="Default" />
|
|
109
|
+
<updated>1767777726096</updated>
|
|
110
|
+
<workItem from="1767777727152" duration="5000" />
|
|
111
|
+
<workItem from="1767781493560" duration="12513000" />
|
|
112
|
+
<workItem from="1767800651176" duration="883000" />
|
|
113
|
+
<workItem from="1767854729778" duration="6484000" />
|
|
114
|
+
<workItem from="1767941176969" duration="4551000" />
|
|
115
|
+
<workItem from="1767960678117" duration="1480000" />
|
|
116
|
+
<workItem from="1768200260705" duration="3351000" />
|
|
117
|
+
<workItem from="1768373152536" duration="1237000" />
|
|
118
|
+
<workItem from="1769434552139" duration="3050000" />
|
|
119
|
+
<workItem from="1769496212430" duration="12631000" />
|
|
120
|
+
<workItem from="1769582565750" duration="15953000" />
|
|
121
|
+
<workItem from="1769756504641" duration="1819000" />
|
|
122
|
+
<workItem from="1770021644438" duration="608000" />
|
|
123
|
+
<workItem from="1770039695055" duration="4072000" />
|
|
124
|
+
<workItem from="1770189013715" duration="8466000" />
|
|
125
|
+
<workItem from="1770363314473" duration="609000" />
|
|
126
|
+
<workItem from="1770375995800" duration="6787000" />
|
|
127
|
+
<workItem from="1770647304827" duration="66000" />
|
|
128
|
+
<workItem from="1770647395959" duration="2000" />
|
|
129
|
+
<workItem from="1770792572429" duration="9558000" />
|
|
130
|
+
<workItem from="1770966798979" duration="1782000" />
|
|
131
|
+
<workItem from="1770986411705" duration="46000" />
|
|
132
|
+
<workItem from="1771232780579" duration="15470000" />
|
|
133
|
+
<workItem from="1771402195069" duration="1000" />
|
|
134
|
+
<workItem from="1771574379484" duration="599000" />
|
|
135
|
+
</task>
|
|
136
|
+
<task id="LOCAL-00001" summary="Fixes for client_api import.">
|
|
137
|
+
<option name="closed" value="true" />
|
|
138
|
+
<created>1767950061651</created>
|
|
139
|
+
<option name="number" value="00001" />
|
|
140
|
+
<option name="presentableId" value="LOCAL-00001" />
|
|
141
|
+
<option name="project" value="LOCAL" />
|
|
142
|
+
<updated>1767950061651</updated>
|
|
143
|
+
</task>
|
|
144
|
+
<task id="LOCAL-00002" summary="FIX: AlarmIndicator text color on color hex string codification.">
|
|
145
|
+
<option name="closed" value="true" />
|
|
146
|
+
<created>1767956019743</created>
|
|
147
|
+
<option name="number" value="00002" />
|
|
148
|
+
<option name="presentableId" value="LOCAL-00002" />
|
|
149
|
+
<option name="project" value="LOCAL" />
|
|
150
|
+
<updated>1767956019743</updated>
|
|
151
|
+
</task>
|
|
152
|
+
<task id="LOCAL-00003" summary="FIX: Publish Line type for remoteViewer.">
|
|
153
|
+
<option name="closed" value="true" />
|
|
154
|
+
<created>1767962093322</created>
|
|
155
|
+
<option name="number" value="00003" />
|
|
156
|
+
<option name="presentableId" value="LOCAL-00003" />
|
|
157
|
+
<option name="project" value="LOCAL" />
|
|
158
|
+
<updated>1767962093322</updated>
|
|
159
|
+
</task>
|
|
160
|
+
<task id="LOCAL-00004" summary="ADD: MimicPms response contract.">
|
|
161
|
+
<option name="closed" value="true" />
|
|
162
|
+
<created>1769592220178</created>
|
|
163
|
+
<option name="number" value="00004" />
|
|
164
|
+
<option name="presentableId" value="LOCAL-00004" />
|
|
165
|
+
<option name="project" value="LOCAL" />
|
|
166
|
+
<updated>1769592220178</updated>
|
|
167
|
+
</task>
|
|
168
|
+
<task id="LOCAL-00005" summary="FIX: Browser & types export.">
|
|
169
|
+
<option name="closed" value="true" />
|
|
170
|
+
<created>1769603250772</created>
|
|
171
|
+
<option name="number" value="00005" />
|
|
172
|
+
<option name="presentableId" value="LOCAL-00005" />
|
|
173
|
+
<option name="project" value="LOCAL" />
|
|
174
|
+
<updated>1769603250773</updated>
|
|
175
|
+
</task>
|
|
176
|
+
<task id="LOCAL-00006" summary="MODIFY: BreakerPms contains OpClFb & RemoteLocal.">
|
|
177
|
+
<option name="closed" value="true" />
|
|
178
|
+
<created>1770042078647</created>
|
|
179
|
+
<option name="number" value="00006" />
|
|
180
|
+
<option name="presentableId" value="LOCAL-00006" />
|
|
181
|
+
<option name="project" value="LOCAL" />
|
|
182
|
+
<updated>1770042078647</updated>
|
|
183
|
+
</task>
|
|
184
|
+
<task id="LOCAL-00007" summary="MODIFY: Automated elements traits & response fix.">
|
|
185
|
+
<option name="closed" value="true" />
|
|
186
|
+
<created>1770216175595</created>
|
|
187
|
+
<option name="number" value="00007" />
|
|
188
|
+
<option name="presentableId" value="LOCAL-00007" />
|
|
189
|
+
<option name="project" value="LOCAL" />
|
|
190
|
+
<updated>1770216175595</updated>
|
|
191
|
+
</task>
|
|
192
|
+
<task id="LOCAL-00008" summary="ADD: Generator PMS element data requests.">
|
|
193
|
+
<option name="closed" value="true" />
|
|
194
|
+
<created>1770647355456</created>
|
|
195
|
+
<option name="number" value="00008" />
|
|
196
|
+
<option name="presentableId" value="LOCAL-00008" />
|
|
197
|
+
<option name="project" value="LOCAL" />
|
|
198
|
+
<updated>1770647355456</updated>
|
|
199
|
+
</task>
|
|
200
|
+
<task id="LOCAL-00009" summary="ADD: Missing types.">
|
|
201
|
+
<option name="closed" value="true" />
|
|
202
|
+
<created>1770986448044</created>
|
|
203
|
+
<option name="number" value="00009" />
|
|
204
|
+
<option name="presentableId" value="LOCAL-00009" />
|
|
205
|
+
<option name="project" value="LOCAL" />
|
|
206
|
+
<updated>1770986448044</updated>
|
|
207
|
+
</task>
|
|
208
|
+
<option name="localTasksCounter" value="10" />
|
|
209
|
+
<servers />
|
|
210
|
+
</component>
|
|
211
|
+
<component name="TypeScriptGeneratedFilesManager">
|
|
212
|
+
<option name="version" value="3" />
|
|
213
|
+
</component>
|
|
214
|
+
<component name="Vcs.Log.Tabs.Properties">
|
|
215
|
+
<option name="TAB_STATES">
|
|
216
|
+
<map>
|
|
217
|
+
<entry key="MAIN">
|
|
218
|
+
<value>
|
|
219
|
+
<State />
|
|
220
|
+
</value>
|
|
221
|
+
</entry>
|
|
222
|
+
</map>
|
|
223
|
+
</option>
|
|
224
|
+
</component>
|
|
225
|
+
<component name="VcsManagerConfiguration">
|
|
226
|
+
<MESSAGE value="Fixes for client_api import." />
|
|
227
|
+
<MESSAGE value="FIX: AlarmIndicator text color on color hex string codification." />
|
|
228
|
+
<MESSAGE value="FIX: Publish Line type for remoteViewer." />
|
|
229
|
+
<MESSAGE value="ADD: MimicPms response contract." />
|
|
230
|
+
<MESSAGE value="FIX: Browser & types export." />
|
|
231
|
+
<MESSAGE value="MODIFY: BreakerPms contains OpClFb & RemoteLocal." />
|
|
232
|
+
<MESSAGE value="MODIFY: Automated elements traits & response fix." />
|
|
233
|
+
<MESSAGE value="ADD: Generator PMS element data requests." />
|
|
234
|
+
<MESSAGE value="ADD: Missing types." />
|
|
235
|
+
<option name="LAST_COMMIT_MESSAGE" value="ADD: Missing types." />
|
|
236
|
+
</component>
|
|
237
|
+
<component name="github-copilot-workspace">
|
|
238
|
+
<instructionFileLocations>
|
|
239
|
+
<option value=".github/instructions" />
|
|
240
|
+
</instructionFileLocations>
|
|
241
|
+
<promptFileLocations>
|
|
242
|
+
<option value=".github/prompts" />
|
|
243
|
+
</promptFileLocations>
|
|
244
|
+
</component>
|
|
245
|
+
</project>
|
package/dist/browser-index.cjs
CHANGED
|
@@ -971,11 +971,7 @@ var PrioritiesRequest = {
|
|
|
971
971
|
Priorities: []
|
|
972
972
|
};
|
|
973
973
|
var ShaftRequest = {
|
|
974
|
-
|
|
975
|
-
ActivationMode: "",
|
|
976
|
-
ActivationValue: false,
|
|
977
|
-
OpenFeedback: ChannelRequest,
|
|
978
|
-
CloseFeedback: ChannelRequest
|
|
974
|
+
FeedbackOpCl: FeedbackOpClRequest
|
|
979
975
|
};
|
|
980
976
|
|
|
981
977
|
// app/network/responses/mimics/AuxiliaryElements.ts
|
|
@@ -1150,6 +1146,7 @@ var OperationModesResponse = {
|
|
|
1150
1146
|
var PrioritiesResponse = {};
|
|
1151
1147
|
var ShaftResponse = {
|
|
1152
1148
|
AlarmState: MimicAlarmStates.OFFLINE,
|
|
1149
|
+
Value: OpClStates.NO_VALUE,
|
|
1153
1150
|
Active: false
|
|
1154
1151
|
};
|
|
1155
1152
|
|
|
@@ -1244,6 +1241,26 @@ var EventCriticalities = {
|
|
|
1244
1241
|
CRITICAL: "Critical"
|
|
1245
1242
|
};
|
|
1246
1243
|
|
|
1244
|
+
// app/types/graphic.types.ts
|
|
1245
|
+
var ChartTypes = {
|
|
1246
|
+
VERTICAL_BAR: "VerticalBar",
|
|
1247
|
+
LINES: "Lines",
|
|
1248
|
+
CURVES: "Curves",
|
|
1249
|
+
LINES_SOLID: "LinesSolid",
|
|
1250
|
+
CURVES_SOLID: "CurvesSolid"
|
|
1251
|
+
};
|
|
1252
|
+
|
|
1253
|
+
// app/types/ship.types.ts
|
|
1254
|
+
var ShipTypes = {
|
|
1255
|
+
CARGO: "Cargo",
|
|
1256
|
+
FISHING: "Fishing",
|
|
1257
|
+
PASSENGER: "Passenger",
|
|
1258
|
+
OCEANOGRAPHIC: "Oceanographic",
|
|
1259
|
+
MILITARY: "Military",
|
|
1260
|
+
LIFEBOAT: "Lifeboat",
|
|
1261
|
+
TUG: "Tug"
|
|
1262
|
+
};
|
|
1263
|
+
|
|
1247
1264
|
// app/types/unit.types.ts
|
|
1248
1265
|
var UnitTypes = {
|
|
1249
1266
|
AIM18: "Aim18",
|
|
@@ -1256,6 +1273,13 @@ var UnitTypes = {
|
|
|
1256
1273
|
TIM28: "Tim28"
|
|
1257
1274
|
};
|
|
1258
1275
|
|
|
1276
|
+
// app/types/user.types.ts
|
|
1277
|
+
var UserTypes = {
|
|
1278
|
+
SEDNI_ADMIN: "sedni_admin",
|
|
1279
|
+
FLEET_ADMIN: "fleet_admin",
|
|
1280
|
+
USER: "user"
|
|
1281
|
+
};
|
|
1282
|
+
|
|
1259
1283
|
// app/browser-index.ts
|
|
1260
1284
|
var Mimics = {
|
|
1261
1285
|
// Auxiliary
|
|
@@ -1469,7 +1493,10 @@ var Types = {
|
|
|
1469
1493
|
ChannelSpecificTypes,
|
|
1470
1494
|
EventCategories,
|
|
1471
1495
|
EventCriticalities,
|
|
1496
|
+
ChartTypes,
|
|
1497
|
+
ShipTypes,
|
|
1472
1498
|
UnitTypes,
|
|
1499
|
+
UserTypes,
|
|
1473
1500
|
Mimics: MimicsTypes
|
|
1474
1501
|
};
|
|
1475
1502
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/browser-index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { I as ImageAuxiliaryJsonSchema, L as LineAuxiliaryJsonSchema, a as LinkAuxiliaryJsonSchema, P as PolylineAuxiliaryJsonSchema, S as SquareAuxiliaryJsonSchema, T as TextAuxiliaryJsonSchema, C as ChannelJsonSchema, b as CompressorJsonSchema, D as DamperJsonSchema, c as DamperAutomatedJsonSchema, F as FanJsonSchema, d as PumpJsonSchema, e as PumpAutomatedJsonSchema, f as TankJsonSchema, V as ValveJsonSchema, g as ValveAutomatedJsonSchema, A as AlarmIndicatorJsonSchema, h as CommandJsonSchema, i as DialJsonSchema, j as DigitalJsonSchema, k as DisplayJsonSchema, l as DynamicTextJsonSchema, m as LevelBarJsonSchema, n as SliderJsonSchema, o as TextChannelJsonSchema, p as ToggleJsonSchema, q as CabinetJsonSchema, R as RepeaterJsonSchema, r as StationJsonSchema, U as UnitJsonSchema, s as AddedAlarmsJsonSchema, B as BackgroundJsonSchema, t as LineJsonSchema, u as LocalizedTextJsonSchema, v as LocationJsonSchema, w as LogicExpressionJsonSchema, x as LogicExpressionsJsonSchema, y as ScaleJsonSchema, z as TextAttributesJsonSchema, E as TitleJsonSchema, G as AutomaticSemiAutoJsonSchema, H as CommandsOpClJsonSchema, J as CommandsStartStopJsonSchema, K as ControlLockJsonSchema, M as FeedbackOpClJsonSchema, N as FeedbackRunningStoppedJsonSchema, O as OrderOpClJsonSchema, Q as OrderStartStopJsonSchema, W as RemoteLocalJsonSchema, X as TripResetJsonSchema, Y as BreakerJsonSchema, Z as BreakerPmsJsonSchema, _ as GeneratorJsonSchema, $ as GeneratorPmsJsonSchema, a0 as OperationModesJsonSchema, a1 as PriorityDataJsonSchema, a2 as PrioritiesJsonSchema, a3 as ShaftJsonSchema, a4 as ImageAuxiliaryRequestSchema, a5 as LineAuxiliaryRequestSchema, a6 as LinkAuxiliaryRequestSchema, a7 as PolylineAuxiliaryRequestSchema, a8 as SquareAuxiliaryRequestSchema, a9 as TextAuxiliaryRequestSchema, aa as ChannelRequestSchema, ab as CompressorRequestSchema, ac as DamperRequestSchema, ad as DamperAutomatedRequestSchema, ae as FanRequestSchema, af as PumpRequestSchema, ag as PumpAutomatedRequestSchema, ah as TankRequestSchema, ai as ValveRequestSchema, aj as ValveAutomatedRequestSchema, ak as AlarmIndicatorRequestSchema, al as CommandRequestSchema, am as DialRequestSchema, an as DigitalRequestSchema, ao as DisplayRequestSchema, ap as DynamicTextRequestSchema, aq as LevelBarRequestSchema, ar as SliderRequestSchema, as as TextChannelRequestSchema, at as ToggleRequestSchema, au as CabinetRequestSchema, av as RepeaterRequestSchema, aw as StationRequestSchema, ax as UnitRequestSchema, ay as AutomaticSemiAutoRequestSchema, az as CommandsOpClRequestSchema, aA as CommandsStartStopRequestSchema, aB as ControlLockRequestSchema, aC as FeedbackOpClRequestSchema, aD as FeedbackRunningStoppedRequestSchema, aE as OrderOpClRequestSchema, aF as OrderStartStopRequestSchema, aG as RemoteLocalRequestSchema, aH as TripResetRequestSchema, aI as BreakerRequestSchema, aJ as BreakerPmsRequestSchema, aK as GeneratorRequestSchema, aL as GeneratorPmsRequestSchema, aM as OperationModesRequestSchema, aN as PriorityDataRequestSchema, aO as PrioritiesRequestSchema, aP as ShaftRequestSchema, aQ as ImageAuxiliaryResponseSchema, aR as LineAuxiliaryResponseSchema, aS as LinkAuxiliaryResponseSchema, aT as PolylineAuxiliaryResponseSchema, aU as SquareAuxiliaryResponseSchema, aV as TextAuxiliaryResponseSchema, aW as CompressorResponseSchema, aX as DamperResponseSchema, aY as DamperAutomatedResponseSchema, aZ as FanResponseSchema, a_ as PumpResponseSchema, a$ as PumpAutomatedResponseSchema, b0 as TankResponseSchema, b1 as ValveResponseSchema, b2 as ValveAutomatedResponseSchema, b3 as AlarmIndicatorResponseSchema, b4 as CommandResponseSchema, b5 as DialResponseSchema, b6 as DigitalResponseSchema, b7 as DisplayResponseSchema, b8 as DynamicTextResponseSchema, b9 as LevelBarResponseSchema, ba as SliderResponseSchema, bb as TextChannelResponseSchema, bc as ToggleResponseSchema, bd as CabinetResponseSchema, be as RepeaterResponseSchema, bf as StationResponseSchema, bg as UnitResponseSchema, bh as BreakerResponseSchema, bi as BreakerPmsResponseSchema, bj as GeneratorResponseSchema, bk as GeneratorPmsResponseSchema, bl as OperationModesResponseSchema, bm as PrioritiesResponseSchema, bn as ShaftResponseSchema } from './
|
|
2
|
-
export { bo as ActivationMode, bp as AlarmPriority, bq as AlarmState, br as AlarmType, bs as AutoSemiAutoState, bt as CabinetDesign, bu as ChannelBaseType, bv as ChannelSpecificType, bw as
|
|
1
|
+
import { I as ImageAuxiliaryJsonSchema, L as LineAuxiliaryJsonSchema, a as LinkAuxiliaryJsonSchema, P as PolylineAuxiliaryJsonSchema, S as SquareAuxiliaryJsonSchema, T as TextAuxiliaryJsonSchema, C as ChannelJsonSchema, b as CompressorJsonSchema, D as DamperJsonSchema, c as DamperAutomatedJsonSchema, F as FanJsonSchema, d as PumpJsonSchema, e as PumpAutomatedJsonSchema, f as TankJsonSchema, V as ValveJsonSchema, g as ValveAutomatedJsonSchema, A as AlarmIndicatorJsonSchema, h as CommandJsonSchema, i as DialJsonSchema, j as DigitalJsonSchema, k as DisplayJsonSchema, l as DynamicTextJsonSchema, m as LevelBarJsonSchema, n as SliderJsonSchema, o as TextChannelJsonSchema, p as ToggleJsonSchema, q as CabinetJsonSchema, R as RepeaterJsonSchema, r as StationJsonSchema, U as UnitJsonSchema, s as AddedAlarmsJsonSchema, B as BackgroundJsonSchema, t as LineJsonSchema, u as LocalizedTextJsonSchema, v as LocationJsonSchema, w as LogicExpressionJsonSchema, x as LogicExpressionsJsonSchema, y as ScaleJsonSchema, z as TextAttributesJsonSchema, E as TitleJsonSchema, G as AutomaticSemiAutoJsonSchema, H as CommandsOpClJsonSchema, J as CommandsStartStopJsonSchema, K as ControlLockJsonSchema, M as FeedbackOpClJsonSchema, N as FeedbackRunningStoppedJsonSchema, O as OrderOpClJsonSchema, Q as OrderStartStopJsonSchema, W as RemoteLocalJsonSchema, X as TripResetJsonSchema, Y as BreakerJsonSchema, Z as BreakerPmsJsonSchema, _ as GeneratorJsonSchema, $ as GeneratorPmsJsonSchema, a0 as OperationModesJsonSchema, a1 as PriorityDataJsonSchema, a2 as PrioritiesJsonSchema, a3 as ShaftJsonSchema, a4 as ImageAuxiliaryRequestSchema, a5 as LineAuxiliaryRequestSchema, a6 as LinkAuxiliaryRequestSchema, a7 as PolylineAuxiliaryRequestSchema, a8 as SquareAuxiliaryRequestSchema, a9 as TextAuxiliaryRequestSchema, aa as ChannelRequestSchema, ab as CompressorRequestSchema, ac as DamperRequestSchema, ad as DamperAutomatedRequestSchema, ae as FanRequestSchema, af as PumpRequestSchema, ag as PumpAutomatedRequestSchema, ah as TankRequestSchema, ai as ValveRequestSchema, aj as ValveAutomatedRequestSchema, ak as AlarmIndicatorRequestSchema, al as CommandRequestSchema, am as DialRequestSchema, an as DigitalRequestSchema, ao as DisplayRequestSchema, ap as DynamicTextRequestSchema, aq as LevelBarRequestSchema, ar as SliderRequestSchema, as as TextChannelRequestSchema, at as ToggleRequestSchema, au as CabinetRequestSchema, av as RepeaterRequestSchema, aw as StationRequestSchema, ax as UnitRequestSchema, ay as AutomaticSemiAutoRequestSchema, az as CommandsOpClRequestSchema, aA as CommandsStartStopRequestSchema, aB as ControlLockRequestSchema, aC as FeedbackOpClRequestSchema, aD as FeedbackRunningStoppedRequestSchema, aE as OrderOpClRequestSchema, aF as OrderStartStopRequestSchema, aG as RemoteLocalRequestSchema, aH as TripResetRequestSchema, aI as BreakerRequestSchema, aJ as BreakerPmsRequestSchema, aK as GeneratorRequestSchema, aL as GeneratorPmsRequestSchema, aM as OperationModesRequestSchema, aN as PriorityDataRequestSchema, aO as PrioritiesRequestSchema, aP as ShaftRequestSchema, aQ as ImageAuxiliaryResponseSchema, aR as LineAuxiliaryResponseSchema, aS as LinkAuxiliaryResponseSchema, aT as PolylineAuxiliaryResponseSchema, aU as SquareAuxiliaryResponseSchema, aV as TextAuxiliaryResponseSchema, aW as CompressorResponseSchema, aX as DamperResponseSchema, aY as DamperAutomatedResponseSchema, aZ as FanResponseSchema, a_ as PumpResponseSchema, a$ as PumpAutomatedResponseSchema, b0 as TankResponseSchema, b1 as ValveResponseSchema, b2 as ValveAutomatedResponseSchema, b3 as AlarmIndicatorResponseSchema, b4 as CommandResponseSchema, b5 as DialResponseSchema, b6 as DigitalResponseSchema, b7 as DisplayResponseSchema, b8 as DynamicTextResponseSchema, b9 as LevelBarResponseSchema, ba as SliderResponseSchema, bb as TextChannelResponseSchema, bc as ToggleResponseSchema, bd as CabinetResponseSchema, be as RepeaterResponseSchema, bf as StationResponseSchema, bg as UnitResponseSchema, bh as BreakerResponseSchema, bi as BreakerPmsResponseSchema, bj as GeneratorResponseSchema, bk as GeneratorPmsResponseSchema, bl as OperationModesResponseSchema, bm as PrioritiesResponseSchema, bn as ShaftResponseSchema } from './user.types-CBlsVzYC.cjs';
|
|
2
|
+
export { bo as ActivationMode, bp as AlarmPriority, bq as AlarmState, br as AlarmType, bs as AutoSemiAutoState, bt as CabinetDesign, bu as ChannelBaseType, bv as ChannelSpecificType, bw as ChartType, bx as CloudAlarmState, by as CompressorDesign, bz as DiamarAlarmState, bA as DigitalAlarmState, bB as DigitalState, bC as EventCategory, bD as EventCriticality, bE as FanDesign, bF as FanDirection, bG as FanRunState, bH as FanType, bI as InfoLocation, bJ as LedType, bK as LevelBarOrientation, bL as LineRequestSchema, bM as LinkDesign, bN as MarkType, bO as MimicAlarmState, bP as MimicControlState, bQ as MimicElementType, bR as OpClState, bS as OperationModeState, bT as RemoteLocalState, bU as RepeaterDesign, bV as RunningStoppedState, bW as ScalePosition, bX as ShipType, bY as SliderOrientation, bZ as StationDesign, b_ as TextAnchorPoint, b$ as TitleAlign, c0 as UnitDesign, c1 as UnitType, c2 as UserType, c3 as ValueType, c4 as ValveDesign, c5 as ZDepth } from './user.types-CBlsVzYC.cjs';
|
|
3
3
|
|
|
4
4
|
declare const Mimics: {
|
|
5
5
|
ImageAuxiliaryJson: ImageAuxiliaryJsonSchema;
|
|
@@ -232,6 +232,22 @@ declare const Types: {
|
|
|
232
232
|
readonly ERROR: "Error";
|
|
233
233
|
readonly CRITICAL: "Critical";
|
|
234
234
|
};
|
|
235
|
+
ChartTypes: {
|
|
236
|
+
readonly VERTICAL_BAR: "VerticalBar";
|
|
237
|
+
readonly LINES: "Lines";
|
|
238
|
+
readonly CURVES: "Curves";
|
|
239
|
+
readonly LINES_SOLID: "LinesSolid";
|
|
240
|
+
readonly CURVES_SOLID: "CurvesSolid";
|
|
241
|
+
};
|
|
242
|
+
ShipTypes: {
|
|
243
|
+
readonly CARGO: "Cargo";
|
|
244
|
+
readonly FISHING: "Fishing";
|
|
245
|
+
readonly PASSENGER: "Passenger";
|
|
246
|
+
readonly OCEANOGRAPHIC: "Oceanographic";
|
|
247
|
+
readonly MILITARY: "Military";
|
|
248
|
+
readonly LIFEBOAT: "Lifeboat";
|
|
249
|
+
readonly TUG: "Tug";
|
|
250
|
+
};
|
|
235
251
|
UnitTypes: {
|
|
236
252
|
readonly AIM18: "Aim18";
|
|
237
253
|
readonly DIM36: "Dim36";
|
|
@@ -242,6 +258,11 @@ declare const Types: {
|
|
|
242
258
|
readonly SLIM: "Slim";
|
|
243
259
|
readonly TIM28: "Tim28";
|
|
244
260
|
};
|
|
261
|
+
UserTypes: {
|
|
262
|
+
readonly SEDNI_ADMIN: "sedni_admin";
|
|
263
|
+
readonly FLEET_ADMIN: "fleet_admin";
|
|
264
|
+
readonly USER: "user";
|
|
265
|
+
};
|
|
245
266
|
Mimics: {
|
|
246
267
|
MimicElementTypes: {
|
|
247
268
|
readonly IMAGE: "Image";
|
|
@@ -317,23 +338,23 @@ declare const Types: {
|
|
|
317
338
|
readonly OFFLINE: 10;
|
|
318
339
|
};
|
|
319
340
|
MimicAlarmStates: {
|
|
320
|
-
ALARM:
|
|
321
|
-
WARNING:
|
|
322
|
-
UNACKNOWLEDGED_ALARM:
|
|
323
|
-
UNACKNOWLEDGED_WARNING:
|
|
324
|
-
ACKNOWLEDGED_ALARM:
|
|
325
|
-
ACKNOWLEDGED_WARNING:
|
|
326
|
-
INHIBITED:
|
|
327
|
-
OFF_SCAN:
|
|
328
|
-
NORMAL:
|
|
329
|
-
OFFLINE:
|
|
341
|
+
readonly ALARM: "Alarm";
|
|
342
|
+
readonly WARNING: "Warning";
|
|
343
|
+
readonly UNACKNOWLEDGED_ALARM: "UnacknowledgedAlarm";
|
|
344
|
+
readonly UNACKNOWLEDGED_WARNING: "UnacknowledgedWarning";
|
|
345
|
+
readonly ACKNOWLEDGED_ALARM: "AcknowledgedAlarm";
|
|
346
|
+
readonly ACKNOWLEDGED_WARNING: "AcknowledgedWarning";
|
|
347
|
+
readonly INHIBITED: "Inhibited";
|
|
348
|
+
readonly OFF_SCAN: "OffScan";
|
|
349
|
+
readonly NORMAL: "Normal";
|
|
350
|
+
readonly OFFLINE: "Offline";
|
|
330
351
|
};
|
|
331
352
|
MimicControlStates: {
|
|
332
|
-
NO_VALUE:
|
|
333
|
-
LOCAL:
|
|
334
|
-
AUTOMATIC:
|
|
335
|
-
SEMI_AUTOMATIC:
|
|
336
|
-
UNDEFINED:
|
|
353
|
+
readonly NO_VALUE: "NoValue";
|
|
354
|
+
readonly LOCAL: "Local";
|
|
355
|
+
readonly AUTOMATIC: "Automatic";
|
|
356
|
+
readonly SEMI_AUTOMATIC: "SemiAuto";
|
|
357
|
+
readonly UNDEFINED: "Undefined";
|
|
337
358
|
};
|
|
338
359
|
ActivationModes: {
|
|
339
360
|
readonly ALARM: "Alarm";
|
package/dist/browser-index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { I as ImageAuxiliaryJsonSchema, L as LineAuxiliaryJsonSchema, a as LinkAuxiliaryJsonSchema, P as PolylineAuxiliaryJsonSchema, S as SquareAuxiliaryJsonSchema, T as TextAuxiliaryJsonSchema, C as ChannelJsonSchema, b as CompressorJsonSchema, D as DamperJsonSchema, c as DamperAutomatedJsonSchema, F as FanJsonSchema, d as PumpJsonSchema, e as PumpAutomatedJsonSchema, f as TankJsonSchema, V as ValveJsonSchema, g as ValveAutomatedJsonSchema, A as AlarmIndicatorJsonSchema, h as CommandJsonSchema, i as DialJsonSchema, j as DigitalJsonSchema, k as DisplayJsonSchema, l as DynamicTextJsonSchema, m as LevelBarJsonSchema, n as SliderJsonSchema, o as TextChannelJsonSchema, p as ToggleJsonSchema, q as CabinetJsonSchema, R as RepeaterJsonSchema, r as StationJsonSchema, U as UnitJsonSchema, s as AddedAlarmsJsonSchema, B as BackgroundJsonSchema, t as LineJsonSchema, u as LocalizedTextJsonSchema, v as LocationJsonSchema, w as LogicExpressionJsonSchema, x as LogicExpressionsJsonSchema, y as ScaleJsonSchema, z as TextAttributesJsonSchema, E as TitleJsonSchema, G as AutomaticSemiAutoJsonSchema, H as CommandsOpClJsonSchema, J as CommandsStartStopJsonSchema, K as ControlLockJsonSchema, M as FeedbackOpClJsonSchema, N as FeedbackRunningStoppedJsonSchema, O as OrderOpClJsonSchema, Q as OrderStartStopJsonSchema, W as RemoteLocalJsonSchema, X as TripResetJsonSchema, Y as BreakerJsonSchema, Z as BreakerPmsJsonSchema, _ as GeneratorJsonSchema, $ as GeneratorPmsJsonSchema, a0 as OperationModesJsonSchema, a1 as PriorityDataJsonSchema, a2 as PrioritiesJsonSchema, a3 as ShaftJsonSchema, a4 as ImageAuxiliaryRequestSchema, a5 as LineAuxiliaryRequestSchema, a6 as LinkAuxiliaryRequestSchema, a7 as PolylineAuxiliaryRequestSchema, a8 as SquareAuxiliaryRequestSchema, a9 as TextAuxiliaryRequestSchema, aa as ChannelRequestSchema, ab as CompressorRequestSchema, ac as DamperRequestSchema, ad as DamperAutomatedRequestSchema, ae as FanRequestSchema, af as PumpRequestSchema, ag as PumpAutomatedRequestSchema, ah as TankRequestSchema, ai as ValveRequestSchema, aj as ValveAutomatedRequestSchema, ak as AlarmIndicatorRequestSchema, al as CommandRequestSchema, am as DialRequestSchema, an as DigitalRequestSchema, ao as DisplayRequestSchema, ap as DynamicTextRequestSchema, aq as LevelBarRequestSchema, ar as SliderRequestSchema, as as TextChannelRequestSchema, at as ToggleRequestSchema, au as CabinetRequestSchema, av as RepeaterRequestSchema, aw as StationRequestSchema, ax as UnitRequestSchema, ay as AutomaticSemiAutoRequestSchema, az as CommandsOpClRequestSchema, aA as CommandsStartStopRequestSchema, aB as ControlLockRequestSchema, aC as FeedbackOpClRequestSchema, aD as FeedbackRunningStoppedRequestSchema, aE as OrderOpClRequestSchema, aF as OrderStartStopRequestSchema, aG as RemoteLocalRequestSchema, aH as TripResetRequestSchema, aI as BreakerRequestSchema, aJ as BreakerPmsRequestSchema, aK as GeneratorRequestSchema, aL as GeneratorPmsRequestSchema, aM as OperationModesRequestSchema, aN as PriorityDataRequestSchema, aO as PrioritiesRequestSchema, aP as ShaftRequestSchema, aQ as ImageAuxiliaryResponseSchema, aR as LineAuxiliaryResponseSchema, aS as LinkAuxiliaryResponseSchema, aT as PolylineAuxiliaryResponseSchema, aU as SquareAuxiliaryResponseSchema, aV as TextAuxiliaryResponseSchema, aW as CompressorResponseSchema, aX as DamperResponseSchema, aY as DamperAutomatedResponseSchema, aZ as FanResponseSchema, a_ as PumpResponseSchema, a$ as PumpAutomatedResponseSchema, b0 as TankResponseSchema, b1 as ValveResponseSchema, b2 as ValveAutomatedResponseSchema, b3 as AlarmIndicatorResponseSchema, b4 as CommandResponseSchema, b5 as DialResponseSchema, b6 as DigitalResponseSchema, b7 as DisplayResponseSchema, b8 as DynamicTextResponseSchema, b9 as LevelBarResponseSchema, ba as SliderResponseSchema, bb as TextChannelResponseSchema, bc as ToggleResponseSchema, bd as CabinetResponseSchema, be as RepeaterResponseSchema, bf as StationResponseSchema, bg as UnitResponseSchema, bh as BreakerResponseSchema, bi as BreakerPmsResponseSchema, bj as GeneratorResponseSchema, bk as GeneratorPmsResponseSchema, bl as OperationModesResponseSchema, bm as PrioritiesResponseSchema, bn as ShaftResponseSchema } from './
|
|
2
|
-
export { bo as ActivationMode, bp as AlarmPriority, bq as AlarmState, br as AlarmType, bs as AutoSemiAutoState, bt as CabinetDesign, bu as ChannelBaseType, bv as ChannelSpecificType, bw as
|
|
1
|
+
import { I as ImageAuxiliaryJsonSchema, L as LineAuxiliaryJsonSchema, a as LinkAuxiliaryJsonSchema, P as PolylineAuxiliaryJsonSchema, S as SquareAuxiliaryJsonSchema, T as TextAuxiliaryJsonSchema, C as ChannelJsonSchema, b as CompressorJsonSchema, D as DamperJsonSchema, c as DamperAutomatedJsonSchema, F as FanJsonSchema, d as PumpJsonSchema, e as PumpAutomatedJsonSchema, f as TankJsonSchema, V as ValveJsonSchema, g as ValveAutomatedJsonSchema, A as AlarmIndicatorJsonSchema, h as CommandJsonSchema, i as DialJsonSchema, j as DigitalJsonSchema, k as DisplayJsonSchema, l as DynamicTextJsonSchema, m as LevelBarJsonSchema, n as SliderJsonSchema, o as TextChannelJsonSchema, p as ToggleJsonSchema, q as CabinetJsonSchema, R as RepeaterJsonSchema, r as StationJsonSchema, U as UnitJsonSchema, s as AddedAlarmsJsonSchema, B as BackgroundJsonSchema, t as LineJsonSchema, u as LocalizedTextJsonSchema, v as LocationJsonSchema, w as LogicExpressionJsonSchema, x as LogicExpressionsJsonSchema, y as ScaleJsonSchema, z as TextAttributesJsonSchema, E as TitleJsonSchema, G as AutomaticSemiAutoJsonSchema, H as CommandsOpClJsonSchema, J as CommandsStartStopJsonSchema, K as ControlLockJsonSchema, M as FeedbackOpClJsonSchema, N as FeedbackRunningStoppedJsonSchema, O as OrderOpClJsonSchema, Q as OrderStartStopJsonSchema, W as RemoteLocalJsonSchema, X as TripResetJsonSchema, Y as BreakerJsonSchema, Z as BreakerPmsJsonSchema, _ as GeneratorJsonSchema, $ as GeneratorPmsJsonSchema, a0 as OperationModesJsonSchema, a1 as PriorityDataJsonSchema, a2 as PrioritiesJsonSchema, a3 as ShaftJsonSchema, a4 as ImageAuxiliaryRequestSchema, a5 as LineAuxiliaryRequestSchema, a6 as LinkAuxiliaryRequestSchema, a7 as PolylineAuxiliaryRequestSchema, a8 as SquareAuxiliaryRequestSchema, a9 as TextAuxiliaryRequestSchema, aa as ChannelRequestSchema, ab as CompressorRequestSchema, ac as DamperRequestSchema, ad as DamperAutomatedRequestSchema, ae as FanRequestSchema, af as PumpRequestSchema, ag as PumpAutomatedRequestSchema, ah as TankRequestSchema, ai as ValveRequestSchema, aj as ValveAutomatedRequestSchema, ak as AlarmIndicatorRequestSchema, al as CommandRequestSchema, am as DialRequestSchema, an as DigitalRequestSchema, ao as DisplayRequestSchema, ap as DynamicTextRequestSchema, aq as LevelBarRequestSchema, ar as SliderRequestSchema, as as TextChannelRequestSchema, at as ToggleRequestSchema, au as CabinetRequestSchema, av as RepeaterRequestSchema, aw as StationRequestSchema, ax as UnitRequestSchema, ay as AutomaticSemiAutoRequestSchema, az as CommandsOpClRequestSchema, aA as CommandsStartStopRequestSchema, aB as ControlLockRequestSchema, aC as FeedbackOpClRequestSchema, aD as FeedbackRunningStoppedRequestSchema, aE as OrderOpClRequestSchema, aF as OrderStartStopRequestSchema, aG as RemoteLocalRequestSchema, aH as TripResetRequestSchema, aI as BreakerRequestSchema, aJ as BreakerPmsRequestSchema, aK as GeneratorRequestSchema, aL as GeneratorPmsRequestSchema, aM as OperationModesRequestSchema, aN as PriorityDataRequestSchema, aO as PrioritiesRequestSchema, aP as ShaftRequestSchema, aQ as ImageAuxiliaryResponseSchema, aR as LineAuxiliaryResponseSchema, aS as LinkAuxiliaryResponseSchema, aT as PolylineAuxiliaryResponseSchema, aU as SquareAuxiliaryResponseSchema, aV as TextAuxiliaryResponseSchema, aW as CompressorResponseSchema, aX as DamperResponseSchema, aY as DamperAutomatedResponseSchema, aZ as FanResponseSchema, a_ as PumpResponseSchema, a$ as PumpAutomatedResponseSchema, b0 as TankResponseSchema, b1 as ValveResponseSchema, b2 as ValveAutomatedResponseSchema, b3 as AlarmIndicatorResponseSchema, b4 as CommandResponseSchema, b5 as DialResponseSchema, b6 as DigitalResponseSchema, b7 as DisplayResponseSchema, b8 as DynamicTextResponseSchema, b9 as LevelBarResponseSchema, ba as SliderResponseSchema, bb as TextChannelResponseSchema, bc as ToggleResponseSchema, bd as CabinetResponseSchema, be as RepeaterResponseSchema, bf as StationResponseSchema, bg as UnitResponseSchema, bh as BreakerResponseSchema, bi as BreakerPmsResponseSchema, bj as GeneratorResponseSchema, bk as GeneratorPmsResponseSchema, bl as OperationModesResponseSchema, bm as PrioritiesResponseSchema, bn as ShaftResponseSchema } from './user.types-CBlsVzYC.js';
|
|
2
|
+
export { bo as ActivationMode, bp as AlarmPriority, bq as AlarmState, br as AlarmType, bs as AutoSemiAutoState, bt as CabinetDesign, bu as ChannelBaseType, bv as ChannelSpecificType, bw as ChartType, bx as CloudAlarmState, by as CompressorDesign, bz as DiamarAlarmState, bA as DigitalAlarmState, bB as DigitalState, bC as EventCategory, bD as EventCriticality, bE as FanDesign, bF as FanDirection, bG as FanRunState, bH as FanType, bI as InfoLocation, bJ as LedType, bK as LevelBarOrientation, bL as LineRequestSchema, bM as LinkDesign, bN as MarkType, bO as MimicAlarmState, bP as MimicControlState, bQ as MimicElementType, bR as OpClState, bS as OperationModeState, bT as RemoteLocalState, bU as RepeaterDesign, bV as RunningStoppedState, bW as ScalePosition, bX as ShipType, bY as SliderOrientation, bZ as StationDesign, b_ as TextAnchorPoint, b$ as TitleAlign, c0 as UnitDesign, c1 as UnitType, c2 as UserType, c3 as ValueType, c4 as ValveDesign, c5 as ZDepth } from './user.types-CBlsVzYC.js';
|
|
3
3
|
|
|
4
4
|
declare const Mimics: {
|
|
5
5
|
ImageAuxiliaryJson: ImageAuxiliaryJsonSchema;
|
|
@@ -232,6 +232,22 @@ declare const Types: {
|
|
|
232
232
|
readonly ERROR: "Error";
|
|
233
233
|
readonly CRITICAL: "Critical";
|
|
234
234
|
};
|
|
235
|
+
ChartTypes: {
|
|
236
|
+
readonly VERTICAL_BAR: "VerticalBar";
|
|
237
|
+
readonly LINES: "Lines";
|
|
238
|
+
readonly CURVES: "Curves";
|
|
239
|
+
readonly LINES_SOLID: "LinesSolid";
|
|
240
|
+
readonly CURVES_SOLID: "CurvesSolid";
|
|
241
|
+
};
|
|
242
|
+
ShipTypes: {
|
|
243
|
+
readonly CARGO: "Cargo";
|
|
244
|
+
readonly FISHING: "Fishing";
|
|
245
|
+
readonly PASSENGER: "Passenger";
|
|
246
|
+
readonly OCEANOGRAPHIC: "Oceanographic";
|
|
247
|
+
readonly MILITARY: "Military";
|
|
248
|
+
readonly LIFEBOAT: "Lifeboat";
|
|
249
|
+
readonly TUG: "Tug";
|
|
250
|
+
};
|
|
235
251
|
UnitTypes: {
|
|
236
252
|
readonly AIM18: "Aim18";
|
|
237
253
|
readonly DIM36: "Dim36";
|
|
@@ -242,6 +258,11 @@ declare const Types: {
|
|
|
242
258
|
readonly SLIM: "Slim";
|
|
243
259
|
readonly TIM28: "Tim28";
|
|
244
260
|
};
|
|
261
|
+
UserTypes: {
|
|
262
|
+
readonly SEDNI_ADMIN: "sedni_admin";
|
|
263
|
+
readonly FLEET_ADMIN: "fleet_admin";
|
|
264
|
+
readonly USER: "user";
|
|
265
|
+
};
|
|
245
266
|
Mimics: {
|
|
246
267
|
MimicElementTypes: {
|
|
247
268
|
readonly IMAGE: "Image";
|
|
@@ -317,23 +338,23 @@ declare const Types: {
|
|
|
317
338
|
readonly OFFLINE: 10;
|
|
318
339
|
};
|
|
319
340
|
MimicAlarmStates: {
|
|
320
|
-
ALARM:
|
|
321
|
-
WARNING:
|
|
322
|
-
UNACKNOWLEDGED_ALARM:
|
|
323
|
-
UNACKNOWLEDGED_WARNING:
|
|
324
|
-
ACKNOWLEDGED_ALARM:
|
|
325
|
-
ACKNOWLEDGED_WARNING:
|
|
326
|
-
INHIBITED:
|
|
327
|
-
OFF_SCAN:
|
|
328
|
-
NORMAL:
|
|
329
|
-
OFFLINE:
|
|
341
|
+
readonly ALARM: "Alarm";
|
|
342
|
+
readonly WARNING: "Warning";
|
|
343
|
+
readonly UNACKNOWLEDGED_ALARM: "UnacknowledgedAlarm";
|
|
344
|
+
readonly UNACKNOWLEDGED_WARNING: "UnacknowledgedWarning";
|
|
345
|
+
readonly ACKNOWLEDGED_ALARM: "AcknowledgedAlarm";
|
|
346
|
+
readonly ACKNOWLEDGED_WARNING: "AcknowledgedWarning";
|
|
347
|
+
readonly INHIBITED: "Inhibited";
|
|
348
|
+
readonly OFF_SCAN: "OffScan";
|
|
349
|
+
readonly NORMAL: "Normal";
|
|
350
|
+
readonly OFFLINE: "Offline";
|
|
330
351
|
};
|
|
331
352
|
MimicControlStates: {
|
|
332
|
-
NO_VALUE:
|
|
333
|
-
LOCAL:
|
|
334
|
-
AUTOMATIC:
|
|
335
|
-
SEMI_AUTOMATIC:
|
|
336
|
-
UNDEFINED:
|
|
353
|
+
readonly NO_VALUE: "NoValue";
|
|
354
|
+
readonly LOCAL: "Local";
|
|
355
|
+
readonly AUTOMATIC: "Automatic";
|
|
356
|
+
readonly SEMI_AUTOMATIC: "SemiAuto";
|
|
357
|
+
readonly UNDEFINED: "Undefined";
|
|
337
358
|
};
|
|
338
359
|
ActivationModes: {
|
|
339
360
|
readonly ALARM: "Alarm";
|
package/dist/browser-index.js
CHANGED
|
@@ -25,6 +25,7 @@ import {
|
|
|
25
25
|
ChannelJson,
|
|
26
26
|
ChannelRequest,
|
|
27
27
|
ChannelSpecificTypes,
|
|
28
|
+
ChartTypes,
|
|
28
29
|
CloudAlarmStates,
|
|
29
30
|
CommandJson,
|
|
30
31
|
CommandRequest,
|
|
@@ -140,6 +141,7 @@ import {
|
|
|
140
141
|
ShaftJson,
|
|
141
142
|
ShaftRequest,
|
|
142
143
|
ShaftResponse,
|
|
144
|
+
ShipTypes,
|
|
143
145
|
SliderJson,
|
|
144
146
|
SliderOrientations,
|
|
145
147
|
SliderRequest,
|
|
@@ -174,6 +176,7 @@ import {
|
|
|
174
176
|
UnitRequest,
|
|
175
177
|
UnitResponse,
|
|
176
178
|
UnitTypes,
|
|
179
|
+
UserTypes,
|
|
177
180
|
ValueTypes,
|
|
178
181
|
ValveAutomatedJson,
|
|
179
182
|
ValveAutomatedRequest,
|
|
@@ -183,7 +186,7 @@ import {
|
|
|
183
186
|
ValveRequest,
|
|
184
187
|
ValveResponse,
|
|
185
188
|
ZDepths
|
|
186
|
-
} from "./chunk-
|
|
189
|
+
} from "./chunk-72OOHARB.js";
|
|
187
190
|
|
|
188
191
|
// app/browser-index.ts
|
|
189
192
|
var Mimics = {
|
|
@@ -398,7 +401,10 @@ var Types = {
|
|
|
398
401
|
ChannelSpecificTypes,
|
|
399
402
|
EventCategories,
|
|
400
403
|
EventCriticalities,
|
|
404
|
+
ChartTypes,
|
|
405
|
+
ShipTypes,
|
|
401
406
|
UnitTypes,
|
|
407
|
+
UserTypes,
|
|
402
408
|
Mimics: MimicsTypes
|
|
403
409
|
};
|
|
404
410
|
export {
|