From 8262ade42319d8a44d7dc798c3084db7db2afcea Mon Sep 17 00:00:00 2001 From: msyu Date: Tue, 1 Jul 2025 18:19:34 +0300 Subject: [PATCH] 119 instance dependencies --- v1/Application.cfc | 2 +- v1/resources/instance.cfc | 59 +++++++++++++++++++++ v1/resources/instance_operation_default.cfc | 2 +- 3 files changed, 61 insertions(+), 2 deletions(-) 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 @@ +