hubspot-api-client 6.0.0 → 7.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/hubspot/codegen/cms/audit-logs/configuration.rb +0 -7
- data/lib/hubspot/codegen/cms/domains/configuration.rb +0 -7
- data/lib/hubspot/codegen/cms/performance/configuration.rb +0 -14
- data/lib/hubspot/codegen/cms/site-search/configuration.rb +0 -7
- data/lib/hubspot/codegen/cms/url-redirects/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/associations/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/companies/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/contacts/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/deals/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/extensions/cards/configuration.rb +0 -14
- data/lib/hubspot/codegen/crm/imports/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/line_items/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/owners/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/pipelines/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/products/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/properties/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/quotes/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/tickets/configuration.rb +0 -7
- data/lib/hubspot/codegen/crm/timeline/configuration.rb +0 -7
- data/lib/hubspot/codegen/oauth/configuration.rb +0 -21
- data/lib/hubspot/codegen/webhooks/api/subscriptions_api.rb +16 -12
- data/lib/hubspot/codegen/webhooks/configuration.rb +0 -14
- data/lib/hubspot/codegen/webhooks/models/batch_response_subscription_response.rb +1 -21
- data/lib/hubspot/codegen/webhooks/models/batch_response_subscription_response_with_errors.rb +331 -0
- data/lib/hubspot/codegen/webhooks/models/settings_response.rb +28 -28
- data/lib/hubspot/codegen/webhooks/models/subscription_create_request.rb +16 -13
- data/lib/hubspot/codegen/webhooks/models/subscription_patch_request.rb +7 -7
- data/lib/hubspot/codegen/webhooks/models/subscription_response.rb +45 -39
- data/lib/hubspot/version.rb +1 -1
- metadata +3 -2
@@ -15,14 +15,15 @@ require 'date'
|
|
15
15
|
module Hubspot
|
16
16
|
module Webhooks
|
17
17
|
class SubscriptionCreateRequest
|
18
|
-
attr_accessor :active
|
19
|
-
|
20
18
|
# Type of event to listen for. Can be one of `create`, `delete`, `deletedForPrivacy`, or `propertyChange`.
|
21
19
|
attr_accessor :event_type
|
22
20
|
|
23
21
|
# The internal name of the property to monitor for changes. Only applies when `eventType` is `propertyChange`.
|
24
22
|
attr_accessor :property_name
|
25
23
|
|
24
|
+
# Determines if the subscription is active or paused. Defaults to false.
|
25
|
+
attr_accessor :active
|
26
|
+
|
26
27
|
class EnumAttributeValidator
|
27
28
|
attr_reader :datatype
|
28
29
|
attr_reader :allowable_values
|
@@ -48,18 +49,18 @@ module Hubspot
|
|
48
49
|
# Attribute mapping from ruby-style variable name to JSON key.
|
49
50
|
def self.attribute_map
|
50
51
|
{
|
51
|
-
:'active' => :'active',
|
52
52
|
:'event_type' => :'eventType',
|
53
|
-
:'property_name' => :'propertyName'
|
53
|
+
:'property_name' => :'propertyName',
|
54
|
+
:'active' => :'active'
|
54
55
|
}
|
55
56
|
end
|
56
57
|
|
57
58
|
# Attribute type mapping.
|
58
59
|
def self.openapi_types
|
59
60
|
{
|
60
|
-
:'active' => :'Boolean',
|
61
61
|
:'event_type' => :'String',
|
62
|
-
:'property_name' => :'String'
|
62
|
+
:'property_name' => :'String',
|
63
|
+
:'active' => :'Boolean'
|
63
64
|
}
|
64
65
|
end
|
65
66
|
|
@@ -84,10 +85,6 @@ module Hubspot
|
|
84
85
|
h[k.to_sym] = v
|
85
86
|
}
|
86
87
|
|
87
|
-
if attributes.key?(:'active')
|
88
|
-
self.active = attributes[:'active']
|
89
|
-
end
|
90
|
-
|
91
88
|
if attributes.key?(:'event_type')
|
92
89
|
self.event_type = attributes[:'event_type']
|
93
90
|
end
|
@@ -95,6 +92,12 @@ module Hubspot
|
|
95
92
|
if attributes.key?(:'property_name')
|
96
93
|
self.property_name = attributes[:'property_name']
|
97
94
|
end
|
95
|
+
|
96
|
+
if attributes.key?(:'active')
|
97
|
+
self.active = attributes[:'active']
|
98
|
+
else
|
99
|
+
self.active = false
|
100
|
+
end
|
98
101
|
end
|
99
102
|
|
100
103
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -132,9 +135,9 @@ module Hubspot
|
|
132
135
|
def ==(o)
|
133
136
|
return true if self.equal?(o)
|
134
137
|
self.class == o.class &&
|
135
|
-
active == o.active &&
|
136
138
|
event_type == o.event_type &&
|
137
|
-
property_name == o.property_name
|
139
|
+
property_name == o.property_name &&
|
140
|
+
active == o.active
|
138
141
|
end
|
139
142
|
|
140
143
|
# @see the `==` method
|
@@ -146,7 +149,7 @@ module Hubspot
|
|
146
149
|
# Calculates hash code according to all attributes.
|
147
150
|
# @return [Integer] Hash code
|
148
151
|
def hash
|
149
|
-
[
|
152
|
+
[event_type, property_name, active].hash
|
150
153
|
end
|
151
154
|
|
152
155
|
# Builds the object from hash
|
@@ -16,19 +16,19 @@ module Hubspot
|
|
16
16
|
module Webhooks
|
17
17
|
class SubscriptionPatchRequest
|
18
18
|
# Determines if the subscription is active or paused.
|
19
|
-
attr_accessor :
|
19
|
+
attr_accessor :active
|
20
20
|
|
21
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
22
|
def self.attribute_map
|
23
23
|
{
|
24
|
-
:'
|
24
|
+
:'active' => :'active'
|
25
25
|
}
|
26
26
|
end
|
27
27
|
|
28
28
|
# Attribute type mapping.
|
29
29
|
def self.openapi_types
|
30
30
|
{
|
31
|
-
:'
|
31
|
+
:'active' => :'Boolean'
|
32
32
|
}
|
33
33
|
end
|
34
34
|
|
@@ -53,8 +53,8 @@ module Hubspot
|
|
53
53
|
h[k.to_sym] = v
|
54
54
|
}
|
55
55
|
|
56
|
-
if attributes.key?(:'
|
57
|
-
self.
|
56
|
+
if attributes.key?(:'active')
|
57
|
+
self.active = attributes[:'active']
|
58
58
|
end
|
59
59
|
end
|
60
60
|
|
@@ -76,7 +76,7 @@ module Hubspot
|
|
76
76
|
def ==(o)
|
77
77
|
return true if self.equal?(o)
|
78
78
|
self.class == o.class &&
|
79
|
-
|
79
|
+
active == o.active
|
80
80
|
end
|
81
81
|
|
82
82
|
# @see the `==` method
|
@@ -88,7 +88,7 @@ module Hubspot
|
|
88
88
|
# Calculates hash code according to all attributes.
|
89
89
|
# @return [Integer] Hash code
|
90
90
|
def hash
|
91
|
-
[
|
91
|
+
[active].hash
|
92
92
|
end
|
93
93
|
|
94
94
|
# Builds the object from hash
|
@@ -15,6 +15,15 @@ require 'date'
|
|
15
15
|
module Hubspot
|
16
16
|
module Webhooks
|
17
17
|
class SubscriptionResponse
|
18
|
+
# Type of event to listen for. Can be one of `create`, `delete`, `deletedForPrivacy`, or `propertyChange`.
|
19
|
+
attr_accessor :event_type
|
20
|
+
|
21
|
+
# The internal name of the property being monitored for changes. Only applies when `eventType` is `propertyChange`.
|
22
|
+
attr_accessor :property_name
|
23
|
+
|
24
|
+
# Determines if the subscription is active or paused.
|
25
|
+
attr_accessor :active
|
26
|
+
|
18
27
|
# The unique ID of the subscription.
|
19
28
|
attr_accessor :id
|
20
29
|
|
@@ -24,14 +33,6 @@ module Hubspot
|
|
24
33
|
# When this subscription was last updated. Formatted as milliseconds from the [Unix epoch](#).
|
25
34
|
attr_accessor :updated_at
|
26
35
|
|
27
|
-
# Type of event to listen for. Can be one of `create`, `delete`, `deletedForPrivacy`, or `propertyChange`.
|
28
|
-
attr_accessor :event_type
|
29
|
-
|
30
|
-
# The internal name of the property being monitored for changes. Only applies when `eventType` is `propertyChange`.
|
31
|
-
attr_accessor :property_name
|
32
|
-
|
33
|
-
attr_accessor :active
|
34
|
-
|
35
36
|
class EnumAttributeValidator
|
36
37
|
attr_reader :datatype
|
37
38
|
attr_reader :allowable_values
|
@@ -57,24 +58,24 @@ module Hubspot
|
|
57
58
|
# Attribute mapping from ruby-style variable name to JSON key.
|
58
59
|
def self.attribute_map
|
59
60
|
{
|
60
|
-
:'id' => :'id',
|
61
|
-
:'created_at' => :'createdAt',
|
62
|
-
:'updated_at' => :'updatedAt',
|
63
61
|
:'event_type' => :'eventType',
|
64
62
|
:'property_name' => :'propertyName',
|
65
|
-
:'active' => :'active'
|
63
|
+
:'active' => :'active',
|
64
|
+
:'id' => :'id',
|
65
|
+
:'created_at' => :'createdAt',
|
66
|
+
:'updated_at' => :'updatedAt'
|
66
67
|
}
|
67
68
|
end
|
68
69
|
|
69
70
|
# Attribute type mapping.
|
70
71
|
def self.openapi_types
|
71
72
|
{
|
72
|
-
:'id' => :'String',
|
73
|
-
:'created_at' => :'DateTime',
|
74
|
-
:'updated_at' => :'DateTime',
|
75
73
|
:'event_type' => :'String',
|
76
74
|
:'property_name' => :'String',
|
77
|
-
:'active' => :'Boolean'
|
75
|
+
:'active' => :'Boolean',
|
76
|
+
:'id' => :'String',
|
77
|
+
:'created_at' => :'DateTime',
|
78
|
+
:'updated_at' => :'DateTime'
|
78
79
|
}
|
79
80
|
end
|
80
81
|
|
@@ -99,18 +100,6 @@ module Hubspot
|
|
99
100
|
h[k.to_sym] = v
|
100
101
|
}
|
101
102
|
|
102
|
-
if attributes.key?(:'id')
|
103
|
-
self.id = attributes[:'id']
|
104
|
-
end
|
105
|
-
|
106
|
-
if attributes.key?(:'created_at')
|
107
|
-
self.created_at = attributes[:'created_at']
|
108
|
-
end
|
109
|
-
|
110
|
-
if attributes.key?(:'updated_at')
|
111
|
-
self.updated_at = attributes[:'updated_at']
|
112
|
-
end
|
113
|
-
|
114
103
|
if attributes.key?(:'event_type')
|
115
104
|
self.event_type = attributes[:'event_type']
|
116
105
|
end
|
@@ -122,12 +111,32 @@ module Hubspot
|
|
122
111
|
if attributes.key?(:'active')
|
123
112
|
self.active = attributes[:'active']
|
124
113
|
end
|
114
|
+
|
115
|
+
if attributes.key?(:'id')
|
116
|
+
self.id = attributes[:'id']
|
117
|
+
end
|
118
|
+
|
119
|
+
if attributes.key?(:'created_at')
|
120
|
+
self.created_at = attributes[:'created_at']
|
121
|
+
end
|
122
|
+
|
123
|
+
if attributes.key?(:'updated_at')
|
124
|
+
self.updated_at = attributes[:'updated_at']
|
125
|
+
end
|
125
126
|
end
|
126
127
|
|
127
128
|
# Show invalid properties with the reasons. Usually used together with valid?
|
128
129
|
# @return Array for valid properties with the reasons
|
129
130
|
def list_invalid_properties
|
130
131
|
invalid_properties = Array.new
|
132
|
+
if @event_type.nil?
|
133
|
+
invalid_properties.push('invalid value for "event_type", event_type cannot be nil.')
|
134
|
+
end
|
135
|
+
|
136
|
+
if @active.nil?
|
137
|
+
invalid_properties.push('invalid value for "active", active cannot be nil.')
|
138
|
+
end
|
139
|
+
|
131
140
|
if @id.nil?
|
132
141
|
invalid_properties.push('invalid value for "id", id cannot be nil.')
|
133
142
|
end
|
@@ -136,21 +145,18 @@ module Hubspot
|
|
136
145
|
invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
|
137
146
|
end
|
138
147
|
|
139
|
-
if @event_type.nil?
|
140
|
-
invalid_properties.push('invalid value for "event_type", event_type cannot be nil.')
|
141
|
-
end
|
142
|
-
|
143
148
|
invalid_properties
|
144
149
|
end
|
145
150
|
|
146
151
|
# Check to see if the all the properties in the model are valid
|
147
152
|
# @return true if the model is valid
|
148
153
|
def valid?
|
149
|
-
return false if @id.nil?
|
150
|
-
return false if @created_at.nil?
|
151
154
|
return false if @event_type.nil?
|
152
155
|
event_type_validator = EnumAttributeValidator.new('String', ["contact.propertyChange", "company.propertyChange", "deal.propertyChange", "contact.creation", "contact.deletion", "contact.privacyDeletion", "company.creation", "company.deletion", "deal.creation", "deal.deletion"])
|
153
156
|
return false unless event_type_validator.valid?(@event_type)
|
157
|
+
return false if @active.nil?
|
158
|
+
return false if @id.nil?
|
159
|
+
return false if @created_at.nil?
|
154
160
|
true
|
155
161
|
end
|
156
162
|
|
@@ -169,12 +175,12 @@ module Hubspot
|
|
169
175
|
def ==(o)
|
170
176
|
return true if self.equal?(o)
|
171
177
|
self.class == o.class &&
|
172
|
-
id == o.id &&
|
173
|
-
created_at == o.created_at &&
|
174
|
-
updated_at == o.updated_at &&
|
175
178
|
event_type == o.event_type &&
|
176
179
|
property_name == o.property_name &&
|
177
|
-
active == o.active
|
180
|
+
active == o.active &&
|
181
|
+
id == o.id &&
|
182
|
+
created_at == o.created_at &&
|
183
|
+
updated_at == o.updated_at
|
178
184
|
end
|
179
185
|
|
180
186
|
# @see the `==` method
|
@@ -186,7 +192,7 @@ module Hubspot
|
|
186
192
|
# Calculates hash code according to all attributes.
|
187
193
|
# @return [Integer] Hash code
|
188
194
|
def hash
|
189
|
-
[
|
195
|
+
[event_type, property_name, active, id, created_at, updated_at].hash
|
190
196
|
end
|
191
197
|
|
192
198
|
# Builds the object from hash
|
data/lib/hubspot/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hubspot-api-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 7.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- HubSpot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -597,6 +597,7 @@ files:
|
|
597
597
|
- lib/hubspot/codegen/webhooks/configuration.rb
|
598
598
|
- lib/hubspot/codegen/webhooks/models/batch_input_subscription_batch_update_request.rb
|
599
599
|
- lib/hubspot/codegen/webhooks/models/batch_response_subscription_response.rb
|
600
|
+
- lib/hubspot/codegen/webhooks/models/batch_response_subscription_response_with_errors.rb
|
600
601
|
- lib/hubspot/codegen/webhooks/models/error.rb
|
601
602
|
- lib/hubspot/codegen/webhooks/models/error_detail.rb
|
602
603
|
- lib/hubspot/codegen/webhooks/models/settings_change_request.rb
|