Socket
Socket
Sign inDemoInstall

shopify-api-node

Package Overview
Dependencies
Maintainers
2
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shopify-api-node - npm Package Compare versions

Comparing version 3.10.2 to 3.11.0

mixins/shopify-payments-child.js

2

package.json
{
"name": "shopify-api-node",
"version": "3.10.2",
"version": "3.11.0",
"description": "Shopify API bindings for Node.js",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -436,2 +436,8 @@ # Shopify API Node.js

- `list([params])`
- disputeEvidence
- `get(disputeId)`
- `update(disputeId, params)`
- disputeFileUpload
- `create(disputeId, params)`
- `delete(disputeId, id)`
- draftOrder

@@ -474,2 +480,3 @@ - `complete(id[, params])`

- `move(id, locationId)`
- `setFulfillmentOrdersDeadline(params)`
- fulfillmentRequest

@@ -476,0 +483,0 @@ - `accept(fulfillmentOrderId[, message])`

@@ -103,2 +103,17 @@ 'use strict';

/**
* Sets the latest date and time by which the fulfillment orders need to be
* fulfilled.
*
* @param {Object} params An object containing the new fulfillment deadline and
* and the IDs of the fulfillment orders for which the deadline is being set
* @return {Promise} Promise that resolves with the result
* @public
*/
FulfillmentOrder.prototype.setFulfillmentOrdersDeadline =
function setFulfillmentOrdersDeadline(params) {
const url = this.buildUrl('set_fulfillment_orders_deadline');
return this.shopify.request(url, 'POST', undefined, params);
};
module.exports = FulfillmentOrder;

@@ -29,2 +29,4 @@ 'use strict';

dispute: 'dispute',
disputeEvidence: 'dispute-evidence',
disputeFileUpload: 'dispute-file-upload',
draftOrder: 'draft-order',

@@ -31,0 +33,0 @@ event: 'event',

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

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