google-apis-firestore_v1 0.94.0 → 0.96.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 598cfc9a43ebc1b39f726c34e6708f71346e64ebb3a9a39d25226df6b5a63b6a
|
|
4
|
+
data.tar.gz: ae17dd1694fd0303162084281003e1d65792fc2bee7defc5976173ab80561bd6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6fd79fafa859ae0db556243c3f536f7dda421198512fbbe39e0130a67d40109cae245df73c02bcb04cecd28ce90e3ee3a2be9d8f1caab60ea102df0df82f0c1d
|
|
7
|
+
data.tar.gz: e1586604bd1084b4d3ab49b9731dceb43f7548e8a12dabf6a525c000ffc5efbf6f6778474e70eb48c5ef8bf582a15717ea7fb96176fdbf4ba381ca909e1a7299
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-firestore_v1
|
|
2
2
|
|
|
3
|
+
### v0.96.0 (2026-06-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260608
|
|
6
|
+
|
|
7
|
+
### v0.95.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260529
|
|
10
|
+
* Regenerated using generator version 0.19.0
|
|
11
|
+
|
|
3
12
|
### v0.94.0 (2026-05-17)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260507
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/firestore) may provide guid
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -830,6 +830,14 @@ module Google
|
|
|
830
830
|
class ExecutePipelineRequest
|
|
831
831
|
include Google::Apis::Core::Hashable
|
|
832
832
|
|
|
833
|
+
# Optional. Automatically commits the transaction after the pipeline has been
|
|
834
|
+
# executed. Only permitted in combination with `transaction` or `new_transaction`
|
|
835
|
+
# .
|
|
836
|
+
# Corresponds to the JSON property `autoCommitTransaction`
|
|
837
|
+
# @return [Boolean]
|
|
838
|
+
attr_accessor :auto_commit_transaction
|
|
839
|
+
alias_method :auto_commit_transaction?, :auto_commit_transaction
|
|
840
|
+
|
|
833
841
|
# Options for creating a new transaction.
|
|
834
842
|
# Corresponds to the JSON property `newTransaction`
|
|
835
843
|
# @return [Google::Apis::FirestoreV1::TransactionOptions]
|
|
@@ -864,6 +872,7 @@ module Google
|
|
|
864
872
|
|
|
865
873
|
# Update properties of this object
|
|
866
874
|
def update!(**args)
|
|
875
|
+
@auto_commit_transaction = args[:auto_commit_transaction] if args.key?(:auto_commit_transaction)
|
|
867
876
|
@new_transaction = args[:new_transaction] if args.key?(:new_transaction)
|
|
868
877
|
@read_time = args[:read_time] if args.key?(:read_time)
|
|
869
878
|
@structured_pipeline = args[:structured_pipeline] if args.key?(:structured_pipeline)
|
|
@@ -3076,7 +3085,7 @@ module Google
|
|
|
3076
3085
|
include Google::Apis::Core::Hashable
|
|
3077
3086
|
|
|
3078
3087
|
# Optional. Disables geoJSON indexing for the field. By default, geoJSON points
|
|
3079
|
-
# are indexed.
|
|
3088
|
+
# are indexed.
|
|
3080
3089
|
# Corresponds to the JSON property `geoJsonIndexingDisabled`
|
|
3081
3090
|
# @return [Boolean]
|
|
3082
3091
|
attr_accessor :geo_json_indexing_disabled
|
|
@@ -3107,8 +3116,9 @@ module Google
|
|
|
3107
3116
|
attr_accessor :text_language
|
|
3108
3117
|
|
|
3109
3118
|
# Optional. The field in the document that specifies which language to use for
|
|
3110
|
-
# that specific document.
|
|
3111
|
-
# language
|
|
3119
|
+
# that specific document. For indexes with MONGODB_COMPATIBLE_API ApiScope: if
|
|
3120
|
+
# unspecified, the language is taken from the "language" field if it exists or
|
|
3121
|
+
# from `text_language` if it does not.
|
|
3112
3122
|
# Corresponds to the JSON property `textLanguageOverrideFieldPath`
|
|
3113
3123
|
# @return [String]
|
|
3114
3124
|
attr_accessor :text_language_override_field_path
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module FirestoreV1
|
|
18
18
|
# Version of the google-apis-firestore_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.96.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260608"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1084,6 +1084,7 @@ module Google
|
|
|
1084
1084
|
class ExecutePipelineRequest
|
|
1085
1085
|
# @private
|
|
1086
1086
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1087
|
+
property :auto_commit_transaction, as: 'autoCommitTransaction'
|
|
1087
1088
|
property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1::TransactionOptions, decorator: Google::Apis::FirestoreV1::TransactionOptions::Representation
|
|
1088
1089
|
|
|
1089
1090
|
property :read_time, as: 'readTime'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-firestore_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.96.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.96.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|