This repository was archived by the owner on Jan 6, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ branch = True
5
5
show_missing = True
6
6
omit =
7
7
google/cloud/dialogflowcx/__init__.py
8
+ google/cloud/dialogflowcx/gapic_version.py
8
9
exclude_lines =
9
10
# Re-enable the standard pragma
10
11
pragma: NO COVER
Original file line number Diff line number Diff line change 13
13
# See the License for the specific language governing permissions and
14
14
# limitations under the License.
15
15
#
16
- from google .cloud .dialogflowcx import gapic_version as package_version
16
+ from google .cloud .dialogflowcx_v3 import gapic_version as package_version
17
17
18
18
__version__ = package_version .__version__
19
19
Original file line number Diff line number Diff line change @@ -377,9 +377,13 @@ class DataFormat(proto.Enum):
377
377
Unspecified format.
378
378
BLOB (1):
379
379
Agent content will be exported as raw bytes.
380
+ JSON_PACKAGE (4):
381
+ Agent content will be exported in JSON
382
+ Package format.
380
383
"""
381
384
DATA_FORMAT_UNSPECIFIED = 0
382
385
BLOB = 1
386
+ JSON_PACKAGE = 4
383
387
384
388
name : str = proto .Field (
385
389
proto .STRING ,
Original file line number Diff line number Diff line change 13
13
# See the License for the specific language governing permissions and
14
14
# limitations under the License.
15
15
#
16
- from google .cloud .dialogflowcx import gapic_version as package_version
16
+ from google .cloud .dialogflowcx_v3beta1 import gapic_version as package_version
17
17
18
18
__version__ = package_version .__version__
19
19
You can’t perform that action at this time.
0 commit comments