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.94 to 1.17.95

50

dist/types/index.d.ts

@@ -271,5 +271,49 @@ /// <reference types="node" />

}
export interface eJSONDate {
"$date": string;
}
export interface eJSONUUID {
"$binary": {
base64: string;
subType: string;
};
}
declare interface UpdateIntervalEvent {
id?: string;
active?: boolean;
schedule?: string;
}
declare interface IntervalEvent<T = any> extends ActiveEvent<T> {
id?: string;
active?: boolean;
key: string;
last: eJSONDate;
next: eJSONDate;
schedule?: string;
event: ExecutionWrapper<T>;
start?: eJSONDate;
end?: eJSONDate;
status?: number;
}
declare interface ActiveEvent<T = any> {
id?: string;
key?: string;
next: eJSONDate;
event: ExecutionWrapper<T>;
status?: number;
}
export interface ISchedule {
get: <T = any>(id: string) => Promise<IntervalEvent<T>>;
/**
* ![doFlo Logo](https://schemas.doflo.com/docslogo.png?topic=ISchedule;schedule&v=1.0.0)
*
* **schedule** cron schedule an event
*/
schedule: (event: IntervalEvent) => Promise<string>;
update: (update: UpdateIntervalEvent) => Promise<boolean>;
delete: (id: string) => Promise<boolean>;
}
export interface IStash {
/**
* ![doFlo Logo](https://schemas.doflo.com/docslogo.png?topic=IRPCContext;stash&v=1.0.0)
* ![doFlo Logo](https://schemas.doflo.com/docslogo.png?topic=IStash;stash&v=1.0.0)
*

@@ -296,3 +340,3 @@ * **stash** short term storage of data, (up to 2 days) this is commonly used to securely stash

/**
* ![doFlo Logo](https://schemas.doflo.com/docslogo.png?topic=IRPCContext;pickup&v=1.0.0)
* ![doFlo Logo](https://schemas.doflo.com/docslogo.png?topic=IStash;pickup&v=1.0.0)
*

@@ -316,3 +360,3 @@ * **pickup** short term storage of data, (up to 2 days) this is commonly used to securely stash

/**
* ![doFlo Logo](https://schemas.doflo.com/docslogo.png?topic=IRPCContext;expire&v=1.0.0)
* ![doFlo Logo](https://schemas.doflo.com/docslogo.png?topic=IStash;expire&v=1.0.0)
*

@@ -319,0 +363,0 @@ * **expire** short term storage of data, (up to 2 days) this is commonly used to securely stash

2

package.json
{
"name": "@doflo/flow-interfaces",
"version": "1.17.94",
"version": "1.17.95",
"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