jooby-codec 3.4.0 → 3.5.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.
Files changed (60) hide show
  1. package/dist/mtx/CommandBinaryBuffer.d.ts +28 -0
  2. package/dist/mtx/CommandBinaryBuffer.js +63 -0
  3. package/dist/mtx/CommandBinaryBuffer.js.map +1 -1
  4. package/dist/mtx/commands/downlink/GetBuildVersion.d.ts +13 -0
  5. package/dist/mtx/commands/downlink/GetBuildVersion.js +31 -0
  6. package/dist/mtx/commands/downlink/GetBuildVersion.js.map +1 -0
  7. package/dist/mtx/commands/downlink/GetCorrectTime.d.ts +13 -0
  8. package/dist/mtx/commands/downlink/GetCorrectTime.js +31 -0
  9. package/dist/mtx/commands/downlink/GetCorrectTime.js.map +1 -0
  10. package/dist/mtx/commands/downlink/GetSaldo.d.ts +13 -0
  11. package/dist/mtx/commands/downlink/GetSaldo.js +31 -0
  12. package/dist/mtx/commands/downlink/GetSaldo.js.map +1 -0
  13. package/dist/mtx/commands/downlink/GetSaldoParameters.d.ts +13 -0
  14. package/dist/mtx/commands/downlink/GetSaldoParameters.js +31 -0
  15. package/dist/mtx/commands/downlink/GetSaldoParameters.js.map +1 -0
  16. package/dist/mtx/commands/downlink/GetVersion.d.ts +13 -0
  17. package/dist/mtx/commands/downlink/GetVersion.js +31 -0
  18. package/dist/mtx/commands/downlink/GetVersion.js.map +1 -0
  19. package/dist/mtx/commands/downlink/SetCorrectTime.d.ts +15 -0
  20. package/dist/mtx/commands/downlink/SetCorrectTime.js +49 -0
  21. package/dist/mtx/commands/downlink/SetCorrectTime.js.map +1 -0
  22. package/dist/mtx/commands/downlink/SetSaldo.d.ts +24 -0
  23. package/dist/mtx/commands/downlink/SetSaldo.js +63 -0
  24. package/dist/mtx/commands/downlink/SetSaldo.js.map +1 -0
  25. package/dist/mtx/commands/downlink/SetSaldoParameters.d.ts +15 -0
  26. package/dist/mtx/commands/downlink/SetSaldoParameters.js +53 -0
  27. package/dist/mtx/commands/downlink/SetSaldoParameters.js.map +1 -0
  28. package/dist/mtx/commands/downlink/index.d.ts +8 -0
  29. package/dist/mtx/commands/downlink/index.js +8 -0
  30. package/dist/mtx/commands/downlink/index.js.map +1 -1
  31. package/dist/mtx/commands/uplink/GetBuildVersionResponse.d.ts +20 -0
  32. package/dist/mtx/commands/uplink/GetBuildVersionResponse.js +53 -0
  33. package/dist/mtx/commands/uplink/GetBuildVersionResponse.js.map +1 -0
  34. package/dist/mtx/commands/uplink/GetCorrectTimeResponse.d.ts +15 -0
  35. package/dist/mtx/commands/uplink/GetCorrectTimeResponse.js +49 -0
  36. package/dist/mtx/commands/uplink/GetCorrectTimeResponse.js.map +1 -0
  37. package/dist/mtx/commands/uplink/GetSaldoParametersResponse.d.ts +15 -0
  38. package/dist/mtx/commands/uplink/GetSaldoParametersResponse.js +73 -0
  39. package/dist/mtx/commands/uplink/GetSaldoParametersResponse.js.map +1 -0
  40. package/dist/mtx/commands/uplink/GetSaldoResponse.d.ts +26 -0
  41. package/dist/mtx/commands/uplink/GetSaldoResponse.js +72 -0
  42. package/dist/mtx/commands/uplink/GetSaldoResponse.js.map +1 -0
  43. package/dist/mtx/commands/uplink/GetVersionResponse.d.ts +17 -0
  44. package/dist/mtx/commands/uplink/GetVersionResponse.js +43 -0
  45. package/dist/mtx/commands/uplink/GetVersionResponse.js.map +1 -0
  46. package/dist/mtx/commands/uplink/SetCorrectTimeResponse.d.ts +13 -0
  47. package/dist/mtx/commands/uplink/SetCorrectTimeResponse.js +31 -0
  48. package/dist/mtx/commands/uplink/SetCorrectTimeResponse.js.map +1 -0
  49. package/dist/mtx/commands/uplink/SetDisplayParamResponse.js.map +1 -1
  50. package/dist/mtx/commands/uplink/SetSaldoParametersResponse.d.ts +13 -0
  51. package/dist/mtx/commands/uplink/SetSaldoParametersResponse.js +31 -0
  52. package/dist/mtx/commands/uplink/SetSaldoParametersResponse.js.map +1 -0
  53. package/dist/mtx/commands/uplink/SetSaldoResponse.d.ts +13 -0
  54. package/dist/mtx/commands/uplink/SetSaldoResponse.js +31 -0
  55. package/dist/mtx/commands/uplink/SetSaldoResponse.js.map +1 -0
  56. package/dist/mtx/commands/uplink/index.d.ts +8 -0
  57. package/dist/mtx/commands/uplink/index.js +8 -0
  58. package/dist/mtx/commands/uplink/index.js.map +1 -1
  59. package/dist/mtx/constants/commandRelations.d.ts +2 -2
  60. package/package.json +1 -1
@@ -0,0 +1,31 @@
1
+ import Command from '../../Command.js';
2
+ import { UPLINK } from '../../../constants/directions.js';
3
+ import { READ_WRITE } from '../../constants/accessLevels.js';
4
+ const COMMAND_ID = 0x2f;
5
+ const COMMAND_SIZE = 0;
6
+ const examples = [
7
+ {
8
+ name: 'simple response',
9
+ hex: { header: '2f 00', body: '' }
10
+ }
11
+ ];
12
+ class SetSaldoParametersResponse extends Command {
13
+ constructor() {
14
+ super();
15
+ this.size = COMMAND_SIZE;
16
+ }
17
+ static fromBytes() {
18
+ return new SetSaldoParametersResponse();
19
+ }
20
+ toBytes() {
21
+ return new Uint8Array([COMMAND_ID, this.size]);
22
+ }
23
+ }
24
+ SetSaldoParametersResponse.id = COMMAND_ID;
25
+ SetSaldoParametersResponse.directionType = UPLINK;
26
+ SetSaldoParametersResponse.examples = examples;
27
+ SetSaldoParametersResponse.hasParameters = false;
28
+ SetSaldoParametersResponse.accessLevel = READ_WRITE;
29
+ SetSaldoParametersResponse.maxSize = COMMAND_SIZE;
30
+ export default SetSaldoParametersResponse;
31
+ //# sourceMappingURL=SetSaldoParametersResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SetSaldoParametersResponse.js","sourceRoot":"","sources":["../../../../src/mtx/commands/uplink/SetSaldoParametersResponse.ts"],"names":[],"mappings":"AAAA,OAAO,OAA8B,MAAM,kBAAkB,CAAC;AAC9D,OAAO,EAAC,MAAM,EAAC,MAAM,kCAAkC,CAAC;AACxD,OAAO,EAAC,UAAU,EAAC,MAAM,iCAAiC,CAAC;AAG3D,MAAM,UAAU,GAAG,IAAI,CAAC;AACxB,MAAM,YAAY,GAAG,CAAC,CAAC;AAEvB,MAAM,QAAQ,GAAwB;IAClC;QACI,IAAI,EAAE,iBAAiB;QACvB,GAAG,EAAE,EAAC,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,EAAE,EAAC;KACnC;CACJ,CAAC;AAmBF,MAAM,0BAA2B,SAAQ,OAAO;IAC5C;QACI,KAAK,EAAE,CAAC;QAER,IAAI,CAAC,IAAI,GAAG,YAAY,CAAC;IAC7B,CAAC;IAiBD,MAAM,CAAC,SAAS;QACZ,OAAO,IAAI,0BAA0B,EAAE,CAAC;IAC5C,CAAC;IAGD,OAAO;QACH,OAAO,IAAI,UAAU,CAAC,CAAC,UAAU,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;IACnD,CAAC;;AArBM,6BAAE,GAAG,UAAU,CAAC;AAEP,wCAAa,GAAG,MAAM,CAAC;AAEvB,mCAAQ,GAAG,QAAQ,CAAC;AAEpB,wCAAa,GAAG,KAAK,CAAC;AAEtB,sCAAW,GAAG,UAAU,CAAC;AAEzB,kCAAO,GAAG,YAAY,CAAC;AAe3C,eAAe,0BAA0B,CAAC"}
@@ -0,0 +1,13 @@
1
+ import Command, { TCommandExampleList } from '../../Command.js';
2
+ declare class SetSaldoResponse extends Command {
3
+ constructor();
4
+ static id: number;
5
+ static readonly directionType = 2;
6
+ static readonly examples: TCommandExampleList;
7
+ static readonly hasParameters = false;
8
+ static readonly accessLevel = 2;
9
+ static readonly maxSize = 0;
10
+ static fromBytes(): SetSaldoResponse;
11
+ toBytes(): Uint8Array;
12
+ }
13
+ export default SetSaldoResponse;
@@ -0,0 +1,31 @@
1
+ import Command from '../../Command.js';
2
+ import { UPLINK } from '../../../constants/directions.js';
3
+ import { READ_WRITE } from '../../constants/accessLevels.js';
4
+ const COMMAND_ID = 0x2a;
5
+ const COMMAND_SIZE = 0;
6
+ const examples = [
7
+ {
8
+ name: 'simple response',
9
+ hex: { header: '2a 00', body: '' }
10
+ }
11
+ ];
12
+ class SetSaldoResponse extends Command {
13
+ constructor() {
14
+ super();
15
+ this.size = COMMAND_SIZE;
16
+ }
17
+ static fromBytes() {
18
+ return new SetSaldoResponse();
19
+ }
20
+ toBytes() {
21
+ return new Uint8Array([COMMAND_ID, this.size]);
22
+ }
23
+ }
24
+ SetSaldoResponse.id = COMMAND_ID;
25
+ SetSaldoResponse.directionType = UPLINK;
26
+ SetSaldoResponse.examples = examples;
27
+ SetSaldoResponse.hasParameters = false;
28
+ SetSaldoResponse.accessLevel = READ_WRITE;
29
+ SetSaldoResponse.maxSize = COMMAND_SIZE;
30
+ export default SetSaldoResponse;
31
+ //# sourceMappingURL=SetSaldoResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SetSaldoResponse.js","sourceRoot":"","sources":["../../../../src/mtx/commands/uplink/SetSaldoResponse.ts"],"names":[],"mappings":"AAAA,OAAO,OAA8B,MAAM,kBAAkB,CAAC;AAC9D,OAAO,EAAC,MAAM,EAAC,MAAM,kCAAkC,CAAC;AACxD,OAAO,EAAC,UAAU,EAAC,MAAM,iCAAiC,CAAC;AAG3D,MAAM,UAAU,GAAG,IAAI,CAAC;AACxB,MAAM,YAAY,GAAG,CAAC,CAAC;AAEvB,MAAM,QAAQ,GAAwB;IAClC;QACI,IAAI,EAAE,iBAAiB;QACvB,GAAG,EAAE,EAAC,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,EAAE,EAAC;KACnC;CACJ,CAAC;AAmBF,MAAM,gBAAiB,SAAQ,OAAO;IAClC;QACI,KAAK,EAAE,CAAC;QAER,IAAI,CAAC,IAAI,GAAG,YAAY,CAAC;IAC7B,CAAC;IAiBD,MAAM,CAAC,SAAS;QACZ,OAAO,IAAI,gBAAgB,EAAE,CAAC;IAClC,CAAC;IAGD,OAAO;QACH,OAAO,IAAI,UAAU,CAAC,CAAC,UAAU,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;IACnD,CAAC;;AArBM,mBAAE,GAAG,UAAU,CAAC;AAEP,8BAAa,GAAG,MAAM,CAAC;AAEvB,yBAAQ,GAAG,QAAQ,CAAC;AAEpB,8BAAa,GAAG,KAAK,CAAC;AAEtB,4BAAW,GAAG,UAAU,CAAC;AAEzB,wBAAO,GAAG,YAAY,CAAC;AAe3C,eAAe,gBAAgB,CAAC"}
@@ -1,5 +1,7 @@
1
1
  export { default as ActivateRatePlanResponse } from './ActivateRatePlanResponse.js';
2
2
  export { default as ErrorResponse } from './ErrorResponse.js';
3
+ export { default as GetBuildVersionResponse } from './GetBuildVersionResponse.js';
4
+ export { default as GetCorrectTimeResponse } from './GetCorrectTimeResponse.js';
3
5
  export { default as GetDateTimeResponse } from './GetDateTimeResponse.js';
4
6
  export { default as GetDayProfileResponse } from './GetDayProfileResponse.js';
5
7
  export { default as GetDeviceIdResponse } from './GetDeviceIdResponse.js';
@@ -7,16 +9,22 @@ export { default as GetDeviceTypeResponse } from './GetDeviceTypeResponse.js';
7
9
  export { default as GetDisplayParamResponse } from './GetDisplayParamResponse.js';
8
10
  export { default as GetOpParamsResponse } from './GetOpParamsResponse.js';
9
11
  export { default as GetRatePlanInfoResponse } from './GetRatePlanInfoResponse.js';
12
+ export { default as GetSaldoParametersResponse } from './GetSaldoParametersResponse.js';
13
+ export { default as GetSaldoResponse } from './GetSaldoResponse.js';
10
14
  export { default as GetSeasonProfileResponse } from './GetSeasonProfileResponse.js';
11
15
  export { default as GetSpecialDayResponse } from './GetSpecialDayResponse.js';
16
+ export { default as GetVersionResponse } from './GetVersionResponse.js';
12
17
  export { default as PrepareRatePlanResponse } from './PrepareRatePlanResponse.js';
13
18
  export { default as RunTariffPlanResponse } from './RunTariffPlanResponse.js';
14
19
  export { default as SetAccessKeyResponse } from './SetAccessKeyResponse.js';
15
20
  export { default as SetCorrectDateTimeResponse } from './SetCorrectDateTimeResponse.js';
21
+ export { default as SetCorrectTimeResponse } from './SetCorrectTimeResponse.js';
16
22
  export { default as SetDateTimeResponse } from './SetDateTimeResponse.js';
17
23
  export { default as SetDayProfileResponse } from './SetDayProfileResponse.js';
18
24
  export { default as SetDisplayParamResponse } from './SetDisplayParamResponse.js';
19
25
  export { default as SetOpParamsResponse } from './SetOpParamsResponse.js';
26
+ export { default as SetSaldoParametersResponse } from './SetSaldoParametersResponse.js';
27
+ export { default as SetSaldoResponse } from './SetSaldoResponse.js';
20
28
  export { default as SetSeasonProfileResponse } from './SetSeasonProfileResponse.js';
21
29
  export { default as SetSpecialDayResponse } from './SetSpecialDayResponse.js';
22
30
  export { default as TurnRelayOffResponse } from './TurnRelayOffResponse.js';
@@ -1,5 +1,7 @@
1
1
  export { default as ActivateRatePlanResponse } from './ActivateRatePlanResponse.js';
2
2
  export { default as ErrorResponse } from './ErrorResponse.js';
3
+ export { default as GetBuildVersionResponse } from './GetBuildVersionResponse.js';
4
+ export { default as GetCorrectTimeResponse } from './GetCorrectTimeResponse.js';
3
5
  export { default as GetDateTimeResponse } from './GetDateTimeResponse.js';
4
6
  export { default as GetDayProfileResponse } from './GetDayProfileResponse.js';
5
7
  export { default as GetDeviceIdResponse } from './GetDeviceIdResponse.js';
@@ -7,16 +9,22 @@ export { default as GetDeviceTypeResponse } from './GetDeviceTypeResponse.js';
7
9
  export { default as GetDisplayParamResponse } from './GetDisplayParamResponse.js';
8
10
  export { default as GetOpParamsResponse } from './GetOpParamsResponse.js';
9
11
  export { default as GetRatePlanInfoResponse } from './GetRatePlanInfoResponse.js';
12
+ export { default as GetSaldoParametersResponse } from './GetSaldoParametersResponse.js';
13
+ export { default as GetSaldoResponse } from './GetSaldoResponse.js';
10
14
  export { default as GetSeasonProfileResponse } from './GetSeasonProfileResponse.js';
11
15
  export { default as GetSpecialDayResponse } from './GetSpecialDayResponse.js';
16
+ export { default as GetVersionResponse } from './GetVersionResponse.js';
12
17
  export { default as PrepareRatePlanResponse } from './PrepareRatePlanResponse.js';
13
18
  export { default as RunTariffPlanResponse } from './RunTariffPlanResponse.js';
14
19
  export { default as SetAccessKeyResponse } from './SetAccessKeyResponse.js';
15
20
  export { default as SetCorrectDateTimeResponse } from './SetCorrectDateTimeResponse.js';
21
+ export { default as SetCorrectTimeResponse } from './SetCorrectTimeResponse.js';
16
22
  export { default as SetDateTimeResponse } from './SetDateTimeResponse.js';
17
23
  export { default as SetDayProfileResponse } from './SetDayProfileResponse.js';
18
24
  export { default as SetDisplayParamResponse } from './SetDisplayParamResponse.js';
19
25
  export { default as SetOpParamsResponse } from './SetOpParamsResponse.js';
26
+ export { default as SetSaldoParametersResponse } from './SetSaldoParametersResponse.js';
27
+ export { default as SetSaldoResponse } from './SetSaldoResponse.js';
20
28
  export { default as SetSeasonProfileResponse } from './SetSeasonProfileResponse.js';
21
29
  export { default as SetSpecialDayResponse } from './SetSpecialDayResponse.js';
22
30
  export { default as TurnRelayOffResponse } from './TurnRelayOffResponse.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/mtx/commands/uplink/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAC,OAAO,IAAI,wBAAwB,EAAC,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,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,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,oBAAoB,EAAC,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAC,OAAO,IAAI,0BAA0B,EAAC,MAAM,iCAAiC,CAAC;AACtF,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,wBAAwB,EAAC,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,oBAAoB,EAAC,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/mtx/commands/uplink/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAC,OAAO,IAAI,wBAAwB,EAAC,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,sBAAsB,EAAC,MAAM,6BAA6B,CAAC;AAC9E,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,0BAA0B,EAAC,MAAM,iCAAiC,CAAC;AACtF,OAAO,EAAC,OAAO,IAAI,gBAAgB,EAAC,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAC,OAAO,IAAI,wBAAwB,EAAC,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,kBAAkB,EAAC,MAAM,yBAAyB,CAAC;AACtE,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,oBAAoB,EAAC,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAC,OAAO,IAAI,0BAA0B,EAAC,MAAM,iCAAiC,CAAC;AACtF,OAAO,EAAC,OAAO,IAAI,sBAAsB,EAAC,MAAM,6BAA6B,CAAC;AAC9E,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,uBAAuB,EAAC,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,0BAA0B,EAAC,MAAM,iCAAiC,CAAC;AACtF,OAAO,EAAC,OAAO,IAAI,gBAAgB,EAAC,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAC,OAAO,IAAI,wBAAwB,EAAC,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,oBAAoB,EAAC,MAAM,2BAA2B,CAAC;AAC1E,OAAO,EAAC,OAAO,IAAI,mBAAmB,EAAC,MAAM,0BAA0B,CAAC"}
@@ -2,5 +2,5 @@ import * as downlinkCommands from '../commands/downlink/index.js';
2
2
  import * as uplinkCommands from '../commands/uplink/index.js';
3
3
  export declare const requestByResponse: Map<any, any>;
4
4
  export declare const responseByRequest: Map<any, any>;
5
- export declare const requestById: Map<number, typeof downlinkCommands.ActivateRatePlan | typeof downlinkCommands.GetDateTime | typeof downlinkCommands.GetDayProfile | typeof downlinkCommands.GetDeviceId | typeof downlinkCommands.GetDeviceType | typeof downlinkCommands.GetDisplayParam | typeof downlinkCommands.GetOpParams | typeof downlinkCommands.GetRatePlanInfo | typeof downlinkCommands.GetSeasonProfile | typeof downlinkCommands.GetSpecialDay | typeof downlinkCommands.PrepareRatePlan | typeof downlinkCommands.RunTariffPlan | typeof downlinkCommands.SetAccessKey | typeof downlinkCommands.SetCorrectDateTime | typeof downlinkCommands.SetDateTime | typeof downlinkCommands.SetDayProfile | typeof downlinkCommands.SetDisplayParam | typeof downlinkCommands.SetOpParams | typeof downlinkCommands.SetSeasonProfile | typeof downlinkCommands.SetSpecialDay | typeof downlinkCommands.TurnRelayOff | typeof downlinkCommands.TurnRelayOn>;
6
- export declare const responseById: Map<number, typeof uplinkCommands.ActivateRatePlanResponse | typeof uplinkCommands.ErrorResponse | typeof uplinkCommands.GetDateTimeResponse | typeof uplinkCommands.GetDayProfileResponse | typeof uplinkCommands.GetDeviceIdResponse | typeof uplinkCommands.GetDeviceTypeResponse | typeof uplinkCommands.GetDisplayParamResponse | typeof uplinkCommands.GetOpParamsResponse | typeof uplinkCommands.GetRatePlanInfoResponse | typeof uplinkCommands.GetSeasonProfileResponse | typeof uplinkCommands.GetSpecialDayResponse | typeof uplinkCommands.PrepareRatePlanResponse | typeof uplinkCommands.RunTariffPlanResponse | typeof uplinkCommands.SetAccessKeyResponse | typeof uplinkCommands.SetCorrectDateTimeResponse | typeof uplinkCommands.SetDateTimeResponse | typeof uplinkCommands.SetDayProfileResponse | typeof uplinkCommands.SetDisplayParamResponse | typeof uplinkCommands.SetOpParamsResponse | typeof uplinkCommands.SetSeasonProfileResponse | typeof uplinkCommands.SetSpecialDayResponse | typeof uplinkCommands.TurnRelayOffResponse | typeof uplinkCommands.TurnRelayOnResponse>;
5
+ export declare const requestById: Map<number, typeof downlinkCommands.ActivateRatePlan | typeof downlinkCommands.GetBuildVersion | typeof downlinkCommands.GetCorrectTime | typeof downlinkCommands.GetDateTime | typeof downlinkCommands.GetDayProfile | typeof downlinkCommands.GetDeviceId | typeof downlinkCommands.GetDeviceType | typeof downlinkCommands.GetDisplayParam | typeof downlinkCommands.GetOpParams | typeof downlinkCommands.GetRatePlanInfo | typeof downlinkCommands.GetSaldo | typeof downlinkCommands.GetSaldoParameters | typeof downlinkCommands.GetSeasonProfile | typeof downlinkCommands.GetSpecialDay | typeof downlinkCommands.GetVersion | typeof downlinkCommands.PrepareRatePlan | typeof downlinkCommands.RunTariffPlan | typeof downlinkCommands.SetAccessKey | typeof downlinkCommands.SetCorrectDateTime | typeof downlinkCommands.SetCorrectTime | typeof downlinkCommands.SetDateTime | typeof downlinkCommands.SetDayProfile | typeof downlinkCommands.SetDisplayParam | typeof downlinkCommands.SetOpParams | typeof downlinkCommands.SetSaldo | typeof downlinkCommands.SetSaldoParameters | typeof downlinkCommands.SetSeasonProfile | typeof downlinkCommands.SetSpecialDay | typeof downlinkCommands.TurnRelayOff | typeof downlinkCommands.TurnRelayOn>;
6
+ export declare const responseById: Map<number, typeof uplinkCommands.ActivateRatePlanResponse | typeof uplinkCommands.ErrorResponse | typeof uplinkCommands.GetBuildVersionResponse | typeof uplinkCommands.GetCorrectTimeResponse | typeof uplinkCommands.GetDateTimeResponse | typeof uplinkCommands.GetDayProfileResponse | typeof uplinkCommands.GetDeviceIdResponse | typeof uplinkCommands.GetDeviceTypeResponse | typeof uplinkCommands.GetDisplayParamResponse | typeof uplinkCommands.GetOpParamsResponse | typeof uplinkCommands.GetRatePlanInfoResponse | typeof uplinkCommands.GetSaldoParametersResponse | typeof uplinkCommands.GetSaldoResponse | typeof uplinkCommands.GetSeasonProfileResponse | typeof uplinkCommands.GetSpecialDayResponse | typeof uplinkCommands.GetVersionResponse | typeof uplinkCommands.PrepareRatePlanResponse | typeof uplinkCommands.RunTariffPlanResponse | typeof uplinkCommands.SetAccessKeyResponse | typeof uplinkCommands.SetCorrectDateTimeResponse | typeof uplinkCommands.SetCorrectTimeResponse | typeof uplinkCommands.SetDateTimeResponse | typeof uplinkCommands.SetDayProfileResponse | typeof uplinkCommands.SetDisplayParamResponse | typeof uplinkCommands.SetOpParamsResponse | typeof uplinkCommands.SetSaldoParametersResponse | typeof uplinkCommands.SetSaldoResponse | typeof uplinkCommands.SetSeasonProfileResponse | typeof uplinkCommands.SetSpecialDayResponse | typeof uplinkCommands.TurnRelayOffResponse | typeof uplinkCommands.TurnRelayOnResponse>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jooby-codec",
3
- "version": "3.4.0",
3
+ "version": "3.5.0",
4
4
  "description": "Jooby message encoders/decoders",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",