jooby-codec 2.5.1 → 2.7.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/dist/analog/CommandBinaryBuffer.js +6 -11
- package/dist/analog/CommandBinaryBuffer.js.map +1 -1
- package/dist/analog/commands/downlink/GetArchiveDays.js +3 -3
- package/dist/analog/commands/downlink/GetArchiveDays.js.map +1 -1
- package/dist/analog/commands/downlink/GetArchiveDaysMC.d.ts +1 -1
- package/dist/analog/commands/downlink/GetArchiveDaysMC.js +3 -3
- package/dist/analog/commands/downlink/GetArchiveDaysMC.js.map +1 -1
- package/dist/analog/commands/downlink/GetArchiveHours.js +4 -4
- package/dist/analog/commands/downlink/GetArchiveHours.js.map +1 -1
- package/dist/analog/commands/downlink/GetArchiveHoursMC.js +4 -4
- package/dist/analog/commands/downlink/GetArchiveHoursMC.js.map +1 -1
- package/dist/analog/commands/downlink/GetExAbsArchiveDaysMC.js +3 -3
- package/dist/analog/commands/downlink/GetExAbsArchiveDaysMC.js.map +1 -1
- package/dist/analog/commands/downlink/GetExAbsArchiveHoursMC.js +1 -1
- package/dist/analog/commands/downlink/GetExAbsArchiveHoursMC.js.map +1 -1
- package/dist/analog/commands/uplink/Day.js +1 -1
- package/dist/analog/commands/uplink/Day.js.map +1 -1
- package/dist/analog/commands/uplink/DayMC.js +3 -5
- package/dist/analog/commands/uplink/DayMC.js.map +1 -1
- package/dist/analog/commands/uplink/ExAbsDayMC.js +2 -2
- package/dist/analog/commands/uplink/ExAbsDayMC.js.map +1 -1
- package/dist/analog/commands/uplink/ExAbsHourMC.js +5 -6
- package/dist/analog/commands/uplink/ExAbsHourMC.js.map +1 -1
- package/dist/analog/commands/uplink/GetArchiveDaysMCResponse.js +2 -2
- package/dist/analog/commands/uplink/GetArchiveDaysMCResponse.js.map +1 -1
- package/dist/analog/commands/uplink/GetArchiveDaysResponse.js +2 -2
- package/dist/analog/commands/uplink/GetArchiveDaysResponse.js.map +1 -1
- package/dist/analog/commands/uplink/GetArchiveHoursMCResponse.js +2 -2
- package/dist/analog/commands/uplink/GetExAbsArchiveHoursMCResponse.js +5 -5
- package/dist/analog/commands/uplink/GetExAbsArchiveHoursMCResponse.js.map +1 -1
- package/dist/analog/commands/uplink/HourMC.js +5 -28
- package/dist/analog/commands/uplink/HourMC.js.map +1 -1
- package/dist/obis-observer/commands/downlink/GetArchiveState.d.ts +16 -0
- package/dist/obis-observer/commands/downlink/GetArchiveState.js +42 -0
- package/dist/obis-observer/commands/downlink/GetArchiveState.js.map +1 -0
- package/dist/obis-observer/commands/downlink/GetDate.d.ts +13 -0
- package/dist/obis-observer/commands/downlink/GetDate.js +39 -0
- package/dist/obis-observer/commands/downlink/GetDate.js.map +1 -0
- package/dist/obis-observer/commands/downlink/GetLorawanState.d.ts +13 -0
- package/dist/obis-observer/commands/downlink/GetLorawanState.js +39 -0
- package/dist/obis-observer/commands/downlink/GetLorawanState.js.map +1 -0
- package/dist/obis-observer/commands/downlink/GetReadoutState.d.ts +13 -0
- package/dist/obis-observer/commands/downlink/GetReadoutState.js +39 -0
- package/dist/obis-observer/commands/downlink/GetReadoutState.js.map +1 -0
- package/dist/obis-observer/commands/downlink/index.d.ts +4 -0
- package/dist/obis-observer/commands/downlink/index.js +4 -0
- package/dist/obis-observer/commands/downlink/index.js.map +1 -1
- package/dist/obis-observer/commands/uplink/GetArchiveStateResponse.d.ts +19 -0
- package/dist/obis-observer/commands/uplink/GetArchiveStateResponse.js +58 -0
- package/dist/obis-observer/commands/uplink/GetArchiveStateResponse.js.map +1 -0
- package/dist/obis-observer/commands/uplink/GetDateResponse.d.ts +18 -0
- package/dist/obis-observer/commands/uplink/GetDateResponse.js +47 -0
- package/dist/obis-observer/commands/uplink/GetDateResponse.js.map +1 -0
- package/dist/obis-observer/commands/uplink/GetLorawanStateResponse.d.ts +22 -0
- package/dist/obis-observer/commands/uplink/GetLorawanStateResponse.js +62 -0
- package/dist/obis-observer/commands/uplink/GetLorawanStateResponse.js.map +1 -0
- package/dist/obis-observer/commands/uplink/GetReadoutStateResponse.d.ts +27 -0
- package/dist/obis-observer/commands/uplink/GetReadoutStateResponse.js +77 -0
- package/dist/obis-observer/commands/uplink/GetReadoutStateResponse.js.map +1 -0
- package/dist/obis-observer/commands/uplink/index.d.ts +4 -0
- package/dist/obis-observer/commands/uplink/index.js +4 -0
- package/dist/obis-observer/commands/uplink/index.js.map +1 -1
- package/dist/obis-observer/constants/index.d.ts +1 -0
- package/dist/obis-observer/constants/index.js +1 -0
- package/dist/obis-observer/constants/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import Command from '../../Command.js';
|
|
2
|
+
import CommandBinaryBuffer, { REQUEST_ID_SIZE } from '../../CommandBinaryBuffer.js';
|
|
3
|
+
import { UPLINK } from '../../constants/directions.js';
|
|
4
|
+
const COMMAND_ID = 0x25;
|
|
5
|
+
const examples = [
|
|
6
|
+
{
|
|
7
|
+
name: 'simple response',
|
|
8
|
+
parameters: {
|
|
9
|
+
requestId: 8,
|
|
10
|
+
downlinkQuality: 1,
|
|
11
|
+
rssi: 193,
|
|
12
|
+
snr: 5,
|
|
13
|
+
deviceMargin: 6,
|
|
14
|
+
gateMargin: 0,
|
|
15
|
+
resetFlag: 0,
|
|
16
|
+
senderCollision: 0
|
|
17
|
+
},
|
|
18
|
+
hex: { header: '25', body: '08 01 c1 05 06 00 00 00' }
|
|
19
|
+
}
|
|
20
|
+
];
|
|
21
|
+
class GetLorawanStateResponse extends Command {
|
|
22
|
+
constructor(parameters) {
|
|
23
|
+
super();
|
|
24
|
+
this.parameters = parameters;
|
|
25
|
+
this.size = REQUEST_ID_SIZE + 7;
|
|
26
|
+
}
|
|
27
|
+
static fromBytes(data) {
|
|
28
|
+
const buffer = new CommandBinaryBuffer(data);
|
|
29
|
+
return new GetLorawanStateResponse({
|
|
30
|
+
requestId: buffer.getUint8(),
|
|
31
|
+
downlinkQuality: buffer.getUint8(),
|
|
32
|
+
rssi: buffer.getUint8(),
|
|
33
|
+
snr: buffer.getUint8(),
|
|
34
|
+
deviceMargin: buffer.getUint8(),
|
|
35
|
+
gateMargin: buffer.getUint8(),
|
|
36
|
+
resetFlag: buffer.getUint8(),
|
|
37
|
+
senderCollision: buffer.getUint8()
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
toBytes() {
|
|
41
|
+
if (typeof this.size !== 'number') {
|
|
42
|
+
throw new Error('unknown or invalid size');
|
|
43
|
+
}
|
|
44
|
+
const buffer = new CommandBinaryBuffer(this.size);
|
|
45
|
+
const { parameters } = this;
|
|
46
|
+
buffer.setUint8(parameters.requestId);
|
|
47
|
+
buffer.setUint8(parameters.downlinkQuality);
|
|
48
|
+
buffer.setUint8(parameters.rssi);
|
|
49
|
+
buffer.setUint8(parameters.snr);
|
|
50
|
+
buffer.setUint8(parameters.deviceMargin);
|
|
51
|
+
buffer.setUint8(parameters.gateMargin);
|
|
52
|
+
buffer.setUint8(parameters.resetFlag);
|
|
53
|
+
buffer.setUint8(parameters.senderCollision);
|
|
54
|
+
return Command.toBytes(COMMAND_ID, buffer.toUint8Array());
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
GetLorawanStateResponse.id = COMMAND_ID;
|
|
58
|
+
GetLorawanStateResponse.directionType = UPLINK;
|
|
59
|
+
GetLorawanStateResponse.examples = examples;
|
|
60
|
+
GetLorawanStateResponse.hasParameters = true;
|
|
61
|
+
export default GetLorawanStateResponse;
|
|
62
|
+
//# sourceMappingURL=GetLorawanStateResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetLorawanStateResponse.js","sourceRoot":"","sources":["../../../../src/obis-observer/commands/uplink/GetLorawanStateResponse.ts"],"names":[],"mappings":"AAAA,OAAO,OAA8B,MAAM,kBAAkB,CAAC;AAC9D,OAAO,mBAAmB,EAAE,EAAC,eAAe,EAAqB,MAAM,8BAA8B,CAAC;AACtG,OAAO,EAAC,MAAM,EAAC,MAAM,+BAA+B,CAAC;AAoBrD,MAAM,UAAU,GAAG,IAAI,CAAC;AAExB,MAAM,QAAQ,GAAwB;IAClC;QACI,IAAI,EAAE,iBAAiB;QACvB,UAAU,EAAE;YACR,SAAS,EAAE,CAAC;YACZ,eAAe,EAAE,CAAC;YAClB,IAAI,EAAE,GAAG;YACT,GAAG,EAAE,CAAC;YACN,YAAY,EAAE,CAAC;YACf,UAAU,EAAE,CAAC;YACb,SAAS,EAAE,CAAC;YACZ,eAAe,EAAE,CAAC;SACrB;QACD,GAAG,EAAE,EAAC,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,yBAAyB,EAAC;KACvD;CACJ,CAAC;AA+BF,MAAM,uBAAwB,SAAQ,OAAO;IACzC,YAAqB,UAA8C;QAC/D,KAAK,EAAE,CAAC;QADS,eAAU,GAAV,UAAU,CAAoC;QAI/D,IAAI,CAAC,IAAI,GAAG,eAAe,GAAG,CAAC,CAAC;IACpC,CAAC;IAaD,MAAM,CAAC,SAAS,CAAG,IAAgB;QAC/B,MAAM,MAAM,GAAG,IAAI,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAE7C,OAAO,IAAI,uBAAuB,CAAC;YAC/B,SAAS,EAAE,MAAM,CAAC,QAAQ,EAAE;YAC5B,eAAe,EAAE,MAAM,CAAC,QAAQ,EAAE;YAClC,IAAI,EAAE,MAAM,CAAC,QAAQ,EAAE;YACvB,GAAG,EAAE,MAAM,CAAC,QAAQ,EAAE;YACtB,YAAY,EAAE,MAAM,CAAC,QAAQ,EAAE;YAC/B,UAAU,EAAE,MAAM,CAAC,QAAQ,EAAE;YAC7B,SAAS,EAAE,MAAM,CAAC,QAAQ,EAAE;YAC5B,eAAe,EAAE,MAAM,CAAC,QAAQ,EAAE;SACrC,CAAC,CAAC;IACP,CAAC;IAGD,OAAO;QACH,IAAK,OAAO,IAAI,CAAC,IAAI,KAAK,QAAQ,EAAG;YACjC,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;SAC9C;QAED,MAAM,MAAM,GAAG,IAAI,mBAAmB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAClD,MAAM,EAAC,UAAU,EAAC,GAAG,IAAI,CAAC;QAE1B,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;QACtC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC;QAC5C,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACjC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;QAChC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC;QACzC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;QACvC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;QACtC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC;QAE5C,OAAO,OAAO,CAAC,OAAO,CAAC,UAAU,EAAE,MAAM,CAAC,YAAY,EAAE,CAAC,CAAC;IAC9D,CAAC;;AA5Ce,0BAAE,GAAG,UAAU,CAAC;AAEhB,qCAAa,GAAG,MAAM,CAAC;AAEvB,gCAAQ,GAAG,QAAQ,CAAC;AAEpB,qCAAa,GAAG,IAAI,CAAC;AA0CzC,eAAe,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import Command, { TCommandExampleList } from '../../Command.js';
|
|
2
|
+
import { ICommandParameters } from '../../CommandBinaryBuffer.js';
|
|
3
|
+
interface IGetReadoutStateResponseParameters extends ICommandParameters {
|
|
4
|
+
lastSuccessfulTime: number;
|
|
5
|
+
lastFailedTime: number;
|
|
6
|
+
readoutAttempts: number;
|
|
7
|
+
successfulReadoutAttempts: number;
|
|
8
|
+
readoutRepetitions: number;
|
|
9
|
+
waitNextSymbolErrors: number;
|
|
10
|
+
waitIdErrors: number;
|
|
11
|
+
waitNextStateErrors: number;
|
|
12
|
+
wrongBccErrors: number;
|
|
13
|
+
parityErrors: number;
|
|
14
|
+
frameErrors: number;
|
|
15
|
+
overrunErrors: number;
|
|
16
|
+
}
|
|
17
|
+
declare class GetReadoutStateResponse extends Command {
|
|
18
|
+
parameters: IGetReadoutStateResponseParameters;
|
|
19
|
+
constructor(parameters: IGetReadoutStateResponseParameters);
|
|
20
|
+
static readonly id = 39;
|
|
21
|
+
static readonly directionType = 2;
|
|
22
|
+
static readonly examples: TCommandExampleList;
|
|
23
|
+
static readonly hasParameters = true;
|
|
24
|
+
static fromBytes(data: Uint8Array): GetReadoutStateResponse;
|
|
25
|
+
toBytes(): Uint8Array;
|
|
26
|
+
}
|
|
27
|
+
export default GetReadoutStateResponse;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import Command from '../../Command.js';
|
|
2
|
+
import CommandBinaryBuffer, { REQUEST_ID_SIZE } from '../../CommandBinaryBuffer.js';
|
|
3
|
+
import { UPLINK } from '../../constants/directions.js';
|
|
4
|
+
const COMMAND_ID = 0x27;
|
|
5
|
+
const examples = [
|
|
6
|
+
{
|
|
7
|
+
name: 'simple response',
|
|
8
|
+
parameters: {
|
|
9
|
+
requestId: 3,
|
|
10
|
+
lastSuccessfulTime: 127,
|
|
11
|
+
lastFailedTime: 193,
|
|
12
|
+
readoutAttempts: 14,
|
|
13
|
+
successfulReadoutAttempts: 12,
|
|
14
|
+
readoutRepetitions: 2,
|
|
15
|
+
waitNextSymbolErrors: 0,
|
|
16
|
+
waitIdErrors: 0,
|
|
17
|
+
waitNextStateErrors: 0,
|
|
18
|
+
wrongBccErrors: 0,
|
|
19
|
+
parityErrors: 0,
|
|
20
|
+
frameErrors: 0,
|
|
21
|
+
overrunErrors: 0
|
|
22
|
+
},
|
|
23
|
+
hex: { header: '27', body: '03 00 00 00 7f 00 00 00 c1 00 0e 00 0c 00 02 00 00 00 00 00 00 00' }
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
class GetReadoutStateResponse extends Command {
|
|
27
|
+
constructor(parameters) {
|
|
28
|
+
super();
|
|
29
|
+
this.parameters = parameters;
|
|
30
|
+
this.size = REQUEST_ID_SIZE + 4 + 4 + 2 + 2 + 2 + 7;
|
|
31
|
+
}
|
|
32
|
+
static fromBytes(data) {
|
|
33
|
+
const buffer = new CommandBinaryBuffer(data);
|
|
34
|
+
return new GetReadoutStateResponse({
|
|
35
|
+
requestId: buffer.getUint8(),
|
|
36
|
+
lastSuccessfulTime: buffer.getUint32(),
|
|
37
|
+
lastFailedTime: buffer.getUint32(),
|
|
38
|
+
readoutAttempts: buffer.getUint16(),
|
|
39
|
+
successfulReadoutAttempts: buffer.getUint16(),
|
|
40
|
+
readoutRepetitions: buffer.getUint16(),
|
|
41
|
+
waitNextSymbolErrors: buffer.getUint8(),
|
|
42
|
+
waitIdErrors: buffer.getUint8(),
|
|
43
|
+
waitNextStateErrors: buffer.getUint8(),
|
|
44
|
+
wrongBccErrors: buffer.getUint8(),
|
|
45
|
+
parityErrors: buffer.getUint8(),
|
|
46
|
+
frameErrors: buffer.getUint8(),
|
|
47
|
+
overrunErrors: buffer.getUint8()
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
toBytes() {
|
|
51
|
+
if (typeof this.size !== 'number') {
|
|
52
|
+
throw new Error('unknown or invalid size');
|
|
53
|
+
}
|
|
54
|
+
const buffer = new CommandBinaryBuffer(this.size);
|
|
55
|
+
const { parameters } = this;
|
|
56
|
+
buffer.setUint8(parameters.requestId);
|
|
57
|
+
buffer.setUint32(parameters.lastSuccessfulTime);
|
|
58
|
+
buffer.setUint32(parameters.lastFailedTime);
|
|
59
|
+
buffer.setUint16(parameters.readoutAttempts);
|
|
60
|
+
buffer.setUint16(parameters.successfulReadoutAttempts);
|
|
61
|
+
buffer.setUint16(parameters.readoutRepetitions);
|
|
62
|
+
buffer.setUint8(parameters.waitNextSymbolErrors);
|
|
63
|
+
buffer.setUint8(parameters.waitIdErrors);
|
|
64
|
+
buffer.setUint8(parameters.waitNextStateErrors);
|
|
65
|
+
buffer.setUint8(parameters.wrongBccErrors);
|
|
66
|
+
buffer.setUint8(parameters.parityErrors);
|
|
67
|
+
buffer.setUint8(parameters.frameErrors);
|
|
68
|
+
buffer.setUint8(parameters.overrunErrors);
|
|
69
|
+
return Command.toBytes(COMMAND_ID, buffer.toUint8Array());
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
GetReadoutStateResponse.id = COMMAND_ID;
|
|
73
|
+
GetReadoutStateResponse.directionType = UPLINK;
|
|
74
|
+
GetReadoutStateResponse.examples = examples;
|
|
75
|
+
GetReadoutStateResponse.hasParameters = true;
|
|
76
|
+
export default GetReadoutStateResponse;
|
|
77
|
+
//# sourceMappingURL=GetReadoutStateResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetReadoutStateResponse.js","sourceRoot":"","sources":["../../../../src/obis-observer/commands/uplink/GetReadoutStateResponse.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
export { default as AddShortNameProfileResponse } from './AddShortNameProfileResponse.js';
|
|
2
2
|
export { default as GetArchiveProfileResponse } from './GetArchiveProfileResponse.js';
|
|
3
|
+
export { default as GetArchiveStateResponse } from './GetArchiveStateResponse.js';
|
|
3
4
|
export { default as GetContentByObisResponse } from './GetContentByObisResponse.js';
|
|
4
5
|
export { default as GetContentByShortNameResponse } from './GetContentByShortNameResponse.js';
|
|
5
6
|
export { default as GetContentByShortNameStringResponse } from './GetContentByShortNameStringResponse.js';
|
|
7
|
+
export { default as GetDateResponse } from './GetDateResponse.js';
|
|
6
8
|
export { default as GetDeviceInfoResponse } from './GetDeviceInfoResponse.js';
|
|
7
9
|
export { default as GetLorawanInfoResponse } from './GetLorawanInfoResponse.js';
|
|
10
|
+
export { default as GetLorawanStateResponse } from './GetLorawanStateResponse.js';
|
|
11
|
+
export { default as GetReadoutStateResponse } from './GetReadoutStateResponse.js';
|
|
8
12
|
export { default as GetShortNameInfoResponse } from './GetShortNameInfoResponse.js';
|
|
9
13
|
export { default as GetShortNameProfileResponse } from './GetShortNameProfileResponse.js';
|
|
10
14
|
export { default as GetShortNamesResponse } from './GetShortNamesResponse.js';
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
export { default as AddShortNameProfileResponse } from './AddShortNameProfileResponse.js';
|
|
2
2
|
export { default as GetArchiveProfileResponse } from './GetArchiveProfileResponse.js';
|
|
3
|
+
export { default as GetArchiveStateResponse } from './GetArchiveStateResponse.js';
|
|
3
4
|
export { default as GetContentByObisResponse } from './GetContentByObisResponse.js';
|
|
4
5
|
export { default as GetContentByShortNameResponse } from './GetContentByShortNameResponse.js';
|
|
5
6
|
export { default as GetContentByShortNameStringResponse } from './GetContentByShortNameStringResponse.js';
|
|
7
|
+
export { default as GetDateResponse } from './GetDateResponse.js';
|
|
6
8
|
export { default as GetDeviceInfoResponse } from './GetDeviceInfoResponse.js';
|
|
7
9
|
export { default as GetLorawanInfoResponse } from './GetLorawanInfoResponse.js';
|
|
10
|
+
export { default as GetLorawanStateResponse } from './GetLorawanStateResponse.js';
|
|
11
|
+
export { default as GetReadoutStateResponse } from './GetReadoutStateResponse.js';
|
|
8
12
|
export { default as GetShortNameInfoResponse } from './GetShortNameInfoResponse.js';
|
|
9
13
|
export { default as GetShortNameProfileResponse } from './GetShortNameProfileResponse.js';
|
|
10
14
|
export { default as GetShortNamesResponse } from './GetShortNamesResponse.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/obis-observer/commands/uplink/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAC,OAAO,IAAI,2BAA2B,EAAC,MAAM,kCAAkC,CAAC;AACxF,OAAO,EAAC,OAAO,IAAI,yBAAyB,EAAC,MAAM,gCAAgC,CAAC;AACpF,OAAO,EAAC,OAAO,IAAI,wBAAwB,EAAC,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAC,OAAO,IAAI,6BAA6B,EAAC,MAAM,oCAAoC,CAAC;AAC5F,OAAO,EAAC,OAAO,IAAI,mCAAmC,EAAC,MAAM,0CAA0C,CAAC;AACxG,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,sBAAsB,EAAC,MAAM,6BAA6B,CAAC;AAC9E,OAAO,EAAC,OAAO,IAAI,wBAAwB,EAAC,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAC,OAAO,IAAI,2BAA2B,EAAC,MAAM,kCAAkC,CAAC;AACxF,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,iBAAiB,EAAC,MAAM,wBAAwB,CAAC;AACpE,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,cAAc,EAAC,MAAM,qBAAqB,CAAC;AAC9D,OAAO,EAAC,OAAO,IAAI,8BAA8B,EAAC,MAAM,qCAAqC,CAAC;AAC9F,OAAO,EAAC,OAAO,IAAI,yBAAyB,EAAC,MAAM,gCAAgC,CAAC;AACpF,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,oBAAoB,EAAC,MAAM,2BAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/obis-observer/commands/uplink/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAC,OAAO,IAAI,2BAA2B,EAAC,MAAM,kCAAkC,CAAC;AACxF,OAAO,EAAC,OAAO,IAAI,yBAAyB,EAAC,MAAM,gCAAgC,CAAC;AACpF,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,wBAAwB,EAAC,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAC,OAAO,IAAI,6BAA6B,EAAC,MAAM,oCAAoC,CAAC;AAC5F,OAAO,EAAC,OAAO,IAAI,mCAAmC,EAAC,MAAM,0CAA0C,CAAC;AACxG,OAAO,EAAC,OAAO,IAAI,eAAe,EAAC,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,sBAAsB,EAAC,MAAM,6BAA6B,CAAC;AAC9E,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,wBAAwB,EAAC,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAC,OAAO,IAAI,2BAA2B,EAAC,MAAM,kCAAkC,CAAC;AACxF,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,iBAAiB,EAAC,MAAM,wBAAwB,CAAC;AACpE,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,cAAc,EAAC,MAAM,qBAAqB,CAAC;AAC9D,OAAO,EAAC,OAAO,IAAI,8BAA8B,EAAC,MAAM,qCAAqC,CAAC;AAC9F,OAAO,EAAC,OAAO,IAAI,yBAAyB,EAAC,MAAM,gCAAgC,CAAC;AACpF,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,oBAAoB,EAAC,MAAM,2BAA2B,CAAC"}
|
|
@@ -4,4 +4,5 @@ export * as deviceClasses from './deviceClasses.js';
|
|
|
4
4
|
export * as directions from './directions.js';
|
|
5
5
|
export * as parityTypes from './parityTypes.js';
|
|
6
6
|
export * as resultCodes from './resultCodes.js';
|
|
7
|
+
export { default as shortNames } from './shortNames.js';
|
|
7
8
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/obis-observer/constants/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAC;AAC5C,OAAO,KAAK,YAAY,MAAM,mBAAmB,CAAC;AAClD,OAAO,KAAK,aAAa,MAAM,oBAAoB,CAAC;AACpD,OAAO,KAAK,UAAU,MAAM,iBAAiB,CAAC;AAC9C,OAAO,KAAK,WAAW,MAAM,kBAAkB,CAAC;AAChD,OAAO,KAAK,WAAW,MAAM,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/obis-observer/constants/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAC;AAC5C,OAAO,KAAK,YAAY,MAAM,mBAAmB,CAAC;AAClD,OAAO,KAAK,aAAa,MAAM,oBAAoB,CAAC;AACpD,OAAO,KAAK,UAAU,MAAM,iBAAiB,CAAC;AAC9C,OAAO,KAAK,WAAW,MAAM,kBAAkB,CAAC;AAChD,OAAO,KAAK,WAAW,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAC,OAAO,IAAI,UAAU,EAAC,MAAM,iBAAiB,CAAC"}
|