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

@uniformdev/mesh-sdk

Package Overview
Dependencies
Maintainers
0
Versions
710
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uniformdev/mesh-sdk - npm Package Compare versions

Comparing version 19.202.0 to 19.202.1-alpha.9

19

dist/index.esm.js

@@ -89,2 +89,16 @@ var __typeError = (msg) => {

// src/locations/aiAgents.ts
function parseFunctionCall(request) {
const body = typeof request.body === "string" ? JSON.parse(request.body) : request.body;
const settings = body == null ? void 0 : body.settings;
const functionCall = body == null ? void 0 : body.functionCall;
return {
functionCall: {
...functionCall,
arguments: JSON.parse(functionCall.arguments)
},
settings
};
}
// src/sdk.ts

@@ -117,3 +131,3 @@ import mitt from "mitt";

// src/temp/version.ts
var UNIFORM_MESH_SDK_VERSION = "19.202.0";
var UNIFORM_MESH_SDK_VERSION = "19.207.0";

@@ -813,3 +827,4 @@ // src/framepost/constants.ts

hasRole,
initializeUniformMeshSDK
initializeUniformMeshSDK,
parseFunctionCall
};

@@ -43,3 +43,4 @@ "use strict";

hasRole: () => hasRole,
initializeUniformMeshSDK: () => initializeUniformMeshSDK
initializeUniformMeshSDK: () => initializeUniformMeshSDK,
parseFunctionCall: () => parseFunctionCall
});

@@ -129,2 +130,16 @@ module.exports = __toCommonJS(src_exports);

// src/locations/aiAgents.ts
function parseFunctionCall(request) {
const body = typeof request.body === "string" ? JSON.parse(request.body) : request.body;
const settings = body == null ? void 0 : body.settings;
const functionCall = body == null ? void 0 : body.functionCall;
return {
functionCall: {
...functionCall,
arguments: JSON.parse(functionCall.arguments)
},
settings
};
}
// src/sdk.ts

@@ -157,3 +172,3 @@ var import_mitt = __toESM(require("mitt"));

// src/temp/version.ts
var UNIFORM_MESH_SDK_VERSION = "19.202.0";
var UNIFORM_MESH_SDK_VERSION = "19.207.0";

@@ -854,3 +869,4 @@ // src/framepost/constants.ts

hasRole,
initializeUniformMeshSDK
initializeUniformMeshSDK,
parseFunctionCall
});

13

package.json
{
"name": "@uniformdev/mesh-sdk",
"version": "19.202.0",
"version": "19.202.1-alpha.9+63c059770a",
"description": "Uniform Mesh Framework SDK",

@@ -37,5 +37,5 @@ "license": "SEE LICENSE IN LICENSE.txt",

"dependencies": {
"@uniformdev/canvas": "19.202.0",
"@uniformdev/context": "19.202.0",
"@uniformdev/project-map": "19.202.0",
"@uniformdev/canvas": "19.202.1-alpha.9+63c059770a",
"@uniformdev/context": "19.202.1-alpha.9+63c059770a",
"@uniformdev/project-map": "19.202.1-alpha.9+63c059770a",
"imagesloaded": "^5.0.0",

@@ -45,5 +45,6 @@ "mitt": "^3.0.1"

"devDependencies": {
"@types/imagesloaded": "^4.1.2"
"@types/imagesloaded": "^4.1.2",
"openai": "^4.58.2"
},
"gitHead": "133a9ea4d2d3794e2d05ad8277f6bb3803d109d7"
"gitHead": "63c059770a54fc063a12af0f74eba059143e8074"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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