basecamp-sdk 0.7.1 → 0.7.2

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: '08447be78a091d1fd44c4ca85addf5d7f262f383e5d085d6765199362323d3de'
4
- data.tar.gz: 538782581af8739afa7046e204b628fdbb6ed96f2822b92806b669c63b302708
3
+ metadata.gz: 5c9c889c03d9a8ff97b18a71064fa754d56b3ca7044a250736821cf14c927420
4
+ data.tar.gz: dd916ae0eab8689f6f8ec017fad417b1294908ddce524b64d19196b5eff09d03
5
5
  SHA512:
6
- metadata.gz: 90a91f187db4d1c0213169fba7c033a3da6f7efc5e2ef71c25318e1cbef39e2d3b7383477fd804257f7148ea44625f068658a1b1d6339585cda73a2a7f34a798
7
- data.tar.gz: 052e7117c71e54bd7a415266b444e48e2344bc08b16475841e43934bdb7257c51cd283de7806f9b7893210611a778d36be3053dc3d5bee689f5107677e6cbc91
6
+ metadata.gz: 1f35da1694a55d10b213306a4d70700586756e80a3459052e6ae2ab0910566fad77b8cf7465c11266ce6b5929f7cf653c4f80c3ef598d5bc737424d81a43bb6d
7
+ data.tar.gz: 7345d9e769a039cae6afffaf7560f931e91b2ebb34703f3abb5be87269ab3ea90301a1d14e5fc064e907c632a48c3018f9f2c9c35822cc09b4245f090f983a7d
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://basecamp.com/schemas/sdk-metadata.json",
3
3
  "version": "1.0.0",
4
- "generated": "2026-03-25T06:39:18Z",
4
+ "generated": "2026-03-26T04:17:28Z",
5
5
  "operations": {
6
6
  "GetAccount": {
7
7
  "retry": {
@@ -23,11 +23,11 @@ module Basecamp
23
23
  # @param card_id [Integer] card id ID
24
24
  # @param title [String] title
25
25
  # @param due_on [String, nil] due on (YYYY-MM-DD)
26
- # @param assignees [Array, nil] assignees
26
+ # @param assignee_ids [Array, nil] assignee ids
27
27
  # @return [Hash] response data
28
- def create(card_id:, title:, due_on: nil, assignees: nil)
28
+ def create(card_id:, title:, due_on: nil, assignee_ids: nil)
29
29
  with_operation(service: "cardsteps", operation: "create", is_mutation: true, resource_id: card_id) do
30
- http_post("/card_tables/cards/#{card_id}/steps.json", body: compact_params(title: title, due_on: due_on, assignees: assignees)).json
30
+ http_post("/card_tables/cards/#{card_id}/steps.json", body: compact_params(title: title, due_on: due_on, assignee_ids: assignee_ids)).json
31
31
  end
32
32
  end
33
33
 
@@ -44,11 +44,11 @@ module Basecamp
44
44
  # @param step_id [Integer] step id ID
45
45
  # @param title [String, nil] title
46
46
  # @param due_on [String, nil] due on (YYYY-MM-DD)
47
- # @param assignees [Array, nil] assignees
47
+ # @param assignee_ids [Array, nil] assignee ids
48
48
  # @return [Hash] response data
49
- def update(step_id:, title: nil, due_on: nil, assignees: nil)
49
+ def update(step_id:, title: nil, due_on: nil, assignee_ids: nil)
50
50
  with_operation(service: "cardsteps", operation: "update", is_mutation: true, resource_id: step_id) do
51
- http_put("/card_tables/steps/#{step_id}", body: compact_params(title: title, due_on: due_on, assignees: assignees)).json
51
+ http_put("/card_tables/steps/#{step_id}", body: compact_params(title: title, due_on: due_on, assignee_ids: assignee_ids)).json
52
52
  end
53
53
  end
54
54
 
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Auto-generated from OpenAPI spec. Do not edit manually.
4
- # Generated: 2026-03-25T06:39:18Z
4
+ # Generated: 2026-03-26T04:17:28Z
5
5
 
6
6
  require "json"
7
7
  require "time"
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Basecamp
4
- VERSION = "0.7.1"
4
+ VERSION = "0.7.2"
5
5
  API_VERSION = "2026-01-26"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: basecamp-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Basecamp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-25 00:00:00.000000000 Z
11
+ date: 2026-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday