Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sg-jobs-sdk

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sg-jobs-sdk

An SDK for Salling Group's Jobs API

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Salling Group Jobs SDK

This SDK simplifies the process of querying Salling Group's open job positions. Salling Group owns Netto, Føtex, Bilka, Salling, and more. Through this SDK you will be able to find information about open job positions. The requests are made through the Salling Group API which can be found here.

You will need the module sg-base-sdk in order to authenticate. You can get your credentials through the developer portal.

Getting Started.

The following example gets names of all Netto job openings in the ZIP code 8200. You will need to get a JWT secret or Bearer token with access to the Jobs API from the developer portal.

const { SallingGroupAPI } = require('sg-base-sdk');
const JobsSDK = require('sg-jobs-sdk');
const instance = new JobsSDK(SallingGroupAPI.bearer('my_token'));

const traverser = instance.beginQuery()
  .ofBrand('netto')
  .inZIP(8200)
  .pick('title', 'address')
  .execute();

traverser.get().then((page) => console.log(page));

This prints:

[
  {
    "title": "Butiksassistent under 18 år - Aarhus N",
    "address": { 
      "city": "Aarhus N",
      "country": "DK",
      "street": "Finlandsgade 15",
      "zip": "8200"
    }
  },
  {
    "title": "Butiksassistent under 18 år - Aarhus N",
    "address": { 
      "city": "Aarhus N",
      "country": "DK",
      "street": "Randersvej 116-118",
      "zip": "8200"
    }
  },
  {
    "title": "Souschef - Aarhus N",
    "address": 
     { "city": "Aarhus N",
       "country": "DK",
       "street": "Finlandsgade 15",
       "zip": "8200"
     }
  }
]

Documentation

constructor(api)

This initializes a new Jobs SDK object. api must be an instance returned by sg-base-sdk.

Example:

const { SallingGroupAPI } = require('sg-base-sdk');
const StoresSDK = require('sg-jobs-sdk');
const instance = new StoresSDK(SallingGroupAPI.jwt('my_email', 'my_key'));

get(jobID)

This gets the open job position with the given ID.

Example:

const jobData = await instance.get('3764efcb-4a7a-4d30-a274-7cefa0dce797');

getAll()

This gets all jobs.

Example:

const traverser = instance.getAll();
const page = await traverser.get();

beginQuery()

This begins a query for jobs. This should be followed by a chain of these commands:

MethodDescriptionExample
pick(field1, field2, ...)Only returns the given fields..pick('id', 'name')
ofBrand(brand)Returns jobs from the given brand..ofBrand('netto')
inCity(city)Returns jobs in the given city..inCity('Risskov')
inZIP(zip)Returns jobs located in the given ZIP code..inZIP(8200)

The chain should be ended with .execute(). This will return a Traverser for the query.

Example:

const traverser = instance.beginQuery()
    .ofBrand('netto')
    .inZIP(8200)
    .pick('title', 'id')
    .execute();
// This will return title and ID of Netto jobs in the ZIP code 8200.
const page = await traverser.get();

query(params = {})

This queries the Jobs API directly and returns a Traverser. params is the search parameters. This is mostly used internally.

FAQs

Package last updated on 25 Jul 2018

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

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