seam 2.5.0 → 2.6.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1a9acf167dd32f5024266d7d21bdd99b425039f6ee9b732940fcdb82f78833e
4
- data.tar.gz: ea34a8913c7b374f84fbeaa406e72f883df2a6f51d2d6b1f6bfe6d85aea21531
3
+ metadata.gz: e93720c66ec1c9a51c675e98ec07975382c39a0d8cc95eda3468376a8039d00d
4
+ data.tar.gz: f6f01b4ca006b27fb58facec65c55ec261c178011946c87f238ffb5d00c0520c
5
5
  SHA512:
6
- metadata.gz: da01602a094fcaa3af47382d0a135a8658ed4e2396f71e9da2d8ee4e941f81dc92b2bbb6d55c6369e71e697318794fb7a08df8869183bb06ea77139c7bc60cdf
7
- data.tar.gz: 53a962f30990925a88f28d520cca2873a4c42fb37d03315cc761ef561c9f4dcc720ce036f98fd1fdf2ed2a393fb912fa20619833cf13c1289639d98aa0710a96
6
+ metadata.gz: 6aca9587dfb50bb2efcccab4f103fb79078d96755b55fc55823de6883c89faab91e1080a990dd0f0972c0bbafd382b0c85e17faf91558a0dfc146169497534d6
7
+ data.tar.gz: 2aca7a10218d19c036189cd8fbb5145f7b95d01281cf18f29e24e9de9cc07031f16d820302fd6d2b20ad2c96a255c4ec0ca3f50e6832be612a890c18dcc8485a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.5.0)
4
+ seam (2.6.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -32,8 +32,8 @@ module Seam
32
32
  Seam::Resources::AcsUser.load_from_response(res.body["acs_user"])
33
33
  end
34
34
 
35
- def list(acs_system_id: nil, created_before: nil, limit: nil, page_cursor: nil, user_identity_email_address: nil, user_identity_id: nil, user_identity_phone_number: nil)
36
- res = @client.post("/acs/users/list", {acs_system_id: acs_system_id, created_before: created_before, limit: limit, page_cursor: page_cursor, user_identity_email_address: user_identity_email_address, user_identity_id: user_identity_id, user_identity_phone_number: user_identity_phone_number}.compact)
35
+ def list(acs_system_id: nil, created_before: nil, limit: nil, page_cursor: nil, search: nil, user_identity_email_address: nil, user_identity_id: nil, user_identity_phone_number: nil)
36
+ res = @client.post("/acs/users/list", {acs_system_id: acs_system_id, created_before: created_before, limit: limit, page_cursor: page_cursor, search: search, user_identity_email_address: user_identity_email_address, user_identity_id: user_identity_id, user_identity_phone_number: user_identity_phone_number}.compact)
37
37
 
38
38
  Seam::Resources::AcsUser.load_from_response(res.body["acs_users"])
39
39
  end
@@ -3,7 +3,7 @@
3
3
  module Seam
4
4
  module Resources
5
5
  class Workspace < BaseResource
6
- attr_accessor :company_name, :connect_partner_name, :is_sandbox, :name, :workspace_id
6
+ attr_accessor :company_name, :connect_partner_name, :is_sandbox, :is_suspended, :name, :workspace_id
7
7
  end
8
8
  end
9
9
  end
data/lib/seam/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Seam
4
- VERSION = "2.5.0"
4
+ VERSION = "2.6.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seam
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seam Labs, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-17 00:00:00.000000000 Z
11
+ date: 2025-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday