@synode/synode 1.0.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/LICENSE +35 -0
- package/README.md +34 -0
- package/dist/index.cjs +36 -0
- package/dist/index.d.cts +6 -0
- package/dist/index.d.mts +6 -0
- package/dist/index.mjs +8 -0
- package/package.json +43 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Synode Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Digitl Cloud GmbH. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person or organization
|
|
6
|
+
obtaining a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to use the Software for personal, internal, and commercial
|
|
8
|
+
purposes, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
1. PERMITTED USE. You may use, copy, and modify the Software for your own
|
|
11
|
+
personal, internal, or commercial purposes.
|
|
12
|
+
|
|
13
|
+
2. NO REDISTRIBUTION. You may not distribute, publish, sublicense, or
|
|
14
|
+
otherwise make the Software or any derivative works available to third
|
|
15
|
+
parties, whether in source code or compiled form, free of charge or for
|
|
16
|
+
a fee.
|
|
17
|
+
|
|
18
|
+
3. NO RESALE. You may not sell, rent, lease, or otherwise commercially
|
|
19
|
+
exploit the Software itself as a standalone product or as part of a
|
|
20
|
+
software distribution.
|
|
21
|
+
|
|
22
|
+
4. NO HOSTING AS A SERVICE. You may not offer the Software to third parties
|
|
23
|
+
as a hosted, managed, or software-as-a-service product where the primary
|
|
24
|
+
value derives from the Software.
|
|
25
|
+
|
|
26
|
+
5. ATTRIBUTION. You must retain this license notice and copyright notice in
|
|
27
|
+
all copies or substantial portions of the Software.
|
|
28
|
+
|
|
29
|
+
6. NO WARRANTY. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
|
30
|
+
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
31
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
32
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES
|
|
33
|
+
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
34
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
35
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# @synode/synode
|
|
2
|
+
|
|
3
|
+
All Synode packages in one install.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @synode/synode
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This installs:
|
|
12
|
+
- [@synode/core](https://github.com/digitl-cloud/synode/tree/main/packages/core) — Core engine
|
|
13
|
+
- [@synode/cli](https://github.com/digitl-cloud/synode/tree/main/packages/cli) — CLI tool
|
|
14
|
+
- [@synode/adapter-file](https://github.com/digitl-cloud/synode/tree/main/packages/adapter-file) — File adapter
|
|
15
|
+
- [@synode/adapter-http](https://github.com/digitl-cloud/synode/tree/main/packages/adapter-http) — HTTP adapter
|
|
16
|
+
- [@synode/adapter-stream](https://github.com/digitl-cloud/synode/tree/main/packages/adapter-stream) — Stream adapter
|
|
17
|
+
- [@synode/adapter-composite](https://github.com/digitl-cloud/synode/tree/main/packages/adapter-composite) — Composite adapter
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```typescript
|
|
22
|
+
import { generate, defineJourney, InMemoryAdapter, FileAdapter, HttpAdapter } from '@synode/synode';
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Documentation
|
|
26
|
+
|
|
27
|
+
- [Docs](https://synode-docs-1013393206713.europe-west1.run.app)
|
|
28
|
+
- [GitHub](https://github.com/digitl-cloud/synode)
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
Proprietary — see [LICENSE](https://github.com/digitl-cloud/synode/blob/main/LICENSE) for details.
|
|
33
|
+
|
|
34
|
+
Copyright © 2026 [Digitl Cloud GmbH](https://digitlcloud.com)
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
let __synode_adapter_file = require("@synode/adapter-file");
|
|
2
|
+
let __synode_adapter_http = require("@synode/adapter-http");
|
|
3
|
+
let __synode_adapter_stream = require("@synode/adapter-stream");
|
|
4
|
+
let __synode_adapter_composite = require("@synode/adapter-composite");
|
|
5
|
+
|
|
6
|
+
Object.defineProperty(exports, 'CompositeAdapter', {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return __synode_adapter_composite.CompositeAdapter;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, 'FileAdapter', {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return __synode_adapter_file.FileAdapter;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, 'HttpAdapter', {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function () {
|
|
21
|
+
return __synode_adapter_http.HttpAdapter;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, 'StreamAdapter', {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () {
|
|
27
|
+
return __synode_adapter_stream.StreamAdapter;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
var __synode_core = require("@synode/core");
|
|
31
|
+
Object.keys(__synode_core).forEach(function (k) {
|
|
32
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function () { return __synode_core[k]; }
|
|
35
|
+
});
|
|
36
|
+
});
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { FileAdapter, FileAdapterOptions } from "@synode/adapter-file";
|
|
2
|
+
import { HttpAdapter, HttpAdapterOptions } from "@synode/adapter-http";
|
|
3
|
+
import { StreamAdapter, StreamAdapterOptions } from "@synode/adapter-stream";
|
|
4
|
+
import { CompositeAdapter } from "@synode/adapter-composite";
|
|
5
|
+
export * from "@synode/core";
|
|
6
|
+
export { CompositeAdapter, FileAdapter, type FileAdapterOptions, HttpAdapter, type HttpAdapterOptions, StreamAdapter, type StreamAdapterOptions };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { FileAdapter, FileAdapterOptions } from "@synode/adapter-file";
|
|
2
|
+
import { HttpAdapter, HttpAdapterOptions } from "@synode/adapter-http";
|
|
3
|
+
import { StreamAdapter, StreamAdapterOptions } from "@synode/adapter-stream";
|
|
4
|
+
import { CompositeAdapter } from "@synode/adapter-composite";
|
|
5
|
+
export * from "@synode/core";
|
|
6
|
+
export { CompositeAdapter, FileAdapter, type FileAdapterOptions, HttpAdapter, type HttpAdapterOptions, StreamAdapter, type StreamAdapterOptions };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FileAdapter } from "@synode/adapter-file";
|
|
2
|
+
import { HttpAdapter } from "@synode/adapter-http";
|
|
3
|
+
import { StreamAdapter } from "@synode/adapter-stream";
|
|
4
|
+
import { CompositeAdapter } from "@synode/adapter-composite";
|
|
5
|
+
|
|
6
|
+
export * from "@synode/core"
|
|
7
|
+
|
|
8
|
+
export { CompositeAdapter, FileAdapter, HttpAdapter, StreamAdapter };
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@synode/synode",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Synode — all packages in one install",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "dist/index.mjs",
|
|
8
|
+
"types": "dist/index.d.mts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.mts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"author": "Digitl Cloud GmbH",
|
|
20
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/digitl-cloud/synode",
|
|
24
|
+
"directory": "packages/synode"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@synode/cli": "1.0.0",
|
|
28
|
+
"@synode/core": "1.0.0",
|
|
29
|
+
"@synode/adapter-file": "1.0.0",
|
|
30
|
+
"@synode/adapter-http": "1.0.0",
|
|
31
|
+
"@synode/adapter-composite": "1.0.0",
|
|
32
|
+
"@synode/adapter-stream": "1.0.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"tsdown": "^0.16.8",
|
|
36
|
+
"typescript": "^5.9.3"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsdown",
|
|
40
|
+
"test": "echo 'no tests'",
|
|
41
|
+
"lint": "echo 'no lint'"
|
|
42
|
+
}
|
|
43
|
+
}
|