google-apis-firestore_v1beta1 0.18.0 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bbc43668b176d2af19ca27e547080f4a94e9f22a5d25b10938fd372fb96738bf
4
- data.tar.gz: 1b6b528bbe39f3c4b6f8df7c7019ede8fe05205ae3e62a896bbdd2f378cea178
3
+ metadata.gz: 59768085136e6cdf0d94df0ad866ca0fb7fafebcc3c31d06ab389e41922b7d80
4
+ data.tar.gz: 07435cd9c22dd8810902bb93f17ce5bd82f89be41f6457424ac8c11119caeb95
5
5
  SHA512:
6
- metadata.gz: b8a39369f2873eee690aba815704990e0ee233a140925f686ce1bf124c2f537425239c5438ec07f175a771ce5bcd66cdf7957760d2604ce95a0c51e6f0e51145
7
- data.tar.gz: 28d39c0d5929b072631299b8503150469f59a3913dc851ab05cf924e2c9d655eae5649b8a7d88f28140287986dce49a48158dca2ee757281327f8b3875a1283b
6
+ metadata.gz: 4a56257b0051f85fb17883a694c76452d695b37313d15c331e36799d99c555ae8a6c301ce7c6e19ccf1dc4973f95542419c0ee559d03991d51913f3bfe62a030
7
+ data.tar.gz: c28c1c420d0077588e4b79b4767fccdd6e21164159d1322eefb65cf7b2e64a7a0557afbca59376982026c020654e0dc76d3373a740b8108aa5f312b85bfd96a1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-firestore_v1beta1
2
2
 
3
+ ### v0.19.0 (2022-08-21)
4
+
5
+ * Regenerated from discovery document revision 20220808
6
+ * Regenerated using generator version 0.9.0
7
+
3
8
  ### v0.18.0 (2022-06-30)
4
9
 
5
10
  * Regenerated using generator version 0.8.0
@@ -1857,16 +1857,19 @@ module Google
1857
1857
  # @return [Fixnum]
1858
1858
  attr_accessor :offset
1859
1859
 
1860
- # The order to apply to the query results. Firestore guarantees a stable
1861
- # ordering through the following rules: * Any field required to appear in `
1862
- # order_by`, that is not already specified in `order_by`, is appended to the
1863
- # order in field name order by default. * If an order on `__name__` is not
1864
- # specified, it is appended by default. Fields are appended with the same sort
1865
- # direction as the last order specified, or 'ASCENDING' if no order was
1866
- # specified. For example: * `SELECT * FROM Foo ORDER BY A` becomes `SELECT *
1867
- # FROM Foo ORDER BY A, __name__` * `SELECT * FROM Foo ORDER BY A DESC` becomes `
1868
- # SELECT * FROM Foo ORDER BY A DESC, __name__ DESC` * `SELECT * FROM Foo WHERE A
1869
- # > 1` becomes `SELECT * FROM Foo WHERE A > 1 ORDER BY A, __name__`
1860
+ # The order to apply to the query results. Firestore allows callers to provide a
1861
+ # full ordering, a partial ordering, or no ordering at all. In all cases,
1862
+ # Firestore guarantees a stable ordering through the following rules: * The `
1863
+ # order_by` is required to reference all fields used with an inequality filter. *
1864
+ # All fields that are required to be in the `order_by` but are not already
1865
+ # present are appended in lexicographical ordering of the field name. * If an
1866
+ # order on `__name__` is not specified, it is appended by default. Fields are
1867
+ # appended with the same sort direction as the last order specified, or '
1868
+ # ASCENDING' if no order was specified. For example: * `ORDER BY a` becomes `
1869
+ # ORDER BY a ASC, __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC,
1870
+ # __name__ DESC` * `WHERE a > 1` becomes `WHERE a > 1 ORDER BY a ASC, __name__
1871
+ # ASC` * `WHERE __name__ > ... AND a > 1` becomes `WHERE __name__ > ... AND a >
1872
+ # 1 ORDER BY a ASC, __name__ ASC`
1870
1873
  # Corresponds to the JSON property `orderBy`
1871
1874
  # @return [Array<Google::Apis::FirestoreV1beta1::Order>]
1872
1875
  attr_accessor :order_by
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirestoreV1beta1
18
18
  # Version of the google-apis-firestore_v1beta1 gem
19
- GEM_VERSION = "0.18.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220428"
25
+ REVISION = "20220808"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firestore_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-04 00:00:00.000000000 Z
11
+ date: 2022-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []