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

apple-reporter

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apple-reporter

Promise-based Apple iTunes Connect Reporter

  • 1.2.0-alpha.0
  • alpha
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
21
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

apple-reporter

Build Status Dependencies codecov.io

Promise-based Apple iTunes Connect Reporter for Node.js > 4.2.0.

Results are automagically ungzipped. In Robot.XML mode (which is default), the XML is parsed into an object using xml2js. Errors result in a Promise rejection with best effort to set the code and message properties. Setting the code is not possible for text mode. (code defaults to -1)

Installation

npm i -S apple-reporter
yarn add apple-reporter

Example

Initialization

const AppleReporter = require('apple-reporter');

const reporter = new AppleReporter({
    userid: 'gy',
    password: 'sucks'
});

Usage

function getFinanceReport() {
    return reporter.Finance.getStatus().then((status) => {
        return reporter.Finance.getReport({
            vendorNumber: 123456,
            regionCode: 'US',
            reportType: 'Financial',
            fiscalYear: '2015',
            fiscalPeriod: '02'
        })
        .then((report) => {
            // do stuff with report...
        })
        .catch((err) => {
            // uh-oh!
            console.error('Unable to get Finance report!');

            throw err;
        });
    }, (err) => {
        console.error('Finance is down!');

        throw err;
    });
}

API

Refer to Apple's documentation for the specifications of each call. All Sales-based functions are under reporter.Sales, all Finance-based functions are under reporter.Finance

Constructor

  • options (object)
    • baseUrl: Base endpoint for the API (defaults to https://reportingitc-reporter.apple.com/reportservice)
    • financeUrl: Finance endpoint URL (defaults to /finance/v1)
    • mode: Either Normal or Robot.XML (defaults to Robot.XML)
    • password: iTunes Connect account password
    • salesUrl: Sales endpoint URL (defaults to /sales/v1)
    • userid: iTunes Connect account user ID
    • version: The API version (defaults to 1.0)

General

Sales

Finance

Keywords

FAQs

Package last updated on 23 Jan 2017

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