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

orderiom-api-package

Package Overview
Dependencies
Maintainers
0
Versions
227
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

orderiom-api-package - npm Package Compare versions

Comparing version 0.4.53 to 0.4.54

2

package.json
{
"name": "orderiom-api-package",
"version": "0.4.53",
"version": "0.4.54",
"description": "This package will install all necessary API calls for every orderiom restaurant",

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

@@ -31,5 +31,9 @@ import {commonErrorCallback, calculateBasketIdParameter, updateBasket, formatDate, formatTime, deliveryCodeToName, weekdays, $http} from '../common';

pinnedProducts: null,
showPinnedProducts: false
showPinnedProducts: false,
fetchingProducts: false,
});
const getters = {
fetchingProducts(state){
return !!state.orderiomApiPackage.product.fetchingProducts;
},
subCategories(state){

@@ -158,2 +162,5 @@ if(!state.products) return []

const mutations = {
setFetchingProducts(state, isFetching){
state.fetchingProducts = isFetching;
},
setSelectedDate(state, date) {

@@ -349,2 +356,3 @@ state.selectedDate = date

commit('setFetchingProducts', true);
return $http.get("api/restaurant/products", {

@@ -369,3 +377,5 @@ params: {

commonErrorCallback()
);
).finish(() => {
commit('setFetchingProducts', false);
});
},

@@ -372,0 +382,0 @@ getPinnedProducts({ commit, state, rootState }, data) {

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