New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@gokiteam/mews

Package Overview
Dependencies
Maintainers
5
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@gokiteam/mews

This is a Node.js library which implements mews REST requests

unpublished
latest
npmnpm
Version
1.2.4
Version published
Maintainers
5
Created
Source

Goki Mews SDK

This is a Node.js library which implements mews REST requests

How to use

Install

npm install --save @gokiteam/mews

Example

const { Mews, Enums: { ReservationState } } = require('@gokiteam/mews')

const mews = new Mews({
  clientToken: 'your client token',
  demoServer: true // set this flag if you want to call mews demo server
})

mews.getAllReservation({
  AccessToken: 'your access token',
  Client: 'Goki',
  StartUtc: '2019-08-01T10:00:00Z',
  EndUtc: '2019-09-01T10:00:00Z',
  States: [
    ReservationState.Created,
    ReservationState.Canceled
  ]
})
.then(result => {
  console.log(result)
})
.catch(error => {
  console.log(error)
})

Keywords

goki

FAQs

Package last updated on 11 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts