oursprivacy-ingest 1.8.0 → 1.9.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/models/batch_create_params.rb +36 -2
- data/lib/oursprivacy_ingest/models/track_event_params.rb +36 -2
- data/lib/oursprivacy_ingest/models/visitor_upsert_params.rb +36 -2
- data/lib/oursprivacy_ingest/version.rb +1 -1
- data/rbi/oursprivacy_ingest/models/batch_create_params.rbi +36 -0
- data/rbi/oursprivacy_ingest/models/track_event_params.rbi +36 -0
- data/rbi/oursprivacy_ingest/models/visitor_upsert_params.rbi +36 -0
- data/sig/oursprivacy_ingest/models/batch_create_params.rbs +20 -0
- data/sig/oursprivacy_ingest/models/track_event_params.rbs +20 -0
- data/sig/oursprivacy_ingest/models/visitor_upsert_params.rbs +20 -0
- 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: 8cd38e89b007d984d0ba3b91357e4c3e46d2123e30f152907df2ef3812922215
|
|
4
|
+
data.tar.gz: 1591b9e963faa4d9e02a3a836436e6542c75f19ba2dc39f5474f05bca93a77e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd302a69857e0968bc6bdfd7ddc232e0f00ccd1b22c61640cfe82e50a9eaa244e9121c6aef078f14bf25c87a6add8dfa9f55910a46a76b0568efb1c6b69a0fd2
|
|
7
|
+
data.tar.gz: 06211e12d6a8ba0684315131909720e5f539773b97ebaec362101c7f5ff731e30718e2ee6b681f53bd00ecda96bd1f088d70a590056e93348daad5f926c50820
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.9.0 (2026-05-21)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.8.0...v1.9.0](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.8.0...v1.9.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([a00fbb0](https://github.com/with-ours/ingest-sdk-ruby/commit/a00fbb0136b931736c31bc7b3aa2a7a9a0a5c533))
|
|
10
|
+
|
|
3
11
|
## 1.8.0 (2026-05-14)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.7.0...v1.8.0](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.7.0...v1.8.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.9.0"
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
<!-- x-release-please-end -->
|
|
@@ -584,6 +584,22 @@ module OursprivacyIngest
|
|
|
584
584
|
# @return [String, nil]
|
|
585
585
|
optional :version, String, nil?: true
|
|
586
586
|
|
|
587
|
+
# @!attribute viant_click_id
|
|
588
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
589
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
590
|
+
# viant_click_abc123
|
|
591
|
+
#
|
|
592
|
+
# @return [String, nil]
|
|
593
|
+
optional :viant_click_id, String, nil?: true
|
|
594
|
+
|
|
595
|
+
# @!attribute viant_impression_id
|
|
596
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
597
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
598
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
599
|
+
#
|
|
600
|
+
# @return [String, nil]
|
|
601
|
+
optional :viant_impression_id, String, nil?: true
|
|
602
|
+
|
|
587
603
|
# @!attribute wbraid
|
|
588
604
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
589
605
|
# params.
|
|
@@ -597,7 +613,7 @@ module OursprivacyIngest
|
|
|
597
613
|
# @return [Boolean, nil]
|
|
598
614
|
optional :webview, OursprivacyIngest::Internal::Type::Boolean, nil?: true
|
|
599
615
|
|
|
600
|
-
# @!method initialize(_ef_transaction_id: nil, active_duration: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, browser_language: nil, browser_name: nil, browser_version: nil, campaign_id: nil, clickid: nil, clid: nil, cpu_architecture: nil, current_url: nil, dclid: nil, device_model: nil, device_type: nil, device_vendor: nil, duration: nil, encoding: nil, engine_name: nil, engine_version: nil, epik: nil, fbc: nil, fbclid: nil, fbp: nil, fv: nil, gad_source: nil, gbraid: nil, gclid: nil, host: nil, iframe: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, new_s: nil, os_name: nil, os_version: nil, page_hash: nil, pathname: nil, qclid: nil, rdt_cid: nil, received_at: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, screen_height: nil, screen_width: nil, session_count: nil, sid: nil, sr: nil, title: nil, ttclid: nil, twclid: nil, uafvl: nil, user_agent: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, version: nil, wbraid: nil, webview: nil)
|
|
616
|
+
# @!method initialize(_ef_transaction_id: nil, active_duration: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, browser_language: nil, browser_name: nil, browser_version: nil, campaign_id: nil, clickid: nil, clid: nil, cpu_architecture: nil, current_url: nil, dclid: nil, device_model: nil, device_type: nil, device_vendor: nil, duration: nil, encoding: nil, engine_name: nil, engine_version: nil, epik: nil, fbc: nil, fbclid: nil, fbp: nil, fv: nil, gad_source: nil, gbraid: nil, gclid: nil, host: nil, iframe: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, new_s: nil, os_name: nil, os_version: nil, page_hash: nil, pathname: nil, qclid: nil, rdt_cid: nil, received_at: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, screen_height: nil, screen_width: nil, session_count: nil, sid: nil, sr: nil, title: nil, ttclid: nil, twclid: nil, uafvl: nil, user_agent: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, version: nil, viant_click_id: nil, viant_impression_id: nil, wbraid: nil, webview: nil)
|
|
601
617
|
# Some parameter documentations has been truncated, see
|
|
602
618
|
# {OursprivacyIngest::Models::BatchCreateParams::Event::DefaultProperties} for
|
|
603
619
|
# more details.
|
|
@@ -750,6 +766,10 @@ module OursprivacyIngest
|
|
|
750
766
|
#
|
|
751
767
|
# @param version [String, nil] The version of the web SDK
|
|
752
768
|
#
|
|
769
|
+
# @param viant_click_id [String, nil] The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
770
|
+
#
|
|
771
|
+
# @param viant_impression_id [String, nil] The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
772
|
+
#
|
|
753
773
|
# @param wbraid [String, nil] The WBRAID Identifier. The web SDK automatically captures this from the query pa
|
|
754
774
|
#
|
|
755
775
|
# @param webview [Boolean, nil] Whether the user is in a webview. Ex: true
|
|
@@ -1074,6 +1094,16 @@ module OursprivacyIngest
|
|
|
1074
1094
|
# @return [String, nil]
|
|
1075
1095
|
optional :utm_term, String, nil?: true
|
|
1076
1096
|
|
|
1097
|
+
# @!attribute viant_click_id
|
|
1098
|
+
#
|
|
1099
|
+
# @return [String, nil]
|
|
1100
|
+
optional :viant_click_id, String, nil?: true
|
|
1101
|
+
|
|
1102
|
+
# @!attribute viant_impression_id
|
|
1103
|
+
#
|
|
1104
|
+
# @return [String, nil]
|
|
1105
|
+
optional :viant_impression_id, String, nil?: true
|
|
1106
|
+
|
|
1077
1107
|
# @!attribute wbraid
|
|
1078
1108
|
#
|
|
1079
1109
|
# @return [String, nil]
|
|
@@ -1084,7 +1114,7 @@ module OursprivacyIngest
|
|
|
1084
1114
|
# @return [String, nil]
|
|
1085
1115
|
optional :zip, String, nil?: true
|
|
1086
1116
|
|
|
1087
|
-
# @!method initialize(_ef_transaction_id: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, campaign_id: nil, city: nil, clickid: nil, clid: nil, company_name: nil, consent: nil, country: nil, custom_properties: nil, date_of_birth: nil, dclid: nil, email: nil, epik: nil, external_id: nil, fbc: nil, fbclid: nil, fbp: nil, first_name: nil, gad_source: nil, gbraid: nil, gclid: nil, gender: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, job_title: nil, last_name: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, phone_number: nil, qclid: nil, rdt_cid: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, sid: nil, state: nil, ttclid: nil, twclid: nil, user_agent: nil, user_agent_full_list: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, wbraid: nil, zip: nil)
|
|
1117
|
+
# @!method initialize(_ef_transaction_id: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, campaign_id: nil, city: nil, clickid: nil, clid: nil, company_name: nil, consent: nil, country: nil, custom_properties: nil, date_of_birth: nil, dclid: nil, email: nil, epik: nil, external_id: nil, fbc: nil, fbclid: nil, fbp: nil, first_name: nil, gad_source: nil, gbraid: nil, gclid: nil, gender: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, job_title: nil, last_name: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, phone_number: nil, qclid: nil, rdt_cid: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, sid: nil, state: nil, ttclid: nil, twclid: nil, user_agent: nil, user_agent_full_list: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, viant_click_id: nil, viant_impression_id: nil, wbraid: nil, zip: nil)
|
|
1088
1118
|
# Properties to set on the visitor. (optional) You can also update these
|
|
1089
1119
|
# properties via the identify endpoint.
|
|
1090
1120
|
#
|
|
@@ -1204,6 +1234,10 @@ module OursprivacyIngest
|
|
|
1204
1234
|
#
|
|
1205
1235
|
# @param utm_term [String, nil]
|
|
1206
1236
|
#
|
|
1237
|
+
# @param viant_click_id [String, nil]
|
|
1238
|
+
#
|
|
1239
|
+
# @param viant_impression_id [String, nil]
|
|
1240
|
+
#
|
|
1207
1241
|
# @param wbraid [String, nil]
|
|
1208
1242
|
#
|
|
1209
1243
|
# @param zip [String, nil]
|
|
@@ -572,6 +572,22 @@ module OursprivacyIngest
|
|
|
572
572
|
# @return [String, nil]
|
|
573
573
|
optional :version, String, nil?: true
|
|
574
574
|
|
|
575
|
+
# @!attribute viant_click_id
|
|
576
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
577
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
578
|
+
# viant_click_abc123
|
|
579
|
+
#
|
|
580
|
+
# @return [String, nil]
|
|
581
|
+
optional :viant_click_id, String, nil?: true
|
|
582
|
+
|
|
583
|
+
# @!attribute viant_impression_id
|
|
584
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
585
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
586
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
587
|
+
#
|
|
588
|
+
# @return [String, nil]
|
|
589
|
+
optional :viant_impression_id, String, nil?: true
|
|
590
|
+
|
|
575
591
|
# @!attribute wbraid
|
|
576
592
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
577
593
|
# params.
|
|
@@ -585,7 +601,7 @@ module OursprivacyIngest
|
|
|
585
601
|
# @return [Boolean, nil]
|
|
586
602
|
optional :webview, OursprivacyIngest::Internal::Type::Boolean, nil?: true
|
|
587
603
|
|
|
588
|
-
# @!method initialize(_ef_transaction_id: nil, active_duration: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, browser_language: nil, browser_name: nil, browser_version: nil, campaign_id: nil, clickid: nil, clid: nil, cpu_architecture: nil, current_url: nil, dclid: nil, device_model: nil, device_type: nil, device_vendor: nil, duration: nil, encoding: nil, engine_name: nil, engine_version: nil, epik: nil, fbc: nil, fbclid: nil, fbp: nil, fv: nil, gad_source: nil, gbraid: nil, gclid: nil, host: nil, iframe: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, new_s: nil, os_name: nil, os_version: nil, page_hash: nil, pathname: nil, qclid: nil, rdt_cid: nil, received_at: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, screen_height: nil, screen_width: nil, session_count: nil, sid: nil, sr: nil, title: nil, ttclid: nil, twclid: nil, uafvl: nil, user_agent: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, version: nil, wbraid: nil, webview: nil)
|
|
604
|
+
# @!method initialize(_ef_transaction_id: nil, active_duration: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, browser_language: nil, browser_name: nil, browser_version: nil, campaign_id: nil, clickid: nil, clid: nil, cpu_architecture: nil, current_url: nil, dclid: nil, device_model: nil, device_type: nil, device_vendor: nil, duration: nil, encoding: nil, engine_name: nil, engine_version: nil, epik: nil, fbc: nil, fbclid: nil, fbp: nil, fv: nil, gad_source: nil, gbraid: nil, gclid: nil, host: nil, iframe: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, new_s: nil, os_name: nil, os_version: nil, page_hash: nil, pathname: nil, qclid: nil, rdt_cid: nil, received_at: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, screen_height: nil, screen_width: nil, session_count: nil, sid: nil, sr: nil, title: nil, ttclid: nil, twclid: nil, uafvl: nil, user_agent: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, version: nil, viant_click_id: nil, viant_impression_id: nil, wbraid: nil, webview: nil)
|
|
589
605
|
# Some parameter documentations has been truncated, see
|
|
590
606
|
# {OursprivacyIngest::Models::TrackEventParams::DefaultProperties} for more
|
|
591
607
|
# details.
|
|
@@ -738,6 +754,10 @@ module OursprivacyIngest
|
|
|
738
754
|
#
|
|
739
755
|
# @param version [String, nil] The version of the web SDK
|
|
740
756
|
#
|
|
757
|
+
# @param viant_click_id [String, nil] The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
758
|
+
#
|
|
759
|
+
# @param viant_impression_id [String, nil] The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
760
|
+
#
|
|
741
761
|
# @param wbraid [String, nil] The WBRAID Identifier. The web SDK automatically captures this from the query pa
|
|
742
762
|
#
|
|
743
763
|
# @param webview [Boolean, nil] Whether the user is in a webview. Ex: true
|
|
@@ -1058,6 +1078,16 @@ module OursprivacyIngest
|
|
|
1058
1078
|
# @return [String, nil]
|
|
1059
1079
|
optional :utm_term, String, nil?: true
|
|
1060
1080
|
|
|
1081
|
+
# @!attribute viant_click_id
|
|
1082
|
+
#
|
|
1083
|
+
# @return [String, nil]
|
|
1084
|
+
optional :viant_click_id, String, nil?: true
|
|
1085
|
+
|
|
1086
|
+
# @!attribute viant_impression_id
|
|
1087
|
+
#
|
|
1088
|
+
# @return [String, nil]
|
|
1089
|
+
optional :viant_impression_id, String, nil?: true
|
|
1090
|
+
|
|
1061
1091
|
# @!attribute wbraid
|
|
1062
1092
|
#
|
|
1063
1093
|
# @return [String, nil]
|
|
@@ -1068,7 +1098,7 @@ module OursprivacyIngest
|
|
|
1068
1098
|
# @return [String, nil]
|
|
1069
1099
|
optional :zip, String, nil?: true
|
|
1070
1100
|
|
|
1071
|
-
# @!method initialize(_ef_transaction_id: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, campaign_id: nil, city: nil, clickid: nil, clid: nil, company_name: nil, consent: nil, country: nil, custom_properties: nil, date_of_birth: nil, dclid: nil, email: nil, epik: nil, external_id: nil, fbc: nil, fbclid: nil, fbp: nil, first_name: nil, gad_source: nil, gbraid: nil, gclid: nil, gender: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, job_title: nil, last_name: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, phone_number: nil, qclid: nil, rdt_cid: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, sid: nil, state: nil, ttclid: nil, twclid: nil, user_agent: nil, user_agent_full_list: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, wbraid: nil, zip: nil)
|
|
1101
|
+
# @!method initialize(_ef_transaction_id: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, campaign_id: nil, city: nil, clickid: nil, clid: nil, company_name: nil, consent: nil, country: nil, custom_properties: nil, date_of_birth: nil, dclid: nil, email: nil, epik: nil, external_id: nil, fbc: nil, fbclid: nil, fbp: nil, first_name: nil, gad_source: nil, gbraid: nil, gclid: nil, gender: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, job_title: nil, last_name: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, phone_number: nil, qclid: nil, rdt_cid: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, sid: nil, state: nil, ttclid: nil, twclid: nil, user_agent: nil, user_agent_full_list: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, viant_click_id: nil, viant_impression_id: nil, wbraid: nil, zip: nil)
|
|
1072
1102
|
# Properties to set on the visitor. (optional) You can also update these
|
|
1073
1103
|
# properties via the identify endpoint.
|
|
1074
1104
|
#
|
|
@@ -1188,6 +1218,10 @@ module OursprivacyIngest
|
|
|
1188
1218
|
#
|
|
1189
1219
|
# @param utm_term [String, nil]
|
|
1190
1220
|
#
|
|
1221
|
+
# @param viant_click_id [String, nil]
|
|
1222
|
+
#
|
|
1223
|
+
# @param viant_impression_id [String, nil]
|
|
1224
|
+
#
|
|
1191
1225
|
# @param wbraid [String, nil]
|
|
1192
1226
|
#
|
|
1193
1227
|
# @param zip [String, nil]
|
|
@@ -383,6 +383,16 @@ module OursprivacyIngest
|
|
|
383
383
|
# @return [String, nil]
|
|
384
384
|
optional :utm_term, String, nil?: true
|
|
385
385
|
|
|
386
|
+
# @!attribute viant_click_id
|
|
387
|
+
#
|
|
388
|
+
# @return [String, nil]
|
|
389
|
+
optional :viant_click_id, String, nil?: true
|
|
390
|
+
|
|
391
|
+
# @!attribute viant_impression_id
|
|
392
|
+
#
|
|
393
|
+
# @return [String, nil]
|
|
394
|
+
optional :viant_impression_id, String, nil?: true
|
|
395
|
+
|
|
386
396
|
# @!attribute wbraid
|
|
387
397
|
#
|
|
388
398
|
# @return [String, nil]
|
|
@@ -393,7 +403,7 @@ module OursprivacyIngest
|
|
|
393
403
|
# @return [String, nil]
|
|
394
404
|
optional :zip, String, nil?: true
|
|
395
405
|
|
|
396
|
-
# @!method initialize(_ef_transaction_id: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, campaign_id: nil, city: nil, clickid: nil, clid: nil, company_name: nil, consent: nil, country: nil, custom_properties: nil, date_of_birth: nil, dclid: nil, email: nil, epik: nil, external_id: nil, fbc: nil, fbclid: nil, fbp: nil, first_name: nil, gad_source: nil, gbraid: nil, gclid: nil, gender: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, job_title: nil, last_name: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, phone_number: nil, qclid: nil, rdt_cid: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, sid: nil, state: nil, ttclid: nil, twclid: nil, user_agent: nil, user_agent_full_list: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, wbraid: nil, zip: nil)
|
|
406
|
+
# @!method initialize(_ef_transaction_id: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, campaign_id: nil, city: nil, clickid: nil, clid: nil, company_name: nil, consent: nil, country: nil, custom_properties: nil, date_of_birth: nil, dclid: nil, email: nil, epik: nil, external_id: nil, fbc: nil, fbclid: nil, fbp: nil, first_name: nil, gad_source: nil, gbraid: nil, gclid: nil, gender: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, job_title: nil, last_name: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, phone_number: nil, qclid: nil, rdt_cid: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, sid: nil, state: nil, ttclid: nil, twclid: nil, user_agent: nil, user_agent_full_list: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, viant_click_id: nil, viant_impression_id: nil, wbraid: nil, zip: nil)
|
|
397
407
|
# User properties to associate with this user. The existing user properties will
|
|
398
408
|
# be updated. And all future events will have these properties associated with
|
|
399
409
|
# them.
|
|
@@ -514,6 +524,10 @@ module OursprivacyIngest
|
|
|
514
524
|
#
|
|
515
525
|
# @param utm_term [String, nil]
|
|
516
526
|
#
|
|
527
|
+
# @param viant_click_id [String, nil]
|
|
528
|
+
#
|
|
529
|
+
# @param viant_impression_id [String, nil]
|
|
530
|
+
#
|
|
517
531
|
# @param wbraid [String, nil]
|
|
518
532
|
#
|
|
519
533
|
# @param zip [String, nil]
|
|
@@ -960,6 +974,22 @@ module OursprivacyIngest
|
|
|
960
974
|
# @return [String, nil]
|
|
961
975
|
optional :version, String, nil?: true
|
|
962
976
|
|
|
977
|
+
# @!attribute viant_click_id
|
|
978
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
979
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
980
|
+
# viant_click_abc123
|
|
981
|
+
#
|
|
982
|
+
# @return [String, nil]
|
|
983
|
+
optional :viant_click_id, String, nil?: true
|
|
984
|
+
|
|
985
|
+
# @!attribute viant_impression_id
|
|
986
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
987
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
988
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
989
|
+
#
|
|
990
|
+
# @return [String, nil]
|
|
991
|
+
optional :viant_impression_id, String, nil?: true
|
|
992
|
+
|
|
963
993
|
# @!attribute wbraid
|
|
964
994
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
965
995
|
# params.
|
|
@@ -973,7 +1003,7 @@ module OursprivacyIngest
|
|
|
973
1003
|
# @return [Boolean, nil]
|
|
974
1004
|
optional :webview, OursprivacyIngest::Internal::Type::Boolean, nil?: true
|
|
975
1005
|
|
|
976
|
-
# @!method initialize(_ef_transaction_id: nil, active_duration: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, browser_language: nil, browser_name: nil, browser_version: nil, campaign_id: nil, clickid: nil, clid: nil, cpu_architecture: nil, current_url: nil, dclid: nil, device_model: nil, device_type: nil, device_vendor: nil, duration: nil, encoding: nil, engine_name: nil, engine_version: nil, epik: nil, fbc: nil, fbclid: nil, fbp: nil, fv: nil, gad_source: nil, gbraid: nil, gclid: nil, host: nil, iframe: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, new_s: nil, os_name: nil, os_version: nil, page_hash: nil, pathname: nil, qclid: nil, rdt_cid: nil, received_at: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, screen_height: nil, screen_width: nil, session_count: nil, sid: nil, sr: nil, title: nil, ttclid: nil, twclid: nil, uafvl: nil, user_agent: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, version: nil, wbraid: nil, webview: nil)
|
|
1006
|
+
# @!method initialize(_ef_transaction_id: nil, active_duration: nil, ad_id: nil, admitad_uid: nil, adset_id: nil, alart: nil, aleid: nil, axwrt: nil, basis_cid: nil, beeswax_auction_id: nil, browser_language: nil, browser_name: nil, browser_version: nil, campaign_id: nil, clickid: nil, clid: nil, cpu_architecture: nil, current_url: nil, dclid: nil, device_model: nil, device_type: nil, device_vendor: nil, duration: nil, encoding: nil, engine_name: nil, engine_version: nil, epik: nil, fbc: nil, fbclid: nil, fbp: nil, fv: nil, gad_source: nil, gbraid: nil, gclid: nil, host: nil, iframe: nil, im_ref: nil, ip: nil, irclickid: nil, is_bot: nil, li_fat_id: nil, msclkid: nil, ndclid: nil, new_s: nil, os_name: nil, os_version: nil, page_hash: nil, pathname: nil, qclid: nil, rdt_cid: nil, received_at: nil, referrer: nil, referring_domain: nil, sacid: nil, sccid: nil, screen_height: nil, screen_width: nil, session_count: nil, sid: nil, sr: nil, title: nil, ttclid: nil, twclid: nil, uafvl: nil, user_agent: nil, utm_campaign: nil, utm_content: nil, utm_medium: nil, utm_name: nil, utm_source: nil, utm_term: nil, version: nil, viant_click_id: nil, viant_impression_id: nil, wbraid: nil, webview: nil)
|
|
977
1007
|
# Some parameter documentations has been truncated, see
|
|
978
1008
|
# {OursprivacyIngest::Models::VisitorUpsertParams::DefaultProperties} for more
|
|
979
1009
|
# details.
|
|
@@ -1126,6 +1156,10 @@ module OursprivacyIngest
|
|
|
1126
1156
|
#
|
|
1127
1157
|
# @param version [String, nil] The version of the web SDK
|
|
1128
1158
|
#
|
|
1159
|
+
# @param viant_click_id [String, nil] The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
1160
|
+
#
|
|
1161
|
+
# @param viant_impression_id [String, nil] The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
1162
|
+
#
|
|
1129
1163
|
# @param wbraid [String, nil] The WBRAID Identifier. The web SDK automatically captures this from the query pa
|
|
1130
1164
|
#
|
|
1131
1165
|
# @param webview [Boolean, nil] Whether the user is in a webview. Ex: true
|
|
@@ -563,6 +563,18 @@ module OursprivacyIngest
|
|
|
563
563
|
sig { returns(T.nilable(String)) }
|
|
564
564
|
attr_accessor :version
|
|
565
565
|
|
|
566
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
567
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
568
|
+
# viant_click_abc123
|
|
569
|
+
sig { returns(T.nilable(String)) }
|
|
570
|
+
attr_accessor :viant_click_id
|
|
571
|
+
|
|
572
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
573
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
574
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
575
|
+
sig { returns(T.nilable(String)) }
|
|
576
|
+
attr_accessor :viant_impression_id
|
|
577
|
+
|
|
566
578
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
567
579
|
# params.
|
|
568
580
|
sig { returns(T.nilable(String)) }
|
|
@@ -648,6 +660,8 @@ module OursprivacyIngest
|
|
|
648
660
|
utm_source: T.nilable(String),
|
|
649
661
|
utm_term: T.nilable(String),
|
|
650
662
|
version: T.nilable(String),
|
|
663
|
+
viant_click_id: T.nilable(String),
|
|
664
|
+
viant_impression_id: T.nilable(String),
|
|
651
665
|
wbraid: T.nilable(String),
|
|
652
666
|
webview: T.nilable(T::Boolean)
|
|
653
667
|
).returns(T.attached_class)
|
|
@@ -805,6 +819,14 @@ module OursprivacyIngest
|
|
|
805
819
|
utm_term: nil,
|
|
806
820
|
# The version of the web SDK
|
|
807
821
|
version: nil,
|
|
822
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
823
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
824
|
+
# viant_click_abc123
|
|
825
|
+
viant_click_id: nil,
|
|
826
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
827
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
828
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
829
|
+
viant_impression_id: nil,
|
|
808
830
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
809
831
|
# params.
|
|
810
832
|
wbraid: nil,
|
|
@@ -888,6 +910,8 @@ module OursprivacyIngest
|
|
|
888
910
|
utm_source: T.nilable(String),
|
|
889
911
|
utm_term: T.nilable(String),
|
|
890
912
|
version: T.nilable(String),
|
|
913
|
+
viant_click_id: T.nilable(String),
|
|
914
|
+
viant_impression_id: T.nilable(String),
|
|
891
915
|
wbraid: T.nilable(String),
|
|
892
916
|
webview: T.nilable(T::Boolean)
|
|
893
917
|
}
|
|
@@ -1117,6 +1141,12 @@ module OursprivacyIngest
|
|
|
1117
1141
|
sig { returns(T.nilable(String)) }
|
|
1118
1142
|
attr_accessor :utm_term
|
|
1119
1143
|
|
|
1144
|
+
sig { returns(T.nilable(String)) }
|
|
1145
|
+
attr_accessor :viant_click_id
|
|
1146
|
+
|
|
1147
|
+
sig { returns(T.nilable(String)) }
|
|
1148
|
+
attr_accessor :viant_impression_id
|
|
1149
|
+
|
|
1120
1150
|
sig { returns(T.nilable(String)) }
|
|
1121
1151
|
attr_accessor :wbraid
|
|
1122
1152
|
|
|
@@ -1185,6 +1215,8 @@ module OursprivacyIngest
|
|
|
1185
1215
|
utm_name: T.nilable(String),
|
|
1186
1216
|
utm_source: T.nilable(String),
|
|
1187
1217
|
utm_term: T.nilable(String),
|
|
1218
|
+
viant_click_id: T.nilable(String),
|
|
1219
|
+
viant_impression_id: T.nilable(String),
|
|
1188
1220
|
wbraid: T.nilable(String),
|
|
1189
1221
|
zip: T.nilable(String)
|
|
1190
1222
|
).returns(T.attached_class)
|
|
@@ -1249,6 +1281,8 @@ module OursprivacyIngest
|
|
|
1249
1281
|
utm_name: nil,
|
|
1250
1282
|
utm_source: nil,
|
|
1251
1283
|
utm_term: nil,
|
|
1284
|
+
viant_click_id: nil,
|
|
1285
|
+
viant_impression_id: nil,
|
|
1252
1286
|
wbraid: nil,
|
|
1253
1287
|
zip: nil
|
|
1254
1288
|
)
|
|
@@ -1316,6 +1350,8 @@ module OursprivacyIngest
|
|
|
1316
1350
|
utm_name: T.nilable(String),
|
|
1317
1351
|
utm_source: T.nilable(String),
|
|
1318
1352
|
utm_term: T.nilable(String),
|
|
1353
|
+
viant_click_id: T.nilable(String),
|
|
1354
|
+
viant_impression_id: T.nilable(String),
|
|
1319
1355
|
wbraid: T.nilable(String),
|
|
1320
1356
|
zip: T.nilable(String)
|
|
1321
1357
|
}
|
|
@@ -513,6 +513,18 @@ module OursprivacyIngest
|
|
|
513
513
|
sig { returns(T.nilable(String)) }
|
|
514
514
|
attr_accessor :version
|
|
515
515
|
|
|
516
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
517
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
518
|
+
# viant_click_abc123
|
|
519
|
+
sig { returns(T.nilable(String)) }
|
|
520
|
+
attr_accessor :viant_click_id
|
|
521
|
+
|
|
522
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
523
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
524
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
525
|
+
sig { returns(T.nilable(String)) }
|
|
526
|
+
attr_accessor :viant_impression_id
|
|
527
|
+
|
|
516
528
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
517
529
|
# params.
|
|
518
530
|
sig { returns(T.nilable(String)) }
|
|
@@ -598,6 +610,8 @@ module OursprivacyIngest
|
|
|
598
610
|
utm_source: T.nilable(String),
|
|
599
611
|
utm_term: T.nilable(String),
|
|
600
612
|
version: T.nilable(String),
|
|
613
|
+
viant_click_id: T.nilable(String),
|
|
614
|
+
viant_impression_id: T.nilable(String),
|
|
601
615
|
wbraid: T.nilable(String),
|
|
602
616
|
webview: T.nilable(T::Boolean)
|
|
603
617
|
).returns(T.attached_class)
|
|
@@ -755,6 +769,14 @@ module OursprivacyIngest
|
|
|
755
769
|
utm_term: nil,
|
|
756
770
|
# The version of the web SDK
|
|
757
771
|
version: nil,
|
|
772
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
773
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
774
|
+
# viant_click_abc123
|
|
775
|
+
viant_click_id: nil,
|
|
776
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
777
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
778
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
779
|
+
viant_impression_id: nil,
|
|
758
780
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
759
781
|
# params.
|
|
760
782
|
wbraid: nil,
|
|
@@ -838,6 +860,8 @@ module OursprivacyIngest
|
|
|
838
860
|
utm_source: T.nilable(String),
|
|
839
861
|
utm_term: T.nilable(String),
|
|
840
862
|
version: T.nilable(String),
|
|
863
|
+
viant_click_id: T.nilable(String),
|
|
864
|
+
viant_impression_id: T.nilable(String),
|
|
841
865
|
wbraid: T.nilable(String),
|
|
842
866
|
webview: T.nilable(T::Boolean)
|
|
843
867
|
}
|
|
@@ -1065,6 +1089,12 @@ module OursprivacyIngest
|
|
|
1065
1089
|
sig { returns(T.nilable(String)) }
|
|
1066
1090
|
attr_accessor :utm_term
|
|
1067
1091
|
|
|
1092
|
+
sig { returns(T.nilable(String)) }
|
|
1093
|
+
attr_accessor :viant_click_id
|
|
1094
|
+
|
|
1095
|
+
sig { returns(T.nilable(String)) }
|
|
1096
|
+
attr_accessor :viant_impression_id
|
|
1097
|
+
|
|
1068
1098
|
sig { returns(T.nilable(String)) }
|
|
1069
1099
|
attr_accessor :wbraid
|
|
1070
1100
|
|
|
@@ -1133,6 +1163,8 @@ module OursprivacyIngest
|
|
|
1133
1163
|
utm_name: T.nilable(String),
|
|
1134
1164
|
utm_source: T.nilable(String),
|
|
1135
1165
|
utm_term: T.nilable(String),
|
|
1166
|
+
viant_click_id: T.nilable(String),
|
|
1167
|
+
viant_impression_id: T.nilable(String),
|
|
1136
1168
|
wbraid: T.nilable(String),
|
|
1137
1169
|
zip: T.nilable(String)
|
|
1138
1170
|
).returns(T.attached_class)
|
|
@@ -1197,6 +1229,8 @@ module OursprivacyIngest
|
|
|
1197
1229
|
utm_name: nil,
|
|
1198
1230
|
utm_source: nil,
|
|
1199
1231
|
utm_term: nil,
|
|
1232
|
+
viant_click_id: nil,
|
|
1233
|
+
viant_impression_id: nil,
|
|
1200
1234
|
wbraid: nil,
|
|
1201
1235
|
zip: nil
|
|
1202
1236
|
)
|
|
@@ -1263,6 +1297,8 @@ module OursprivacyIngest
|
|
|
1263
1297
|
utm_name: T.nilable(String),
|
|
1264
1298
|
utm_source: T.nilable(String),
|
|
1265
1299
|
utm_term: T.nilable(String),
|
|
1300
|
+
viant_click_id: T.nilable(String),
|
|
1301
|
+
viant_impression_id: T.nilable(String),
|
|
1266
1302
|
wbraid: T.nilable(String),
|
|
1267
1303
|
zip: T.nilable(String)
|
|
1268
1304
|
}
|
|
@@ -352,6 +352,12 @@ module OursprivacyIngest
|
|
|
352
352
|
sig { returns(T.nilable(String)) }
|
|
353
353
|
attr_accessor :utm_term
|
|
354
354
|
|
|
355
|
+
sig { returns(T.nilable(String)) }
|
|
356
|
+
attr_accessor :viant_click_id
|
|
357
|
+
|
|
358
|
+
sig { returns(T.nilable(String)) }
|
|
359
|
+
attr_accessor :viant_impression_id
|
|
360
|
+
|
|
355
361
|
sig { returns(T.nilable(String)) }
|
|
356
362
|
attr_accessor :wbraid
|
|
357
363
|
|
|
@@ -421,6 +427,8 @@ module OursprivacyIngest
|
|
|
421
427
|
utm_name: T.nilable(String),
|
|
422
428
|
utm_source: T.nilable(String),
|
|
423
429
|
utm_term: T.nilable(String),
|
|
430
|
+
viant_click_id: T.nilable(String),
|
|
431
|
+
viant_impression_id: T.nilable(String),
|
|
424
432
|
wbraid: T.nilable(String),
|
|
425
433
|
zip: T.nilable(String)
|
|
426
434
|
).returns(T.attached_class)
|
|
@@ -485,6 +493,8 @@ module OursprivacyIngest
|
|
|
485
493
|
utm_name: nil,
|
|
486
494
|
utm_source: nil,
|
|
487
495
|
utm_term: nil,
|
|
496
|
+
viant_click_id: nil,
|
|
497
|
+
viant_impression_id: nil,
|
|
488
498
|
wbraid: nil,
|
|
489
499
|
zip: nil
|
|
490
500
|
)
|
|
@@ -551,6 +561,8 @@ module OursprivacyIngest
|
|
|
551
561
|
utm_name: T.nilable(String),
|
|
552
562
|
utm_source: T.nilable(String),
|
|
553
563
|
utm_term: T.nilable(String),
|
|
564
|
+
viant_click_id: T.nilable(String),
|
|
565
|
+
viant_impression_id: T.nilable(String),
|
|
554
566
|
wbraid: T.nilable(String),
|
|
555
567
|
zip: T.nilable(String)
|
|
556
568
|
}
|
|
@@ -865,6 +877,18 @@ module OursprivacyIngest
|
|
|
865
877
|
sig { returns(T.nilable(String)) }
|
|
866
878
|
attr_accessor :version
|
|
867
879
|
|
|
880
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
881
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
882
|
+
# viant_click_abc123
|
|
883
|
+
sig { returns(T.nilable(String)) }
|
|
884
|
+
attr_accessor :viant_click_id
|
|
885
|
+
|
|
886
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
887
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
888
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
889
|
+
sig { returns(T.nilable(String)) }
|
|
890
|
+
attr_accessor :viant_impression_id
|
|
891
|
+
|
|
868
892
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
869
893
|
# params.
|
|
870
894
|
sig { returns(T.nilable(String)) }
|
|
@@ -950,6 +974,8 @@ module OursprivacyIngest
|
|
|
950
974
|
utm_source: T.nilable(String),
|
|
951
975
|
utm_term: T.nilable(String),
|
|
952
976
|
version: T.nilable(String),
|
|
977
|
+
viant_click_id: T.nilable(String),
|
|
978
|
+
viant_impression_id: T.nilable(String),
|
|
953
979
|
wbraid: T.nilable(String),
|
|
954
980
|
webview: T.nilable(T::Boolean)
|
|
955
981
|
).returns(T.attached_class)
|
|
@@ -1107,6 +1133,14 @@ module OursprivacyIngest
|
|
|
1107
1133
|
utm_term: nil,
|
|
1108
1134
|
# The version of the web SDK
|
|
1109
1135
|
version: nil,
|
|
1136
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
1137
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
1138
|
+
# viant_click_abc123
|
|
1139
|
+
viant_click_id: nil,
|
|
1140
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
1141
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
1142
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
1143
|
+
viant_impression_id: nil,
|
|
1110
1144
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
1111
1145
|
# params.
|
|
1112
1146
|
wbraid: nil,
|
|
@@ -1190,6 +1224,8 @@ module OursprivacyIngest
|
|
|
1190
1224
|
utm_source: T.nilable(String),
|
|
1191
1225
|
utm_term: T.nilable(String),
|
|
1192
1226
|
version: T.nilable(String),
|
|
1227
|
+
viant_click_id: T.nilable(String),
|
|
1228
|
+
viant_impression_id: T.nilable(String),
|
|
1193
1229
|
wbraid: T.nilable(String),
|
|
1194
1230
|
webview: T.nilable(T::Boolean)
|
|
1195
1231
|
}
|
|
@@ -162,6 +162,8 @@ module OursprivacyIngest
|
|
|
162
162
|
utm_source: String?,
|
|
163
163
|
utm_term: String?,
|
|
164
164
|
version: String?,
|
|
165
|
+
viant_click_id: String?,
|
|
166
|
+
viant_impression_id: String?,
|
|
165
167
|
wbraid: String?,
|
|
166
168
|
webview: bool?
|
|
167
169
|
}
|
|
@@ -311,6 +313,10 @@ module OursprivacyIngest
|
|
|
311
313
|
|
|
312
314
|
attr_accessor version: String?
|
|
313
315
|
|
|
316
|
+
attr_accessor viant_click_id: String?
|
|
317
|
+
|
|
318
|
+
attr_accessor viant_impression_id: String?
|
|
319
|
+
|
|
314
320
|
attr_accessor wbraid: String?
|
|
315
321
|
|
|
316
322
|
attr_accessor webview: bool?
|
|
@@ -388,6 +394,8 @@ module OursprivacyIngest
|
|
|
388
394
|
?utm_source: String?,
|
|
389
395
|
?utm_term: String?,
|
|
390
396
|
?version: String?,
|
|
397
|
+
?viant_click_id: String?,
|
|
398
|
+
?viant_impression_id: String?,
|
|
391
399
|
?wbraid: String?,
|
|
392
400
|
?webview: bool?
|
|
393
401
|
) -> void
|
|
@@ -465,6 +473,8 @@ module OursprivacyIngest
|
|
|
465
473
|
utm_source: String?,
|
|
466
474
|
utm_term: String?,
|
|
467
475
|
version: String?,
|
|
476
|
+
viant_click_id: String?,
|
|
477
|
+
viant_impression_id: String?,
|
|
468
478
|
wbraid: String?,
|
|
469
479
|
webview: bool?
|
|
470
480
|
}
|
|
@@ -542,6 +552,8 @@ module OursprivacyIngest
|
|
|
542
552
|
utm_name: String?,
|
|
543
553
|
utm_source: String?,
|
|
544
554
|
utm_term: String?,
|
|
555
|
+
viant_click_id: String?,
|
|
556
|
+
viant_impression_id: String?,
|
|
545
557
|
wbraid: String?,
|
|
546
558
|
zip: String?
|
|
547
559
|
}
|
|
@@ -663,6 +675,10 @@ module OursprivacyIngest
|
|
|
663
675
|
|
|
664
676
|
attr_accessor utm_term: String?
|
|
665
677
|
|
|
678
|
+
attr_accessor viant_click_id: String?
|
|
679
|
+
|
|
680
|
+
attr_accessor viant_impression_id: String?
|
|
681
|
+
|
|
666
682
|
attr_accessor wbraid: String?
|
|
667
683
|
|
|
668
684
|
attr_accessor zip: String?
|
|
@@ -726,6 +742,8 @@ module OursprivacyIngest
|
|
|
726
742
|
?utm_name: String?,
|
|
727
743
|
?utm_source: String?,
|
|
728
744
|
?utm_term: String?,
|
|
745
|
+
?viant_click_id: String?,
|
|
746
|
+
?viant_impression_id: String?,
|
|
729
747
|
?wbraid: String?,
|
|
730
748
|
?zip: String?
|
|
731
749
|
) -> void
|
|
@@ -789,6 +807,8 @@ module OursprivacyIngest
|
|
|
789
807
|
utm_name: String?,
|
|
790
808
|
utm_source: String?,
|
|
791
809
|
utm_term: String?,
|
|
810
|
+
viant_click_id: String?,
|
|
811
|
+
viant_impression_id: String?,
|
|
792
812
|
wbraid: String?,
|
|
793
813
|
zip: String?
|
|
794
814
|
}
|
|
@@ -146,6 +146,8 @@ module OursprivacyIngest
|
|
|
146
146
|
utm_source: String?,
|
|
147
147
|
utm_term: String?,
|
|
148
148
|
version: String?,
|
|
149
|
+
viant_click_id: String?,
|
|
150
|
+
viant_impression_id: String?,
|
|
149
151
|
wbraid: String?,
|
|
150
152
|
webview: bool?
|
|
151
153
|
}
|
|
@@ -295,6 +297,10 @@ module OursprivacyIngest
|
|
|
295
297
|
|
|
296
298
|
attr_accessor version: String?
|
|
297
299
|
|
|
300
|
+
attr_accessor viant_click_id: String?
|
|
301
|
+
|
|
302
|
+
attr_accessor viant_impression_id: String?
|
|
303
|
+
|
|
298
304
|
attr_accessor wbraid: String?
|
|
299
305
|
|
|
300
306
|
attr_accessor webview: bool?
|
|
@@ -372,6 +378,8 @@ module OursprivacyIngest
|
|
|
372
378
|
?utm_source: String?,
|
|
373
379
|
?utm_term: String?,
|
|
374
380
|
?version: String?,
|
|
381
|
+
?viant_click_id: String?,
|
|
382
|
+
?viant_impression_id: String?,
|
|
375
383
|
?wbraid: String?,
|
|
376
384
|
?webview: bool?
|
|
377
385
|
) -> void
|
|
@@ -449,6 +457,8 @@ module OursprivacyIngest
|
|
|
449
457
|
utm_source: String?,
|
|
450
458
|
utm_term: String?,
|
|
451
459
|
version: String?,
|
|
460
|
+
viant_click_id: String?,
|
|
461
|
+
viant_impression_id: String?,
|
|
452
462
|
wbraid: String?,
|
|
453
463
|
webview: bool?
|
|
454
464
|
}
|
|
@@ -526,6 +536,8 @@ module OursprivacyIngest
|
|
|
526
536
|
utm_name: String?,
|
|
527
537
|
utm_source: String?,
|
|
528
538
|
utm_term: String?,
|
|
539
|
+
viant_click_id: String?,
|
|
540
|
+
viant_impression_id: String?,
|
|
529
541
|
wbraid: String?,
|
|
530
542
|
zip: String?
|
|
531
543
|
}
|
|
@@ -647,6 +659,10 @@ module OursprivacyIngest
|
|
|
647
659
|
|
|
648
660
|
attr_accessor utm_term: String?
|
|
649
661
|
|
|
662
|
+
attr_accessor viant_click_id: String?
|
|
663
|
+
|
|
664
|
+
attr_accessor viant_impression_id: String?
|
|
665
|
+
|
|
650
666
|
attr_accessor wbraid: String?
|
|
651
667
|
|
|
652
668
|
attr_accessor zip: String?
|
|
@@ -710,6 +726,8 @@ module OursprivacyIngest
|
|
|
710
726
|
?utm_name: String?,
|
|
711
727
|
?utm_source: String?,
|
|
712
728
|
?utm_term: String?,
|
|
729
|
+
?viant_click_id: String?,
|
|
730
|
+
?viant_impression_id: String?,
|
|
713
731
|
?wbraid: String?,
|
|
714
732
|
?zip: String?
|
|
715
733
|
) -> void
|
|
@@ -773,6 +791,8 @@ module OursprivacyIngest
|
|
|
773
791
|
utm_name: String?,
|
|
774
792
|
utm_source: String?,
|
|
775
793
|
utm_term: String?,
|
|
794
|
+
viant_click_id: String?,
|
|
795
|
+
viant_impression_id: String?,
|
|
776
796
|
wbraid: String?,
|
|
777
797
|
zip: String?
|
|
778
798
|
}
|
|
@@ -112,6 +112,8 @@ module OursprivacyIngest
|
|
|
112
112
|
utm_name: String?,
|
|
113
113
|
utm_source: String?,
|
|
114
114
|
utm_term: String?,
|
|
115
|
+
viant_click_id: String?,
|
|
116
|
+
viant_impression_id: String?,
|
|
115
117
|
wbraid: String?,
|
|
116
118
|
zip: String?
|
|
117
119
|
}
|
|
@@ -233,6 +235,10 @@ module OursprivacyIngest
|
|
|
233
235
|
|
|
234
236
|
attr_accessor utm_term: String?
|
|
235
237
|
|
|
238
|
+
attr_accessor viant_click_id: String?
|
|
239
|
+
|
|
240
|
+
attr_accessor viant_impression_id: String?
|
|
241
|
+
|
|
236
242
|
attr_accessor wbraid: String?
|
|
237
243
|
|
|
238
244
|
attr_accessor zip: String?
|
|
@@ -296,6 +302,8 @@ module OursprivacyIngest
|
|
|
296
302
|
?utm_name: String?,
|
|
297
303
|
?utm_source: String?,
|
|
298
304
|
?utm_term: String?,
|
|
305
|
+
?viant_click_id: String?,
|
|
306
|
+
?viant_impression_id: String?,
|
|
299
307
|
?wbraid: String?,
|
|
300
308
|
?zip: String?
|
|
301
309
|
) -> void
|
|
@@ -359,6 +367,8 @@ module OursprivacyIngest
|
|
|
359
367
|
utm_name: String?,
|
|
360
368
|
utm_source: String?,
|
|
361
369
|
utm_term: String?,
|
|
370
|
+
viant_click_id: String?,
|
|
371
|
+
viant_impression_id: String?,
|
|
362
372
|
wbraid: String?,
|
|
363
373
|
zip: String?
|
|
364
374
|
}
|
|
@@ -438,6 +448,8 @@ module OursprivacyIngest
|
|
|
438
448
|
utm_source: String?,
|
|
439
449
|
utm_term: String?,
|
|
440
450
|
version: String?,
|
|
451
|
+
viant_click_id: String?,
|
|
452
|
+
viant_impression_id: String?,
|
|
441
453
|
wbraid: String?,
|
|
442
454
|
webview: bool?
|
|
443
455
|
}
|
|
@@ -587,6 +599,10 @@ module OursprivacyIngest
|
|
|
587
599
|
|
|
588
600
|
attr_accessor version: String?
|
|
589
601
|
|
|
602
|
+
attr_accessor viant_click_id: String?
|
|
603
|
+
|
|
604
|
+
attr_accessor viant_impression_id: String?
|
|
605
|
+
|
|
590
606
|
attr_accessor wbraid: String?
|
|
591
607
|
|
|
592
608
|
attr_accessor webview: bool?
|
|
@@ -664,6 +680,8 @@ module OursprivacyIngest
|
|
|
664
680
|
?utm_source: String?,
|
|
665
681
|
?utm_term: String?,
|
|
666
682
|
?version: String?,
|
|
683
|
+
?viant_click_id: String?,
|
|
684
|
+
?viant_impression_id: String?,
|
|
667
685
|
?wbraid: String?,
|
|
668
686
|
?webview: bool?
|
|
669
687
|
) -> void
|
|
@@ -741,6 +759,8 @@ module OursprivacyIngest
|
|
|
741
759
|
utm_source: String?,
|
|
742
760
|
utm_term: String?,
|
|
743
761
|
version: String?,
|
|
762
|
+
viant_click_id: String?,
|
|
763
|
+
viant_impression_id: String?,
|
|
744
764
|
wbraid: String?,
|
|
745
765
|
webview: bool?
|
|
746
766
|
}
|
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.9.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-05-
|
|
11
|
+
date: 2026-05-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|