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

inkworks

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inkworks - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

2

package.json
{
"name": "inkworks",
"version": "0.0.13",
"version": "0.0.14",
"description": "Ink.Works (formerly Take2) Platform API Wrapper",

@@ -5,0 +5,0 @@ "keywords": [

@@ -207,2 +207,14 @@ const lineItemFields = `

}
`;
const addOrderTaskQuery = `
mutation ($orderId: Int, $task: JSON) {
addOrderTask(orderId: $orderId, task: $task) {
id
tasks {
id
content
}
}
}
`

@@ -225,2 +237,3 @@

addOrderMessageQuery,
addOrderTaskQuery,
list(variables = {}) {

@@ -267,3 +280,6 @@ return this.request(listQuery, variables);

return this.request(addOrderMessageQuery, { orderId, message });
},
addTask(orderId, task) {
return this.request(addOrderTaskQuery, { orderId, task });
}
};
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