@jsonjoy.com/json-pack 1.6.0 → 1.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/lib/cbor/CborDecoder.d.ts +1 -1
- package/lib/msgpack/MsgPackDecoder.d.ts +1 -1
- package/lib/msgpack/shallow-read.d.ts +1 -1
- package/package.json +2 -1
- package/lib/json-pointer/index.d.ts +0 -1
- package/lib/json-pointer/index.js +0 -5
- package/lib/json-pointer/index.js.map +0 -1
- package/lib/json-pointer/types.d.ts +0 -2
- package/lib/json-pointer/types.js +0 -3
- package/lib/json-pointer/types.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CborDecoderBase } from './CborDecoderBase';
|
|
2
2
|
import { JsonPackValue } from '../JsonPackValue';
|
|
3
|
-
import type { Path } from '
|
|
3
|
+
import type { Path } from '@jsonjoy.com/json-pointer';
|
|
4
4
|
import type { IReader, IReaderResettable } from '@jsonjoy.com/util/lib/buffers';
|
|
5
5
|
export declare class CborDecoder<R extends IReader & IReaderResettable = IReader & IReaderResettable> extends CborDecoderBase<R> {
|
|
6
6
|
readAsMap(): Map<unknown, unknown>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MsgPackDecoderFast } from './MsgPackDecoderFast';
|
|
2
|
-
import type { Path } from '
|
|
2
|
+
import type { Path } from '@jsonjoy.com/json-pointer';
|
|
3
3
|
import type { Reader } from '@jsonjoy.com/util/lib/buffers/Reader';
|
|
4
4
|
export declare class MsgPackDecoder extends MsgPackDecoderFast<Reader> {
|
|
5
5
|
skipAny(): number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Path } from '
|
|
1
|
+
import type { Path } from '@jsonjoy.com/json-pointer';
|
|
2
2
|
import type { MsgPackDecoder } from './MsgPackDecoder';
|
|
3
3
|
type Decoder = Pick<MsgPackDecoder, 'readObjHdr' | 'readStrHdr' | 'readArrHdr' | 'skipAny'>;
|
|
4
4
|
type Fn = (decoder: Decoder) => number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsonjoy.com/json-pack",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "High-performance JSON serialization library",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "streamich",
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@jsonjoy.com/base64": "^1.1.1",
|
|
67
|
+
"@jsonjoy.com/json-pointer": "^1.0.1",
|
|
67
68
|
"@jsonjoy.com/util": "^1.1.2",
|
|
68
69
|
"hyperdyperid": "^1.2.0",
|
|
69
70
|
"thingies": "^1.20.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/json-pointer/index.ts"],"names":[],"mappings":";;;AAAA,kDAAwB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/json-pointer/types.ts"],"names":[],"mappings":""}
|