activitysmith 0.1.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.
Files changed (30) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +116 -0
  4. data/generated/activitysmith_openapi/api/live_activities_api.rb +226 -0
  5. data/generated/activitysmith_openapi/api/push_notifications_api.rb +90 -0
  6. data/generated/activitysmith_openapi/api_client.rb +394 -0
  7. data/generated/activitysmith_openapi/api_error.rb +58 -0
  8. data/generated/activitysmith_openapi/configuration.rb +309 -0
  9. data/generated/activitysmith_openapi/models/content_state_end.rb +393 -0
  10. data/generated/activitysmith_openapi/models/content_state_start.rb +397 -0
  11. data/generated/activitysmith_openapi/models/content_state_update.rb +362 -0
  12. data/generated/activitysmith_openapi/models/live_activity_end_request.rb +237 -0
  13. data/generated/activitysmith_openapi/models/live_activity_end_response.rb +271 -0
  14. data/generated/activitysmith_openapi/models/live_activity_limit_error.rb +270 -0
  15. data/generated/activitysmith_openapi/models/live_activity_start_request.rb +221 -0
  16. data/generated/activitysmith_openapi/models/live_activity_start_response.rb +271 -0
  17. data/generated/activitysmith_openapi/models/live_activity_update_request.rb +237 -0
  18. data/generated/activitysmith_openapi/models/live_activity_update_response.rb +271 -0
  19. data/generated/activitysmith_openapi/models/push_notification_request.rb +239 -0
  20. data/generated/activitysmith_openapi/models/push_notification_response.rb +255 -0
  21. data/generated/activitysmith_openapi/models/rate_limit_error.rb +237 -0
  22. data/generated/activitysmith_openapi/models/send_push_notification429_response.rb +105 -0
  23. data/generated/activitysmith_openapi/version.rb +15 -0
  24. data/generated/activitysmith_openapi.rb +55 -0
  25. data/lib/activitysmith/client.rb +47 -0
  26. data/lib/activitysmith/live_activities.rb +44 -0
  27. data/lib/activitysmith/notifications.rb +28 -0
  28. data/lib/activitysmith/version.rb +5 -0
  29. data/lib/activitysmith.rb +6 -0
  30. metadata +129 -0
@@ -0,0 +1,237 @@
1
+ =begin
2
+ #ActivitySmith API
3
+
4
+ #Send push notifications and Live Activities to your own devices via a single API key.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.7.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module OpenapiClient
17
+ class RateLimitError
18
+ attr_accessor :error
19
+
20
+ attr_accessor :message
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'error' => :'error',
26
+ :'message' => :'message'
27
+ }
28
+ end
29
+
30
+ # Returns all the JSON keys this model knows about
31
+ def self.acceptable_attributes
32
+ attribute_map.values
33
+ end
34
+
35
+ # Attribute type mapping.
36
+ def self.openapi_types
37
+ {
38
+ :'error' => :'String',
39
+ :'message' => :'String'
40
+ }
41
+ end
42
+
43
+ # List of attributes with nullable: true
44
+ def self.openapi_nullable
45
+ Set.new([
46
+ ])
47
+ end
48
+
49
+ # Initializes the object
50
+ # @param [Hash] attributes Model attributes in the form of hash
51
+ def initialize(attributes = {})
52
+ if (!attributes.is_a?(Hash))
53
+ fail ArgumentError, "The input argument (attributes) must be a hash in `OpenapiClient::RateLimitError` initialize method"
54
+ end
55
+
56
+ # check to see if the attribute exists and convert string to symbol for hash key
57
+ attributes = attributes.each_with_object({}) { |(k, v), h|
58
+ if (!self.class.attribute_map.key?(k.to_sym))
59
+ fail ArgumentError, "`#{k}` is not a valid attribute in `OpenapiClient::RateLimitError`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
60
+ end
61
+ h[k.to_sym] = v
62
+ }
63
+
64
+ if attributes.key?(:'error')
65
+ self.error = attributes[:'error']
66
+ else
67
+ self.error = nil
68
+ end
69
+
70
+ if attributes.key?(:'message')
71
+ self.message = attributes[:'message']
72
+ else
73
+ self.message = nil
74
+ end
75
+ end
76
+
77
+ # Show invalid properties with the reasons. Usually used together with valid?
78
+ # @return Array for valid properties with the reasons
79
+ def list_invalid_properties
80
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
81
+ invalid_properties = Array.new
82
+ if @error.nil?
83
+ invalid_properties.push('invalid value for "error", error cannot be nil.')
84
+ end
85
+
86
+ if @message.nil?
87
+ invalid_properties.push('invalid value for "message", message cannot be nil.')
88
+ end
89
+
90
+ invalid_properties
91
+ end
92
+
93
+ # Check to see if the all the properties in the model are valid
94
+ # @return true if the model is valid
95
+ def valid?
96
+ warn '[DEPRECATED] the `valid?` method is obsolete'
97
+ return false if @error.nil?
98
+ return false if @message.nil?
99
+ true
100
+ end
101
+
102
+ # Checks equality by comparing each attribute.
103
+ # @param [Object] Object to be compared
104
+ def ==(o)
105
+ return true if self.equal?(o)
106
+ self.class == o.class &&
107
+ error == o.error &&
108
+ message == o.message
109
+ end
110
+
111
+ # @see the `==` method
112
+ # @param [Object] Object to be compared
113
+ def eql?(o)
114
+ self == o
115
+ end
116
+
117
+ # Calculates hash code according to all attributes.
118
+ # @return [Integer] Hash code
119
+ def hash
120
+ [error, message].hash
121
+ end
122
+
123
+ # Builds the object from hash
124
+ # @param [Hash] attributes Model attributes in the form of hash
125
+ # @return [Object] Returns the model itself
126
+ def self.build_from_hash(attributes)
127
+ return nil unless attributes.is_a?(Hash)
128
+ attributes = attributes.transform_keys(&:to_sym)
129
+ transformed_hash = {}
130
+ openapi_types.each_pair do |key, type|
131
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
132
+ transformed_hash["#{key}"] = nil
133
+ elsif type =~ /\AArray<(.*)>/i
134
+ # check to ensure the input is an array given that the attribute
135
+ # is documented as an array but the input is not
136
+ if attributes[attribute_map[key]].is_a?(Array)
137
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
138
+ end
139
+ elsif !attributes[attribute_map[key]].nil?
140
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
141
+ end
142
+ end
143
+ new(transformed_hash)
144
+ end
145
+
146
+ # Deserializes the data based on type
147
+ # @param string type Data type
148
+ # @param string value Value to be deserialized
149
+ # @return [Object] Deserialized data
150
+ def self._deserialize(type, value)
151
+ case type.to_sym
152
+ when :Time
153
+ Time.parse(value)
154
+ when :Date
155
+ Date.parse(value)
156
+ when :String
157
+ value.to_s
158
+ when :Integer
159
+ value.to_i
160
+ when :Float
161
+ value.to_f
162
+ when :Boolean
163
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
164
+ true
165
+ else
166
+ false
167
+ end
168
+ when :Object
169
+ # generic object (usually a Hash), return directly
170
+ value
171
+ when /\AArray<(?<inner_type>.+)>\z/
172
+ inner_type = Regexp.last_match[:inner_type]
173
+ value.map { |v| _deserialize(inner_type, v) }
174
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
175
+ k_type = Regexp.last_match[:k_type]
176
+ v_type = Regexp.last_match[:v_type]
177
+ {}.tap do |hash|
178
+ value.each do |k, v|
179
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
180
+ end
181
+ end
182
+ else # model
183
+ # models (e.g. Pet) or oneOf
184
+ klass = OpenapiClient.const_get(type)
185
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
186
+ end
187
+ end
188
+
189
+ # Returns the string representation of the object
190
+ # @return [String] String presentation of the object
191
+ def to_s
192
+ to_hash.to_s
193
+ end
194
+
195
+ # to_body is an alias to to_hash (backward compatibility)
196
+ # @return [Hash] Returns the object in the form of hash
197
+ def to_body
198
+ to_hash
199
+ end
200
+
201
+ # Returns the object in the form of hash
202
+ # @return [Hash] Returns the object in the form of hash
203
+ def to_hash
204
+ hash = {}
205
+ self.class.attribute_map.each_pair do |attr, param|
206
+ value = self.send(attr)
207
+ if value.nil?
208
+ is_nullable = self.class.openapi_nullable.include?(attr)
209
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
210
+ end
211
+
212
+ hash[param] = _to_hash(value)
213
+ end
214
+ hash
215
+ end
216
+
217
+ # Outputs non-array value in the form of hash
218
+ # For object, use to_hash. Otherwise, just return the value
219
+ # @param [Object] value Any valid value
220
+ # @return [Hash] Returns the value in the form of hash
221
+ def _to_hash(value)
222
+ if value.is_a?(Array)
223
+ value.compact.map { |v| _to_hash(v) }
224
+ elsif value.is_a?(Hash)
225
+ {}.tap do |hash|
226
+ value.each { |k, v| hash[k] = _to_hash(v) }
227
+ end
228
+ elsif value.respond_to? :to_hash
229
+ value.to_hash
230
+ else
231
+ value
232
+ end
233
+ end
234
+
235
+ end
236
+
237
+ end
@@ -0,0 +1,105 @@
1
+ =begin
2
+ #ActivitySmith API
3
+
4
+ #Send push notifications and Live Activities to your own devices via a single API key.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.7.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module OpenapiClient
17
+ module SendPushNotification429Response
18
+ class << self
19
+ # List of class defined in oneOf (OpenAPI v3)
20
+ def openapi_one_of
21
+ [
22
+ :'LiveActivityLimitError',
23
+ :'RateLimitError'
24
+ ]
25
+ end
26
+
27
+ # Builds the object
28
+ # @param [Mixed] Data to be matched against the list of oneOf items
29
+ # @return [Object] Returns the model or the data itself
30
+ def build(data)
31
+ # Go through the list of oneOf items and attempt to identify the appropriate one.
32
+ # Note:
33
+ # - We do not attempt to check whether exactly one item matches.
34
+ # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 })
35
+ # due to the way the deserialization is made in the base_object template (it just casts without verifying).
36
+ # - TODO: scalar values are de facto behaving as if they were nullable.
37
+ # - TODO: logging when debugging is set.
38
+ openapi_one_of.each do |klass|
39
+ begin
40
+ next if klass == :AnyType # "nullable: true"
41
+ typed_data = find_and_cast_into_type(klass, data)
42
+ return typed_data if typed_data
43
+ rescue # rescue all errors so we keep iterating even if the current item lookup raises
44
+ end
45
+ end
46
+
47
+ openapi_one_of.include?(:AnyType) ? data : nil
48
+ end
49
+
50
+ private
51
+
52
+ SchemaMismatchError = Class.new(StandardError)
53
+
54
+ # Note: 'File' is missing here because in the regular case we get the data _after_ a call to JSON.parse.
55
+ def find_and_cast_into_type(klass, data)
56
+ return if data.nil?
57
+
58
+ case klass.to_s
59
+ when 'Boolean'
60
+ return data if data.instance_of?(TrueClass) || data.instance_of?(FalseClass)
61
+ when 'Float'
62
+ return data if data.instance_of?(Float)
63
+ when 'Integer'
64
+ return data if data.instance_of?(Integer)
65
+ when 'Time'
66
+ return Time.parse(data)
67
+ when 'Date'
68
+ return Date.parse(data)
69
+ when 'String'
70
+ return data if data.instance_of?(String)
71
+ when 'Object' # "type: object"
72
+ return data if data.instance_of?(Hash)
73
+ when /\AArray<(?<sub_type>.+)>\z/ # "type: array"
74
+ if data.instance_of?(Array)
75
+ sub_type = Regexp.last_match[:sub_type]
76
+ return data.map { |item| find_and_cast_into_type(sub_type, item) }
77
+ end
78
+ when /\AHash<String, (?<sub_type>.+)>\z/ # "type: object" with "additionalProperties: { ... }"
79
+ if data.instance_of?(Hash) && data.keys.all? { |k| k.instance_of?(Symbol) || k.instance_of?(String) }
80
+ sub_type = Regexp.last_match[:sub_type]
81
+ return data.each_with_object({}) { |(k, v), hsh| hsh[k] = find_and_cast_into_type(sub_type, v) }
82
+ end
83
+ else # model
84
+ const = OpenapiClient.const_get(klass)
85
+ if const
86
+ if const.respond_to?(:openapi_one_of) # nested oneOf model
87
+ model = const.build(data)
88
+ return model if model
89
+ else
90
+ # raise if data contains keys that are not known to the model
91
+ raise if const.respond_to?(:acceptable_attributes) && !(data.keys - const.acceptable_attributes).empty?
92
+ model = const.build_from_hash(data)
93
+ return model if model
94
+ end
95
+ end
96
+ end
97
+
98
+ raise # if no match by now, raise
99
+ rescue
100
+ raise SchemaMismatchError, "#{data} doesn't match the #{klass} type"
101
+ end
102
+ end
103
+ end
104
+
105
+ end
@@ -0,0 +1,15 @@
1
+ =begin
2
+ #ActivitySmith API
3
+
4
+ #Send push notifications and Live Activities to your own devices via a single API key.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.7.0
10
+
11
+ =end
12
+
13
+ module OpenapiClient
14
+ VERSION = '0.1.0'
15
+ end
@@ -0,0 +1,55 @@
1
+ =begin
2
+ #ActivitySmith API
3
+
4
+ #Send push notifications and Live Activities to your own devices via a single API key.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.7.0
10
+
11
+ =end
12
+
13
+ # Common files
14
+ require 'activitysmith_openapi/api_client'
15
+ require 'activitysmith_openapi/api_error'
16
+ require 'activitysmith_openapi/version'
17
+ require 'activitysmith_openapi/configuration'
18
+
19
+ # Models
20
+ require 'activitysmith_openapi/models/content_state_end'
21
+ require 'activitysmith_openapi/models/content_state_start'
22
+ require 'activitysmith_openapi/models/content_state_update'
23
+ require 'activitysmith_openapi/models/live_activity_end_request'
24
+ require 'activitysmith_openapi/models/live_activity_end_response'
25
+ require 'activitysmith_openapi/models/live_activity_limit_error'
26
+ require 'activitysmith_openapi/models/live_activity_start_request'
27
+ require 'activitysmith_openapi/models/live_activity_start_response'
28
+ require 'activitysmith_openapi/models/live_activity_update_request'
29
+ require 'activitysmith_openapi/models/live_activity_update_response'
30
+ require 'activitysmith_openapi/models/push_notification_request'
31
+ require 'activitysmith_openapi/models/push_notification_response'
32
+ require 'activitysmith_openapi/models/rate_limit_error'
33
+ require 'activitysmith_openapi/models/send_push_notification429_response'
34
+
35
+ # APIs
36
+ require 'activitysmith_openapi/api/live_activities_api'
37
+ require 'activitysmith_openapi/api/push_notifications_api'
38
+
39
+ module OpenapiClient
40
+ class << self
41
+ # Customize default settings for the SDK using block.
42
+ # OpenapiClient.configure do |config|
43
+ # config.username = "xxx"
44
+ # config.password = "xxx"
45
+ # end
46
+ # If no block given, return the default Configuration object.
47
+ def configure
48
+ if block_given?
49
+ yield(Configuration.default)
50
+ else
51
+ Configuration.default
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActivitySmith
4
+ class Client
5
+ attr_reader :notifications, :live_activities
6
+
7
+ def initialize(api_key:)
8
+ raise ArgumentError, "ActivitySmith: api_key is required" if api_key.to_s.strip.empty?
9
+
10
+ load_generated_client!
11
+
12
+ config = OpenapiClient::Configuration.new
13
+ config.access_token = api_key
14
+
15
+ api_client = OpenapiClient::ApiClient.new(config)
16
+ @notifications = Notifications.new(OpenapiClient::PushNotificationsApi.new(api_client))
17
+ @live_activities = LiveActivities.new(OpenapiClient::LiveActivitiesApi.new(api_client))
18
+ end
19
+
20
+ private
21
+
22
+ def load_generated_client!
23
+ generated_entrypoint = File.expand_path("../../generated/openapi_client", __dir__)
24
+ require generated_entrypoint if File.exist?("#{generated_entrypoint}.rb")
25
+
26
+ required_constants = [
27
+ "OpenapiClient::Configuration",
28
+ "OpenapiClient::ApiClient",
29
+ "OpenapiClient::PushNotificationsApi",
30
+ "OpenapiClient::LiveActivitiesApi"
31
+ ]
32
+
33
+ missing = required_constants.reject { |name| constant_defined?(name) }
34
+ return if missing.empty?
35
+
36
+ raise RuntimeError,
37
+ "Generated Ruby client not found. Run SDK regeneration so /generated contains OpenAPI output."
38
+ end
39
+
40
+ def constant_defined?(name)
41
+ Object.const_get(name)
42
+ true
43
+ rescue NameError
44
+ false
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActivitySmith
4
+ class LiveActivities
5
+ def initialize(api)
6
+ @api = api
7
+ end
8
+
9
+ def start(request, opts = {})
10
+ @api.start_live_activity(request, opts)
11
+ end
12
+
13
+ def update(request, opts = {})
14
+ @api.update_live_activity(request, opts)
15
+ end
16
+
17
+ def end(request, opts = {})
18
+ @api.end_live_activity(request, opts)
19
+ end
20
+
21
+ # Backward-compatible aliases.
22
+ def start_live_activity(live_activity_start_request, opts = {})
23
+ @api.start_live_activity(live_activity_start_request, opts)
24
+ end
25
+
26
+ def update_live_activity(live_activity_update_request, opts = {})
27
+ @api.update_live_activity(live_activity_update_request, opts)
28
+ end
29
+
30
+ def end_live_activity(live_activity_end_request, opts = {})
31
+ @api.end_live_activity(live_activity_end_request, opts)
32
+ end
33
+
34
+ def method_missing(name, *args, &block)
35
+ return @api.public_send(name, *args, &block) if @api.respond_to?(name)
36
+
37
+ super
38
+ end
39
+
40
+ def respond_to_missing?(name, include_private = false)
41
+ @api.respond_to?(name, include_private) || super
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActivitySmith
4
+ class Notifications
5
+ def initialize(api)
6
+ @api = api
7
+ end
8
+
9
+ def send(request, opts = {})
10
+ @api.send_push_notification(request, opts)
11
+ end
12
+
13
+ # Backward-compatible alias.
14
+ def send_push_notification(push_notification_request, opts = {})
15
+ @api.send_push_notification(push_notification_request, opts)
16
+ end
17
+
18
+ def method_missing(name, *args, &block)
19
+ return @api.public_send(name, *args, &block) if @api.respond_to?(name)
20
+
21
+ super
22
+ end
23
+
24
+ def respond_to_missing?(name, include_private = false)
25
+ @api.respond_to?(name, include_private) || super
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActivitySmith
4
+ VERSION = "0.1.1"
5
+ end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "activitysmith/version"
4
+ require_relative "activitysmith/notifications"
5
+ require_relative "activitysmith/live_activities"
6
+ require_relative "activitysmith/client"
metadata ADDED
@@ -0,0 +1,129 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: activitysmith
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - ActivitySmith
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-02-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: json
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '2.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '2.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: typhoeus
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '13.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '13.0'
69
+ description: Official ActivitySmith Ruby SDK
70
+ email:
71
+ - adam@activitysmith.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - LICENSE
77
+ - README.md
78
+ - generated/activitysmith_openapi.rb
79
+ - generated/activitysmith_openapi/api/live_activities_api.rb
80
+ - generated/activitysmith_openapi/api/push_notifications_api.rb
81
+ - generated/activitysmith_openapi/api_client.rb
82
+ - generated/activitysmith_openapi/api_error.rb
83
+ - generated/activitysmith_openapi/configuration.rb
84
+ - generated/activitysmith_openapi/models/content_state_end.rb
85
+ - generated/activitysmith_openapi/models/content_state_start.rb
86
+ - generated/activitysmith_openapi/models/content_state_update.rb
87
+ - generated/activitysmith_openapi/models/live_activity_end_request.rb
88
+ - generated/activitysmith_openapi/models/live_activity_end_response.rb
89
+ - generated/activitysmith_openapi/models/live_activity_limit_error.rb
90
+ - generated/activitysmith_openapi/models/live_activity_start_request.rb
91
+ - generated/activitysmith_openapi/models/live_activity_start_response.rb
92
+ - generated/activitysmith_openapi/models/live_activity_update_request.rb
93
+ - generated/activitysmith_openapi/models/live_activity_update_response.rb
94
+ - generated/activitysmith_openapi/models/push_notification_request.rb
95
+ - generated/activitysmith_openapi/models/push_notification_response.rb
96
+ - generated/activitysmith_openapi/models/rate_limit_error.rb
97
+ - generated/activitysmith_openapi/models/send_push_notification429_response.rb
98
+ - generated/activitysmith_openapi/version.rb
99
+ - lib/activitysmith.rb
100
+ - lib/activitysmith/client.rb
101
+ - lib/activitysmith/live_activities.rb
102
+ - lib/activitysmith/notifications.rb
103
+ - lib/activitysmith/version.rb
104
+ homepage: https://activitysmith.com/docs/sdks/ruby
105
+ licenses:
106
+ - MIT
107
+ metadata:
108
+ homepage_uri: https://activitysmith.com/docs/sdks/ruby
109
+ source_code_uri: https://github.com/ActivitySmithHQ/activitysmith-ruby
110
+ post_install_message:
111
+ rdoc_options: []
112
+ require_paths:
113
+ - lib
114
+ required_ruby_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '3.0'
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ requirements: []
125
+ rubygems_version: 3.0.3.1
126
+ signing_key:
127
+ specification_version: 4
128
+ summary: Official ActivitySmith Ruby SDK
129
+ test_files: []