hubspot-api-client 16.0.1 → 16.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +10 -0
  3. data/Gemfile.lock +1 -1
  4. data/lib/hubspot/discovery/base_api_client.rb +1 -1
  5. data/lib/hubspot/discovery/crm/companies/api/public_object_api.rb +13 -0
  6. data/lib/hubspot/discovery/crm/companies/client.rb +1 -0
  7. data/lib/hubspot/discovery/crm/contacts/api/public_object_api.rb +13 -0
  8. data/lib/hubspot/discovery/crm/contacts/client.rb +1 -0
  9. data/lib/hubspot/discovery/crm/deals/api/public_object_api.rb +13 -0
  10. data/lib/hubspot/discovery/crm/deals/client.rb +1 -0
  11. data/lib/hubspot/discovery/crm/line_items/api/public_object_api.rb +13 -0
  12. data/lib/hubspot/discovery/crm/line_items/client.rb +1 -0
  13. data/lib/hubspot/discovery/crm/objects/api/public_object_api.rb +13 -0
  14. data/lib/hubspot/discovery/crm/objects/client.rb +1 -0
  15. data/lib/hubspot/discovery/crm/products/api/public_object_api.rb +13 -0
  16. data/lib/hubspot/discovery/crm/products/client.rb +1 -0
  17. data/lib/hubspot/discovery/crm/quotes/api/public_object_api.rb +13 -0
  18. data/lib/hubspot/discovery/crm/quotes/client.rb +1 -0
  19. data/lib/hubspot/discovery/crm/tickets/api/public_object_api.rb +13 -0
  20. data/lib/hubspot/discovery/crm/tickets/client.rb +1 -0
  21. data/lib/hubspot/version.rb +1 -1
  22. data/spec/discovery/base_api_client_spec.rb +8 -8
  23. data/spec/discovery/crm/companies/public_object_api_spec.rb +7 -0
  24. data/spec/discovery/crm/contacts/public_object_api_spec.rb +7 -0
  25. data/spec/discovery/crm/deals/public_object_api_spec.rb +7 -0
  26. data/spec/discovery/crm/line_items/public_object_api_spec.rb +7 -0
  27. data/spec/discovery/crm/objects/public_object_api_spec.rb +7 -0
  28. data/spec/discovery/crm/products/public_object_api_spec.rb +7 -0
  29. data/spec/discovery/crm/quotes/public_object_api_spec.rb +7 -0
  30. data/spec/discovery/crm/tickets/public_object_api_spec.rb +7 -0
  31. metadata +26 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66f38ee93ff2489af4371ed191ebe60be123f2f81c5baad700c4cb17923423ea
4
- data.tar.gz: 610d179aef509db14c69acc5e52e4647b991cdaf5b7e4ccc57c25ed3b70c162b
3
+ metadata.gz: c61bad2a2c4f55678f1e0a7887f66ff9fe6165db9e7431783c2227b33111ba6f
4
+ data.tar.gz: 244b599e3c9833d9da78403c0c4be98c87c6a59aaff0fc703235f4dacf91ef0b
5
5
  SHA512:
6
- metadata.gz: 07a4408148cc705f496e65d941147cf27708b77abec44d694c6eb0bd2469a85c486c0ff3c96bdfe998feeacd73ef5f4c2eb8e3f66b1e1cf761d49d51ee37f7c3
7
- data.tar.gz: 91898dc55f9ebc6cfa7e82bbf87855802057f20958072e27cb93dff2c0dd3dce0a4c9bbc5783c5748ce2bc41a96ea4bae102efa869bc3a8184ad4139ac180d22
6
+ metadata.gz: 5117f3f1847cd9b51c56995bbf671c0158c47d2b7a3e55fa58d74ba3b8c7575dddfb4f0efc9e80df4923297efc46bf32958f0a96011c7e4637ff79930bd7ca8f
7
+ data.tar.gz: dd61a1d3ec13a33c4daab476688ffade2e857730c4e73456ac04c34eb378acfe5acfa976a90b9b3038cb37cabdce1726a844da5b9d300acec030eaae3b1e33a8
data/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [16.0.3] - 2022-11-23
9
+ ### Changed
10
+
11
+ - auth_names => debug_auth_names
12
+
13
+ ## [16.0.2] - 2022-11-22
14
+ ### Fixed
15
+
16
+ - added missing public_object_api classes
17
+
8
18
  ## [16.0.1] - 2022-11-16
9
19
  ### Fixed
10
20
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hubspot-api-client (16.0.1)
4
+ hubspot-api-client (16.0.3)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  typhoeus (~> 1.4.0)
7
7
 
@@ -133,7 +133,7 @@ module Hubspot
133
133
  self.class.define_method(api_method) do |params = {}, &block|
134
134
  params_with_defaults = params
135
135
  params_with_defaults[:opts] ||= {}
136
- params_with_defaults[:opts][:auth_names] = if base_params[:access_token]
136
+ params_with_defaults[:opts][:debug_auth_names] = if base_params[:access_token]
137
137
  'oauth2'
138
138
  elsif base_params[:api_key]
139
139
  'hapikey'
@@ -0,0 +1,13 @@
1
+ require_relative '../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Companies
7
+ class PublicObjectApi
8
+ include Hubspot::Discovery::BaseApiClient
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -13,6 +13,7 @@ module Hubspot
13
13
  basic
14
14
  batch
15
15
  search
16
+ public_object
16
17
  ].freeze
17
18
  end
18
19
  end
@@ -0,0 +1,13 @@
1
+ require_relative '../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Contacts
7
+ class PublicObjectApi
8
+ include Hubspot::Discovery::BaseApiClient
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -14,6 +14,7 @@ module Hubspot
14
14
  batch
15
15
  gdpr
16
16
  search
17
+ public_object
17
18
  ].freeze
18
19
  end
19
20
  end
@@ -0,0 +1,13 @@
1
+ require_relative '../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Deals
7
+ class PublicObjectApi
8
+ include Hubspot::Discovery::BaseApiClient
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -13,6 +13,7 @@ module Hubspot
13
13
  basic
14
14
  batch
15
15
  search
16
+ public_object
16
17
  ].freeze
17
18
  end
18
19
  end
@@ -0,0 +1,13 @@
1
+ require_relative '../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module LineItems
7
+ class PublicObjectApi
8
+ include Hubspot::Discovery::BaseApiClient
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -13,6 +13,7 @@ module Hubspot
13
13
  basic
14
14
  batch
15
15
  search
16
+ public_object
16
17
  ].freeze
17
18
  end
18
19
  end
@@ -0,0 +1,13 @@
1
+ require_relative '../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Objects
7
+ class PublicObjectApi
8
+ include Hubspot::Discovery::BaseApiClient
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -25,6 +25,7 @@ module Hubspot
25
25
  batch
26
26
  gdpr
27
27
  search
28
+ public_object
28
29
  ].freeze
29
30
  end
30
31
  end
@@ -0,0 +1,13 @@
1
+ require_relative '../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Products
7
+ class PublicObjectApi
8
+ include Hubspot::Discovery::BaseApiClient
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -13,6 +13,7 @@ module Hubspot
13
13
  basic
14
14
  batch
15
15
  search
16
+ public_object
16
17
  ].freeze
17
18
  end
18
19
  end
@@ -0,0 +1,13 @@
1
+ require_relative '../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Quotes
7
+ class PublicObjectApi
8
+ include Hubspot::Discovery::BaseApiClient
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -13,6 +13,7 @@ module Hubspot
13
13
  basic
14
14
  batch
15
15
  search
16
+ public_object
16
17
  ].freeze
17
18
  end
18
19
  end
@@ -0,0 +1,13 @@
1
+ require_relative '../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Tickets
7
+ class PublicObjectApi
8
+ include Hubspot::Discovery::BaseApiClient
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -13,6 +13,7 @@ module Hubspot
13
13
  basic
14
14
  batch
15
15
  search
16
+ public_object
16
17
  ].freeze
17
18
  end
18
19
  end
@@ -1,3 +1,3 @@
1
1
  module Hubspot
2
- VERSION = '16.0.1'
2
+ VERSION = '16.0.3'
3
3
  end
@@ -90,20 +90,20 @@ describe 'Hubspot::Discovery::BaseApiClient' do
90
90
  context 'with default params order' do
91
91
  let(:params) { {test_id: 'test_id_value', limit: 10} }
92
92
 
93
- it { is_expected.to eq('got test_id: test_id_value, opts: {:auth_names=>"oauth2", :limit=>10}') }
93
+ it { is_expected.to eq('got test_id: test_id_value, opts: {:debug_auth_names=>"oauth2", :limit=>10}') }
94
94
  end
95
95
 
96
96
  context 'with changed params order' do
97
97
  let(:params) { {limit: 5, test_id: 'test_id_value'} }
98
98
 
99
- it { is_expected.to eq('got test_id: test_id_value, opts: {:auth_names=>"oauth2", :limit=>5}') }
99
+ it { is_expected.to eq('got test_id: test_id_value, opts: {:debug_auth_names=>"oauth2", :limit=>5}') }
100
100
  end
101
101
 
102
102
  context 'with error handle block' do
103
103
  subject(:get) { client.get(params) { |e| e.message } }
104
104
  let(:params) { {test_id: 'test_id_value', limit: 10} }
105
105
 
106
- it { is_expected.to eq('got test_id: test_id_value, opts: {:auth_names=>"oauth2", :limit=>10}') }
106
+ it { is_expected.to eq('got test_id: test_id_value, opts: {:debug_auth_names=>"oauth2", :limit=>10}') }
107
107
  end
108
108
  end
109
109
 
@@ -113,32 +113,32 @@ describe 'Hubspot::Discovery::BaseApiClient' do
113
113
  context 'with default params order' do
114
114
  let(:params) { {test_id: 'test_id_value', simple_public_object_input: Hubspot::SimplePublicObjectInput.new(body), limit: 10} }
115
115
 
116
- it { is_expected.to eq('updated test_id: test_id_value, name: test_name, email: test_email, opts: {:auth_names=>"oauth2", :limit=>10}') }
116
+ it { is_expected.to eq('updated test_id: test_id_value, name: test_name, email: test_email, opts: {:debug_auth_names=>"oauth2", :limit=>10}') }
117
117
  end
118
118
 
119
119
  context 'with reversed params order' do
120
120
  let(:params) { {limit: 5, simple_public_object_input: Hubspot::SimplePublicObjectInput.new(body), test_id: 'test_id_value'} }
121
121
 
122
- it { is_expected.to eq('updated test_id: test_id_value, name: test_name, email: test_email, opts: {:auth_names=>"oauth2", :limit=>5}') }
122
+ it { is_expected.to eq('updated test_id: test_id_value, name: test_name, email: test_email, opts: {:debug_auth_names=>"oauth2", :limit=>5}') }
123
123
  end
124
124
 
125
125
  context 'with shuffled params order' do
126
126
  let(:params) { {simple_public_object_input: Hubspot::SimplePublicObjectInput.new(body), limit: 7, test_id: 'test_id_value'} }
127
127
 
128
- it { is_expected.to eq('updated test_id: test_id_value, name: test_name, email: test_email, opts: {:auth_names=>"oauth2", :limit=>7}') }
128
+ it { is_expected.to eq('updated test_id: test_id_value, name: test_name, email: test_email, opts: {:debug_auth_names=>"oauth2", :limit=>7}') }
129
129
  end
130
130
 
131
131
  context 'with body' do
132
132
  let(:params) { {test_id: 'test_id_value', body: body, limit: 10} }
133
133
 
134
- it { is_expected.to eq('updated test_id: test_id_value, name: test_name, email: test_email, opts: {:auth_names=>"oauth2", :limit=>10}') }
134
+ it { is_expected.to eq('updated test_id: test_id_value, name: test_name, email: test_email, opts: {:debug_auth_names=>"oauth2", :limit=>10}') }
135
135
  end
136
136
 
137
137
  context 'with block' do
138
138
  subject(:update) { client.update(params) { |e| e.message } }
139
139
  let(:params) { {test_id: 'test_id_value', body: body, limit: 10} }
140
140
 
141
- it { is_expected.to eq('updated test_id: test_id_value, name: test_name, email: test_email, opts: {:auth_names=>"oauth2", :limit=>10}') }
141
+ it { is_expected.to eq('updated test_id: test_id_value, name: test_name, email: test_email, opts: {:debug_auth_names=>"oauth2", :limit=>10}') }
142
142
  end
143
143
  end
144
144
 
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Companies::PublicObjectApi' do
4
+ subject(:public_object_api) { Hubspot::Client.new(access_token: 'test').crm.companies.public_object_api }
5
+
6
+ it { is_expected.to respond_to(:merge) }
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Contacts::PublicObjectApi' do
4
+ subject(:public_object_api) { Hubspot::Client.new(access_token: 'test').crm.contacts.public_object_api }
5
+
6
+ it { is_expected.to respond_to(:merge) }
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Deals::PublicObjectApi' do
4
+ subject(:public_object_api) { Hubspot::Client.new(access_token: 'test').crm.deals.public_object_api }
5
+
6
+ it { is_expected.to respond_to(:merge) }
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::LineItems::PublicObjectApi' do
4
+ subject(:public_object_api) { Hubspot::Client.new(access_token: 'test').crm.line_items.public_object_api }
5
+
6
+ it { is_expected.to respond_to(:merge) }
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Objects::PublicObjectApi' do
4
+ subject(:public_object_api) { Hubspot::Client.new(access_token: 'test').crm.objects.public_object_api }
5
+
6
+ it { is_expected.to respond_to(:merge) }
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Products::PublicObjectApi' do
4
+ subject(:public_object_api) { Hubspot::Client.new(access_token: 'test').crm.products.public_object_api }
5
+
6
+ it { is_expected.to respond_to(:merge) }
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Quotes::PublicObjectApi' do
4
+ subject(:public_object_api) { Hubspot::Client.new(access_token: 'test').crm.quotes.public_object_api }
5
+
6
+ it { is_expected.to respond_to(:merge) }
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Tickets::PublicObjectApi' do
4
+ subject(:public_object_api) { Hubspot::Client.new(access_token: 'test').crm.tickets.public_object_api }
5
+
6
+ it { is_expected.to respond_to(:merge) }
7
+ 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.0.1
4
+ version: 16.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - HubSpot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-16 00:00:00.000000000 Z
11
+ date: 2022-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -1406,17 +1406,20 @@ files:
1406
1406
  - lib/hubspot/discovery/crm/companies/api/associations_api.rb
1407
1407
  - lib/hubspot/discovery/crm/companies/api/basic_api.rb
1408
1408
  - lib/hubspot/discovery/crm/companies/api/batch_api.rb
1409
+ - lib/hubspot/discovery/crm/companies/api/public_object_api.rb
1409
1410
  - lib/hubspot/discovery/crm/companies/api/search_api.rb
1410
1411
  - lib/hubspot/discovery/crm/companies/client.rb
1411
1412
  - lib/hubspot/discovery/crm/contacts/api/associations_api.rb
1412
1413
  - lib/hubspot/discovery/crm/contacts/api/basic_api.rb
1413
1414
  - lib/hubspot/discovery/crm/contacts/api/batch_api.rb
1414
1415
  - lib/hubspot/discovery/crm/contacts/api/gdpr_api.rb
1416
+ - lib/hubspot/discovery/crm/contacts/api/public_object_api.rb
1415
1417
  - lib/hubspot/discovery/crm/contacts/api/search_api.rb
1416
1418
  - lib/hubspot/discovery/crm/contacts/client.rb
1417
1419
  - lib/hubspot/discovery/crm/deals/api/associations_api.rb
1418
1420
  - lib/hubspot/discovery/crm/deals/api/basic_api.rb
1419
1421
  - lib/hubspot/discovery/crm/deals/api/batch_api.rb
1422
+ - lib/hubspot/discovery/crm/deals/api/public_object_api.rb
1420
1423
  - lib/hubspot/discovery/crm/deals/api/search_api.rb
1421
1424
  - lib/hubspot/discovery/crm/deals/client.rb
1422
1425
  - lib/hubspot/discovery/crm/extensions/accounting/api/callbacks_api.rb
@@ -1439,12 +1442,14 @@ files:
1439
1442
  - lib/hubspot/discovery/crm/line_items/api/associations_api.rb
1440
1443
  - lib/hubspot/discovery/crm/line_items/api/basic_api.rb
1441
1444
  - lib/hubspot/discovery/crm/line_items/api/batch_api.rb
1445
+ - lib/hubspot/discovery/crm/line_items/api/public_object_api.rb
1442
1446
  - lib/hubspot/discovery/crm/line_items/api/search_api.rb
1443
1447
  - lib/hubspot/discovery/crm/line_items/client.rb
1444
1448
  - lib/hubspot/discovery/crm/objects/api/associations_api.rb
1445
1449
  - lib/hubspot/discovery/crm/objects/api/basic_api.rb
1446
1450
  - lib/hubspot/discovery/crm/objects/api/batch_api.rb
1447
1451
  - lib/hubspot/discovery/crm/objects/api/gdpr_api.rb
1452
+ - lib/hubspot/discovery/crm/objects/api/public_object_api.rb
1448
1453
  - lib/hubspot/discovery/crm/objects/api/search_api.rb
1449
1454
  - lib/hubspot/discovery/crm/objects/calls/api/associations_api.rb
1450
1455
  - lib/hubspot/discovery/crm/objects/calls/api/basic_api.rb
@@ -1491,6 +1496,7 @@ files:
1491
1496
  - lib/hubspot/discovery/crm/products/api/associations_api.rb
1492
1497
  - lib/hubspot/discovery/crm/products/api/basic_api.rb
1493
1498
  - lib/hubspot/discovery/crm/products/api/batch_api.rb
1499
+ - lib/hubspot/discovery/crm/products/api/public_object_api.rb
1494
1500
  - lib/hubspot/discovery/crm/products/api/search_api.rb
1495
1501
  - lib/hubspot/discovery/crm/products/client.rb
1496
1502
  - lib/hubspot/discovery/crm/properties/api/batch_api.rb
@@ -1500,6 +1506,7 @@ files:
1500
1506
  - lib/hubspot/discovery/crm/quotes/api/associations_api.rb
1501
1507
  - lib/hubspot/discovery/crm/quotes/api/basic_api.rb
1502
1508
  - lib/hubspot/discovery/crm/quotes/api/batch_api.rb
1509
+ - lib/hubspot/discovery/crm/quotes/api/public_object_api.rb
1503
1510
  - lib/hubspot/discovery/crm/quotes/api/search_api.rb
1504
1511
  - lib/hubspot/discovery/crm/quotes/client.rb
1505
1512
  - lib/hubspot/discovery/crm/schemas/api/core_api.rb
@@ -1508,6 +1515,7 @@ files:
1508
1515
  - lib/hubspot/discovery/crm/tickets/api/associations_api.rb
1509
1516
  - lib/hubspot/discovery/crm/tickets/api/basic_api.rb
1510
1517
  - lib/hubspot/discovery/crm/tickets/api/batch_api.rb
1518
+ - lib/hubspot/discovery/crm/tickets/api/public_object_api.rb
1511
1519
  - lib/hubspot/discovery/crm/tickets/api/search_api.rb
1512
1520
  - lib/hubspot/discovery/crm/tickets/client.rb
1513
1521
  - lib/hubspot/discovery/crm/timeline/api/events_api.rb
@@ -1581,15 +1589,18 @@ files:
1581
1589
  - spec/discovery/crm/companies/associations_api_spec.rb
1582
1590
  - spec/discovery/crm/companies/basic_api_spec.rb
1583
1591
  - spec/discovery/crm/companies/batch_api_spec.rb
1592
+ - spec/discovery/crm/companies/public_object_api_spec.rb
1584
1593
  - spec/discovery/crm/companies/search_api_spec.rb
1585
1594
  - spec/discovery/crm/contacts/associations_api_spec.rb
1586
1595
  - spec/discovery/crm/contacts/basic_api_spec.rb
1587
1596
  - spec/discovery/crm/contacts/batch_api_spec.rb
1588
1597
  - spec/discovery/crm/contacts/gdpr_api_spec.rb
1598
+ - spec/discovery/crm/contacts/public_object_api_spec.rb
1589
1599
  - spec/discovery/crm/contacts/search_api_spec.rb
1590
1600
  - spec/discovery/crm/deals/associations_api_spec.rb
1591
1601
  - spec/discovery/crm/deals/basic_api_spec.rb
1592
1602
  - spec/discovery/crm/deals/batch_api_spec.rb
1603
+ - spec/discovery/crm/deals/public_object_api_spec.rb
1593
1604
  - spec/discovery/crm/deals/search_api_spec.rb
1594
1605
  - spec/discovery/crm/extensions/accounting/callbacks_api_spec.rb
1595
1606
  - spec/discovery/crm/extensions/accounting/invoice_api_spec.rb
@@ -1605,6 +1616,7 @@ files:
1605
1616
  - spec/discovery/crm/line_items/associations_api_spec.rb
1606
1617
  - spec/discovery/crm/line_items/basic_api_spec.rb
1607
1618
  - spec/discovery/crm/line_items/batch_api_spec.rb
1619
+ - spec/discovery/crm/line_items/public_object_api_spec.rb
1608
1620
  - spec/discovery/crm/line_items/search_api_spec.rb
1609
1621
  - spec/discovery/crm/objects/associations_api_spec.rb
1610
1622
  - spec/discovery/crm/objects/basic_api_spec.rb
@@ -1635,6 +1647,7 @@ files:
1635
1647
  - spec/discovery/crm/objects/notes/batch_api_spec.rb
1636
1648
  - spec/discovery/crm/objects/notes/public_object_api_spec.rb
1637
1649
  - spec/discovery/crm/objects/notes/search_api_spec.rb
1650
+ - spec/discovery/crm/objects/public_object_api_spec.rb
1638
1651
  - spec/discovery/crm/objects/search_api_spec.rb
1639
1652
  - spec/discovery/crm/objects/tasks/associations_api_spec.rb
1640
1653
  - spec/discovery/crm/objects/tasks/basic_api_spec.rb
@@ -1647,6 +1660,7 @@ files:
1647
1660
  - spec/discovery/crm/products/associations_api_spec.rb
1648
1661
  - spec/discovery/crm/products/basic_api_spec.rb
1649
1662
  - spec/discovery/crm/products/batch_api_spec.rb
1663
+ - spec/discovery/crm/products/public_object_api_spec.rb
1650
1664
  - spec/discovery/crm/products/search_api_spec.rb
1651
1665
  - spec/discovery/crm/properties/batch_api_spec.rb
1652
1666
  - spec/discovery/crm/properties/core_api_spec.rb
@@ -1654,12 +1668,14 @@ files:
1654
1668
  - spec/discovery/crm/quotes/associations_api_spec.rb
1655
1669
  - spec/discovery/crm/quotes/basic_api_spec.rb
1656
1670
  - spec/discovery/crm/quotes/batch_api_spec.rb
1671
+ - spec/discovery/crm/quotes/public_object_api_spec.rb
1657
1672
  - spec/discovery/crm/quotes/search_api_spec.rb
1658
1673
  - spec/discovery/crm/schemas/core_api_spec.rb
1659
1674
  - spec/discovery/crm/schemas/public_object_schemas_api_spec.rb
1660
1675
  - spec/discovery/crm/tickets/associations_api_spec.rb
1661
1676
  - spec/discovery/crm/tickets/basic_api_spec.rb
1662
1677
  - spec/discovery/crm/tickets/batch_api_spec.rb
1678
+ - spec/discovery/crm/tickets/public_object_api_spec.rb
1663
1679
  - spec/discovery/crm/tickets/search_api_spec.rb
1664
1680
  - spec/discovery/crm/timeline/events_api_spec.rb
1665
1681
  - spec/discovery/crm/timeline/templates_api_spec.rb
@@ -1719,20 +1735,24 @@ test_files:
1719
1735
  - spec/discovery/crm/tickets/search_api_spec.rb
1720
1736
  - spec/discovery/crm/tickets/associations_api_spec.rb
1721
1737
  - spec/discovery/crm/tickets/basic_api_spec.rb
1738
+ - spec/discovery/crm/tickets/public_object_api_spec.rb
1722
1739
  - spec/discovery/crm/tickets/batch_api_spec.rb
1723
1740
  - spec/discovery/crm/associations/types_api_spec.rb
1724
1741
  - spec/discovery/crm/associations/batch_api_spec.rb
1725
1742
  - spec/discovery/crm/products/search_api_spec.rb
1726
1743
  - spec/discovery/crm/products/associations_api_spec.rb
1727
1744
  - spec/discovery/crm/products/basic_api_spec.rb
1745
+ - spec/discovery/crm/products/public_object_api_spec.rb
1728
1746
  - spec/discovery/crm/products/batch_api_spec.rb
1729
1747
  - spec/discovery/crm/quotes/search_api_spec.rb
1730
1748
  - spec/discovery/crm/quotes/associations_api_spec.rb
1731
1749
  - spec/discovery/crm/quotes/basic_api_spec.rb
1750
+ - spec/discovery/crm/quotes/public_object_api_spec.rb
1732
1751
  - spec/discovery/crm/quotes/batch_api_spec.rb
1733
1752
  - spec/discovery/crm/contacts/search_api_spec.rb
1734
1753
  - spec/discovery/crm/contacts/associations_api_spec.rb
1735
1754
  - spec/discovery/crm/contacts/basic_api_spec.rb
1755
+ - spec/discovery/crm/contacts/public_object_api_spec.rb
1736
1756
  - spec/discovery/crm/contacts/gdpr_api_spec.rb
1737
1757
  - spec/discovery/crm/contacts/batch_api_spec.rb
1738
1758
  - spec/discovery/crm/objects/calls/search_api_spec.rb
@@ -1763,6 +1783,7 @@ test_files:
1763
1783
  - spec/discovery/crm/objects/feedback_submissions/basic_api_spec.rb
1764
1784
  - spec/discovery/crm/objects/feedback_submissions/public_object_api_spec.rb
1765
1785
  - spec/discovery/crm/objects/feedback_submissions/batch_api_spec.rb
1786
+ - spec/discovery/crm/objects/public_object_api_spec.rb
1766
1787
  - spec/discovery/crm/objects/meetings/search_api_spec.rb
1767
1788
  - spec/discovery/crm/objects/meetings/associations_api_spec.rb
1768
1789
  - spec/discovery/crm/objects/meetings/basic_api_spec.rb
@@ -1773,12 +1794,14 @@ test_files:
1773
1794
  - spec/discovery/crm/deals/search_api_spec.rb
1774
1795
  - spec/discovery/crm/deals/associations_api_spec.rb
1775
1796
  - spec/discovery/crm/deals/basic_api_spec.rb
1797
+ - spec/discovery/crm/deals/public_object_api_spec.rb
1776
1798
  - spec/discovery/crm/deals/batch_api_spec.rb
1777
1799
  - spec/discovery/crm/pipelines/pipelines_api_spec.rb
1778
1800
  - spec/discovery/crm/pipelines/pipeline_stages_api_spec.rb
1779
1801
  - spec/discovery/crm/line_items/search_api_spec.rb
1780
1802
  - spec/discovery/crm/line_items/associations_api_spec.rb
1781
1803
  - spec/discovery/crm/line_items/basic_api_spec.rb
1804
+ - spec/discovery/crm/line_items/public_object_api_spec.rb
1782
1805
  - spec/discovery/crm/line_items/batch_api_spec.rb
1783
1806
  - spec/discovery/crm/imports/core_api_spec.rb
1784
1807
  - spec/discovery/crm/imports/public_imports_api_spec.rb
@@ -1803,6 +1826,7 @@ test_files:
1803
1826
  - spec/discovery/crm/companies/search_api_spec.rb
1804
1827
  - spec/discovery/crm/companies/associations_api_spec.rb
1805
1828
  - spec/discovery/crm/companies/basic_api_spec.rb
1829
+ - spec/discovery/crm/companies/public_object_api_spec.rb
1806
1830
  - spec/discovery/crm/companies/batch_api_spec.rb
1807
1831
  - spec/discovery/base_module_client_spec.rb
1808
1832
  - spec/discovery/cms/audit-logs/audit_logs_api_spec.rb