npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@axway/amplify-sdk

v3.2.15

Published

Axway Amplify SDK for Node.js

Downloads

9,953

Readme

Amplify SDK.

The Amplify SDK for Node.js is a set of APIs for authenticating, switching selected organization, creating MBS apps and users, and Titanium SDK support.

Installation

npm i @axway/amplify-sdk --save

Usage

import AmplifySDK from "@axway/amplify-sdk";

// opts can include `env` as well as any Amplify Auth SDK constructor opts
// (see https://www.npmjs.com/package/@axway/amplify-auth-sdk)
const sdk = new AmplifySDK({ ...opts });

Auth

// get all authenticated accounts
const accounts = await sdk.auth.list();

// find an authenticated account by name and refresh access token if needed
let account = await sdk.auth.find('<client_id>:<email>');

// log into a platform account using pkce browser-based flow
account = await sdk.auth.login();
console.log(account.org);
console.log(account.user);

// log into a service account using client secret
account = await sdk.auth.login({ clientSecret: 'mysecret' });

// log into a service account using PEM formatted private key to sign JWT
account = await sdk.auth.login({ secretFile: '/path/to/pem/file' });

// log into a platform account using service account and platform tooling credentials
account = await sdk.auth.login({
	clientSecret: 'mysecret',
	username: '[email protected]',
	password: '123456'
});

// or
account = await sdk.auth.login({
	secretFile: '/path/to/pem/file'
	username: '[email protected]',
	password: '123456'
});

// switch active org, assuming you belong to more than one
await sdk.auth.switchOrg(account, orgGuid);
console.log(`Active org is now ${account.org.name}`);

// log out of specific or all accounts
await sdk.auth.logout({ accounts: [ account ] });
// or: await sdk.auth.logout({ all: true });

// show auth server info
const info = await sdk.auth.serverInfo();
console.log(info);

Selected Team

When calling sdk.auth.find() or sdk.auth.list(), the returned account object(s) will contain a team property that contains the selected team. By default, the selected team will be the default team for the current org. However, you may pass in an object of account hashes to team guids for selecting a specific team.

The idea is you can pass in the entire auth.defaultTeam object from the Axway CLI config:

// no strictly required, but handy if you want to support preprod
const { getAuthConfigEnvSpecifier } = require("@axway/amplify-cli-utils");
const authConfigEnvSpecifier = getAuthConfigEnvSpecifier(sdk.env.name);
const defaultTeams = config.get(`${authConfigEnvSpecifier}.defaultTeam`);

const account = await sdk.auth.find("<client_id>:<email>", defaultTeams);

const accounts = await sdk.auth.list({
  defaultTeams,
  validate: true,
});

Orgs

// get all orgs
const orgs = await sdk.org.list(account);
console.log(orgs);

// find a single org
const org = await sdk.org.find(account, "org name/id/guid");

// get org activity
const { from, to, events } = await sdk.org.activity(account, "org name/id/guid", {
  from: "2021-01-01",
  to: "2021-01-31",
});

// retrieve a list of all available platform environments such
// as 'production' and 'development'
const envs = await sdk.org.getEnvironments(account);

// get org family including child orgs
const family = await sdk.org.family(account, "org name/id/guid");

// rename an org
await sdk.org.rename(account, "org name/id/guid", "new org name");

// get org usage
const usage = await sdk.org.usage(account, "org name/id/guid", {
  from: "2021-01-01",
  to: "2021-01-31",
});

// list all members of an org
const { users } = await sdk.org.member.list(account, "org name/id/guid");

// get info for an org member
const user = await sdk.org.member.find(account, "org name/id/guid", "user guid or email");

// add a user to an org
// see https://platform.axway.com/api-docs.html#operation/org_userCreate
const roles = ["administrator"]; // 'developer', 'read_only', etc...
await sdk.org.member.add(account, "org name/id/guid", "user guid or email", roles);

// change a member's role in an org
await sdk.org.member.update(account, "org name/id/guid", "user guid or email", roles);

// remove a member from an org
await sdk.org.member.remove(account, "org name/id/guid", "user guid or email");

Roles

// get org and team roles
const orgRoles = await sdk.role.list(account);

const teamRoles = await sdk.role.list(account, { team: true });

Team

// get all teams for an org
const { teams } = await sdk.team.list(account, "org name/id/guid");

// get team info
const { team } = await sdk.team.find(account, "org name/id/guid", "team name or guid");

// create a new team
await sdk.team.create(account, "org name/id/guid", "team name", {
  // optional
  desc: "Tiger team",
  default: false,
  tags: ["foo", "bar"],
});

// update team info
const { changes, team } = await sdk.team.update(account, "org name/id/guid", "team name or guid", {
  // optional
  desc: "Tiger team",
  default: false,
  tags: ["foo", "bar"],
});

// remove a team
await sdk.team.remove(account, "org name/id/guid", "team name or guid");

// list all members of a team
const { users } = await sdk.team.member.list(account, "org name/id/guid", "team name or guid");

// get info for an org member
const user = await sdk.team.member.find(account, "org name/id/guid", "team name or guid", "user guid or email");

// add a user to an org
// see https://platform.axway.com/api-docs.html#operation/team_userAdd
const roles = ["administrator"]; // 'developer', 'read_only', etc...
await sdk.team.member.add(account, "org name/id/guid", "team name or guid", "user guid or email", roles);

// change a member's role in a team
await sdk.team.member.update(account, "org name/id/guid", "team name or guid", "user guid or email", roles);

// remove a member from an org
await sdk.team.member.remove(account, "org name/id/guid", "team name or guid", "user guid or email");

User

// find a user
const user = await sdk.user.find(account, "org name/id/guid", "user guid or email");

// get user activity
const activity = await sdk.user.activity(account, {
  from: "2021-01-01",
  to: "2021-01-31",
});

// update user info
const { changes, user } = await sdk.user.update(account, {
  firstname: "Elite",
  lastname: "Coder",
  phone: "555-1212",
});

Account Object

Account objects contain the user info, organization info, and authentication tokens.

account: {
	auth {
		authenticator: 'PKCE',
		baseUrl: 'https://login.axway.com',
		clientId: 'amplify-cli',
		env: {
			name: 'prod',
			baseUrl: 'https://login.axway.com',
			redirectLoginSuccess: 'https://platform.axway.com/'
		},
		expires: { access: 1587685009628, refresh: 1587700615628 },
		realm: 'Broker',
		tokens: {
			access_token: '<SNIP>',
			expires_in: 1800,
			refresh_expires_in: 17406,
			refresh_token: '<SNIP>',
			token_type: 'bearer',
			id_token: '<SNIP>',
			'not-before-policy': 1571719187,
			session_state: '<SNIP>',
			scope: 'openid'
		}
	},
	hash: 'amplify-cli:abcdef1234567890',
	name: 'amplify-cli:[email protected]',
	org: {
		guid: '<GUID>',
		id: 12345,
		name: 'Example Org'
	},
	orgs: [
		{ /* org */ },
		{ /* org */ }
	],
	user: {
		axwayId:      '<SNIP>',
		email:        '',
		firstName:    '',
		guid:         '',
		lastName:     '',
		organization: '',
		is2FAEnabled: true
	},
	sid: '<SNIP>'
}

Legal

This project is open source under the Apache Public License v2 and is developed by Axway, Inc and the community. Please read the LICENSE file included in this distribution for more information.