exupery-resources 0.3.25 → 0.3.27

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 (33) hide show
  1. package/dist/implementation/generated/pareto/schemas/make_directory/marshall.js +2 -2
  2. package/dist/implementation/generated/pareto/schemas/make_directory/unmarshall.js +2 -2
  3. package/dist/implementation/generated/pareto/schemas/path/deserialize.d.ts +3 -3
  4. package/dist/implementation/generated/pareto/schemas/path/deserialize.js +8 -8
  5. package/dist/implementation/generated/pareto/schemas/path/marshall.d.ts +3 -3
  6. package/dist/implementation/generated/pareto/schemas/path/marshall.js +15 -18
  7. package/dist/implementation/generated/pareto/schemas/path/serialize.d.ts +3 -3
  8. package/dist/implementation/generated/pareto/schemas/path/serialize.js +10 -10
  9. package/dist/implementation/generated/pareto/schemas/path/unmarshall.d.ts +3 -3
  10. package/dist/implementation/generated/pareto/schemas/path/unmarshall.js +19 -24
  11. package/dist/implementation/refiners/context_path/non_normalized_path.d.ts +1 -1
  12. package/dist/implementation/refiners/context_path/non_normalized_path.js +1 -1
  13. package/dist/implementation/refiners/context_path/text.d.ts +1 -1
  14. package/dist/implementation/refiners/context_path/text.js +1 -1
  15. package/dist/implementation/refiners/node_path/non_normalized_path.js +9 -7
  16. package/dist/implementation/transformers/path/path.d.ts +3 -2
  17. package/dist/implementation/transformers/path/path.js +7 -4
  18. package/dist/implementation/transformers/path/text.d.ts +2 -1
  19. package/dist/implementation/transformers/path/text.js +8 -4
  20. package/dist/interface/generated/pareto/schemas/make_directory/data_types/source.d.ts +1 -1
  21. package/dist/interface/generated/pareto/schemas/make_directory/data_types/target.d.ts +1 -1
  22. package/dist/interface/generated/pareto/schemas/path/data_types/source.d.ts +31 -38
  23. package/dist/interface/generated/pareto/schemas/path/data_types/target.d.ts +31 -38
  24. package/dist/interface/generated/pareto/schemas/path/deserialize.d.ts +30 -30
  25. package/dist/interface/generated/pareto/schemas/path/marshall.d.ts +28 -28
  26. package/dist/interface/generated/pareto/schemas/path/migrate_boilerplate.d.ts +36 -36
  27. package/dist/interface/generated/pareto/schemas/path/serialize.d.ts +28 -28
  28. package/dist/interface/generated/pareto/schemas/path/unmarshall.d.ts +30 -30
  29. package/package.json +1 -1
  30. package/dist/implementation/refiners/directory_path/non_normalized_path.d.ts +0 -5
  31. package/dist/implementation/refiners/directory_path/non_normalized_path.js +0 -67
  32. package/dist/implementation/refiners/directory_path/text.d.ts +0 -4
  33. package/dist/implementation/refiners/directory_path/text.js +0 -33
@@ -6,22 +6,21 @@ export type _T_Start = _i_core._T_State_Group<null, readonly ['absolute', null]
6
6
  readonly 'up steps': _T_Up_Steps;
7
7
  }
8
8
  ]>;
9
- export type _T_Directory_Subpath = _i_core._T_List<null, string>;
10
- export type _T_Node_Path = {
9
+ export type _T_Context_Subpath = _i_core._T_List<null, string>;
10
+ export type _T_Context_Path = {
11
11
  readonly 'start': _T_Start;
12
- readonly 'subpath': _T_Directory_Subpath;
12
+ readonly 'subpath': _T_Context_Subpath;
13
+ };
14
+ export type _T_Node_Path = {
15
+ readonly 'context': _T_Context_Path;
13
16
  readonly 'node': string;
14
17
  };
15
18
  export type _T_Node_Path_Parameter = {
16
19
  readonly 'path': _T_Node_Path;
17
20
  readonly 'escape spaces in path': boolean;
18
21
  };
19
- export type _T_Directory_Path = {
20
- readonly 'start': _T_Start;
21
- readonly 'subpath': _T_Directory_Subpath;
22
- };
23
- export type _T_Directory_Path_Parameter = {
24
- readonly 'path': _T_Directory_Path;
22
+ export type _T_Context_Path_Parameter = {
23
+ readonly 'path': _T_Context_Path;
25
24
  readonly 'escape spaces in path': boolean;
26
25
  };
27
26
  export type _T_Non_Normalized_Path = {
@@ -31,11 +30,11 @@ export type _T_Non_Normalized_Path = {
31
30
  };
32
31
  export type Up_Steps = _T_Up_Steps;
33
32
  export type Start = _T_Start;
34
- export type Directory_Subpath = _T_Directory_Subpath;
33
+ export type Context_Subpath = _T_Context_Subpath;
34
+ export type Context_Path = _T_Context_Path;
35
35
  export type Node_Path = _T_Node_Path;
36
36
  export type Node_Path_Parameter = _T_Node_Path_Parameter;
37
- export type Directory_Path = _T_Directory_Path;
38
- export type Directory_Path_Parameter = _T_Directory_Path_Parameter;
37
+ export type Context_Path_Parameter = _T_Context_Path_Parameter;
39
38
  export type Non_Normalized_Path = _T_Non_Normalized_Path;
40
39
  export declare namespace _T_Start {
41
40
  namespace SG {
@@ -56,16 +55,21 @@ export declare namespace _T_Start {
56
55
  }
57
56
  ];
58
57
  }
59
- export declare namespace _T_Directory_Subpath {
58
+ export declare namespace _T_Context_Subpath {
60
59
  type L = string;
61
60
  }
62
- export declare namespace _T_Node_Path {
61
+ export declare namespace _T_Context_Path {
63
62
  namespace start {
64
63
  }
65
64
  type start = _T_Start;
66
65
  namespace subpath {
67
66
  }
68
- type subpath = _T_Directory_Subpath;
67
+ type subpath = _T_Context_Subpath;
68
+ }
69
+ export declare namespace _T_Node_Path {
70
+ namespace context {
71
+ }
72
+ type context = _T_Context_Path;
69
73
  type node = string;
70
74
  }
71
75
  export declare namespace _T_Node_Path_Parameter {
@@ -74,18 +78,10 @@ export declare namespace _T_Node_Path_Parameter {
74
78
  type path = _T_Node_Path;
75
79
  type escape_spaces_in_path = boolean;
76
80
  }
77
- export declare namespace _T_Directory_Path {
78
- namespace start {
79
- }
80
- type start = _T_Start;
81
- namespace subpath {
82
- }
83
- type subpath = _T_Directory_Subpath;
84
- }
85
- export declare namespace _T_Directory_Path_Parameter {
81
+ export declare namespace _T_Context_Path_Parameter {
86
82
  namespace path {
87
83
  }
88
- type path = _T_Directory_Path;
84
+ type path = _T_Context_Path;
89
85
  type escape_spaces_in_path = boolean;
90
86
  }
91
87
  export declare namespace _T_Non_Normalized_Path {
@@ -124,16 +120,21 @@ export declare namespace Start {
124
120
  }
125
121
  ];
126
122
  }
127
- export declare namespace Directory_Subpath {
123
+ export declare namespace Context_Subpath {
128
124
  type L = string;
129
125
  }
130
- export declare namespace Node_Path {
126
+ export declare namespace Context_Path {
131
127
  namespace start {
132
128
  }
133
129
  type start = _T_Start;
134
130
  namespace subpath {
135
131
  }
136
- type subpath = _T_Directory_Subpath;
132
+ type subpath = _T_Context_Subpath;
133
+ }
134
+ export declare namespace Node_Path {
135
+ namespace context {
136
+ }
137
+ type context = _T_Context_Path;
137
138
  type node = string;
138
139
  }
139
140
  export declare namespace Node_Path_Parameter {
@@ -142,18 +143,10 @@ export declare namespace Node_Path_Parameter {
142
143
  type path = _T_Node_Path;
143
144
  type escape_spaces_in_path = boolean;
144
145
  }
145
- export declare namespace Directory_Path {
146
- namespace start {
147
- }
148
- type start = _T_Start;
149
- namespace subpath {
150
- }
151
- type subpath = _T_Directory_Subpath;
152
- }
153
- export declare namespace Directory_Path_Parameter {
146
+ export declare namespace Context_Path_Parameter {
154
147
  namespace path {
155
148
  }
156
- type path = _T_Directory_Path;
149
+ type path = _T_Context_Path;
157
150
  type escape_spaces_in_path = boolean;
158
151
  }
159
152
  export declare namespace Non_Normalized_Path {
@@ -6,22 +6,21 @@ export type _T_Start = _i_core._T_State_Group<null, readonly ['absolute', null]
6
6
  readonly 'up steps': _T_Up_Steps;
7
7
  }
8
8
  ]>;
9
- export type _T_Directory_Subpath = _i_core._T_List<null, string>;
10
- export type _T_Node_Path = {
9
+ export type _T_Context_Subpath = _i_core._T_List<null, string>;
10
+ export type _T_Context_Path = {
11
11
  readonly 'start': _T_Start;
12
- readonly 'subpath': _T_Directory_Subpath;
12
+ readonly 'subpath': _T_Context_Subpath;
13
+ };
14
+ export type _T_Node_Path = {
15
+ readonly 'context': _T_Context_Path;
13
16
  readonly 'node': string;
14
17
  };
15
18
  export type _T_Node_Path_Parameter = {
16
19
  readonly 'path': _T_Node_Path;
17
20
  readonly 'escape spaces in path': boolean;
18
21
  };
19
- export type _T_Directory_Path = {
20
- readonly 'start': _T_Start;
21
- readonly 'subpath': _T_Directory_Subpath;
22
- };
23
- export type _T_Directory_Path_Parameter = {
24
- readonly 'path': _T_Directory_Path;
22
+ export type _T_Context_Path_Parameter = {
23
+ readonly 'path': _T_Context_Path;
25
24
  readonly 'escape spaces in path': boolean;
26
25
  };
27
26
  export type _T_Non_Normalized_Path = {
@@ -31,11 +30,11 @@ export type _T_Non_Normalized_Path = {
31
30
  };
32
31
  export type Up_Steps = _T_Up_Steps;
33
32
  export type Start = _T_Start;
34
- export type Directory_Subpath = _T_Directory_Subpath;
33
+ export type Context_Subpath = _T_Context_Subpath;
34
+ export type Context_Path = _T_Context_Path;
35
35
  export type Node_Path = _T_Node_Path;
36
36
  export type Node_Path_Parameter = _T_Node_Path_Parameter;
37
- export type Directory_Path = _T_Directory_Path;
38
- export type Directory_Path_Parameter = _T_Directory_Path_Parameter;
37
+ export type Context_Path_Parameter = _T_Context_Path_Parameter;
39
38
  export type Non_Normalized_Path = _T_Non_Normalized_Path;
40
39
  export declare namespace _T_Start {
41
40
  namespace SG {
@@ -56,16 +55,21 @@ export declare namespace _T_Start {
56
55
  }
57
56
  ];
58
57
  }
59
- export declare namespace _T_Directory_Subpath {
58
+ export declare namespace _T_Context_Subpath {
60
59
  type L = string;
61
60
  }
62
- export declare namespace _T_Node_Path {
61
+ export declare namespace _T_Context_Path {
63
62
  namespace start {
64
63
  }
65
64
  type start = _T_Start;
66
65
  namespace subpath {
67
66
  }
68
- type subpath = _T_Directory_Subpath;
67
+ type subpath = _T_Context_Subpath;
68
+ }
69
+ export declare namespace _T_Node_Path {
70
+ namespace context {
71
+ }
72
+ type context = _T_Context_Path;
69
73
  type node = string;
70
74
  }
71
75
  export declare namespace _T_Node_Path_Parameter {
@@ -74,18 +78,10 @@ export declare namespace _T_Node_Path_Parameter {
74
78
  type path = _T_Node_Path;
75
79
  type escape_spaces_in_path = boolean;
76
80
  }
77
- export declare namespace _T_Directory_Path {
78
- namespace start {
79
- }
80
- type start = _T_Start;
81
- namespace subpath {
82
- }
83
- type subpath = _T_Directory_Subpath;
84
- }
85
- export declare namespace _T_Directory_Path_Parameter {
81
+ export declare namespace _T_Context_Path_Parameter {
86
82
  namespace path {
87
83
  }
88
- type path = _T_Directory_Path;
84
+ type path = _T_Context_Path;
89
85
  type escape_spaces_in_path = boolean;
90
86
  }
91
87
  export declare namespace _T_Non_Normalized_Path {
@@ -124,16 +120,21 @@ export declare namespace Start {
124
120
  }
125
121
  ];
126
122
  }
127
- export declare namespace Directory_Subpath {
123
+ export declare namespace Context_Subpath {
128
124
  type L = string;
129
125
  }
130
- export declare namespace Node_Path {
126
+ export declare namespace Context_Path {
131
127
  namespace start {
132
128
  }
133
129
  type start = _T_Start;
134
130
  namespace subpath {
135
131
  }
136
- type subpath = _T_Directory_Subpath;
132
+ type subpath = _T_Context_Subpath;
133
+ }
134
+ export declare namespace Node_Path {
135
+ namespace context {
136
+ }
137
+ type context = _T_Context_Path;
137
138
  type node = string;
138
139
  }
139
140
  export declare namespace Node_Path_Parameter {
@@ -142,18 +143,10 @@ export declare namespace Node_Path_Parameter {
142
143
  type path = _T_Node_Path;
143
144
  type escape_spaces_in_path = boolean;
144
145
  }
145
- export declare namespace Directory_Path {
146
- namespace start {
147
- }
148
- type start = _T_Start;
149
- namespace subpath {
150
- }
151
- type subpath = _T_Directory_Subpath;
152
- }
153
- export declare namespace Directory_Path_Parameter {
146
+ export declare namespace Context_Path_Parameter {
154
147
  namespace path {
155
148
  }
156
- type path = _T_Directory_Path;
149
+ type path = _T_Context_Path;
157
150
  type escape_spaces_in_path = boolean;
158
151
  }
159
152
  export declare namespace Non_Normalized_Path {
@@ -6,31 +6,31 @@ export type _T_Up_Steps = ($$_: string, $$_p: {
6
6
  export type _T_Start = ($$_: string, $$_p: {
7
7
  readonly 'value deserializers': _i_vd._T_Value_Deserializers;
8
8
  }) => _i_out._T_Start;
9
- export type _T_Directory_Subpath = ($$_: string, $$_p: {
9
+ export type _T_Context_Subpath = ($$_: string, $$_p: {
10
10
  readonly 'value deserializers': _i_vd._T_Value_Deserializers;
11
- }) => _i_out._T_Directory_Subpath;
11
+ }) => _i_out._T_Context_Subpath;
12
+ export type _T_Context_Path = ($$_: string, $$_p: {
13
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
14
+ }) => _i_out._T_Context_Path;
12
15
  export type _T_Node_Path = ($$_: string, $$_p: {
13
16
  readonly 'value deserializers': _i_vd._T_Value_Deserializers;
14
17
  }) => _i_out._T_Node_Path;
15
18
  export type _T_Node_Path_Parameter = ($$_: string, $$_p: {
16
19
  readonly 'value deserializers': _i_vd._T_Value_Deserializers;
17
20
  }) => _i_out._T_Node_Path_Parameter;
18
- export type _T_Directory_Path = ($$_: string, $$_p: {
19
- readonly 'value deserializers': _i_vd._T_Value_Deserializers;
20
- }) => _i_out._T_Directory_Path;
21
- export type _T_Directory_Path_Parameter = ($$_: string, $$_p: {
21
+ export type _T_Context_Path_Parameter = ($$_: string, $$_p: {
22
22
  readonly 'value deserializers': _i_vd._T_Value_Deserializers;
23
- }) => _i_out._T_Directory_Path_Parameter;
23
+ }) => _i_out._T_Context_Path_Parameter;
24
24
  export type _T_Non_Normalized_Path = ($$_: string, $$_p: {
25
25
  readonly 'value deserializers': _i_vd._T_Value_Deserializers;
26
26
  }) => _i_out._T_Non_Normalized_Path;
27
27
  export type Up_Steps = _T_Up_Steps;
28
28
  export type Start = _T_Start;
29
- export type Directory_Subpath = _T_Directory_Subpath;
29
+ export type Context_Subpath = _T_Context_Subpath;
30
+ export type Context_Path = _T_Context_Path;
30
31
  export type Node_Path = _T_Node_Path;
31
32
  export type Node_Path_Parameter = _T_Node_Path_Parameter;
32
- export type Directory_Path = _T_Directory_Path;
33
- export type Directory_Path_Parameter = _T_Directory_Path_Parameter;
33
+ export type Context_Path_Parameter = _T_Context_Path_Parameter;
34
34
  export type Non_Normalized_Path = _T_Non_Normalized_Path;
35
35
  export declare namespace _T_Up_Steps {
36
36
  type CONTEXT = string;
@@ -54,7 +54,7 @@ export declare namespace _T_Start {
54
54
  }
55
55
  type RESULT = _i_out._T_Start;
56
56
  }
57
- export declare namespace _T_Directory_Subpath {
57
+ export declare namespace _T_Context_Subpath {
58
58
  type CONTEXT = string;
59
59
  namespace PARAMS {
60
60
  namespace value_deserializers {
@@ -63,9 +63,9 @@ export declare namespace _T_Directory_Subpath {
63
63
  }
64
64
  namespace RESULT {
65
65
  }
66
- type RESULT = _i_out._T_Directory_Subpath;
66
+ type RESULT = _i_out._T_Context_Subpath;
67
67
  }
68
- export declare namespace _T_Node_Path {
68
+ export declare namespace _T_Context_Path {
69
69
  type CONTEXT = string;
70
70
  namespace PARAMS {
71
71
  namespace value_deserializers {
@@ -74,9 +74,9 @@ export declare namespace _T_Node_Path {
74
74
  }
75
75
  namespace RESULT {
76
76
  }
77
- type RESULT = _i_out._T_Node_Path;
77
+ type RESULT = _i_out._T_Context_Path;
78
78
  }
79
- export declare namespace _T_Node_Path_Parameter {
79
+ export declare namespace _T_Node_Path {
80
80
  type CONTEXT = string;
81
81
  namespace PARAMS {
82
82
  namespace value_deserializers {
@@ -85,9 +85,9 @@ export declare namespace _T_Node_Path_Parameter {
85
85
  }
86
86
  namespace RESULT {
87
87
  }
88
- type RESULT = _i_out._T_Node_Path_Parameter;
88
+ type RESULT = _i_out._T_Node_Path;
89
89
  }
90
- export declare namespace _T_Directory_Path {
90
+ export declare namespace _T_Node_Path_Parameter {
91
91
  type CONTEXT = string;
92
92
  namespace PARAMS {
93
93
  namespace value_deserializers {
@@ -96,9 +96,9 @@ export declare namespace _T_Directory_Path {
96
96
  }
97
97
  namespace RESULT {
98
98
  }
99
- type RESULT = _i_out._T_Directory_Path;
99
+ type RESULT = _i_out._T_Node_Path_Parameter;
100
100
  }
101
- export declare namespace _T_Directory_Path_Parameter {
101
+ export declare namespace _T_Context_Path_Parameter {
102
102
  type CONTEXT = string;
103
103
  namespace PARAMS {
104
104
  namespace value_deserializers {
@@ -107,7 +107,7 @@ export declare namespace _T_Directory_Path_Parameter {
107
107
  }
108
108
  namespace RESULT {
109
109
  }
110
- type RESULT = _i_out._T_Directory_Path_Parameter;
110
+ type RESULT = _i_out._T_Context_Path_Parameter;
111
111
  }
112
112
  export declare namespace _T_Non_Normalized_Path {
113
113
  type CONTEXT = string;
@@ -142,7 +142,7 @@ export declare namespace Start {
142
142
  }
143
143
  type RESULT = _i_out._T_Start;
144
144
  }
145
- export declare namespace Directory_Subpath {
145
+ export declare namespace Context_Subpath {
146
146
  type CONTEXT = string;
147
147
  namespace PARAMS {
148
148
  namespace value_deserializers {
@@ -151,9 +151,9 @@ export declare namespace Directory_Subpath {
151
151
  }
152
152
  namespace RESULT {
153
153
  }
154
- type RESULT = _i_out._T_Directory_Subpath;
154
+ type RESULT = _i_out._T_Context_Subpath;
155
155
  }
156
- export declare namespace Node_Path {
156
+ export declare namespace Context_Path {
157
157
  type CONTEXT = string;
158
158
  namespace PARAMS {
159
159
  namespace value_deserializers {
@@ -162,9 +162,9 @@ export declare namespace Node_Path {
162
162
  }
163
163
  namespace RESULT {
164
164
  }
165
- type RESULT = _i_out._T_Node_Path;
165
+ type RESULT = _i_out._T_Context_Path;
166
166
  }
167
- export declare namespace Node_Path_Parameter {
167
+ export declare namespace Node_Path {
168
168
  type CONTEXT = string;
169
169
  namespace PARAMS {
170
170
  namespace value_deserializers {
@@ -173,9 +173,9 @@ export declare namespace Node_Path_Parameter {
173
173
  }
174
174
  namespace RESULT {
175
175
  }
176
- type RESULT = _i_out._T_Node_Path_Parameter;
176
+ type RESULT = _i_out._T_Node_Path;
177
177
  }
178
- export declare namespace Directory_Path {
178
+ export declare namespace Node_Path_Parameter {
179
179
  type CONTEXT = string;
180
180
  namespace PARAMS {
181
181
  namespace value_deserializers {
@@ -184,9 +184,9 @@ export declare namespace Directory_Path {
184
184
  }
185
185
  namespace RESULT {
186
186
  }
187
- type RESULT = _i_out._T_Directory_Path;
187
+ type RESULT = _i_out._T_Node_Path_Parameter;
188
188
  }
189
- export declare namespace Directory_Path_Parameter {
189
+ export declare namespace Context_Path_Parameter {
190
190
  type CONTEXT = string;
191
191
  namespace PARAMS {
192
192
  namespace value_deserializers {
@@ -195,7 +195,7 @@ export declare namespace Directory_Path_Parameter {
195
195
  }
196
196
  namespace RESULT {
197
197
  }
198
- type RESULT = _i_out._T_Directory_Path_Parameter;
198
+ type RESULT = _i_out._T_Context_Path_Parameter;
199
199
  }
200
200
  export declare namespace Non_Normalized_Path {
201
201
  type CONTEXT = string;
@@ -7,19 +7,19 @@ export type _T_Up_Steps = ($$_: _i_in._T_Up_Steps, $$_p: {
7
7
  export type _T_Start = ($$_: _i_in._T_Start, $$_p: {
8
8
  readonly 'value serializers': _i_vs._T_Value_Serializers;
9
9
  }) => _i_out._T_Value;
10
- export type _T_Directory_Subpath = ($$_: _i_in._T_Directory_Subpath, $$_p: {
10
+ export type _T_Context_Subpath = ($$_: _i_in._T_Context_Subpath, $$_p: {
11
11
  readonly 'value serializers': _i_vs._T_Value_Serializers;
12
12
  }) => _i_out._T_Value;
13
- export type _T_Node_Path = ($$_: _i_in._T_Node_Path, $$_p: {
13
+ export type _T_Context_Path = ($$_: _i_in._T_Context_Path, $$_p: {
14
14
  readonly 'value serializers': _i_vs._T_Value_Serializers;
15
15
  }) => _i_out._T_Value;
16
- export type _T_Node_Path_Parameter = ($$_: _i_in._T_Node_Path_Parameter, $$_p: {
16
+ export type _T_Node_Path = ($$_: _i_in._T_Node_Path, $$_p: {
17
17
  readonly 'value serializers': _i_vs._T_Value_Serializers;
18
18
  }) => _i_out._T_Value;
19
- export type _T_Directory_Path = ($$_: _i_in._T_Directory_Path, $$_p: {
19
+ export type _T_Node_Path_Parameter = ($$_: _i_in._T_Node_Path_Parameter, $$_p: {
20
20
  readonly 'value serializers': _i_vs._T_Value_Serializers;
21
21
  }) => _i_out._T_Value;
22
- export type _T_Directory_Path_Parameter = ($$_: _i_in._T_Directory_Path_Parameter, $$_p: {
22
+ export type _T_Context_Path_Parameter = ($$_: _i_in._T_Context_Path_Parameter, $$_p: {
23
23
  readonly 'value serializers': _i_vs._T_Value_Serializers;
24
24
  }) => _i_out._T_Value;
25
25
  export type _T_Non_Normalized_Path = ($$_: _i_in._T_Non_Normalized_Path, $$_p: {
@@ -27,11 +27,11 @@ export type _T_Non_Normalized_Path = ($$_: _i_in._T_Non_Normalized_Path, $$_p: {
27
27
  }) => _i_out._T_Value;
28
28
  export type Up_Steps = _T_Up_Steps;
29
29
  export type Start = _T_Start;
30
- export type Directory_Subpath = _T_Directory_Subpath;
30
+ export type Context_Subpath = _T_Context_Subpath;
31
+ export type Context_Path = _T_Context_Path;
31
32
  export type Node_Path = _T_Node_Path;
32
33
  export type Node_Path_Parameter = _T_Node_Path_Parameter;
33
- export type Directory_Path = _T_Directory_Path;
34
- export type Directory_Path_Parameter = _T_Directory_Path_Parameter;
34
+ export type Context_Path_Parameter = _T_Context_Path_Parameter;
35
35
  export type Non_Normalized_Path = _T_Non_Normalized_Path;
36
36
  export declare namespace _T_Up_Steps {
37
37
  namespace CONTEXT {
@@ -59,10 +59,10 @@ export declare namespace _T_Start {
59
59
  }
60
60
  type RESULT = _i_out._T_Value;
61
61
  }
62
- export declare namespace _T_Directory_Subpath {
62
+ export declare namespace _T_Context_Subpath {
63
63
  namespace CONTEXT {
64
64
  }
65
- type CONTEXT = _i_in._T_Directory_Subpath;
65
+ type CONTEXT = _i_in._T_Context_Subpath;
66
66
  namespace PARAMS {
67
67
  namespace value_serializers {
68
68
  }
@@ -72,10 +72,10 @@ export declare namespace _T_Directory_Subpath {
72
72
  }
73
73
  type RESULT = _i_out._T_Value;
74
74
  }
75
- export declare namespace _T_Node_Path {
75
+ export declare namespace _T_Context_Path {
76
76
  namespace CONTEXT {
77
77
  }
78
- type CONTEXT = _i_in._T_Node_Path;
78
+ type CONTEXT = _i_in._T_Context_Path;
79
79
  namespace PARAMS {
80
80
  namespace value_serializers {
81
81
  }
@@ -85,10 +85,10 @@ export declare namespace _T_Node_Path {
85
85
  }
86
86
  type RESULT = _i_out._T_Value;
87
87
  }
88
- export declare namespace _T_Node_Path_Parameter {
88
+ export declare namespace _T_Node_Path {
89
89
  namespace CONTEXT {
90
90
  }
91
- type CONTEXT = _i_in._T_Node_Path_Parameter;
91
+ type CONTEXT = _i_in._T_Node_Path;
92
92
  namespace PARAMS {
93
93
  namespace value_serializers {
94
94
  }
@@ -98,10 +98,10 @@ export declare namespace _T_Node_Path_Parameter {
98
98
  }
99
99
  type RESULT = _i_out._T_Value;
100
100
  }
101
- export declare namespace _T_Directory_Path {
101
+ export declare namespace _T_Node_Path_Parameter {
102
102
  namespace CONTEXT {
103
103
  }
104
- type CONTEXT = _i_in._T_Directory_Path;
104
+ type CONTEXT = _i_in._T_Node_Path_Parameter;
105
105
  namespace PARAMS {
106
106
  namespace value_serializers {
107
107
  }
@@ -111,10 +111,10 @@ export declare namespace _T_Directory_Path {
111
111
  }
112
112
  type RESULT = _i_out._T_Value;
113
113
  }
114
- export declare namespace _T_Directory_Path_Parameter {
114
+ export declare namespace _T_Context_Path_Parameter {
115
115
  namespace CONTEXT {
116
116
  }
117
- type CONTEXT = _i_in._T_Directory_Path_Parameter;
117
+ type CONTEXT = _i_in._T_Context_Path_Parameter;
118
118
  namespace PARAMS {
119
119
  namespace value_serializers {
120
120
  }
@@ -163,10 +163,10 @@ export declare namespace Start {
163
163
  }
164
164
  type RESULT = _i_out._T_Value;
165
165
  }
166
- export declare namespace Directory_Subpath {
166
+ export declare namespace Context_Subpath {
167
167
  namespace CONTEXT {
168
168
  }
169
- type CONTEXT = _i_in._T_Directory_Subpath;
169
+ type CONTEXT = _i_in._T_Context_Subpath;
170
170
  namespace PARAMS {
171
171
  namespace value_serializers {
172
172
  }
@@ -176,10 +176,10 @@ export declare namespace Directory_Subpath {
176
176
  }
177
177
  type RESULT = _i_out._T_Value;
178
178
  }
179
- export declare namespace Node_Path {
179
+ export declare namespace Context_Path {
180
180
  namespace CONTEXT {
181
181
  }
182
- type CONTEXT = _i_in._T_Node_Path;
182
+ type CONTEXT = _i_in._T_Context_Path;
183
183
  namespace PARAMS {
184
184
  namespace value_serializers {
185
185
  }
@@ -189,10 +189,10 @@ export declare namespace Node_Path {
189
189
  }
190
190
  type RESULT = _i_out._T_Value;
191
191
  }
192
- export declare namespace Node_Path_Parameter {
192
+ export declare namespace Node_Path {
193
193
  namespace CONTEXT {
194
194
  }
195
- type CONTEXT = _i_in._T_Node_Path_Parameter;
195
+ type CONTEXT = _i_in._T_Node_Path;
196
196
  namespace PARAMS {
197
197
  namespace value_serializers {
198
198
  }
@@ -202,10 +202,10 @@ export declare namespace Node_Path_Parameter {
202
202
  }
203
203
  type RESULT = _i_out._T_Value;
204
204
  }
205
- export declare namespace Directory_Path {
205
+ export declare namespace Node_Path_Parameter {
206
206
  namespace CONTEXT {
207
207
  }
208
- type CONTEXT = _i_in._T_Directory_Path;
208
+ type CONTEXT = _i_in._T_Node_Path_Parameter;
209
209
  namespace PARAMS {
210
210
  namespace value_serializers {
211
211
  }
@@ -215,10 +215,10 @@ export declare namespace Directory_Path {
215
215
  }
216
216
  type RESULT = _i_out._T_Value;
217
217
  }
218
- export declare namespace Directory_Path_Parameter {
218
+ export declare namespace Context_Path_Parameter {
219
219
  namespace CONTEXT {
220
220
  }
221
- type CONTEXT = _i_in._T_Directory_Path_Parameter;
221
+ type CONTEXT = _i_in._T_Context_Path_Parameter;
222
222
  namespace PARAMS {
223
223
  namespace value_serializers {
224
224
  }