seam 2.78.0 → 2.80.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a8bc7b4de4daf58cb7bf4852547e46110bbc80aba00765ceb6e63258ad529d3
|
|
4
|
+
data.tar.gz: 355d597e2422e2875c8101eb50b788ef6c728e1af2f9a12ef7ceae68f5ac45db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56f936656bc73ea9940a6ca73d422ab0383b57aa5eebe28c528a7da8d27bb004bd83795afe713e09c89fb52eaa87b5b50d85039b0d87654f4b07835a87313cf1
|
|
7
|
+
data.tar.gz: eda76aa0b8d3acbe9baf5dab12d04cbdf25f471678e6ca9ac1d492a2b4d3a24cdf291c9fc91fea8f14ea472c26bfd7db7935fc03bd2ada3e8de9031d9ff060dd
|
data/Gemfile.lock
CHANGED
|
@@ -32,8 +32,8 @@ module Seam
|
|
|
32
32
|
nil
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
-
def update(connected_account_id:, accepted_capabilities: nil, automatically_manage_new_devices: nil, custom_metadata: nil)
|
|
36
|
-
@client.post("/connected_accounts/update", {connected_account_id: connected_account_id, accepted_capabilities: accepted_capabilities, automatically_manage_new_devices: automatically_manage_new_devices, custom_metadata: custom_metadata}.compact)
|
|
35
|
+
def update(connected_account_id:, accepted_capabilities: nil, automatically_manage_new_devices: nil, custom_metadata: nil, customer_key: nil)
|
|
36
|
+
@client.post("/connected_accounts/update", {connected_account_id: connected_account_id, accepted_capabilities: accepted_capabilities, automatically_manage_new_devices: automatically_manage_new_devices, custom_metadata: custom_metadata, customer_key: customer_key}.compact)
|
|
37
37
|
|
|
38
38
|
nil
|
|
39
39
|
end
|
|
@@ -20,8 +20,8 @@ module Seam
|
|
|
20
20
|
nil
|
|
21
21
|
end
|
|
22
22
|
|
|
23
|
-
def push_data(customer_key:, access_grants: nil, bookings: nil, buildings: nil, common_areas: nil, facilities: nil, guests: nil, listings: nil, properties: nil, property_listings: nil, reservations: nil, residents: nil, rooms: nil, spaces: nil, tenants: nil, units: nil, user_identities: nil, users: nil)
|
|
24
|
-
@client.post("/customers/push_data", {customer_key: customer_key, access_grants: access_grants, bookings: bookings, buildings: buildings, common_areas: common_areas, facilities: facilities, guests: guests, listings: listings, properties: properties, property_listings: property_listings, reservations: reservations, residents: residents, rooms: rooms, spaces: spaces, tenants: tenants, units: units, user_identities: user_identities, users: users}.compact)
|
|
23
|
+
def push_data(customer_key:, access_grants: nil, bookings: nil, buildings: nil, common_areas: nil, facilities: nil, guests: nil, listings: nil, properties: nil, property_listings: nil, reservations: nil, residents: nil, rooms: nil, sites: nil, spaces: nil, tenants: nil, units: nil, user_identities: nil, users: nil)
|
|
24
|
+
@client.post("/customers/push_data", {customer_key: customer_key, access_grants: access_grants, bookings: bookings, buildings: buildings, common_areas: common_areas, facilities: facilities, guests: guests, listings: listings, properties: properties, property_listings: property_listings, reservations: reservations, residents: residents, rooms: rooms, sites: sites, spaces: spaces, tenants: tenants, units: units, user_identities: user_identities, users: users}.compact)
|
|
25
25
|
|
|
26
26
|
nil
|
|
27
27
|
end
|
|
@@ -20,8 +20,8 @@ module Seam
|
|
|
20
20
|
nil
|
|
21
21
|
end
|
|
22
22
|
|
|
23
|
-
def create(name:, acs_entrance_ids: nil, device_ids: nil, space_key: nil)
|
|
24
|
-
res = @client.post("/spaces/create", {name: name, acs_entrance_ids: acs_entrance_ids, device_ids: device_ids, space_key: space_key}.compact)
|
|
23
|
+
def create(name:, acs_entrance_ids: nil, customer_key: nil, device_ids: nil, space_key: nil)
|
|
24
|
+
res = @client.post("/spaces/create", {name: name, acs_entrance_ids: acs_entrance_ids, customer_key: customer_key, device_ids: device_ids, space_key: space_key}.compact)
|
|
25
25
|
|
|
26
26
|
Seam::Resources::Space.load_from_response(res.body["space"])
|
|
27
27
|
end
|
|
@@ -62,8 +62,8 @@ module Seam
|
|
|
62
62
|
nil
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
-
def update(acs_entrance_ids: nil, device_ids: nil, name: nil, space_id: nil, space_key: nil)
|
|
66
|
-
res = @client.post("/spaces/update", {acs_entrance_ids: acs_entrance_ids, device_ids: device_ids, name: name, space_id: space_id, space_key: space_key}.compact)
|
|
65
|
+
def update(acs_entrance_ids: nil, customer_key: nil, device_ids: nil, name: nil, space_id: nil, space_key: nil)
|
|
66
|
+
res = @client.post("/spaces/update", {acs_entrance_ids: acs_entrance_ids, customer_key: customer_key, device_ids: device_ids, name: name, space_id: space_id, space_key: space_key}.compact)
|
|
67
67
|
|
|
68
68
|
Seam::Resources::Space.load_from_response(res.body["space"])
|
|
69
69
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module Seam
|
|
4
4
|
module Resources
|
|
5
5
|
class Space < BaseResource
|
|
6
|
-
attr_accessor :acs_entrance_count, :device_count, :display_name, :name, :space_id, :space_key, :workspace_id
|
|
6
|
+
attr_accessor :acs_entrance_count, :device_count, :display_name, :name, :parent_space_id, :parent_space_key, :space_id, :space_key, :workspace_id
|
|
7
7
|
|
|
8
8
|
date_accessor :created_at
|
|
9
9
|
end
|
data/lib/seam/version.rb
CHANGED
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.
|
|
4
|
+
version: 2.80.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-
|
|
11
|
+
date: 2025-10-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|