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 Apr 2, 2024
1 parent 27cbcc6 commit f90f16a
Show file tree
Hide file tree
Showing 160 changed files with 1,434 additions and 205,490 deletions.
40 changes: 39 additions & 1 deletion dev/protos/admin_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2240,7 +2240,13 @@
"EDITION_99998_TEST_ONLY": 99998,
"EDITION_99999_TEST_ONLY": 99999,
"EDITION_MAX": 2147483647
}
},
"reserved": [
[
900,
900
]
]
},
"FileDescriptorProto": {
"fields": {
Expand Down Expand Up @@ -2955,6 +2961,10 @@
"type": "FeatureSet",
"id": 21
},
"featureSupport": {
"type": "FeatureSupport",
"id": 22
},
"uninterpretedOption": {
"rule": "repeated",
"type": "UninterpretedOption",
Expand Down Expand Up @@ -3024,6 +3034,26 @@
"id": 2
}
}
},
"FeatureSupport": {
"fields": {
"editionIntroduced": {
"type": "Edition",
"id": 1
},
"editionDeprecated": {
"type": "Edition",
"id": 2
},
"deprecationWarning": {
"type": "string",
"id": 3
},
"editionRemoved": {
"type": "Edition",
"id": 4
}
}
}
}
},
Expand Down Expand Up @@ -3403,6 +3433,14 @@
"type": "Edition",
"id": 3
},
"overridableFeatures": {
"type": "FeatureSet",
"id": 4
},
"fixedFeatures": {
"type": "FeatureSet",
"id": 5
},
"features": {
"type": "FeatureSet",
"id": 2
Expand Down
84 changes: 84 additions & 0 deletions dev/protos/firestore_admin_v1_proto_api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6334,6 +6334,9 @@ export namespace google {
/** FieldOptions features */
features?: (google.protobuf.IFeatureSet|null);

/** FieldOptions featureSupport */
featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);

/** FieldOptions uninterpretedOption */
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);

Expand Down Expand Up @@ -6389,6 +6392,9 @@ export namespace google {
/** FieldOptions features. */
public features?: (google.protobuf.IFeatureSet|null);

/** FieldOptions featureSupport. */
public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);

/** FieldOptions uninterpretedOption. */
public uninterpretedOption: google.protobuf.IUninterpretedOption[];

Expand Down Expand Up @@ -6492,6 +6498,72 @@ export namespace google {
*/
public static getTypeUrl(typeUrlPrefix?: string): string;
}

/** Properties of a FeatureSupport. */
interface IFeatureSupport {

/** FeatureSupport editionIntroduced */
editionIntroduced?: (google.protobuf.Edition|null);

/** FeatureSupport editionDeprecated */
editionDeprecated?: (google.protobuf.Edition|null);

/** FeatureSupport deprecationWarning */
deprecationWarning?: (string|null);

/** FeatureSupport editionRemoved */
editionRemoved?: (google.protobuf.Edition|null);
}

/** Represents a FeatureSupport. */
class FeatureSupport implements IFeatureSupport {

/**
* Constructs a new FeatureSupport.
* @param [properties] Properties to set
*/
constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);

/** FeatureSupport editionIntroduced. */
public editionIntroduced: google.protobuf.Edition;

/** FeatureSupport editionDeprecated. */
public editionDeprecated: google.protobuf.Edition;

/** FeatureSupport deprecationWarning. */
public deprecationWarning: string;

/** FeatureSupport editionRemoved. */
public editionRemoved: google.protobuf.Edition;

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

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

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

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

/** Properties of an OneofOptions. */
Expand Down Expand Up @@ -7151,6 +7223,12 @@ export namespace google {
/** FeatureSetEditionDefault edition */
edition?: (google.protobuf.Edition|null);

/** FeatureSetEditionDefault overridableFeatures */
overridableFeatures?: (google.protobuf.IFeatureSet|null);

/** FeatureSetEditionDefault fixedFeatures */
fixedFeatures?: (google.protobuf.IFeatureSet|null);

/** FeatureSetEditionDefault features */
features?: (google.protobuf.IFeatureSet|null);
}
Expand All @@ -7167,6 +7245,12 @@ export namespace google {
/** FeatureSetEditionDefault edition. */
public edition: google.protobuf.Edition;

/** FeatureSetEditionDefault overridableFeatures. */
public overridableFeatures?: (google.protobuf.IFeatureSet|null);

/** FeatureSetEditionDefault fixedFeatures. */
public fixedFeatures?: (google.protobuf.IFeatureSet|null);

/** FeatureSetEditionDefault features. */
public features?: (google.protobuf.IFeatureSet|null);

Expand Down

0 comments on commit f90f16a

Please sign in to comment.