@xentom/integration-framework 0.0.7 → 0.0.8
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/generic.d.ts +2 -2
- package/package.json +1 -1
package/dist/generic.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type CallableNode, type PureNode, type TriggerNode } from './nodes';
|
|
2
|
-
import { type
|
|
3
|
-
export type GenericInputs<R extends PinRecord> =
|
|
2
|
+
import { type InferPinRecordInput, type PinRecord } from './pins';
|
|
3
|
+
export type GenericInputs<R extends PinRecord> = InferPinRecordInput<R>;
|
|
4
4
|
export type GenericNode<N extends () => NodeWithAnyIO = () => NodeWithAnyIO> = ReturnType<N> & {
|
|
5
5
|
_generic: N;
|
|
6
6
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xentom/integration-framework",
|
|
3
3
|
"description": "A type-safe, declarative framework for building composable workflow integrations using nodes, pins, and rich controls.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.8",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://xentom.com",
|
|
7
7
|
"author": {
|