Skip to content

Commit 4c94f15

Browse files
chore: update protos.js (#440)
This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/041f5df7-f5d3-4b2a-9ede-0752bf41c185/targets
1 parent 16842c1 commit 4c94f15

4 files changed

Lines changed: 37 additions & 5 deletions

File tree

packages/google-cloud-videointelligence/protos/protos.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18129,6 +18129,9 @@ export namespace google {
1812918129

1813018130
/** FieldDescriptorProto options */
1813118131
options?: (google.protobuf.IFieldOptions|null);
18132+
18133+
/** FieldDescriptorProto proto3Optional */
18134+
proto3Optional?: (boolean|null);
1813218135
}
1813318136

1813418137
/** Represents a FieldDescriptorProto. */
@@ -18170,6 +18173,9 @@ export namespace google {
1817018173
/** FieldDescriptorProto options. */
1817118174
public options?: (google.protobuf.IFieldOptions|null);
1817218175

18176+
/** FieldDescriptorProto proto3Optional. */
18177+
public proto3Optional: boolean;
18178+
1817318179
/**
1817418180
* Creates a new FieldDescriptorProto instance using the specified properties.
1817518181
* @param [properties] Properties to set

packages/google-cloud-videointelligence/protos/protos.js

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45840,6 +45840,7 @@
4584045840
* @property {number|null} [oneofIndex] FieldDescriptorProto oneofIndex
4584145841
* @property {string|null} [jsonName] FieldDescriptorProto jsonName
4584245842
* @property {google.protobuf.IFieldOptions|null} [options] FieldDescriptorProto options
45843+
* @property {boolean|null} [proto3Optional] FieldDescriptorProto proto3Optional
4584345844
*/
4584445845

4584545846
/**
@@ -45937,6 +45938,14 @@
4593745938
*/
4593845939
FieldDescriptorProto.prototype.options = null;
4593945940

45941+
/**
45942+
* FieldDescriptorProto proto3Optional.
45943+
* @member {boolean} proto3Optional
45944+
* @memberof google.protobuf.FieldDescriptorProto
45945+
* @instance
45946+
*/
45947+
FieldDescriptorProto.prototype.proto3Optional = false;
45948+
4594045949
/**
4594145950
* Creates a new FieldDescriptorProto instance using the specified properties.
4594245951
* @function create
@@ -45981,6 +45990,8 @@
4598145990
writer.uint32(/* id 9, wireType 0 =*/72).int32(message.oneofIndex);
4598245991
if (message.jsonName != null && Object.hasOwnProperty.call(message, "jsonName"))
4598345992
writer.uint32(/* id 10, wireType 2 =*/82).string(message.jsonName);
45993+
if (message.proto3Optional != null && Object.hasOwnProperty.call(message, "proto3Optional"))
45994+
writer.uint32(/* id 17, wireType 0 =*/136).bool(message.proto3Optional);
4598445995
return writer;
4598545996
};
4598645997

@@ -46045,6 +46056,9 @@
4604546056
case 8:
4604646057
message.options = $root.google.protobuf.FieldOptions.decode(reader, reader.uint32());
4604746058
break;
46059+
case 17:
46060+
message.proto3Optional = reader.bool();
46061+
break;
4604846062
default:
4604946063
reader.skipType(tag & 7);
4605046064
break;
@@ -46139,6 +46153,9 @@
4613946153
if (error)
4614046154
return "options." + error;
4614146155
}
46156+
if (message.proto3Optional != null && message.hasOwnProperty("proto3Optional"))
46157+
if (typeof message.proto3Optional !== "boolean")
46158+
return "proto3Optional: boolean expected";
4614246159
return null;
4614346160
};
4614446161

@@ -46261,6 +46278,8 @@
4626146278
throw TypeError(".google.protobuf.FieldDescriptorProto.options: object expected");
4626246279
message.options = $root.google.protobuf.FieldOptions.fromObject(object.options);
4626346280
}
46281+
if (object.proto3Optional != null)
46282+
message.proto3Optional = Boolean(object.proto3Optional);
4626446283
return message;
4626546284
};
4626646285

@@ -46288,6 +46307,7 @@
4628846307
object.options = null;
4628946308
object.oneofIndex = 0;
4629046309
object.jsonName = "";
46310+
object.proto3Optional = false;
4629146311
}
4629246312
if (message.name != null && message.hasOwnProperty("name"))
4629346313
object.name = message.name;
@@ -46309,6 +46329,8 @@
4630946329
object.oneofIndex = message.oneofIndex;
4631046330
if (message.jsonName != null && message.hasOwnProperty("jsonName"))
4631146331
object.jsonName = message.jsonName;
46332+
if (message.proto3Optional != null && message.hasOwnProperty("proto3Optional"))
46333+
object.proto3Optional = message.proto3Optional;
4631246334
return object;
4631346335
};
4631446336

@@ -48100,7 +48122,7 @@
4810048122
* @memberof google.protobuf.FileOptions
4810148123
* @instance
4810248124
*/
48103-
FileOptions.prototype.ccEnableArenas = false;
48125+
FileOptions.prototype.ccEnableArenas = true;
4810448126

4810548127
/**
4810648128
* FileOptions objcClassPrefix.
@@ -48549,7 +48571,7 @@
4854948571
object.javaGenerateEqualsAndHash = false;
4855048572
object.deprecated = false;
4855148573
object.javaStringCheckUtf8 = false;
48552-
object.ccEnableArenas = false;
48574+
object.ccEnableArenas = true;
4855348575
object.objcClassPrefix = "";
4855448576
object.csharpNamespace = "";
4855548577
object.swiftPrefix = "";

packages/google-cloud-videointelligence/protos/protos.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3620,6 +3620,10 @@
36203620
"options": {
36213621
"type": "FieldOptions",
36223622
"id": 8
3623+
},
3624+
"proto3Optional": {
3625+
"type": "bool",
3626+
"id": 17
36233627
}
36243628
},
36253629
"nested": {
@@ -3855,7 +3859,7 @@
38553859
"type": "bool",
38563860
"id": 31,
38573861
"options": {
3858-
"default": false
3862+
"default": true
38593863
}
38603864
},
38613865
"objcClassPrefix": {

packages/google-cloud-videointelligence/synth.metadata

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
{
44
"git": {
55
"name": ".",
6-
"remote": "git@github.com:googleapis/nodejs-video-intelligence.git",
7-
"sha": "920a31d31edb068cd70db427698cd3b7b8620da5"
6+
"remote": "https://github.com/googleapis/nodejs-video-intelligence.git",
7+
"sha": "fc4d36c4d112ed75d5c38dd6cad76073e9234253"
88
}
99
},
1010
{

0 commit comments

Comments
 (0)