Skip to content

Commit

Permalink
🦉 Updates from OwlBot post-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
gcf-owl-bot[bot] committed Jan 6, 2025
1 parent 63c5ed9 commit 401d297
Show file tree
Hide file tree
Showing 170 changed files with 1,032 additions and 210,742 deletions.
4 changes: 2 additions & 2 deletions .jsdoc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2024 Google LLC
// Copyright 2025 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -40,7 +40,7 @@ module.exports = {
includePattern: '\\.js$'
},
templates: {
copyright: 'Copyright 2024 Google LLC',
copyright: 'Copyright 2025 Google LLC',
includeDate: false,
sourceFiles: false,
systemName: '@google-cloud/firestore',
Expand Down
23 changes: 23 additions & 0 deletions dev/protos/admin_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2172,6 +2172,10 @@
"rule": "repeated",
"type": "ClientLibraryDestination",
"id": 2
},
"selectiveGapicGeneration": {
"type": "SelectiveGapicGeneration",
"id": 3
}
}
},
Expand Down Expand Up @@ -2324,6 +2328,10 @@
"restAsyncIoEnabled": {
"type": "bool",
"id": 1
},
"protobufPythonicTypesEnabled": {
"type": "bool",
"id": 2
}
}
}
Expand Down Expand Up @@ -2383,6 +2391,11 @@
"common": {
"type": "CommonLanguageSettings",
"id": 1
},
"renamedServices": {
"keyType": "string",
"type": "string",
"id": 2
}
}
},
Expand Down Expand Up @@ -2444,6 +2457,15 @@
"PACKAGE_MANAGER": 20
}
},
"SelectiveGapicGeneration": {
"fields": {
"methods": {
"rule": "repeated",
"type": "string",
"id": 1
}
}
},
"LaunchStage": {
"values": {
"LAUNCH_STAGE_UNSPECIFIED": 0,
Expand Down Expand Up @@ -3970,6 +3992,7 @@
"java_multiple_files": true,
"java_outer_classname": "OperationsProto",
"java_package": "com.google.longrunning",
"objc_class_prefix": "GLRUN",
"php_namespace": "Google\\LongRunning"
},
"nested": {
Expand Down
66 changes: 66 additions & 0 deletions dev/protos/firestore_admin_v1_proto_api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4770,6 +4770,9 @@ export namespace google {

/** CommonLanguageSettings destinations */
destinations?: (google.api.ClientLibraryDestination[]|null);

/** CommonLanguageSettings selectiveGapicGeneration */
selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
}

/** Represents a CommonLanguageSettings. */
Expand All @@ -4787,6 +4790,9 @@ export namespace google {
/** CommonLanguageSettings destinations. */
public destinations: google.api.ClientLibraryDestination[];

/** CommonLanguageSettings selectiveGapicGeneration. */
public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);

/**
* Creates a CommonLanguageSettings message from a plain object. Also converts values to their respective internal types.
* @param object Plain object
Expand Down Expand Up @@ -5249,6 +5255,9 @@ export namespace google {

/** ExperimentalFeatures restAsyncIoEnabled */
restAsyncIoEnabled?: (boolean|null);

/** ExperimentalFeatures protobufPythonicTypesEnabled */
protobufPythonicTypesEnabled?: (boolean|null);
}

/** Represents an ExperimentalFeatures. */
Expand All @@ -5263,6 +5272,9 @@ export namespace google {
/** ExperimentalFeatures restAsyncIoEnabled. */
public restAsyncIoEnabled: boolean;

/** ExperimentalFeatures protobufPythonicTypesEnabled. */
public protobufPythonicTypesEnabled: boolean;

/**
* Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
* @param object Plain object
Expand Down Expand Up @@ -5472,6 +5484,9 @@ export namespace google {

/** GoSettings common */
common?: (google.api.ICommonLanguageSettings|null);

/** GoSettings renamedServices */
renamedServices?: ({ [k: string]: string }|null);
}

/** Represents a GoSettings. */
Expand All @@ -5486,6 +5501,9 @@ export namespace google {
/** GoSettings common. */
public common?: (google.api.ICommonLanguageSettings|null);

/** GoSettings renamedServices. */
public renamedServices: { [k: string]: string };

/**
* Creates a GoSettings message from a plain object. Also converts values to their respective internal types.
* @param object Plain object
Expand Down Expand Up @@ -5652,6 +5670,54 @@ export namespace google {
type ClientLibraryDestination =
"CLIENT_LIBRARY_DESTINATION_UNSPECIFIED"| "GITHUB"| "PACKAGE_MANAGER";

/** Properties of a SelectiveGapicGeneration. */
interface ISelectiveGapicGeneration {

/** SelectiveGapicGeneration methods */
methods?: (string[]|null);
}

/** Represents a SelectiveGapicGeneration. */
class SelectiveGapicGeneration implements ISelectiveGapicGeneration {

/**
* Constructs a new SelectiveGapicGeneration.
* @param [properties] Properties to set
*/
constructor(properties?: google.api.ISelectiveGapicGeneration);

/** SelectiveGapicGeneration methods. */
public methods: string[];

/**
* Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
* @param object Plain object
* @returns SelectiveGapicGeneration
*/
public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;

/**
* Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
* @param message SelectiveGapicGeneration
* @param [options] Conversion options
* @returns Plain object
*/
public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };

/**
* Converts this SelectiveGapicGeneration to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };

/**
* Gets the default type url for SelectiveGapicGeneration
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns The default type url
*/
public static getTypeUrl(typeUrlPrefix?: string): string;
}

/** LaunchStage enum. */
type LaunchStage =
"LAUNCH_STAGE_UNSPECIFIED"| "UNIMPLEMENTED"| "PRELAUNCH"| "EARLY_ACCESS"| "ALPHA"| "BETA"| "GA"| "DEPRECATED";
Expand Down
Loading

0 comments on commit 401d297

Please sign in to comment.