@smartdcc/duis-templates 0.2.1 → 0.3.0
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 +25 -0
- package/dist/gbcs-mapping-table.json +828 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/load.d.ts +9 -0
- package/dist/load.d.ts.map +1 -1
- package/dist/load.js +9 -5
- package/dist/load.js.map +1 -1
- package/dist/search.d.ts +12 -2
- package/dist/search.d.ts.map +1 -1
- package/dist/search.js +33 -2
- package/dist/search.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -179,6 +179,31 @@ The structure of the result set is described in the Fuse.js documentation. Of
|
|
|
179
179
|
interest, the `matches` item shows which key in the Template was matched and the
|
|
180
180
|
position in the string too.
|
|
181
181
|
|
|
182
|
+
## Lookup GBCS usecase details
|
|
183
|
+
|
|
184
|
+
It is possible to map a use case code to a textual names directly without the
|
|
185
|
+
service request. This is exposed as:
|
|
186
|
+
|
|
187
|
+
```ts
|
|
188
|
+
import { lookupGBCS } from '@smartdcc/duis-templates'
|
|
189
|
+
|
|
190
|
+
console.log(lookupGBCS('ECS17b'))
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
Which might return:
|
|
194
|
+
|
|
195
|
+
```js
|
|
196
|
+
{
|
|
197
|
+
'Use Case Name': 'Read Import Energy / Consumption Registers',
|
|
198
|
+
'Use Case Title': 'ECS17b Read ESME Energy Registers (Import Energy)',
|
|
199
|
+
'Message Type': 'SME.C.NC',
|
|
200
|
+
'Use Case Description': 'This Use Case is for reading the ESME import energy registers / GSME consumption registers.',
|
|
201
|
+
'Remote Party or HAN Message': 'Remote Party',
|
|
202
|
+
'Service Reference': '4.1',
|
|
203
|
+
Code: 'ECS17b'
|
|
204
|
+
}
|
|
205
|
+
```
|
|
206
|
+
|
|
182
207
|
## Contributing
|
|
183
208
|
|
|
184
209
|
Contributions are welcome!
|