growsurf-ruby 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/growsurf_ruby/models/campaign/create.rb +2 -1
- data/lib/growsurf_ruby/models/campaign/participant.rb +2 -1
- data/lib/growsurf_ruby/version.rb +1 -1
- data/rbi/growsurf_ruby/models/campaign/create.rbi +4 -2
- data/rbi/growsurf_ruby/models/campaign/participant.rbi +4 -2
- data/rbi/growsurf_ruby/resources/campaign/participant.rbi +2 -1
- data/rbi/growsurf_ruby/resources/campaign.rbi +2 -1
- 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: 1ac4a21288a39b1b353991906e251d66defef13a542306c9a20d2997a64ba7f8
|
|
4
|
+
data.tar.gz: e7d9dc119edc82f58f68de3b088e983c53c819d9a2ae000bc153c9fa1dcc5bc6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6766b01f7d674381c2d2b38584fe6ba93ef68851fb60c60841dffed9512ef062e38e5e48797c79b6517b4315e54e754ae9d816346f987bc87143130453dde1cb
|
|
7
|
+
data.tar.gz: 2bac4d0c18cf042b032e431904f303ff53b4da988b4008890a047755f6d00529b2272da61268afcbb3e86c7ca20096c8e7da20ca4d7e6c072821f3061e24cc65
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.0 (2026-05-25)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.4.0...v0.5.0](https://github.com/growsurf/growsurf-ruby/compare/v0.4.0...v0.5.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** manual updates ([e9e3916](https://github.com/growsurf/growsurf-ruby/commit/e9e3916ed07e217dbad3bcea88a7979226927915))
|
|
10
|
+
|
|
3
11
|
## 0.4.0 (2026-05-20)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.3.0...v0.4.0](https://github.com/growsurf/growsurf-ruby/compare/v0.3.0...v0.4.0)
|
data/README.md
CHANGED
|
@@ -37,7 +37,8 @@ module GrowsurfRuby
|
|
|
37
37
|
|
|
38
38
|
# @!attribute mobile_instance_id
|
|
39
39
|
# Optional app-install scoped identifier for native mobile anti-fraud. Recommended
|
|
40
|
-
# for mobile participant creation and mobile participant token flows.
|
|
40
|
+
# for mobile participant creation and mobile participant token flows. The official
|
|
41
|
+
# mobile SDKs generate this as a lowercase UUID.
|
|
41
42
|
#
|
|
42
43
|
# @return [String, nil]
|
|
43
44
|
optional :mobile_instance_id, String, api_name: :mobileInstanceId
|
|
@@ -119,7 +119,8 @@ module GrowsurfRuby
|
|
|
119
119
|
|
|
120
120
|
# @!attribute mobile_instance_id
|
|
121
121
|
# App-install scoped mobile identifier used for anti-fraud matching when provided
|
|
122
|
-
# by native mobile apps.
|
|
122
|
+
# by native mobile apps. The official mobile SDKs generate this as a lowercase
|
|
123
|
+
# UUID. Not stored when strict GDPR/CCPA mode is enabled.
|
|
123
124
|
#
|
|
124
125
|
# @return [String, nil]
|
|
125
126
|
optional :mobile_instance_id, String, api_name: :mobileInstanceId, nil?: true
|
|
@@ -47,7 +47,8 @@ module GrowsurfRuby
|
|
|
47
47
|
attr_writer :metadata
|
|
48
48
|
|
|
49
49
|
# Optional app-install scoped identifier for native mobile anti-fraud. Recommended
|
|
50
|
-
# for mobile participant creation and mobile participant token flows.
|
|
50
|
+
# for mobile participant creation and mobile participant token flows. The official
|
|
51
|
+
# mobile SDKs generate this as a lowercase UUID.
|
|
51
52
|
sig { returns(T.nilable(String)) }
|
|
52
53
|
attr_reader :mobile_instance_id
|
|
53
54
|
|
|
@@ -99,7 +100,8 @@ module GrowsurfRuby
|
|
|
99
100
|
# Shallow custom metadata object.
|
|
100
101
|
metadata: nil,
|
|
101
102
|
# Optional app-install scoped identifier for native mobile anti-fraud. Recommended
|
|
102
|
-
# for mobile participant creation and mobile participant token flows.
|
|
103
|
+
# for mobile participant creation and mobile participant token flows. The official
|
|
104
|
+
# mobile SDKs generate this as a lowercase UUID.
|
|
103
105
|
mobile_instance_id: nil,
|
|
104
106
|
referral_status: nil,
|
|
105
107
|
# Referrer participant ID or email address.
|
|
@@ -116,7 +116,8 @@ module GrowsurfRuby
|
|
|
116
116
|
attr_writer :metadata
|
|
117
117
|
|
|
118
118
|
# App-install scoped mobile identifier used for anti-fraud matching when provided
|
|
119
|
-
# by native mobile apps.
|
|
119
|
+
# by native mobile apps. The official mobile SDKs generate this as a lowercase
|
|
120
|
+
# UUID. Not stored when strict GDPR/CCPA mode is enabled.
|
|
120
121
|
sig { returns(T.nilable(String)) }
|
|
121
122
|
attr_accessor :mobile_instance_id
|
|
122
123
|
|
|
@@ -310,7 +311,8 @@ module GrowsurfRuby
|
|
|
310
311
|
# Shallow custom metadata object.
|
|
311
312
|
metadata: nil,
|
|
312
313
|
# App-install scoped mobile identifier used for anti-fraud matching when provided
|
|
313
|
-
# by native mobile apps.
|
|
314
|
+
# by native mobile apps. The official mobile SDKs generate this as a lowercase
|
|
315
|
+
# UUID. Not stored when strict GDPR/CCPA mode is enabled.
|
|
314
316
|
mobile_instance_id: nil,
|
|
315
317
|
monthly_referrals: nil,
|
|
316
318
|
notes: nil,
|
|
@@ -109,7 +109,8 @@ module GrowsurfRuby
|
|
|
109
109
|
# Shallow custom metadata object.
|
|
110
110
|
metadata: nil,
|
|
111
111
|
# Optional app-install scoped identifier for native mobile anti-fraud. Recommended
|
|
112
|
-
# for mobile participant creation and mobile participant token flows.
|
|
112
|
+
# for mobile participant creation and mobile participant token flows. The official
|
|
113
|
+
# mobile SDKs generate this as a lowercase UUID.
|
|
113
114
|
mobile_instance_id: nil,
|
|
114
115
|
referral_status: nil,
|
|
115
116
|
# Referrer participant ID or email address.
|
|
@@ -70,7 +70,8 @@ module GrowsurfRuby
|
|
|
70
70
|
# Shallow custom metadata object.
|
|
71
71
|
metadata: nil,
|
|
72
72
|
# Optional app-install scoped identifier for native mobile anti-fraud. Recommended
|
|
73
|
-
# for mobile participant creation and mobile participant token flows.
|
|
73
|
+
# for mobile participant creation and mobile participant token flows. The official
|
|
74
|
+
# mobile SDKs generate this as a lowercase UUID.
|
|
74
75
|
mobile_instance_id: nil,
|
|
75
76
|
referral_status: nil,
|
|
76
77
|
# Referrer participant ID or email address.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: growsurf-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Growsurf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|