hubspot-api-client 16.1.0 → 16.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79bd74c64d716c37ef44d823499d823a5718cbc9b2bddbee9153ace3e92846b2
4
- data.tar.gz: 6b2305f92d525f62f9ccca5883e87bb11d2b9971150af08fe9f508b4f4d9188f
3
+ metadata.gz: ab1a325bccd8f06760d9b2f7149517c100ff5e1504df7ebbf46137bfd8076633
4
+ data.tar.gz: a7fabc27a9272be1b7750e4f4ff23294bf9a6b927539ef5c1877df42d6f868b1
5
5
  SHA512:
6
- metadata.gz: 47b6759f025b1dc365f841974763cc3cdde18f8a62245079772073ae6eb296d0d5716081daedff991a5e9dba29060f24dfff73e7944f0d250600ccd5c5b6b3ee
7
- data.tar.gz: e0fddcf226c4b0cbffd2e3690b167bfcbc016f8d62920ef70efaea438ff5bfc63eb6eb71091db8d8400cd8724a403d40c4e94d3ebc6a7e28f85ce583aed71f74
6
+ metadata.gz: d5ee0a0ed6eb7dd47c14259eaaeea1c1cef382158d85e8467eada47bd7419502c49b3234c5498a1d4c62b0b8101ec948706aedaf99f9b23268c36a61aec7e34f
7
+ data.tar.gz: 54946b4829ccde4b96309e02a740f3e86fb907718392e3274157eb237101869ccd94a386def9f89265bc7b2fcba13e126e93f6b131ff3af19312f96bca9a9e14
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ 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
+ ## [Unreleased](https://github.com/HubSpot/hubspot-api-ruby/compare/v16.1.1...HEAD)
9
+
10
+ ## [16.1.1] - 2022-12-23
11
+ ### Fixed
12
+
13
+ - Added pipelineAuditsApi and pipelineStageAuditsApi to crm.pipelines discovery
14
+
8
15
  ## [16.1.0] - 2022-12-22
9
16
  ### Added
10
17
 
@@ -16,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
23
  - Added Private App access token to (
17
24
  - cms.domains
18
25
  - crm.imports
19
- - crm.objects.emals
26
+ - crm.objects.emails
20
27
  - marketing.events
21
28
  )
22
29
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hubspot-api-client (16.1.0)
4
+ hubspot-api-client (16.1.1)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  typhoeus (~> 1.4.0)
7
7
 
@@ -0,0 +1,13 @@
1
+ require_relative '../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Pipelines
7
+ class PipelineAuditsApi
8
+ include Hubspot::Discovery::BaseApiClient
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ require_relative '../../../base_api_client'
2
+
3
+ module Hubspot
4
+ module Discovery
5
+ module Crm
6
+ module Pipelines
7
+ class PipelineStageAuditsApi
8
+ include Hubspot::Discovery::BaseApiClient
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -10,7 +10,9 @@ module Hubspot
10
10
  def api_classes
11
11
  %i[
12
12
  pipeline_stages
13
+ pipeline_stage_audits
13
14
  pipelines
15
+ pipeline_audits
14
16
  ].freeze
15
17
  end
16
18
  end
@@ -1,3 +1,3 @@
1
1
  module Hubspot
2
- VERSION = '16.1.0'
2
+ VERSION = '16.1.1'
3
3
  end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Pipelines::PipelineAuditsApi' do
4
+ subject(:api) { Hubspot::Client.new(access_token: 'test').crm.pipelines.pipeline_audits_api }
5
+
6
+ it { is_expected.to respond_to(:get_audit) }
7
+
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hubspot::Discovery::Crm::Pipelines::PipelineStageAuditsApi' do
4
+ subject(:api) { Hubspot::Client.new(access_token: 'test').crm.pipelines.pipeline_stage_audits_api }
5
+
6
+ it { is_expected.to respond_to(:get_audit) }
7
+
8
+ 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.1.0
4
+ version: 16.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - HubSpot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-22 00:00:00.000000000 Z
11
+ date: 2022-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -1589,6 +1589,8 @@ files:
1589
1589
  - lib/hubspot/discovery/crm/objects/tasks/client.rb
1590
1590
  - lib/hubspot/discovery/crm/owners/api/owners_api.rb
1591
1591
  - lib/hubspot/discovery/crm/owners/client.rb
1592
+ - lib/hubspot/discovery/crm/pipelines/api/pipeline_audits_api.rb
1593
+ - lib/hubspot/discovery/crm/pipelines/api/pipeline_stage_audits_api.rb
1592
1594
  - lib/hubspot/discovery/crm/pipelines/api/pipeline_stages_api.rb
1593
1595
  - lib/hubspot/discovery/crm/pipelines/api/pipelines_api.rb
1594
1596
  - lib/hubspot/discovery/crm/pipelines/client.rb
@@ -1759,6 +1761,8 @@ files:
1759
1761
  - spec/discovery/crm/objects/tasks/public_object_api_spec.rb
1760
1762
  - spec/discovery/crm/objects/tasks/search_api_spec.rb
1761
1763
  - spec/discovery/crm/owners/owners_api_spec.rb
1764
+ - spec/discovery/crm/pipelines/pipeline_audits_api_spec.rb
1765
+ - spec/discovery/crm/pipelines/pipeline_stage_audits_api_spec.rb
1762
1766
  - spec/discovery/crm/pipelines/pipeline_stages_api_spec.rb
1763
1767
  - spec/discovery/crm/pipelines/pipelines_api_spec.rb
1764
1768
  - spec/discovery/crm/products/associations_api_spec.rb
@@ -1821,7 +1825,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1821
1825
  - !ruby/object:Gem::Version
1822
1826
  version: '0'
1823
1827
  requirements: []
1824
- rubygems_version: 3.3.26
1828
+ rubygems_version: 3.2.3
1825
1829
  signing_key:
1826
1830
  specification_version: 4
1827
1831
  summary: HubSpot Ruby API Gem
@@ -1905,8 +1909,10 @@ test_files:
1905
1909
  - spec/discovery/crm/deals/basic_api_spec.rb
1906
1910
  - spec/discovery/crm/deals/public_object_api_spec.rb
1907
1911
  - spec/discovery/crm/deals/batch_api_spec.rb
1912
+ - spec/discovery/crm/pipelines/pipeline_stage_audits_api_spec.rb
1908
1913
  - spec/discovery/crm/pipelines/pipelines_api_spec.rb
1909
1914
  - spec/discovery/crm/pipelines/pipeline_stages_api_spec.rb
1915
+ - spec/discovery/crm/pipelines/pipeline_audits_api_spec.rb
1910
1916
  - spec/discovery/crm/line_items/search_api_spec.rb
1911
1917
  - spec/discovery/crm/line_items/associations_api_spec.rb
1912
1918
  - spec/discovery/crm/line_items/basic_api_spec.rb