🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@workflowai/workflowai

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@workflowai/workflowai - npm Package Compare versions

Comparing version

to
1.0.2

22

dist/esm/index.js

@@ -1,20 +0,2 @@

"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.z = void 0;
__exportStar(require("./WorkflowAI"), exports);
var schema_1 = require("@workflowai/schema");
Object.defineProperty(exports, "z", { enumerable: true, get: function () { return schema_1.z; } });
export * from './WorkflowAI';
export { z } from '@workflowai/schema';

3

dist/esm/Task.js

@@ -1,2 +0,1 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
export {};

@@ -1,6 +0,3 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.WorkflowAI = void 0;
const api_1 = require("@workflowai/api");
class WorkflowAI {
import { initWorkflowAIApi, } from '@workflowai/api';
export class WorkflowAI {
constructor(config) {

@@ -11,3 +8,3 @@ if (config && 'api' in config) {

else {
this.api = (0, api_1.initWorkflowAIApi)({
this.api = initWorkflowAIApi({
...config,

@@ -37,2 +34,1 @@ });

}
exports.WorkflowAI = WorkflowAI;
{
"name": "@workflowai/workflowai",
"version": "1.0.1",
"version": "1.0.2",
"description": "workflowAI client",

@@ -16,9 +16,6 @@ "author": "workflowAI",

"exports": {
"import": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}

@@ -52,5 +49,5 @@ },

"dependencies": {
"@workflowai/api": "^1.0.1",
"@workflowai/schema": "^1.0.0"
"@workflowai/api": "^1.0.2",
"@workflowai/schema": "^1.0.1"
}
}