pgflow 0.0.0-pgflow-installer-157d9e2e-20251212133651 → 0.0.0-runkey-85f08e51-20251225180003

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.
@@ -19,11 +19,11 @@ export const GreetUser = new Flow<Input>({
19
19
  })
20
20
  .step(
21
21
  { slug: 'fullName' },
22
- (input) => \`\${input.run.firstName} \${input.run.lastName}\`
22
+ (flowInput) => \`\${flowInput.firstName} \${flowInput.lastName}\`
23
23
  )
24
24
  .step(
25
25
  { slug: 'greeting', dependsOn: ['fullName'] },
26
- (input) => \`Hello, \${input.fullName}!\`
26
+ (deps) => \`Hello, \${deps.fullName}!\`
27
27
  );
28
28
  `;
29
29
  export async function createFlowsDirectory({ supabasePath, autoConfirm = false, }) {
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgflow",
3
- "version": "0.0.0-pgflow-installer-157d9e2e-20251212133651",
3
+ "version": "0.0.0-runkey-85f08e51-20251225180003",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgflow",
3
- "version": "0.0.0-pgflow-installer-157d9e2e-20251212133651",
3
+ "version": "0.0.0-runkey-85f08e51-20251225180003",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,7 +30,7 @@
30
30
  "@decimalturn/toml-patch": "0.3.7",
31
31
  "chalk": "^5.4.1",
32
32
  "commander": "^13.1.0",
33
- "@pgflow/core": "0.0.0-pgflow-installer-157d9e2e-20251212133651"
33
+ "@pgflow/core": "0.0.0-runkey-85f08e51-20251225180003"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"