diff --git a/packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/session.proto b/packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/session.proto index 2688d6c4b79..225813a34b4 100644 --- a/packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/session.proto +++ b/packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/session.proto @@ -20,6 +20,7 @@ package google.cloud.dialogflow.v2; import "google/api/annotations.proto"; import "google/api/client.proto"; import "google/api/field_behavior.proto"; +import "google/api/resource.proto"; import "google/cloud/dialogflow/v2/audio_config.proto"; import "google/cloud/dialogflow/v2/context.proto"; import "google/cloud/dialogflow/v2/intent.proto"; @@ -36,6 +37,11 @@ option java_multiple_files = true; option java_outer_classname = "SessionProto"; option java_package = "com.google.cloud.dialogflow.v2"; option objc_class_prefix = "DF"; +option (google.api.resource_definition) = { + type: "dialogflow.googleapis.com/Session" + pattern: "projects/{project}/locations/{location}/agent/sessions/{session}" + pattern: "projects/{project}/agent/sessions/{session}" +}; // A session represents an interaction with a user. You retrieve user input // and pass it to the [DetectIntent][google.cloud.dialogflow.v2.Sessions.DetectIntent] (or @@ -66,6 +72,8 @@ service Sessions { } } +// ============================================================================ +// Requests and responses for custom methods. // The request to detect user's intent. message DetectIntentRequest { // Required. The name of the session this query is sent to. Format: @@ -73,7 +81,12 @@ message DetectIntentRequest { // caller to choose an appropriate session ID. It can be a random number or // some type of user identifier (preferably hashed). The length of the session // ID must not exceed 36 bytes. - string session = 1 [(google.api.field_behavior) = REQUIRED]; + string session = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "dialogflow.googleapis.com/Session" + } + ]; // Optional. The parameters of this query. QueryParameters query_params = 2 [(google.api.field_behavior) = OPTIONAL]; diff --git a/packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2beta1/session.proto b/packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2beta1/session.proto index 1fec1af14cd..c558e7ad7ae 100644 --- a/packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2beta1/session.proto +++ b/packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2beta1/session.proto @@ -38,6 +38,11 @@ option java_multiple_files = true; option java_outer_classname = "SessionProto"; option java_package = "com.google.cloud.dialogflow.v2beta1"; option objc_class_prefix = "DF"; +option (google.api.resource_definition) = { + type: "dialogflow.googleapis.com/Session" + pattern: "projects/{project}/locations/{location}/agent/sessions/{session}" + pattern: "projects/{project}/agent/sessions/{session}" +}; // A session represents an interaction with a user. You retrieve user input // and pass it to the [DetectIntent][google.cloud.dialogflow.v2beta1.Sessions.DetectIntent] (or @@ -79,6 +84,8 @@ service Sessions { } } +// ============================================================================ +// Requests and responses for custom methods. // The request to detect user's intent. message DetectIntentRequest { // Required. The name of the session this query is sent to. Format: diff --git a/packages/google-cloud-dialogflow/protos/protos.json b/packages/google-cloud-dialogflow/protos/protos.json index e3c55098296..38148058064 100644 --- a/packages/google-cloud-dialogflow/protos/protos.json +++ b/packages/google-cloud-dialogflow/protos/protos.json @@ -14,7 +14,9 @@ "java_multiple_files": true, "java_outer_classname": "SessionProto", "java_package": "com.google.cloud.dialogflow.v2", - "objc_class_prefix": "DF" + "objc_class_prefix": "DF", + "(google.api.resource_definition).type": "dialogflow.googleapis.com/Session", + "(google.api.resource_definition).pattern": "projects/{project}/agent/sessions/{session}" }, "nested": { "Agents": { @@ -2778,7 +2780,8 @@ "type": "string", "id": 1, "options": { - "(google.api.field_behavior)": "REQUIRED" + "(google.api.field_behavior)": "REQUIRED", + "(google.api.resource_reference).type": "dialogflow.googleapis.com/Session" } }, "queryParams": { @@ -3178,7 +3181,9 @@ "java_multiple_files": true, "java_outer_classname": "SessionProto", "java_package": "com.google.cloud.dialogflow.v2beta1", - "objc_class_prefix": "DF" + "objc_class_prefix": "DF", + "(google.api.resource_definition).type": "dialogflow.googleapis.com/Session", + "(google.api.resource_definition).pattern": "projects/{project}/agent/sessions/{session}" }, "nested": { "Agents": { diff --git a/packages/google-cloud-dialogflow/src/v2/doc/google/cloud/dialogflow/v2/doc_session.js b/packages/google-cloud-dialogflow/src/v2/doc/google/cloud/dialogflow/v2/doc_session.js index f3e53566811..8ec5d3187d9 100644 --- a/packages/google-cloud-dialogflow/src/v2/doc/google/cloud/dialogflow/v2/doc_session.js +++ b/packages/google-cloud-dialogflow/src/v2/doc/google/cloud/dialogflow/v2/doc_session.js @@ -16,6 +16,8 @@ // to be loaded as the JS file. /** + * ============================================================================ + * Requests and responses for custom methods. * The request to detect user's intent. * * @property {string} session diff --git a/packages/google-cloud-dialogflow/src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_session.js b/packages/google-cloud-dialogflow/src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_session.js index 9f535dc7f7d..3dd5b68356b 100644 --- a/packages/google-cloud-dialogflow/src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_session.js +++ b/packages/google-cloud-dialogflow/src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_session.js @@ -16,6 +16,8 @@ // to be loaded as the JS file. /** + * ============================================================================ + * Requests and responses for custom methods. * The request to detect user's intent. * * @property {string} session diff --git a/packages/google-cloud-dialogflow/synth.metadata b/packages/google-cloud-dialogflow/synth.metadata index fb128e2a03a..175592bffc7 100644 --- a/packages/google-cloud-dialogflow/synth.metadata +++ b/packages/google-cloud-dialogflow/synth.metadata @@ -1,20 +1,20 @@ { - "updateTime": "2020-01-28T12:19:29.182379Z", + "updateTime": "2020-02-05T12:19:42.270336Z", "sources": [ { "generator": { "name": "artman", - "version": "0.44.3", - "dockerImage": "googleapis/artman@sha256:62b8b29acaae54b06a4183aa772e65b106e92d4bc466eb4db07953ab78bdb90c" + "version": "0.44.4", + "dockerImage": "googleapis/artman@sha256:19e945954fc960a4bdfee6cb34695898ab21a8cf0bac063ee39b91f00a1faec8" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "8e981acfd9b97ea2f312f11bbaa7b6c16e412dea", - "internalRef": "291821782", - "log": "8e981acfd9b97ea2f312f11bbaa7b6c16e412dea\nBeta launch for PersonDetection and FaceDetection features.\n\nPiperOrigin-RevId: 291821782\n\n994e067fae3b21e195f7da932b08fff806d70b5d\nasset: add annotations to v1p2beta1\n\nPiperOrigin-RevId: 291815259\n\n244e1d2c89346ca2e0701b39e65552330d68545a\nAdd Playable Locations service\n\nPiperOrigin-RevId: 291806349\n\n909f8f67963daf45dd88d020877fb9029b76788d\nasset: add annotations to v1beta2\n\nPiperOrigin-RevId: 291805301\n\n3c39a1d6e23c1ef63c7fba4019c25e76c40dfe19\nKMS: add file-level message for CryptoKeyPath, it is defined in gapic yaml but not\nin proto files.\n\nPiperOrigin-RevId: 291420695\n\nc6f3f350b8387f8d1b85ed4506f30187ebaaddc3\ncontaineranalysis: update v1beta1 and bazel build with annotations\n\nPiperOrigin-RevId: 291401900\n\n92887d74b44e4e636252b7b8477d0d2570cd82db\nfix: fix the location of grpc config file.\n\nPiperOrigin-RevId: 291396015\n\n" + "sha": "a8ed9d921fdddc61d8467bfd7c1668f0ad90435c", + "internalRef": "293257997", + "log": "a8ed9d921fdddc61d8467bfd7c1668f0ad90435c\nfix: set Ruby module name for OrgPolicy\n\nPiperOrigin-RevId: 293257997\n\n6c7d28509bd8315de8af0889688ee20099594269\nredis: v1beta1 add UpgradeInstance and connect_mode field to Instance\n\nPiperOrigin-RevId: 293242878\n\nae0abed4fcb4c21f5cb67a82349a049524c4ef68\nredis: v1 add connect_mode field to Instance\n\nPiperOrigin-RevId: 293241914\n\n3f7a0d29b28ee9365771da2b66edf7fa2b4e9c56\nAdds service config definition for bigqueryreservation v1beta1\n\nPiperOrigin-RevId: 293234418\n\n0c88168d5ed6fe353a8cf8cbdc6bf084f6bb66a5\naddition of BUILD & configuration for accessapproval v1\n\nPiperOrigin-RevId: 293219198\n\n39bedc2e30f4778ce81193f6ba1fec56107bcfc4\naccessapproval: v1 publish protos\n\nPiperOrigin-RevId: 293167048\n\n69d9945330a5721cd679f17331a78850e2618226\nAdd file-level `Session` resource definition\n\nPiperOrigin-RevId: 293080182\n\nf6a1a6b417f39694275ca286110bc3c1ca4db0dc\nAdd file-level `Session` resource definition\n\nPiperOrigin-RevId: 293080178\n\n29d40b78e3dc1579b0b209463fbcb76e5767f72a\nExpose managedidentities/v1beta1/ API for client library usage.\n\nPiperOrigin-RevId: 292979741\n\na22129a1fb6e18056d576dfb7717aef74b63734a\nExpose managedidentities/v1/ API for client library usage.\n\nPiperOrigin-RevId: 292968186\n\nb5cbe4a4ba64ab19e6627573ff52057a1657773d\nSecurityCenter v1p1beta1: move file-level option on top to workaround protobuf.js bug.\n\nPiperOrigin-RevId: 292647187\n\nb224b317bf20c6a4fbc5030b4a969c3147f27ad3\nAdds API definitions for bigqueryreservation v1beta1.\n\nPiperOrigin-RevId: 292634722\n\nc1468702f9b17e20dd59007c0804a089b83197d2\nSynchronize new proto/yaml changes.\n\nPiperOrigin-RevId: 292626173\n\nffdfa4f55ab2f0afc11d0eb68f125ccbd5e404bd\nvision: v1p3beta1 publish annotations and retry config\n\nPiperOrigin-RevId: 292605599\n\n78f61482cd028fc1d9892aa5d89d768666a954cd\nvision: v1p1beta1 publish annotations and retry config\n\nPiperOrigin-RevId: 292605125\n\n60bb5a294a604fd1778c7ec87b265d13a7106171\nvision: v1p2beta1 publish annotations and retry config\n\nPiperOrigin-RevId: 292604980\n\n3bcf7aa79d45eb9ec29ab9036e9359ea325a7fc3\nvision: v1p4beta1 publish annotations and retry config\n\nPiperOrigin-RevId: 292604656\n\n2717b8a1c762b26911b45ecc2e4ee01d98401b28\nFix dataproc artman client library generation.\n\nPiperOrigin-RevId: 292555664\n\n7ac66d9be8a7d7de4f13566d8663978c9ee9dcd7\nAdd Dataproc Autoscaling API to V1.\n\nPiperOrigin-RevId: 292450564\n\n5d932b2c1be3a6ef487d094e3cf5c0673d0241dd\n- Improve documentation\n- Add a client_id field to StreamingPullRequest\n\nPiperOrigin-RevId: 292434036\n\neaff9fa8edec3e914995ce832b087039c5417ea7\nmonitoring: v3 publish annotations and client retry config\n\nPiperOrigin-RevId: 292425288\n\n70958bab8c5353870d31a23fb2c40305b050d3fe\nBigQuery Storage Read API v1 clients.\n\nPiperOrigin-RevId: 292407644\n\n7a15e7fe78ff4b6d5c9606a3264559e5bde341d1\nUpdate backend proto for Google Cloud Endpoints\n\nPiperOrigin-RevId: 292391607\n\n3ca2c014e24eb5111c8e7248b1e1eb833977c83d\nbazel: Add --flaky_test_attempts=3 argument to prevent CI failures caused by flaky tests\n\nPiperOrigin-RevId: 292382559\n\n9933347c1f677e81e19a844c2ef95bfceaf694fe\nbazel:Integrate latest protoc-java-resource-names-plugin changes (fix for PyYAML dependency in bazel rules)\n\nPiperOrigin-RevId: 292376626\n\nb835ab9d2f62c88561392aa26074c0b849fb0bd3\nasset: v1p2beta1 add client config annotations\n\n* remove unintentionally exposed RPCs\n* remove messages relevant to removed RPCs\n\nPiperOrigin-RevId: 292369593\n\nc1246a29e22b0f98e800a536b5b0da2d933a55f2\nUpdating v1 protos with the latest inline documentation (in comments) and config options. Also adding a per-service .yaml file.\n\nPiperOrigin-RevId: 292310790\n\nb491d07cadaae7cde5608321f913e5ca1459b32d\nRevert accidental local_repository change\n\nPiperOrigin-RevId: 292245373\n\naf3400a8cb6110025198b59a0f7d018ae3cda700\nUpdate gapic-generator dependency (prebuilt PHP binary support).\n\nPiperOrigin-RevId: 292243997\n\n341fd5690fae36f36cf626ef048fbcf4bbe7cee6\ngrafeas: v1 add resource_definition for the grafeas.io/Project and change references for Project.\n\nPiperOrigin-RevId: 292221998\n\n42e915ec2ece1cd37a590fbcd10aa2c0fb0e5b06\nUpdate the gapic-generator, protoc-java-resource-name-plugin and protoc-docs-plugin to the latest commit.\n\nPiperOrigin-RevId: 292182368\n\nf035f47250675d31492a09f4a7586cfa395520a7\nFix grafeas build and update build.sh script to include gerafeas.\n\nPiperOrigin-RevId: 292168753\n\n26ccb214b7bc4a716032a6266bcb0a9ca55d6dbb\nasset: v1p1beta1 add client config annotations and retry config\n\nPiperOrigin-RevId: 292154210\n\n974ee5c0b5d03e81a50dafcedf41e0efebb5b749\nasset: v1beta1 add client config annotations\n\nPiperOrigin-RevId: 292152573\n\ncf3b61102ed5f36b827bc82ec39be09525f018c8\n Fix to protos for v1p1beta1 release of Cloud Security Command Center\n\nPiperOrigin-RevId: 292034635\n\n4e1cfaa7c0fede9e65d64213ca3da1b1255816c0\nUpdate the public proto to support UTF-8 encoded id for CatalogService API, increase the ListCatalogItems deadline to 300s and some minor documentation change\n\nPiperOrigin-RevId: 292030970\n\n9c483584f8fd5a1b862ae07973f4cc7bb3e46648\nasset: add annotations to v1p1beta1\n\nPiperOrigin-RevId: 292009868\n\ne19209fac29731d0baf6d9ac23da1164f7bdca24\nAdd the google.rpc.context.AttributeContext message to the open source\ndirectories.\n\nPiperOrigin-RevId: 291999930\n\nae5662960573f279502bf98a108a35ba1175e782\noslogin API: move file level option on top of the file to avoid protobuf.js bug.\n\nPiperOrigin-RevId: 291990506\n\neba3897fff7c49ed85d3c47fc96fe96e47f6f684\nAdd cc_proto_library and cc_grpc_library targets for Spanner and IAM protos.\n\nPiperOrigin-RevId: 291988651\n\n" } }, { @@ -46,577 +46,5 @@ "config": "google/cloud/dialogflow/v2beta1/artman_dialogflow_v2beta1.yaml" } } - ], - "newFiles": [ - { - "path": ".cloud-repo-tools.json" - }, - { - "path": ".eslintignore" - }, - { - "path": ".eslintrc.yml" - }, - { - "path": ".github/ISSUE_TEMPLATE/bug_report.md" - }, - { - "path": ".github/ISSUE_TEMPLATE/feature_request.md" - }, - { - "path": ".github/ISSUE_TEMPLATE/support_request.md" - }, - { - "path": ".github/PULL_REQUEST_TEMPLATE.md" - }, - { - "path": ".github/release-please.yml" - }, - { - "path": ".gitignore" - }, - { - "path": ".jsdoc.js" - }, - { - "path": ".kokoro/.gitattributes" - }, - { - "path": ".kokoro/common.cfg" - }, - { - "path": ".kokoro/continuous/node10/common.cfg" - }, - { - "path": ".kokoro/continuous/node10/docs.cfg" - }, - { - "path": ".kokoro/continuous/node10/lint.cfg" - }, - { - "path": ".kokoro/continuous/node10/samples-test.cfg" - }, - { - "path": ".kokoro/continuous/node10/system-test.cfg" - }, - { - "path": ".kokoro/continuous/node10/test.cfg" - }, - { - "path": ".kokoro/continuous/node12/common.cfg" - }, - { - "path": ".kokoro/continuous/node12/test.cfg" - }, - { - "path": ".kokoro/continuous/node8/common.cfg" - }, - { - "path": ".kokoro/continuous/node8/test.cfg" - }, - { - "path": ".kokoro/docs.sh" - }, - { - "path": ".kokoro/lint.sh" - }, - { - "path": ".kokoro/presubmit/node10/common.cfg" - }, - { - "path": ".kokoro/presubmit/node10/docs.cfg" - }, - { - "path": ".kokoro/presubmit/node10/lint.cfg" - }, - { - "path": ".kokoro/presubmit/node10/samples-test.cfg" - }, - { - "path": ".kokoro/presubmit/node10/system-test.cfg" - }, - { - "path": ".kokoro/presubmit/node10/test.cfg" - }, - { - "path": ".kokoro/presubmit/node12/common.cfg" - }, - { - "path": ".kokoro/presubmit/node12/test.cfg" - }, - { - "path": ".kokoro/presubmit/node8/common.cfg" - }, - { - "path": ".kokoro/presubmit/node8/test.cfg" - }, - { - "path": ".kokoro/presubmit/windows/common.cfg" - }, - { - "path": ".kokoro/presubmit/windows/test.cfg" - }, - { - "path": ".kokoro/publish.sh" - }, - { - "path": ".kokoro/release/common.cfg" - }, - { - "path": ".kokoro/release/docs.cfg" - }, - { - "path": ".kokoro/release/docs.sh" - }, - { - "path": ".kokoro/release/publish.cfg" - }, - { - "path": ".kokoro/samples-test.sh" - }, - { - "path": ".kokoro/system-test.sh" - }, - { - "path": ".kokoro/test.bat" - }, - { - "path": ".kokoro/test.sh" - }, - { - "path": ".kokoro/trampoline.sh" - }, - { - "path": ".nycrc" - }, - { - "path": ".prettierignore" - }, - { - "path": ".prettierrc" - }, - { - "path": ".repo-metadata.json" - }, - { - "path": "CHANGELOG.md" - }, - { - "path": "CODE_OF_CONDUCT.md" - }, - { - "path": "CONTRIBUTING.md" - }, - { - "path": "LICENSE" - }, - { - "path": "README.md" - }, - { - "path": "codecov.yaml" - }, - { - "path": "linkinator.config.json" - }, - { - "path": "package.json" - }, - { - "path": "protos/google/cloud/dialogflow/v2/agent.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2/audio_config.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2/context.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2/entity_type.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2/intent.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2/session.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2/session_entity_type.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2/webhook.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/agent.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/audio_config.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/context.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/document.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/entity_type.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/gcs.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/intent.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/knowledge_base.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/session.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/session_entity_type.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/validation_result.proto" - }, - { - "path": "protos/google/cloud/dialogflow/v2beta1/webhook.proto" - }, - { - "path": "protos/protos.d.ts" - }, - { - "path": "protos/protos.js" - }, - { - "path": "protos/protos.json" - }, - { - "path": "renovate.json" - }, - { - "path": "samples/.eslintrc.yml" - }, - { - "path": "samples/.gitignore" - }, - { - "path": "samples/README.md" - }, - { - "path": "samples/detect-intent-TTS-response.v2.js" - }, - { - "path": "samples/detect-intent-sentiment.v2.js" - }, - { - "path": "samples/detect.js" - }, - { - "path": "samples/detect.v2beta1.js" - }, - { - "path": "samples/package.json" - }, - { - "path": "samples/quickstart.js" - }, - { - "path": "samples/resource.js" - }, - { - "path": "samples/resources/230pm.wav" - }, - { - "path": "samples/resources/RoomReservation.zip" - }, - { - "path": "samples/resources/book_a_room.wav" - }, - { - "path": "samples/resources/half_an_hour.wav" - }, - { - "path": "samples/resources/mountain_view.wav" - }, - { - "path": "samples/resources/output.wav" - }, - { - "path": "samples/resources/today.wav" - }, - { - "path": "samples/resources/two_people.wav" - }, - { - "path": "samples/system-test/detect.test.js" - }, - { - "path": "samples/system-test/detect.v2beta1.test.js" - }, - { - "path": "samples/system-test/resource.test.js" - }, - { - "path": "src/browser.js" - }, - { - "path": "src/index.js" - }, - { - "path": "src/v2/agents_client.js" - }, - { - "path": "src/v2/agents_client_config.json" - }, - { - "path": "src/v2/agents_proto_list.json" - }, - { - "path": "src/v2/contexts_client.js" - }, - { - "path": "src/v2/contexts_client_config.json" - }, - { - "path": "src/v2/contexts_proto_list.json" - }, - { - "path": "src/v2/doc/google/cloud/dialogflow/v2/doc_agent.js" - }, - { - "path": "src/v2/doc/google/cloud/dialogflow/v2/doc_audio_config.js" - }, - { - "path": "src/v2/doc/google/cloud/dialogflow/v2/doc_context.js" - }, - { - "path": "src/v2/doc/google/cloud/dialogflow/v2/doc_entity_type.js" - }, - { - "path": "src/v2/doc/google/cloud/dialogflow/v2/doc_intent.js" - }, - { - "path": "src/v2/doc/google/cloud/dialogflow/v2/doc_session.js" - }, - { - "path": "src/v2/doc/google/cloud/dialogflow/v2/doc_session_entity_type.js" - }, - { - "path": "src/v2/doc/google/longrunning/doc_operations.js" - }, - { - "path": "src/v2/doc/google/protobuf/doc_any.js" - }, - { - "path": "src/v2/doc/google/protobuf/doc_duration.js" - }, - { - "path": "src/v2/doc/google/protobuf/doc_empty.js" - }, - { - "path": "src/v2/doc/google/protobuf/doc_field_mask.js" - }, - { - "path": "src/v2/doc/google/protobuf/doc_struct.js" - }, - { - "path": "src/v2/doc/google/rpc/doc_status.js" - }, - { - "path": "src/v2/doc/google/type/doc_latlng.js" - }, - { - "path": "src/v2/entity_types_client.js" - }, - { - "path": "src/v2/entity_types_client_config.json" - }, - { - "path": "src/v2/entity_types_proto_list.json" - }, - { - "path": "src/v2/index.js" - }, - { - "path": "src/v2/intents_client.js" - }, - { - "path": "src/v2/intents_client_config.json" - }, - { - "path": "src/v2/intents_proto_list.json" - }, - { - "path": "src/v2/session_entity_types_client.js" - }, - { - "path": "src/v2/session_entity_types_client_config.json" - }, - { - "path": "src/v2/session_entity_types_proto_list.json" - }, - { - "path": "src/v2/sessions_client.js" - }, - { - "path": "src/v2/sessions_client_config.json" - }, - { - "path": "src/v2/sessions_proto_list.json" - }, - { - "path": "src/v2beta1/agents_client.js" - }, - { - "path": "src/v2beta1/agents_client_config.json" - }, - { - "path": "src/v2beta1/agents_proto_list.json" - }, - { - "path": "src/v2beta1/contexts_client.js" - }, - { - "path": "src/v2beta1/contexts_client_config.json" - }, - { - "path": "src/v2beta1/contexts_proto_list.json" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_agent.js" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_audio_config.js" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_context.js" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_document.js" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_entity_type.js" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_gcs.js" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_intent.js" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_knowledge_base.js" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_session.js" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_session_entity_type.js" - }, - { - "path": "src/v2beta1/doc/google/cloud/dialogflow/v2beta1/doc_validation_result.js" - }, - { - "path": "src/v2beta1/doc/google/longrunning/doc_operations.js" - }, - { - "path": "src/v2beta1/doc/google/protobuf/doc_any.js" - }, - { - "path": "src/v2beta1/doc/google/protobuf/doc_duration.js" - }, - { - "path": "src/v2beta1/doc/google/protobuf/doc_empty.js" - }, - { - "path": "src/v2beta1/doc/google/protobuf/doc_field_mask.js" - }, - { - "path": "src/v2beta1/doc/google/protobuf/doc_struct.js" - }, - { - "path": "src/v2beta1/doc/google/rpc/doc_status.js" - }, - { - "path": "src/v2beta1/doc/google/type/doc_latlng.js" - }, - { - "path": "src/v2beta1/documents_client.js" - }, - { - "path": "src/v2beta1/documents_client_config.json" - }, - { - "path": "src/v2beta1/documents_proto_list.json" - }, - { - "path": "src/v2beta1/entity_types_client.js" - }, - { - "path": "src/v2beta1/entity_types_client_config.json" - }, - { - "path": "src/v2beta1/entity_types_proto_list.json" - }, - { - "path": "src/v2beta1/index.js" - }, - { - "path": "src/v2beta1/intents_client.js" - }, - { - "path": "src/v2beta1/intents_client_config.json" - }, - { - "path": "src/v2beta1/intents_proto_list.json" - }, - { - "path": "src/v2beta1/knowledge_bases_client.js" - }, - { - "path": "src/v2beta1/knowledge_bases_client_config.json" - }, - { - "path": "src/v2beta1/knowledge_bases_proto_list.json" - }, - { - "path": "src/v2beta1/session_entity_types_client.js" - }, - { - "path": "src/v2beta1/session_entity_types_client_config.json" - }, - { - "path": "src/v2beta1/session_entity_types_proto_list.json" - }, - { - "path": "src/v2beta1/sessions_client.js" - }, - { - "path": "src/v2beta1/sessions_client_config.json" - }, - { - "path": "src/v2beta1/sessions_proto_list.json" - }, - { - "path": "synth.metadata" - }, - { - "path": "synth.py" - }, - { - "path": "system-test/.eslintrc.yml" - }, - { - "path": "system-test/no-test.js" - }, - { - "path": "test/gapic-v2.js" - }, - { - "path": "test/gapic-v2beta1.js" - }, - { - "path": "webpack.config.js" - } ] } \ No newline at end of file