npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@google-cloud/discoveryengine

v1.7.0

Published

Discovery Engine API client for Node.js

Downloads

23,677

Readme

Discovery Engine API: Node.js Client

release level npm version

Discovery Engine API client for Node.js

A comprehensive list of changes in each version may be found in the CHANGELOG.

Read more about the client libraries for Cloud APIs, including the older Google APIs Client Libraries, in Client Libraries Explained.

Table of contents:

Quickstart

Before you begin

  1. [Select or create a Cloud Platform project][projects].
  2. [Enable billing for your project][billing].
  3. [Enable the Discovery Engine API API][enable_api].
  4. [Set up authentication with a service account][auth] so you can access the API from your local workstation.

Installing the client library

npm install @google-cloud/discoveryengine

Using the client library

/**
 * This snippet has been automatically generated and should be regarded as a code template only.
 * It will require modifications to work.
 * It may require correct/in-range values for request initialization.
 * TODO(developer): Uncomment these variables before running the sample.
 */
/**
 *  Required. The parent branch resource name, such as
 *  `projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}`.
 *  Use `default_branch` as the branch ID, to list documents under the default
 *  branch.
 *  If the caller does not have permission to list Documents  s under this
 *  branch, regardless of whether or not this branch exists, a
 *  PERMISSION_DENIED error is returned.
 */
// const parent = 'abc123'
/**
 *  Maximum number of Document google.cloud.discoveryengine.v1beta.Document s
 *  to return. If unspecified, defaults to 100. The maximum allowed value is
 *  1000. Values above 1000 will be coerced to 1000.
 *  If this field is negative, an INVALID_ARGUMENT error is returned.
 */
// const pageSize = 1234
/**
 *  A page token
 *  ListDocumentsResponse.next_page_token google.cloud.discoveryengine.v1beta.ListDocumentsResponse.next_page_token,
 *  received from a previous
 *  DocumentService.ListDocuments google.cloud.discoveryengine.v1beta.DocumentService.ListDocuments
 *  call. Provide this to retrieve the subsequent page.
 *  When paginating, all other parameters provided to
 *  DocumentService.ListDocuments google.cloud.discoveryengine.v1beta.DocumentService.ListDocuments
 *  must match the call that provided the page token. Otherwise, an
 *  INVALID_ARGUMENT error is returned.
 */
// const pageToken = 'abc123'

// Imports the Discoveryengine library
const {DocumentServiceClient} =
  require('@google-cloud/discoveryengine').v1beta;

// Instantiates a client
const discoveryengineClient = new DocumentServiceClient();

async function callListDocuments() {
  // Construct request
  const request = {
    parent,
  };

  // Run request
  const iterable = await discoveryengineClient.listDocumentsAsync(request);
  for await (const response of iterable) {
    console.log(response);
  }
}

callListDocuments();

Samples

Samples are in the samples/ directory. Each sample's README.md has instructions for running its sample.

| Sample | Source Code | Try it | | --------------------------- | --------------------------------- | ------ | | Completion_service.complete_query | source code | ![Open in Cloud Shell][shell_img] | | Completion_service.import_suggestion_deny_list_entries | source code | ![Open in Cloud Shell][shell_img] | | Completion_service.purge_suggestion_deny_list_entries | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.converse_conversation | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.create_conversation | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.delete_conversation | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.get_conversation | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.list_conversations | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.update_conversation | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.create_data_store | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.delete_data_store | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.get_data_store | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.list_data_stores | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.update_data_store | source code | ![Open in Cloud Shell][shell_img] | | Document_service.create_document | source code | ![Open in Cloud Shell][shell_img] | | Document_service.delete_document | source code | ![Open in Cloud Shell][shell_img] | | Document_service.get_document | source code | ![Open in Cloud Shell][shell_img] | | Document_service.import_documents | source code | ![Open in Cloud Shell][shell_img] | | Document_service.list_documents | source code | ![Open in Cloud Shell][shell_img] | | Document_service.purge_documents | source code | ![Open in Cloud Shell][shell_img] | | Document_service.update_document | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.create_engine | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.delete_engine | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.get_engine | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.list_engines | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.update_engine | source code | ![Open in Cloud Shell][shell_img] | | Recommendation_service.recommend | source code | ![Open in Cloud Shell][shell_img] | | Schema_service.create_schema | source code | ![Open in Cloud Shell][shell_img] | | Schema_service.delete_schema | source code | ![Open in Cloud Shell][shell_img] | | Schema_service.get_schema | source code | ![Open in Cloud Shell][shell_img] | | Schema_service.list_schemas | source code | ![Open in Cloud Shell][shell_img] | | Schema_service.update_schema | source code | ![Open in Cloud Shell][shell_img] | | Search_service.search | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.batch_create_target_sites | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.batch_verify_target_sites | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.create_target_site | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.delete_target_site | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.disable_advanced_site_search | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.enable_advanced_site_search | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.fetch_domain_verification_status | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.get_site_search_engine | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.get_target_site | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.list_target_sites | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.recrawl_uris | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.update_target_site | source code | ![Open in Cloud Shell][shell_img] | | User_event_service.collect_user_event | source code | ![Open in Cloud Shell][shell_img] | | User_event_service.import_user_events | source code | ![Open in Cloud Shell][shell_img] | | User_event_service.write_user_event | source code | ![Open in Cloud Shell][shell_img] | | Acl_config_service.get_acl_config | source code | ![Open in Cloud Shell][shell_img] | | Acl_config_service.update_acl_config | source code | ![Open in Cloud Shell][shell_img] | | Chunk_service.get_chunk | source code | ![Open in Cloud Shell][shell_img] | | Chunk_service.list_chunks | source code | ![Open in Cloud Shell][shell_img] | | Completion_service.complete_query | source code | ![Open in Cloud Shell][shell_img] | | Completion_service.import_suggestion_deny_list_entries | source code | ![Open in Cloud Shell][shell_img] | | Completion_service.purge_suggestion_deny_list_entries | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.answer_query | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.converse_conversation | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.create_conversation | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.create_session | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.delete_conversation | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.delete_session | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.get_answer | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.get_conversation | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.get_session | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.list_conversations | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.list_sessions | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.update_conversation | source code | ![Open in Cloud Shell][shell_img] | | Conversational_search_service.update_session | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.create_data_store | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.delete_data_store | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.get_data_store | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.get_document_processing_config | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.list_data_stores | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.update_data_store | source code | ![Open in Cloud Shell][shell_img] | | Data_store_service.update_document_processing_config | source code | ![Open in Cloud Shell][shell_img] | | Document_service.create_document | source code | ![Open in Cloud Shell][shell_img] | | Document_service.delete_document | source code | ![Open in Cloud Shell][shell_img] | | Document_service.get_document | source code | ![Open in Cloud Shell][shell_img] | | Document_service.get_processed_document | source code | ![Open in Cloud Shell][shell_img] | | Document_service.import_documents | source code | ![Open in Cloud Shell][shell_img] | | Document_service.list_documents | source code | ![Open in Cloud Shell][shell_img] | | Document_service.purge_documents | source code | ![Open in Cloud Shell][shell_img] | | Document_service.update_document | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.create_engine | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.delete_engine | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.get_engine | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.list_engines | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.pause_engine | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.resume_engine | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.tune_engine | source code | ![Open in Cloud Shell][shell_img] | | Engine_service.update_engine | source code | ![Open in Cloud Shell][shell_img] | | Estimate_billing_service.estimate_data_size | source code | ![Open in Cloud Shell][shell_img] | | Grounded_generation_service.check_grounding | source code | ![Open in Cloud Shell][shell_img] | | Project_service.get_project | source code | ![Open in Cloud Shell][shell_img] | | Project_service.provision_project | source code | ![Open in Cloud Shell][shell_img] | | Project_service.report_consent_change | source code | ![Open in Cloud Shell][shell_img] | | Rank_service.rank | source code | ![Open in Cloud Shell][shell_img] | | Recommendation_service.recommend | source code | ![Open in Cloud Shell][shell_img] | | Schema_service.create_schema | source code | ![Open in Cloud Shell][shell_img] | | Schema_service.delete_schema | source code | ![Open in Cloud Shell][shell_img] | | Schema_service.get_schema | source code | ![Open in Cloud Shell][shell_img] | | Schema_service.list_schemas | source code | ![Open in Cloud Shell][shell_img] | | Schema_service.update_schema | source code | ![Open in Cloud Shell][shell_img] | | Search_service.search | source code | ![Open in Cloud Shell][shell_img] | | Search_tuning_service.train_custom_model | source code | ![Open in Cloud Shell][shell_img] | | Serving_config_service.get_serving_config | source code | ![Open in Cloud Shell][shell_img] | | Serving_config_service.list_serving_configs | source code | ![Open in Cloud Shell][shell_img] | | Serving_config_service.update_serving_config | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.batch_create_target_sites | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_service.batch_verify_target_sites | source code | ![Open in Cloud Shell][shell_img] | | Site_search_engine_serv