oursprivacy-ingest 1.16.2 → 1.17.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 +8 -0
- data/README.md +1 -1
- data/lib/oursprivacy_ingest/resources/batch.rb +4 -3
- data/lib/oursprivacy_ingest/version.rb +1 -1
- data/rbi/oursprivacy_ingest/resources/batch.rbi +4 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 982f6c0cde72164668cb677a4e4352180646096cbbeec238a0a47b2dcaed2d4f
|
|
4
|
+
data.tar.gz: 16acc49bc63b4026719f9ea7fa8401146855a9676a4b4b8dedfc8261a6e36a21
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d901242723604cc6c5ad1175b767909ef57916e192d68956eecd110cdda061a92d6479557fde84a7607ba1708cdbc99bb6ad3c57c4cbada050e6df004b345f2c
|
|
7
|
+
data.tar.gz: c7d9df16cc14b257aaa97152db30bc93c4f894d1dc4a4e52646305b2e427c89486865185570b334b49eefdcfc2d5c576e6e5776e389733138e2390bad48025fa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.17.0 (2026-08-21)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.16.2...v1.17.0](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.16.2...v1.17.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([b8020be](https://github.com/with-ours/ingest-sdk-ruby/commit/b8020be57eff92f2009805eee4d558bd9dab78f0))
|
|
10
|
+
|
|
3
11
|
## 1.16.2 (2026-08-03)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.16.1...v1.16.2](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.16.1...v1.16.2)
|
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.17.0"
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
<!-- x-release-please-end -->
|
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
module OursprivacyIngest
|
|
4
4
|
module Resources
|
|
5
5
|
class Batch
|
|
6
|
-
# Send multiple `/track`-shaped events in a single request.
|
|
7
|
-
#
|
|
8
|
-
#
|
|
6
|
+
# Send multiple `/track`-shaped events in a single request. This endpoint is
|
|
7
|
+
# intended for replay, backfill, and asynchronous bulk delivery. The top-level
|
|
8
|
+
# token is authorized once for the full batch. Each batch row must include
|
|
9
|
+
# `distinctId`, and mixed validation or queue outcomes are reported per row.
|
|
9
10
|
#
|
|
10
11
|
# @overload create(token:, events:, request_options: {})
|
|
11
12
|
#
|
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
module OursprivacyIngest
|
|
4
4
|
module Resources
|
|
5
5
|
class Batch
|
|
6
|
-
# Send multiple `/track`-shaped events in a single request.
|
|
7
|
-
#
|
|
8
|
-
#
|
|
6
|
+
# Send multiple `/track`-shaped events in a single request. This endpoint is
|
|
7
|
+
# intended for replay, backfill, and asynchronous bulk delivery. The top-level
|
|
8
|
+
# token is authorized once for the full batch. Each batch row must include
|
|
9
|
+
# `distinctId`, and mixed validation or queue outcomes are reported per row.
|
|
9
10
|
sig do
|
|
10
11
|
params(
|
|
11
12
|
token: String,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oursprivacy-ingest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.17.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ours Privacy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|