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

@doflo/flow-interfaces

Package Overview
Dependencies
Maintainers
2
Versions
200
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@doflo/flow-interfaces - npm Package Compare versions

Comparing version 1.17.3 to 1.17.4

2

dist/decorators/action.decorator.d.ts
import 'reflect-metadata';
export declare function Action(name?: string, className?: string): MethodDecorator;
export declare function Action(name?: string, className?: string): (_target: unknown, key: string | symbol, descriptor?: PropertyDescriptor | undefined) => PropertyDescriptor;

@@ -25,6 +25,5 @@ "use strict";

const constants = __importStar(require("./_constants"));
function Action(name, className) {
// eslint-disable-next-line @typescript-eslint/ban-types
function Action(name = '', className = '') {
return (_target, key, descriptor) => {
Reflect.defineMetadata(constants.ACTION_NAME_METADATA, className ? className + '_' : '' + name ? name : key, descriptor.value);
Reflect.defineMetadata(constants.ACTION_NAME_METADATA, className ? className + '_' : '' + name ? name : key, descriptor ? descriptor.value : undefined);
return descriptor;

@@ -31,0 +30,0 @@ };

@@ -75,25 +75,2 @@ {

},
"element-events-schema": {
"type": "array",
"items": {
"$ref": "#/definitions/element-event-schema"
}
},
"element-event-schema": {
"allOf": [
{
"$ref": "./definitions/elementSchema.json"
}
],
"description": "Definition of a switchboard event switch",
"properties": {
"switchMethod": {},
"notes": {},
"switchType": {
"description": "In an event switch this should be event",
"pattern": "event"
}
},
"additionalProperties": false
},
"configuration-schema": {

@@ -100,0 +77,0 @@ "description": "Definition of a doFlo configuration",

{
"name": "@doflo/flow-interfaces",
"version": "1.17.3",
"version": "1.17.4",
"description": "Public Interfaces, Schemas, & GRPC Signatures for doFlo developers",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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