From 22e2269cc2891d744393c1ec8bcb3cb2ab5b21ff Mon Sep 17 00:00:00 2001 From: Gianmaria Del Monte Date: Mon, 30 Jan 2023 11:24:45 +0100 Subject: [PATCH] add opaque to protocols --- cs3/ocm/core/v1beta1/resources.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cs3/ocm/core/v1beta1/resources.proto b/cs3/ocm/core/v1beta1/resources.proto index 54df1d3..fe467de 100644 --- a/cs3/ocm/core/v1beta1/resources.proto +++ b/cs3/ocm/core/v1beta1/resources.proto @@ -29,6 +29,7 @@ option objc_class_prefix = "COC"; option php_namespace = "Cs3\\Ocm\\Core\\V1Beta1"; import "cs3/sharing/ocm/v1beta1/resources.proto"; +import "cs3/types/v1beta1/types.proto"; // The protocol which is used to establish synchronisation. message Protocol { @@ -37,6 +38,7 @@ message Protocol { WebDAVProtocol webdap_options = 1; WebappProtocol webapp_options = 2; DatatxProtocol datatx_oprions = 3; + cs3.types.v1beta1.Opaque generic_options = 4; } }