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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b75bdf91712101469660844dc377093774d654c1293670bcb70beeec2bc8149c
4
- data.tar.gz: 920b96f9003483239ea60323b348273876e75e7208129c8244e083656e09f062
3
+ metadata.gz: 7ed1b63854906efe0f462b08eaf8cb9de0ff4a4586e13ce25159e54371939947
4
+ data.tar.gz: 0531b08a511ed70b76b42a47d2541dfdf11fc388cce6b0a03f53f8f8017d3cde
5
5
  SHA512:
6
- metadata.gz: f98eca30a4aa22e13bcf2e0443d45e20bb7a9f7f664dfa323f2558402d3d56d2106e1b410b7795f5e14c67671813915c52092752e3a72b02f41c7802a1180bd2
7
- data.tar.gz: 60406f3d90cf09f03558b30ce5b2f1057cc45e67ddf7ff049b4cd886c9bef66ceb53026504536924cd37a7a8b91b4eff56741e0184a989ee534e880910051ec5
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.3.0"
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
- # # `track_event_response` is a `OursprivacyIngest::Models::TrackEventResponse`
447
- # track_event_response => {
448
- # success: success
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)