apigee-x-module
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -24,2 +24,3 @@ export interface ApigeeApiProducts { | ||
error?: Error; | ||
attributes: KeyValue[]; | ||
} | ||
@@ -139,2 +140,3 @@ export interface ApigeeAppCredential { | ||
access?: string; | ||
attributes: KeyValue[]; | ||
} | ||
@@ -157,2 +159,3 @@ export interface Developers { | ||
error?: Error; | ||
attributes: KeyValue[]; | ||
} | ||
@@ -181,2 +184,3 @@ export interface Error { | ||
error?: Error; | ||
attributes: KeyValue[]; | ||
} | ||
@@ -183,0 +187,0 @@ export interface AppCredential { |
@@ -304,8 +304,10 @@ import FormData from 'form-data'; | ||
apiProduct.imageUrl = attr.value; | ||
if (attr.name === "spec") | ||
else if (attr.name === "spec") | ||
apiProduct.specUrl = attr.value; | ||
if (attr.name === "access") | ||
else if (attr.name === "access") | ||
apiProduct.access = attr.value; | ||
if (attr.name === "type") | ||
else if (attr.name === "type") | ||
apiProduct.type = attr.value; | ||
// Also add to general attributes collection | ||
apiProduct.attributes[attr.name] = attr.value; | ||
} | ||
@@ -312,0 +314,0 @@ products.apiProducts.push(apiProduct); |
{ | ||
"name": "apigee-x-module", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Module for integrating with the Apigee X platform for TS/JS developer portal integrations.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/tyayers/apigee-x-module", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
72734
1509