pareto 0.78.2 → 0.78.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/compile_temp_schemas.js +17 -14
- package/dist/bin/seal.js +7 -9
- package/dist/bin/serialize_schemas.js +7 -9
- package/dist/globals.d.ts +2 -0
- package/dist/implementation/commands/compile_temp_schemas.d.ts +19 -0
- package/dist/implementation/commands/compile_temp_schemas.js +131 -0
- package/dist/implementation/commands/seal.d.ts +8 -0
- package/dist/{bin/validate.js → implementation/commands/seal.js} +13 -7
- package/dist/implementation/commands/serialize_schemas.d.ts +8 -0
- package/dist/implementation/commands/serialize_schemas.js +61 -0
- package/dist/implementation/generated/pareto/generic/parse/ast.js +21 -21
- package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +1 -1
- package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +1 -1
- package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +1 -1
- package/dist/implementation/generated/pareto/generic/parse/parse.js +4 -3
- package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +1 -1
- package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +4 -4
- package/dist/implementation/generated/pareto/generic/parse/token.js +5 -5
- package/dist/implementation/generated/pareto/generic/resolve.d.ts +4 -4
- package/dist/implementation/generated/pareto/generic/resolve.js +2 -2
- package/dist/implementation/generated/pareto/schemas/module/resolve.js +33 -33
- package/dist/implementation/generated/pareto/schemas/schema/resolve.js +2 -2
- package/dist/implementation/{algorithms/operations → operations}/impure/tbd/path.d.ts +1 -1
- package/dist/implementation/{algorithms/operations → operations}/impure/tbd/path.js +1 -1
- package/dist/implementation/{algorithms/queries/unguaranteed → queries}/load_pareto_document.d.ts +10 -7
- package/dist/implementation/queries/load_pareto_document.js +64 -0
- package/dist/implementation/{algorithms/queries/unguaranteed → queries}/load_pareto_file.d.ts +3 -5
- package/dist/implementation/queries/load_pareto_file.js +40 -0
- package/dist/{exceptional/deserializers → implementation/refiners}/load_schema.d.ts +2 -2
- package/dist/implementation/refiners/load_schema.js +83 -0
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_implementation.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_implementation.js +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_interface.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_interface.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_implementation.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_implementation.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_interface.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_interface.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/deserialize.d.ts +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/deserialize.js +7 -7
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/main.d.ts +3 -3
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/main.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/marshall.d.ts +3 -3
- package/dist/implementation/transformations/schema/exupery_implementation/marshall.js +142 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/migrate_boilerplate.d.ts +2 -2
- package/dist/implementation/transformations/schema/exupery_implementation/migrate_boilerplate.js +105 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/resolve.d.ts +5 -5
- package/dist/implementation/transformations/schema/exupery_implementation/resolve.js +300 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/serialize.d.ts +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/serialize.js +7 -7
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/unmarshall.d.ts +3 -3
- package/dist/implementation/transformations/schema/exupery_implementation/unmarshall.js +158 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/deserialize.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/deserialize.js +1 -1
- package/dist/implementation/transformations/schema/exupery_interface/dummy_resolve.js +13 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/main.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/main.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/marshall.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/marshall.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/migrate_boilerplate.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/migrate_boilerplate.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/resolve.d.ts +2 -2
- package/dist/implementation/transformations/schema/exupery_interface/resolve.js +110 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/serialize.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/serialize.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/types.d.ts +1 -1
- package/dist/implementation/transformations/schema/exupery_interface/types.js +192 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/unmarshall.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/unmarshall.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_deserializers.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_deserializers.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_serializers.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_serializers.js +1 -1
- package/dist/implementation/transformations/temp/astn_schema.d.ts +10 -0
- package/dist/implementation/transformations/temp/astn_schema.js +140 -0
- package/dist/implementation/{algorithms/transformations → transformations}/temp/unmarshall_astn_ast.d.ts +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/temp/unmarshall_astn_ast.js +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_errors/fountain_pen.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_errors/fountain_pen.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/astn_authoring_target.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/astn_authoring_target.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/unmarshall_errors.d.ts +2 -2
- package/dist/implementation/transformations/unmarshall_result/unmarshall_errors.js +344 -0
- package/dist/interface/algorithms/procedures/{unguaranteed/compile.js → compile.js} +1 -1
- package/dist/interface/algorithms/procedures/{unguaranteed/seal.js → seal.js} +1 -1
- package/dist/interface/algorithms/procedures/{unguaranteed/serialize_schemas.js → serialize_schemas.js} +1 -1
- package/dist/interface/algorithms/procedures/{unguaranteed/validate.js → validate.js} +1 -1
- package/dist/interface/algorithms/queries/load_pareto_document.js +5 -0
- package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_file.js → load_pareto_file.js} +2 -2
- package/dist/interface/generated/pareto/core/astn_source.d.ts +3 -3
- package/dist/interface/generated/pareto/core/astn_target.d.ts +7 -7
- package/dist/interface/generated/pareto/core/parse_result.d.ts +1 -1
- package/dist/interface/generated/pareto/core/resolve.d.ts +2 -2
- package/dist/interface/generated/pareto/core/resolved.d.ts +12 -12
- package/dist/interface/generated/pareto/core/token.d.ts +3 -3
- package/dist/interface/generated/pareto/core/unconstrained.d.ts +3 -3
- package/dist/interface/generated/pareto/core/unresolved.d.ts +10 -10
- package/dist/interface/generated/pareto/schemas/astn_schema/data_types/resolve.d.ts +71 -71
- package/dist/interface/generated/pareto/schemas/parse_tree/data_types/source.d.ts +14 -14
- package/dist/interface/generated/pareto/schemas/parse_tree/data_types/target.d.ts +14 -14
- package/dist/interface/generated/pareto/schemas/schema/data_types/resolve.d.ts +428 -428
- package/dist/interface/generated/pareto/schemas/schema/data_types/source.d.ts +67 -67
- package/dist/interface/generated/pareto/schemas/schema/data_types/target.d.ts +67 -67
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_error.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_error.js +36 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_log.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_log.js +36 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.js +56 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_file.d.ts +10 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_file.js +45 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_node.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_node.js +58 -0
- package/dist/modules/pareto-fountain-pen-directory/interface/temp_types.d.ts +30 -0
- package/dist/modules/pareto-fountain-pen-directory/interface/temp_types.js +3 -0
- package/dist/temp/resolvers/module.js +2 -2
- package/dist/temp/resolvers/schema.js +2 -2
- package/dist/temp/temp_unmashall_result_types.d.ts +4 -4
- package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.types.astn.js +10 -5
- package/package.json +9 -9
- package/dist/bin/validate.d.ts +0 -2
- package/dist/exceptional/deserializers/load_schema.js +0 -83
- package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.d.ts +0 -19
- package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.js +0 -148
- package/dist/implementation/algorithms/procedures/unguaranteed/seal.d.ts +0 -9
- package/dist/implementation/algorithms/procedures/unguaranteed/seal.js +0 -41
- package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.d.ts +0 -9
- package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.js +0 -60
- package/dist/implementation/algorithms/procedures/unguaranteed/validate.d.ts +0 -4
- package/dist/implementation/algorithms/procedures/unguaranteed/validate.js +0 -45
- package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_document.js +0 -74
- package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_file.js +0 -17
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/marshall.js +0 -142
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.js +0 -105
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/resolve.js +0 -300
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/unmarshall.js +0 -158
- package/dist/implementation/algorithms/transformations/schema/exupery_interface/dummy_resolve.js +0 -13
- package/dist/implementation/algorithms/transformations/schema/exupery_interface/resolve.js +0 -110
- package/dist/implementation/algorithms/transformations/schema/exupery_interface/types.js +0 -192
- package/dist/implementation/algorithms/transformations/temp/astn_schema.d.ts +0 -10
- package/dist/implementation/algorithms/transformations/temp/astn_schema.js +0 -140
- package/dist/implementation/algorithms/transformations/unmarshall_result/unmarshall_errors.js +0 -344
- package/dist/interface/algorithms/queries/unguaranteed/load_pareto_document.js +0 -5
- /package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/dummy_resolve.d.ts +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/compile.d.ts → compile.d.ts} +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/seal.d.ts → seal.d.ts} +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/serialize_schemas.d.ts → serialize_schemas.d.ts} +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/validate.d.ts → validate.d.ts} +0 -0
- /package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_document.d.ts → load_pareto_document.d.ts} +0 -0
- /package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_file.d.ts → load_pareto_file.d.ts} +0 -0
package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.js
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
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 (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.$$ = void 0;
|
|
27
|
+
const _easync = __importStar(require("exupery-core-async"));
|
|
28
|
+
const write_to_node_1 = require("./write_to_node");
|
|
29
|
+
exports.$$ = _easync.create_command_procedure(($p, $cr) => [
|
|
30
|
+
_easync.p.sequence([
|
|
31
|
+
_easync.p.if_($p['remove before creating'], [
|
|
32
|
+
$cr.remove.execute({
|
|
33
|
+
'path': {
|
|
34
|
+
'path': $p.path,
|
|
35
|
+
'escape spaces in path': true,
|
|
36
|
+
},
|
|
37
|
+
'error if not exists': false
|
|
38
|
+
}, ($) => ['remove', $])
|
|
39
|
+
]),
|
|
40
|
+
_easync.p.dictionary.parallel($p.directory, ($, key) => [
|
|
41
|
+
(0, write_to_node_1.$$)({
|
|
42
|
+
'remove': $cr.remove,
|
|
43
|
+
'make directory': $cr['make directory'],
|
|
44
|
+
'write file': $cr['write file'],
|
|
45
|
+
}, null).execute({
|
|
46
|
+
'node': $,
|
|
47
|
+
'path': $p.path,
|
|
48
|
+
'key': key,
|
|
49
|
+
'indentation': $p.indentation,
|
|
50
|
+
'newline': $p.newline,
|
|
51
|
+
'remove before creating': false,
|
|
52
|
+
}, ($) => $),
|
|
53
|
+
], ($) => ['nodes', $])
|
|
54
|
+
])
|
|
55
|
+
]);
|
|
56
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fZGlyZWN0b3J5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL21vZHVsZXMvcGFyZXRvLWZvdW50YWluLXBlbi1kaXJlY3RvcnkvaW1wbGVtZW50YXRpb24vY29tbWFuZHMvd3JpdGVfdG9fZGlyZWN0b3J5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBR0EsNERBQTZDO0FBUTdDLG1EQUF1RDtBQVkxQyxRQUFBLEVBQUUsR0FBeUcsT0FBTyxDQUFDLHdCQUF3QixDQUNwSixDQUFDLEVBQUUsRUFBRSxHQUFHLEVBQUUsRUFBRSxDQUFDO0lBQ1QsT0FBTyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQW9CO1FBQ2xDLE9BQU8sQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUNULEVBQUUsQ0FBQyx3QkFBd0IsQ0FBQyxFQUM1QjtZQUNJLEdBQUcsQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUNkO2dCQUNJLE1BQU0sRUFBRTtvQkFDSixNQUFNLEVBQUUsRUFBRSxDQUFDLElBQUk7b0JBQ2YsdUJBQXVCLEVBQUUsSUFBSTtpQkFDaEM7Z0JBQ0QscUJBQXFCLEVBQUUsS0FBSzthQUMvQixFQUNELENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUMsQ0FDdkI7U0FDSixDQUNKO1FBQ0QsT0FBTyxDQUFDLENBQUMsQ0FBQyxVQUFVLENBQUMsUUFBUSxDQUN6QixFQUFFLENBQUMsU0FBUyxFQUNaLENBQUMsQ0FBQyxFQUFFLEdBQUcsRUFBRSxFQUFFLENBQUM7WUFDUixJQUFBLGtCQUFlLEVBQ1g7Z0JBQ0ksUUFBUSxFQUFFLEdBQUcsQ0FBQyxNQUFNO2dCQUNwQixnQkFBZ0IsRUFBRSxHQUFHLENBQUMsZ0JBQWdCLENBQUM7Z0JBQ3ZDLFlBQVksRUFBRSxHQUFHLENBQUMsWUFBWSxDQUFDO2FBQ2xDLEVBQ0QsSUFBSSxDQUNQLENBQUMsT0FBTyxDQUNMO2dCQUNJLE1BQU0sRUFBRSxDQUFDO2dCQUNULE1BQU0sRUFBRSxFQUFFLENBQUMsSUFBSTtnQkFDZixLQUFLLEVBQUUsR0FBRztnQkFDVixhQUFhLEVBQUUsRUFBRSxDQUFDLFdBQVc7Z0JBQzdCLFNBQVMsRUFBRSxFQUFFLENBQUMsT0FBTztnQkFDckIsd0JBQXdCLEVBQUUsS0FBSzthQUNsQyxFQUNELENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQ1g7U0FDSixFQUNELENBQUMsQ0FBQyxFQUFxQixFQUFFLENBQUMsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxDQUFDLENBQ3pDO0tBQ0osQ0FBQztDQUNMLENBQ0osQ0FBQSJ9
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as _et from 'exupery-core-types';
|
|
2
|
+
import * as D from "../../interface/temp_types";
|
|
3
|
+
import * as d_make_directory from "exupery-resources/dist/interface/generated/pareto/schemas/make_directory/data_types/source";
|
|
4
|
+
import * as d_write_file from "exupery-resources/dist/interface/generated/pareto/schemas/write_file/data_types/source";
|
|
5
|
+
export type Query_Resources = null;
|
|
6
|
+
export type Command_Resources = {
|
|
7
|
+
'make directory': _et.Command<d_make_directory.Error, d_make_directory.Parameters>;
|
|
8
|
+
'write file': _et.Command<d_write_file.Error, d_write_file.Parameters>;
|
|
9
|
+
};
|
|
10
|
+
export declare const $$: _et.Command_Procedure<D.File_Error, D.File_Parameters, Command_Resources, Query_Resources>;
|
|
@@ -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 (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.$$ = void 0;
|
|
27
|
+
const _easync = __importStar(require("exupery-core-async"));
|
|
28
|
+
const t_block_2_lines = __importStar(require("pareto-fountain-pen/dist/implementation/algorithms/transformations/block/lines"));
|
|
29
|
+
const join_list_of_texts_1 = require("pareto-standard-operations/dist/implementation/algorithms/operations/pure/text/join_list_of_texts");
|
|
30
|
+
exports.$$ = _easync.create_command_procedure(($p, $cr) => [
|
|
31
|
+
_easync.p.sequence([
|
|
32
|
+
$cr['make directory'].execute({
|
|
33
|
+
'path': $p['directory path'],
|
|
34
|
+
'escape spaces in path': true,
|
|
35
|
+
}, ($) => ['make directory', $]),
|
|
36
|
+
$cr['write file'].execute({
|
|
37
|
+
'path': {
|
|
38
|
+
'path': `${$p['directory path']}/${$p.filename}`,
|
|
39
|
+
'escape spaces in path': true,
|
|
40
|
+
},
|
|
41
|
+
'data': (0, join_list_of_texts_1.$$)(t_block_2_lines.Group($p.group, { 'indentation': $p.indentation }).map(($) => $ + $p.newline)),
|
|
42
|
+
}, ($) => ['write file', $])
|
|
43
|
+
])
|
|
44
|
+
]);
|
|
45
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fZmlsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9tb2R1bGVzL3BhcmV0by1mb3VudGFpbi1wZW4tZGlyZWN0b3J5L2ltcGxlbWVudGF0aW9uL2NvbW1hbmRzL3dyaXRlX3RvX2ZpbGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFHQSw0REFBNkM7QUFFN0MsZ0lBQWlIO0FBTWpILDBJQUErSTtBQVdsSSxRQUFBLEVBQUUsR0FBK0YsT0FBTyxDQUFDLHdCQUF3QixDQUMxSSxDQUFDLEVBQUUsRUFBRSxHQUFHLEVBQUUsRUFBRSxDQUFDO0lBQ1QsT0FBTyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQWU7UUFDN0IsR0FBRyxDQUFDLGdCQUFnQixDQUFDLENBQUMsT0FBTyxDQUN6QjtZQUNJLE1BQU0sRUFBRSxFQUFFLENBQUMsZ0JBQWdCLENBQUM7WUFDNUIsdUJBQXVCLEVBQUUsSUFBSTtTQUNoQyxFQUNELENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLGdCQUFnQixFQUFFLENBQUMsQ0FBQyxDQUMvQjtRQUNELEdBQUcsQ0FBQyxZQUFZLENBQUMsQ0FBQyxPQUFPLENBQ3JCO1lBQ0ksTUFBTSxFQUFFO2dCQUNKLE1BQU0sRUFBRSxHQUFHLEVBQUUsQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxRQUFRLEVBQUU7Z0JBQ2hELHVCQUF1QixFQUFFLElBQUk7YUFDaEM7WUFDRCxNQUFNLEVBQUUsSUFBQSx1QkFBcUIsRUFDekIsZUFBZSxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsS0FBSyxFQUFFLEVBQUUsYUFBYSxFQUFFLEVBQUUsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxPQUFPLENBQUMsQ0FDaEc7U0FDSixFQUNELENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLFlBQVksRUFBRSxDQUFDLENBQUMsQ0FDM0I7S0FDSixDQUFDO0NBQ0wsQ0FDSixDQUFBIn0=
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as _et from 'exupery-core-types';
|
|
2
|
+
import * as D from "../../interface/temp_types";
|
|
3
|
+
import * as d_remove from "exupery-resources/dist/interface/generated/pareto/schemas/remove/data_types/source";
|
|
4
|
+
import * as d_make_directory from "exupery-resources/dist/interface/generated/pareto/schemas/make_directory/data_types/source";
|
|
5
|
+
import * as d_write_file from "exupery-resources/dist/interface/generated/pareto/schemas/write_file/data_types/source";
|
|
6
|
+
export type Query_Resources = null;
|
|
7
|
+
export type Command_Resources = {
|
|
8
|
+
'remove': _et.Command<d_remove.Error, d_remove.Parameters>;
|
|
9
|
+
'make directory': _et.Command<d_make_directory.Error, d_make_directory.Parameters>;
|
|
10
|
+
'write file': _et.Command<d_write_file.Error, d_write_file.Parameters>;
|
|
11
|
+
};
|
|
12
|
+
export declare const $$: _et.Command_Procedure<D.Node_Error, D.Node_Parameters, Command_Resources, Query_Resources>;
|
|
@@ -0,0 +1,58 @@
|
|
|
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 (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.$$ = void 0;
|
|
27
|
+
const _ea = __importStar(require("exupery-core-alg"));
|
|
28
|
+
const _easync = __importStar(require("exupery-core-async"));
|
|
29
|
+
const write_to_file_1 = require("./write_to_file");
|
|
30
|
+
const write_to_directory_1 = require("./write_to_directory");
|
|
31
|
+
exports.$$ = _easync.create_command_procedure(($p, $cr, $qr) => [
|
|
32
|
+
_ea.cc($p.node, ($) => {
|
|
33
|
+
switch ($[0]) {
|
|
34
|
+
case 'file':
|
|
35
|
+
return _ea.ss($, ($) => {
|
|
36
|
+
return (0, write_to_file_1.$$)($cr, $qr).execute({
|
|
37
|
+
'group': $,
|
|
38
|
+
'directory path': $p.path,
|
|
39
|
+
'filename': $p.key,
|
|
40
|
+
'indentation': $p.indentation,
|
|
41
|
+
'newline': $p.newline
|
|
42
|
+
}, ($) => ['file', $]);
|
|
43
|
+
});
|
|
44
|
+
case 'directory':
|
|
45
|
+
return _ea.ss($, ($) => {
|
|
46
|
+
return (0, write_to_directory_1.$$)($cr, $qr).execute({
|
|
47
|
+
'directory': $,
|
|
48
|
+
'path': `${$p.path}/${$p.key}`,
|
|
49
|
+
'indentation': $p.indentation,
|
|
50
|
+
'newline': $p.newline,
|
|
51
|
+
'remove before creating': false,
|
|
52
|
+
}, ($) => ['directory', $]);
|
|
53
|
+
});
|
|
54
|
+
default: return _ea.au($[0]);
|
|
55
|
+
}
|
|
56
|
+
})
|
|
57
|
+
]);
|
|
58
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fbm9kZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9tb2R1bGVzL3BhcmV0by1mb3VudGFpbi1wZW4tZGlyZWN0b3J5L2ltcGxlbWVudGF0aW9uL2NvbW1hbmRzL3dyaXRlX3RvX25vZGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFDQSxzREFBdUM7QUFHdkMsNERBQTZDO0FBSTdDLG1EQUF1RDtBQUN2RCw2REFBaUU7QUFlcEQsUUFBQSxFQUFFLEdBQStGLE9BQU8sQ0FBQyx3QkFBd0IsQ0FDMUksQ0FBQyxFQUFFLEVBQUUsR0FBRyxFQUFFLEdBQUcsRUFBRSxFQUFFLENBQUM7SUFDZCxHQUFHLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRTtRQUNsQixRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1lBQ1gsS0FBSyxNQUFNO2dCQUNQLE9BQU8sR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRTtvQkFDbkIsT0FBTyxJQUFBLGtCQUFlLEVBQUMsR0FBRyxFQUFFLEdBQUcsQ0FBQyxDQUFDLE9BQU8sQ0FDcEM7d0JBQ0ksT0FBTyxFQUFFLENBQUM7d0JBQ1YsZ0JBQWdCLEVBQUUsRUFBRSxDQUFDLElBQUk7d0JBQ3pCLFVBQVUsRUFBRSxFQUFFLENBQUMsR0FBRzt3QkFDbEIsYUFBYSxFQUFFLEVBQUUsQ0FBQyxXQUFXO3dCQUM3QixTQUFTLEVBQUUsRUFBRSxDQUFDLE9BQU87cUJBQ3hCLEVBQ0QsQ0FBQyxDQUFDLEVBQWdCLEVBQUUsQ0FBQyxDQUFDLE1BQU0sRUFBRSxDQUFDLENBQUMsQ0FDbkMsQ0FBQTtnQkFDTCxDQUFDLENBQUMsQ0FBQTtZQUNOLEtBQUssV0FBVztnQkFDWixPQUFPLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUU7b0JBQ25CLE9BQU8sSUFBQSx1QkFBb0IsRUFBQyxHQUFHLEVBQUUsR0FBRyxDQUFDLENBQUMsT0FBTyxDQUN6Qzt3QkFDSSxXQUFXLEVBQUUsQ0FBQzt3QkFDZCxNQUFNLEVBQUUsR0FBRyxFQUFFLENBQUMsSUFBSSxJQUFJLEVBQUUsQ0FBQyxHQUFHLEVBQUU7d0JBQzlCLGFBQWEsRUFBRSxFQUFFLENBQUMsV0FBVzt3QkFDN0IsU0FBUyxFQUFFLEVBQUUsQ0FBQyxPQUFPO3dCQUNyQix3QkFBd0IsRUFBRSxLQUFLO3FCQUNsQyxFQUNELENBQUMsQ0FBQyxFQUFnQixFQUFFLENBQUMsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFDLENBQ3hDLENBQUE7Z0JBQ0wsQ0FBQyxDQUFDLENBQUE7WUFDTixPQUFPLENBQUMsQ0FBQyxPQUFPLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7UUFDaEMsQ0FBQztJQUNMLENBQUMsQ0FBQztDQUNMLENBQ0osQ0FBQSJ9
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as _et from 'exupery-core-types';
|
|
2
|
+
import * as d_write_file from "exupery-resources/dist/interface/generated/pareto/schemas/write_file/data_types/target";
|
|
3
|
+
import * as d_remove from "exupery-resources/dist/interface/generated/pareto/schemas/remove/data_types/target";
|
|
4
|
+
import * as d_make_directory from "exupery-resources/dist/interface/generated/pareto/schemas/make_directory/data_types/target";
|
|
5
|
+
import * as d_in from "pareto-fountain-pen/dist/interface/generated/pareto/schemas/block/data_types/source";
|
|
6
|
+
export type File_Error = ['make directory', d_make_directory.Error] | ['write file', d_write_file.Error];
|
|
7
|
+
export type Directory_Error = ['remove', d_remove.Error] | ['nodes', _et.Dictionary<Node_Error>];
|
|
8
|
+
export type Node_Error = ['directory', Directory_Error] | ['file', File_Error];
|
|
9
|
+
export type File_Parameters = {
|
|
10
|
+
'group': d_in.Group;
|
|
11
|
+
'directory path': string;
|
|
12
|
+
'filename': string;
|
|
13
|
+
'indentation': string;
|
|
14
|
+
'newline': string;
|
|
15
|
+
};
|
|
16
|
+
export type Directory_Parameters = {
|
|
17
|
+
'path': string;
|
|
18
|
+
'directory': d_in.Directory;
|
|
19
|
+
'indentation': string;
|
|
20
|
+
'newline': string;
|
|
21
|
+
'remove before creating': boolean;
|
|
22
|
+
};
|
|
23
|
+
export type Node_Parameters = {
|
|
24
|
+
'node': d_in.Node;
|
|
25
|
+
'path': string;
|
|
26
|
+
'key': string;
|
|
27
|
+
'indentation': string;
|
|
28
|
+
'newline': string;
|
|
29
|
+
'remove before creating': boolean;
|
|
30
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVtcF90eXBlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9tb2R1bGVzL3BhcmV0by1mb3VudGFpbi1wZW4tZGlyZWN0b3J5L2ludGVyZmFjZS90ZW1wX3R5cGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -35,7 +35,7 @@ const Module = ($, $p) => _ea.block(() => {
|
|
|
35
35
|
'location 2 string': l2s,
|
|
36
36
|
'parameters': ({
|
|
37
37
|
'lookups': ({
|
|
38
|
-
'sibling schemas': _ea.
|
|
38
|
+
'sibling schemas': _ea.list_literal([]),
|
|
39
39
|
}),
|
|
40
40
|
'values': null,
|
|
41
41
|
}),
|
|
@@ -129,4 +129,4 @@ const Operations = ($, $p) => _ea.block(() => {
|
|
|
129
129
|
});
|
|
130
130
|
});
|
|
131
131
|
exports.Operations = Operations;
|
|
132
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
132
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RlbXAvcmVzb2x2ZXJzL21vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLHNEQUF1QztBQUV2QyxrR0FBbUY7QUFPbkYsc0RBQXVDO0FBR2hDLE1BQU0sTUFBTSxHQUE0QixDQUFDLENBQUMsRUFBRSxFQUFFLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsR0FBRyxFQUFFO0lBQ3JFLE1BQU0sR0FBRyxHQUFHLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQyxDQUFBO0lBQ25DLE1BQU0sTUFBTSxHQUFHLEVBQUUsQ0FBQyxZQUFZLENBQUMsQ0FBQTtJQUMvQixPQUFPLEdBQUcsQ0FBQyxLQUFLLENBQUMsR0FBRyxFQUFFO1FBQ2xCLE1BQU0sYUFBYSxHQUFpQyxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxhQUFhLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsV0FBVyxDQUFDLFdBQVcsQ0FDdkcsQ0FBQyxFQUNEO1lBQ0ksbUJBQW1CLEVBQUUsR0FBRztZQUN4QixZQUFZLEVBQUUsQ0FBQztnQkFDWCxTQUFTLEVBQUUsQ0FBQztvQkFDUixpQkFBaUIsRUFBRSxHQUFHLENBQUMsWUFBWSxDQUFDLEVBQ25DLENBQUM7aUJBQ0wsQ0FBQztnQkFDRixRQUFRLEVBQUUsSUFBSTthQUNqQixDQUFDO1NBQ0wsQ0FDSixDQUFDLENBQUE7UUFDRixNQUFNLFlBQVksR0FBZ0MsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsWUFBWSxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLElBQUEsa0JBQVUsRUFDdkYsQ0FBQyxFQUNEO1lBQ0ksbUJBQW1CLEVBQUUsR0FBRztZQUN4QixZQUFZLEVBQUUsTUFBTTtTQUN2QixDQUNKLENBQUMsQ0FBQTtRQUNGLE9BQU8s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
|