pareto-fountain-pen 0.1.4 → 0.1.6

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 (36) hide show
  1. package/dist/generated/interface/schemas/block/migration_boilerplate.d.ts +2 -2
  2. package/dist/generated/interface/schemas/block/unconstrained.d.ts +136 -0
  3. package/dist/generated/interface/schemas/block/unconstrained.js +3 -0
  4. package/dist/generated/interface/schemas/block/unresolved.d.ts +50 -50
  5. package/dist/generated/interface/schemas/lines/migration_boilerplate.d.ts +2 -2
  6. package/dist/generated/interface/schemas/lines/unconstrained.d.ts +39 -0
  7. package/dist/generated/interface/schemas/lines/unconstrained.js +3 -0
  8. package/dist/generated/interface/schemas/lines/unresolved.d.ts +14 -14
  9. package/dist/generated/interface/schemas/semi_lines/migration_boilerplate.d.ts +2 -2
  10. package/dist/generated/interface/schemas/semi_lines/unconstrained.d.ts +56 -0
  11. package/dist/generated/interface/schemas/semi_lines/unconstrained.js +3 -0
  12. package/dist/generated/interface/schemas/semi_lines/unresolved.d.ts +18 -18
  13. package/dist/generated/interface/schemas/text/migration_boilerplate.d.ts +2 -2
  14. package/dist/generated/interface/schemas/text/unconstrained.d.ts +33 -0
  15. package/dist/generated/interface/schemas/text/unconstrained.js +3 -0
  16. package/dist/generated/interface/schemas/text/unresolved.d.ts +12 -12
  17. package/dist/index.d.ts +8 -0
  18. package/dist/index.js +45 -0
  19. package/dist/other/write_to_disk.d.ts +6 -2
  20. package/dist/other/write_to_disk.js +9 -4
  21. package/dist/serialize/block.d.ts +1 -1
  22. package/dist/serialize/semi_lines.d.ts +2 -2
  23. package/dist/shorthands/block.d.ts +1 -1
  24. package/dist/shorthands/lines.d.ts +1 -1
  25. package/dist/transformations/block/lines.d.ts +2 -2
  26. package/dist/transformations/block/semi_lines.d.ts +2 -2
  27. package/dist/transformations/semi_lines/lines.d.ts +2 -2
  28. package/package.json +1 -1
  29. package/dist/generated/interface/schemas/block/poormans_parser.d.ts +0 -136
  30. package/dist/generated/interface/schemas/block/poormans_parser.js +0 -3
  31. package/dist/generated/interface/schemas/lines/poormans_parser.d.ts +0 -39
  32. package/dist/generated/interface/schemas/lines/poormans_parser.js +0 -3
  33. package/dist/generated/interface/schemas/semi_lines/poormans_parser.d.ts +0 -56
  34. package/dist/generated/interface/schemas/semi_lines/poormans_parser.js +0 -3
  35. package/dist/generated/interface/schemas/text/poormans_parser.d.ts +0 -33
  36. package/dist/generated/interface/schemas/text/poormans_parser.js +0 -3
@@ -1,5 +1,5 @@
1
- import * as _i_in from "./resolved";
2
- import * as _i_out from "./unresolved";
1
+ import * as _i_in from "./unconstrained";
2
+ import * as _i_out from "./unconstrained";
3
3
  export type _T_Block = ($$_: _i_in._T_Block, $$_p: null) => _i_out._T_Block;
4
4
  export type _T_Block_Part = ($$_: _i_in._T_Block_Part, $$_p: null) => _i_out._T_Block_Part;
5
5
  export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
@@ -0,0 +1,136 @@
1
+ import * as _i_core from "../../core/resolved";
2
+ export type _T_Block = _i_core._T_List<null, _T_Block_Part>;
3
+ export type _T_Block_Part = _i_core._T_State_Group<null, readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block]>;
4
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>>;
5
+ export type _T_Line = _i_core._T_List<null, _T_Line_Part>;
6
+ export type _T_Line_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line]>;
7
+ export type _T_Lines = _i_core._T_List<null, {
8
+ readonly 'indentation': number;
9
+ readonly 'text': string;
10
+ }>;
11
+ export type Block = _T_Block;
12
+ export type Block_Part = _T_Block_Part;
13
+ export type Directory = _T_Directory;
14
+ export type Line = _T_Line;
15
+ export type Line_Part = _T_Line_Part;
16
+ export type Lines = _T_Lines;
17
+ export declare namespace _T_Block {
18
+ namespace L {
19
+ }
20
+ type L = _T_Block_Part;
21
+ }
22
+ export declare namespace _T_Block_Part {
23
+ namespace SG {
24
+ type line = string;
25
+ namespace nested_line {
26
+ }
27
+ type nested_line = _T_Line;
28
+ type nothing = null;
29
+ namespace sub_block {
30
+ }
31
+ type sub_block = _T_Block;
32
+ }
33
+ type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block];
34
+ }
35
+ export declare namespace _T_Directory {
36
+ namespace D {
37
+ namespace SG {
38
+ namespace directory {
39
+ }
40
+ type directory = _T_Directory;
41
+ namespace file {
42
+ }
43
+ type file = _T_Block;
44
+ }
45
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
46
+ }
47
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
48
+ }
49
+ export declare namespace _T_Line {
50
+ namespace L {
51
+ }
52
+ type L = _T_Line_Part;
53
+ }
54
+ export declare namespace _T_Line_Part {
55
+ namespace SG {
56
+ namespace indent {
57
+ }
58
+ type indent = _T_Block;
59
+ type nothing = null;
60
+ type snippet = string;
61
+ namespace sub_line {
62
+ }
63
+ type sub_line = _T_Line;
64
+ }
65
+ type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
66
+ }
67
+ export declare namespace _T_Lines {
68
+ namespace L {
69
+ type indentation = number;
70
+ type text = string;
71
+ }
72
+ type L = {
73
+ readonly 'indentation': number;
74
+ readonly 'text': string;
75
+ };
76
+ }
77
+ export declare namespace Block {
78
+ namespace L {
79
+ }
80
+ type L = _T_Block_Part;
81
+ }
82
+ export declare namespace Block_Part {
83
+ namespace SG {
84
+ type line = string;
85
+ namespace nested_line {
86
+ }
87
+ type nested_line = _T_Line;
88
+ type nothing = null;
89
+ namespace sub_block {
90
+ }
91
+ type sub_block = _T_Block;
92
+ }
93
+ type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block];
94
+ }
95
+ export declare namespace Directory {
96
+ namespace D {
97
+ namespace SG {
98
+ namespace directory {
99
+ }
100
+ type directory = _T_Directory;
101
+ namespace file {
102
+ }
103
+ type file = _T_Block;
104
+ }
105
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
106
+ }
107
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
108
+ }
109
+ export declare namespace Line {
110
+ namespace L {
111
+ }
112
+ type L = _T_Line_Part;
113
+ }
114
+ export declare namespace Line_Part {
115
+ namespace SG {
116
+ namespace indent {
117
+ }
118
+ type indent = _T_Block;
119
+ type nothing = null;
120
+ type snippet = string;
121
+ namespace sub_line {
122
+ }
123
+ type sub_line = _T_Line;
124
+ }
125
+ type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
126
+ }
127
+ export declare namespace Lines {
128
+ namespace L {
129
+ type indentation = number;
130
+ type text = string;
131
+ }
132
+ type L = {
133
+ readonly 'indentation': number;
134
+ readonly 'text': string;
135
+ };
136
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvYmxvY2svdW5jb25zdHJhaW5lZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -1,75 +1,75 @@
1
1
  import * as _i_core from "../../core/unresolved";
2
- export type _T_Block = _i_core._T_List<null, _T_Block_Part>;
3
- export type _T_Block_Part = _i_core._T_State_Group<null, readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block]>;
4
- export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>>;
5
- export type _T_Line = _i_core._T_List<null, _T_Line_Part>;
6
- export type _T_Line_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line]>;
7
- export type _T_Lines = _i_core._T_List<null, {
2
+ export type _T_Block<G_Source> = _i_core._T_List<G_Source, _T_Block_Part<G_Source>>;
3
+ export type _T_Block_Part<G_Source> = _i_core._T_State_Group<G_Source, readonly ['line', string] | readonly ['nested line', _T_Line<G_Source>] | readonly ['nothing', null] | readonly ['sub block', _T_Block<G_Source>]>;
4
+ export type _T_Directory<G_Source> = _i_core._T_Dictionary<G_Source, _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Block<G_Source>]>>;
5
+ export type _T_Line<G_Source> = _i_core._T_List<G_Source, _T_Line_Part<G_Source>>;
6
+ export type _T_Line_Part<G_Source> = _i_core._T_State_Group<G_Source, readonly ['indent', _T_Block<G_Source>] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line<G_Source>]>;
7
+ export type _T_Lines<G_Source> = _i_core._T_List<G_Source, {
8
8
  readonly 'indentation': number;
9
9
  readonly 'text': string;
10
10
  }>;
11
- export type Block = _T_Block;
12
- export type Block_Part = _T_Block_Part;
13
- export type Directory = _T_Directory;
14
- export type Line = _T_Line;
15
- export type Line_Part = _T_Line_Part;
16
- export type Lines = _T_Lines;
11
+ export type Block<G_Source> = _T_Block<G_Source>;
12
+ export type Block_Part<G_Source> = _T_Block_Part<G_Source>;
13
+ export type Directory<G_Source> = _T_Directory<G_Source>;
14
+ export type Line<G_Source> = _T_Line<G_Source>;
15
+ export type Line_Part<G_Source> = _T_Line_Part<G_Source>;
16
+ export type Lines<G_Source> = _T_Lines<G_Source>;
17
17
  export declare namespace _T_Block {
18
18
  namespace L {
19
19
  }
20
- type L = _T_Block_Part;
20
+ type L<G_Source> = _T_Block_Part<G_Source>;
21
21
  }
22
22
  export declare namespace _T_Block_Part {
23
23
  namespace SG {
24
- type line = string;
24
+ type line<G_Source> = string;
25
25
  namespace nested_line {
26
26
  }
27
- type nested_line = _T_Line;
28
- type nothing = null;
27
+ type nested_line<G_Source> = _T_Line<G_Source>;
28
+ type nothing<G_Source> = null;
29
29
  namespace sub_block {
30
30
  }
31
- type sub_block = _T_Block;
31
+ type sub_block<G_Source> = _T_Block<G_Source>;
32
32
  }
33
- type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block];
33
+ type SG<G_Source> = readonly ['line', string] | readonly ['nested line', _T_Line<G_Source>] | readonly ['nothing', null] | readonly ['sub block', _T_Block<G_Source>];
34
34
  }
35
35
  export declare namespace _T_Directory {
36
36
  namespace D {
37
37
  namespace SG {
38
38
  namespace directory {
39
39
  }
40
- type directory = _T_Directory;
40
+ type directory<G_Source> = _T_Directory<G_Source>;
41
41
  namespace file {
42
42
  }
43
- type file = _T_Block;
43
+ type file<G_Source> = _T_Block<G_Source>;
44
44
  }
45
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
45
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Block<G_Source>];
46
46
  }
47
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
47
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Block<G_Source>]>;
48
48
  }
49
49
  export declare namespace _T_Line {
50
50
  namespace L {
51
51
  }
52
- type L = _T_Line_Part;
52
+ type L<G_Source> = _T_Line_Part<G_Source>;
53
53
  }
54
54
  export declare namespace _T_Line_Part {
55
55
  namespace SG {
56
56
  namespace indent {
57
57
  }
58
- type indent = _T_Block;
59
- type nothing = null;
60
- type snippet = string;
58
+ type indent<G_Source> = _T_Block<G_Source>;
59
+ type nothing<G_Source> = null;
60
+ type snippet<G_Source> = string;
61
61
  namespace sub_line {
62
62
  }
63
- type sub_line = _T_Line;
63
+ type sub_line<G_Source> = _T_Line<G_Source>;
64
64
  }
65
- type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
65
+ type SG<G_Source> = readonly ['indent', _T_Block<G_Source>] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line<G_Source>];
66
66
  }
67
67
  export declare namespace _T_Lines {
68
68
  namespace L {
69
- type indentation = number;
70
- type text = string;
69
+ type indentation<G_Source> = number;
70
+ type text<G_Source> = string;
71
71
  }
72
- type L = {
72
+ type L<G_Source> = {
73
73
  readonly 'indentation': number;
74
74
  readonly 'text': string;
75
75
  };
@@ -77,59 +77,59 @@ export declare namespace _T_Lines {
77
77
  export declare namespace Block {
78
78
  namespace L {
79
79
  }
80
- type L = _T_Block_Part;
80
+ type L<G_Source> = _T_Block_Part<G_Source>;
81
81
  }
82
82
  export declare namespace Block_Part {
83
83
  namespace SG {
84
- type line = string;
84
+ type line<G_Source> = string;
85
85
  namespace nested_line {
86
86
  }
87
- type nested_line = _T_Line;
88
- type nothing = null;
87
+ type nested_line<G_Source> = _T_Line<G_Source>;
88
+ type nothing<G_Source> = null;
89
89
  namespace sub_block {
90
90
  }
91
- type sub_block = _T_Block;
91
+ type sub_block<G_Source> = _T_Block<G_Source>;
92
92
  }
93
- type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block];
93
+ type SG<G_Source> = readonly ['line', string] | readonly ['nested line', _T_Line<G_Source>] | readonly ['nothing', null] | readonly ['sub block', _T_Block<G_Source>];
94
94
  }
95
95
  export declare namespace Directory {
96
96
  namespace D {
97
97
  namespace SG {
98
98
  namespace directory {
99
99
  }
100
- type directory = _T_Directory;
100
+ type directory<G_Source> = _T_Directory<G_Source>;
101
101
  namespace file {
102
102
  }
103
- type file = _T_Block;
103
+ type file<G_Source> = _T_Block<G_Source>;
104
104
  }
105
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
105
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Block<G_Source>];
106
106
  }
107
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
107
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Block<G_Source>]>;
108
108
  }
109
109
  export declare namespace Line {
110
110
  namespace L {
111
111
  }
112
- type L = _T_Line_Part;
112
+ type L<G_Source> = _T_Line_Part<G_Source>;
113
113
  }
114
114
  export declare namespace Line_Part {
115
115
  namespace SG {
116
116
  namespace indent {
117
117
  }
118
- type indent = _T_Block;
119
- type nothing = null;
120
- type snippet = string;
118
+ type indent<G_Source> = _T_Block<G_Source>;
119
+ type nothing<G_Source> = null;
120
+ type snippet<G_Source> = string;
121
121
  namespace sub_line {
122
122
  }
123
- type sub_line = _T_Line;
123
+ type sub_line<G_Source> = _T_Line<G_Source>;
124
124
  }
125
- type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
125
+ type SG<G_Source> = readonly ['indent', _T_Block<G_Source>] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line<G_Source>];
126
126
  }
127
127
  export declare namespace Lines {
128
128
  namespace L {
129
- type indentation = number;
130
- type text = string;
129
+ type indentation<G_Source> = number;
130
+ type text<G_Source> = string;
131
131
  }
132
- type L = {
132
+ type L<G_Source> = {
133
133
  readonly 'indentation': number;
134
134
  readonly 'text': string;
135
135
  };
@@ -1,5 +1,5 @@
1
- import * as _i_in from "./resolved";
2
- import * as _i_out from "./unresolved";
1
+ import * as _i_in from "./unconstrained";
2
+ import * as _i_out from "./unconstrained";
3
3
  export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
4
4
  export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: null) => _i_out._T_Lines;
5
5
  export type Directory = _T_Directory;
@@ -0,0 +1,39 @@
1
+ import * as _i_core from "../../core/resolved";
2
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
+ export type _T_Lines = _i_core._T_List<null, string>;
4
+ export type Directory = _T_Directory;
5
+ export type Lines = _T_Lines;
6
+ export declare namespace _T_Directory {
7
+ namespace D {
8
+ namespace SG {
9
+ namespace directory {
10
+ }
11
+ type directory = _T_Directory;
12
+ namespace file {
13
+ }
14
+ type file = _T_Lines;
15
+ }
16
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
17
+ }
18
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
19
+ }
20
+ export declare namespace _T_Lines {
21
+ type L = string;
22
+ }
23
+ export declare namespace Directory {
24
+ namespace D {
25
+ namespace SG {
26
+ namespace directory {
27
+ }
28
+ type directory = _T_Directory;
29
+ namespace file {
30
+ }
31
+ type file = _T_Lines;
32
+ }
33
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
34
+ }
35
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
36
+ }
37
+ export declare namespace Lines {
38
+ type L = string;
39
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvbGluZXMvdW5jb25zdHJhaW5lZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -1,39 +1,39 @@
1
1
  import * as _i_core from "../../core/unresolved";
2
- export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
- export type _T_Lines = _i_core._T_List<null, string>;
4
- export type Directory = _T_Directory;
5
- export type Lines = _T_Lines;
2
+ export type _T_Directory<G_Source> = _i_core._T_Dictionary<G_Source, _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>>;
3
+ export type _T_Lines<G_Source> = _i_core._T_List<G_Source, string>;
4
+ export type Directory<G_Source> = _T_Directory<G_Source>;
5
+ export type Lines<G_Source> = _T_Lines<G_Source>;
6
6
  export declare namespace _T_Directory {
7
7
  namespace D {
8
8
  namespace SG {
9
9
  namespace directory {
10
10
  }
11
- type directory = _T_Directory;
11
+ type directory<G_Source> = _T_Directory<G_Source>;
12
12
  namespace file {
13
13
  }
14
- type file = _T_Lines;
14
+ type file<G_Source> = _T_Lines<G_Source>;
15
15
  }
16
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
16
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
17
17
  }
18
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
18
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
19
19
  }
20
20
  export declare namespace _T_Lines {
21
- type L = string;
21
+ type L<G_Source> = string;
22
22
  }
23
23
  export declare namespace Directory {
24
24
  namespace D {
25
25
  namespace SG {
26
26
  namespace directory {
27
27
  }
28
- type directory = _T_Directory;
28
+ type directory<G_Source> = _T_Directory<G_Source>;
29
29
  namespace file {
30
30
  }
31
- type file = _T_Lines;
31
+ type file<G_Source> = _T_Lines<G_Source>;
32
32
  }
33
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
33
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
34
34
  }
35
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
35
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
36
36
  }
37
37
  export declare namespace Lines {
38
- type L = string;
38
+ type L<G_Source> = string;
39
39
  }
@@ -1,5 +1,5 @@
1
- import * as _i_in from "./resolved";
2
- import * as _i_out from "./unresolved";
1
+ import * as _i_in from "./unconstrained";
2
+ import * as _i_out from "./unconstrained";
3
3
  export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
4
4
  export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: null) => _i_out._T_Lines;
5
5
  export type Directory = _T_Directory;
@@ -0,0 +1,56 @@
1
+ import * as _i_core from "../../core/resolved";
2
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
+ export type _T_Lines = _i_core._T_List<null, {
4
+ readonly 'indentation': number;
5
+ readonly 'text': string;
6
+ }>;
7
+ export type Directory = _T_Directory;
8
+ export type Lines = _T_Lines;
9
+ export declare namespace _T_Directory {
10
+ namespace D {
11
+ namespace SG {
12
+ namespace directory {
13
+ }
14
+ type directory = _T_Directory;
15
+ namespace file {
16
+ }
17
+ type file = _T_Lines;
18
+ }
19
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
20
+ }
21
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
22
+ }
23
+ export declare namespace _T_Lines {
24
+ namespace L {
25
+ type indentation = number;
26
+ type text = string;
27
+ }
28
+ type L = {
29
+ readonly 'indentation': number;
30
+ readonly 'text': string;
31
+ };
32
+ }
33
+ export declare namespace Directory {
34
+ namespace D {
35
+ namespace SG {
36
+ namespace directory {
37
+ }
38
+ type directory = _T_Directory;
39
+ namespace file {
40
+ }
41
+ type file = _T_Lines;
42
+ }
43
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
44
+ }
45
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
46
+ }
47
+ export declare namespace Lines {
48
+ namespace L {
49
+ type indentation = number;
50
+ type text = string;
51
+ }
52
+ type L = {
53
+ readonly 'indentation': number;
54
+ readonly 'text': string;
55
+ };
56
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvc2VtaV9saW5lcy91bmNvbnN0cmFpbmVkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -1,31 +1,31 @@
1
1
  import * as _i_core from "../../core/unresolved";
2
- export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
- export type _T_Lines = _i_core._T_List<null, {
2
+ export type _T_Directory<G_Source> = _i_core._T_Dictionary<G_Source, _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>>;
3
+ export type _T_Lines<G_Source> = _i_core._T_List<G_Source, {
4
4
  readonly 'indentation': number;
5
5
  readonly 'text': string;
6
6
  }>;
7
- export type Directory = _T_Directory;
8
- export type Lines = _T_Lines;
7
+ export type Directory<G_Source> = _T_Directory<G_Source>;
8
+ export type Lines<G_Source> = _T_Lines<G_Source>;
9
9
  export declare namespace _T_Directory {
10
10
  namespace D {
11
11
  namespace SG {
12
12
  namespace directory {
13
13
  }
14
- type directory = _T_Directory;
14
+ type directory<G_Source> = _T_Directory<G_Source>;
15
15
  namespace file {
16
16
  }
17
- type file = _T_Lines;
17
+ type file<G_Source> = _T_Lines<G_Source>;
18
18
  }
19
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
19
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
20
20
  }
21
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
21
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
22
22
  }
23
23
  export declare namespace _T_Lines {
24
24
  namespace L {
25
- type indentation = number;
26
- type text = string;
25
+ type indentation<G_Source> = number;
26
+ type text<G_Source> = string;
27
27
  }
28
- type L = {
28
+ type L<G_Source> = {
29
29
  readonly 'indentation': number;
30
30
  readonly 'text': string;
31
31
  };
@@ -35,21 +35,21 @@ export declare namespace Directory {
35
35
  namespace SG {
36
36
  namespace directory {
37
37
  }
38
- type directory = _T_Directory;
38
+ type directory<G_Source> = _T_Directory<G_Source>;
39
39
  namespace file {
40
40
  }
41
- type file = _T_Lines;
41
+ type file<G_Source> = _T_Lines<G_Source>;
42
42
  }
43
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
43
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
44
44
  }
45
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
45
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
46
46
  }
47
47
  export declare namespace Lines {
48
48
  namespace L {
49
- type indentation = number;
50
- type text = string;
49
+ type indentation<G_Source> = number;
50
+ type text<G_Source> = string;
51
51
  }
52
- type L = {
52
+ type L<G_Source> = {
53
53
  readonly 'indentation': number;
54
54
  readonly 'text': string;
55
55
  };
@@ -1,5 +1,5 @@
1
- import * as _i_in from "./resolved";
2
- import * as _i_out from "./unresolved";
1
+ import * as _i_in from "./unconstrained";
2
+ import * as _i_out from "./unconstrained";
3
3
  export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
4
4
  export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: null) => _i_out._T_Lines;
5
5
  export type Directory = _T_Directory;
@@ -0,0 +1,33 @@
1
+ import * as _i_core from "../../core/resolved";
2
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
+ export type _T_Lines = string;
4
+ export type Directory = _T_Directory;
5
+ export type Lines = _T_Lines;
6
+ export declare namespace _T_Directory {
7
+ namespace D {
8
+ namespace SG {
9
+ namespace directory {
10
+ }
11
+ type directory = _T_Directory;
12
+ namespace file {
13
+ }
14
+ type file = _T_Lines;
15
+ }
16
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
17
+ }
18
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
19
+ }
20
+ export declare namespace Directory {
21
+ namespace D {
22
+ namespace SG {
23
+ namespace directory {
24
+ }
25
+ type directory = _T_Directory;
26
+ namespace file {
27
+ }
28
+ type file = _T_Lines;
29
+ }
30
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
31
+ }
32
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
33
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvdGV4dC91bmNvbnN0cmFpbmVkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -1,33 +1,33 @@
1
1
  import * as _i_core from "../../core/unresolved";
2
- export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
- export type _T_Lines = string;
4
- export type Directory = _T_Directory;
5
- export type Lines = _T_Lines;
2
+ export type _T_Directory<G_Source> = _i_core._T_Dictionary<G_Source, _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>>;
3
+ export type _T_Lines<G_Source> = string;
4
+ export type Directory<G_Source> = _T_Directory<G_Source>;
5
+ export type Lines<G_Source> = _T_Lines<G_Source>;
6
6
  export declare namespace _T_Directory {
7
7
  namespace D {
8
8
  namespace SG {
9
9
  namespace directory {
10
10
  }
11
- type directory = _T_Directory;
11
+ type directory<G_Source> = _T_Directory<G_Source>;
12
12
  namespace file {
13
13
  }
14
- type file = _T_Lines;
14
+ type file<G_Source> = _T_Lines<G_Source>;
15
15
  }
16
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
16
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
17
17
  }
18
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
18
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
19
19
  }
20
20
  export declare namespace Directory {
21
21
  namespace D {
22
22
  namespace SG {
23
23
  namespace directory {
24
24
  }
25
- type directory = _T_Directory;
25
+ type directory<G_Source> = _T_Directory<G_Source>;
26
26
  namespace file {
27
27
  }
28
- type file = _T_Lines;
28
+ type file<G_Source> = _T_Lines<G_Source>;
29
29
  }
30
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Lines];
30
+ type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
31
31
  }
32
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>;
32
+ type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
33
33
  }
@@ -0,0 +1,8 @@
1
+ export * as write_to_disk from "./other/write_to_disk";
2
+ export * as serialize_block from "./serialize/block";
3
+ export * as serialize_semi_lines from "./serialize/semi_lines";
4
+ export * as shorthands_block from "./shorthands/block";
5
+ export * as shorthands_lines from "./shorthands/lines";
6
+ export * as transformations_block_2_lines from "./transformations/block/lines";
7
+ export * as transformations_semi_lines_2_lines from "./transformations/semi_lines/lines";
8
+ export * as transformations_block_2_semi_lines from "./transformations/block/semi_lines";
package/dist/index.js ADDED
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.transformations_block_2_semi_lines = exports.transformations_semi_lines_2_lines = exports.transformations_block_2_lines = exports.shorthands_lines = exports.shorthands_block = exports.serialize_semi_lines = exports.serialize_block = exports.write_to_disk = void 0;
37
+ exports.write_to_disk = __importStar(require("./other/write_to_disk"));
38
+ exports.serialize_block = __importStar(require("./serialize/block"));
39
+ exports.serialize_semi_lines = __importStar(require("./serialize/semi_lines"));
40
+ exports.shorthands_block = __importStar(require("./shorthands/block"));
41
+ exports.shorthands_lines = __importStar(require("./shorthands/lines"));
42
+ exports.transformations_block_2_lines = __importStar(require("./transformations/block/lines"));
43
+ exports.transformations_semi_lines_2_lines = __importStar(require("./transformations/semi_lines/lines"));
44
+ exports.transformations_block_2_semi_lines = __importStar(require("./transformations/block/semi_lines"));
45
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsdUVBQXNEO0FBRXRELHFFQUFvRDtBQUNwRCwrRUFBOEQ7QUFFOUQsdUVBQXNEO0FBQ3RELHVFQUFzRDtBQUV0RCwrRkFBOEU7QUFDOUUseUdBQXdGO0FBQ3hGLHlHQUF3RiJ9
@@ -1,4 +1,8 @@
1
- import * as s_in from "../generated/interface/schemas/lines/unresolved";
2
- export declare const write_to_disk: ($: s_in.Directory, $p: {
1
+ import * as s_in from "../generated/interface/schemas/lines/unconstrained";
2
+ export declare const File: ($: s_in.Lines, $p: {
3
+ "directory path": string;
4
+ "filename": string;
5
+ }) => void;
6
+ export declare const Directory: ($: s_in.Directory, $p: {
3
7
  "path": string;
4
8
  }) => void;
@@ -33,14 +33,19 @@ var __importStar = (this && this.__importStar) || (function () {
33
33
  };
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.write_to_disk = void 0;
36
+ exports.Directory = exports.File = void 0;
37
37
  const pa = __importStar(require("exupery-core-alg"));
38
38
  const exupery_core_resources_1 = require("exupery-core-resources");
39
39
  const pareto_standard_operations_1 = require("pareto-standard-operations");
40
40
  const op = {
41
41
  'join list of texts': pareto_standard_operations_1.pure.text['join list of texts'],
42
42
  };
43
- const write_to_disk = ($, $p) => {
43
+ const File = ($, $p) => {
44
+ exupery_core_resources_1.temp_resources.fs['make directory']($p['directory path'], true);
45
+ exupery_core_resources_1.temp_resources.fs['write file sync'](`${$p['directory path']}/${$p.filename}`, op['join list of texts']($.map(($) => $ + "\n")), true);
46
+ };
47
+ exports.File = File;
48
+ const Directory = ($, $p) => {
44
49
  const write_directory_to_disk = ($, $p) => {
45
50
  $.map(($, key) => {
46
51
  switch ($[0]) {
@@ -70,5 +75,5 @@ const write_to_disk = ($, $p) => {
70
75
  'path': $p.path
71
76
  });
72
77
  };
73
- exports.write_to_disk = write_to_disk;
74
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fZGlzay5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9vdGhlci93cml0ZV90b19kaXNrLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUNBLHFEQUFzQztBQUV0QyxtRUFBdUQ7QUFNdkQsMkVBQWlEO0FBRWpELE1BQU0sRUFBRSxHQUFHO0lBQ1Asb0JBQW9CLEVBQUUsaUNBQUksQ0FBQyxJQUFJLENBQUMsb0JBQW9CLENBQUM7Q0FDeEQsQ0FBQTtBQUVNLE1BQU0sYUFBYSxHQUFHLENBQ3pCLENBQWlCLEVBQ2pCLEVBRUMsRUFDSCxFQUFFO0lBQ0EsTUFBTSx1QkFBdUIsR0FBRyxDQUM1QixDQUFpQixFQUNqQixFQUVDLEVBQ0gsRUFBRTtRQUNBLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsR0FBRyxFQUFFLEVBQUU7WUFDYixRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO2dCQUNYLEtBQUssTUFBTTtvQkFDUCxFQUFFLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxFQUFFO3dCQUNYLHVDQUFjLENBQUMsRUFBRSxDQUFDLGdCQUFnQixDQUFDLENBQUMsRUFBRSxDQUFDLElBQUksRUFBRSxJQUFJLENBQUMsQ0FBQTt3QkFDbEQsdUNBQWMsQ0FBQyxFQUFFLENBQUMsaUJBQWlCLENBQUMsQ0FDaEMsR0FBRyxFQUFFLENBQUMsSUFBSSxJQUFJLEdBQUcsRUFBRSxFQUNuQixFQUFFLENBQUMsb0JBQW9CLENBQUMsQ0FDcEIsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUN6QixFQUNELElBQUksQ0FDUCxDQUFBO29CQUNMLENBQUMsQ0FBQyxDQUFBO29CQUNGLE1BQUs7Z0JBQ1QsS0FBSyxXQUFXO29CQUNaLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUU7d0JBQ1gsdUJBQXVCLENBQ25CLENBQUMsRUFDRDs0QkFDSSxNQUFNLEVBQUUsR0FBRyxFQUFFLENBQUMsSUFBSSxJQUFJLEdBQUcsRUFBRTt5QkFDOUIsQ0FDSixDQUFBO29CQUNMLENBQUMsQ0FBQyxDQUFBO29CQUNGLE1BQUs7Z0JBQ1QsT0FBTyxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQTtZQUN4QixDQUFDO1FBQ0wsQ0FBQyxDQUFDLENBQUE7SUFFTixDQUFDLENBQUE7SUFDRCxJQUFJLHVDQUFjLENBQUMsRUFBRSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsSUFBSSxFQUFFLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQyxzREFBc0Q7UUFDbEcsdUNBQWMsQ0FBQyxFQUFFLENBQUMsYUFBYSxDQUFDLENBQUMsRUFBRSxDQUFDLElBQUksRUFBRSxLQUFLLEVBQUU7WUFDN0MsV0FBVyxFQUFFLElBQUk7U0FDcEIsQ0FBQyxDQUFBO0lBQ04sQ0FBQztJQUNELHVCQUF1QixDQUNuQixDQUFDLEVBQ0Q7UUFDSSxNQUFNLEVBQUUsRUFBRSxDQUFDLElBQUk7S0FDbEIsQ0FDSixDQUFBO0FBQ0wsQ0FBQyxDQUFBO0FBcERZLFFBQUEsYUFBYSxpQkFvRHpCIn0=
78
+ exports.Directory = Directory;
79
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fZGlzay5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9vdGhlci93cml0ZV90b19kaXNrLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUNBLHFEQUFzQztBQUV0QyxtRUFBdUQ7QUFNdkQsMkVBQWlEO0FBRWpELE1BQU0sRUFBRSxHQUFHO0lBQ1Asb0JBQW9CLEVBQUUsaUNBQUksQ0FBQyxJQUFJLENBQUMsb0JBQW9CLENBQUM7Q0FDeEQsQ0FBQTtBQUVNLE1BQU0sSUFBSSxHQUFHLENBQ2hCLENBQWEsRUFDYixFQUdDLEVBQ0gsRUFBRTtJQUNBLHVDQUFjLENBQUMsRUFBRSxDQUFDLGdCQUFnQixDQUFDLENBQUMsRUFBRSxDQUFDLGdCQUFnQixDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUE7SUFDL0QsdUNBQWMsQ0FBQyxFQUFFLENBQUMsaUJBQWlCLENBQUMsQ0FDaEMsR0FBRyxFQUFFLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxFQUFFLENBQUMsUUFBUSxFQUFFLEVBQ3hDLEVBQUUsQ0FBQyxvQkFBb0IsQ0FBQyxDQUNwQixDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQ3pCLEVBQ0QsSUFBSSxDQUNQLENBQUE7QUFDTCxDQUFDLENBQUE7QUFmWSxRQUFBLElBQUksUUFlaEI7QUFFTSxNQUFNLFNBQVMsR0FBRyxDQUNyQixDQUFpQixFQUNqQixFQUVDLEVBQ0gsRUFBRTtJQUNBLE1BQU0sdUJBQXVCLEdBQUcsQ0FDNUIsQ0FBaUIsRUFDakIsRUFFQyxFQUNILEVBQUU7UUFDQSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEdBQUcsRUFBRSxFQUFFO1lBQ2IsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQztnQkFDWCxLQUFLLE1BQU07b0JBQ1AsRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRTt3QkFDWCx1Q0FBYyxDQUFDLEVBQUUsQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxJQUFJLEVBQUUsSUFBSSxDQUFDLENBQUE7d0JBQ2xELHVDQUFjLENBQUMsRUFBRSxDQUFDLGlCQUFpQixDQUFDLENBQ2hDLEdBQUcsRUFBRSxDQUFDLElBQUksSUFBSSxHQUFHLEVBQUUsRUFDbkIsRUFBRSxDQUFDLG9CQUFvQixDQUFDLENBQ3BCLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FDekIsRUFDRCxJQUFJLENBQ1AsQ0FBQTtvQkFDTCxDQUFDLENBQUMsQ0FBQTtvQkFDRixNQUFLO2dCQUNULEtBQUssV0FBVztvQkFDWixFQUFFLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxFQUFFO3dCQUNYLHVCQUF1QixDQUNuQixDQUFDLEVBQ0Q7NEJBQ0ksTUFBTSxFQUFFLEdBQUcsRUFBRSxDQUFDLElBQUksSUFBSSxHQUFHLEVBQUU7eUJBQzlCLENBQ0osQ0FBQTtvQkFDTCxDQUFDLENBQUMsQ0FBQTtvQkFDRixNQUFLO2dCQUNULE9BQU8sQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7WUFDeEIsQ0FBQztRQUNMLENBQUMsQ0FBQyxDQUFBO0lBRU4sQ0FBQyxDQUFBO0lBQ0QsSUFBSSx1Q0FBYyxDQUFDLEVBQUUsQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLElBQUksRUFBRSxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsc0RBQXNEO1FBQ2xHLHVDQUFjLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxJQUFJLEVBQUUsS0FBSyxFQUFFO1lBQzdDLFdBQVcsRUFBRSxJQUFJO1NBQ3BCLENBQUMsQ0FBQTtJQUNOLENBQUM7SUFDRCx1QkFBdUIsQ0FDbkIsQ0FBQyxFQUNEO1FBQ0ksTUFBTSxFQUFFLEVBQUUsQ0FBQyxJQUFJO0tBQ2xCLENBQ0osQ0FBQTtBQUNMLENBQUMsQ0FBQTtBQXBEWSxRQUFBLFNBQVMsYUFvRHJCIn0=
@@ -1,4 +1,4 @@
1
- import * as _in from "../generated/interface/schemas/block/unresolved";
1
+ import * as _in from "../generated/interface/schemas/block/unconstrained";
2
2
  export declare const Block: ($: _in.Block, $p: {
3
3
  "indentation": string;
4
4
  "newline": string;
@@ -1,5 +1,5 @@
1
- import * as s_in from "../generated/interface/schemas/semi_lines/unresolved";
2
- import * as s_out from "../generated/interface/schemas/text/unresolved";
1
+ import * as s_in from "../generated/interface/schemas/semi_lines/unconstrained";
2
+ import * as s_out from "../generated/interface/schemas/text/unconstrained";
3
3
  export declare const Lines: ($: s_in.Lines, $p: {
4
4
  "indentation": string;
5
5
  "newline": string;
@@ -1,4 +1,4 @@
1
- import * as _resolved from "../generated/interface/schemas/block/resolved";
1
+ import * as _resolved from "../generated/interface/schemas/block/unconstrained";
2
2
  export declare namespace b {
3
3
  const simple_line: (line: string) => _resolved.Block_Part;
4
4
  const nested_line: (snippets: _resolved.Line_Part[]) => _resolved.Block_Part;
@@ -1,4 +1,4 @@
1
- import * as _resolved from "../generated/interface/schemas/lines/resolved";
1
+ import * as _resolved from "../generated/interface/schemas/lines/unconstrained";
2
2
  import { Raw_Or_Normal_Dictionary } from 'exupery-core-data/dist/shorthands';
3
3
  export declare namespace d {
4
4
  const file: (lines: _resolved.Lines) => _resolved.Directory.D;
@@ -1,5 +1,5 @@
1
- import * as s_in from "../../generated/interface/schemas/block/resolved";
2
- import * as s_out from "../../generated/interface/schemas/lines/resolved";
1
+ import * as s_in from "../../generated/interface/schemas/block/unconstrained";
2
+ import * as s_out from "../../generated/interface/schemas/lines/unconstrained";
3
3
  export declare const Directory: ($: s_in.Directory, $p: {
4
4
  "indentation": string;
5
5
  }) => s_out.Directory;
@@ -1,4 +1,4 @@
1
- import * as s_in from "../../generated/interface/schemas/block/resolved";
2
- import * as s_out from "../../generated/interface/schemas/semi_lines/resolved";
1
+ import * as s_in from "../../generated/interface/schemas/block/unconstrained";
2
+ import * as s_out from "../../generated/interface/schemas/semi_lines/unconstrained";
3
3
  export declare const Directory: ($: s_in.Directory) => s_out.Directory;
4
4
  export declare const Block: ($: s_in.Block) => s_out.Lines;
@@ -1,5 +1,5 @@
1
- import * as s_in from "../../generated/interface/schemas/semi_lines/unresolved";
2
- import * as s_out from "../../generated/interface/schemas/lines/unresolved";
1
+ import * as s_in from "../../generated/interface/schemas/semi_lines/unconstrained";
2
+ import * as s_out from "../../generated/interface/schemas/lines/unconstrained";
3
3
  export declare const Lines: ($: s_in.Lines, $p: {
4
4
  "indentation": string;
5
5
  }) => s_out.Lines;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-fountain-pen",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "A TypeScript library for easily generating source code files with proper indentation in the pareto programming style/language",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,136 +0,0 @@
1
- import * as _i_core from "../../core/poormans_parser";
2
- export type _T_Block<G_Source> = _i_core._T_List<G_Source, _T_Block_Part<G_Source>>;
3
- export type _T_Block_Part<G_Source> = _i_core._T_State_Group<G_Source, readonly ['line', string] | readonly ['nested line', _T_Line<G_Source>] | readonly ['nothing', null] | readonly ['sub block', _T_Block<G_Source>]>;
4
- export type _T_Directory<G_Source> = _i_core._T_Dictionary<G_Source, _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Block<G_Source>]>>;
5
- export type _T_Line<G_Source> = _i_core._T_List<G_Source, _T_Line_Part<G_Source>>;
6
- export type _T_Line_Part<G_Source> = _i_core._T_State_Group<G_Source, readonly ['indent', _T_Block<G_Source>] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line<G_Source>]>;
7
- export type _T_Lines<G_Source> = _i_core._T_List<G_Source, {
8
- readonly 'indentation': number;
9
- readonly 'text': string;
10
- }>;
11
- export type Block<G_Source> = _T_Block<G_Source>;
12
- export type Block_Part<G_Source> = _T_Block_Part<G_Source>;
13
- export type Directory<G_Source> = _T_Directory<G_Source>;
14
- export type Line<G_Source> = _T_Line<G_Source>;
15
- export type Line_Part<G_Source> = _T_Line_Part<G_Source>;
16
- export type Lines<G_Source> = _T_Lines<G_Source>;
17
- export declare namespace _T_Block {
18
- namespace L {
19
- }
20
- type L<G_Source> = _T_Block_Part<G_Source>;
21
- }
22
- export declare namespace _T_Block_Part {
23
- namespace SG {
24
- type line<G_Source> = string;
25
- namespace nested_line {
26
- }
27
- type nested_line<G_Source> = _T_Line<G_Source>;
28
- type nothing<G_Source> = null;
29
- namespace sub_block {
30
- }
31
- type sub_block<G_Source> = _T_Block<G_Source>;
32
- }
33
- type SG<G_Source> = readonly ['line', string] | readonly ['nested line', _T_Line<G_Source>] | readonly ['nothing', null] | readonly ['sub block', _T_Block<G_Source>];
34
- }
35
- export declare namespace _T_Directory {
36
- namespace D {
37
- namespace SG {
38
- namespace directory {
39
- }
40
- type directory<G_Source> = _T_Directory<G_Source>;
41
- namespace file {
42
- }
43
- type file<G_Source> = _T_Block<G_Source>;
44
- }
45
- type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Block<G_Source>];
46
- }
47
- type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Block<G_Source>]>;
48
- }
49
- export declare namespace _T_Line {
50
- namespace L {
51
- }
52
- type L<G_Source> = _T_Line_Part<G_Source>;
53
- }
54
- export declare namespace _T_Line_Part {
55
- namespace SG {
56
- namespace indent {
57
- }
58
- type indent<G_Source> = _T_Block<G_Source>;
59
- type nothing<G_Source> = null;
60
- type snippet<G_Source> = string;
61
- namespace sub_line {
62
- }
63
- type sub_line<G_Source> = _T_Line<G_Source>;
64
- }
65
- type SG<G_Source> = readonly ['indent', _T_Block<G_Source>] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line<G_Source>];
66
- }
67
- export declare namespace _T_Lines {
68
- namespace L {
69
- type indentation<G_Source> = number;
70
- type text<G_Source> = string;
71
- }
72
- type L<G_Source> = {
73
- readonly 'indentation': number;
74
- readonly 'text': string;
75
- };
76
- }
77
- export declare namespace Block {
78
- namespace L {
79
- }
80
- type L<G_Source> = _T_Block_Part<G_Source>;
81
- }
82
- export declare namespace Block_Part {
83
- namespace SG {
84
- type line<G_Source> = string;
85
- namespace nested_line {
86
- }
87
- type nested_line<G_Source> = _T_Line<G_Source>;
88
- type nothing<G_Source> = null;
89
- namespace sub_block {
90
- }
91
- type sub_block<G_Source> = _T_Block<G_Source>;
92
- }
93
- type SG<G_Source> = readonly ['line', string] | readonly ['nested line', _T_Line<G_Source>] | readonly ['nothing', null] | readonly ['sub block', _T_Block<G_Source>];
94
- }
95
- export declare namespace Directory {
96
- namespace D {
97
- namespace SG {
98
- namespace directory {
99
- }
100
- type directory<G_Source> = _T_Directory<G_Source>;
101
- namespace file {
102
- }
103
- type file<G_Source> = _T_Block<G_Source>;
104
- }
105
- type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Block<G_Source>];
106
- }
107
- type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Block<G_Source>]>;
108
- }
109
- export declare namespace Line {
110
- namespace L {
111
- }
112
- type L<G_Source> = _T_Line_Part<G_Source>;
113
- }
114
- export declare namespace Line_Part {
115
- namespace SG {
116
- namespace indent {
117
- }
118
- type indent<G_Source> = _T_Block<G_Source>;
119
- type nothing<G_Source> = null;
120
- type snippet<G_Source> = string;
121
- namespace sub_line {
122
- }
123
- type sub_line<G_Source> = _T_Line<G_Source>;
124
- }
125
- type SG<G_Source> = readonly ['indent', _T_Block<G_Source>] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line<G_Source>];
126
- }
127
- export declare namespace Lines {
128
- namespace L {
129
- type indentation<G_Source> = number;
130
- type text<G_Source> = string;
131
- }
132
- type L<G_Source> = {
133
- readonly 'indentation': number;
134
- readonly 'text': string;
135
- };
136
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9vcm1hbnNfcGFyc2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9ibG9jay9wb29ybWFuc19wYXJzZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -1,39 +0,0 @@
1
- import * as _i_core from "../../core/poormans_parser";
2
- export type _T_Directory<G_Source> = _i_core._T_Dictionary<G_Source, _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>>;
3
- export type _T_Lines<G_Source> = _i_core._T_List<G_Source, string>;
4
- export type Directory<G_Source> = _T_Directory<G_Source>;
5
- export type Lines<G_Source> = _T_Lines<G_Source>;
6
- export declare namespace _T_Directory {
7
- namespace D {
8
- namespace SG {
9
- namespace directory {
10
- }
11
- type directory<G_Source> = _T_Directory<G_Source>;
12
- namespace file {
13
- }
14
- type file<G_Source> = _T_Lines<G_Source>;
15
- }
16
- type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
17
- }
18
- type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
19
- }
20
- export declare namespace _T_Lines {
21
- type L<G_Source> = string;
22
- }
23
- export declare namespace Directory {
24
- namespace D {
25
- namespace SG {
26
- namespace directory {
27
- }
28
- type directory<G_Source> = _T_Directory<G_Source>;
29
- namespace file {
30
- }
31
- type file<G_Source> = _T_Lines<G_Source>;
32
- }
33
- type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
34
- }
35
- type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
36
- }
37
- export declare namespace Lines {
38
- type L<G_Source> = string;
39
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9vcm1hbnNfcGFyc2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9saW5lcy9wb29ybWFuc19wYXJzZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -1,56 +0,0 @@
1
- import * as _i_core from "../../core/poormans_parser";
2
- export type _T_Directory<G_Source> = _i_core._T_Dictionary<G_Source, _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>>;
3
- export type _T_Lines<G_Source> = _i_core._T_List<G_Source, {
4
- readonly 'indentation': number;
5
- readonly 'text': string;
6
- }>;
7
- export type Directory<G_Source> = _T_Directory<G_Source>;
8
- export type Lines<G_Source> = _T_Lines<G_Source>;
9
- export declare namespace _T_Directory {
10
- namespace D {
11
- namespace SG {
12
- namespace directory {
13
- }
14
- type directory<G_Source> = _T_Directory<G_Source>;
15
- namespace file {
16
- }
17
- type file<G_Source> = _T_Lines<G_Source>;
18
- }
19
- type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
20
- }
21
- type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
22
- }
23
- export declare namespace _T_Lines {
24
- namespace L {
25
- type indentation<G_Source> = number;
26
- type text<G_Source> = string;
27
- }
28
- type L<G_Source> = {
29
- readonly 'indentation': number;
30
- readonly 'text': string;
31
- };
32
- }
33
- export declare namespace Directory {
34
- namespace D {
35
- namespace SG {
36
- namespace directory {
37
- }
38
- type directory<G_Source> = _T_Directory<G_Source>;
39
- namespace file {
40
- }
41
- type file<G_Source> = _T_Lines<G_Source>;
42
- }
43
- type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
44
- }
45
- type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
46
- }
47
- export declare namespace Lines {
48
- namespace L {
49
- type indentation<G_Source> = number;
50
- type text<G_Source> = string;
51
- }
52
- type L<G_Source> = {
53
- readonly 'indentation': number;
54
- readonly 'text': string;
55
- };
56
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9vcm1hbnNfcGFyc2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9zZW1pX2xpbmVzL3Bvb3JtYW5zX3BhcnNlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -1,33 +0,0 @@
1
- import * as _i_core from "../../core/poormans_parser";
2
- export type _T_Directory<G_Source> = _i_core._T_Dictionary<G_Source, _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>>;
3
- export type _T_Lines<G_Source> = string;
4
- export type Directory<G_Source> = _T_Directory<G_Source>;
5
- export type Lines<G_Source> = _T_Lines<G_Source>;
6
- export declare namespace _T_Directory {
7
- namespace D {
8
- namespace SG {
9
- namespace directory {
10
- }
11
- type directory<G_Source> = _T_Directory<G_Source>;
12
- namespace file {
13
- }
14
- type file<G_Source> = _T_Lines<G_Source>;
15
- }
16
- type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
17
- }
18
- type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
19
- }
20
- export declare namespace Directory {
21
- namespace D {
22
- namespace SG {
23
- namespace directory {
24
- }
25
- type directory<G_Source> = _T_Directory<G_Source>;
26
- namespace file {
27
- }
28
- type file<G_Source> = _T_Lines<G_Source>;
29
- }
30
- type SG<G_Source> = readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>];
31
- }
32
- type D<G_Source> = _i_core._T_State_Group<G_Source, readonly ['directory', _T_Directory<G_Source>] | readonly ['file', _T_Lines<G_Source>]>;
33
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9vcm1hbnNfcGFyc2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy90ZXh0L3Bvb3JtYW5zX3BhcnNlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=