diff --git a/v1/Application.cfc b/v1/Application.cfc
index 491144e..ca0d4fc 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.118"; /*$ git config --global --unset user.password*/
+ variables.framework.docs.APIVersion="0.119"; /*$ git config --global --unset user.password*/
variables.framework.globalHeaders = structNew();
diff --git a/v1/resources/instance.cfc b/v1/resources/instance.cfc
index a70cd35..e84eb6b 100644
--- a/v1/resources/instance.cfc
+++ b/v1/resources/instance.cfc
@@ -179,7 +179,65 @@
AND 1=0
order by so.svc_operation_id
+
+
+
+
+
+
+ select
+ p.svc_operation_cfs_param
+ ,p.label
+ ,p.descr
+ ,r.svc_id as ref_svc_id
+ ,r.svc as ref_svc
+ ,r.code as ref_code
+ from svc_operation_cfs_param p
+ join svc_operation o on (p.svc_operation_id=o.svc_operation_id)
+ join svc on (o.svc_id=svc.svc_id)
+ join svc r on (p.ref_svc_id=r.svc_id)
+ where svc.svc_id=
+ AND o.operation='create'
+
+
+
+
+
+
+
+
+
+
+
+ select e.display_name, e.is_auxiliary
+ from instance e
+ where e.instance_uid =
+
+
+
+
+
+
+
+
+
+
@@ -285,6 +343,7 @@
+