New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@inploi/core

Package Overview
Dependencies
Maintainers
2
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@inploi/core - npm Package Compare versions

Comparing version 1.7.0 to 1.8.0

13

flows/flows.schemas.ts

@@ -23,4 +23,15 @@ import { z } from 'zod';

data: z.object({}),
server: z.boolean().default(false),
});
/** Node that... */
export const GetWorkflowNodeSchema = BaseFlowNodeSchema.extend({
type: z.literal('integration-workflow-get'),
server: z.literal(true),
data: z.object({
ats: z.enum(['cornerstone']),
}),
});
export type GetWorkflowNode = z.infer<typeof GetWorkflowNodeSchema>;
/** Node that ends the flow. */

@@ -193,2 +204,3 @@ export const EndFlowNodeSchema = BaseFlowNodeSchema.extend({

JumpNodeSchema,
GetWorkflowNodeSchema,
],

@@ -214,4 +226,5 @@ { invalid_type_error: 'Invalid node type', required_error: 'Node type is required' },

'question-number': QuestionNumberSchema,
'integration-workflow-get': GetWorkflowNodeSchema,
} satisfies Record<FlowNodeType, z.ZodSchema>;
export type FlowNodeType = FlowNode['type'];

2

package.json
{
"name": "@inploi/core",
"version": "1.7.0",
"version": "1.8.0",
"license": "MIT",

@@ -5,0 +5,0 @@ "files": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc