shedcloud-partner_api 0.4.0 → 0.4.1

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: b54129db36438f7ef29fb770ca5981b2c0d3f814836458aa9c9eba376aa1fda8
4
- data.tar.gz: 76bcf7bb7c7ff8794b479f85881bbb447ab5d5bb00e7d4889b465973f337c30a
3
+ metadata.gz: a35ecd123c5a4f2e99e75b0f67318257a426a409238e1bfcc120599d16438f9c
4
+ data.tar.gz: f0e9cc8a827267dce3eaa333754f3709b8b935c3c6040af4dc7b0aae06585039
5
5
  SHA512:
6
- metadata.gz: f2e3ed9212d6fb716bd505eb3d44ffa76a376162f4bbf90add00b016ce1ccc9ec86e70fa99a339262ae4f39277d0655f424856ea5d5c3894a871c79ca755986e
7
- data.tar.gz: a6a9cb6e146c4ccd7daa06b024888dc7fefcb6e6ebdebc6a914e79c3c3db52803a2dea1733b9c3af11c1d47a40229a0258b7ee3994782a84b8f48386fd763653
6
+ metadata.gz: 7671de6a3469bdf76ae0c442dc5da5a64daa60ecb5688eb7ebf16d8b3d02be6c5244f1d0a6dab6b70263f2287af540ad7121f8566904b55d7574e76ee4e87fac
7
+ data.tar.gz: f106b480de7b1310820952496592b5e670e0bad99572a6dc379822f6412b519b99c6d15592b422efeb68addad0ef70b02f90d6c3fd23f194d12583d990c8d2cd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.1 — 2026-07-28
4
+
5
+ - **Lot-stock typed photo galleries.** `client.lot_stock.list` responses may
6
+ include `frontImages`, `backImages`, `leftImages`, `rightImages`,
7
+ `exteriorImages`, and `interiorImages` (public CDN URL arrays; empty when
8
+ none). Existing `images` and `heroImages` are unchanged. Hashes are passed
9
+ through as-is (no client-side transform).
10
+ - Parity with the `shedcloud-api-go` Partner API changelog entry (2026-07-28).
11
+
3
12
  ## 0.4.0 — 2026-07-27
4
13
 
5
14
  - **Orders: sale date + sold pricing.** Order GET/list responses may include
data/README.md CHANGED
@@ -44,7 +44,12 @@ stock = client.lot_stock.list(
44
44
  )
45
45
 
46
46
  puts stock['total']
47
- puts stock['data'].first['title']
47
+ unit = stock['data'].first
48
+ puts unit['title']
49
+ # Typed public photo galleries (CDN URL arrays; empty when none):
50
+ # unit['heroImages'], unit['frontImages'], unit['backImages'],
51
+ # unit['leftImages'], unit['rightImages'], unit['exteriorImages'],
52
+ # unit['interiorImages']
48
53
  ```
49
54
 
50
55
  ### Sandbox
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ShedCloud
4
4
  module PartnerApi
5
- VERSION = '0.4.0'
5
+ VERSION = '0.4.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shedcloud-partner_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Corland Partners LLC