Skip to content

Commit

Permalink
feat: add "NON_EMPTY_DEFAULT" FieldBehavior (#1554)
Browse files Browse the repository at this point in the history
Co-authored-by: Takashi Matsuo <tmatsuo@google.com>
  • Loading branch information
yoshi-automation and Takashi Matsuo authored Jul 16, 2021
1 parent 86584a8 commit 8d9c503
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion dev/protos/protos.json
Original file line number Diff line number Diff line change
Expand Up @@ -4103,7 +4103,8 @@
"OUTPUT_ONLY": 3,
"INPUT_ONLY": 4,
"IMMUTABLE": 5,
"UNORDERED_LIST": 6
"UNORDERED_LIST": 6,
"NON_EMPTY_DEFAULT": 7
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion synth.metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/nodejs-firestore.git",
"sha": "26d480b4a7fbeb26e99bb23d7aa1fbd4802b738a"
"sha": "7cebee27f6ffe0a58b03ec8010dc50abee51944b"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion types/protos/firestore_admin_v1_proto_api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1686,7 +1686,7 @@ export namespace google {

/** FieldBehavior enum. */
type FieldBehavior =
"FIELD_BEHAVIOR_UNSPECIFIED"| "OPTIONAL"| "REQUIRED"| "OUTPUT_ONLY"| "INPUT_ONLY"| "IMMUTABLE"| "UNORDERED_LIST";
"FIELD_BEHAVIOR_UNSPECIFIED"| "OPTIONAL"| "REQUIRED"| "OUTPUT_ONLY"| "INPUT_ONLY"| "IMMUTABLE"| "UNORDERED_LIST"| "NON_EMPTY_DEFAULT";

/** Properties of a ResourceDescriptor. */
interface IResourceDescriptor {
Expand Down
2 changes: 1 addition & 1 deletion types/protos/firestore_v1_proto_api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6369,7 +6369,7 @@ export namespace google {

/** FieldBehavior enum. */
type FieldBehavior =
"FIELD_BEHAVIOR_UNSPECIFIED"| "OPTIONAL"| "REQUIRED"| "OUTPUT_ONLY"| "INPUT_ONLY"| "IMMUTABLE"| "UNORDERED_LIST";
"FIELD_BEHAVIOR_UNSPECIFIED"| "OPTIONAL"| "REQUIRED"| "OUTPUT_ONLY"| "INPUT_ONLY"| "IMMUTABLE"| "UNORDERED_LIST"| "NON_EMPTY_DEFAULT";

/** Properties of a ResourceDescriptor. */
interface IResourceDescriptor {
Expand Down
2 changes: 1 addition & 1 deletion types/protos/firestore_v1beta1_proto_api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6063,7 +6063,7 @@ export namespace google {

/** FieldBehavior enum. */
type FieldBehavior =
"FIELD_BEHAVIOR_UNSPECIFIED"| "OPTIONAL"| "REQUIRED"| "OUTPUT_ONLY"| "INPUT_ONLY"| "IMMUTABLE"| "UNORDERED_LIST";
"FIELD_BEHAVIOR_UNSPECIFIED"| "OPTIONAL"| "REQUIRED"| "OUTPUT_ONLY"| "INPUT_ONLY"| "IMMUTABLE"| "UNORDERED_LIST"| "NON_EMPTY_DEFAULT";

/** Properties of a ResourceDescriptor. */
interface IResourceDescriptor {
Expand Down

0 comments on commit 8d9c503

Please # to comment.