fountain 0.0.19 → 0.0.20

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d58a93e1c011b85b5077ff728413ea5f4451cfca7843f550f8065257ad75ea84
4
- data.tar.gz: 7cb684e665579bfa8256602d3967f8c5adfb129df3928efb09b34fb4f75bf873
3
+ metadata.gz: 4afc1087ee4684b2b55340e60b65a73b3ea23060411d604a278918418d434ee4
4
+ data.tar.gz: f8f4f231d255a442e6dcf35fe36ee94272047365490467d866db28611b04e64b
5
5
  SHA512:
6
- metadata.gz: 0e1852ad3f32c967a33f4d3d1b033e25acbbde91914b46adb3c39a104762803777324ed529e571a18a58a8e3aecc6fdb24b10b16b18e30dfa313ce928aebdc05
7
- data.tar.gz: 0bd49a42685234928d838271872bafdd7fb7ff40ef70833c2903d6b59c0685b46191199d7259d6e27e3fd554ac9b833e62a75802e8cdcd6df452b3642dfc95e4
6
+ metadata.gz: c7ff7506d65ef67acde85b2b08ef5a4fc5fe4c3db1b281119cf7ccef551bff0413cdf760fb8d9d83dfe626ae520c5383a6de9bce6e2b152748654b3d059d1a37
7
+ data.tar.gz: d5f1f8e7fd32259c32be43738dc42a836ee0660e1ecd77a7a560bd53f2720160ba6409e449a823f10787db42f683e521d012309558377eccf3576de0daaa2b1a
data/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  ## Unreleased
4
4
  - None
5
5
 
6
+ ## [0.0.20](releases/tag/v0.0.20) - 2024-04-30
7
+ ### Added
8
+ - [#11] Fix query parameter bug in Applicants#advance_applicants ([@abrom][])
9
+
6
10
  ## [0.0.19](releases/tag/v0.0.19) - 2024-04-30
7
11
  ### Added
8
12
  - [#10] Add `funnel_id` to Applicants#advance_applicant ([@abrom][])
@@ -145,12 +145,12 @@ module Fountain
145
145
  # skip_automated_actions - `true` if you want to skip automated
146
146
  # actions when advancing the applicant
147
147
  # funnel_id - Used for bulk advancing applicants to a workflow-based funnel
148
- def self.advance_applicants(applicant_ids, stage_id, advance_options = {})
148
+ def self.advance_applicants(applicant_ids, stage_id, advanced_options = {})
149
149
  response = request(
150
- "/v2/applicants/advance?#{stage_id}",
150
+ "/v2/applicants/advance?stage_id=#{stage_id}",
151
151
  method: :post,
152
152
  body: Util.slice_hash(
153
- advance_options,
153
+ advanced_options,
154
154
  :skip_automated_actions, :funnel_id
155
155
  ).merge(ids: applicant_ids)
156
156
  )
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fountain
4
- VERSION = '0.0.19'
4
+ VERSION = '0.0.20'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fountain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.19
4
+ version: 0.0.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - abrom