exupery-resources 0.3.17 → 0.3.19

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 (54) hide show
  1. package/dist/implementation/generated/pareto/schemas/make_directory/deserialize.d.ts +0 -1
  2. package/dist/implementation/generated/pareto/schemas/make_directory/deserialize.js +2 -4
  3. package/dist/implementation/generated/pareto/schemas/make_directory/marshall.d.ts +0 -1
  4. package/dist/implementation/generated/pareto/schemas/make_directory/marshall.js +4 -14
  5. package/dist/implementation/generated/pareto/schemas/make_directory/serialize.d.ts +0 -1
  6. package/dist/implementation/generated/pareto/schemas/make_directory/serialize.js +2 -6
  7. package/dist/implementation/generated/pareto/schemas/make_directory/unmarshall.d.ts +0 -1
  8. package/dist/implementation/generated/pareto/schemas/make_directory/unmarshall.js +4 -16
  9. package/dist/implementation/generated/pareto/schemas/path/deserialize.d.ts +8 -0
  10. package/dist/implementation/generated/pareto/schemas/path/deserialize.js +42 -0
  11. package/dist/implementation/generated/pareto/schemas/path/marshall.d.ts +8 -0
  12. package/dist/implementation/generated/pareto/schemas/path/marshall.js +123 -0
  13. package/dist/implementation/generated/pareto/schemas/path/serialize.d.ts +8 -0
  14. package/dist/implementation/generated/pareto/schemas/path/serialize.js +57 -0
  15. package/dist/implementation/generated/pareto/schemas/path/unmarshall.d.ts +8 -0
  16. package/dist/implementation/generated/pareto/schemas/path/unmarshall.js +127 -0
  17. package/dist/implementation/refiners/directory_path/non_normalized_path.d.ts +5 -0
  18. package/dist/implementation/refiners/directory_path/non_normalized_path.js +67 -0
  19. package/dist/implementation/refiners/node_path/non_normalized_path.d.ts +7 -0
  20. package/dist/implementation/refiners/node_path/non_normalized_path.js +84 -0
  21. package/dist/implementation/refiners/non_normalized_path/text.d.ts +2 -0
  22. package/dist/implementation/refiners/non_normalized_path/text.js +85 -0
  23. package/dist/implementation/transformers/path/text.d.ts +2 -0
  24. package/dist/implementation/transformers/path/text.js +52 -0
  25. package/dist/interface/generated/pareto/schemas/make_directory/data_types/source.d.ts +2 -14
  26. package/dist/interface/generated/pareto/schemas/make_directory/data_types/target.d.ts +2 -14
  27. package/dist/interface/generated/pareto/schemas/make_directory/deserialize.d.ts +0 -26
  28. package/dist/interface/generated/pareto/schemas/make_directory/marshall.d.ts +0 -30
  29. package/dist/interface/generated/pareto/schemas/make_directory/migrate_boilerplate.d.ts +0 -22
  30. package/dist/interface/generated/pareto/schemas/make_directory/serialize.d.ts +0 -26
  31. package/dist/interface/generated/pareto/schemas/make_directory/unmarshall.d.ts +0 -30
  32. package/dist/interface/generated/pareto/schemas/path/data_types/resolve.d.ts +1 -0
  33. package/dist/interface/generated/pareto/schemas/path/data_types/resolve.js +7 -0
  34. package/dist/interface/generated/pareto/schemas/path/data_types/source.d.ts +158 -0
  35. package/dist/interface/generated/pareto/schemas/path/data_types/source.js +3 -0
  36. package/dist/interface/generated/pareto/schemas/path/data_types/target.d.ts +158 -0
  37. package/dist/interface/generated/pareto/schemas/path/data_types/target.js +3 -0
  38. package/dist/interface/generated/pareto/schemas/path/deserialize.d.ts +184 -0
  39. package/dist/interface/generated/pareto/schemas/path/deserialize.js +3 -0
  40. package/dist/interface/generated/pareto/schemas/path/marshall.d.ts +213 -0
  41. package/dist/interface/generated/pareto/schemas/path/marshall.js +3 -0
  42. package/dist/interface/generated/pareto/schemas/path/migrate_boilerplate.d.ts +156 -0
  43. package/dist/interface/generated/pareto/schemas/path/migrate_boilerplate.js +3 -0
  44. package/dist/interface/generated/pareto/schemas/path/serialize.d.ts +184 -0
  45. package/dist/interface/generated/pareto/schemas/path/serialize.js +3 -0
  46. package/dist/interface/generated/pareto/schemas/path/unmarshall.d.ts +213 -0
  47. package/dist/interface/generated/pareto/schemas/path/unmarshall.js +3 -0
  48. package/dist/interface/generated/pareto/schemas/path/value_deserializers.d.ts +44 -0
  49. package/dist/interface/generated/pareto/schemas/path/value_deserializers.js +3 -0
  50. package/dist/interface/generated/pareto/schemas/path/value_serializers.d.ts +44 -0
  51. package/dist/interface/generated/pareto/schemas/path/value_serializers.js +3 -0
  52. package/dist/temp_core.d.ts +10 -0
  53. package/dist/temp_core.js +73 -0
  54. package/package.json +2 -2
@@ -0,0 +1,158 @@
1
+ import * as _i_core from "../../../core/resolved";
2
+ export type _T_Up_Steps = number;
3
+ export type _T_Start = _i_core._T_State_Group<null, readonly ['absolute', null] | readonly [
4
+ 'relative',
5
+ {
6
+ readonly 'up steps': _T_Up_Steps;
7
+ }
8
+ ]>;
9
+ export type _T_Directory_Subpath = _i_core._T_List<null, string>;
10
+ export type _T_Node_Path = {
11
+ readonly 'start': _T_Start;
12
+ readonly 'subpath': _T_Directory_Subpath;
13
+ readonly 'node': string;
14
+ };
15
+ export type _T_Path_Parameter = {
16
+ readonly 'path': _T_Node_Path;
17
+ readonly 'escape spaces in path': boolean;
18
+ };
19
+ export type _T_Directory_Path = {
20
+ readonly 'start': _T_Start;
21
+ readonly 'subpath': _T_Directory_Subpath;
22
+ };
23
+ export type _T_Non_Normalized_Path = {
24
+ readonly 'leading slash': boolean;
25
+ readonly 'segments': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null]>>;
26
+ readonly 'trailing slash': boolean;
27
+ };
28
+ export type Up_Steps = _T_Up_Steps;
29
+ export type Start = _T_Start;
30
+ export type Directory_Subpath = _T_Directory_Subpath;
31
+ export type Node_Path = _T_Node_Path;
32
+ export type Path_Parameter = _T_Path_Parameter;
33
+ export type Directory_Path = _T_Directory_Path;
34
+ export type Non_Normalized_Path = _T_Non_Normalized_Path;
35
+ export declare namespace _T_Start {
36
+ namespace SG {
37
+ type absolute = null;
38
+ namespace relative {
39
+ namespace up_steps {
40
+ }
41
+ type up_steps = _T_Up_Steps;
42
+ }
43
+ type relative = {
44
+ readonly 'up steps': _T_Up_Steps;
45
+ };
46
+ }
47
+ type SG = readonly ['absolute', null] | readonly [
48
+ 'relative',
49
+ {
50
+ readonly 'up steps': _T_Up_Steps;
51
+ }
52
+ ];
53
+ }
54
+ export declare namespace _T_Directory_Subpath {
55
+ type L = string;
56
+ }
57
+ export declare namespace _T_Node_Path {
58
+ namespace start {
59
+ }
60
+ type start = _T_Start;
61
+ namespace subpath {
62
+ }
63
+ type subpath = _T_Directory_Subpath;
64
+ type node = string;
65
+ }
66
+ export declare namespace _T_Path_Parameter {
67
+ namespace path {
68
+ }
69
+ type path = _T_Node_Path;
70
+ type escape_spaces_in_path = boolean;
71
+ }
72
+ export declare namespace _T_Directory_Path {
73
+ namespace start {
74
+ }
75
+ type start = _T_Start;
76
+ namespace subpath {
77
+ }
78
+ type subpath = _T_Directory_Subpath;
79
+ }
80
+ export declare namespace _T_Non_Normalized_Path {
81
+ type leading_slash = boolean;
82
+ namespace segments {
83
+ namespace L {
84
+ namespace SG {
85
+ type parent = null;
86
+ type child = string;
87
+ type current = null;
88
+ type nothing = null;
89
+ }
90
+ type SG = readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null];
91
+ }
92
+ type L = _i_core._T_State_Group<null, readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null]>;
93
+ }
94
+ type segments = _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null]>>;
95
+ type trailing_slash = boolean;
96
+ }
97
+ export declare namespace Start {
98
+ namespace SG {
99
+ type absolute = null;
100
+ namespace relative {
101
+ namespace up_steps {
102
+ }
103
+ type up_steps = _T_Up_Steps;
104
+ }
105
+ type relative = {
106
+ readonly 'up steps': _T_Up_Steps;
107
+ };
108
+ }
109
+ type SG = readonly ['absolute', null] | readonly [
110
+ 'relative',
111
+ {
112
+ readonly 'up steps': _T_Up_Steps;
113
+ }
114
+ ];
115
+ }
116
+ export declare namespace Directory_Subpath {
117
+ type L = string;
118
+ }
119
+ export declare namespace Node_Path {
120
+ namespace start {
121
+ }
122
+ type start = _T_Start;
123
+ namespace subpath {
124
+ }
125
+ type subpath = _T_Directory_Subpath;
126
+ type node = string;
127
+ }
128
+ export declare namespace Path_Parameter {
129
+ namespace path {
130
+ }
131
+ type path = _T_Node_Path;
132
+ type escape_spaces_in_path = boolean;
133
+ }
134
+ export declare namespace Directory_Path {
135
+ namespace start {
136
+ }
137
+ type start = _T_Start;
138
+ namespace subpath {
139
+ }
140
+ type subpath = _T_Directory_Subpath;
141
+ }
142
+ export declare namespace Non_Normalized_Path {
143
+ type leading_slash = boolean;
144
+ namespace segments {
145
+ namespace L {
146
+ namespace SG {
147
+ type parent = null;
148
+ type child = string;
149
+ type current = null;
150
+ type nothing = null;
151
+ }
152
+ type SG = readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null];
153
+ }
154
+ type L = _i_core._T_State_Group<null, readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null]>;
155
+ }
156
+ type segments = _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null]>>;
157
+ type trailing_slash = boolean;
158
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic291cmNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvcGF0aC9kYXRhX3R5cGVzL3NvdXJjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,158 @@
1
+ import * as _i_core from "../../../core/unconstrained";
2
+ export type _T_Up_Steps = number;
3
+ export type _T_Start = _i_core._T_State_Group<null, readonly ['absolute', null] | readonly [
4
+ 'relative',
5
+ {
6
+ readonly 'up steps': _T_Up_Steps;
7
+ }
8
+ ]>;
9
+ export type _T_Directory_Subpath = _i_core._T_List<null, string>;
10
+ export type _T_Node_Path = {
11
+ readonly 'start': _T_Start;
12
+ readonly 'subpath': _T_Directory_Subpath;
13
+ readonly 'node': string;
14
+ };
15
+ export type _T_Path_Parameter = {
16
+ readonly 'path': _T_Node_Path;
17
+ readonly 'escape spaces in path': boolean;
18
+ };
19
+ export type _T_Directory_Path = {
20
+ readonly 'start': _T_Start;
21
+ readonly 'subpath': _T_Directory_Subpath;
22
+ };
23
+ export type _T_Non_Normalized_Path = {
24
+ readonly 'leading slash': boolean;
25
+ readonly 'segments': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null]>>;
26
+ readonly 'trailing slash': boolean;
27
+ };
28
+ export type Up_Steps = _T_Up_Steps;
29
+ export type Start = _T_Start;
30
+ export type Directory_Subpath = _T_Directory_Subpath;
31
+ export type Node_Path = _T_Node_Path;
32
+ export type Path_Parameter = _T_Path_Parameter;
33
+ export type Directory_Path = _T_Directory_Path;
34
+ export type Non_Normalized_Path = _T_Non_Normalized_Path;
35
+ export declare namespace _T_Start {
36
+ namespace SG {
37
+ type absolute = null;
38
+ namespace relative {
39
+ namespace up_steps {
40
+ }
41
+ type up_steps = _T_Up_Steps;
42
+ }
43
+ type relative = {
44
+ readonly 'up steps': _T_Up_Steps;
45
+ };
46
+ }
47
+ type SG = readonly ['absolute', null] | readonly [
48
+ 'relative',
49
+ {
50
+ readonly 'up steps': _T_Up_Steps;
51
+ }
52
+ ];
53
+ }
54
+ export declare namespace _T_Directory_Subpath {
55
+ type L = string;
56
+ }
57
+ export declare namespace _T_Node_Path {
58
+ namespace start {
59
+ }
60
+ type start = _T_Start;
61
+ namespace subpath {
62
+ }
63
+ type subpath = _T_Directory_Subpath;
64
+ type node = string;
65
+ }
66
+ export declare namespace _T_Path_Parameter {
67
+ namespace path {
68
+ }
69
+ type path = _T_Node_Path;
70
+ type escape_spaces_in_path = boolean;
71
+ }
72
+ export declare namespace _T_Directory_Path {
73
+ namespace start {
74
+ }
75
+ type start = _T_Start;
76
+ namespace subpath {
77
+ }
78
+ type subpath = _T_Directory_Subpath;
79
+ }
80
+ export declare namespace _T_Non_Normalized_Path {
81
+ type leading_slash = boolean;
82
+ namespace segments {
83
+ namespace L {
84
+ namespace SG {
85
+ type parent = null;
86
+ type child = string;
87
+ type current = null;
88
+ type nothing = null;
89
+ }
90
+ type SG = readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null];
91
+ }
92
+ type L = _i_core._T_State_Group<null, readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null]>;
93
+ }
94
+ type segments = _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null]>>;
95
+ type trailing_slash = boolean;
96
+ }
97
+ export declare namespace Start {
98
+ namespace SG {
99
+ type absolute = null;
100
+ namespace relative {
101
+ namespace up_steps {
102
+ }
103
+ type up_steps = _T_Up_Steps;
104
+ }
105
+ type relative = {
106
+ readonly 'up steps': _T_Up_Steps;
107
+ };
108
+ }
109
+ type SG = readonly ['absolute', null] | readonly [
110
+ 'relative',
111
+ {
112
+ readonly 'up steps': _T_Up_Steps;
113
+ }
114
+ ];
115
+ }
116
+ export declare namespace Directory_Subpath {
117
+ type L = string;
118
+ }
119
+ export declare namespace Node_Path {
120
+ namespace start {
121
+ }
122
+ type start = _T_Start;
123
+ namespace subpath {
124
+ }
125
+ type subpath = _T_Directory_Subpath;
126
+ type node = string;
127
+ }
128
+ export declare namespace Path_Parameter {
129
+ namespace path {
130
+ }
131
+ type path = _T_Node_Path;
132
+ type escape_spaces_in_path = boolean;
133
+ }
134
+ export declare namespace Directory_Path {
135
+ namespace start {
136
+ }
137
+ type start = _T_Start;
138
+ namespace subpath {
139
+ }
140
+ type subpath = _T_Directory_Subpath;
141
+ }
142
+ export declare namespace Non_Normalized_Path {
143
+ type leading_slash = boolean;
144
+ namespace segments {
145
+ namespace L {
146
+ namespace SG {
147
+ type parent = null;
148
+ type child = string;
149
+ type current = null;
150
+ type nothing = null;
151
+ }
152
+ type SG = readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null];
153
+ }
154
+ type L = _i_core._T_State_Group<null, readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null]>;
155
+ }
156
+ type segments = _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['parent', null] | readonly ['child', string] | readonly ['current', null] | readonly ['nothing', null]>>;
157
+ type trailing_slash = boolean;
158
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFyZ2V0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvcGF0aC9kYXRhX3R5cGVzL3RhcmdldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,184 @@
1
+ import * as _i_out from "./data_types/target";
2
+ import * as _i_vd from "./value_deserializers";
3
+ export type _T_Up_Steps = ($$_: string, $$_p: {
4
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
5
+ }) => _i_out._T_Up_Steps;
6
+ export type _T_Start = ($$_: string, $$_p: {
7
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
8
+ }) => _i_out._T_Start;
9
+ export type _T_Directory_Subpath = ($$_: string, $$_p: {
10
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
11
+ }) => _i_out._T_Directory_Subpath;
12
+ export type _T_Node_Path = ($$_: string, $$_p: {
13
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
14
+ }) => _i_out._T_Node_Path;
15
+ export type _T_Path_Parameter = ($$_: string, $$_p: {
16
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
17
+ }) => _i_out._T_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_Non_Normalized_Path = ($$_: string, $$_p: {
22
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
23
+ }) => _i_out._T_Non_Normalized_Path;
24
+ export type Up_Steps = _T_Up_Steps;
25
+ export type Start = _T_Start;
26
+ export type Directory_Subpath = _T_Directory_Subpath;
27
+ export type Node_Path = _T_Node_Path;
28
+ export type Path_Parameter = _T_Path_Parameter;
29
+ export type Directory_Path = _T_Directory_Path;
30
+ export type Non_Normalized_Path = _T_Non_Normalized_Path;
31
+ export declare namespace _T_Up_Steps {
32
+ type CONTEXT = string;
33
+ namespace PARAMS {
34
+ namespace value_deserializers {
35
+ }
36
+ type value_deserializers = _i_vd._T_Value_Deserializers;
37
+ }
38
+ namespace RESULT {
39
+ }
40
+ type RESULT = _i_out._T_Up_Steps;
41
+ }
42
+ export declare namespace _T_Start {
43
+ type CONTEXT = string;
44
+ namespace PARAMS {
45
+ namespace value_deserializers {
46
+ }
47
+ type value_deserializers = _i_vd._T_Value_Deserializers;
48
+ }
49
+ namespace RESULT {
50
+ }
51
+ type RESULT = _i_out._T_Start;
52
+ }
53
+ export declare namespace _T_Directory_Subpath {
54
+ type CONTEXT = string;
55
+ namespace PARAMS {
56
+ namespace value_deserializers {
57
+ }
58
+ type value_deserializers = _i_vd._T_Value_Deserializers;
59
+ }
60
+ namespace RESULT {
61
+ }
62
+ type RESULT = _i_out._T_Directory_Subpath;
63
+ }
64
+ export declare namespace _T_Node_Path {
65
+ type CONTEXT = string;
66
+ namespace PARAMS {
67
+ namespace value_deserializers {
68
+ }
69
+ type value_deserializers = _i_vd._T_Value_Deserializers;
70
+ }
71
+ namespace RESULT {
72
+ }
73
+ type RESULT = _i_out._T_Node_Path;
74
+ }
75
+ export declare namespace _T_Path_Parameter {
76
+ type CONTEXT = string;
77
+ namespace PARAMS {
78
+ namespace value_deserializers {
79
+ }
80
+ type value_deserializers = _i_vd._T_Value_Deserializers;
81
+ }
82
+ namespace RESULT {
83
+ }
84
+ type RESULT = _i_out._T_Path_Parameter;
85
+ }
86
+ export declare namespace _T_Directory_Path {
87
+ type CONTEXT = string;
88
+ namespace PARAMS {
89
+ namespace value_deserializers {
90
+ }
91
+ type value_deserializers = _i_vd._T_Value_Deserializers;
92
+ }
93
+ namespace RESULT {
94
+ }
95
+ type RESULT = _i_out._T_Directory_Path;
96
+ }
97
+ export declare namespace _T_Non_Normalized_Path {
98
+ type CONTEXT = string;
99
+ namespace PARAMS {
100
+ namespace value_deserializers {
101
+ }
102
+ type value_deserializers = _i_vd._T_Value_Deserializers;
103
+ }
104
+ namespace RESULT {
105
+ }
106
+ type RESULT = _i_out._T_Non_Normalized_Path;
107
+ }
108
+ export declare namespace Up_Steps {
109
+ type CONTEXT = string;
110
+ namespace PARAMS {
111
+ namespace value_deserializers {
112
+ }
113
+ type value_deserializers = _i_vd._T_Value_Deserializers;
114
+ }
115
+ namespace RESULT {
116
+ }
117
+ type RESULT = _i_out._T_Up_Steps;
118
+ }
119
+ export declare namespace Start {
120
+ type CONTEXT = string;
121
+ namespace PARAMS {
122
+ namespace value_deserializers {
123
+ }
124
+ type value_deserializers = _i_vd._T_Value_Deserializers;
125
+ }
126
+ namespace RESULT {
127
+ }
128
+ type RESULT = _i_out._T_Start;
129
+ }
130
+ export declare namespace Directory_Subpath {
131
+ type CONTEXT = string;
132
+ namespace PARAMS {
133
+ namespace value_deserializers {
134
+ }
135
+ type value_deserializers = _i_vd._T_Value_Deserializers;
136
+ }
137
+ namespace RESULT {
138
+ }
139
+ type RESULT = _i_out._T_Directory_Subpath;
140
+ }
141
+ export declare namespace Node_Path {
142
+ type CONTEXT = string;
143
+ namespace PARAMS {
144
+ namespace value_deserializers {
145
+ }
146
+ type value_deserializers = _i_vd._T_Value_Deserializers;
147
+ }
148
+ namespace RESULT {
149
+ }
150
+ type RESULT = _i_out._T_Node_Path;
151
+ }
152
+ export declare namespace Path_Parameter {
153
+ type CONTEXT = string;
154
+ namespace PARAMS {
155
+ namespace value_deserializers {
156
+ }
157
+ type value_deserializers = _i_vd._T_Value_Deserializers;
158
+ }
159
+ namespace RESULT {
160
+ }
161
+ type RESULT = _i_out._T_Path_Parameter;
162
+ }
163
+ export declare namespace Directory_Path {
164
+ type CONTEXT = string;
165
+ namespace PARAMS {
166
+ namespace value_deserializers {
167
+ }
168
+ type value_deserializers = _i_vd._T_Value_Deserializers;
169
+ }
170
+ namespace RESULT {
171
+ }
172
+ type RESULT = _i_out._T_Directory_Path;
173
+ }
174
+ export declare namespace Non_Normalized_Path {
175
+ type CONTEXT = string;
176
+ namespace PARAMS {
177
+ namespace value_deserializers {
178
+ }
179
+ type value_deserializers = _i_vd._T_Value_Deserializers;
180
+ }
181
+ namespace RESULT {
182
+ }
183
+ type RESULT = _i_out._T_Non_Normalized_Path;
184
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9wYXRoL2Rlc2VyaWFsaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==