@positronic/spec 0.0.2 → 0.0.4
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/api.d.ts +107 -0
- package/dist/api.d.ts.map +1 -0
- package/dist/api.js +948 -0
- package/dist/api.js.map +1 -0
- package/dist/index.d.ts +123 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -0
- package/dist/src/api.js +2246 -0
- package/dist/src/index.js +16 -0
- package/package.json +5 -1
- package/src/api.ts +0 -1404
- package/src/index.ts +0 -136
- package/tsconfig.json +0 -11
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @positronic/spec
|
|
3
|
+
*
|
|
4
|
+
* This package contains:
|
|
5
|
+
* - Interface specifications for Positronic implementations
|
|
6
|
+
* - Conformance test suites
|
|
7
|
+
* - Shared types and contracts
|
|
8
|
+
*
|
|
9
|
+
* Currently includes the PositronicDevServer interface.
|
|
10
|
+
* Future additions will include REST API specifications and tests.
|
|
11
|
+
*/ /**
|
|
12
|
+
* Handle for managing a running development server
|
|
13
|
+
*
|
|
14
|
+
* This interface provides lifecycle management for a server instance,
|
|
15
|
+
* abstracting away the underlying implementation details (process, worker, etc.)
|
|
16
|
+
*/ export { testStatus, resources, brains, schedules, secrets } from './api.js';
|
package/package.json
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@positronic/spec",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"description": "Specifications and interfaces for Positronic framework",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"license": "MIT",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"package.json"
|
|
13
|
+
],
|
|
10
14
|
"main": "./dist/index.js",
|
|
11
15
|
"types": "./dist/index.d.ts",
|
|
12
16
|
"exports": {
|