pareto 0.76.1 → 0.76.3

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 (49) hide show
  1. package/dist/generated/generic/resolve.d.ts +90 -0
  2. package/dist/generated/generic/resolve.js +249 -0
  3. package/dist/generated/implementation/schemas/module/resolve.d.ts +4 -0
  4. package/dist/generated/implementation/schemas/module/resolve.js +149 -0
  5. package/dist/generated/implementation/schemas/schema/resolve.d.ts +35 -0
  6. package/dist/generated/implementation/schemas/schema/resolve.js +1998 -0
  7. package/dist/generated/interface/core/resolved.d.ts +100 -0
  8. package/dist/generated/interface/core/resolved.js +3 -0
  9. package/dist/generated/interface/core/unconstrained.d.ts +19 -0
  10. package/dist/generated/interface/core/unconstrained.js +3 -0
  11. package/dist/generated/interface/core/unresolved.d.ts +184 -0
  12. package/dist/generated/interface/core/unresolved.js +3 -0
  13. package/dist/generated/interface/schemas/module/migration_boilerplate.d.ts +50 -0
  14. package/dist/generated/interface/schemas/module/migration_boilerplate.js +3 -0
  15. package/dist/generated/interface/schemas/module/resolve.d.ts +127 -0
  16. package/dist/generated/interface/schemas/module/resolve.js +3 -0
  17. package/dist/generated/interface/schemas/module/resolved.d.ts +133 -0
  18. package/dist/generated/interface/schemas/module/resolved.js +3 -0
  19. package/dist/generated/interface/schemas/module/unresolved.d.ts +133 -0
  20. package/dist/generated/interface/schemas/module/unresolved.js +3 -0
  21. package/dist/generated/interface/schemas/schema/migration_boilerplate.d.ts +794 -0
  22. package/dist/generated/interface/schemas/schema/migration_boilerplate.js +3 -0
  23. package/dist/generated/interface/schemas/schema/resolve.d.ts +4401 -0
  24. package/dist/generated/interface/schemas/schema/resolve.js +3 -0
  25. package/dist/generated/interface/schemas/schema/resolved.d.ts +3793 -0
  26. package/dist/generated/interface/schemas/schema/resolved.js +3 -0
  27. package/dist/generated/interface/schemas/schema/unresolved.d.ts +3793 -0
  28. package/dist/generated/interface/schemas/schema/unresolved.js +3 -0
  29. package/dist/globals.d.ts +24 -0
  30. package/dist/globals.js +2 -0
  31. package/dist/index.d.ts +1 -0
  32. package/dist/index.js +5 -0
  33. package/dist/shorthands/module.d.ts +8 -0
  34. package/dist/shorthands/module.js +29 -0
  35. package/dist/shorthands/schema.d.ts +139 -0
  36. package/dist/shorthands/schema.js +870 -0
  37. package/dist/transformations/unmarshall/collect_errors.d.ts +38 -0
  38. package/dist/transformations/unmarshall/collect_errors.js +185 -0
  39. package/dist/transformations/unmarshall/dynamic_post_parse.d.ts +7 -0
  40. package/dist/transformations/unmarshall/dynamic_post_parse.js +267 -0
  41. package/dist/transformations/unmarshall/post_parse_types.d.ts +77 -0
  42. package/dist/transformations/unmarshall/post_parse_types.js +3 -0
  43. package/dist/unmarshall/collect_errors.d.ts +38 -0
  44. package/dist/unmarshall/collect_errors.js +185 -0
  45. package/dist/unmarshall/dynamic_post_parse.d.ts +7 -0
  46. package/dist/unmarshall/dynamic_post_parse.js +267 -0
  47. package/dist/unmarshall/post_parse_types.d.ts +77 -0
  48. package/dist/unmarshall/post_parse_types.js +3 -0
  49. package/package.json +2 -1
@@ -0,0 +1,100 @@
1
+ import * as _pt from 'exupery-core-types';
2
+ export type _T_Derived_Reference<G_Source, T_Type> = T_Type;
3
+ export type _T_Dictionary<G_Source, T_D> = _pt.Dictionary<T_D>;
4
+ export type _T_List<G_Source, T_L> = _pt.Array<T_L>;
5
+ export type _T_Ordered_Dictionary<G_Source, T_D> = {
6
+ readonly 'dictionary': _pt.Dictionary<T_D>;
7
+ readonly 'ordered list': _pt.Array<_pt.Key_Value_Pair<T_D>>;
8
+ };
9
+ export type _T_Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry> = {
10
+ readonly 'entry': _pt.Computed_Value<T_Dictionary_Entry>;
11
+ readonly 'key': string;
12
+ };
13
+ export type _T_Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
14
+ readonly 'entry': T_Dictionary_Entry;
15
+ readonly 'key': string;
16
+ };
17
+ export type _T_Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
18
+ readonly 'entry': T_Dictionary_Entry;
19
+ readonly 'key': string;
20
+ readonly 'up steps': number;
21
+ };
22
+ export type _T_State_Group<G_Source, T_SG> = T_SG;
23
+ export type Derived_Reference<G_Source, T_Type> = _T_Derived_Reference<G_Source, T_Type>;
24
+ export type Dictionary<G_Source, T_D> = _T_Dictionary<G_Source, T_D>;
25
+ export type List<G_Source, T_L> = _T_List<G_Source, T_L>;
26
+ export type Ordered_Dictionary<G_Source, T_D> = _T_Ordered_Dictionary<G_Source, T_D>;
27
+ export type Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry> = _T_Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry>;
28
+ export type Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry> = _T_Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry>;
29
+ export type Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry> = _T_Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry>;
30
+ export type State_Group<G_Source, T_SG> = _T_State_Group<G_Source, T_SG>;
31
+ export declare namespace _T_Dictionary {
32
+ type D<G_Source, T_D> = T_D;
33
+ }
34
+ export declare namespace _T_List {
35
+ type L<G_Source, T_L> = T_L;
36
+ }
37
+ export declare namespace _T_Ordered_Dictionary {
38
+ namespace dictionary {
39
+ type D<G_Source, T_D> = T_D;
40
+ }
41
+ type dictionary<G_Source, T_D> = _pt.Dictionary<T_D>;
42
+ namespace ordered_list {
43
+ namespace L {
44
+ type K<G_Source, T_D> = T_D;
45
+ }
46
+ type L<G_Source, T_D> = _pt.Key_Value_Pair<T_D>;
47
+ }
48
+ type ordered_list<G_Source, T_D> = _pt.Array<_pt.Key_Value_Pair<T_D>>;
49
+ }
50
+ export declare namespace _T_Reference_To_Circular_Dependent_Sibling {
51
+ namespace entry {
52
+ type C<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
53
+ }
54
+ type entry<G_Source, T_Dictionary_Entry> = _pt.Computed_Value<T_Dictionary_Entry>;
55
+ type key<G_Source, T_Dictionary_Entry> = string;
56
+ }
57
+ export declare namespace _T_Reference_To_Normal_Dictionary_Entry {
58
+ type entry<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
59
+ type key<G_Source, T_Dictionary_Entry> = string;
60
+ }
61
+ export declare namespace _T_Reference_To_Stacked_Dictionary_Entry {
62
+ type entry<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
63
+ type key<G_Source, T_Dictionary_Entry> = string;
64
+ type up_steps<G_Source, T_Dictionary_Entry> = number;
65
+ }
66
+ export declare namespace Dictionary {
67
+ type D<G_Source, T_D> = T_D;
68
+ }
69
+ export declare namespace List {
70
+ type L<G_Source, T_L> = T_L;
71
+ }
72
+ export declare namespace Ordered_Dictionary {
73
+ namespace dictionary {
74
+ type D<G_Source, T_D> = T_D;
75
+ }
76
+ type dictionary<G_Source, T_D> = _pt.Dictionary<T_D>;
77
+ namespace ordered_list {
78
+ namespace L {
79
+ type K<G_Source, T_D> = T_D;
80
+ }
81
+ type L<G_Source, T_D> = _pt.Key_Value_Pair<T_D>;
82
+ }
83
+ type ordered_list<G_Source, T_D> = _pt.Array<_pt.Key_Value_Pair<T_D>>;
84
+ }
85
+ export declare namespace Reference_To_Circular_Dependent_Sibling {
86
+ namespace entry {
87
+ type C<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
88
+ }
89
+ type entry<G_Source, T_Dictionary_Entry> = _pt.Computed_Value<T_Dictionary_Entry>;
90
+ type key<G_Source, T_Dictionary_Entry> = string;
91
+ }
92
+ export declare namespace Reference_To_Normal_Dictionary_Entry {
93
+ type entry<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
94
+ type key<G_Source, T_Dictionary_Entry> = string;
95
+ }
96
+ export declare namespace Reference_To_Stacked_Dictionary_Entry {
97
+ type entry<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
98
+ type key<G_Source, T_Dictionary_Entry> = string;
99
+ type up_steps<G_Source, T_Dictionary_Entry> = number;
100
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZWQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9jb3JlL3Jlc29sdmVkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -0,0 +1,19 @@
1
+ import * as _pt from 'exupery-core-types';
2
+ export type _T_Dictionary<G_Source, T_D> = _pt.Dictionary<T_D>;
3
+ export type _T_List<G_Source, T_L> = _pt.Array<T_L>;
4
+ export type _T_State_Group<G_Source, T_SG> = T_SG;
5
+ export type Dictionary<G_Source, T_D> = _T_Dictionary<G_Source, T_D>;
6
+ export type List<G_Source, T_L> = _T_List<G_Source, T_L>;
7
+ export type State_Group<G_Source, T_SG> = _T_State_Group<G_Source, T_SG>;
8
+ export declare namespace _T_Dictionary {
9
+ type D<G_Source, T_D> = T_D;
10
+ }
11
+ export declare namespace _T_List {
12
+ type L<G_Source, T_L> = T_L;
13
+ }
14
+ export declare namespace Dictionary {
15
+ type D<G_Source, T_D> = T_D;
16
+ }
17
+ export declare namespace List {
18
+ type L<G_Source, T_L> = T_L;
19
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL2NvcmUvdW5jb25zdHJhaW5lZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,184 @@
1
+ import * as _pt from 'exupery-core-types';
2
+ export type _T_Derived_Reference<G_Source, T_Type> = null;
3
+ export type _T_Dictionary<G_Source, T_D> = {
4
+ readonly 'dictionary': _pt.Dictionary<{
5
+ readonly 'entry': T_D;
6
+ readonly 'location': G_Source;
7
+ }>;
8
+ readonly 'location': G_Source;
9
+ };
10
+ export type _T_List<G_Source, T_L> = {
11
+ readonly 'list': _pt.Array<{
12
+ readonly 'element': T_L;
13
+ readonly 'location': G_Source;
14
+ }>;
15
+ readonly 'location': G_Source;
16
+ };
17
+ export type _T_Ordered_Dictionary<G_Source, T_D> = {
18
+ readonly 'dictionary': _pt.Dictionary<{
19
+ readonly 'entry': T_D;
20
+ readonly 'location': G_Source;
21
+ }>;
22
+ readonly 'location': G_Source;
23
+ };
24
+ export type _T_Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry> = {
25
+ readonly 'key': string;
26
+ readonly 'location': G_Source;
27
+ };
28
+ export type _T_Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
29
+ readonly 'key': string;
30
+ readonly 'location': G_Source;
31
+ };
32
+ export type _T_Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
33
+ readonly 'key': string;
34
+ readonly 'location': G_Source;
35
+ readonly 'up steps': number;
36
+ };
37
+ export type _T_State_Group<G_Source, T_SG> = {
38
+ readonly 'location': G_Source;
39
+ readonly 'state group': T_SG;
40
+ };
41
+ export type Derived_Reference<G_Source, T_Type> = _T_Derived_Reference<G_Source, T_Type>;
42
+ export type Dictionary<G_Source, T_D> = _T_Dictionary<G_Source, T_D>;
43
+ export type List<G_Source, T_L> = _T_List<G_Source, T_L>;
44
+ export type Ordered_Dictionary<G_Source, T_D> = _T_Ordered_Dictionary<G_Source, T_D>;
45
+ export type Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry> = _T_Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry>;
46
+ export type Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry> = _T_Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry>;
47
+ export type Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry> = _T_Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry>;
48
+ export type State_Group<G_Source, T_SG> = _T_State_Group<G_Source, T_SG>;
49
+ export declare namespace _T_Dictionary {
50
+ namespace dictionary {
51
+ namespace D {
52
+ type entry<G_Source, T_D> = T_D;
53
+ type location<G_Source, T_D> = G_Source;
54
+ }
55
+ type D<G_Source, T_D> = {
56
+ readonly 'entry': T_D;
57
+ readonly 'location': G_Source;
58
+ };
59
+ }
60
+ type dictionary<G_Source, T_D> = _pt.Dictionary<{
61
+ readonly 'entry': T_D;
62
+ readonly 'location': G_Source;
63
+ }>;
64
+ type location<G_Source, T_D> = G_Source;
65
+ }
66
+ export declare namespace _T_List {
67
+ namespace list {
68
+ namespace L {
69
+ type element<G_Source, T_L> = T_L;
70
+ type location<G_Source, T_L> = G_Source;
71
+ }
72
+ type L<G_Source, T_L> = {
73
+ readonly 'element': T_L;
74
+ readonly 'location': G_Source;
75
+ };
76
+ }
77
+ type list<G_Source, T_L> = _pt.Array<{
78
+ readonly 'element': T_L;
79
+ readonly 'location': G_Source;
80
+ }>;
81
+ type location<G_Source, T_L> = G_Source;
82
+ }
83
+ export declare namespace _T_Ordered_Dictionary {
84
+ namespace dictionary {
85
+ namespace D {
86
+ type entry<G_Source, T_D> = T_D;
87
+ type location<G_Source, T_D> = G_Source;
88
+ }
89
+ type D<G_Source, T_D> = {
90
+ readonly 'entry': T_D;
91
+ readonly 'location': G_Source;
92
+ };
93
+ }
94
+ type dictionary<G_Source, T_D> = _pt.Dictionary<{
95
+ readonly 'entry': T_D;
96
+ readonly 'location': G_Source;
97
+ }>;
98
+ type location<G_Source, T_D> = G_Source;
99
+ }
100
+ export declare namespace _T_Reference_To_Circular_Dependent_Sibling {
101
+ type key<G_Source, T_Dictionary_Entry> = string;
102
+ type location<G_Source, T_Dictionary_Entry> = G_Source;
103
+ }
104
+ export declare namespace _T_Reference_To_Normal_Dictionary_Entry {
105
+ type key<G_Source, T_Dictionary_Entry> = string;
106
+ type location<G_Source, T_Dictionary_Entry> = G_Source;
107
+ }
108
+ export declare namespace _T_Reference_To_Stacked_Dictionary_Entry {
109
+ type key<G_Source, T_Dictionary_Entry> = string;
110
+ type location<G_Source, T_Dictionary_Entry> = G_Source;
111
+ type up_steps<G_Source, T_Dictionary_Entry> = number;
112
+ }
113
+ export declare namespace _T_State_Group {
114
+ type location<G_Source, T_SG> = G_Source;
115
+ type state_group<G_Source, T_SG> = T_SG;
116
+ }
117
+ export declare namespace Dictionary {
118
+ namespace dictionary {
119
+ namespace D {
120
+ type entry<G_Source, T_D> = T_D;
121
+ type location<G_Source, T_D> = G_Source;
122
+ }
123
+ type D<G_Source, T_D> = {
124
+ readonly 'entry': T_D;
125
+ readonly 'location': G_Source;
126
+ };
127
+ }
128
+ type dictionary<G_Source, T_D> = _pt.Dictionary<{
129
+ readonly 'entry': T_D;
130
+ readonly 'location': G_Source;
131
+ }>;
132
+ type location<G_Source, T_D> = G_Source;
133
+ }
134
+ export declare namespace List {
135
+ namespace list {
136
+ namespace L {
137
+ type element<G_Source, T_L> = T_L;
138
+ type location<G_Source, T_L> = G_Source;
139
+ }
140
+ type L<G_Source, T_L> = {
141
+ readonly 'element': T_L;
142
+ readonly 'location': G_Source;
143
+ };
144
+ }
145
+ type list<G_Source, T_L> = _pt.Array<{
146
+ readonly 'element': T_L;
147
+ readonly 'location': G_Source;
148
+ }>;
149
+ type location<G_Source, T_L> = G_Source;
150
+ }
151
+ export declare namespace Ordered_Dictionary {
152
+ namespace dictionary {
153
+ namespace D {
154
+ type entry<G_Source, T_D> = T_D;
155
+ type location<G_Source, T_D> = G_Source;
156
+ }
157
+ type D<G_Source, T_D> = {
158
+ readonly 'entry': T_D;
159
+ readonly 'location': G_Source;
160
+ };
161
+ }
162
+ type dictionary<G_Source, T_D> = _pt.Dictionary<{
163
+ readonly 'entry': T_D;
164
+ readonly 'location': G_Source;
165
+ }>;
166
+ type location<G_Source, T_D> = G_Source;
167
+ }
168
+ export declare namespace Reference_To_Circular_Dependent_Sibling {
169
+ type key<G_Source, T_Dictionary_Entry> = string;
170
+ type location<G_Source, T_Dictionary_Entry> = G_Source;
171
+ }
172
+ export declare namespace Reference_To_Normal_Dictionary_Entry {
173
+ type key<G_Source, T_Dictionary_Entry> = string;
174
+ type location<G_Source, T_Dictionary_Entry> = G_Source;
175
+ }
176
+ export declare namespace Reference_To_Stacked_Dictionary_Entry {
177
+ type key<G_Source, T_Dictionary_Entry> = string;
178
+ type location<G_Source, T_Dictionary_Entry> = G_Source;
179
+ type up_steps<G_Source, T_Dictionary_Entry> = number;
180
+ }
181
+ export declare namespace State_Group {
182
+ type location<G_Source, T_SG> = G_Source;
183
+ type state_group<G_Source, T_SG> = T_SG;
184
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5yZXNvbHZlZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL2NvcmUvdW5yZXNvbHZlZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,50 @@
1
+ import * as _i_in from "./resolved";
2
+ import * as _i_out from "./unresolved";
3
+ export type _T_Module = ($$_: _i_in._T_Module, $$_p: null) => _i_out._T_Module<null>;
4
+ export type _T_Operations = ($$_: _i_in._T_Operations, $$_p: null) => _i_out._T_Operations<null>;
5
+ export type Module = _T_Module;
6
+ export type Operations = _T_Operations;
7
+ export declare namespace _T_Module {
8
+ namespace CONTEXT {
9
+ }
10
+ type CONTEXT = _i_in._T_Module;
11
+ namespace PARAMS {
12
+ }
13
+ namespace RESULT {
14
+ type annotation = null;
15
+ }
16
+ type RESULT = _i_out._T_Module<null>;
17
+ }
18
+ export declare namespace _T_Operations {
19
+ namespace CONTEXT {
20
+ }
21
+ type CONTEXT = _i_in._T_Operations;
22
+ namespace PARAMS {
23
+ }
24
+ namespace RESULT {
25
+ type annotation = null;
26
+ }
27
+ type RESULT = _i_out._T_Operations<null>;
28
+ }
29
+ export declare namespace Module {
30
+ namespace CONTEXT {
31
+ }
32
+ type CONTEXT = _i_in._T_Module;
33
+ namespace PARAMS {
34
+ }
35
+ namespace RESULT {
36
+ type annotation = null;
37
+ }
38
+ type RESULT = _i_out._T_Module<null>;
39
+ }
40
+ export declare namespace Operations {
41
+ namespace CONTEXT {
42
+ }
43
+ type CONTEXT = _i_in._T_Operations;
44
+ namespace PARAMS {
45
+ }
46
+ namespace RESULT {
47
+ type annotation = null;
48
+ }
49
+ type RESULT = _i_out._T_Operations<null>;
50
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0aW9uX2JvaWxlcnBsYXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9tb2R1bGUvbWlncmF0aW9uX2JvaWxlcnBsYXRlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -0,0 +1,127 @@
1
+ import * as _i_generic from "../../../generic/resolve";
2
+ import * as _i_resolved from "./resolved";
3
+ import * as _i_unresolved from "./unresolved";
4
+ export type _T_Module<G_Source> = ($$_: _i_unresolved._T_Module<G_Source>, $$_p: {
5
+ readonly 'location 2 string': _i_generic._T_Location_2_String<G_Source>;
6
+ readonly 'parameters': {
7
+ readonly 'lookups': null;
8
+ readonly 'values': null;
9
+ };
10
+ }) => _i_resolved._T_Module;
11
+ export type _T_Operations<G_Source> = ($$_: _i_unresolved._T_Operations<G_Source>, $$_p: {
12
+ readonly 'location 2 string': _i_generic._T_Location_2_String<G_Source>;
13
+ readonly 'parameters': {
14
+ readonly 'lookups': null;
15
+ readonly 'values': null;
16
+ };
17
+ }) => _i_resolved._T_Operations;
18
+ export type Module<G_Source> = _T_Module<G_Source>;
19
+ export type Operations<G_Source> = _T_Operations<G_Source>;
20
+ export declare namespace _T_Module {
21
+ namespace CONTEXT {
22
+ type Source<G_Source> = G_Source;
23
+ }
24
+ type CONTEXT<G_Source> = _i_unresolved._T_Module<G_Source>;
25
+ namespace PARAMS {
26
+ namespace location_2_string {
27
+ type Source<G_Source> = G_Source;
28
+ }
29
+ type location_2_string<G_Source> = _i_generic._T_Location_2_String<G_Source>;
30
+ namespace parameters {
31
+ namespace lookups {
32
+ }
33
+ type lookups<G_Source> = null;
34
+ namespace values {
35
+ }
36
+ type values<G_Source> = null;
37
+ }
38
+ type parameters<G_Source> = {
39
+ readonly 'lookups': null;
40
+ readonly 'values': null;
41
+ };
42
+ }
43
+ namespace RESULT {
44
+ }
45
+ type RESULT<G_Source> = _i_resolved._T_Module;
46
+ }
47
+ export declare namespace _T_Operations {
48
+ namespace CONTEXT {
49
+ type Source<G_Source> = G_Source;
50
+ }
51
+ type CONTEXT<G_Source> = _i_unresolved._T_Operations<G_Source>;
52
+ namespace PARAMS {
53
+ namespace location_2_string {
54
+ type Source<G_Source> = G_Source;
55
+ }
56
+ type location_2_string<G_Source> = _i_generic._T_Location_2_String<G_Source>;
57
+ namespace parameters {
58
+ namespace lookups {
59
+ }
60
+ type lookups<G_Source> = null;
61
+ namespace values {
62
+ }
63
+ type values<G_Source> = null;
64
+ }
65
+ type parameters<G_Source> = {
66
+ readonly 'lookups': null;
67
+ readonly 'values': null;
68
+ };
69
+ }
70
+ namespace RESULT {
71
+ }
72
+ type RESULT<G_Source> = _i_resolved._T_Operations;
73
+ }
74
+ export declare namespace Module {
75
+ namespace CONTEXT {
76
+ type Source<G_Source> = G_Source;
77
+ }
78
+ type CONTEXT<G_Source> = _i_unresolved._T_Module<G_Source>;
79
+ namespace PARAMS {
80
+ namespace location_2_string {
81
+ type Source<G_Source> = G_Source;
82
+ }
83
+ type location_2_string<G_Source> = _i_generic._T_Location_2_String<G_Source>;
84
+ namespace parameters {
85
+ namespace lookups {
86
+ }
87
+ type lookups<G_Source> = null;
88
+ namespace values {
89
+ }
90
+ type values<G_Source> = null;
91
+ }
92
+ type parameters<G_Source> = {
93
+ readonly 'lookups': null;
94
+ readonly 'values': null;
95
+ };
96
+ }
97
+ namespace RESULT {
98
+ }
99
+ type RESULT<G_Source> = _i_resolved._T_Module;
100
+ }
101
+ export declare namespace Operations {
102
+ namespace CONTEXT {
103
+ type Source<G_Source> = G_Source;
104
+ }
105
+ type CONTEXT<G_Source> = _i_unresolved._T_Operations<G_Source>;
106
+ namespace PARAMS {
107
+ namespace location_2_string {
108
+ type Source<G_Source> = G_Source;
109
+ }
110
+ type location_2_string<G_Source> = _i_generic._T_Location_2_String<G_Source>;
111
+ namespace parameters {
112
+ namespace lookups {
113
+ }
114
+ type lookups<G_Source> = null;
115
+ namespace values {
116
+ }
117
+ type values<G_Source> = null;
118
+ }
119
+ type parameters<G_Source> = {
120
+ readonly 'lookups': null;
121
+ readonly 'values': null;
122
+ };
123
+ }
124
+ namespace RESULT {
125
+ }
126
+ type RESULT<G_Source> = _i_resolved._T_Operations;
127
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvbW9kdWxlL3Jlc29sdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,133 @@
1
+ import * as _i_core from "../../core/resolved";
2
+ import * as _i_imports_schema from "../schema/resolved";
3
+ export type _T_Module = {
4
+ readonly 'operations': _T_Operations;
5
+ readonly 'schemas': _i_imports_schema._T_Schemas;
6
+ };
7
+ export type _T_Operations = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly [
8
+ 'operation',
9
+ {
10
+ readonly 'context': _i_imports_schema._T_Type_Node;
11
+ readonly 'parameters': _i_core._T_Dictionary<null, _i_imports_schema._T_Type_Node>;
12
+ readonly 'result': _i_imports_schema._T_Type_Node;
13
+ readonly 'type parameters': _i_imports_schema._T_Type_Parameters;
14
+ }
15
+ ] | readonly ['set', _T_Operations]>>;
16
+ export type Module = _T_Module;
17
+ export type Operations = _T_Operations;
18
+ export declare namespace _T_Module {
19
+ namespace operations {
20
+ }
21
+ type operations = _T_Operations;
22
+ namespace schemas {
23
+ }
24
+ type schemas = _i_imports_schema._T_Schemas;
25
+ }
26
+ export declare namespace _T_Operations {
27
+ namespace D {
28
+ namespace SG {
29
+ namespace operation {
30
+ namespace context {
31
+ }
32
+ type context = _i_imports_schema._T_Type_Node;
33
+ namespace parameters {
34
+ namespace D {
35
+ }
36
+ type D = _i_imports_schema._T_Type_Node;
37
+ }
38
+ type parameters = _i_core._T_Dictionary<null, _i_imports_schema._T_Type_Node>;
39
+ namespace result {
40
+ }
41
+ type result = _i_imports_schema._T_Type_Node;
42
+ namespace type_parameters {
43
+ }
44
+ type type_parameters = _i_imports_schema._T_Type_Parameters;
45
+ }
46
+ type operation = {
47
+ readonly 'context': _i_imports_schema._T_Type_Node;
48
+ readonly 'parameters': _i_core._T_Dictionary<null, _i_imports_schema._T_Type_Node>;
49
+ readonly 'result': _i_imports_schema._T_Type_Node;
50
+ readonly 'type parameters': _i_imports_schema._T_Type_Parameters;
51
+ };
52
+ namespace _set {
53
+ }
54
+ type _set = _T_Operations;
55
+ }
56
+ type SG = readonly [
57
+ 'operation',
58
+ {
59
+ readonly 'context': _i_imports_schema._T_Type_Node;
60
+ readonly 'parameters': _i_core._T_Dictionary<null, _i_imports_schema._T_Type_Node>;
61
+ readonly 'result': _i_imports_schema._T_Type_Node;
62
+ readonly 'type parameters': _i_imports_schema._T_Type_Parameters;
63
+ }
64
+ ] | readonly ['set', _T_Operations];
65
+ }
66
+ type D = _i_core._T_State_Group<null, readonly [
67
+ 'operation',
68
+ {
69
+ readonly 'context': _i_imports_schema._T_Type_Node;
70
+ readonly 'parameters': _i_core._T_Dictionary<null, _i_imports_schema._T_Type_Node>;
71
+ readonly 'result': _i_imports_schema._T_Type_Node;
72
+ readonly 'type parameters': _i_imports_schema._T_Type_Parameters;
73
+ }
74
+ ] | readonly ['set', _T_Operations]>;
75
+ }
76
+ export declare namespace Module {
77
+ namespace operations {
78
+ }
79
+ type operations = _T_Operations;
80
+ namespace schemas {
81
+ }
82
+ type schemas = _i_imports_schema._T_Schemas;
83
+ }
84
+ export declare namespace Operations {
85
+ namespace D {
86
+ namespace SG {
87
+ namespace operation {
88
+ namespace context {
89
+ }
90
+ type context = _i_imports_schema._T_Type_Node;
91
+ namespace parameters {
92
+ namespace D {
93
+ }
94
+ type D = _i_imports_schema._T_Type_Node;
95
+ }
96
+ type parameters = _i_core._T_Dictionary<null, _i_imports_schema._T_Type_Node>;
97
+ namespace result {
98
+ }
99
+ type result = _i_imports_schema._T_Type_Node;
100
+ namespace type_parameters {
101
+ }
102
+ type type_parameters = _i_imports_schema._T_Type_Parameters;
103
+ }
104
+ type operation = {
105
+ readonly 'context': _i_imports_schema._T_Type_Node;
106
+ readonly 'parameters': _i_core._T_Dictionary<null, _i_imports_schema._T_Type_Node>;
107
+ readonly 'result': _i_imports_schema._T_Type_Node;
108
+ readonly 'type parameters': _i_imports_schema._T_Type_Parameters;
109
+ };
110
+ namespace _set {
111
+ }
112
+ type _set = _T_Operations;
113
+ }
114
+ type SG = readonly [
115
+ 'operation',
116
+ {
117
+ readonly 'context': _i_imports_schema._T_Type_Node;
118
+ readonly 'parameters': _i_core._T_Dictionary<null, _i_imports_schema._T_Type_Node>;
119
+ readonly 'result': _i_imports_schema._T_Type_Node;
120
+ readonly 'type parameters': _i_imports_schema._T_Type_Parameters;
121
+ }
122
+ ] | readonly ['set', _T_Operations];
123
+ }
124
+ type D = _i_core._T_State_Group<null, readonly [
125
+ 'operation',
126
+ {
127
+ readonly 'context': _i_imports_schema._T_Type_Node;
128
+ readonly 'parameters': _i_core._T_Dictionary<null, _i_imports_schema._T_Type_Node>;
129
+ readonly 'result': _i_imports_schema._T_Type_Node;
130
+ readonly 'type parameters': _i_imports_schema._T_Type_Parameters;
131
+ }
132
+ ] | readonly ['set', _T_Operations]>;
133
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZWQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL21vZHVsZS9yZXNvbHZlZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=