pareto 0.62.0 → 0.64.0
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/auto.dist/data/boekhouding.data.js +115 -115
- package/auto.dist/public/modules/pareto__2__fountain__pen/auto.provided_interface_glossary.d.ts +4 -4
- package/auto.pareto/auto.dependencies/index.ts +1 -1
- package/auto.pareto/auto.dependencies/pareto-pure/$.data.ts +6 -0
- package/auto.pareto/auto.dependencies/pareto-pure/glossaries/auto.alan_light.data.ts +418 -418
- package/auto.pareto/auto.dependencies/pareto-pure/glossaries/auto.cosmos_type_system.data.ts +1957 -1606
- package/auto.pareto/auto.dependencies/pareto-pure/glossaries/auto.cosmos_typescript.data.ts +107 -107
- package/auto.pareto/auto.dependencies/pareto-pure/glossaries/auto.grammar.data.ts +234 -234
- package/auto.pareto/auto.dependencies/pareto-pure/glossaries/auto.graphviz.data.ts +632 -632
- package/auto.pareto/auto.dependencies/pareto-pure/glossaries/auto.pareto.data.ts +1306 -1306
- package/auto.pareto/auto.dependencies/pareto-pure/glossaries/auto.semantic_versioning.data.ts +111 -0
- package/auto.pareto/auto.dependencies/pareto-pure/glossaries/auto.tendril.data.ts +913 -913
- package/auto.pareto/auto.dependencies/pareto-pure/glossaries/auto.tendril_resolved.data.ts +827 -827
- package/auto.pareto/auto.dependencies/pareto-pure/glossaries/text.data.ts +29 -0
- package/auto.pareto/auto.dependencies/pareto-pure/modules/semantic_versioning_from_text/api.data.ts +17 -0
- package/auto.pareto/auto.dependencies/pareto-pure/modules/semantic_versioning_from_text/glossary.data.ts +51 -0
- package/auto.pareto/auto.dependencies/pareto-pure/modules/tendril_2_cosmos_type_system/glossary.data.ts +2 -2
- package/package.json +3 -3
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as pd from 'pareto-core-data'
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
aInterface,
|
|
5
|
+
aInterfaceMethod,
|
|
6
|
+
aInterfaceReference,
|
|
7
|
+
array, data, dictionary, externalTypeReference, glossaryParameter, group, infInit, member, null_, number, parametrizedType, ref, sfunction, streamconsumer, string, taggedUnion, type, typeParameter, typeReference
|
|
8
|
+
} from "pareto-pure/auto.dist/public/shorthands/cosmos_type_system.sh"
|
|
9
|
+
|
|
10
|
+
import * as g_glossary from "pareto-pure/auto.dist/public/auto.glossaries/auto.cosmos__type__system"
|
|
11
|
+
const d = pd.d
|
|
12
|
+
|
|
13
|
+
export const $: g_glossary.D.Glossary = {
|
|
14
|
+
'data glossary': {
|
|
15
|
+
'glossary parameters': d({}),
|
|
16
|
+
'imports': d({
|
|
17
|
+
}),
|
|
18
|
+
'root': {
|
|
19
|
+
'namespaces': d({}),
|
|
20
|
+
'data types': d({
|
|
21
|
+
"Text": type(string()),
|
|
22
|
+
}),
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
'interface types': d({
|
|
26
|
+
}),
|
|
27
|
+
'algorithm types': d({
|
|
28
|
+
}),
|
|
29
|
+
}
|
package/auto.pareto/auto.dependencies/pareto-pure/modules/semantic_versioning_from_text/api.data.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as pd from 'pareto-core-data'
|
|
2
|
+
|
|
3
|
+
import { algorithm, algref, api } from "pareto-pure/auto.dist/public/shorthands/cosmos_type_system.sh"
|
|
4
|
+
|
|
5
|
+
import * as g_project from "pareto-pure/auto.dist/public/auto.glossaries/auto.cosmos__type__system"
|
|
6
|
+
|
|
7
|
+
import { $ as glos } from "./glossary.data"
|
|
8
|
+
import { aInterface, aInterfaceMethod, glossary, group, member, number, sInterface, sInterfaceMethod, streamconsumer, string, type, typeReference } from "pareto-pure/auto.dist/public/shorthands/cosmos_type_system.sh"
|
|
9
|
+
|
|
10
|
+
export const $: g_project.D.API = api(
|
|
11
|
+
glos,
|
|
12
|
+
|
|
13
|
+
{
|
|
14
|
+
"map Semantic Version from Text": algorithm("Map Semantic Version from Text", null, {})
|
|
15
|
+
|
|
16
|
+
}
|
|
17
|
+
)
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as pd from 'pareto-core-data'
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
dictionary,
|
|
5
|
+
typeReference,
|
|
6
|
+
data,
|
|
7
|
+
sfunction,
|
|
8
|
+
ref,
|
|
9
|
+
typeParameter,
|
|
10
|
+
externalTypeReference,
|
|
11
|
+
parametrizedType,
|
|
12
|
+
optional,
|
|
13
|
+
group,
|
|
14
|
+
member,
|
|
15
|
+
aInterface,
|
|
16
|
+
streamconsumer,
|
|
17
|
+
aInterfaceMethod,
|
|
18
|
+
type,
|
|
19
|
+
string,
|
|
20
|
+
boolean,
|
|
21
|
+
sInterface,
|
|
22
|
+
sInterfaceMethod,
|
|
23
|
+
array,
|
|
24
|
+
imp,
|
|
25
|
+
} from "pareto-pure/auto.dist/public/shorthands/cosmos_type_system.sh"
|
|
26
|
+
|
|
27
|
+
import * as g_glossary from "pareto-pure/auto.dist/public/auto.glossaries/auto.cosmos__type__system"
|
|
28
|
+
|
|
29
|
+
import { $ as d_in } from "../../glossaries/text.data"
|
|
30
|
+
import { $ as d_out } from "../../glossaries/auto.semantic_versioning.data"
|
|
31
|
+
|
|
32
|
+
const d = pd.d
|
|
33
|
+
|
|
34
|
+
export const $: g_glossary.D.Glossary = {
|
|
35
|
+
'data glossary': {
|
|
36
|
+
'imports': d({
|
|
37
|
+
"in": imp(d_in, {}),
|
|
38
|
+
"out": imp(d_out, {}),
|
|
39
|
+
}),
|
|
40
|
+
'glossary parameters': d({}),
|
|
41
|
+
'root': {
|
|
42
|
+
'namespaces': d({}),
|
|
43
|
+
'data types': d({
|
|
44
|
+
}),
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
'interface types': d({}),
|
|
48
|
+
'algorithm types': d({
|
|
49
|
+
"Map Semantic Version from Text": sfunction(externalTypeReference("out", "Semantic Version"), data(externalTypeReference("in", "Text"))),
|
|
50
|
+
}),
|
|
51
|
+
}
|
|
@@ -34,8 +34,8 @@ export const $: g_glossary.D.Glossary = {
|
|
|
34
34
|
|
|
35
35
|
"Terminal Mapping": type(dictionary(taggedUnion({
|
|
36
36
|
"boolean": null_(),
|
|
37
|
-
"
|
|
38
|
-
"
|
|
37
|
+
"integer": null_(),
|
|
38
|
+
"text": null_(),
|
|
39
39
|
}))),
|
|
40
40
|
"Mapping Settings": type(group({
|
|
41
41
|
"annotations": member(boolean()),
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"pareto-core-bin": "^0.1.4",
|
|
8
8
|
"pareto-core-data": "^0.7.3",
|
|
9
9
|
"pareto-core-dev": "^0.9.1",
|
|
10
|
-
"pareto-pure": "^0.
|
|
10
|
+
"pareto-pure": "^0.24.0",
|
|
11
11
|
"pareto-standard-library": "^0.10.0",
|
|
12
12
|
"pareto-subatomic-library": "^0.8.0"
|
|
13
13
|
},
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"main": "auto.dist/index.js",
|
|
26
26
|
"types": "auto.dist/index.d.ts",
|
|
27
27
|
"name": "pareto",
|
|
28
|
-
"version": "0.
|
|
29
|
-
"content-fingerprint": "
|
|
28
|
+
"version": "0.64.0",
|
|
29
|
+
"content-fingerprint": "06008c5938dbe0c162e46780b741002cfff70b7f"
|
|
30
30
|
}
|