Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@flatfile/listener

Package Overview
Dependencies
Maintainers
26
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flatfile/listener - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

6

CHANGELOG.md
# @flatfile/listener
## 0.1.2
### Patch Changes
- 22d2466: Pull last 5 seconds of events in Polling Driver
## 0.1.1

@@ -4,0 +10,0 @@

4

dist/index.js

@@ -817,3 +817,3 @@ "use strict";

});
let lastTimestamp = /* @__PURE__ */ new Date();
let lastTimestamp = new Date(Date.now() - 5e3);
if (!this.environmentId) {

@@ -850,3 +850,3 @@ throw new Error("environmentId is required");

}).catch(console.error);
lastTimestamp = /* @__PURE__ */ new Date();
lastTimestamp = new Date(Date.now() - 5e3);
}, 500);

@@ -853,0 +853,0 @@ }

{
"name": "@flatfile/listener",
"version": "0.1.1",
"version": "0.1.2",
"description": "A PubSub Listener for configuring and using Flatfile",

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

@@ -40,3 +40,3 @@ import c from 'ansi-colors'

let lastTimestamp = new Date()
let lastTimestamp = new Date(Date.now() - 5000)
if (!this.environmentId) {

@@ -78,3 +78,3 @@ throw new Error('environmentId is required')

lastTimestamp = new Date()
lastTimestamp = new Date(Date.now() - 5000)
}, 500)

@@ -81,0 +81,0 @@ }

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