liana-core 0.1.40 → 0.1.41
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/_implementation/serializers/deserialization_to_resolved.d.ts +1 -1
- package/dist/_implementation/serializers/document_unmarshalling.d.ts +1 -1
- package/dist/_implementation/serializers/primitives.d.ts +8 -8
- package/dist/_implementation/serializers/resolving.d.ts +1 -1
- package/dist/_implementation/serializers/unmarshall.d.ts +1 -1
- package/dist/interface/api.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as p_ from 'pareto-core/implementation/serializer';
|
|
2
2
|
import type * as s_in from "../../interface/schemas/deserialization_to_resolved.js";
|
|
3
3
|
declare namespace declarations {
|
|
4
|
-
type Error = p_.
|
|
4
|
+
type Error = p_.Phrase_Serializer<s_in.Error>;
|
|
5
5
|
}
|
|
6
6
|
export declare const Error: declarations.Error;
|
|
7
7
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as p_ from 'pareto-core/implementation/serializer';
|
|
2
2
|
import type * as s_in from "../../interface/schemas/document_unmarshalling.js";
|
|
3
3
|
declare namespace declarations {
|
|
4
|
-
type Error = p_.
|
|
4
|
+
type Error = p_.Phrase_Serializer<s_in.Error>;
|
|
5
5
|
}
|
|
6
6
|
export declare const Error: declarations.Error;
|
|
7
7
|
export {};
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import * as p_ from 'pareto-core/implementation/serializer';
|
|
2
2
|
import type * as p_di from 'pareto-core/interface/schema';
|
|
3
3
|
declare namespace declarations {
|
|
4
|
-
type true_false = p_.
|
|
5
|
-
type scientific_notation = p_.
|
|
4
|
+
type true_false = p_.Phrase_Serializer<boolean>;
|
|
5
|
+
type scientific_notation = p_.Phrase_Serializer_With_Parameter<number, {
|
|
6
6
|
digits: number;
|
|
7
7
|
}>;
|
|
8
|
-
type binary = p_.
|
|
9
|
-
type decimal = p_.
|
|
10
|
-
type hexadecimal = p_.
|
|
11
|
-
type fractional_decimal = p_.
|
|
8
|
+
type binary = p_.Phrase_Serializer<number>;
|
|
9
|
+
type decimal = p_.Phrase_Serializer<number>;
|
|
10
|
+
type hexadecimal = p_.Phrase_Serializer<number>;
|
|
11
|
+
type fractional_decimal = p_.Phrase_Serializer_With_Parameter<number, {
|
|
12
12
|
'number of fractional digits': number;
|
|
13
13
|
}>;
|
|
14
|
-
type iso_date_udhr = p_.
|
|
15
|
-
type octal = p_.
|
|
14
|
+
type iso_date_udhr = p_.Phrase_Serializer<number>;
|
|
15
|
+
type octal = p_.Phrase_Serializer<number>;
|
|
16
16
|
}
|
|
17
17
|
export declare const true_false: declarations.true_false;
|
|
18
18
|
export declare const scientific_notation: declarations.scientific_notation;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as p_ from 'pareto-core/implementation/serializer';
|
|
2
2
|
import type * as s_in from "../../interface/schemas/resolving.js";
|
|
3
3
|
declare namespace declarations {
|
|
4
|
-
type Error = p_.
|
|
4
|
+
type Error = p_.Phrase_Serializer<s_in.Error>;
|
|
5
5
|
}
|
|
6
6
|
export declare const Error: declarations.Error;
|
|
7
7
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as p_ from 'pareto-core/implementation/serializer';
|
|
2
2
|
import type * as s_in from "../../interface/schemas/value_unmarshalling.js";
|
|
3
3
|
declare namespace declarations {
|
|
4
|
-
type Error = p_.
|
|
4
|
+
type Error = p_.Phrase_Serializer<s_in.Error>;
|
|
5
5
|
}
|
|
6
6
|
export declare const Error: declarations.Error;
|
|
7
7
|
export {};
|
package/dist/interface/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as p_r from 'pareto-core/interface/refiner';
|
|
|
2
2
|
import * as p_s from 'pareto-core/implementation/serializer';
|
|
3
3
|
export type API = {
|
|
4
4
|
'serializers': {
|
|
5
|
-
'deserialization to resolved': p_s.
|
|
5
|
+
'deserialization to resolved': p_s.Phrase_Serializer<import("./schemas/deserialization_to_resolved.js").Error>;
|
|
6
6
|
};
|
|
7
7
|
'transformers': {};
|
|
8
8
|
'refiners': {
|