timelogic-api 1.0.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.
Files changed (49) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +188 -0
  3. data/docs/ApiError.md +22 -0
  4. data/docs/BulkError.md +24 -0
  5. data/docs/CalendarResponse.md +48 -0
  6. data/docs/DiffEndpointRef.md +18 -0
  7. data/docs/DiffResponse.md +36 -0
  8. data/docs/DstResponse.md +42 -0
  9. data/docs/ElapsedResponse.md +32 -0
  10. data/docs/ErrorResponse.md +22 -0
  11. data/docs/GetCurrentTime200Response.md +49 -0
  12. data/docs/GetTimezone200Response.md +49 -0
  13. data/docs/JwkKey.md +28 -0
  14. data/docs/JwksResponse.md +18 -0
  15. data/docs/TimeApi.md +1093 -0
  16. data/docs/TimePayload.md +38 -0
  17. data/docs/TimePayloadBulkItem.md +49 -0
  18. data/docs/TimePayloadBulkResponse.md +15 -0
  19. data/docs/TimezoneMatch.md +42 -0
  20. data/docs/TimezoneOffsetResponse.md +44 -0
  21. data/docs/TimezoneResolvedResponse.md +42 -0
  22. data/docs/UtilityApi.md +74 -0
  23. data/lib/timelogic-api/api/time_api.rb +1344 -0
  24. data/lib/timelogic-api/api/utility_api.rb +82 -0
  25. data/lib/timelogic-api/api_client.rb +394 -0
  26. data/lib/timelogic-api/api_error.rb +58 -0
  27. data/lib/timelogic-api/configuration.rb +353 -0
  28. data/lib/timelogic-api/models/api_error.rb +282 -0
  29. data/lib/timelogic-api/models/bulk_error.rb +271 -0
  30. data/lib/timelogic-api/models/calendar_response.rb +474 -0
  31. data/lib/timelogic-api/models/diff_endpoint_ref.rb +222 -0
  32. data/lib/timelogic-api/models/diff_response.rb +386 -0
  33. data/lib/timelogic-api/models/dst_response.rb +427 -0
  34. data/lib/timelogic-api/models/elapsed_response.rb +354 -0
  35. data/lib/timelogic-api/models/error_response.rb +247 -0
  36. data/lib/timelogic-api/models/get_current_time200_response.rb +105 -0
  37. data/lib/timelogic-api/models/get_timezone200_response.rb +105 -0
  38. data/lib/timelogic-api/models/jwk_key.rb +371 -0
  39. data/lib/timelogic-api/models/jwks_response.rb +223 -0
  40. data/lib/timelogic-api/models/time_payload.rb +395 -0
  41. data/lib/timelogic-api/models/time_payload_bulk_item.rb +106 -0
  42. data/lib/timelogic-api/models/time_payload_bulk_response.rb +210 -0
  43. data/lib/timelogic-api/models/timezone_match.rb +437 -0
  44. data/lib/timelogic-api/models/timezone_offset_response.rb +452 -0
  45. data/lib/timelogic-api/models/timezone_resolved_response.rb +434 -0
  46. data/lib/timelogic-api/transport_configuration.rb +34 -0
  47. data/lib/timelogic-api/version.rb +7 -0
  48. data/lib/timelogic-api.rb +63 -0
  49. metadata +134 -0
@@ -0,0 +1,434 @@
1
+ =begin
2
+ #TimeLogic API | A World Time API
3
+
4
+ # Official public API contract for TimeLogic API.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module TimeLogic::Api
17
+ # Standard single-target timezone resolution payload.
18
+ class TimezoneResolvedResponse
19
+ attr_accessor :unix
20
+
21
+ attr_accessor :unix_ms
22
+
23
+ attr_accessor :utc
24
+
25
+ attr_accessor :iso_local
26
+
27
+ attr_accessor :rfc2822
28
+
29
+ attr_accessor :human
30
+
31
+ attr_accessor :day_number
32
+
33
+ attr_accessor :day_short
34
+
35
+ attr_accessor :day_full
36
+
37
+ attr_accessor :timezone
38
+
39
+ attr_accessor :formatted
40
+
41
+ attr_accessor :offset
42
+
43
+ attr_accessor :dst
44
+
45
+ # Attribute mapping from ruby-style variable name to JSON key.
46
+ def self.attribute_map
47
+ {
48
+ :'unix' => :'unix',
49
+ :'unix_ms' => :'unix_ms',
50
+ :'utc' => :'utc',
51
+ :'iso_local' => :'iso_local',
52
+ :'rfc2822' => :'rfc2822',
53
+ :'human' => :'human',
54
+ :'day_number' => :'day_number',
55
+ :'day_short' => :'day_short',
56
+ :'day_full' => :'day_full',
57
+ :'timezone' => :'timezone',
58
+ :'formatted' => :'formatted',
59
+ :'offset' => :'offset',
60
+ :'dst' => :'dst'
61
+ }
62
+ end
63
+
64
+ # Returns all the JSON keys this model knows about
65
+ def self.acceptable_attributes
66
+ attribute_map.values
67
+ end
68
+
69
+ # Attribute type mapping.
70
+ def self.openapi_types
71
+ {
72
+ :'unix' => :'Integer',
73
+ :'unix_ms' => :'Integer',
74
+ :'utc' => :'Time',
75
+ :'iso_local' => :'String',
76
+ :'rfc2822' => :'String',
77
+ :'human' => :'String',
78
+ :'day_number' => :'Integer',
79
+ :'day_short' => :'String',
80
+ :'day_full' => :'String',
81
+ :'timezone' => :'String',
82
+ :'formatted' => :'String',
83
+ :'offset' => :'Integer',
84
+ :'dst' => :'Boolean'
85
+ }
86
+ end
87
+
88
+ # List of attributes with nullable: true
89
+ def self.openapi_nullable
90
+ Set.new([
91
+ :'iso_local',
92
+ :'timezone',
93
+ ])
94
+ end
95
+
96
+ # List of class defined in allOf (OpenAPI v3)
97
+ def self.openapi_all_of
98
+ [
99
+ :'TimePayload'
100
+ ]
101
+ end
102
+
103
+ # Initializes the object
104
+ # @param [Hash] attributes Model attributes in the form of hash
105
+ def initialize(attributes = {})
106
+ if (!attributes.is_a?(Hash))
107
+ fail ArgumentError, "The input argument (attributes) must be a hash in `TimeLogic::Api::TimezoneResolvedResponse` initialize method"
108
+ end
109
+
110
+ # check to see if the attribute exists and convert string to symbol for hash key
111
+ attributes = attributes.each_with_object({}) { |(k, v), h|
112
+ if (!self.class.attribute_map.key?(k.to_sym))
113
+ fail ArgumentError, "`#{k}` is not a valid attribute in `TimeLogic::Api::TimezoneResolvedResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
114
+ end
115
+ h[k.to_sym] = v
116
+ }
117
+
118
+ if attributes.key?(:'unix')
119
+ self.unix = attributes[:'unix']
120
+ else
121
+ self.unix = nil
122
+ end
123
+
124
+ if attributes.key?(:'unix_ms')
125
+ self.unix_ms = attributes[:'unix_ms']
126
+ else
127
+ self.unix_ms = nil
128
+ end
129
+
130
+ if attributes.key?(:'utc')
131
+ self.utc = attributes[:'utc']
132
+ else
133
+ self.utc = nil
134
+ end
135
+
136
+ if attributes.key?(:'iso_local')
137
+ self.iso_local = attributes[:'iso_local']
138
+ else
139
+ self.iso_local = nil
140
+ end
141
+
142
+ if attributes.key?(:'rfc2822')
143
+ self.rfc2822 = attributes[:'rfc2822']
144
+ else
145
+ self.rfc2822 = nil
146
+ end
147
+
148
+ if attributes.key?(:'human')
149
+ self.human = attributes[:'human']
150
+ else
151
+ self.human = nil
152
+ end
153
+
154
+ if attributes.key?(:'day_number')
155
+ self.day_number = attributes[:'day_number']
156
+ else
157
+ self.day_number = nil
158
+ end
159
+
160
+ if attributes.key?(:'day_short')
161
+ self.day_short = attributes[:'day_short']
162
+ else
163
+ self.day_short = nil
164
+ end
165
+
166
+ if attributes.key?(:'day_full')
167
+ self.day_full = attributes[:'day_full']
168
+ else
169
+ self.day_full = nil
170
+ end
171
+
172
+ if attributes.key?(:'timezone')
173
+ self.timezone = attributes[:'timezone']
174
+ else
175
+ self.timezone = nil
176
+ end
177
+
178
+ if attributes.key?(:'formatted')
179
+ self.formatted = attributes[:'formatted']
180
+ end
181
+
182
+ if attributes.key?(:'offset')
183
+ self.offset = attributes[:'offset']
184
+ else
185
+ self.offset = nil
186
+ end
187
+
188
+ if attributes.key?(:'dst')
189
+ self.dst = attributes[:'dst']
190
+ else
191
+ self.dst = nil
192
+ end
193
+ end
194
+
195
+ # Show invalid properties with the reasons. Usually used together with valid?
196
+ # @return Array for valid properties with the reasons
197
+ def list_invalid_properties
198
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
199
+ invalid_properties = Array.new
200
+ if @unix.nil?
201
+ invalid_properties.push('invalid value for "unix", unix cannot be nil.')
202
+ end
203
+
204
+ if @unix_ms.nil?
205
+ invalid_properties.push('invalid value for "unix_ms", unix_ms cannot be nil.')
206
+ end
207
+
208
+ if @utc.nil?
209
+ invalid_properties.push('invalid value for "utc", utc cannot be nil.')
210
+ end
211
+
212
+ if @rfc2822.nil?
213
+ invalid_properties.push('invalid value for "rfc2822", rfc2822 cannot be nil.')
214
+ end
215
+
216
+ if @human.nil?
217
+ invalid_properties.push('invalid value for "human", human cannot be nil.')
218
+ end
219
+
220
+ if @day_number.nil?
221
+ invalid_properties.push('invalid value for "day_number", day_number cannot be nil.')
222
+ end
223
+
224
+ if @day_number > 7
225
+ invalid_properties.push('invalid value for "day_number", must be smaller than or equal to 7.')
226
+ end
227
+
228
+ if @day_number < 1
229
+ invalid_properties.push('invalid value for "day_number", must be greater than or equal to 1.')
230
+ end
231
+
232
+ if @day_short.nil?
233
+ invalid_properties.push('invalid value for "day_short", day_short cannot be nil.')
234
+ end
235
+
236
+ if @day_full.nil?
237
+ invalid_properties.push('invalid value for "day_full", day_full cannot be nil.')
238
+ end
239
+
240
+ if @offset.nil?
241
+ invalid_properties.push('invalid value for "offset", offset cannot be nil.')
242
+ end
243
+
244
+ if @dst.nil?
245
+ invalid_properties.push('invalid value for "dst", dst cannot be nil.')
246
+ end
247
+
248
+ invalid_properties
249
+ end
250
+
251
+ # Check to see if the all the properties in the model are valid
252
+ # @return true if the model is valid
253
+ def valid?
254
+ warn '[DEPRECATED] the `valid?` method is obsolete'
255
+ return false if @unix.nil?
256
+ return false if @unix_ms.nil?
257
+ return false if @utc.nil?
258
+ return false if @rfc2822.nil?
259
+ return false if @human.nil?
260
+ return false if @day_number.nil?
261
+ return false if @day_number > 7
262
+ return false if @day_number < 1
263
+ return false if @day_short.nil?
264
+ return false if @day_full.nil?
265
+ return false if @offset.nil?
266
+ return false if @dst.nil?
267
+ true
268
+ end
269
+
270
+ # Custom attribute writer method with validation
271
+ # @param [Object] day_number Value to be assigned
272
+ def day_number=(day_number)
273
+ if day_number.nil?
274
+ fail ArgumentError, 'day_number cannot be nil'
275
+ end
276
+
277
+ if day_number > 7
278
+ fail ArgumentError, 'invalid value for "day_number", must be smaller than or equal to 7.'
279
+ end
280
+
281
+ if day_number < 1
282
+ fail ArgumentError, 'invalid value for "day_number", must be greater than or equal to 1.'
283
+ end
284
+
285
+ @day_number = day_number
286
+ end
287
+
288
+ # Checks equality by comparing each attribute.
289
+ # @param [Object] Object to be compared
290
+ def ==(o)
291
+ return true if self.equal?(o)
292
+ self.class == o.class &&
293
+ unix == o.unix &&
294
+ unix_ms == o.unix_ms &&
295
+ utc == o.utc &&
296
+ iso_local == o.iso_local &&
297
+ rfc2822 == o.rfc2822 &&
298
+ human == o.human &&
299
+ day_number == o.day_number &&
300
+ day_short == o.day_short &&
301
+ day_full == o.day_full &&
302
+ timezone == o.timezone &&
303
+ formatted == o.formatted &&
304
+ offset == o.offset &&
305
+ dst == o.dst
306
+ end
307
+
308
+ # @see the `==` method
309
+ # @param [Object] Object to be compared
310
+ def eql?(o)
311
+ self == o
312
+ end
313
+
314
+ # Calculates hash code according to all attributes.
315
+ # @return [Integer] Hash code
316
+ def hash
317
+ [unix, unix_ms, utc, iso_local, rfc2822, human, day_number, day_short, day_full, timezone, formatted, offset, dst].hash
318
+ end
319
+
320
+ # Builds the object from hash
321
+ # @param [Hash] attributes Model attributes in the form of hash
322
+ # @return [Object] Returns the model itself
323
+ def self.build_from_hash(attributes)
324
+ return nil unless attributes.is_a?(Hash)
325
+ attributes = attributes.transform_keys(&:to_sym)
326
+ transformed_hash = {}
327
+ openapi_types.each_pair do |key, type|
328
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
329
+ transformed_hash["#{key}"] = nil
330
+ elsif type =~ /\AArray<(.*)>/i
331
+ # check to ensure the input is an array given that the attribute
332
+ # is documented as an array but the input is not
333
+ if attributes[attribute_map[key]].is_a?(Array)
334
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
335
+ end
336
+ elsif !attributes[attribute_map[key]].nil?
337
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
338
+ end
339
+ end
340
+ new(transformed_hash)
341
+ end
342
+
343
+ # Deserializes the data based on type
344
+ # @param string type Data type
345
+ # @param string value Value to be deserialized
346
+ # @return [Object] Deserialized data
347
+ def self._deserialize(type, value)
348
+ case type.to_sym
349
+ when :Time
350
+ Time.parse(value)
351
+ when :Date
352
+ Date.parse(value)
353
+ when :String
354
+ value.to_s
355
+ when :Integer
356
+ value.to_i
357
+ when :Float
358
+ value.to_f
359
+ when :Boolean
360
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
361
+ true
362
+ else
363
+ false
364
+ end
365
+ when :Object
366
+ # generic object (usually a Hash), return directly
367
+ value
368
+ when /\AArray<(?<inner_type>.+)>\z/
369
+ inner_type = Regexp.last_match[:inner_type]
370
+ value.map { |v| _deserialize(inner_type, v) }
371
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
372
+ k_type = Regexp.last_match[:k_type]
373
+ v_type = Regexp.last_match[:v_type]
374
+ {}.tap do |hash|
375
+ value.each do |k, v|
376
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
377
+ end
378
+ end
379
+ else # model
380
+ # models (e.g. Pet) or oneOf
381
+ klass = TimeLogic::Api.const_get(type)
382
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
383
+ end
384
+ end
385
+
386
+ # Returns the string representation of the object
387
+ # @return [String] String presentation of the object
388
+ def to_s
389
+ to_hash.to_s
390
+ end
391
+
392
+ # to_body is an alias to to_hash (backward compatibility)
393
+ # @return [Hash] Returns the object in the form of hash
394
+ def to_body
395
+ to_hash
396
+ end
397
+
398
+ # Returns the object in the form of hash
399
+ # @return [Hash] Returns the object in the form of hash
400
+ def to_hash
401
+ hash = {}
402
+ self.class.attribute_map.each_pair do |attr, param|
403
+ value = self.send(attr)
404
+ if value.nil?
405
+ is_nullable = self.class.openapi_nullable.include?(attr)
406
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
407
+ end
408
+
409
+ hash[param] = _to_hash(value)
410
+ end
411
+ hash
412
+ end
413
+
414
+ # Outputs non-array value in the form of hash
415
+ # For object, use to_hash. Otherwise, just return the value
416
+ # @param [Object] value Any valid value
417
+ # @return [Hash] Returns the value in the form of hash
418
+ def _to_hash(value)
419
+ if value.is_a?(Array)
420
+ value.compact.map { |v| _to_hash(v) }
421
+ elsif value.is_a?(Hash)
422
+ {}.tap do |hash|
423
+ value.each { |k, v| hash[k] = _to_hash(v) }
424
+ end
425
+ elsif value.respond_to? :to_hash
426
+ value.to_hash
427
+ else
428
+ value
429
+ end
430
+ end
431
+
432
+ end
433
+
434
+ end
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'uri'
4
+
5
+ module TimeLogic
6
+ module Api
7
+ module TransportConfiguration
8
+ DEFAULT_API_BASE_URL = 'https://api.timelogicapi.com'
9
+ DEFAULT_RAPID_API_HOST = 'timelogic-api-world-time-timezones-time-calculations.p.rapidapi.com'
10
+ DEFAULT_RAPID_API_BASE_URL = "https://#{DEFAULT_RAPID_API_HOST}"
11
+
12
+ module_function
13
+
14
+ def build(api_key:, rapid_api: false, base_url: nil, rapid_api_host: nil)
15
+ raise ArgumentError, 'api_key is required' if api_key.to_s.strip.empty?
16
+
17
+ host = (rapid_api_host || DEFAULT_RAPID_API_HOST).strip
18
+ uri = URI.parse(base_url || (rapid_api ? DEFAULT_RAPID_API_BASE_URL : DEFAULT_API_BASE_URL))
19
+ configuration = Configuration.new
20
+ configuration.scheme = uri.scheme
21
+ configuration.host = uri.port && ![80, 443].include?(uri.port) ? "#{uri.host}:#{uri.port}" : uri.host
22
+ configuration.base_path = uri.path
23
+ configuration.ignore_operation_servers = true
24
+ if rapid_api
25
+ configuration.api_key['X-RapidAPI-Key'] = api_key.strip
26
+ configuration.api_key['X-RapidAPI-Host'] = host
27
+ else
28
+ configuration.access_token = api_key.strip
29
+ end
30
+ configuration
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module TimeLogic
4
+ module Api
5
+ VERSION = '1.0.0'
6
+ end
7
+ end
@@ -0,0 +1,63 @@
1
+ module TimeLogic
2
+ end
3
+
4
+ =begin
5
+ #TimeLogic API | A World Time API
6
+
7
+ # Official public API contract for TimeLogic API.
8
+
9
+ The version of the OpenAPI document: 1.0.0
10
+
11
+ Generated by: https://openapi-generator.tech
12
+ Generator version: 7.10.0
13
+
14
+ =end
15
+
16
+ # Common files
17
+ require 'timelogic-api/api_client'
18
+ require 'timelogic-api/api_error'
19
+ require 'timelogic-api/version'
20
+ require 'timelogic-api/configuration'
21
+ require 'timelogic-api/transport_configuration'
22
+
23
+ # Models
24
+ require 'timelogic-api/models/api_error'
25
+ require 'timelogic-api/models/bulk_error'
26
+ require 'timelogic-api/models/calendar_response'
27
+ require 'timelogic-api/models/diff_endpoint_ref'
28
+ require 'timelogic-api/models/diff_response'
29
+ require 'timelogic-api/models/dst_response'
30
+ require 'timelogic-api/models/elapsed_response'
31
+ require 'timelogic-api/models/error_response'
32
+ require 'timelogic-api/models/get_current_time200_response'
33
+ require 'timelogic-api/models/get_timezone200_response'
34
+ require 'timelogic-api/models/jwk_key'
35
+ require 'timelogic-api/models/jwks_response'
36
+ require 'timelogic-api/models/time_payload'
37
+ require 'timelogic-api/models/time_payload_bulk_item'
38
+ require 'timelogic-api/models/timezone_match'
39
+ require 'timelogic-api/models/timezone_offset_response'
40
+ require 'timelogic-api/models/timezone_resolved_response'
41
+ require 'timelogic-api/models/time_payload_bulk_response'
42
+
43
+ # APIs
44
+ require 'timelogic-api/api/time_api'
45
+ require 'timelogic-api/api/utility_api'
46
+
47
+ module TimeLogic::Api
48
+ class << self
49
+ # Customize default settings for the SDK using block.
50
+ # TimeLogic::Api.configure do |config|
51
+ # config.username = "xxx"
52
+ # config.password = "xxx"
53
+ # end
54
+ # If no block given, return the default Configuration object.
55
+ def configure
56
+ if block_given?
57
+ yield(Configuration.default)
58
+ else
59
+ Configuration.default
60
+ end
61
+ end
62
+ end
63
+ end
metadata ADDED
@@ -0,0 +1,134 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: timelogic-api
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - TimeLogic API LLC
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-08-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: typhoeus
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.1
33
+ - !ruby/object:Gem::Dependency
34
+ name: rspec
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.6'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 3.6.0
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '3.6'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 3.6.0
53
+ description: Official Ruby SDK for TimeLogic API, providing world time, timezone,
54
+ calendar, and signed response operations.
55
+ email:
56
+ - support@timelogicapi.com
57
+ executables: []
58
+ extensions: []
59
+ extra_rdoc_files: []
60
+ files:
61
+ - README.md
62
+ - docs/ApiError.md
63
+ - docs/BulkError.md
64
+ - docs/CalendarResponse.md
65
+ - docs/DiffEndpointRef.md
66
+ - docs/DiffResponse.md
67
+ - docs/DstResponse.md
68
+ - docs/ElapsedResponse.md
69
+ - docs/ErrorResponse.md
70
+ - docs/GetCurrentTime200Response.md
71
+ - docs/GetTimezone200Response.md
72
+ - docs/JwkKey.md
73
+ - docs/JwksResponse.md
74
+ - docs/TimeApi.md
75
+ - docs/TimePayload.md
76
+ - docs/TimePayloadBulkItem.md
77
+ - docs/TimePayloadBulkResponse.md
78
+ - docs/TimezoneMatch.md
79
+ - docs/TimezoneOffsetResponse.md
80
+ - docs/TimezoneResolvedResponse.md
81
+ - docs/UtilityApi.md
82
+ - lib/timelogic-api.rb
83
+ - lib/timelogic-api/api/time_api.rb
84
+ - lib/timelogic-api/api/utility_api.rb
85
+ - lib/timelogic-api/api_client.rb
86
+ - lib/timelogic-api/api_error.rb
87
+ - lib/timelogic-api/configuration.rb
88
+ - lib/timelogic-api/models/api_error.rb
89
+ - lib/timelogic-api/models/bulk_error.rb
90
+ - lib/timelogic-api/models/calendar_response.rb
91
+ - lib/timelogic-api/models/diff_endpoint_ref.rb
92
+ - lib/timelogic-api/models/diff_response.rb
93
+ - lib/timelogic-api/models/dst_response.rb
94
+ - lib/timelogic-api/models/elapsed_response.rb
95
+ - lib/timelogic-api/models/error_response.rb
96
+ - lib/timelogic-api/models/get_current_time200_response.rb
97
+ - lib/timelogic-api/models/get_timezone200_response.rb
98
+ - lib/timelogic-api/models/jwk_key.rb
99
+ - lib/timelogic-api/models/jwks_response.rb
100
+ - lib/timelogic-api/models/time_payload.rb
101
+ - lib/timelogic-api/models/time_payload_bulk_item.rb
102
+ - lib/timelogic-api/models/time_payload_bulk_response.rb
103
+ - lib/timelogic-api/models/timezone_match.rb
104
+ - lib/timelogic-api/models/timezone_offset_response.rb
105
+ - lib/timelogic-api/models/timezone_resolved_response.rb
106
+ - lib/timelogic-api/transport_configuration.rb
107
+ - lib/timelogic-api/version.rb
108
+ homepage: https://github.com/TimeLogic-API-LLC/timelogic-api-sdks
109
+ licenses:
110
+ - Unlicense
111
+ metadata:
112
+ source_code_uri: https://github.com/TimeLogic-API-LLC/timelogic-api-sdks
113
+ bug_tracker_uri: https://github.com/TimeLogic-API-LLC/timelogic-api-sdks/issues
114
+ changelog_uri: https://github.com/TimeLogic-API-LLC/timelogic-api-sdks/releases
115
+ post_install_message:
116
+ rdoc_options: []
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '2.7'
124
+ required_rubygems_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - ">="
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ requirements: []
130
+ rubygems_version: 3.5.22
131
+ signing_key:
132
+ specification_version: 4
133
+ summary: TimeLogic API | A World Time API
134
+ test_files: []