oursprivacy-ingest 1.3.0 → 1.5.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 +17 -0
- data/README.md +1 -1
- data/lib/oursprivacy_ingest/client.rb +4 -0
- data/lib/oursprivacy_ingest/internal/type/base_model.rb +5 -3
- data/lib/oursprivacy_ingest/models/batch_create_params.rb +1175 -0
- data/lib/oursprivacy_ingest/models/batch_create_response.rb +123 -0
- data/lib/oursprivacy_ingest/models.rb +2 -0
- data/lib/oursprivacy_ingest/resources/batch.rb +41 -0
- data/lib/oursprivacy_ingest/version.rb +1 -1
- data/lib/oursprivacy_ingest.rb +3 -0
- data/rbi/oursprivacy_ingest/client.rbi +3 -0
- data/rbi/oursprivacy_ingest/models/batch_create_params.rbi +1286 -0
- data/rbi/oursprivacy_ingest/models/batch_create_response.rbi +280 -0
- data/rbi/oursprivacy_ingest/models.rbi +2 -0
- data/rbi/oursprivacy_ingest/resources/batch.rbi +33 -0
- data/sig/oursprivacy_ingest/client.rbs +2 -0
- data/sig/oursprivacy_ingest/models/batch_create_params.rbs +779 -0
- data/sig/oursprivacy_ingest/models/batch_create_response.rbs +130 -0
- data/sig/oursprivacy_ingest/models.rbs +2 -0
- data/sig/oursprivacy_ingest/resources/batch.rbs +13 -0
- metadata +11 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ed1b63854906efe0f462b08eaf8cb9de0ff4a4586e13ce25159e54371939947
|
|
4
|
+
data.tar.gz: 0531b08a511ed70b76b42a47d2541dfdf11fc388cce6b0a03f53f8f8017d3cde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e629ea80c262196d7cf71ccf58a9ed7dcbc6ea633e7c89863a344dbc8dd24c48dcd58ce18881842989aa85986c62b3c8ff1d393b88eaec7a43444b4dc0dce7aa
|
|
7
|
+
data.tar.gz: fca70c8d6c4c831dd2a624d409e244ebabe7ed4865de14b55aad2c5b9e4f3152d7c7ed5dde54e0f7507fa6a1a73fb97e96dbe9ffa677940eb3b65c3e9719bafe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.5.0 (2026-05-06)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.4.0...v1.5.0](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.4.0...v1.5.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([70e698d](https://github.com/with-ours/ingest-sdk-ruby/commit/70e698d9524677ef21e236253598ef7d52babbe7))
|
|
10
|
+
|
|
11
|
+
## 1.4.0 (2026-05-06)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.3.0...v1.4.0](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.3.0...v1.4.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([77f129e](https://github.com/with-ours/ingest-sdk-ruby/commit/77f129ebbf88e483900646c9f55ddd8b30fc5080))
|
|
18
|
+
* **api:** manual updates ([0c205c5](https://github.com/with-ours/ingest-sdk-ruby/commit/0c205c58b6132c5e8585771ceda53ee7b374ca60))
|
|
19
|
+
|
|
3
20
|
## 1.3.0 (2026-04-29)
|
|
4
21
|
|
|
5
22
|
Full Changelog: [v1.2.3...v1.3.0](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.2.3...v1.3.0)
|
data/README.md
CHANGED
|
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
|
|
|
17
17
|
<!-- x-release-please-start-version -->
|
|
18
18
|
|
|
19
19
|
```ruby
|
|
20
|
-
gem "oursprivacy-ingest", "~> 1.
|
|
20
|
+
gem "oursprivacy-ingest", "~> 1.5.0"
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
<!-- x-release-please-end -->
|
|
@@ -15,6 +15,9 @@ module OursprivacyIngest
|
|
|
15
15
|
# Default max retry delay in seconds.
|
|
16
16
|
DEFAULT_MAX_RETRY_DELAY = 8.0
|
|
17
17
|
|
|
18
|
+
# @return [OursprivacyIngest::Resources::Batch]
|
|
19
|
+
attr_reader :batch
|
|
20
|
+
|
|
18
21
|
# @return [OursprivacyIngest::Resources::Track]
|
|
19
22
|
attr_reader :track
|
|
20
23
|
|
|
@@ -71,6 +74,7 @@ module OursprivacyIngest
|
|
|
71
74
|
headers: headers
|
|
72
75
|
)
|
|
73
76
|
|
|
77
|
+
@batch = OursprivacyIngest::Resources::Batch.new(client: self)
|
|
74
78
|
@track = OursprivacyIngest::Resources::Track.new(client: self)
|
|
75
79
|
@visitor = OursprivacyIngest::Resources::Visitor.new(client: self)
|
|
76
80
|
end
|
|
@@ -443,9 +443,11 @@ module OursprivacyIngest
|
|
|
443
443
|
# @return [Hash{Symbol=>Object}]
|
|
444
444
|
#
|
|
445
445
|
# @example
|
|
446
|
-
# # `
|
|
447
|
-
#
|
|
448
|
-
#
|
|
446
|
+
# # `batch_create_response` is a `OursprivacyIngest::Models::BatchCreateResponse`
|
|
447
|
+
# batch_create_response => {
|
|
448
|
+
# accepted: accepted,
|
|
449
|
+
# failed: failed,
|
|
450
|
+
# results: results
|
|
449
451
|
# }
|
|
450
452
|
def deconstruct_keys(keys)
|
|
451
453
|
(keys || self.class.known_fields.keys)
|