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

windmill-client

Package Overview
Dependencies
Maintainers
1
Versions
694
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

windmill-client - npm Package Compare versions

Comparing version 1.168.3 to 1.169.0

2

dist/core/OpenAPI.js

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

BASE: '/api',
VERSION: '1.168.3',
VERSION: '1.169.0',
WITH_CREDENTIALS: false,

@@ -9,0 +9,0 @@ CREDENTIALS: 'include',

@@ -46,2 +46,23 @@ import type { NewScript } from '../models/NewScript';

/**
* query hub scripts by similarity
* @returns any script details
* @throws ApiError
*/
static queryHubScripts({ text, kind, limit, }: {
/**
* query text
*/
text: string;
/**
* query scripts kind
*/
kind?: string;
/**
* query limit
*/
limit?: number;
}): CancelablePromise<Array<{
id: string;
}>>;
/**
* list all available scripts

@@ -48,0 +69,0 @@ * @returns Script All available scripts

@@ -47,2 +47,18 @@ "use strict";

/**
* query hub scripts by similarity
* @returns any script details
* @throws ApiError
*/
static queryHubScripts({ text, kind, limit, }) {
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
method: 'GET',
url: '/scripts/hub/query',
query: {
'text': text,
'kind': kind,
'limit': limit,
},
});
}
/**
* list all available scripts

@@ -49,0 +65,0 @@ * @returns Script All available scripts

{
"name": "windmill-client",
"description": "Windmill SDK client for browsers and Node.js",
"version": "1.168.3",
"version": "1.169.0",
"author": "Ruben Fiszel",

@@ -6,0 +6,0 @@ "license": "Apache 2.0",

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