Skip to content

Commit 66917a1

Browse files
committed
export developerapps on the org
1 parent 3fb3474 commit 66917a1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/edge.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// library of functions for Apigee Edge.
55
//
66
// created: Mon Jun 6 17:32:20 2016
7-
// last saved: <2017-May-17 18:22:25>
7+
// last saved: <2017-May-17 18:50:31>
88

99
(function (){
1010
var path = require('path'),
@@ -63,6 +63,7 @@
6363
this.caches = new Cache(conn);
6464
this.kvms = new Kvm(conn);
6565
this.developers = new Developer(conn);
66+
this.developerapps = new DeveloperApp(conn);
6667
this.sharedflows = new SharedFlow(conn);
6768
this.products = new ApiProduct(conn);
6869
this.appcredentials = new AppCredential(conn);
@@ -837,7 +838,7 @@
837838
attributes : prodAttributes,
838839
approvalType : options.approvalType || "manual",
839840
displayName : options.productName,
840-
environments : options.envs,
841+
environments : options.environments || options.envs,
841842
scopes : options.scopes
842843
};
843844

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apigee-edge-js",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"description": "The nodejs library for the administration API for Apigee Edge.",
55
"main" : "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)