roborean-engine 0.1.2__py3-none-any.whl
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.
- roborean_engine/bits/manifests/append_text.json +18 -0
- roborean_engine/bits/manifests/copy_variable.json +16 -0
- roborean_engine/bits/manifests/drawing_insert_polyline.json +17 -0
- roborean_engine/bits/manifests/fake_network.json +12 -0
- roborean_engine/bits/manifests/flow_append_paragraph.json +17 -0
- roborean_engine/bits/manifests/noop.json +11 -0
- roborean_engine/bits/manifests/raster_draw_text.json +17 -0
- roborean_engine/bits/manifests/replace_named_value.json +19 -0
- roborean_engine/bits/manifests/set_variable.json +16 -0
- roborean_engine/bits/manifests/sheet_set_cells.json +18 -0
- roborean_engine-0.1.2.dist-info/METADATA +26 -0
- roborean_engine-0.1.2.dist-info/RECORD +14 -0
- roborean_engine-0.1.2.dist-info/WHEEL +4 -0
- roborean_engine-0.1.2.dist-info/entry_points.txt +7 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.append_text",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId", "text"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"text": { "type": "string" },
|
|
10
|
+
"op": { "type": "string" }
|
|
11
|
+
},
|
|
12
|
+
"additionalProperties": false
|
|
13
|
+
},
|
|
14
|
+
"effectClass": "document",
|
|
15
|
+
"capabilities": ["document.write"],
|
|
16
|
+
"readsFromConfig": false,
|
|
17
|
+
"browserSafe": true
|
|
18
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.copy_variable",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["from", "to"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"from": {"type": "string", "minLength": 1},
|
|
9
|
+
"to": {"type": "string", "minLength": 1}
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
},
|
|
13
|
+
"effectClass": "workspace",
|
|
14
|
+
"capabilities": ["workspace.read", "workspace.write"],
|
|
15
|
+
"browserSafe": true
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.drawing_insert_polyline",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId", "ops"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"ops": { "type": "array" }
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
},
|
|
13
|
+
"effectClass": "document",
|
|
14
|
+
"capabilities": ["document.write"],
|
|
15
|
+
"readsFromConfig": false,
|
|
16
|
+
"browserSafe": false
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.flow_append_paragraph",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId", "ops"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"ops": { "type": "array" }
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
},
|
|
13
|
+
"effectClass": "document",
|
|
14
|
+
"capabilities": ["document.write"],
|
|
15
|
+
"readsFromConfig": false,
|
|
16
|
+
"browserSafe": true
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.raster_draw_text",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId", "ops"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"ops": { "type": "array" }
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
},
|
|
13
|
+
"effectClass": "document",
|
|
14
|
+
"capabilities": ["document.write"],
|
|
15
|
+
"readsFromConfig": false,
|
|
16
|
+
"browserSafe": false
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.replace_named_value",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId", "name"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"name": { "type": "string" },
|
|
10
|
+
"fromKey": { "type": "string" },
|
|
11
|
+
"value": {}
|
|
12
|
+
},
|
|
13
|
+
"additionalProperties": false
|
|
14
|
+
},
|
|
15
|
+
"effectClass": "document",
|
|
16
|
+
"capabilities": ["document.write"],
|
|
17
|
+
"readsFromConfig": true,
|
|
18
|
+
"browserSafe": true
|
|
19
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.set_variable",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["key", "value"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"key": {"type": "string", "minLength": 1},
|
|
9
|
+
"value": {"$ref": "workspace-value.schema.json"}
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
},
|
|
13
|
+
"effectClass": "workspace",
|
|
14
|
+
"capabilities": ["workspace.write"],
|
|
15
|
+
"browserSafe": true
|
|
16
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.sheet_set_cells",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"cells": { "type": "array" },
|
|
10
|
+
"formulas": { "type": "array" }
|
|
11
|
+
},
|
|
12
|
+
"additionalProperties": false
|
|
13
|
+
},
|
|
14
|
+
"effectClass": "document",
|
|
15
|
+
"capabilities": ["document.write"],
|
|
16
|
+
"readsFromConfig": true,
|
|
17
|
+
"browserSafe": false
|
|
18
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: roborean-engine
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: Deterministic Roborean compiler, runner, and durable run service
|
|
5
|
+
Project-URL: Homepage, https://github.com/TNick/roborean
|
|
6
|
+
Project-URL: Repository, https://github.com/TNick/roborean
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Requires-Dist: jsonschema>=4.23
|
|
10
|
+
Requires-Dist: roborean-documents-base>=0.1.1
|
|
11
|
+
Requires-Dist: roborean-documents-docx>=0.1.1
|
|
12
|
+
Requires-Dist: roborean-documents-dxf>=0.1.1
|
|
13
|
+
Requires-Dist: roborean-documents-image>=0.1.1
|
|
14
|
+
Requires-Dist: roborean-documents-markdown>=0.1.1
|
|
15
|
+
Requires-Dist: roborean-documents-text>=0.1.1
|
|
16
|
+
Requires-Dist: roborean-documents-xlsx>=0.1.1
|
|
17
|
+
Requires-Dist: roborean-plugins-base>=0.1.1
|
|
18
|
+
Requires-Dist: roborean-spec>=0.1.1
|
|
19
|
+
Requires-Dist: roborean-storage-base>=0.1.1
|
|
20
|
+
Requires-Dist: roborean-storage-dict>=0.1.1
|
|
21
|
+
Requires-Dist: roborean-storage-sqlalchemy>=0.1.1
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: black>=24.0; extra == 'dev'
|
|
24
|
+
Requires-Dist: flake8>=7.0; extra == 'dev'
|
|
25
|
+
Requires-Dist: isort>=5.0; extra == 'dev'
|
|
26
|
+
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
roborean_engine/bits/manifests/append_text.json,sha256=TAnbf8LkukV2gCb4F5OFdfwNYwo-qRG2OXHoIuMcUCM,438
|
|
2
|
+
roborean_engine/bits/manifests/copy_variable.json,sha256=vxFe_u3lPpl6AIIIY9vUEmuKIpHfRzg2sESnI5Kvh-Y,410
|
|
3
|
+
roborean_engine/bits/manifests/drawing_insert_polyline.json,sha256=TVbDevFOszFGoHge5AWn6WOi4dnJ9tuPR09PI_RlKGo,414
|
|
4
|
+
roborean_engine/bits/manifests/fake_network.json,sha256=x1diqpwlg7W9XLi0rJfBgyq41qn06Izk_STSFj6QdE4,245
|
|
5
|
+
roborean_engine/bits/manifests/flow_append_paragraph.json,sha256=Z8wOQ0SFRf3Xhg3igUt6xHL56KJCtjjfeIoXyyiAGV0,411
|
|
6
|
+
roborean_engine/bits/manifests/noop.json,sha256=a0-iuz0elX27ePuliGB0J2WO-fIXNpTO6ZwsG3YuFH0,205
|
|
7
|
+
roborean_engine/bits/manifests/raster_draw_text.json,sha256=QwXSwf4h-OL-4YUweKKbp9u45bS3HUMBMK3cX-cQGRA,407
|
|
8
|
+
roborean_engine/bits/manifests/replace_named_value.json,sha256=kwwaWEEijIfcGdN-wHkA2uLfSN5NdlknEIL3GHT_5pQ,469
|
|
9
|
+
roborean_engine/bits/manifests/set_variable.json,sha256=sLLqGOMgknmFiqm2H9qKPK4HN8bgyX-JeZORkIHolLw,400
|
|
10
|
+
roborean_engine/bits/manifests/sheet_set_cells.json,sha256=uuSKWOgpW5cBeqw05HMeZOQsfSOYgISSfVZlolR-EtQ,439
|
|
11
|
+
roborean_engine-0.1.2.dist-info/METADATA,sha256=gupxSC8XYw-pCXN5j1gquWI2NUyFBy4qsKslXMQdfi8,1064
|
|
12
|
+
roborean_engine-0.1.2.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
|
|
13
|
+
roborean_engine-0.1.2.dist-info/entry_points.txt,sha256=Ng9KdJZ74qCDZs2nKGBTg5xIY-fi4Va3dtB6sw225qo,305
|
|
14
|
+
roborean_engine-0.1.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
roborean = roborean_engine.cli:main
|
|
3
|
+
|
|
4
|
+
[roborean.bit_types]
|
|
5
|
+
roborean.copy_variable = roborean_engine.bits.registry:load_copy_variable_bit_type
|
|
6
|
+
roborean.noop = roborean_engine.bits.registry:load_noop_bit_type
|
|
7
|
+
roborean.set_variable = roborean_engine.bits.registry:load_set_variable_bit_type
|