astn 0.113.36 → 0.113.37

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 (46) hide show
  1. package/dist/implementation/generated/liana/schemas/astn_schema/migrate_boilerplate.d.ts +12 -0
  2. package/dist/implementation/generated/liana/schemas/astn_schema/migrate_boilerplate.js +279 -0
  3. package/dist/implementation/generated/liana/schemas/authoring_target/migrate_boilerplate.d.ts +3 -0
  4. package/dist/implementation/generated/liana/schemas/authoring_target/migrate_boilerplate.js +103 -0
  5. package/dist/implementation/generated/liana/schemas/ide/migrate_boilerplate.d.ts +5 -0
  6. package/dist/implementation/generated/liana/schemas/ide/migrate_boilerplate.js +67 -0
  7. package/dist/implementation/manual/schemas/authoring_target/transformers/fountain_pen_block.js +12 -12
  8. package/dist/implementation/manual/schemas/ide/refiners/parse_tree.js +9 -9
  9. package/dist/implementation/manual/schemas/parse_tree/transformers/json_target.js +7 -7
  10. package/dist/implementation/manual/schemas/parse_tree/transformers/token.js +7 -7
  11. package/dist/interface/generated/liana/generic/resolve.d.ts +27 -14
  12. package/dist/interface/generated/liana/schemas/astn_schema/data/resolved.d.ts +6 -4
  13. package/dist/interface/generated/liana/schemas/astn_schema/data/unresolved.d.ts +19 -19
  14. package/dist/interface/generated/liana/schemas/astn_schema/deserialize.d.ts +79 -0
  15. package/dist/interface/generated/liana/schemas/astn_schema/deserialize.js +3 -0
  16. package/dist/interface/generated/liana/schemas/astn_schema/marshall.d.ts +80 -0
  17. package/dist/interface/generated/liana/schemas/astn_schema/marshall.js +3 -0
  18. package/dist/interface/generated/liana/schemas/astn_schema/migrate_boilerplate.d.ts +11 -11
  19. package/dist/interface/generated/liana/schemas/astn_schema/resolve.d.ts +19 -19
  20. package/dist/interface/generated/liana/schemas/astn_schema/serialize.d.ts +79 -0
  21. package/dist/interface/generated/liana/schemas/astn_schema/serialize.js +3 -0
  22. package/dist/interface/generated/liana/schemas/astn_schema/unmarshall.d.ts +80 -0
  23. package/dist/interface/generated/liana/schemas/astn_schema/unmarshall.js +3 -0
  24. package/dist/interface/generated/liana/schemas/authoring_target/data.d.ts +5 -5
  25. package/dist/interface/generated/liana/schemas/authoring_target/deserialize.d.ts +16 -0
  26. package/dist/interface/generated/liana/schemas/authoring_target/deserialize.js +3 -0
  27. package/dist/interface/generated/liana/schemas/authoring_target/marshall.d.ts +17 -0
  28. package/dist/interface/generated/liana/schemas/authoring_target/marshall.js +3 -0
  29. package/dist/interface/generated/liana/schemas/authoring_target/migrate_boilerplate.d.ts +2 -2
  30. package/dist/interface/generated/liana/schemas/authoring_target/serialize.d.ts +16 -0
  31. package/dist/interface/generated/liana/schemas/authoring_target/serialize.js +3 -0
  32. package/dist/interface/generated/liana/schemas/authoring_target/unmarshall.d.ts +17 -0
  33. package/dist/interface/generated/liana/schemas/authoring_target/unmarshall.js +3 -0
  34. package/dist/interface/generated/liana/schemas/ide/deserialize.d.ts +30 -0
  35. package/dist/interface/generated/liana/schemas/ide/deserialize.js +3 -0
  36. package/dist/interface/generated/liana/schemas/ide/marshall.d.ts +31 -0
  37. package/dist/interface/generated/liana/schemas/ide/marshall.js +3 -0
  38. package/dist/interface/generated/liana/schemas/ide/migrate_boilerplate.d.ts +4 -4
  39. package/dist/interface/generated/liana/schemas/ide/serialize.d.ts +30 -0
  40. package/dist/interface/generated/liana/schemas/ide/serialize.js +3 -0
  41. package/dist/interface/generated/liana/schemas/ide/unmarshall.d.ts +31 -0
  42. package/dist/interface/generated/liana/schemas/ide/unmarshall.js +3 -0
  43. package/dist/modules/common_tool_signatures/implementation/manual/command_creators/create_stream_to_stream_command.js +2 -2
  44. package/dist/modules/common_tool_signatures/implementation/manual/schemas/file_in_file_out/serializers.js +4 -4
  45. package/dist/modules/common_tool_signatures/implementation/manual/schemas/transform_file/serializers.js +2 -2
  46. package/package.json +6 -6
@@ -0,0 +1,79 @@
1
+ import * as i_out from "./data/unresolved";
2
+ export declare namespace Schemas_ {
3
+ type I = string;
4
+ type O = i_out.Schemas;
5
+ namespace P {
6
+ }
7
+ }
8
+ export type Schemas_ = (context: Schemas_.I) => Schemas_.O;
9
+ export declare namespace Text_Type_ {
10
+ type I = string;
11
+ type O = i_out.Text_Type;
12
+ namespace P {
13
+ }
14
+ }
15
+ export type Text_Type_ = (context: Text_Type_.I) => Text_Type_.O;
16
+ export declare namespace Globals_ {
17
+ type I = string;
18
+ type O = i_out.Globals;
19
+ namespace P {
20
+ }
21
+ }
22
+ export type Globals_ = (context: Globals_.I) => Globals_.O;
23
+ export declare namespace Type_ {
24
+ type I = string;
25
+ type O = i_out.Type;
26
+ namespace P {
27
+ }
28
+ }
29
+ export type Type_ = (context: Type_.I) => Type_.O;
30
+ export declare namespace Types_ {
31
+ type I = string;
32
+ type O = i_out.Types;
33
+ namespace P {
34
+ }
35
+ }
36
+ export type Types_ = (context: Types_.I) => Types_.O;
37
+ export declare namespace Schema_ {
38
+ type I = string;
39
+ type O = i_out.Schema;
40
+ namespace P {
41
+ }
42
+ }
43
+ export type Schema_ = (context: Schema_.I) => Schema_.O;
44
+ export declare namespace Schema_Tree_ {
45
+ type I = string;
46
+ type O = i_out.Schema_Tree;
47
+ namespace P {
48
+ }
49
+ }
50
+ export type Schema_Tree_ = (context: Schema_Tree_.I) => Schema_Tree_.O;
51
+ export declare namespace Imports_ {
52
+ type I = string;
53
+ type O = i_out.Imports;
54
+ namespace P {
55
+ }
56
+ }
57
+ export type Imports_ = (context: Imports_.I) => Imports_.O;
58
+ export declare namespace Dictionary_ {
59
+ type I = string;
60
+ type O = i_out.Dictionary;
61
+ namespace P {
62
+ }
63
+ }
64
+ export type Dictionary_ = (context: Dictionary_.I) => Dictionary_.O;
65
+ export declare namespace Group_ {
66
+ type I = string;
67
+ type O = i_out.Group;
68
+ namespace P {
69
+ }
70
+ }
71
+ export type Group_ = (context: Group_.I) => Group_.O;
72
+ export declare namespace Type_Node_ {
73
+ type I = string;
74
+ type O = i_out.Type_Node;
75
+ namespace P {
76
+ }
77
+ }
78
+ export type Type_Node_ = (context: Type_Node_.I) => Type_Node_.O;
79
+ export { Schemas_ as Schemas, Text_Type_ as Text_Type, Globals_ as Globals, Type_ as Type, Types_ as Types, Schema_ as Schema, Schema_Tree_ as Schema_Tree, Imports_ as Imports, Dictionary_ as Dictionary, Group_ as Group, Type_Node_ as Type_Node, };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9saWFuYS9zY2hlbWFzL2FzdG5fc2NoZW1hL2Rlc2VyaWFsaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -0,0 +1,80 @@
1
+ import * as i_out from "astn-core/dist/interface/generated/liana/schemas/sealed_target/data";
2
+ import * as i_in from "./data/resolved";
3
+ export declare namespace Schemas_ {
4
+ type I = i_in.Schemas;
5
+ type O = i_out.Value;
6
+ namespace P {
7
+ }
8
+ }
9
+ export type Schemas_ = (context: Schemas_.I) => Schemas_.O;
10
+ export declare namespace Text_Type_ {
11
+ type I = i_in.Text_Type;
12
+ type O = i_out.Value;
13
+ namespace P {
14
+ }
15
+ }
16
+ export type Text_Type_ = (context: Text_Type_.I) => Text_Type_.O;
17
+ export declare namespace Globals_ {
18
+ type I = i_in.Globals;
19
+ type O = i_out.Value;
20
+ namespace P {
21
+ }
22
+ }
23
+ export type Globals_ = (context: Globals_.I) => Globals_.O;
24
+ export declare namespace Type_ {
25
+ type I = i_in.Type;
26
+ type O = i_out.Value;
27
+ namespace P {
28
+ }
29
+ }
30
+ export type Type_ = (context: Type_.I) => Type_.O;
31
+ export declare namespace Types_ {
32
+ type I = i_in.Types;
33
+ type O = i_out.Value;
34
+ namespace P {
35
+ }
36
+ }
37
+ export type Types_ = (context: Types_.I) => Types_.O;
38
+ export declare namespace Schema_ {
39
+ type I = i_in.Schema;
40
+ type O = i_out.Value;
41
+ namespace P {
42
+ }
43
+ }
44
+ export type Schema_ = (context: Schema_.I) => Schema_.O;
45
+ export declare namespace Schema_Tree_ {
46
+ type I = i_in.Schema_Tree;
47
+ type O = i_out.Value;
48
+ namespace P {
49
+ }
50
+ }
51
+ export type Schema_Tree_ = (context: Schema_Tree_.I) => Schema_Tree_.O;
52
+ export declare namespace Imports_ {
53
+ type I = i_in.Imports;
54
+ type O = i_out.Value;
55
+ namespace P {
56
+ }
57
+ }
58
+ export type Imports_ = (context: Imports_.I) => Imports_.O;
59
+ export declare namespace Dictionary_ {
60
+ type I = i_in.Dictionary;
61
+ type O = i_out.Value;
62
+ namespace P {
63
+ }
64
+ }
65
+ export type Dictionary_ = (context: Dictionary_.I) => Dictionary_.O;
66
+ export declare namespace Group_ {
67
+ type I = i_in.Group;
68
+ type O = i_out.Value;
69
+ namespace P {
70
+ }
71
+ }
72
+ export type Group_ = (context: Group_.I) => Group_.O;
73
+ export declare namespace Type_Node_ {
74
+ type I = i_in.Type_Node;
75
+ type O = i_out.Value;
76
+ namespace P {
77
+ }
78
+ }
79
+ export type Type_Node_ = (context: Type_Node_.I) => Type_Node_.O;
80
+ export { Schemas_ as Schemas, Text_Type_ as Text_Type, Globals_ as Globals, Type_ as Type, Types_ as Types, Schema_ as Schema, Schema_Tree_ as Schema_Tree, Imports_ as Imports, Dictionary_ as Dictionary, Group_ as Group, Type_Node_ as Type_Node, };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFyc2hhbGwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9saWFuYS9zY2hlbWFzL2FzdG5fc2NoZW1hL21hcnNoYWxsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -6,75 +6,75 @@ export declare namespace Schemas_ {
6
6
  namespace P {
7
7
  }
8
8
  }
9
- export type Schemas_ = ($$_: Schemas_.I) => Schemas_.O;
9
+ export type Schemas_ = (context: Schemas_.I) => Schemas_.O;
10
10
  export declare namespace Text_Type_ {
11
11
  type I = i_in.Text_Type;
12
12
  type O = i_out.Text_Type;
13
13
  namespace P {
14
14
  }
15
15
  }
16
- export type Text_Type_ = ($$_: Text_Type_.I) => Text_Type_.O;
16
+ export type Text_Type_ = (context: Text_Type_.I) => Text_Type_.O;
17
17
  export declare namespace Globals_ {
18
18
  type I = i_in.Globals;
19
19
  type O = i_out.Globals;
20
20
  namespace P {
21
21
  }
22
22
  }
23
- export type Globals_ = ($$_: Globals_.I) => Globals_.O;
23
+ export type Globals_ = (context: Globals_.I) => Globals_.O;
24
24
  export declare namespace Type_ {
25
25
  type I = i_in.Type;
26
26
  type O = i_out.Type;
27
27
  namespace P {
28
28
  }
29
29
  }
30
- export type Type_ = ($$_: Type_.I) => Type_.O;
30
+ export type Type_ = (context: Type_.I) => Type_.O;
31
31
  export declare namespace Types_ {
32
32
  type I = i_in.Types;
33
33
  type O = i_out.Types;
34
34
  namespace P {
35
35
  }
36
36
  }
37
- export type Types_ = ($$_: Types_.I) => Types_.O;
37
+ export type Types_ = (context: Types_.I) => Types_.O;
38
38
  export declare namespace Schema_ {
39
39
  type I = i_in.Schema;
40
40
  type O = i_out.Schema;
41
41
  namespace P {
42
42
  }
43
43
  }
44
- export type Schema_ = ($$_: Schema_.I) => Schema_.O;
44
+ export type Schema_ = (context: Schema_.I) => Schema_.O;
45
45
  export declare namespace Schema_Tree_ {
46
46
  type I = i_in.Schema_Tree;
47
47
  type O = i_out.Schema_Tree;
48
48
  namespace P {
49
49
  }
50
50
  }
51
- export type Schema_Tree_ = ($$_: Schema_Tree_.I) => Schema_Tree_.O;
51
+ export type Schema_Tree_ = (context: Schema_Tree_.I) => Schema_Tree_.O;
52
52
  export declare namespace Imports_ {
53
53
  type I = i_in.Imports;
54
54
  type O = i_out.Imports;
55
55
  namespace P {
56
56
  }
57
57
  }
58
- export type Imports_ = ($$_: Imports_.I) => Imports_.O;
58
+ export type Imports_ = (context: Imports_.I) => Imports_.O;
59
59
  export declare namespace Dictionary_ {
60
60
  type I = i_in.Dictionary;
61
61
  type O = i_out.Dictionary;
62
62
  namespace P {
63
63
  }
64
64
  }
65
- export type Dictionary_ = ($$_: Dictionary_.I) => Dictionary_.O;
65
+ export type Dictionary_ = (context: Dictionary_.I) => Dictionary_.O;
66
66
  export declare namespace Group_ {
67
67
  type I = i_in.Group;
68
68
  type O = i_out.Group;
69
69
  namespace P {
70
70
  }
71
71
  }
72
- export type Group_ = ($$_: Group_.I) => Group_.O;
72
+ export type Group_ = (context: Group_.I) => Group_.O;
73
73
  export declare namespace Type_Node_ {
74
74
  type I = i_in.Type_Node;
75
75
  type O = i_out.Type_Node;
76
76
  namespace P {
77
77
  }
78
78
  }
79
- export type Type_Node_ = ($$_: Type_Node_.I) => Type_Node_.O;
79
+ export type Type_Node_ = (context: Type_Node_.I) => Type_Node_.O;
80
80
  export { Schemas_ as Schemas, Text_Type_ as Text_Type, Globals_ as Globals, Type_ as Type, Types_ as Types, Schema_ as Schema, Schema_Tree_ as Schema_Tree, Imports_ as Imports, Dictionary_ as Dictionary, Group_ as Group, Type_Node_ as Type_Node, };
@@ -9,7 +9,7 @@ export declare namespace Text_Type_ {
9
9
  namespace P {
10
10
  }
11
11
  }
12
- export type Text_Type_ = ($$_: Text_Type_.I, abort: _pi.Abort<Text_Type_.E>, lookups: null, p: null) => Text_Type_.O;
12
+ export type Text_Type_ = (context: Text_Type_.I, abort: _pi.Abort<Text_Type_.E>, lookups: null, parameters: null) => Text_Type_.O;
13
13
  export declare namespace Globals_ {
14
14
  type I = i_unresolved.Globals;
15
15
  type O = i_resolved.Globals;
@@ -17,7 +17,7 @@ export declare namespace Globals_ {
17
17
  namespace P {
18
18
  }
19
19
  }
20
- export type Globals_ = ($$_: Globals_.I, abort: _pi.Abort<Globals_.E>, lookups: null, p: null) => Globals_.O;
20
+ export type Globals_ = (context: Globals_.I, abort: _pi.Abort<Globals_.E>, lookups: null, parameters: null) => Globals_.O;
21
21
  export declare namespace Group_ {
22
22
  type I = i_unresolved.Group;
23
23
  type O = i_resolved.Group;
@@ -39,10 +39,10 @@ export declare namespace Group_ {
39
39
  type imports = _pi.Optional_Value<imports.O>;
40
40
  }
41
41
  }
42
- export type Group_ = ($$_: Group_.I, abort: _pi.Abort<Group_.E>, lookups: {
42
+ export type Group_ = (context: Group_.I, abort: _pi.Abort<Group_.E>, lookups: {
43
43
  readonly 'noncircular sibling types': _pi.Acyclic_Lookup<Group_.L.noncircular_sibling_types>;
44
44
  readonly 'possibly circular dependent sibling types': _pi.Cyclic_Lookup<Group_.L.possibly_circular_dependent_sibling_types>;
45
- }, p: {
45
+ }, parameters: {
46
46
  readonly 'globals': Group_.P.globals;
47
47
  readonly 'imports': Group_.P.imports;
48
48
  }) => Group_.O;
@@ -67,10 +67,10 @@ export declare namespace Dictionary_ {
67
67
  type imports = _pi.Optional_Value<imports.O>;
68
68
  }
69
69
  }
70
- export type Dictionary_ = ($$_: Dictionary_.I, abort: _pi.Abort<Dictionary_.E>, lookups: {
70
+ export type Dictionary_ = (context: Dictionary_.I, abort: _pi.Abort<Dictionary_.E>, lookups: {
71
71
  readonly 'noncircular sibling types': _pi.Acyclic_Lookup<Dictionary_.L.noncircular_sibling_types>;
72
72
  readonly 'possibly circular dependent sibling types': _pi.Cyclic_Lookup<Dictionary_.L.possibly_circular_dependent_sibling_types>;
73
- }, p: {
73
+ }, parameters: {
74
74
  readonly 'globals': Dictionary_.P.globals;
75
75
  readonly 'imports': Dictionary_.P.imports;
76
76
  }) => Dictionary_.O;
@@ -95,10 +95,10 @@ export declare namespace Type_Node_ {
95
95
  type imports = _pi.Optional_Value<imports.O>;
96
96
  }
97
97
  }
98
- export type Type_Node_ = ($$_: Type_Node_.I, abort: _pi.Abort<Type_Node_.E>, lookups: {
98
+ export type Type_Node_ = (context: Type_Node_.I, abort: _pi.Abort<Type_Node_.E>, lookups: {
99
99
  readonly 'noncircular sibling types': _pi.Acyclic_Lookup<Type_Node_.L.noncircular_sibling_types>;
100
100
  readonly 'possibly circular dependent sibling types': _pi.Cyclic_Lookup<Type_Node_.L.possibly_circular_dependent_sibling_types>;
101
- }, p: {
101
+ }, parameters: {
102
102
  readonly 'globals': Type_Node_.P.globals;
103
103
  readonly 'imports': Type_Node_.P.imports;
104
104
  }) => Type_Node_.O;
@@ -123,10 +123,10 @@ export declare namespace Type_ {
123
123
  type imports = _pi.Optional_Value<imports.O>;
124
124
  }
125
125
  }
126
- export type Type_ = ($$_: Type_.I, abort: _pi.Abort<Type_.E>, lookups: {
126
+ export type Type_ = (context: Type_.I, abort: _pi.Abort<Type_.E>, lookups: {
127
127
  readonly 'noncircular sibling types': _pi.Acyclic_Lookup<Type_.L.noncircular_sibling_types>;
128
128
  readonly 'possibly circular dependent sibling types': _pi.Cyclic_Lookup<Type_.L.possibly_circular_dependent_sibling_types>;
129
- }, p: {
129
+ }, parameters: {
130
130
  readonly 'globals': Type_.P.globals;
131
131
  readonly 'imports': Type_.P.imports;
132
132
  }) => Type_.O;
@@ -140,9 +140,9 @@ export declare namespace Schemas_ {
140
140
  namespace P {
141
141
  }
142
142
  }
143
- export type Schemas_ = ($$_: Schemas_.I, abort: _pi.Abort<Schemas_.E>, lookups: {
143
+ export type Schemas_ = (context: Schemas_.I, abort: _pi.Abort<Schemas_.E>, lookups: {
144
144
  readonly 'sibling schemas': _pi.Stack_Lookup<Schemas_.L.sibling_schemas>;
145
- }, p: null) => Schemas_.O;
145
+ }, parameters: null) => Schemas_.O;
146
146
  export declare namespace Schema_Tree_ {
147
147
  type I = i_unresolved.Schema_Tree;
148
148
  type O = i_resolved.Schema_Tree;
@@ -153,9 +153,9 @@ export declare namespace Schema_Tree_ {
153
153
  namespace P {
154
154
  }
155
155
  }
156
- export type Schema_Tree_ = ($$_: Schema_Tree_.I, abort: _pi.Abort<Schema_Tree_.E>, lookups: {
156
+ export type Schema_Tree_ = (context: Schema_Tree_.I, abort: _pi.Abort<Schema_Tree_.E>, lookups: {
157
157
  readonly 'sibling schemas': _pi.Stack_Lookup<Schema_Tree_.L.sibling_schemas>;
158
- }, p: null) => Schema_Tree_.O;
158
+ }, parameters: null) => Schema_Tree_.O;
159
159
  export declare namespace Schema_ {
160
160
  type I = i_unresolved.Schema;
161
161
  type O = i_resolved.Schema;
@@ -166,9 +166,9 @@ export declare namespace Schema_ {
166
166
  namespace P {
167
167
  }
168
168
  }
169
- export type Schema_ = ($$_: Schema_.I, abort: _pi.Abort<Schema_.E>, lookups: {
169
+ export type Schema_ = (context: Schema_.I, abort: _pi.Abort<Schema_.E>, lookups: {
170
170
  readonly 'sibling schemas': _pi.Stack_Lookup<Schema_.L.sibling_schemas>;
171
- }, p: null) => Schema_.O;
171
+ }, parameters: null) => Schema_.O;
172
172
  export declare namespace Imports_ {
173
173
  type I = i_unresolved.Imports;
174
174
  type O = i_resolved.Imports;
@@ -179,9 +179,9 @@ export declare namespace Imports_ {
179
179
  namespace P {
180
180
  }
181
181
  }
182
- export type Imports_ = ($$_: Imports_.I, abort: _pi.Abort<Imports_.E>, lookups: {
182
+ export type Imports_ = (context: Imports_.I, abort: _pi.Abort<Imports_.E>, lookups: {
183
183
  readonly 'sibling schemas': _pi.Stack_Lookup<Imports_.L.sibling_schemas>;
184
- }, p: null) => Imports_.O;
184
+ }, parameters: null) => Imports_.O;
185
185
  export declare namespace Types_ {
186
186
  type I = i_unresolved.Types;
187
187
  type O = i_resolved.Types;
@@ -197,7 +197,7 @@ export declare namespace Types_ {
197
197
  type imports = _pi.Optional_Value<imports.O>;
198
198
  }
199
199
  }
200
- export type Types_ = ($$_: Types_.I, abort: _pi.Abort<Types_.E>, lookups: null, p: {
200
+ export type Types_ = (context: Types_.I, abort: _pi.Abort<Types_.E>, lookups: null, parameters: {
201
201
  readonly 'globals': Types_.P.globals;
202
202
  readonly 'imports': Types_.P.imports;
203
203
  }) => Types_.O;
@@ -0,0 +1,79 @@
1
+ import * as i_in from "./data/resolved";
2
+ export declare namespace Schemas_ {
3
+ type I = i_in.Schemas;
4
+ type O = string;
5
+ namespace P {
6
+ }
7
+ }
8
+ export type Schemas_ = (context: Schemas_.I) => Schemas_.O;
9
+ export declare namespace Text_Type_ {
10
+ type I = i_in.Text_Type;
11
+ type O = string;
12
+ namespace P {
13
+ }
14
+ }
15
+ export type Text_Type_ = (context: Text_Type_.I) => Text_Type_.O;
16
+ export declare namespace Globals_ {
17
+ type I = i_in.Globals;
18
+ type O = string;
19
+ namespace P {
20
+ }
21
+ }
22
+ export type Globals_ = (context: Globals_.I) => Globals_.O;
23
+ export declare namespace Type_ {
24
+ type I = i_in.Type;
25
+ type O = string;
26
+ namespace P {
27
+ }
28
+ }
29
+ export type Type_ = (context: Type_.I) => Type_.O;
30
+ export declare namespace Types_ {
31
+ type I = i_in.Types;
32
+ type O = string;
33
+ namespace P {
34
+ }
35
+ }
36
+ export type Types_ = (context: Types_.I) => Types_.O;
37
+ export declare namespace Schema_ {
38
+ type I = i_in.Schema;
39
+ type O = string;
40
+ namespace P {
41
+ }
42
+ }
43
+ export type Schema_ = (context: Schema_.I) => Schema_.O;
44
+ export declare namespace Schema_Tree_ {
45
+ type I = i_in.Schema_Tree;
46
+ type O = string;
47
+ namespace P {
48
+ }
49
+ }
50
+ export type Schema_Tree_ = (context: Schema_Tree_.I) => Schema_Tree_.O;
51
+ export declare namespace Imports_ {
52
+ type I = i_in.Imports;
53
+ type O = string;
54
+ namespace P {
55
+ }
56
+ }
57
+ export type Imports_ = (context: Imports_.I) => Imports_.O;
58
+ export declare namespace Dictionary_ {
59
+ type I = i_in.Dictionary;
60
+ type O = string;
61
+ namespace P {
62
+ }
63
+ }
64
+ export type Dictionary_ = (context: Dictionary_.I) => Dictionary_.O;
65
+ export declare namespace Group_ {
66
+ type I = i_in.Group;
67
+ type O = string;
68
+ namespace P {
69
+ }
70
+ }
71
+ export type Group_ = (context: Group_.I) => Group_.O;
72
+ export declare namespace Type_Node_ {
73
+ type I = i_in.Type_Node;
74
+ type O = string;
75
+ namespace P {
76
+ }
77
+ }
78
+ export type Type_Node_ = (context: Type_Node_.I) => Type_Node_.O;
79
+ export { Schemas_ as Schemas, Text_Type_ as Text_Type, Globals_ as Globals, Type_ as Type, Types_ as Types, Schema_ as Schema, Schema_Tree_ as Schema_Tree, Imports_ as Imports, Dictionary_ as Dictionary, Group_ as Group, Type_Node_ as Type_Node, };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvbGlhbmEvc2NoZW1hcy9hc3RuX3NjaGVtYS9zZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,80 @@
1
+ import * as i_out from "./data/unresolved";
2
+ import * as i_in from "astn-core/dist/interface/generated/liana/schemas/parse_tree/data";
3
+ export declare namespace Schemas_ {
4
+ type I = i_in.Value;
5
+ type O = i_out.Schemas;
6
+ namespace P {
7
+ }
8
+ }
9
+ export type Schemas_ = (context: Schemas_.I) => Schemas_.O;
10
+ export declare namespace Text_Type_ {
11
+ type I = i_in.Value;
12
+ type O = i_out.Text_Type;
13
+ namespace P {
14
+ }
15
+ }
16
+ export type Text_Type_ = (context: Text_Type_.I) => Text_Type_.O;
17
+ export declare namespace Globals_ {
18
+ type I = i_in.Value;
19
+ type O = i_out.Globals;
20
+ namespace P {
21
+ }
22
+ }
23
+ export type Globals_ = (context: Globals_.I) => Globals_.O;
24
+ export declare namespace Type_ {
25
+ type I = i_in.Value;
26
+ type O = i_out.Type;
27
+ namespace P {
28
+ }
29
+ }
30
+ export type Type_ = (context: Type_.I) => Type_.O;
31
+ export declare namespace Types_ {
32
+ type I = i_in.Value;
33
+ type O = i_out.Types;
34
+ namespace P {
35
+ }
36
+ }
37
+ export type Types_ = (context: Types_.I) => Types_.O;
38
+ export declare namespace Schema_ {
39
+ type I = i_in.Value;
40
+ type O = i_out.Schema;
41
+ namespace P {
42
+ }
43
+ }
44
+ export type Schema_ = (context: Schema_.I) => Schema_.O;
45
+ export declare namespace Schema_Tree_ {
46
+ type I = i_in.Value;
47
+ type O = i_out.Schema_Tree;
48
+ namespace P {
49
+ }
50
+ }
51
+ export type Schema_Tree_ = (context: Schema_Tree_.I) => Schema_Tree_.O;
52
+ export declare namespace Imports_ {
53
+ type I = i_in.Value;
54
+ type O = i_out.Imports;
55
+ namespace P {
56
+ }
57
+ }
58
+ export type Imports_ = (context: Imports_.I) => Imports_.O;
59
+ export declare namespace Dictionary_ {
60
+ type I = i_in.Value;
61
+ type O = i_out.Dictionary;
62
+ namespace P {
63
+ }
64
+ }
65
+ export type Dictionary_ = (context: Dictionary_.I) => Dictionary_.O;
66
+ export declare namespace Group_ {
67
+ type I = i_in.Value;
68
+ type O = i_out.Group;
69
+ namespace P {
70
+ }
71
+ }
72
+ export type Group_ = (context: Group_.I) => Group_.O;
73
+ export declare namespace Type_Node_ {
74
+ type I = i_in.Value;
75
+ type O = i_out.Type_Node;
76
+ namespace P {
77
+ }
78
+ }
79
+ export type Type_Node_ = (context: Type_Node_.I) => Type_Node_.O;
80
+ export { Schemas_ as Schemas, Text_Type_ as Text_Type, Globals_ as Globals, Type_ as Type, Types_ as Types, Schema_ as Schema, Schema_Tree_ as Schema_Tree, Imports_ as Imports, Dictionary_ as Dictionary, Group_ as Group, Type_Node_ as Type_Node, };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5tYXJzaGFsbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL2xpYW5hL3NjaGVtYXMvYXN0bl9zY2hlbWEvdW5tYXJzaGFsbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -50,18 +50,18 @@ export declare namespace Value_ {
50
50
  type set_ = Value_;
51
51
  }
52
52
  type optional = readonly ['not set', optional.not_set] | readonly ['set', optional.set_];
53
- namespace state_group {
53
+ namespace state {
54
54
  type missing_data = null;
55
55
  namespace set_ {
56
- type state = string;
56
+ type option = string;
57
57
  type value = Value_;
58
58
  }
59
59
  type set_ = {
60
- readonly 'state': set_.state;
60
+ readonly 'option': set_.option;
61
61
  readonly 'value': set_.value;
62
62
  };
63
63
  }
64
- type state_group = readonly ['missing data', state_group.missing_data] | readonly ['set', state_group.set_];
64
+ type state = readonly ['missing data', state.missing_data] | readonly ['set', state.set_];
65
65
  namespace text {
66
66
  type value = string;
67
67
  namespace delimiter {
@@ -76,7 +76,7 @@ export declare namespace Value_ {
76
76
  readonly 'delimiter': text.delimiter;
77
77
  };
78
78
  }
79
- type type_ = readonly ['dictionary', type_.dictionary] | readonly ['group', type_.group] | readonly ['list', type_.list] | readonly ['nothing', type_.nothing] | readonly ['optional', type_.optional] | readonly ['state group', type_.state_group] | readonly ['text', type_.text];
79
+ type type_ = readonly ['dictionary', type_.dictionary] | readonly ['group', type_.group] | readonly ['list', type_.list] | readonly ['nothing', type_.nothing] | readonly ['optional', type_.optional] | readonly ['state', type_.state] | readonly ['text', type_.text];
80
80
  }
81
81
  type concrete = {
82
82
  readonly 'type': concrete.type_;
@@ -0,0 +1,16 @@
1
+ import * as i_out from "./data";
2
+ export declare namespace Value_ {
3
+ type I = string;
4
+ type O = i_out.Value;
5
+ namespace P {
6
+ }
7
+ }
8
+ export type Value_ = (context: Value_.I) => Value_.O;
9
+ export declare namespace Document_ {
10
+ type I = string;
11
+ type O = i_out.Document;
12
+ namespace P {
13
+ }
14
+ }
15
+ export type Document_ = (context: Document_.I) => Document_.O;
16
+ export { Value_ as Value, Document_ as Document, };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9saWFuYS9zY2hlbWFzL2F1dGhvcmluZ190YXJnZXQvZGVzZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,17 @@
1
+ import * as i_out from "astn-core/dist/interface/generated/liana/schemas/sealed_target/data";
2
+ import * as i_in from "./data";
3
+ export declare namespace Value_ {
4
+ type I = i_in.Value;
5
+ type O = i_out.Value;
6
+ namespace P {
7
+ }
8
+ }
9
+ export type Value_ = (context: Value_.I) => Value_.O;
10
+ export declare namespace Document_ {
11
+ type I = i_in.Document;
12
+ type O = i_out.Value;
13
+ namespace P {
14
+ }
15
+ }
16
+ export type Document_ = (context: Document_.I) => Document_.O;
17
+ export { Value_ as Value, Document_ as Document, };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFyc2hhbGwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9saWFuYS9zY2hlbWFzL2F1dGhvcmluZ190YXJnZXQvbWFyc2hhbGwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -6,12 +6,12 @@ export declare namespace Value_ {
6
6
  namespace P {
7
7
  }
8
8
  }
9
- export type Value_ = ($$_: Value_.I) => Value_.O;
9
+ export type Value_ = (context: Value_.I) => Value_.O;
10
10
  export declare namespace Document_ {
11
11
  type I = i_in.Document;
12
12
  type O = i_out.Document;
13
13
  namespace P {
14
14
  }
15
15
  }
16
- export type Document_ = ($$_: Document_.I) => Document_.O;
16
+ export type Document_ = (context: Document_.I) => Document_.O;
17
17
  export { Value_ as Value, Document_ as Document, };
@@ -0,0 +1,16 @@
1
+ import * as i_in from "./data";
2
+ export declare namespace Value_ {
3
+ type I = i_in.Value;
4
+ type O = string;
5
+ namespace P {
6
+ }
7
+ }
8
+ export type Value_ = (context: Value_.I) => Value_.O;
9
+ export declare namespace Document_ {
10
+ type I = i_in.Document;
11
+ type O = string;
12
+ namespace P {
13
+ }
14
+ }
15
+ export type Document_ = (context: Document_.I) => Document_.O;
16
+ export { Value_ as Value, Document_ as Document, };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvbGlhbmEvc2NoZW1hcy9hdXRob3JpbmdfdGFyZ2V0L3NlcmlhbGl6ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=