diff --git a/v1/Application.cfc b/v1/Application.cfc
index 8192f6d..c4d38cf 100644
--- a/v1/Application.cfc
+++ b/v1/Application.cfc
@@ -51,7 +51,7 @@
//variables.framework.docs={};
variables.framework.docs.APIName="Deck API";
- variables.framework.docs.APIVersion="0.054";
+ variables.framework.docs.APIVersion="0.055";
variables.framework.globalHeaders = structNew();
variables.framework.globalHeaders["Access-Control-Expose-Headers"] = "Location";
diff --git a/v1/resources/instance.cfc b/v1/resources/instance.cfc
index 1955852..8bf73b4 100644
--- a/v1/resources/instance.cfc
+++ b/v1/resources/instance.cfc
@@ -24,6 +24,7 @@
e.service_id
e.descr
e.specification_item_id
+ e.is_auxiliary
to_char(e.dt_created, 'YYYY-MM-DD"T"HH24:MI:SS.FF3TZHTZM') as instance_config_dt_created
to_char(e.dt_updated, 'YYYY-MM-DD"T"HH24:MI:SS.FF3TZHTZM') as instance_config_dt_updated
d.contract_id
diff --git a/v1/resources/instance_ls.cfc b/v1/resources/instance_ls.cfc
index 781bf18..9f2de6f 100644
--- a/v1/resources/instance_ls.cfc
+++ b/v1/resources/instance_ls.cfc
@@ -32,6 +32,7 @@
"is_deleted"={prefix="inr", type="string"},
"suspended"={prefix="inr", type="string"},
"is_test"={prefix="inr", type="boolean"},
+ "is_auxiliary"={prefix="inr", type="boolean"},
"explained_status"={prefix="inr", type="string"},
"version"={prefix="inr", type="integer"}
}
@@ -89,6 +90,7 @@
e.display_name
e.service_id
e.specification_item_id
+ e.is_auxiliary
d.contract_id
i.specification_id
s.specification
diff --git a/v1/resources/instance_operation_cfs_param_ls.cfc b/v1/resources/instance_operation_cfs_param_ls.cfc
index 6396398..72a4f71 100644
--- a/v1/resources/instance_operation_cfs_param_ls.cfc
+++ b/v1/resources/instance_operation_cfs_param_ls.cfc
@@ -203,7 +203,9 @@
,sop.maxlength
,sop.minlength
,sop.regex
- ,sop.unique_scope
+ ,sop.unique_scope
+ ,sop.maxvalue
+ ,sop.minvalue
from svc_operation_cfs_param sop
where sop.svc_operation_cfs_param_id=
@@ -231,6 +233,13 @@
+
+
+
+
+
+
+
diff --git a/v1/resources/svc_operation.cfc b/v1/resources/svc_operation.cfc
index 585b917..4caf9e0 100644
--- a/v1/resources/svc_operation.cfc
+++ b/v1/resources/svc_operation.cfc
@@ -42,6 +42,10 @@
p.default_value
p.regex
p.unique_scope
+ p.maxlength
+ p.minlength
+ p.maxvalue
+ p.minvalue
p.descr
p.man
(