Comparing version 3.1.3 to 3.1.4
{ | ||
"name": "akkeris", | ||
"version": "3.1.3", | ||
"version": "3.1.4", | ||
"description": "Akkeris CLI", | ||
@@ -5,0 +5,0 @@ "main": "aka.js", |
@@ -84,3 +84,3 @@ "use strict" | ||
task.end('error'); | ||
return appkit.terminal.error(new Error('The specified filter type was invalid, the supported options are: jwt')) | ||
return appkit.terminal.error(new Error('The specified filter type was invalid, the supported options are: jwt, cors')) | ||
} | ||
@@ -121,3 +121,3 @@ await appkit.api.post(JSON.stringify({"type":args.type, "name":args.FILTER_NAME, options, description:args.description, organization:args.org}),`/filters`) | ||
task.end('error'); | ||
return appkit.terminal.error(new Error('The specified filter type was invalid, the supported options are: jwt')) | ||
return appkit.terminal.error(new Error('The specified filter type was invalid, the supported options are: jwt, cors')) | ||
} | ||
@@ -308,3 +308,3 @@ await appkit.api.put(JSON.stringify({"type":args.type, "name":args.FILTER_NAME, options, description:args.description, organization:args.org}),`/filters/${args.FILTER_NAME}`) | ||
'string':true, | ||
'demand':true, | ||
'demand':false, | ||
'description':'The description used for the http filter.' | ||
@@ -315,3 +315,3 @@ }, | ||
'string':true, | ||
'demand':true, | ||
'demand':false, | ||
'description':'The name of the organization who owns this filter.' | ||
@@ -322,3 +322,3 @@ }, | ||
'choices':['jwt','cors'], | ||
'demand':true, | ||
'demand':false, | ||
'description':'The type of http filter.' | ||
@@ -325,0 +325,0 @@ }, |
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
263011