pareto-json 0.3.30 → 0.3.32
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/manual/refiners/primitives/list_of_characters.d.ts +8 -0
- package/dist/implementation/manual/refiners/primitives/list_of_characters.js +145 -0
- package/dist/implementation/manual/refiners/unmarshalled/astn_parse_tree.d.ts +17 -0
- package/dist/implementation/manual/refiners/unmarshalled/astn_parse_tree.js +227 -0
- package/dist/implementation/manual/transformers/json/fountain_pen.js +5 -7
- package/dist/implementation/manual/transformers/json/list_of_characters.d.ts +5 -0
- package/dist/implementation/{generated/liana/schemas/json/transformers/fountain_pen.js → manual/transformers/json/list_of_characters.js} +6 -7
- package/dist/implementation/manual/transformers/json/text.d.ts +5 -0
- package/dist/implementation/manual/transformers/json/text.js +42 -0
- package/dist/implementation/manual/transformers/primitives/list_of_characters.d.ts +9 -0
- package/dist/implementation/manual/transformers/primitives/list_of_characters.js +271 -0
- package/dist/interface/to_be_generated/unmarshall.d.ts +8 -0
- package/dist/interface/{generated/liana/schemas/json → to_be_generated}/unmarshall.js +1 -1
- package/package.json +4 -5
- package/dist/implementation/generated/liana/schemas/json/transformers/astn_sealed_target.d.ts +0 -3
- package/dist/implementation/generated/liana/schemas/json/transformers/astn_sealed_target.js +0 -132
- package/dist/implementation/generated/liana/schemas/json/transformers/boilerplate_for_migrate.d.ts +0 -3
- package/dist/implementation/generated/liana/schemas/json/transformers/boilerplate_for_migrate.js +0 -84
- package/dist/implementation/generated/liana/schemas/json/transformers/fountain_pen.d.ts +0 -3
- package/dist/implementation/manual/primitives/approximate_number/scientific_notation.d.ts +0 -3
- package/dist/implementation/manual/primitives/approximate_number/scientific_notation.js +0 -229
- package/dist/implementation/manual/primitives/integer/fractional_decimal.d.ts +0 -3
- package/dist/implementation/manual/primitives/integer/fractional_decimal.js +0 -162
- package/dist/implementation/manual/primitives/text/serializers/quoted.d.ts +0 -2
- package/dist/implementation/manual/primitives/text/serializers/quoted.js +0 -105
- package/dist/interface/generated/liana/schemas/json/boilerplate_for_migrate.d.ts +0 -17
- package/dist/interface/generated/liana/schemas/json/boilerplate_for_migrate.js +0 -3
- package/dist/interface/generated/liana/schemas/json/deserialize.d.ts +0 -31
- package/dist/interface/generated/liana/schemas/json/deserialize.js +0 -3
- package/dist/interface/generated/liana/schemas/json/marshall.d.ts +0 -17
- package/dist/interface/generated/liana/schemas/json/marshall.js +0 -3
- package/dist/interface/generated/liana/schemas/json/serialize.d.ts +0 -17
- package/dist/interface/generated/liana/schemas/json/serialize.js +0 -3
- package/dist/interface/generated/liana/schemas/json/unmarshall.d.ts +0 -21
- package/dist/interface/signatures.d.ts +0 -38
- package/dist/interface/signatures.js +0 -3
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import * as _pi from 'pareto-core/dist/interface';
|
|
2
|
-
import * as i_generic from "astn-core/dist/interface/to_be_generated/unmarshall";
|
|
3
|
-
import * as i_out from "./data";
|
|
4
|
-
import * as i_in from "astn-core/dist/interface/generated/liana/schemas/parse_tree/data";
|
|
5
|
-
export declare namespace Document_ {
|
|
6
|
-
type I = i_in.Value;
|
|
7
|
-
type O = i_out.Document;
|
|
8
|
-
type E = i_generic.Error;
|
|
9
|
-
namespace P {
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
export type Document_ = (context: Document_.I, abort: _pi.Abort<Document_.E>) => Document_.O;
|
|
13
|
-
export declare namespace Value_ {
|
|
14
|
-
type I = i_in.Value;
|
|
15
|
-
type O = i_out.Value;
|
|
16
|
-
type E = i_generic.Error;
|
|
17
|
-
namespace P {
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
export type Value_ = (context: Value_.I, abort: _pi.Abort<Value_.E>) => Value_.O;
|
|
21
|
-
export { Document_ as Document, Value_ as Value, };
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import * as _pi from 'pareto-core/dist/interface';
|
|
2
|
-
import * as d_out from "pareto-fountain-pen/dist/interface/generated/liana/schemas/list_of_characters/data";
|
|
3
|
-
export declare namespace deserializers {
|
|
4
|
-
namespace primitives {
|
|
5
|
-
namespace approximate_number {
|
|
6
|
-
type scientific_notation = _pi.Refiner_With_Parameter<number, string, d_out.List_of_Characters, {
|
|
7
|
-
'digits': number;
|
|
8
|
-
}>;
|
|
9
|
-
}
|
|
10
|
-
namespace integer {
|
|
11
|
-
type fractional_decimal = _pi.Refiner_With_Parameter<number, string, d_out.List_of_Characters, {
|
|
12
|
-
'number of fractional digits': number;
|
|
13
|
-
}>;
|
|
14
|
-
}
|
|
15
|
-
namespace boolean {
|
|
16
|
-
type true_false = _pi.Refiner<boolean, string, d_out.List_of_Characters>;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
export declare namespace serializers {
|
|
21
|
-
namespace primitives {
|
|
22
|
-
namespace approximate_number {
|
|
23
|
-
type scientific_notation = _pi.Transformer_With_Parameter<number, d_out.List_of_Characters, {
|
|
24
|
-
'digits': number;
|
|
25
|
-
}>;
|
|
26
|
-
}
|
|
27
|
-
namespace integer {
|
|
28
|
-
type fractional_decimal = _pi.Transformer_With_Parameter<number, d_out.List_of_Characters, {
|
|
29
|
-
'number of fractional digits': number;
|
|
30
|
-
}>;
|
|
31
|
-
}
|
|
32
|
-
namespace boolean {
|
|
33
|
-
type true_false = _pi.Transformer<boolean, d_out.List_of_Characters>;
|
|
34
|
-
}
|
|
35
|
-
namespace text {
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lnbmF0dXJlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9pbnRlcmZhY2Uvc2lnbmF0dXJlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|