Skip to content

Commit

Permalink
Merge pull request #62 from pufflyai/61-remove-the-executable-input-f…
Browse files Browse the repository at this point in the history
…rom-the-end-node

61 remove the executable input from the end node
  • Loading branch information
au-re authored Sep 26, 2023
2 parents e3a2431 + d3c4221 commit 8b78525
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 26 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.19.3"
"version": "0.19.4"
}
4 changes: 2 additions & 2 deletions packages/@pufflig/ps-chains/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pufflig/ps-chains",
"version": "0.19.3",
"version": "0.19.4",
"license": "MIT",
"main": "./dist/ps-chains.umd.js",
"module": "./dist/ps-chains.es.js",
Expand All @@ -16,7 +16,7 @@
"test": "jest"
},
"devDependencies": {
"@pufflig/ps-types": "^0.19.3",
"@pufflig/ps-types": "^0.19.4",
"@types/react-dom": "^18.2.7",
"immer": "^10.0.2",
"prop-types": "^15.8.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/@pufflig/ps-models/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@pufflig/ps-models",
"private": false,
"version": "0.19.3",
"version": "0.19.4",
"description": "Configuration of models used in Prompt Studio",
"files": [
"dist"
Expand All @@ -16,7 +16,7 @@
"author": "Pufflig AB",
"license": "MIT",
"devDependencies": {
"@pufflig/ps-types": "^0.19.3",
"@pufflig/ps-types": "^0.19.4",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0"
Expand Down
8 changes: 4 additions & 4 deletions packages/@pufflig/ps-node-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"main": "./dist/ps-node-editor.umd.js",
"module": "./dist/ps-node-editor.es.js",
"types": "./dist/ps-node-editor.d.ts",
"version": "0.19.3",
"version": "0.19.4",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -20,15 +20,15 @@
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@pufflig/ps-chains": "^0.19.3",
"@pufflig/ps-nodes": "^0.19.3",
"@pufflig/ps-chains": "^0.19.4",
"@pufflig/ps-nodes": "^0.19.4",
"framer-motion": "^10.16.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.8.2"
},
"devDependencies": {
"@pufflig/ps-types": "^0.19.3",
"@pufflig/ps-types": "^0.19.4",
"@pufflig/ps-ui": "*",
"@storybook/addon-essentials": "^7.2.1",
"@storybook/addon-interactions": "^7.2.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/@pufflig/ps-nodes-config/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@pufflig/ps-nodes-config",
"private": false,
"version": "0.19.3",
"version": "0.19.4",
"description": "Configuration files for nodes used in prompt studio.",
"files": [
"dist"
Expand All @@ -16,10 +16,10 @@
"author": "Pufflig AB",
"license": "MIT",
"dependencies": {
"@pufflig/ps-models": "^0.19.3"
"@pufflig/ps-models": "^0.19.4"
},
"devDependencies": {
"@pufflig/ps-types": "^0.19.3",
"@pufflig/ps-types": "^0.19.4",
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
Expand Down
8 changes: 2 additions & 6 deletions packages/@pufflig/ps-nodes-config/src/core/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,10 @@ export const outputNodeType = "core/output" as const;

export const outputNodeConfig: NodeConfig = {
name: "End",
description: "Final node in a workflow",
description: "Pass the values you want to send to your app here.",
tags: ["core", "output"],
execution: {
inputs: [
{
id: "exec:input",
},
],
inputs: [],
outputs: [],
},
customSchema: "input",
Expand Down
10 changes: 5 additions & 5 deletions packages/@pufflig/ps-nodes/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@pufflig/ps-nodes",
"private": false,
"version": "0.19.3",
"version": "0.19.4",
"description": "Collection of nodes used in Prompt Studio",
"files": [
"dist"
Expand All @@ -17,7 +17,7 @@
"author": "Pufflig AB",
"license": "MIT",
"devDependencies": {
"@pufflig/ps-types": "^0.19.3",
"@pufflig/ps-types": "^0.19.4",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.196",
"@types/mustache": "^4.2.2",
Expand All @@ -32,9 +32,9 @@
"node": "18.16.0"
},
"dependencies": {
"@pufflig/ps-models": "^0.19.3",
"@pufflig/ps-nodes-config": "^0.19.3",
"@pufflig/ps-sdk": "^0.19.3",
"@pufflig/ps-models": "^0.19.4",
"@pufflig/ps-nodes-config": "^0.19.4",
"@pufflig/ps-sdk": "^0.19.4",
"axios": "^1.5.0",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/@pufflig/ps-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pufflig/ps-sdk",
"version": "0.19.3",
"version": "0.19.4",
"license": "MIT",
"main": "./dist/ps-sdk.umd.js",
"module": "./dist/ps-sdk.es.js",
Expand All @@ -21,7 +21,7 @@
"vite-plugin-dts": "^3.5.3"
},
"dependencies": {
"@pufflig/ps-models": "^0.19.3",
"@pufflig/ps-models": "^0.19.4",
"axios": "^1.5.0"
},
"gitHead": "d637557b77c60c4aa75f6f65b038a6eb4e9d5dc4"
Expand Down
2 changes: 1 addition & 1 deletion packages/@pufflig/ps-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pufflig/ps-types",
"version": "0.19.3",
"version": "0.19.4",
"description": "Typescript definitions for Prompt Studio",
"main": "src/index.ts",
"author": "Pufflig AB",
Expand Down

0 comments on commit 8b78525

Please sign in to comment.