google-apis-firestore_v1beta1 0.17.0 → 0.20.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 +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/google/apis/firestore_v1beta1/classes.rb +24 -18
- data/lib/google/apis/firestore_v1beta1/gem_version.rb +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a965c08f5271e30bdb8848359387af64fcbbfada9598c4d9f333db03a0dd42ac
|
4
|
+
data.tar.gz: b160d815fb1143384a5ab23a4881f69bc17b40b2bdfec6ef013e1515c36d3038
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fae237aaf6521534f40a5be6d7102f6e2c506c6efed19a4783bcbe40883b1ed57d4cd62b3964386cf4b7ee3e495a2d3cb391cf8eb060e77b52f78653f4c69769
|
7
|
+
data.tar.gz: 2d5dedebea489c4269e780f5ffb39b14e54bf346b82878f78a30afd44371b3f02e0796bd8cfa6618eafb351238479acd1707deeea5b034fe64290e0bd883f44d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1beta1
|
2
2
|
|
3
|
+
### v0.20.0 (2022-09-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220831
|
6
|
+
|
7
|
+
### v0.19.0 (2022-08-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220808
|
10
|
+
* Regenerated using generator version 0.9.0
|
11
|
+
|
12
|
+
### v0.18.0 (2022-06-30)
|
13
|
+
|
14
|
+
* Regenerated using generator version 0.8.0
|
15
|
+
|
3
16
|
### v0.17.0 (2022-06-18)
|
4
17
|
|
5
18
|
* Regenerated using generator version 0.7.0
|
@@ -642,7 +642,7 @@ module Google
|
|
642
642
|
class FieldFilter
|
643
643
|
include Google::Apis::Core::Hashable
|
644
644
|
|
645
|
-
# A reference to a field,
|
645
|
+
# A reference to a field in a document, ex: `stats.operations`.
|
646
646
|
# Corresponds to the JSON property `field`
|
647
647
|
# @return [Google::Apis::FirestoreV1beta1::FieldReference]
|
648
648
|
attr_accessor :field
|
@@ -669,11 +669,12 @@ module Google
|
|
669
669
|
end
|
670
670
|
end
|
671
671
|
|
672
|
-
# A reference to a field,
|
672
|
+
# A reference to a field in a document, ex: `stats.operations`.
|
673
673
|
class FieldReference
|
674
674
|
include Google::Apis::Core::Hashable
|
675
675
|
|
676
|
-
#
|
676
|
+
# The relative path of the document being referenced. Requires: * Conform to
|
677
|
+
# document field name limitations.
|
677
678
|
# Corresponds to the JSON property `fieldPath`
|
678
679
|
# @return [String]
|
679
680
|
attr_accessor :field_path
|
@@ -1451,7 +1452,7 @@ module Google
|
|
1451
1452
|
# @return [String]
|
1452
1453
|
attr_accessor :direction
|
1453
1454
|
|
1454
|
-
# A reference to a field,
|
1455
|
+
# A reference to a field in a document, ex: `stats.operations`.
|
1455
1456
|
# Corresponds to the JSON property `field`
|
1456
1457
|
# @return [Google::Apis::FirestoreV1beta1::FieldReference]
|
1457
1458
|
attr_accessor :field
|
@@ -1846,27 +1847,32 @@ module Google
|
|
1846
1847
|
attr_accessor :from
|
1847
1848
|
|
1848
1849
|
# The maximum number of results to return. Applies after all other constraints.
|
1849
|
-
#
|
1850
|
+
# Requires: * The value must be greater than or equal to zero if specified.
|
1850
1851
|
# Corresponds to the JSON property `limit`
|
1851
1852
|
# @return [Fixnum]
|
1852
1853
|
attr_accessor :limit
|
1853
1854
|
|
1854
|
-
# The number of
|
1855
|
-
# constraints
|
1855
|
+
# The number of documents to skip before returning the first result. This
|
1856
|
+
# applies after the constraints specified by the `WHERE`, `START AT`, & `END AT`
|
1857
|
+
# but before the `LIMIT` clause. Requires: * The value must be greater than or
|
1858
|
+
# equal to zero if specified.
|
1856
1859
|
# Corresponds to the JSON property `offset`
|
1857
1860
|
# @return [Fixnum]
|
1858
1861
|
attr_accessor :offset
|
1859
1862
|
|
1860
|
-
# The order to apply to the query results. Firestore
|
1861
|
-
# ordering
|
1862
|
-
#
|
1863
|
-
#
|
1864
|
-
#
|
1865
|
-
#
|
1866
|
-
#
|
1867
|
-
#
|
1868
|
-
#
|
1869
|
-
#
|
1863
|
+
# The order to apply to the query results. Firestore allows callers to provide a
|
1864
|
+
# full ordering, a partial ordering, or no ordering at all. In all cases,
|
1865
|
+
# Firestore guarantees a stable ordering through the following rules: * The `
|
1866
|
+
# order_by` is required to reference all fields used with an inequality filter. *
|
1867
|
+
# All fields that are required to be in the `order_by` but are not already
|
1868
|
+
# present are appended in lexicographical ordering of the field name. * If an
|
1869
|
+
# order on `__name__` is not specified, it is appended by default. Fields are
|
1870
|
+
# appended with the same sort direction as the last order specified, or '
|
1871
|
+
# ASCENDING' if no order was specified. For example: * `ORDER BY a` becomes `
|
1872
|
+
# ORDER BY a ASC, __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC,
|
1873
|
+
# __name__ DESC` * `WHERE a > 1` becomes `WHERE a > 1 ORDER BY a ASC, __name__
|
1874
|
+
# ASC` * `WHERE __name__ > ... AND a > 1` becomes `WHERE __name__ > ... AND a >
|
1875
|
+
# 1 ORDER BY a ASC, __name__ ASC`
|
1870
1876
|
# Corresponds to the JSON property `orderBy`
|
1871
1877
|
# @return [Array<Google::Apis::FirestoreV1beta1::Order>]
|
1872
1878
|
attr_accessor :order_by
|
@@ -2043,7 +2049,7 @@ module Google
|
|
2043
2049
|
class UnaryFilter
|
2044
2050
|
include Google::Apis::Core::Hashable
|
2045
2051
|
|
2046
|
-
# A reference to a field,
|
2052
|
+
# A reference to a field in a document, ex: `stats.operations`.
|
2047
2053
|
# Corresponds to the JSON property `field`
|
2048
2054
|
# @return [Google::Apis::FirestoreV1beta1::FieldReference]
|
2049
2055
|
attr_accessor :field
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220831"
|
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.
|
4
|
+
version: 0.20.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-
|
11
|
+
date: 2022-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.7'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.7'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.20.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: []
|