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

@adobe/aio-lib-console

Package Overview
Dependencies
Maintainers
67
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adobe/aio-lib-console

Adobe I/O Lib for the Developer Console

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
67
Created
Source

Version Downloads/week Build Status License Greenkeeper badge Codecov Coverage

Adobe I/O Console SDK Library

Installing

$ npm install @adobe/aio-lib-console

Usage

  1. Initialize the SDK
const sdk = require('@adobe/aio-lib-console')

async function sdkTest() {
  //initialize sdk
  const client = await sdk.init('x-api-key', '<valid auth token>')
}
  1. Call methods using the initialized SDK
const sdk = require('@adobe/aio-lib-console')

async function sdkTest() {
  // initialize sdk
  const client = await sdk.init('x-api-key', '<valid auth token>')

  // call methods
  try {
    // get... something
    const result = await client.getOrganizations()
    console.log(result)

  } catch (e) {
    console.error(e)
  }
}

Classes

CoreConsoleAPI

This class provides methods to call your CoreConsoleAPI APIs. Before calling any method, initialize the instance by calling the init method on it with valid values for apiKey and accessToken

Functions

init(accessToken, apiKey, [env])Promise.<CoreConsoleAPI>

Returns a Promise that resolves with a new CoreConsoleAPI object

Typedefs

ProjectDetails : object
WorkspaceDetails : object
IntegrationDetails : object

CoreConsoleAPI

This class provides methods to call your CoreConsoleAPI APIs. Before calling any method, initialize the instance by calling the init method on it with valid values for apiKey and accessToken

Kind: global class

coreConsoleAPI.init(accessToken, apiKey, [env]) ⇒ Promise.<CoreConsoleAPI>

Initializes a CoreConsoleAPI object and returns it

Kind: instance method of CoreConsoleAPI
Returns: Promise.<CoreConsoleAPI> - a CoreConsoleAPI object

ParamTypeDefaultDescription
accessTokenstringthe access token corresponding to an integration or user token
apiKeystringapi key to access the Developer Console
[env]string"prod"the server environment ('prod' or 'stage')

coreConsoleAPI.getProjectsForOrg(organizationId) ⇒ Promise.<Response>

Get all Projects in an Organization

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID

coreConsoleAPI.createProject(organizationId, projectDetails) ⇒ Promise.<Response>

Create a new Project in an Organization

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectDetailsProjectDetailsProject details including name, title, who_created, description and type

coreConsoleAPI.getWorkspacesForProject(organizationId, projectId) ⇒ Promise.<Response>

Get all Workspaces for a Project

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID

coreConsoleAPI.deleteProject(organizationId, projectId) ⇒ Promise.<Response>

Delete a Project

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID

coreConsoleAPI.editProject(organizationId, projectId, projectDetails) ⇒ Promise.<Response>

Edit a Project

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
projectDetailsProjectDetailsProject details including name, title, who_created, description and type

coreConsoleAPI.getProject(organizationId, projectId) ⇒ Promise.<Response>

Get a Project by ID

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID

coreConsoleAPI.downloadWorkspaceJson(organizationId, projectId, workspaceId) ⇒ Promise.<Response>

Download the Workspace Configuration File (json)

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
workspaceIdstringWorkspace ID

coreConsoleAPI.createWorkspace(organizationId, projectId, workspaceDetails) ⇒ Promise.<Response>

Create a new Workspace

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
workspaceDetailsWorkspaceDetailsWorkspace details including name, title, who_created, description, type and quotaRule

coreConsoleAPI.editWorkspace(organizationId, projectId, workspaceId, workspaceDetails) ⇒ Promise.<Response>

Edit a Workspace

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
workspaceIdstringWorkspace ID
workspaceDetailsWorkspaceDetailsWorkspace details including name, title, who_created, description, type and quotaRule

coreConsoleAPI.getWorkspace(organizationId, projectId, workspaceId) ⇒ Promise.<Response>

Get a Workspace by ID

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
workspaceIdstringWorkspace ID

coreConsoleAPI.deleteWorkspace(organizationId, projectId, workspaceId) ⇒ Promise.<Response>

Delete a Workspace

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
workspaceIdstringWorkspace ID

coreConsoleAPI.getIntegrations(organizationId, projectId, workspaceId) ⇒ Promise.<Response>

Get all Integrations for a Workspace

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
workspaceIdstringWorkspace ID

coreConsoleAPI.createEnterpriseIntegration(organizationId, projectId, workspaceId, certificate, name, description) ⇒ Promise.<Response>

Create a new Enterprise Integration

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
workspaceIdstringWorkspace ID
certificateBufferCertificate
namestringIntegration name
descriptionstringIntegration description

coreConsoleAPI.createAdobeIdIntegration(organizationId, projectId, workspaceId, integrationDetails) ⇒ Promise.<Response>

Create a new AdobeID Integration

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
workspaceIdstringWorkspace ID
integrationDetailsIntegrationDetailsIntegration details

coreConsoleAPI.subscribeIntegrationToServices(organizationId, projectId, workspaceId, integrationType, integrationId, serviceInfo) ⇒ Promise.<Response>

Subscribe an Integration to Services

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
workspaceIdstringWorkspace ID
integrationTypestringIntegration type (adobeid, analytics or entp)
integrationIdstringIntegration ID
serviceInfoobjectInformation about the services like SDK Codes, licenseConfig and roles

coreConsoleAPI.getWorkspaceForIntegration(organizationId, integrationId) ⇒ Promise.<Response>

Get the Workspace for an Integration

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
integrationIdstringIntegration ID

coreConsoleAPI.getProjectForWorkspace(organizationId, workspaceId) ⇒ Promise.<Response>

Get the Project of a Workspace

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
workspaceIdstringWorkspace ID

coreConsoleAPI.deleteIntegration(organizationId, projectId, workspaceId, integrationType, integrationId) ⇒ Promise.<Response>

Delete an Integration

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

ParamTypeDescription
organizationIdstringOrganization ID
projectIdstringProject ID
workspaceIdstringWorkspace ID
integrationTypestringIntegration type (adobeid, analytics or entp)
integrationIdstringIntegration ID

coreConsoleAPI.getOrganizations() ⇒ Promise.<Response>

Get all Organizations

Kind: instance method of CoreConsoleAPI
Returns: Promise.<Response> - the response

init(accessToken, apiKey, [env]) ⇒ Promise.<CoreConsoleAPI>

Returns a Promise that resolves with a new CoreConsoleAPI object

Kind: global function
Returns: Promise.<CoreConsoleAPI> - a Promise with a CoreConsoleAPI object

ParamTypeDefaultDescription
accessTokenstringthe access token corresponding to an integration or user token
apiKeystringapi key to access the Developer Console
[env]string"prod"the server environment ('prod' or 'stage')

ProjectDetails : object

Kind: global typedef
Properties

NameTypeDescription
namestringName
titlestringTitle
[who_created]stringCreator name
descriptionstringDescription
typestringType

WorkspaceDetails : object

Kind: global typedef
Properties

NameTypeDescription
namestringName
[title]stringTitle
[who_created]stringCreator name
descriptionstringDescription
[type]stringType
[quotaRule]stringquotaRule

IntegrationDetails : object

Kind: global typedef
Properties

NameTypeDescription
namestringName
descriptionstringDescription
[platform]stringPlatform
[urlScheme]stringurl scheme
[redirectUriList]objectList of redirect URIs
[defaultRedirectUri]stringDefault redirect URI
[domain]stringdomain
[approvalInfo]objectapprovalInfo

Debug Logs

LOG_LEVEL=debug <your_call_here>

Prepend the LOG_LEVEL environment variable and debug value to the call that invokes your function, on the command line. This should output a lot of debug data for your SDK calls.

Contributing

Contributions are welcome! Read the Contributing Guide for more information.

Licensing

This project is licensed under the Apache V2 License. See LICENSE for more information.

FAQs

Package last updated on 07 May 2020

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