oursprivacy-ingest 1.8.0 → 1.10.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 +16 -0
- data/README.md +1 -1
- data/lib/oursprivacy_ingest/models/batch_create_params.rb +54 -2
- data/lib/oursprivacy_ingest/models/track_event_params.rb +54 -2
- data/lib/oursprivacy_ingest/models/visitor_upsert_params.rb +54 -2
- data/lib/oursprivacy_ingest/version.rb +1 -1
- data/rbi/oursprivacy_ingest/models/batch_create_params.rbi +56 -0
- data/rbi/oursprivacy_ingest/models/track_event_params.rbi +56 -0
- data/rbi/oursprivacy_ingest/models/visitor_upsert_params.rbi +56 -0
- data/sig/oursprivacy_ingest/models/batch_create_params.rbs +30 -0
- data/sig/oursprivacy_ingest/models/track_event_params.rbs +30 -0
- data/sig/oursprivacy_ingest/models/visitor_upsert_params.rbs +30 -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: 5b37fe59b66fe28fc56f5e19dc9b6440478ddbb90f387e9b618f2aade2a2e281
|
|
4
|
+
data.tar.gz: f1015c560142fd14deb6c9892b5349ea3c062da30610dd7fb56387abb59a309a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 52e45a24efacfc15f4826b5fb696aae27c484bb1f8e507f04c70af9040707ee961862f5217b1bc8eac3e9075f71a563687d7e77e9073a2d168ce64c4c2a0b578
|
|
7
|
+
data.tar.gz: 321cb84832e867f3fa31dda24bf650f8e2b15df38775853795c1a07277e30c512abd2fdffc6087a2c17f9cc07fd958b379c784471d65a194516b1930ad95d3f3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.10.0 (2026-05-27)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.9.0...v1.10.0](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.9.0...v1.10.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([3968b6e](https://github.com/with-ours/ingest-sdk-ruby/commit/3968b6e51b8ef31269c905af417dcde9c8bab383))
|
|
10
|
+
|
|
11
|
+
## 1.9.0 (2026-05-21)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.8.0...v1.9.0](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.8.0...v1.9.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([a00fbb0](https://github.com/with-ours/ingest-sdk-ruby/commit/a00fbb0136b931736c31bc7b3aa2a7a9a0a5c533))
|
|
18
|
+
|
|
3
19
|
## 1.8.0 (2026-05-14)
|
|
4
20
|
|
|
5
21
|
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.10.0"
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
<!-- x-release-please-end -->
|
|
@@ -416,6 +416,15 @@ module OursprivacyIngest
|
|
|
416
416
|
# @return [Boolean, nil]
|
|
417
417
|
optional :new_s, OursprivacyIngest::Internal::Type::Boolean, nil?: true
|
|
418
418
|
|
|
419
|
+
# @!attribute oppref
|
|
420
|
+
# The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL
|
|
421
|
+
# parameter on landing pages (the OpenAI Pixel also stores it in a `__oppref`
|
|
422
|
+
# cookie). Sent to OpenAI Ads on Conversions API events for attribution. Ex:
|
|
423
|
+
# oppref_abc
|
|
424
|
+
#
|
|
425
|
+
# @return [String, nil]
|
|
426
|
+
optional :oppref, String, nil?: true
|
|
427
|
+
|
|
419
428
|
# @!attribute os_name
|
|
420
429
|
# The name of the operating system. Ex: Windows
|
|
421
430
|
#
|
|
@@ -584,6 +593,22 @@ module OursprivacyIngest
|
|
|
584
593
|
# @return [String, nil]
|
|
585
594
|
optional :version, String, nil?: true
|
|
586
595
|
|
|
596
|
+
# @!attribute viant_click_id
|
|
597
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
598
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
599
|
+
# viant_click_abc123
|
|
600
|
+
#
|
|
601
|
+
# @return [String, nil]
|
|
602
|
+
optional :viant_click_id, String, nil?: true
|
|
603
|
+
|
|
604
|
+
# @!attribute viant_impression_id
|
|
605
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
606
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
607
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
608
|
+
#
|
|
609
|
+
# @return [String, nil]
|
|
610
|
+
optional :viant_impression_id, String, nil?: true
|
|
611
|
+
|
|
587
612
|
# @!attribute wbraid
|
|
588
613
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
589
614
|
# params.
|
|
@@ -597,7 +622,7 @@ module OursprivacyIngest
|
|
|
597
622
|
# @return [Boolean, nil]
|
|
598
623
|
optional :webview, OursprivacyIngest::Internal::Type::Boolean, nil?: true
|
|
599
624
|
|
|
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)
|
|
625
|
+
# @!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, oppref: 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
626
|
# Some parameter documentations has been truncated, see
|
|
602
627
|
# {OursprivacyIngest::Models::BatchCreateParams::Event::DefaultProperties} for
|
|
603
628
|
# more details.
|
|
@@ -694,6 +719,8 @@ module OursprivacyIngest
|
|
|
694
719
|
#
|
|
695
720
|
# @param new_s [Boolean, nil] Deprecated
|
|
696
721
|
#
|
|
722
|
+
# @param oppref [String, nil] The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL para
|
|
723
|
+
#
|
|
697
724
|
# @param os_name [String, nil] The name of the operating system. Ex: Windows
|
|
698
725
|
#
|
|
699
726
|
# @param os_version [String, nil] The version of the operating system. Ex: 10.0
|
|
@@ -750,6 +777,10 @@ module OursprivacyIngest
|
|
|
750
777
|
#
|
|
751
778
|
# @param version [String, nil] The version of the web SDK
|
|
752
779
|
#
|
|
780
|
+
# @param viant_click_id [String, nil] The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
781
|
+
#
|
|
782
|
+
# @param viant_impression_id [String, nil] The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
783
|
+
#
|
|
753
784
|
# @param wbraid [String, nil] The WBRAID Identifier. The web SDK automatically captures this from the query pa
|
|
754
785
|
#
|
|
755
786
|
# @param webview [Boolean, nil] Whether the user is in a webview. Ex: true
|
|
@@ -979,6 +1010,11 @@ module OursprivacyIngest
|
|
|
979
1010
|
# @return [String, nil]
|
|
980
1011
|
optional :ndclid, String, nil?: true
|
|
981
1012
|
|
|
1013
|
+
# @!attribute oppref
|
|
1014
|
+
#
|
|
1015
|
+
# @return [String, nil]
|
|
1016
|
+
optional :oppref, String, nil?: true
|
|
1017
|
+
|
|
982
1018
|
# @!attribute phone_number
|
|
983
1019
|
#
|
|
984
1020
|
# @return [String, nil]
|
|
@@ -1074,6 +1110,16 @@ module OursprivacyIngest
|
|
|
1074
1110
|
# @return [String, nil]
|
|
1075
1111
|
optional :utm_term, String, nil?: true
|
|
1076
1112
|
|
|
1113
|
+
# @!attribute viant_click_id
|
|
1114
|
+
#
|
|
1115
|
+
# @return [String, nil]
|
|
1116
|
+
optional :viant_click_id, String, nil?: true
|
|
1117
|
+
|
|
1118
|
+
# @!attribute viant_impression_id
|
|
1119
|
+
#
|
|
1120
|
+
# @return [String, nil]
|
|
1121
|
+
optional :viant_impression_id, String, nil?: true
|
|
1122
|
+
|
|
1077
1123
|
# @!attribute wbraid
|
|
1078
1124
|
#
|
|
1079
1125
|
# @return [String, nil]
|
|
@@ -1084,7 +1130,7 @@ module OursprivacyIngest
|
|
|
1084
1130
|
# @return [String, nil]
|
|
1085
1131
|
optional :zip, String, nil?: true
|
|
1086
1132
|
|
|
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)
|
|
1133
|
+
# @!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, oppref: 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
1134
|
# Properties to set on the visitor. (optional) You can also update these
|
|
1089
1135
|
# properties via the identify endpoint.
|
|
1090
1136
|
#
|
|
@@ -1166,6 +1212,8 @@ module OursprivacyIngest
|
|
|
1166
1212
|
#
|
|
1167
1213
|
# @param ndclid [String, nil]
|
|
1168
1214
|
#
|
|
1215
|
+
# @param oppref [String, nil]
|
|
1216
|
+
#
|
|
1169
1217
|
# @param phone_number [String, nil]
|
|
1170
1218
|
#
|
|
1171
1219
|
# @param qclid [String, nil]
|
|
@@ -1204,6 +1252,10 @@ module OursprivacyIngest
|
|
|
1204
1252
|
#
|
|
1205
1253
|
# @param utm_term [String, nil]
|
|
1206
1254
|
#
|
|
1255
|
+
# @param viant_click_id [String, nil]
|
|
1256
|
+
#
|
|
1257
|
+
# @param viant_impression_id [String, nil]
|
|
1258
|
+
#
|
|
1207
1259
|
# @param wbraid [String, nil]
|
|
1208
1260
|
#
|
|
1209
1261
|
# @param zip [String, nil]
|
|
@@ -404,6 +404,15 @@ module OursprivacyIngest
|
|
|
404
404
|
# @return [Boolean, nil]
|
|
405
405
|
optional :new_s, OursprivacyIngest::Internal::Type::Boolean, nil?: true
|
|
406
406
|
|
|
407
|
+
# @!attribute oppref
|
|
408
|
+
# The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL
|
|
409
|
+
# parameter on landing pages (the OpenAI Pixel also stores it in a `__oppref`
|
|
410
|
+
# cookie). Sent to OpenAI Ads on Conversions API events for attribution. Ex:
|
|
411
|
+
# oppref_abc
|
|
412
|
+
#
|
|
413
|
+
# @return [String, nil]
|
|
414
|
+
optional :oppref, String, nil?: true
|
|
415
|
+
|
|
407
416
|
# @!attribute os_name
|
|
408
417
|
# The name of the operating system. Ex: Windows
|
|
409
418
|
#
|
|
@@ -572,6 +581,22 @@ module OursprivacyIngest
|
|
|
572
581
|
# @return [String, nil]
|
|
573
582
|
optional :version, String, nil?: true
|
|
574
583
|
|
|
584
|
+
# @!attribute viant_click_id
|
|
585
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
586
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
587
|
+
# viant_click_abc123
|
|
588
|
+
#
|
|
589
|
+
# @return [String, nil]
|
|
590
|
+
optional :viant_click_id, String, nil?: true
|
|
591
|
+
|
|
592
|
+
# @!attribute viant_impression_id
|
|
593
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
594
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
595
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
596
|
+
#
|
|
597
|
+
# @return [String, nil]
|
|
598
|
+
optional :viant_impression_id, String, nil?: true
|
|
599
|
+
|
|
575
600
|
# @!attribute wbraid
|
|
576
601
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
577
602
|
# params.
|
|
@@ -585,7 +610,7 @@ module OursprivacyIngest
|
|
|
585
610
|
# @return [Boolean, nil]
|
|
586
611
|
optional :webview, OursprivacyIngest::Internal::Type::Boolean, nil?: true
|
|
587
612
|
|
|
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)
|
|
613
|
+
# @!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, oppref: 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
614
|
# Some parameter documentations has been truncated, see
|
|
590
615
|
# {OursprivacyIngest::Models::TrackEventParams::DefaultProperties} for more
|
|
591
616
|
# details.
|
|
@@ -682,6 +707,8 @@ module OursprivacyIngest
|
|
|
682
707
|
#
|
|
683
708
|
# @param new_s [Boolean, nil] Deprecated
|
|
684
709
|
#
|
|
710
|
+
# @param oppref [String, nil] The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL para
|
|
711
|
+
#
|
|
685
712
|
# @param os_name [String, nil] The name of the operating system. Ex: Windows
|
|
686
713
|
#
|
|
687
714
|
# @param os_version [String, nil] The version of the operating system. Ex: 10.0
|
|
@@ -738,6 +765,10 @@ module OursprivacyIngest
|
|
|
738
765
|
#
|
|
739
766
|
# @param version [String, nil] The version of the web SDK
|
|
740
767
|
#
|
|
768
|
+
# @param viant_click_id [String, nil] The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
769
|
+
#
|
|
770
|
+
# @param viant_impression_id [String, nil] The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
771
|
+
#
|
|
741
772
|
# @param wbraid [String, nil] The WBRAID Identifier. The web SDK automatically captures this from the query pa
|
|
742
773
|
#
|
|
743
774
|
# @param webview [Boolean, nil] Whether the user is in a webview. Ex: true
|
|
@@ -963,6 +994,11 @@ module OursprivacyIngest
|
|
|
963
994
|
# @return [String, nil]
|
|
964
995
|
optional :ndclid, String, nil?: true
|
|
965
996
|
|
|
997
|
+
# @!attribute oppref
|
|
998
|
+
#
|
|
999
|
+
# @return [String, nil]
|
|
1000
|
+
optional :oppref, String, nil?: true
|
|
1001
|
+
|
|
966
1002
|
# @!attribute phone_number
|
|
967
1003
|
#
|
|
968
1004
|
# @return [String, nil]
|
|
@@ -1058,6 +1094,16 @@ module OursprivacyIngest
|
|
|
1058
1094
|
# @return [String, nil]
|
|
1059
1095
|
optional :utm_term, String, nil?: true
|
|
1060
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
|
+
|
|
1061
1107
|
# @!attribute wbraid
|
|
1062
1108
|
#
|
|
1063
1109
|
# @return [String, nil]
|
|
@@ -1068,7 +1114,7 @@ module OursprivacyIngest
|
|
|
1068
1114
|
# @return [String, nil]
|
|
1069
1115
|
optional :zip, String, nil?: true
|
|
1070
1116
|
|
|
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)
|
|
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, oppref: 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
1118
|
# Properties to set on the visitor. (optional) You can also update these
|
|
1073
1119
|
# properties via the identify endpoint.
|
|
1074
1120
|
#
|
|
@@ -1150,6 +1196,8 @@ module OursprivacyIngest
|
|
|
1150
1196
|
#
|
|
1151
1197
|
# @param ndclid [String, nil]
|
|
1152
1198
|
#
|
|
1199
|
+
# @param oppref [String, nil]
|
|
1200
|
+
#
|
|
1153
1201
|
# @param phone_number [String, nil]
|
|
1154
1202
|
#
|
|
1155
1203
|
# @param qclid [String, nil]
|
|
@@ -1188,6 +1236,10 @@ module OursprivacyIngest
|
|
|
1188
1236
|
#
|
|
1189
1237
|
# @param utm_term [String, nil]
|
|
1190
1238
|
#
|
|
1239
|
+
# @param viant_click_id [String, nil]
|
|
1240
|
+
#
|
|
1241
|
+
# @param viant_impression_id [String, nil]
|
|
1242
|
+
#
|
|
1191
1243
|
# @param wbraid [String, nil]
|
|
1192
1244
|
#
|
|
1193
1245
|
# @param zip [String, nil]
|
|
@@ -288,6 +288,11 @@ module OursprivacyIngest
|
|
|
288
288
|
# @return [String, nil]
|
|
289
289
|
optional :ndclid, String, nil?: true
|
|
290
290
|
|
|
291
|
+
# @!attribute oppref
|
|
292
|
+
#
|
|
293
|
+
# @return [String, nil]
|
|
294
|
+
optional :oppref, String, nil?: true
|
|
295
|
+
|
|
291
296
|
# @!attribute phone_number
|
|
292
297
|
#
|
|
293
298
|
# @return [String, nil]
|
|
@@ -383,6 +388,16 @@ module OursprivacyIngest
|
|
|
383
388
|
# @return [String, nil]
|
|
384
389
|
optional :utm_term, String, nil?: true
|
|
385
390
|
|
|
391
|
+
# @!attribute viant_click_id
|
|
392
|
+
#
|
|
393
|
+
# @return [String, nil]
|
|
394
|
+
optional :viant_click_id, String, nil?: true
|
|
395
|
+
|
|
396
|
+
# @!attribute viant_impression_id
|
|
397
|
+
#
|
|
398
|
+
# @return [String, nil]
|
|
399
|
+
optional :viant_impression_id, String, nil?: true
|
|
400
|
+
|
|
386
401
|
# @!attribute wbraid
|
|
387
402
|
#
|
|
388
403
|
# @return [String, nil]
|
|
@@ -393,7 +408,7 @@ module OursprivacyIngest
|
|
|
393
408
|
# @return [String, nil]
|
|
394
409
|
optional :zip, String, nil?: true
|
|
395
410
|
|
|
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)
|
|
411
|
+
# @!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, oppref: 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
412
|
# User properties to associate with this user. The existing user properties will
|
|
398
413
|
# be updated. And all future events will have these properties associated with
|
|
399
414
|
# them.
|
|
@@ -476,6 +491,8 @@ module OursprivacyIngest
|
|
|
476
491
|
#
|
|
477
492
|
# @param ndclid [String, nil]
|
|
478
493
|
#
|
|
494
|
+
# @param oppref [String, nil]
|
|
495
|
+
#
|
|
479
496
|
# @param phone_number [String, nil]
|
|
480
497
|
#
|
|
481
498
|
# @param qclid [String, nil]
|
|
@@ -514,6 +531,10 @@ module OursprivacyIngest
|
|
|
514
531
|
#
|
|
515
532
|
# @param utm_term [String, nil]
|
|
516
533
|
#
|
|
534
|
+
# @param viant_click_id [String, nil]
|
|
535
|
+
#
|
|
536
|
+
# @param viant_impression_id [String, nil]
|
|
537
|
+
#
|
|
517
538
|
# @param wbraid [String, nil]
|
|
518
539
|
#
|
|
519
540
|
# @param zip [String, nil]
|
|
@@ -792,6 +813,15 @@ module OursprivacyIngest
|
|
|
792
813
|
# @return [Boolean, nil]
|
|
793
814
|
optional :new_s, OursprivacyIngest::Internal::Type::Boolean, nil?: true
|
|
794
815
|
|
|
816
|
+
# @!attribute oppref
|
|
817
|
+
# The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL
|
|
818
|
+
# parameter on landing pages (the OpenAI Pixel also stores it in a `__oppref`
|
|
819
|
+
# cookie). Sent to OpenAI Ads on Conversions API events for attribution. Ex:
|
|
820
|
+
# oppref_abc
|
|
821
|
+
#
|
|
822
|
+
# @return [String, nil]
|
|
823
|
+
optional :oppref, String, nil?: true
|
|
824
|
+
|
|
795
825
|
# @!attribute os_name
|
|
796
826
|
# The name of the operating system. Ex: Windows
|
|
797
827
|
#
|
|
@@ -960,6 +990,22 @@ module OursprivacyIngest
|
|
|
960
990
|
# @return [String, nil]
|
|
961
991
|
optional :version, String, nil?: true
|
|
962
992
|
|
|
993
|
+
# @!attribute viant_click_id
|
|
994
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
995
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
996
|
+
# viant_click_abc123
|
|
997
|
+
#
|
|
998
|
+
# @return [String, nil]
|
|
999
|
+
optional :viant_click_id, String, nil?: true
|
|
1000
|
+
|
|
1001
|
+
# @!attribute viant_impression_id
|
|
1002
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
1003
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
1004
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
1005
|
+
#
|
|
1006
|
+
# @return [String, nil]
|
|
1007
|
+
optional :viant_impression_id, String, nil?: true
|
|
1008
|
+
|
|
963
1009
|
# @!attribute wbraid
|
|
964
1010
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
965
1011
|
# params.
|
|
@@ -973,7 +1019,7 @@ module OursprivacyIngest
|
|
|
973
1019
|
# @return [Boolean, nil]
|
|
974
1020
|
optional :webview, OursprivacyIngest::Internal::Type::Boolean, nil?: true
|
|
975
1021
|
|
|
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)
|
|
1022
|
+
# @!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, oppref: 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
1023
|
# Some parameter documentations has been truncated, see
|
|
978
1024
|
# {OursprivacyIngest::Models::VisitorUpsertParams::DefaultProperties} for more
|
|
979
1025
|
# details.
|
|
@@ -1070,6 +1116,8 @@ module OursprivacyIngest
|
|
|
1070
1116
|
#
|
|
1071
1117
|
# @param new_s [Boolean, nil] Deprecated
|
|
1072
1118
|
#
|
|
1119
|
+
# @param oppref [String, nil] The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL para
|
|
1120
|
+
#
|
|
1073
1121
|
# @param os_name [String, nil] The name of the operating system. Ex: Windows
|
|
1074
1122
|
#
|
|
1075
1123
|
# @param os_version [String, nil] The version of the operating system. Ex: 10.0
|
|
@@ -1126,6 +1174,10 @@ module OursprivacyIngest
|
|
|
1126
1174
|
#
|
|
1127
1175
|
# @param version [String, nil] The version of the web SDK
|
|
1128
1176
|
#
|
|
1177
|
+
# @param viant_click_id [String, nil] The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
1178
|
+
#
|
|
1179
|
+
# @param viant_impression_id [String, nil] The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
1180
|
+
#
|
|
1129
1181
|
# @param wbraid [String, nil] The WBRAID Identifier. The web SDK automatically captures this from the query pa
|
|
1130
1182
|
#
|
|
1131
1183
|
# @param webview [Boolean, nil] Whether the user is in a webview. Ex: true
|
|
@@ -451,6 +451,13 @@ module OursprivacyIngest
|
|
|
451
451
|
sig { returns(T.nilable(T::Boolean)) }
|
|
452
452
|
attr_accessor :new_s
|
|
453
453
|
|
|
454
|
+
# The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL
|
|
455
|
+
# parameter on landing pages (the OpenAI Pixel also stores it in a `__oppref`
|
|
456
|
+
# cookie). Sent to OpenAI Ads on Conversions API events for attribution. Ex:
|
|
457
|
+
# oppref_abc
|
|
458
|
+
sig { returns(T.nilable(String)) }
|
|
459
|
+
attr_accessor :oppref
|
|
460
|
+
|
|
454
461
|
# The name of the operating system. Ex: Windows
|
|
455
462
|
sig { returns(T.nilable(String)) }
|
|
456
463
|
attr_accessor :os_name
|
|
@@ -563,6 +570,18 @@ module OursprivacyIngest
|
|
|
563
570
|
sig { returns(T.nilable(String)) }
|
|
564
571
|
attr_accessor :version
|
|
565
572
|
|
|
573
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
574
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
575
|
+
# viant_click_abc123
|
|
576
|
+
sig { returns(T.nilable(String)) }
|
|
577
|
+
attr_accessor :viant_click_id
|
|
578
|
+
|
|
579
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
580
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
581
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
582
|
+
sig { returns(T.nilable(String)) }
|
|
583
|
+
attr_accessor :viant_impression_id
|
|
584
|
+
|
|
566
585
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
567
586
|
# params.
|
|
568
587
|
sig { returns(T.nilable(String)) }
|
|
@@ -620,6 +639,7 @@ module OursprivacyIngest
|
|
|
620
639
|
msclkid: T.nilable(String),
|
|
621
640
|
ndclid: T.nilable(String),
|
|
622
641
|
new_s: T.nilable(T::Boolean),
|
|
642
|
+
oppref: T.nilable(String),
|
|
623
643
|
os_name: T.nilable(String),
|
|
624
644
|
os_version: T.nilable(String),
|
|
625
645
|
page_hash: T.nilable(Float),
|
|
@@ -648,6 +668,8 @@ module OursprivacyIngest
|
|
|
648
668
|
utm_source: T.nilable(String),
|
|
649
669
|
utm_term: T.nilable(String),
|
|
650
670
|
version: T.nilable(String),
|
|
671
|
+
viant_click_id: T.nilable(String),
|
|
672
|
+
viant_impression_id: T.nilable(String),
|
|
651
673
|
wbraid: T.nilable(String),
|
|
652
674
|
webview: T.nilable(T::Boolean)
|
|
653
675
|
).returns(T.attached_class)
|
|
@@ -749,6 +771,11 @@ module OursprivacyIngest
|
|
|
749
771
|
ndclid: nil,
|
|
750
772
|
# Deprecated
|
|
751
773
|
new_s: nil,
|
|
774
|
+
# The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL
|
|
775
|
+
# parameter on landing pages (the OpenAI Pixel also stores it in a `__oppref`
|
|
776
|
+
# cookie). Sent to OpenAI Ads on Conversions API events for attribution. Ex:
|
|
777
|
+
# oppref_abc
|
|
778
|
+
oppref: nil,
|
|
752
779
|
# The name of the operating system. Ex: Windows
|
|
753
780
|
os_name: nil,
|
|
754
781
|
# The version of the operating system. Ex: 10.0
|
|
@@ -805,6 +832,14 @@ module OursprivacyIngest
|
|
|
805
832
|
utm_term: nil,
|
|
806
833
|
# The version of the web SDK
|
|
807
834
|
version: nil,
|
|
835
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
836
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
837
|
+
# viant_click_abc123
|
|
838
|
+
viant_click_id: nil,
|
|
839
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
840
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
841
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
842
|
+
viant_impression_id: nil,
|
|
808
843
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
809
844
|
# params.
|
|
810
845
|
wbraid: nil,
|
|
@@ -860,6 +895,7 @@ module OursprivacyIngest
|
|
|
860
895
|
msclkid: T.nilable(String),
|
|
861
896
|
ndclid: T.nilable(String),
|
|
862
897
|
new_s: T.nilable(T::Boolean),
|
|
898
|
+
oppref: T.nilable(String),
|
|
863
899
|
os_name: T.nilable(String),
|
|
864
900
|
os_version: T.nilable(String),
|
|
865
901
|
page_hash: T.nilable(Float),
|
|
@@ -888,6 +924,8 @@ module OursprivacyIngest
|
|
|
888
924
|
utm_source: T.nilable(String),
|
|
889
925
|
utm_term: T.nilable(String),
|
|
890
926
|
version: T.nilable(String),
|
|
927
|
+
viant_click_id: T.nilable(String),
|
|
928
|
+
viant_impression_id: T.nilable(String),
|
|
891
929
|
wbraid: T.nilable(String),
|
|
892
930
|
webview: T.nilable(T::Boolean)
|
|
893
931
|
}
|
|
@@ -1060,6 +1098,9 @@ module OursprivacyIngest
|
|
|
1060
1098
|
sig { returns(T.nilable(String)) }
|
|
1061
1099
|
attr_accessor :ndclid
|
|
1062
1100
|
|
|
1101
|
+
sig { returns(T.nilable(String)) }
|
|
1102
|
+
attr_accessor :oppref
|
|
1103
|
+
|
|
1063
1104
|
sig { returns(T.nilable(String)) }
|
|
1064
1105
|
attr_accessor :phone_number
|
|
1065
1106
|
|
|
@@ -1117,6 +1158,12 @@ module OursprivacyIngest
|
|
|
1117
1158
|
sig { returns(T.nilable(String)) }
|
|
1118
1159
|
attr_accessor :utm_term
|
|
1119
1160
|
|
|
1161
|
+
sig { returns(T.nilable(String)) }
|
|
1162
|
+
attr_accessor :viant_click_id
|
|
1163
|
+
|
|
1164
|
+
sig { returns(T.nilable(String)) }
|
|
1165
|
+
attr_accessor :viant_impression_id
|
|
1166
|
+
|
|
1120
1167
|
sig { returns(T.nilable(String)) }
|
|
1121
1168
|
attr_accessor :wbraid
|
|
1122
1169
|
|
|
@@ -1166,6 +1213,7 @@ module OursprivacyIngest
|
|
|
1166
1213
|
li_fat_id: T.nilable(String),
|
|
1167
1214
|
msclkid: T.nilable(String),
|
|
1168
1215
|
ndclid: T.nilable(String),
|
|
1216
|
+
oppref: T.nilable(String),
|
|
1169
1217
|
phone_number: T.nilable(String),
|
|
1170
1218
|
qclid: T.nilable(String),
|
|
1171
1219
|
rdt_cid: T.nilable(String),
|
|
@@ -1185,6 +1233,8 @@ module OursprivacyIngest
|
|
|
1185
1233
|
utm_name: T.nilable(String),
|
|
1186
1234
|
utm_source: T.nilable(String),
|
|
1187
1235
|
utm_term: T.nilable(String),
|
|
1236
|
+
viant_click_id: T.nilable(String),
|
|
1237
|
+
viant_impression_id: T.nilable(String),
|
|
1188
1238
|
wbraid: T.nilable(String),
|
|
1189
1239
|
zip: T.nilable(String)
|
|
1190
1240
|
).returns(T.attached_class)
|
|
@@ -1230,6 +1280,7 @@ module OursprivacyIngest
|
|
|
1230
1280
|
li_fat_id: nil,
|
|
1231
1281
|
msclkid: nil,
|
|
1232
1282
|
ndclid: nil,
|
|
1283
|
+
oppref: nil,
|
|
1233
1284
|
phone_number: nil,
|
|
1234
1285
|
qclid: nil,
|
|
1235
1286
|
rdt_cid: nil,
|
|
@@ -1249,6 +1300,8 @@ module OursprivacyIngest
|
|
|
1249
1300
|
utm_name: nil,
|
|
1250
1301
|
utm_source: nil,
|
|
1251
1302
|
utm_term: nil,
|
|
1303
|
+
viant_click_id: nil,
|
|
1304
|
+
viant_impression_id: nil,
|
|
1252
1305
|
wbraid: nil,
|
|
1253
1306
|
zip: nil
|
|
1254
1307
|
)
|
|
@@ -1297,6 +1350,7 @@ module OursprivacyIngest
|
|
|
1297
1350
|
li_fat_id: T.nilable(String),
|
|
1298
1351
|
msclkid: T.nilable(String),
|
|
1299
1352
|
ndclid: T.nilable(String),
|
|
1353
|
+
oppref: T.nilable(String),
|
|
1300
1354
|
phone_number: T.nilable(String),
|
|
1301
1355
|
qclid: T.nilable(String),
|
|
1302
1356
|
rdt_cid: T.nilable(String),
|
|
@@ -1316,6 +1370,8 @@ module OursprivacyIngest
|
|
|
1316
1370
|
utm_name: T.nilable(String),
|
|
1317
1371
|
utm_source: T.nilable(String),
|
|
1318
1372
|
utm_term: T.nilable(String),
|
|
1373
|
+
viant_click_id: T.nilable(String),
|
|
1374
|
+
viant_impression_id: T.nilable(String),
|
|
1319
1375
|
wbraid: T.nilable(String),
|
|
1320
1376
|
zip: T.nilable(String)
|
|
1321
1377
|
}
|
|
@@ -401,6 +401,13 @@ module OursprivacyIngest
|
|
|
401
401
|
sig { returns(T.nilable(T::Boolean)) }
|
|
402
402
|
attr_accessor :new_s
|
|
403
403
|
|
|
404
|
+
# The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL
|
|
405
|
+
# parameter on landing pages (the OpenAI Pixel also stores it in a `__oppref`
|
|
406
|
+
# cookie). Sent to OpenAI Ads on Conversions API events for attribution. Ex:
|
|
407
|
+
# oppref_abc
|
|
408
|
+
sig { returns(T.nilable(String)) }
|
|
409
|
+
attr_accessor :oppref
|
|
410
|
+
|
|
404
411
|
# The name of the operating system. Ex: Windows
|
|
405
412
|
sig { returns(T.nilable(String)) }
|
|
406
413
|
attr_accessor :os_name
|
|
@@ -513,6 +520,18 @@ module OursprivacyIngest
|
|
|
513
520
|
sig { returns(T.nilable(String)) }
|
|
514
521
|
attr_accessor :version
|
|
515
522
|
|
|
523
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
524
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
525
|
+
# viant_click_abc123
|
|
526
|
+
sig { returns(T.nilable(String)) }
|
|
527
|
+
attr_accessor :viant_click_id
|
|
528
|
+
|
|
529
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
530
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
531
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
532
|
+
sig { returns(T.nilable(String)) }
|
|
533
|
+
attr_accessor :viant_impression_id
|
|
534
|
+
|
|
516
535
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
517
536
|
# params.
|
|
518
537
|
sig { returns(T.nilable(String)) }
|
|
@@ -570,6 +589,7 @@ module OursprivacyIngest
|
|
|
570
589
|
msclkid: T.nilable(String),
|
|
571
590
|
ndclid: T.nilable(String),
|
|
572
591
|
new_s: T.nilable(T::Boolean),
|
|
592
|
+
oppref: T.nilable(String),
|
|
573
593
|
os_name: T.nilable(String),
|
|
574
594
|
os_version: T.nilable(String),
|
|
575
595
|
page_hash: T.nilable(Float),
|
|
@@ -598,6 +618,8 @@ module OursprivacyIngest
|
|
|
598
618
|
utm_source: T.nilable(String),
|
|
599
619
|
utm_term: T.nilable(String),
|
|
600
620
|
version: T.nilable(String),
|
|
621
|
+
viant_click_id: T.nilable(String),
|
|
622
|
+
viant_impression_id: T.nilable(String),
|
|
601
623
|
wbraid: T.nilable(String),
|
|
602
624
|
webview: T.nilable(T::Boolean)
|
|
603
625
|
).returns(T.attached_class)
|
|
@@ -699,6 +721,11 @@ module OursprivacyIngest
|
|
|
699
721
|
ndclid: nil,
|
|
700
722
|
# Deprecated
|
|
701
723
|
new_s: nil,
|
|
724
|
+
# The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL
|
|
725
|
+
# parameter on landing pages (the OpenAI Pixel also stores it in a `__oppref`
|
|
726
|
+
# cookie). Sent to OpenAI Ads on Conversions API events for attribution. Ex:
|
|
727
|
+
# oppref_abc
|
|
728
|
+
oppref: nil,
|
|
702
729
|
# The name of the operating system. Ex: Windows
|
|
703
730
|
os_name: nil,
|
|
704
731
|
# The version of the operating system. Ex: 10.0
|
|
@@ -755,6 +782,14 @@ module OursprivacyIngest
|
|
|
755
782
|
utm_term: nil,
|
|
756
783
|
# The version of the web SDK
|
|
757
784
|
version: nil,
|
|
785
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
786
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
787
|
+
# viant_click_abc123
|
|
788
|
+
viant_click_id: nil,
|
|
789
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
790
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
791
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
792
|
+
viant_impression_id: nil,
|
|
758
793
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
759
794
|
# params.
|
|
760
795
|
wbraid: nil,
|
|
@@ -810,6 +845,7 @@ module OursprivacyIngest
|
|
|
810
845
|
msclkid: T.nilable(String),
|
|
811
846
|
ndclid: T.nilable(String),
|
|
812
847
|
new_s: T.nilable(T::Boolean),
|
|
848
|
+
oppref: T.nilable(String),
|
|
813
849
|
os_name: T.nilable(String),
|
|
814
850
|
os_version: T.nilable(String),
|
|
815
851
|
page_hash: T.nilable(Float),
|
|
@@ -838,6 +874,8 @@ module OursprivacyIngest
|
|
|
838
874
|
utm_source: T.nilable(String),
|
|
839
875
|
utm_term: T.nilable(String),
|
|
840
876
|
version: T.nilable(String),
|
|
877
|
+
viant_click_id: T.nilable(String),
|
|
878
|
+
viant_impression_id: T.nilable(String),
|
|
841
879
|
wbraid: T.nilable(String),
|
|
842
880
|
webview: T.nilable(T::Boolean)
|
|
843
881
|
}
|
|
@@ -1008,6 +1046,9 @@ module OursprivacyIngest
|
|
|
1008
1046
|
sig { returns(T.nilable(String)) }
|
|
1009
1047
|
attr_accessor :ndclid
|
|
1010
1048
|
|
|
1049
|
+
sig { returns(T.nilable(String)) }
|
|
1050
|
+
attr_accessor :oppref
|
|
1051
|
+
|
|
1011
1052
|
sig { returns(T.nilable(String)) }
|
|
1012
1053
|
attr_accessor :phone_number
|
|
1013
1054
|
|
|
@@ -1065,6 +1106,12 @@ module OursprivacyIngest
|
|
|
1065
1106
|
sig { returns(T.nilable(String)) }
|
|
1066
1107
|
attr_accessor :utm_term
|
|
1067
1108
|
|
|
1109
|
+
sig { returns(T.nilable(String)) }
|
|
1110
|
+
attr_accessor :viant_click_id
|
|
1111
|
+
|
|
1112
|
+
sig { returns(T.nilable(String)) }
|
|
1113
|
+
attr_accessor :viant_impression_id
|
|
1114
|
+
|
|
1068
1115
|
sig { returns(T.nilable(String)) }
|
|
1069
1116
|
attr_accessor :wbraid
|
|
1070
1117
|
|
|
@@ -1114,6 +1161,7 @@ module OursprivacyIngest
|
|
|
1114
1161
|
li_fat_id: T.nilable(String),
|
|
1115
1162
|
msclkid: T.nilable(String),
|
|
1116
1163
|
ndclid: T.nilable(String),
|
|
1164
|
+
oppref: T.nilable(String),
|
|
1117
1165
|
phone_number: T.nilable(String),
|
|
1118
1166
|
qclid: T.nilable(String),
|
|
1119
1167
|
rdt_cid: T.nilable(String),
|
|
@@ -1133,6 +1181,8 @@ module OursprivacyIngest
|
|
|
1133
1181
|
utm_name: T.nilable(String),
|
|
1134
1182
|
utm_source: T.nilable(String),
|
|
1135
1183
|
utm_term: T.nilable(String),
|
|
1184
|
+
viant_click_id: T.nilable(String),
|
|
1185
|
+
viant_impression_id: T.nilable(String),
|
|
1136
1186
|
wbraid: T.nilable(String),
|
|
1137
1187
|
zip: T.nilable(String)
|
|
1138
1188
|
).returns(T.attached_class)
|
|
@@ -1178,6 +1228,7 @@ module OursprivacyIngest
|
|
|
1178
1228
|
li_fat_id: nil,
|
|
1179
1229
|
msclkid: nil,
|
|
1180
1230
|
ndclid: nil,
|
|
1231
|
+
oppref: nil,
|
|
1181
1232
|
phone_number: nil,
|
|
1182
1233
|
qclid: nil,
|
|
1183
1234
|
rdt_cid: nil,
|
|
@@ -1197,6 +1248,8 @@ module OursprivacyIngest
|
|
|
1197
1248
|
utm_name: nil,
|
|
1198
1249
|
utm_source: nil,
|
|
1199
1250
|
utm_term: nil,
|
|
1251
|
+
viant_click_id: nil,
|
|
1252
|
+
viant_impression_id: nil,
|
|
1200
1253
|
wbraid: nil,
|
|
1201
1254
|
zip: nil
|
|
1202
1255
|
)
|
|
@@ -1244,6 +1297,7 @@ module OursprivacyIngest
|
|
|
1244
1297
|
li_fat_id: T.nilable(String),
|
|
1245
1298
|
msclkid: T.nilable(String),
|
|
1246
1299
|
ndclid: T.nilable(String),
|
|
1300
|
+
oppref: T.nilable(String),
|
|
1247
1301
|
phone_number: T.nilable(String),
|
|
1248
1302
|
qclid: T.nilable(String),
|
|
1249
1303
|
rdt_cid: T.nilable(String),
|
|
@@ -1263,6 +1317,8 @@ module OursprivacyIngest
|
|
|
1263
1317
|
utm_name: T.nilable(String),
|
|
1264
1318
|
utm_source: T.nilable(String),
|
|
1265
1319
|
utm_term: T.nilable(String),
|
|
1320
|
+
viant_click_id: T.nilable(String),
|
|
1321
|
+
viant_impression_id: T.nilable(String),
|
|
1266
1322
|
wbraid: T.nilable(String),
|
|
1267
1323
|
zip: T.nilable(String)
|
|
1268
1324
|
}
|
|
@@ -295,6 +295,9 @@ module OursprivacyIngest
|
|
|
295
295
|
sig { returns(T.nilable(String)) }
|
|
296
296
|
attr_accessor :ndclid
|
|
297
297
|
|
|
298
|
+
sig { returns(T.nilable(String)) }
|
|
299
|
+
attr_accessor :oppref
|
|
300
|
+
|
|
298
301
|
sig { returns(T.nilable(String)) }
|
|
299
302
|
attr_accessor :phone_number
|
|
300
303
|
|
|
@@ -352,6 +355,12 @@ module OursprivacyIngest
|
|
|
352
355
|
sig { returns(T.nilable(String)) }
|
|
353
356
|
attr_accessor :utm_term
|
|
354
357
|
|
|
358
|
+
sig { returns(T.nilable(String)) }
|
|
359
|
+
attr_accessor :viant_click_id
|
|
360
|
+
|
|
361
|
+
sig { returns(T.nilable(String)) }
|
|
362
|
+
attr_accessor :viant_impression_id
|
|
363
|
+
|
|
355
364
|
sig { returns(T.nilable(String)) }
|
|
356
365
|
attr_accessor :wbraid
|
|
357
366
|
|
|
@@ -402,6 +411,7 @@ module OursprivacyIngest
|
|
|
402
411
|
li_fat_id: T.nilable(String),
|
|
403
412
|
msclkid: T.nilable(String),
|
|
404
413
|
ndclid: T.nilable(String),
|
|
414
|
+
oppref: T.nilable(String),
|
|
405
415
|
phone_number: T.nilable(String),
|
|
406
416
|
qclid: T.nilable(String),
|
|
407
417
|
rdt_cid: T.nilable(String),
|
|
@@ -421,6 +431,8 @@ module OursprivacyIngest
|
|
|
421
431
|
utm_name: T.nilable(String),
|
|
422
432
|
utm_source: T.nilable(String),
|
|
423
433
|
utm_term: T.nilable(String),
|
|
434
|
+
viant_click_id: T.nilable(String),
|
|
435
|
+
viant_impression_id: T.nilable(String),
|
|
424
436
|
wbraid: T.nilable(String),
|
|
425
437
|
zip: T.nilable(String)
|
|
426
438
|
).returns(T.attached_class)
|
|
@@ -466,6 +478,7 @@ module OursprivacyIngest
|
|
|
466
478
|
li_fat_id: nil,
|
|
467
479
|
msclkid: nil,
|
|
468
480
|
ndclid: nil,
|
|
481
|
+
oppref: nil,
|
|
469
482
|
phone_number: nil,
|
|
470
483
|
qclid: nil,
|
|
471
484
|
rdt_cid: nil,
|
|
@@ -485,6 +498,8 @@ module OursprivacyIngest
|
|
|
485
498
|
utm_name: nil,
|
|
486
499
|
utm_source: nil,
|
|
487
500
|
utm_term: nil,
|
|
501
|
+
viant_click_id: nil,
|
|
502
|
+
viant_impression_id: nil,
|
|
488
503
|
wbraid: nil,
|
|
489
504
|
zip: nil
|
|
490
505
|
)
|
|
@@ -532,6 +547,7 @@ module OursprivacyIngest
|
|
|
532
547
|
li_fat_id: T.nilable(String),
|
|
533
548
|
msclkid: T.nilable(String),
|
|
534
549
|
ndclid: T.nilable(String),
|
|
550
|
+
oppref: T.nilable(String),
|
|
535
551
|
phone_number: T.nilable(String),
|
|
536
552
|
qclid: T.nilable(String),
|
|
537
553
|
rdt_cid: T.nilable(String),
|
|
@@ -551,6 +567,8 @@ module OursprivacyIngest
|
|
|
551
567
|
utm_name: T.nilable(String),
|
|
552
568
|
utm_source: T.nilable(String),
|
|
553
569
|
utm_term: T.nilable(String),
|
|
570
|
+
viant_click_id: T.nilable(String),
|
|
571
|
+
viant_impression_id: T.nilable(String),
|
|
554
572
|
wbraid: T.nilable(String),
|
|
555
573
|
zip: T.nilable(String)
|
|
556
574
|
}
|
|
@@ -753,6 +771,13 @@ module OursprivacyIngest
|
|
|
753
771
|
sig { returns(T.nilable(T::Boolean)) }
|
|
754
772
|
attr_accessor :new_s
|
|
755
773
|
|
|
774
|
+
# The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL
|
|
775
|
+
# parameter on landing pages (the OpenAI Pixel also stores it in a `__oppref`
|
|
776
|
+
# cookie). Sent to OpenAI Ads on Conversions API events for attribution. Ex:
|
|
777
|
+
# oppref_abc
|
|
778
|
+
sig { returns(T.nilable(String)) }
|
|
779
|
+
attr_accessor :oppref
|
|
780
|
+
|
|
756
781
|
# The name of the operating system. Ex: Windows
|
|
757
782
|
sig { returns(T.nilable(String)) }
|
|
758
783
|
attr_accessor :os_name
|
|
@@ -865,6 +890,18 @@ module OursprivacyIngest
|
|
|
865
890
|
sig { returns(T.nilable(String)) }
|
|
866
891
|
attr_accessor :version
|
|
867
892
|
|
|
893
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
894
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
895
|
+
# viant_click_abc123
|
|
896
|
+
sig { returns(T.nilable(String)) }
|
|
897
|
+
attr_accessor :viant_click_id
|
|
898
|
+
|
|
899
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
900
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
901
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
902
|
+
sig { returns(T.nilable(String)) }
|
|
903
|
+
attr_accessor :viant_impression_id
|
|
904
|
+
|
|
868
905
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
869
906
|
# params.
|
|
870
907
|
sig { returns(T.nilable(String)) }
|
|
@@ -922,6 +959,7 @@ module OursprivacyIngest
|
|
|
922
959
|
msclkid: T.nilable(String),
|
|
923
960
|
ndclid: T.nilable(String),
|
|
924
961
|
new_s: T.nilable(T::Boolean),
|
|
962
|
+
oppref: T.nilable(String),
|
|
925
963
|
os_name: T.nilable(String),
|
|
926
964
|
os_version: T.nilable(String),
|
|
927
965
|
page_hash: T.nilable(Float),
|
|
@@ -950,6 +988,8 @@ module OursprivacyIngest
|
|
|
950
988
|
utm_source: T.nilable(String),
|
|
951
989
|
utm_term: T.nilable(String),
|
|
952
990
|
version: T.nilable(String),
|
|
991
|
+
viant_click_id: T.nilable(String),
|
|
992
|
+
viant_impression_id: T.nilable(String),
|
|
953
993
|
wbraid: T.nilable(String),
|
|
954
994
|
webview: T.nilable(T::Boolean)
|
|
955
995
|
).returns(T.attached_class)
|
|
@@ -1051,6 +1091,11 @@ module OursprivacyIngest
|
|
|
1051
1091
|
ndclid: nil,
|
|
1052
1092
|
# Deprecated
|
|
1053
1093
|
new_s: nil,
|
|
1094
|
+
# The OpenAI Ads privacy-preserving reference, captured from the `oppref` URL
|
|
1095
|
+
# parameter on landing pages (the OpenAI Pixel also stores it in a `__oppref`
|
|
1096
|
+
# cookie). Sent to OpenAI Ads on Conversions API events for attribution. Ex:
|
|
1097
|
+
# oppref_abc
|
|
1098
|
+
oppref: nil,
|
|
1054
1099
|
# The name of the operating system. Ex: Windows
|
|
1055
1100
|
os_name: nil,
|
|
1056
1101
|
# The version of the operating system. Ex: 10.0
|
|
@@ -1107,6 +1152,14 @@ module OursprivacyIngest
|
|
|
1107
1152
|
utm_term: nil,
|
|
1108
1153
|
# The version of the web SDK
|
|
1109
1154
|
version: nil,
|
|
1155
|
+
# The Viant (Adelphic) Click ID, captured from the `viant_click_id` URL parameter
|
|
1156
|
+
# (Viant `${ADELPHIC_CLICKID}` macro). Sent as `xid` on Viant postbacks. Ex:
|
|
1157
|
+
# viant_click_abc123
|
|
1158
|
+
viant_click_id: nil,
|
|
1159
|
+
# The Viant (Adelphic) Impression ID, captured from the `viant_impression_id` URL
|
|
1160
|
+
# parameter (Viant `${ADELPHIC_IMPRESSIONID}` macro). Sent as `imp_id` on Viant
|
|
1161
|
+
# postbacks for post-view attribution. Ex: viant_imp_abc123
|
|
1162
|
+
viant_impression_id: nil,
|
|
1110
1163
|
# The WBRAID Identifier. The web SDK automatically captures this from the query
|
|
1111
1164
|
# params.
|
|
1112
1165
|
wbraid: nil,
|
|
@@ -1162,6 +1215,7 @@ module OursprivacyIngest
|
|
|
1162
1215
|
msclkid: T.nilable(String),
|
|
1163
1216
|
ndclid: T.nilable(String),
|
|
1164
1217
|
new_s: T.nilable(T::Boolean),
|
|
1218
|
+
oppref: T.nilable(String),
|
|
1165
1219
|
os_name: T.nilable(String),
|
|
1166
1220
|
os_version: T.nilable(String),
|
|
1167
1221
|
page_hash: T.nilable(Float),
|
|
@@ -1190,6 +1244,8 @@ module OursprivacyIngest
|
|
|
1190
1244
|
utm_source: T.nilable(String),
|
|
1191
1245
|
utm_term: T.nilable(String),
|
|
1192
1246
|
version: T.nilable(String),
|
|
1247
|
+
viant_click_id: T.nilable(String),
|
|
1248
|
+
viant_impression_id: T.nilable(String),
|
|
1193
1249
|
wbraid: T.nilable(String),
|
|
1194
1250
|
webview: T.nilable(T::Boolean)
|
|
1195
1251
|
}
|
|
@@ -134,6 +134,7 @@ module OursprivacyIngest
|
|
|
134
134
|
msclkid: String?,
|
|
135
135
|
ndclid: String?,
|
|
136
136
|
new_s: bool?,
|
|
137
|
+
oppref: String?,
|
|
137
138
|
os_name: String?,
|
|
138
139
|
os_version: String?,
|
|
139
140
|
page_hash: Float?,
|
|
@@ -162,6 +163,8 @@ module OursprivacyIngest
|
|
|
162
163
|
utm_source: String?,
|
|
163
164
|
utm_term: String?,
|
|
164
165
|
version: String?,
|
|
166
|
+
viant_click_id: String?,
|
|
167
|
+
viant_impression_id: String?,
|
|
165
168
|
wbraid: String?,
|
|
166
169
|
webview: bool?
|
|
167
170
|
}
|
|
@@ -255,6 +258,8 @@ module OursprivacyIngest
|
|
|
255
258
|
|
|
256
259
|
attr_accessor new_s: bool?
|
|
257
260
|
|
|
261
|
+
attr_accessor oppref: String?
|
|
262
|
+
|
|
258
263
|
attr_accessor os_name: String?
|
|
259
264
|
|
|
260
265
|
attr_accessor os_version: String?
|
|
@@ -311,6 +316,10 @@ module OursprivacyIngest
|
|
|
311
316
|
|
|
312
317
|
attr_accessor version: String?
|
|
313
318
|
|
|
319
|
+
attr_accessor viant_click_id: String?
|
|
320
|
+
|
|
321
|
+
attr_accessor viant_impression_id: String?
|
|
322
|
+
|
|
314
323
|
attr_accessor wbraid: String?
|
|
315
324
|
|
|
316
325
|
attr_accessor webview: bool?
|
|
@@ -360,6 +369,7 @@ module OursprivacyIngest
|
|
|
360
369
|
?msclkid: String?,
|
|
361
370
|
?ndclid: String?,
|
|
362
371
|
?new_s: bool?,
|
|
372
|
+
?oppref: String?,
|
|
363
373
|
?os_name: String?,
|
|
364
374
|
?os_version: String?,
|
|
365
375
|
?page_hash: Float?,
|
|
@@ -388,6 +398,8 @@ module OursprivacyIngest
|
|
|
388
398
|
?utm_source: String?,
|
|
389
399
|
?utm_term: String?,
|
|
390
400
|
?version: String?,
|
|
401
|
+
?viant_click_id: String?,
|
|
402
|
+
?viant_impression_id: String?,
|
|
391
403
|
?wbraid: String?,
|
|
392
404
|
?webview: bool?
|
|
393
405
|
) -> void
|
|
@@ -437,6 +449,7 @@ module OursprivacyIngest
|
|
|
437
449
|
msclkid: String?,
|
|
438
450
|
ndclid: String?,
|
|
439
451
|
new_s: bool?,
|
|
452
|
+
oppref: String?,
|
|
440
453
|
os_name: String?,
|
|
441
454
|
os_version: String?,
|
|
442
455
|
page_hash: Float?,
|
|
@@ -465,6 +478,8 @@ module OursprivacyIngest
|
|
|
465
478
|
utm_source: String?,
|
|
466
479
|
utm_term: String?,
|
|
467
480
|
version: String?,
|
|
481
|
+
viant_click_id: String?,
|
|
482
|
+
viant_impression_id: String?,
|
|
468
483
|
wbraid: String?,
|
|
469
484
|
webview: bool?
|
|
470
485
|
}
|
|
@@ -523,6 +538,7 @@ module OursprivacyIngest
|
|
|
523
538
|
li_fat_id: String?,
|
|
524
539
|
msclkid: String?,
|
|
525
540
|
ndclid: String?,
|
|
541
|
+
oppref: String?,
|
|
526
542
|
phone_number: String?,
|
|
527
543
|
qclid: String?,
|
|
528
544
|
rdt_cid: String?,
|
|
@@ -542,6 +558,8 @@ module OursprivacyIngest
|
|
|
542
558
|
utm_name: String?,
|
|
543
559
|
utm_source: String?,
|
|
544
560
|
utm_term: String?,
|
|
561
|
+
viant_click_id: String?,
|
|
562
|
+
viant_impression_id: String?,
|
|
545
563
|
wbraid: String?,
|
|
546
564
|
zip: String?
|
|
547
565
|
}
|
|
@@ -625,6 +643,8 @@ module OursprivacyIngest
|
|
|
625
643
|
|
|
626
644
|
attr_accessor ndclid: String?
|
|
627
645
|
|
|
646
|
+
attr_accessor oppref: String?
|
|
647
|
+
|
|
628
648
|
attr_accessor phone_number: String?
|
|
629
649
|
|
|
630
650
|
attr_accessor qclid: String?
|
|
@@ -663,6 +683,10 @@ module OursprivacyIngest
|
|
|
663
683
|
|
|
664
684
|
attr_accessor utm_term: String?
|
|
665
685
|
|
|
686
|
+
attr_accessor viant_click_id: String?
|
|
687
|
+
|
|
688
|
+
attr_accessor viant_impression_id: String?
|
|
689
|
+
|
|
666
690
|
attr_accessor wbraid: String?
|
|
667
691
|
|
|
668
692
|
attr_accessor zip: String?
|
|
@@ -707,6 +731,7 @@ module OursprivacyIngest
|
|
|
707
731
|
?li_fat_id: String?,
|
|
708
732
|
?msclkid: String?,
|
|
709
733
|
?ndclid: String?,
|
|
734
|
+
?oppref: String?,
|
|
710
735
|
?phone_number: String?,
|
|
711
736
|
?qclid: String?,
|
|
712
737
|
?rdt_cid: String?,
|
|
@@ -726,6 +751,8 @@ module OursprivacyIngest
|
|
|
726
751
|
?utm_name: String?,
|
|
727
752
|
?utm_source: String?,
|
|
728
753
|
?utm_term: String?,
|
|
754
|
+
?viant_click_id: String?,
|
|
755
|
+
?viant_impression_id: String?,
|
|
729
756
|
?wbraid: String?,
|
|
730
757
|
?zip: String?
|
|
731
758
|
) -> void
|
|
@@ -770,6 +797,7 @@ module OursprivacyIngest
|
|
|
770
797
|
li_fat_id: String?,
|
|
771
798
|
msclkid: String?,
|
|
772
799
|
ndclid: String?,
|
|
800
|
+
oppref: String?,
|
|
773
801
|
phone_number: String?,
|
|
774
802
|
qclid: String?,
|
|
775
803
|
rdt_cid: String?,
|
|
@@ -789,6 +817,8 @@ module OursprivacyIngest
|
|
|
789
817
|
utm_name: String?,
|
|
790
818
|
utm_source: String?,
|
|
791
819
|
utm_term: String?,
|
|
820
|
+
viant_click_id: String?,
|
|
821
|
+
viant_impression_id: String?,
|
|
792
822
|
wbraid: String?,
|
|
793
823
|
zip: String?
|
|
794
824
|
}
|
|
@@ -118,6 +118,7 @@ module OursprivacyIngest
|
|
|
118
118
|
msclkid: String?,
|
|
119
119
|
ndclid: String?,
|
|
120
120
|
new_s: bool?,
|
|
121
|
+
oppref: String?,
|
|
121
122
|
os_name: String?,
|
|
122
123
|
os_version: String?,
|
|
123
124
|
page_hash: Float?,
|
|
@@ -146,6 +147,8 @@ module OursprivacyIngest
|
|
|
146
147
|
utm_source: String?,
|
|
147
148
|
utm_term: String?,
|
|
148
149
|
version: String?,
|
|
150
|
+
viant_click_id: String?,
|
|
151
|
+
viant_impression_id: String?,
|
|
149
152
|
wbraid: String?,
|
|
150
153
|
webview: bool?
|
|
151
154
|
}
|
|
@@ -239,6 +242,8 @@ module OursprivacyIngest
|
|
|
239
242
|
|
|
240
243
|
attr_accessor new_s: bool?
|
|
241
244
|
|
|
245
|
+
attr_accessor oppref: String?
|
|
246
|
+
|
|
242
247
|
attr_accessor os_name: String?
|
|
243
248
|
|
|
244
249
|
attr_accessor os_version: String?
|
|
@@ -295,6 +300,10 @@ module OursprivacyIngest
|
|
|
295
300
|
|
|
296
301
|
attr_accessor version: String?
|
|
297
302
|
|
|
303
|
+
attr_accessor viant_click_id: String?
|
|
304
|
+
|
|
305
|
+
attr_accessor viant_impression_id: String?
|
|
306
|
+
|
|
298
307
|
attr_accessor wbraid: String?
|
|
299
308
|
|
|
300
309
|
attr_accessor webview: bool?
|
|
@@ -344,6 +353,7 @@ module OursprivacyIngest
|
|
|
344
353
|
?msclkid: String?,
|
|
345
354
|
?ndclid: String?,
|
|
346
355
|
?new_s: bool?,
|
|
356
|
+
?oppref: String?,
|
|
347
357
|
?os_name: String?,
|
|
348
358
|
?os_version: String?,
|
|
349
359
|
?page_hash: Float?,
|
|
@@ -372,6 +382,8 @@ module OursprivacyIngest
|
|
|
372
382
|
?utm_source: String?,
|
|
373
383
|
?utm_term: String?,
|
|
374
384
|
?version: String?,
|
|
385
|
+
?viant_click_id: String?,
|
|
386
|
+
?viant_impression_id: String?,
|
|
375
387
|
?wbraid: String?,
|
|
376
388
|
?webview: bool?
|
|
377
389
|
) -> void
|
|
@@ -421,6 +433,7 @@ module OursprivacyIngest
|
|
|
421
433
|
msclkid: String?,
|
|
422
434
|
ndclid: String?,
|
|
423
435
|
new_s: bool?,
|
|
436
|
+
oppref: String?,
|
|
424
437
|
os_name: String?,
|
|
425
438
|
os_version: String?,
|
|
426
439
|
page_hash: Float?,
|
|
@@ -449,6 +462,8 @@ module OursprivacyIngest
|
|
|
449
462
|
utm_source: String?,
|
|
450
463
|
utm_term: String?,
|
|
451
464
|
version: String?,
|
|
465
|
+
viant_click_id: String?,
|
|
466
|
+
viant_impression_id: String?,
|
|
452
467
|
wbraid: String?,
|
|
453
468
|
webview: bool?
|
|
454
469
|
}
|
|
@@ -507,6 +522,7 @@ module OursprivacyIngest
|
|
|
507
522
|
li_fat_id: String?,
|
|
508
523
|
msclkid: String?,
|
|
509
524
|
ndclid: String?,
|
|
525
|
+
oppref: String?,
|
|
510
526
|
phone_number: String?,
|
|
511
527
|
qclid: String?,
|
|
512
528
|
rdt_cid: String?,
|
|
@@ -526,6 +542,8 @@ module OursprivacyIngest
|
|
|
526
542
|
utm_name: String?,
|
|
527
543
|
utm_source: String?,
|
|
528
544
|
utm_term: String?,
|
|
545
|
+
viant_click_id: String?,
|
|
546
|
+
viant_impression_id: String?,
|
|
529
547
|
wbraid: String?,
|
|
530
548
|
zip: String?
|
|
531
549
|
}
|
|
@@ -609,6 +627,8 @@ module OursprivacyIngest
|
|
|
609
627
|
|
|
610
628
|
attr_accessor ndclid: String?
|
|
611
629
|
|
|
630
|
+
attr_accessor oppref: String?
|
|
631
|
+
|
|
612
632
|
attr_accessor phone_number: String?
|
|
613
633
|
|
|
614
634
|
attr_accessor qclid: String?
|
|
@@ -647,6 +667,10 @@ module OursprivacyIngest
|
|
|
647
667
|
|
|
648
668
|
attr_accessor utm_term: String?
|
|
649
669
|
|
|
670
|
+
attr_accessor viant_click_id: String?
|
|
671
|
+
|
|
672
|
+
attr_accessor viant_impression_id: String?
|
|
673
|
+
|
|
650
674
|
attr_accessor wbraid: String?
|
|
651
675
|
|
|
652
676
|
attr_accessor zip: String?
|
|
@@ -691,6 +715,7 @@ module OursprivacyIngest
|
|
|
691
715
|
?li_fat_id: String?,
|
|
692
716
|
?msclkid: String?,
|
|
693
717
|
?ndclid: String?,
|
|
718
|
+
?oppref: String?,
|
|
694
719
|
?phone_number: String?,
|
|
695
720
|
?qclid: String?,
|
|
696
721
|
?rdt_cid: String?,
|
|
@@ -710,6 +735,8 @@ module OursprivacyIngest
|
|
|
710
735
|
?utm_name: String?,
|
|
711
736
|
?utm_source: String?,
|
|
712
737
|
?utm_term: String?,
|
|
738
|
+
?viant_click_id: String?,
|
|
739
|
+
?viant_impression_id: String?,
|
|
713
740
|
?wbraid: String?,
|
|
714
741
|
?zip: String?
|
|
715
742
|
) -> void
|
|
@@ -754,6 +781,7 @@ module OursprivacyIngest
|
|
|
754
781
|
li_fat_id: String?,
|
|
755
782
|
msclkid: String?,
|
|
756
783
|
ndclid: String?,
|
|
784
|
+
oppref: String?,
|
|
757
785
|
phone_number: String?,
|
|
758
786
|
qclid: String?,
|
|
759
787
|
rdt_cid: String?,
|
|
@@ -773,6 +801,8 @@ module OursprivacyIngest
|
|
|
773
801
|
utm_name: String?,
|
|
774
802
|
utm_source: String?,
|
|
775
803
|
utm_term: String?,
|
|
804
|
+
viant_click_id: String?,
|
|
805
|
+
viant_impression_id: String?,
|
|
776
806
|
wbraid: String?,
|
|
777
807
|
zip: String?
|
|
778
808
|
}
|
|
@@ -93,6 +93,7 @@ module OursprivacyIngest
|
|
|
93
93
|
li_fat_id: String?,
|
|
94
94
|
msclkid: String?,
|
|
95
95
|
ndclid: String?,
|
|
96
|
+
oppref: String?,
|
|
96
97
|
phone_number: String?,
|
|
97
98
|
qclid: String?,
|
|
98
99
|
rdt_cid: String?,
|
|
@@ -112,6 +113,8 @@ module OursprivacyIngest
|
|
|
112
113
|
utm_name: String?,
|
|
113
114
|
utm_source: String?,
|
|
114
115
|
utm_term: String?,
|
|
116
|
+
viant_click_id: String?,
|
|
117
|
+
viant_impression_id: String?,
|
|
115
118
|
wbraid: String?,
|
|
116
119
|
zip: String?
|
|
117
120
|
}
|
|
@@ -195,6 +198,8 @@ module OursprivacyIngest
|
|
|
195
198
|
|
|
196
199
|
attr_accessor ndclid: String?
|
|
197
200
|
|
|
201
|
+
attr_accessor oppref: String?
|
|
202
|
+
|
|
198
203
|
attr_accessor phone_number: String?
|
|
199
204
|
|
|
200
205
|
attr_accessor qclid: String?
|
|
@@ -233,6 +238,10 @@ module OursprivacyIngest
|
|
|
233
238
|
|
|
234
239
|
attr_accessor utm_term: String?
|
|
235
240
|
|
|
241
|
+
attr_accessor viant_click_id: String?
|
|
242
|
+
|
|
243
|
+
attr_accessor viant_impression_id: String?
|
|
244
|
+
|
|
236
245
|
attr_accessor wbraid: String?
|
|
237
246
|
|
|
238
247
|
attr_accessor zip: String?
|
|
@@ -277,6 +286,7 @@ module OursprivacyIngest
|
|
|
277
286
|
?li_fat_id: String?,
|
|
278
287
|
?msclkid: String?,
|
|
279
288
|
?ndclid: String?,
|
|
289
|
+
?oppref: String?,
|
|
280
290
|
?phone_number: String?,
|
|
281
291
|
?qclid: String?,
|
|
282
292
|
?rdt_cid: String?,
|
|
@@ -296,6 +306,8 @@ module OursprivacyIngest
|
|
|
296
306
|
?utm_name: String?,
|
|
297
307
|
?utm_source: String?,
|
|
298
308
|
?utm_term: String?,
|
|
309
|
+
?viant_click_id: String?,
|
|
310
|
+
?viant_impression_id: String?,
|
|
299
311
|
?wbraid: String?,
|
|
300
312
|
?zip: String?
|
|
301
313
|
) -> void
|
|
@@ -340,6 +352,7 @@ module OursprivacyIngest
|
|
|
340
352
|
li_fat_id: String?,
|
|
341
353
|
msclkid: String?,
|
|
342
354
|
ndclid: String?,
|
|
355
|
+
oppref: String?,
|
|
343
356
|
phone_number: String?,
|
|
344
357
|
qclid: String?,
|
|
345
358
|
rdt_cid: String?,
|
|
@@ -359,6 +372,8 @@ module OursprivacyIngest
|
|
|
359
372
|
utm_name: String?,
|
|
360
373
|
utm_source: String?,
|
|
361
374
|
utm_term: String?,
|
|
375
|
+
viant_click_id: String?,
|
|
376
|
+
viant_impression_id: String?,
|
|
362
377
|
wbraid: String?,
|
|
363
378
|
zip: String?
|
|
364
379
|
}
|
|
@@ -410,6 +425,7 @@ module OursprivacyIngest
|
|
|
410
425
|
msclkid: String?,
|
|
411
426
|
ndclid: String?,
|
|
412
427
|
new_s: bool?,
|
|
428
|
+
oppref: String?,
|
|
413
429
|
os_name: String?,
|
|
414
430
|
os_version: String?,
|
|
415
431
|
page_hash: Float?,
|
|
@@ -438,6 +454,8 @@ module OursprivacyIngest
|
|
|
438
454
|
utm_source: String?,
|
|
439
455
|
utm_term: String?,
|
|
440
456
|
version: String?,
|
|
457
|
+
viant_click_id: String?,
|
|
458
|
+
viant_impression_id: String?,
|
|
441
459
|
wbraid: String?,
|
|
442
460
|
webview: bool?
|
|
443
461
|
}
|
|
@@ -531,6 +549,8 @@ module OursprivacyIngest
|
|
|
531
549
|
|
|
532
550
|
attr_accessor new_s: bool?
|
|
533
551
|
|
|
552
|
+
attr_accessor oppref: String?
|
|
553
|
+
|
|
534
554
|
attr_accessor os_name: String?
|
|
535
555
|
|
|
536
556
|
attr_accessor os_version: String?
|
|
@@ -587,6 +607,10 @@ module OursprivacyIngest
|
|
|
587
607
|
|
|
588
608
|
attr_accessor version: String?
|
|
589
609
|
|
|
610
|
+
attr_accessor viant_click_id: String?
|
|
611
|
+
|
|
612
|
+
attr_accessor viant_impression_id: String?
|
|
613
|
+
|
|
590
614
|
attr_accessor wbraid: String?
|
|
591
615
|
|
|
592
616
|
attr_accessor webview: bool?
|
|
@@ -636,6 +660,7 @@ module OursprivacyIngest
|
|
|
636
660
|
?msclkid: String?,
|
|
637
661
|
?ndclid: String?,
|
|
638
662
|
?new_s: bool?,
|
|
663
|
+
?oppref: String?,
|
|
639
664
|
?os_name: String?,
|
|
640
665
|
?os_version: String?,
|
|
641
666
|
?page_hash: Float?,
|
|
@@ -664,6 +689,8 @@ module OursprivacyIngest
|
|
|
664
689
|
?utm_source: String?,
|
|
665
690
|
?utm_term: String?,
|
|
666
691
|
?version: String?,
|
|
692
|
+
?viant_click_id: String?,
|
|
693
|
+
?viant_impression_id: String?,
|
|
667
694
|
?wbraid: String?,
|
|
668
695
|
?webview: bool?
|
|
669
696
|
) -> void
|
|
@@ -713,6 +740,7 @@ module OursprivacyIngest
|
|
|
713
740
|
msclkid: String?,
|
|
714
741
|
ndclid: String?,
|
|
715
742
|
new_s: bool?,
|
|
743
|
+
oppref: String?,
|
|
716
744
|
os_name: String?,
|
|
717
745
|
os_version: String?,
|
|
718
746
|
page_hash: Float?,
|
|
@@ -741,6 +769,8 @@ module OursprivacyIngest
|
|
|
741
769
|
utm_source: String?,
|
|
742
770
|
utm_term: String?,
|
|
743
771
|
version: String?,
|
|
772
|
+
viant_click_id: String?,
|
|
773
|
+
viant_impression_id: String?,
|
|
744
774
|
wbraid: String?,
|
|
745
775
|
webview: bool?
|
|
746
776
|
}
|
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.10.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-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|