0.0.13 • Published 7 years ago

@ionic/pro-api-javascript-client v0.0.13

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Ionic Pro API Client

A simple JavaScript client for interacting with the Ionic Pro API.

Note: this is meant for API access, not end-user apps. For most users, the Pro Client is actually what you want.

Alpha Notice

This is still in active development, and is far from comprehensive at the moment.

Available API Resources

  • Apps
  • Snapshots (JS Builds)
  • Packages (Native Builds)
  • Users
  • Deploy channels
  • Organizations
  • Teams
  • View Testers

Installation

npm install --save @ionic/pro-api-javascript-client

Usage

import { Environment, ProClient, User } from 'pro-client';

...

// Instantiate the client
let cfg: Environment = { debug: true }
let client: ProClient = new ProClient(cfg);

...

// Login to Ionic Pro
client.login("username@test.com", "myAwesomePassword123").then((user: User) => {
  console.log("Logged in", user);
});

...

// List apps you have access to
client.resource.apps.list().then((res: any) => {
  console.log("My apps:", res);
}, (err: any) => {
  console.error("Error getting apps:", err);
});

...

// List native builds for an app
let appId: string = "abcd1234";
let filters = { platform: "iOS" }; // Optional

client.resource.package.list(appId, filters).then((res: any) => {
  console.log("My native builds:", res);
}, (err: any) => {
  console.error("Error getting builds:", err);
});
0.0.13

7 years ago

0.0.12

7 years ago

0.0.11

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago