google-apis-readerrevenuesubscriptionlinking_v1 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 736ffe9ed7abcb9e6ecc712c0024e38e844bc87559aa91b570831823642097fa
|
4
|
+
data.tar.gz: 64bf1b2ab06cd86712cff7e7772d2d77336787d7ab06e7b7fc7ded242d7f4435
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf9d4874643b5c9802514f9c9b650fb78c369b99ce74b828434c95e99a7e7e612892336352654ea32752fcb15d2d797e2d5cd5fd419f6a662413ba7f0e1bc806
|
7
|
+
data.tar.gz: 26379bbe757e21e5851b7e6c378c3a3eb4f092c2a45ba5a372be88c91ca0ca32da0590d33942921b69267afe1f4fc97e65f5332163eb6d36ac391de5c4ec1ea2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-readerrevenuesubscriptionlinking_v1
|
2
2
|
|
3
|
+
### v0.7.0 (2025-06-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250611
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.6.0 (2025-05-04)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.17.0
|
@@ -96,6 +96,23 @@ module Google
|
|
96
96
|
# @return [String]
|
97
97
|
attr_accessor :name
|
98
98
|
|
99
|
+
# Output only. The SwG publication id that the reader's subscription linking was
|
100
|
+
# originating from.
|
101
|
+
# Corresponds to the JSON property `originatingPublicationId`
|
102
|
+
# @return [String]
|
103
|
+
attr_accessor :originating_publication_id
|
104
|
+
|
105
|
+
# Output only. The publisher provided id of the reader.
|
106
|
+
# Corresponds to the JSON property `ppid`
|
107
|
+
# @return [String]
|
108
|
+
attr_accessor :ppid
|
109
|
+
|
110
|
+
# Output only. The SwG publication id that the reader has linked their
|
111
|
+
# subscription to.
|
112
|
+
# Corresponds to the JSON property `publicationId`
|
113
|
+
# @return [String]
|
114
|
+
attr_accessor :publication_id
|
115
|
+
|
99
116
|
def initialize(**args)
|
100
117
|
update!(**args)
|
101
118
|
end
|
@@ -104,6 +121,9 @@ module Google
|
|
104
121
|
def update!(**args)
|
105
122
|
@create_time = args[:create_time] if args.key?(:create_time)
|
106
123
|
@name = args[:name] if args.key?(:name)
|
124
|
+
@originating_publication_id = args[:originating_publication_id] if args.key?(:originating_publication_id)
|
125
|
+
@ppid = args[:ppid] if args.key?(:ppid)
|
126
|
+
@publication_id = args[:publication_id] if args.key?(:publication_id)
|
107
127
|
end
|
108
128
|
end
|
109
129
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ReaderrevenuesubscriptionlinkingV1
|
18
18
|
# Version of the google-apis-readerrevenuesubscriptionlinking_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250611"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -67,6 +67,9 @@ module Google
|
|
67
67
|
class Representation < Google::Apis::Core::JsonRepresentation
|
68
68
|
property :create_time, as: 'createTime'
|
69
69
|
property :name, as: 'name'
|
70
|
+
property :originating_publication_id, as: 'originatingPublicationId'
|
71
|
+
property :ppid, as: 'ppid'
|
72
|
+
property :publication_id, as: 'publicationId'
|
70
73
|
end
|
71
74
|
end
|
72
75
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-readerrevenuesubscriptionlinking_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-readerrevenuesubscriptionlinking_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-readerrevenuesubscriptionlinking_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-readerrevenuesubscriptionlinking_v1/v0.7.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-readerrevenuesubscriptionlinking_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Reader Revenue Subscription Linking API V1
|
79
79
|
test_files: []
|