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

@pipedream/platform

Package Overview
Dependencies
Maintainers
6
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pipedream/platform - npm Package Compare versions

Comparing version 1.6.4 to 1.6.5

dist/axios.d.ts

21

lib/sql-prop.ts
import { ConfigurationError } from "./errors";
import { JsonValue } from "type-fest";
import { JsonPrimitive } from "type-fest";
export type DbSchema = JsonValue;
export type DbSchema = {
[tableName: string]: {
[columnName: string]: {
columnDefault: JsonPrimitive;
dataType: string;
isNullable: boolean;
tableSchema?: string;
};
};
};
export type RowCount = {
[tableName: string]: {
_rowCount?: number;
};
};
export default {

@@ -17,3 +32,3 @@ methods: {

*/
getSchema(): DbSchema {
getSchema(): DbSchema | RowCount {
throw new ConfigurationError("getSchema not implemented");

@@ -20,0 +35,0 @@ },

2

package.json
{
"name": "@pipedream/platform",
"version": "1.6.4",
"version": "1.6.5",
"description": "Pipedream platform globals (typing and runtime type checking)",

@@ -5,0 +5,0 @@ "homepage": "https://pipedream.com",

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