internetdata 1.1.1 → 1.2.1

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: 802ee4502db9318c455b79e793f909d223406a7fabc659e923b371abee9abab6
4
- data.tar.gz: 4f7b32db250d94ba37d7074d30d1f3acef307fcd8ece9c9dfda04ebfc132688e
3
+ metadata.gz: 4fdfe0104aab681676f2f4c616f81ca23fd1c0945f4708426b254978b0080d0b
4
+ data.tar.gz: f702eeff9dff285c5b7931871a791c6433f56522ce83b2b3133b212a62df56d8
5
5
  SHA512:
6
- metadata.gz: 4905fee70e88b113fcd51d7e4e12ad398d2e1fc6b06ef200d3063ee75253e789b29afc15c3b671becf63126532bb629bb033ad56aad129442e472edc4785b78d
7
- data.tar.gz: be2af4b6075462fe483f2c3e4d4a10e62acfb667ef9c64b6d4544d366a839abdbb090dfe0ceb955308b023b51e9793c2061a126ad0f42719e40fd0e93056c51b
6
+ metadata.gz: 8c84222cb88bc69d152a76fd4ba9222ee991e7da94079e441ee150520e3de886bdcc9f9faea3951ff123a1f1e75070ca1554465513235b794780c1ba8d6cee13
7
+ data.tar.gz: e5c4ee84177a528f20392f8705a1f86e150d24818a3ac1f4aec8848a531272209aafb21065014938b3b265851fec586c83f2f07e966f158528dfeefefad2419f
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -32,9 +32,15 @@ module InternetData
32
32
 
33
33
  attr_accessor :starts
34
34
 
35
- # Null when the licence has no end date, or when there is none.
35
+ # A hard stop. Null when the licence has no end date, which is the normal case for a rolling agreement, and when there is no licence. A rolling licence reports its turnover date in renews_at instead.
36
36
  attr_accessor :expires
37
37
 
38
+ # When a rolling licence next renews. Null when the licence has no defined term, when expires sets a hard stop instead, and when there is no licence.
39
+ attr_accessor :renews_at
40
+
41
+ # The last day notice of non-renewal can be given for the term ending at renews_at. Null whenever renews_at is, and when the agreement records no notice period.
42
+ attr_accessor :notice_due_at
43
+
38
44
  # Every published version of this family, oldest first. Old versions are frozen rather than migrated, so both stay downloadable.
39
45
  attr_accessor :versions
40
46
 
@@ -70,6 +76,8 @@ module InternetData
70
76
  :'license_type' => :'license_type',
71
77
  :'starts' => :'starts',
72
78
  :'expires' => :'expires',
79
+ :'renews_at' => :'renews_at',
80
+ :'notice_due_at' => :'notice_due_at',
73
81
  :'versions' => :'versions'
74
82
  }
75
83
  end
@@ -94,6 +102,8 @@ module InternetData
94
102
  :'license_type' => :'String',
95
103
  :'starts' => :'Time',
96
104
  :'expires' => :'Time',
105
+ :'renews_at' => :'Time',
106
+ :'notice_due_at' => :'Time',
97
107
  :'versions' => :'Array<DatabaseVersion>'
98
108
  }
99
109
  end
@@ -104,6 +114,8 @@ module InternetData
104
114
  :'license_type',
105
115
  :'starts',
106
116
  :'expires',
117
+ :'renews_at',
118
+ :'notice_due_at',
107
119
  ])
108
120
  end
109
121
 
@@ -165,6 +177,18 @@ module InternetData
165
177
  self.expires = nil
166
178
  end
167
179
 
180
+ if attributes.key?(:'renews_at')
181
+ self.renews_at = attributes[:'renews_at']
182
+ else
183
+ self.renews_at = nil
184
+ end
185
+
186
+ if attributes.key?(:'notice_due_at')
187
+ self.notice_due_at = attributes[:'notice_due_at']
188
+ else
189
+ self.notice_due_at = nil
190
+ end
191
+
168
192
  if attributes.key?(:'versions')
169
193
  if (value = attributes[:'versions']).is_a?(Array)
170
194
  self.versions = value
@@ -290,6 +314,8 @@ module InternetData
290
314
  license_type == o.license_type &&
291
315
  starts == o.starts &&
292
316
  expires == o.expires &&
317
+ renews_at == o.renews_at &&
318
+ notice_due_at == o.notice_due_at &&
293
319
  versions == o.versions
294
320
  end
295
321
 
@@ -302,7 +328,7 @@ module InternetData
302
328
  # Calculates hash code according to all attributes.
303
329
  # @return [Integer] Hash code
304
330
  def hash
305
- [base, name, summary, standing, license_type, starts, expires, versions].hash
331
+ [base, name, summary, standing, license_type, starts, expires, renews_at, notice_due_at, versions].hash
306
332
  end
307
333
 
308
334
  # Builds the object from hash
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #The InternetData API. Please see https://docs.internetdata.io/api for more details.
5
5
 
6
- The version of the OpenAPI document: 2026.09.05
6
+ The version of the OpenAPI document: 2026.09.09
7
7
  Contact: dev@internetdata.io
8
8
  Generated by: https://openapi-generator.tech
9
9
  Generator version: 7.25.0
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module InternetData
4
- VERSION = '1.1.1'
4
+ VERSION = '1.2.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: internetdata
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mslm Dev