hubspot-api-client 16.2.1 → 16.3.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 (65) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +10 -1
  3. data/Gemfile.lock +1 -1
  4. data/README.md +33 -1
  5. data/lib/hubspot/codegen/crm/associations/v4/api/batch_api.rb +428 -0
  6. data/lib/hubspot/codegen/crm/associations/v4/api/definitions_api.rb +332 -0
  7. data/lib/hubspot/codegen/crm/associations/v4/api_client.rb +412 -0
  8. data/lib/hubspot/codegen/crm/associations/v4/api_error.rb +63 -0
  9. data/lib/hubspot/codegen/crm/associations/v4/configuration.rb +296 -0
  10. data/lib/hubspot/codegen/crm/associations/v4/models/association_spec.rb +278 -0
  11. data/lib/hubspot/codegen/crm/associations/v4/models/association_spec_with_label.rb +287 -0
  12. data/lib/hubspot/codegen/crm/associations/v4/models/batch_input_public_association_multi_archive.rb +232 -0
  13. data/lib/hubspot/codegen/crm/associations/v4/models/batch_input_public_association_multi_post.rb +232 -0
  14. data/lib/hubspot/codegen/crm/associations/v4/models/batch_input_public_default_association_multi_post.rb +232 -0
  15. data/lib/hubspot/codegen/crm/associations/v4/models/batch_input_public_fetch_associations_batch_request.rb +232 -0
  16. data/lib/hubspot/codegen/crm/associations/v4/models/batch_response_labels_between_object_pair.rb +328 -0
  17. data/lib/hubspot/codegen/crm/associations/v4/models/batch_response_labels_between_object_pair_with_errors.rb +348 -0
  18. data/lib/hubspot/codegen/crm/associations/v4/models/batch_response_public_association_multi_with_label.rb +328 -0
  19. data/lib/hubspot/codegen/crm/associations/v4/models/batch_response_public_association_multi_with_label_with_errors.rb +348 -0
  20. data/lib/hubspot/codegen/crm/associations/v4/models/batch_response_public_default_association.rb +348 -0
  21. data/lib/hubspot/codegen/crm/associations/v4/models/collection_response_association_spec_with_label_no_paging.rb +232 -0
  22. data/lib/hubspot/codegen/crm/associations/v4/models/error.rb +307 -0
  23. data/lib/hubspot/codegen/crm/associations/v4/models/error_category.rb +278 -0
  24. data/lib/hubspot/codegen/crm/associations/v4/models/error_detail.rb +273 -0
  25. data/lib/hubspot/codegen/crm/associations/v4/models/labels_between_object_pair.rb +288 -0
  26. data/lib/hubspot/codegen/crm/associations/v4/models/multi_associated_object_with_label.rb +246 -0
  27. data/lib/hubspot/codegen/crm/associations/v4/models/next_page.rb +239 -0
  28. data/lib/hubspot/codegen/crm/associations/v4/models/paging.rb +234 -0
  29. data/lib/hubspot/codegen/crm/associations/v4/models/previous_page.rb +239 -0
  30. data/lib/hubspot/codegen/crm/associations/v4/models/public_association_definition_create_request.rb +244 -0
  31. data/lib/hubspot/codegen/crm/associations/v4/models/public_association_definition_update_request.rb +244 -0
  32. data/lib/hubspot/codegen/crm/associations/v4/models/public_association_multi_archive.rb +246 -0
  33. data/lib/hubspot/codegen/crm/associations/v4/models/public_association_multi_post.rb +260 -0
  34. data/lib/hubspot/codegen/crm/associations/v4/models/public_association_multi_with_label.rb +255 -0
  35. data/lib/hubspot/codegen/crm/associations/v4/models/public_default_association.rb +258 -0
  36. data/lib/hubspot/codegen/crm/associations/v4/models/public_default_association_multi_post.rb +244 -0
  37. data/lib/hubspot/codegen/crm/associations/v4/models/public_fetch_associations_batch_request.rb +239 -0
  38. data/lib/hubspot/codegen/crm/associations/v4/models/public_object_id.rb +230 -0
  39. data/lib/hubspot/codegen/crm/associations/v4/models/standard_error.rb +324 -0
  40. data/lib/hubspot/codegen/oauth/api/access_tokens_api.rb +0 -2
  41. data/lib/hubspot/codegen/oauth/api/refresh_tokens_api.rb +5 -7
  42. data/lib/hubspot/codegen/oauth/api/tokens_api.rb +0 -2
  43. data/lib/hubspot/codegen/oauth/api_client.rb +0 -2
  44. data/lib/hubspot/codegen/oauth/api_error.rb +0 -2
  45. data/lib/hubspot/codegen/oauth/configuration.rb +0 -2
  46. data/lib/hubspot/codegen/oauth/models/access_token_info_response.rb +0 -2
  47. data/lib/hubspot/codegen/oauth/models/error.rb +0 -2
  48. data/lib/hubspot/codegen/oauth/models/error_detail.rb +0 -2
  49. data/lib/hubspot/codegen/oauth/models/refresh_token_info_response.rb +0 -2
  50. data/lib/hubspot/codegen/oauth/models/token_response_if.rb +31 -33
  51. data/lib/hubspot/discovery/crm/associations/client.rb +3 -1
  52. data/lib/hubspot/discovery/crm/associations/v4/api/batch_api.rb +15 -0
  53. data/lib/hubspot/discovery/crm/associations/v4/api/definitions_api.rb +15 -0
  54. data/lib/hubspot/discovery/crm/associations/v4/client.rb +21 -0
  55. data/lib/hubspot/version.rb +1 -1
  56. data/spec/discovery/cms/blogs/client_spec.rb +9 -0
  57. data/spec/discovery/cms/client_spec.rb +13 -0
  58. data/spec/discovery/crm/associations/client_spec.rb +7 -0
  59. data/spec/discovery/crm/associations/v4/batch_api_spec.rb +11 -0
  60. data/spec/discovery/crm/associations/v4/definitions_api_spec.rb +10 -0
  61. data/spec/discovery/crm/client_spec.rb +21 -0
  62. data/spec/discovery/crm/extensions/client_spec.rb +11 -0
  63. data/spec/discovery/crm/objects/client_spec.rb +13 -0
  64. data/spec/discovery/marketing/client_spec.rb +9 -0
  65. metadata +58 -2
@@ -1,6 +1,4 @@
1
1
  =begin
2
- #OAuthService
3
-
4
2
  #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
3
 
6
4
  The version of the OpenAPI document: v1
@@ -16,24 +14,24 @@ require 'time'
16
14
  module Hubspot
17
15
  module OAuth
18
16
  class TokenResponseIF
19
- attr_accessor :refresh_token
17
+ attr_accessor :access_token
20
18
 
21
19
  attr_accessor :expires_in
22
20
 
23
- attr_accessor :access_token
24
-
25
- attr_accessor :id_token
21
+ attr_accessor :refresh_token
26
22
 
27
23
  attr_accessor :token_type
28
24
 
25
+ attr_accessor :id_token
26
+
29
27
  # Attribute mapping from ruby-style variable name to JSON key.
30
28
  def self.attribute_map
31
29
  {
32
- :'refresh_token' => :'refresh_token',
33
- :'expires_in' => :'expires_in',
34
30
  :'access_token' => :'access_token',
35
- :'id_token' => :'id_token',
36
- :'token_type' => :'token_type'
31
+ :'expires_in' => :'expires_in',
32
+ :'refresh_token' => :'refresh_token',
33
+ :'token_type' => :'token_type',
34
+ :'id_token' => :'id_token'
37
35
  }
38
36
  end
39
37
 
@@ -45,11 +43,11 @@ module Hubspot
45
43
  # Attribute type mapping.
46
44
  def self.openapi_types
47
45
  {
48
- :'refresh_token' => :'String',
49
- :'expires_in' => :'Integer',
50
46
  :'access_token' => :'String',
51
- :'id_token' => :'String',
52
- :'token_type' => :'String'
47
+ :'expires_in' => :'Integer',
48
+ :'refresh_token' => :'String',
49
+ :'token_type' => :'String',
50
+ :'id_token' => :'String'
53
51
  }
54
52
  end
55
53
 
@@ -74,41 +72,41 @@ module Hubspot
74
72
  h[k.to_sym] = v
75
73
  }
76
74
 
77
- if attributes.key?(:'refresh_token')
78
- self.refresh_token = attributes[:'refresh_token']
75
+ if attributes.key?(:'access_token')
76
+ self.access_token = attributes[:'access_token']
79
77
  end
80
78
 
81
79
  if attributes.key?(:'expires_in')
82
80
  self.expires_in = attributes[:'expires_in']
83
81
  end
84
82
 
85
- if attributes.key?(:'access_token')
86
- self.access_token = attributes[:'access_token']
87
- end
88
-
89
- if attributes.key?(:'id_token')
90
- self.id_token = attributes[:'id_token']
83
+ if attributes.key?(:'refresh_token')
84
+ self.refresh_token = attributes[:'refresh_token']
91
85
  end
92
86
 
93
87
  if attributes.key?(:'token_type')
94
88
  self.token_type = attributes[:'token_type']
95
89
  end
90
+
91
+ if attributes.key?(:'id_token')
92
+ self.id_token = attributes[:'id_token']
93
+ end
96
94
  end
97
95
 
98
96
  # Show invalid properties with the reasons. Usually used together with valid?
99
97
  # @return Array for valid properties with the reasons
100
98
  def list_invalid_properties
101
99
  invalid_properties = Array.new
102
- if @refresh_token.nil?
103
- invalid_properties.push('invalid value for "refresh_token", refresh_token cannot be nil.')
100
+ if @access_token.nil?
101
+ invalid_properties.push('invalid value for "access_token", access_token cannot be nil.')
104
102
  end
105
103
 
106
104
  if @expires_in.nil?
107
105
  invalid_properties.push('invalid value for "expires_in", expires_in cannot be nil.')
108
106
  end
109
107
 
110
- if @access_token.nil?
111
- invalid_properties.push('invalid value for "access_token", access_token cannot be nil.')
108
+ if @refresh_token.nil?
109
+ invalid_properties.push('invalid value for "refresh_token", refresh_token cannot be nil.')
112
110
  end
113
111
 
114
112
  if @token_type.nil?
@@ -121,9 +119,9 @@ module Hubspot
121
119
  # Check to see if the all the properties in the model are valid
122
120
  # @return true if the model is valid
123
121
  def valid?
124
- return false if @refresh_token.nil?
125
- return false if @expires_in.nil?
126
122
  return false if @access_token.nil?
123
+ return false if @expires_in.nil?
124
+ return false if @refresh_token.nil?
127
125
  return false if @token_type.nil?
128
126
  true
129
127
  end
@@ -133,11 +131,11 @@ module Hubspot
133
131
  def ==(o)
134
132
  return true if self.equal?(o)
135
133
  self.class == o.class &&
136
- refresh_token == o.refresh_token &&
137
- expires_in == o.expires_in &&
138
134
  access_token == o.access_token &&
139
- id_token == o.id_token &&
140
- token_type == o.token_type
135
+ expires_in == o.expires_in &&
136
+ refresh_token == o.refresh_token &&
137
+ token_type == o.token_type &&
138
+ id_token == o.id_token
141
139
  end
142
140
 
143
141
  # @see the `==` method
@@ -149,7 +147,7 @@ module Hubspot
149
147
  # Calculates hash code according to all attributes.
150
148
  # @return [Integer] Hash code
151
149
  def hash
152
- [refresh_token, expires_in, access_token, id_token, token_type].hash
150
+ [access_token, expires_in, refresh_token, token_type, id_token].hash
153
151
  end
154
152
 
155
153
  # Builds the object from hash
@@ -6,7 +6,9 @@ module Hubspot
6
6
  module Associations
7
7
  class Client
8
8
  include Hubspot::Discovery::BaseModuleClient
9
-
9
+ def api_modules
10
+ %i[v4].freeze
11
+ end
10
12
  def api_classes
11
13
  %i[
12
14
  batch
@@ -0,0 +1,15 @@
1
+ require_relative '../../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Associations
7
+ module V4
8
+ class BatchApi
9
+ include Hubspot::Discovery::BaseApiClient
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ require_relative '../../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Associations
7
+ module V4
8
+ class DefinitionsApi
9
+ include Hubspot::Discovery::BaseApiClient
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,21 @@
1
+ require_relative '../../../base_module_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Associations
7
+ module V4
8
+ class Client
9
+ include Hubspot::Discovery::BaseModuleClient
10
+ def api_classes
11
+ %i[
12
+ batch
13
+ definitions
14
+ ].freeze
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -1,3 +1,3 @@
1
1
  module Hubspot
2
- VERSION = '16.2.1'
2
+ VERSION = '16.3.0'
3
3
  end
@@ -0,0 +1,9 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Client' do
4
+ subject(:client) { Hubspot::Client.new(access_token: 'test').cms.blogs }
5
+
6
+ it { is_expected.to respond_to(:authors) }
7
+ it { is_expected.to respond_to(:blog_posts) }
8
+ it { is_expected.to respond_to(:tags) }
9
+ end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Client' do
4
+ subject(:client) { Hubspot::Client.new(access_token: 'test').cms }
5
+
6
+ it { is_expected.to respond_to(:audit_logs) }
7
+ it { is_expected.to respond_to(:blogs) }
8
+ it { is_expected.to respond_to(:domains) }
9
+ it { is_expected.to respond_to(:hubdb) }
10
+ it { is_expected.to respond_to(:performance) }
11
+ it { is_expected.to respond_to(:site_search) }
12
+ it { is_expected.to respond_to(:url_redirects) }
13
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Client' do
4
+ subject(:client) { Hubspot::Client.new(access_token: 'test').crm.associations }
5
+
6
+ it { is_expected.to respond_to(:v4) }
7
+ end
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Associations::V4::BatchApi' do
4
+ subject(:batch_api) { Hubspot::Client.new(access_token: 'test').crm.associations.v4.batch_api }
5
+
6
+ it { is_expected.to respond_to(:archive) }
7
+ it { is_expected.to respond_to(:archive_labels) }
8
+ it { is_expected.to respond_to(:create_default) }
9
+ it { is_expected.to respond_to(:create) }
10
+ it { is_expected.to respond_to(:get_page) }
11
+ end
@@ -0,0 +1,10 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Associations::V4::DefinitionsApi' do
4
+ subject(:definitions_api) { Hubspot::Client.new(access_token: 'test').crm.associations.v4.definitions_api }
5
+
6
+ it { is_expected.to respond_to(:get_all) }
7
+ it { is_expected.to respond_to(:archive) }
8
+ it { is_expected.to respond_to(:create) }
9
+ it { is_expected.to respond_to(:update) }
10
+ end
@@ -0,0 +1,21 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Client' do
4
+ subject(:client) { Hubspot::Client.new(access_token: 'test').crm }
5
+
6
+ it { is_expected.to respond_to(:associations) }
7
+ it { is_expected.to respond_to(:companies) }
8
+ it { is_expected.to respond_to(:contacts) }
9
+ it { is_expected.to respond_to(:deals) }
10
+ it { is_expected.to respond_to(:extensions) }
11
+ it { is_expected.to respond_to(:imports) }
12
+ it { is_expected.to respond_to(:line_items) }
13
+ it { is_expected.to respond_to(:objects) }
14
+ it { is_expected.to respond_to(:owners) }
15
+ it { is_expected.to respond_to(:pipelines) }
16
+ it { is_expected.to respond_to(:products) }
17
+ it { is_expected.to respond_to(:quotes) }
18
+ it { is_expected.to respond_to(:schemas) }
19
+ it { is_expected.to respond_to(:tickets) }
20
+ it { is_expected.to respond_to(:timeline) }
21
+ end
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Client' do
4
+ subject(:client) { Hubspot::Client.new(access_token: 'test').crm.extensions }
5
+
6
+ it { is_expected.to respond_to(:accounting) }
7
+ it { is_expected.to respond_to(:calling) }
8
+ it { is_expected.to respond_to(:cards) }
9
+ it { is_expected.to respond_to(:videoconferencing) }
10
+
11
+ end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Client' do
4
+ subject(:client) { Hubspot::Client.new(access_token: 'test').crm.objects }
5
+
6
+ it { is_expected.to respond_to(:calls) }
7
+ it { is_expected.to respond_to(:emails) }
8
+ it { is_expected.to respond_to(:feedback_submissions) }
9
+ it { is_expected.to respond_to(:meetings) }
10
+ it { is_expected.to respond_to(:notes) }
11
+ it { is_expected.to respond_to(:postal_mail) }
12
+ it { is_expected.to respond_to(:tasks) }
13
+ end
@@ -0,0 +1,9 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Client' do
4
+ subject(:client) { Hubspot::Client.new(access_token: 'test').marketing }
5
+
6
+ it { is_expected.to respond_to(:events) }
7
+ it { is_expected.to respond_to(:forms) }
8
+ it { is_expected.to respond_to(:transactional) }
9
+ end
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: 16.2.1
4
+ version: 16.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - HubSpot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-24 00:00:00.000000000 Z
11
+ date: 2023-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -453,6 +453,41 @@ files:
453
453
  - lib/hubspot/codegen/crm/associations/models/public_association_multi.rb
454
454
  - lib/hubspot/codegen/crm/associations/models/public_object_id.rb
455
455
  - lib/hubspot/codegen/crm/associations/models/standard_error.rb
456
+ - lib/hubspot/codegen/crm/associations/v4/api/batch_api.rb
457
+ - lib/hubspot/codegen/crm/associations/v4/api/definitions_api.rb
458
+ - lib/hubspot/codegen/crm/associations/v4/api_client.rb
459
+ - lib/hubspot/codegen/crm/associations/v4/api_error.rb
460
+ - lib/hubspot/codegen/crm/associations/v4/configuration.rb
461
+ - lib/hubspot/codegen/crm/associations/v4/models/association_spec.rb
462
+ - lib/hubspot/codegen/crm/associations/v4/models/association_spec_with_label.rb
463
+ - lib/hubspot/codegen/crm/associations/v4/models/batch_input_public_association_multi_archive.rb
464
+ - lib/hubspot/codegen/crm/associations/v4/models/batch_input_public_association_multi_post.rb
465
+ - lib/hubspot/codegen/crm/associations/v4/models/batch_input_public_default_association_multi_post.rb
466
+ - lib/hubspot/codegen/crm/associations/v4/models/batch_input_public_fetch_associations_batch_request.rb
467
+ - lib/hubspot/codegen/crm/associations/v4/models/batch_response_labels_between_object_pair.rb
468
+ - lib/hubspot/codegen/crm/associations/v4/models/batch_response_labels_between_object_pair_with_errors.rb
469
+ - lib/hubspot/codegen/crm/associations/v4/models/batch_response_public_association_multi_with_label.rb
470
+ - lib/hubspot/codegen/crm/associations/v4/models/batch_response_public_association_multi_with_label_with_errors.rb
471
+ - lib/hubspot/codegen/crm/associations/v4/models/batch_response_public_default_association.rb
472
+ - lib/hubspot/codegen/crm/associations/v4/models/collection_response_association_spec_with_label_no_paging.rb
473
+ - lib/hubspot/codegen/crm/associations/v4/models/error.rb
474
+ - lib/hubspot/codegen/crm/associations/v4/models/error_category.rb
475
+ - lib/hubspot/codegen/crm/associations/v4/models/error_detail.rb
476
+ - lib/hubspot/codegen/crm/associations/v4/models/labels_between_object_pair.rb
477
+ - lib/hubspot/codegen/crm/associations/v4/models/multi_associated_object_with_label.rb
478
+ - lib/hubspot/codegen/crm/associations/v4/models/next_page.rb
479
+ - lib/hubspot/codegen/crm/associations/v4/models/paging.rb
480
+ - lib/hubspot/codegen/crm/associations/v4/models/previous_page.rb
481
+ - lib/hubspot/codegen/crm/associations/v4/models/public_association_definition_create_request.rb
482
+ - lib/hubspot/codegen/crm/associations/v4/models/public_association_definition_update_request.rb
483
+ - lib/hubspot/codegen/crm/associations/v4/models/public_association_multi_archive.rb
484
+ - lib/hubspot/codegen/crm/associations/v4/models/public_association_multi_post.rb
485
+ - lib/hubspot/codegen/crm/associations/v4/models/public_association_multi_with_label.rb
486
+ - lib/hubspot/codegen/crm/associations/v4/models/public_default_association.rb
487
+ - lib/hubspot/codegen/crm/associations/v4/models/public_default_association_multi_post.rb
488
+ - lib/hubspot/codegen/crm/associations/v4/models/public_fetch_associations_batch_request.rb
489
+ - lib/hubspot/codegen/crm/associations/v4/models/public_object_id.rb
490
+ - lib/hubspot/codegen/crm/associations/v4/models/standard_error.rb
456
491
  - lib/hubspot/codegen/crm/companies/api/associations_api.rb
457
492
  - lib/hubspot/codegen/crm/companies/api/basic_api.rb
458
493
  - lib/hubspot/codegen/crm/companies/api/batch_api.rb
@@ -1501,6 +1536,9 @@ files:
1501
1536
  - lib/hubspot/discovery/crm/associations/api/batch_api.rb
1502
1537
  - lib/hubspot/discovery/crm/associations/api/types_api.rb
1503
1538
  - lib/hubspot/discovery/crm/associations/client.rb
1539
+ - lib/hubspot/discovery/crm/associations/v4/api/batch_api.rb
1540
+ - lib/hubspot/discovery/crm/associations/v4/api/definitions_api.rb
1541
+ - lib/hubspot/discovery/crm/associations/v4/client.rb
1504
1542
  - lib/hubspot/discovery/crm/client.rb
1505
1543
  - lib/hubspot/discovery/crm/companies/api/associations_api.rb
1506
1544
  - lib/hubspot/discovery/crm/companies/api/basic_api.rb
@@ -1677,7 +1715,9 @@ files:
1677
1715
  - spec/discovery/cms/audit-logs/audit_logs_api_spec.rb
1678
1716
  - spec/discovery/cms/blogs/authors/blog_authors_api_spec.rb
1679
1717
  - spec/discovery/cms/blogs/blog-posts/blog_posts_api_spec.rb
1718
+ - spec/discovery/cms/blogs/client_spec.rb
1680
1719
  - spec/discovery/cms/blogs/tags/blog_tags_api_spec.rb
1720
+ - spec/discovery/cms/client_spec.rb
1681
1721
  - spec/discovery/cms/domains/domains_api_spec.rb
1682
1722
  - spec/discovery/cms/hubdb/rows_api_spec.rb
1683
1723
  - spec/discovery/cms/hubdb/rows_batch_api_spec.rb
@@ -1694,7 +1734,11 @@ files:
1694
1734
  - spec/discovery/communication_preferences/status_api_spec.rb
1695
1735
  - spec/discovery/conversations/visitor-identification/generate_api_spec.rb
1696
1736
  - spec/discovery/crm/associations/batch_api_spec.rb
1737
+ - spec/discovery/crm/associations/client_spec.rb
1697
1738
  - spec/discovery/crm/associations/types_api_spec.rb
1739
+ - spec/discovery/crm/associations/v4/batch_api_spec.rb
1740
+ - spec/discovery/crm/associations/v4/definitions_api_spec.rb
1741
+ - spec/discovery/crm/client_spec.rb
1698
1742
  - spec/discovery/crm/companies/associations_api_spec.rb
1699
1743
  - spec/discovery/crm/companies/basic_api_spec.rb
1700
1744
  - spec/discovery/crm/companies/batch_api_spec.rb
@@ -1719,6 +1763,7 @@ files:
1719
1763
  - spec/discovery/crm/extensions/calling/settings_api_spec.rb
1720
1764
  - spec/discovery/crm/extensions/cards/cards_api_spec.rb
1721
1765
  - spec/discovery/crm/extensions/cards/sample_response_api_spec.rb
1766
+ - spec/discovery/crm/extensions/client_spec.rb
1722
1767
  - spec/discovery/crm/extensions/videoconferencing/settings_api_spec.rb
1723
1768
  - spec/discovery/crm/imports/core_api_spec.rb
1724
1769
  - spec/discovery/crm/imports/public_imports_api_spec.rb
@@ -1735,6 +1780,7 @@ files:
1735
1780
  - spec/discovery/crm/objects/calls/batch_api_spec.rb
1736
1781
  - spec/discovery/crm/objects/calls/public_object_api_spec.rb
1737
1782
  - spec/discovery/crm/objects/calls/search_api_spec.rb
1783
+ - spec/discovery/crm/objects/client_spec.rb
1738
1784
  - spec/discovery/crm/objects/emails/associations_api_spec.rb
1739
1785
  - spec/discovery/crm/objects/emails/basic_api_spec.rb
1740
1786
  - spec/discovery/crm/objects/emails/batch_api_spec.rb
@@ -1799,6 +1845,7 @@ files:
1799
1845
  - spec/discovery/events/events_api_spec.rb
1800
1846
  - spec/discovery/files/files/files_api_spec.rb
1801
1847
  - spec/discovery/files/files/folders_api_spec.rb
1848
+ - spec/discovery/marketing/client_spec.rb
1802
1849
  - spec/discovery/marketing/events/attendance_subscriber_state_changes_api_spec.rb
1803
1850
  - spec/discovery/marketing/events/marketing_events_external_api_spec.rb
1804
1851
  - spec/discovery/marketing/events/search_api_spec.rb
@@ -1856,8 +1903,12 @@ test_files:
1856
1903
  - spec/discovery/crm/tickets/basic_api_spec.rb
1857
1904
  - spec/discovery/crm/tickets/public_object_api_spec.rb
1858
1905
  - spec/discovery/crm/tickets/batch_api_spec.rb
1906
+ - spec/discovery/crm/associations/client_spec.rb
1859
1907
  - spec/discovery/crm/associations/types_api_spec.rb
1908
+ - spec/discovery/crm/associations/v4/definitions_api_spec.rb
1909
+ - spec/discovery/crm/associations/v4/batch_api_spec.rb
1860
1910
  - spec/discovery/crm/associations/batch_api_spec.rb
1911
+ - spec/discovery/crm/client_spec.rb
1861
1912
  - spec/discovery/crm/products/search_api_spec.rb
1862
1913
  - spec/discovery/crm/products/associations_api_spec.rb
1863
1914
  - spec/discovery/crm/products/basic_api_spec.rb
@@ -1891,6 +1942,7 @@ test_files:
1891
1942
  - spec/discovery/crm/objects/tasks/basic_api_spec.rb
1892
1943
  - spec/discovery/crm/objects/tasks/public_object_api_spec.rb
1893
1944
  - spec/discovery/crm/objects/tasks/batch_api_spec.rb
1945
+ - spec/discovery/crm/objects/client_spec.rb
1894
1946
  - spec/discovery/crm/objects/emails/search_api_spec.rb
1895
1947
  - spec/discovery/crm/objects/emails/associations_api_spec.rb
1896
1948
  - spec/discovery/crm/objects/emails/basic_api_spec.rb
@@ -1938,6 +1990,7 @@ test_files:
1938
1990
  - spec/discovery/crm/extensions/accounting/sync_api_spec.rb
1939
1991
  - spec/discovery/crm/extensions/accounting/callbacks_api_spec.rb
1940
1992
  - spec/discovery/crm/extensions/accounting/settings_api_spec.rb
1993
+ - spec/discovery/crm/extensions/client_spec.rb
1941
1994
  - spec/discovery/crm/extensions/calling/settings_api_spec.rb
1942
1995
  - spec/discovery/crm/extensions/videoconferencing/settings_api_spec.rb
1943
1996
  - spec/discovery/crm/extensions/cards/sample_response_api_spec.rb
@@ -1957,9 +2010,11 @@ test_files:
1957
2010
  - spec/discovery/base_module_client_spec.rb
1958
2011
  - spec/discovery/cms/audit-logs/audit_logs_api_spec.rb
1959
2012
  - spec/discovery/cms/site-search/public_api_spec.rb
2013
+ - spec/discovery/cms/blogs/client_spec.rb
1960
2014
  - spec/discovery/cms/blogs/authors/blog_authors_api_spec.rb
1961
2015
  - spec/discovery/cms/blogs/blog-posts/blog_posts_api_spec.rb
1962
2016
  - spec/discovery/cms/blogs/tags/blog_tags_api_spec.rb
2017
+ - spec/discovery/cms/client_spec.rb
1963
2018
  - spec/discovery/cms/hubdb/rows_api_spec.rb
1964
2019
  - spec/discovery/cms/hubdb/tables_api_spec.rb
1965
2020
  - spec/discovery/cms/hubdb/rows_batch_api_spec.rb
@@ -1974,6 +2029,7 @@ test_files:
1974
2029
  - spec/discovery/conversations/visitor-identification/generate_api_spec.rb
1975
2030
  - spec/discovery/files/files/files_api_spec.rb
1976
2031
  - spec/discovery/files/files/folders_api_spec.rb
2032
+ - spec/discovery/marketing/client_spec.rb
1977
2033
  - spec/discovery/marketing/forms/forms_api_spec.rb
1978
2034
  - spec/discovery/marketing/events/search_api_spec.rb
1979
2035
  - spec/discovery/marketing/events/marketing_events_external_api_spec.rb