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

tuix-marketplace-api

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tuix-marketplace-api

This package facilitates the client request to tuix marketplace api

latest
npmnpm
Version
0.17.0
Version published
Maintainers
1
Created
Source

Tuix marketplace api

Description

Api Client for tuix marketplace api project

Installation

npm i tuix-marketplace-api

If you need to use the stagging api client, then use the command

npm i tuix-marketplace-api@staging

Check the available versions in the following link: https://www.npmjs.com/package/tuix-marketplace-api?activeTab=versions

Developing the app

Tested on

node 18
npm  9.6.7

Make an example request :

import { Configuration, ResponseError, TuixmarketplaceClientApi  } from 'tuix-marketplace-api';

const configuration = new Configuration({
  basePath: "https://staging-api-marketplace.tuix.ch",
  apiKey: "Bearer <JWT>"
});

const timesheetAPIClient = new TuixmarketplaceClientApi(configuration);

(async () => {
  try {
    const companies = await timesheetAPIClient.companiesGet()
    console.log({ companies });      
  } catch (error) {
    if(error instanceof ResponseError){    
      console.log(error.response.status, error.response.statusText);
      const data =  await error.response.json()
      console.log(data);      
    }
  }
})()

Keywords

tuix

FAQs

Package last updated on 12 Nov 2025

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