smplkit 1.0.25 → 1.0.26

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: c5467982be79b924356216ec4b8a4158589ac70802cefbee82c819f5d390281d
4
- data.tar.gz: 93f707d0f9951956db82350eb298d4a14f42ccb2effca770da64f9084e6908d4
3
+ metadata.gz: 7bdf868508ed91a94310a12e8341733ae453385e42104713e694c60641538bc1
4
+ data.tar.gz: 003c013da94f5776a03d32458704700bbca466b3b00c6b67b93971bba5e2f746
5
5
  SHA512:
6
- metadata.gz: 50b0fd8883a16c7b2aff012f26c956a6b5c2f1e3501cb08a02b5641fa360eb1ca60cca85acb0290a141f416497be3a0f0c3a62ced5c6593a357667a149911dec
7
- data.tar.gz: 36731f5638835a9939bd712574377f4f6ad7279883ad535f430c986173322c1d30044f95f2b47225c67b85c8eb2d5212ca9e736c4d6f5989b05b8c7260c43d68
6
+ metadata.gz: a7aec9a8462b8c935bee1467149de3789d168f92fab61862b41ba36e4bded04b32f487110bc509033b77a39b01254c35cd5ed4d903d694d6b62d026d8975f4a9
7
+ data.tar.gz: 1a4cb3c19a8e58e51a0347d059825b0ff1fe9f9f90350f140cf7a68c2714107d4bcfdc2870b44ee2afd754c993e90454e41101fa046e277b30476952469479e9
@@ -217,7 +217,7 @@ module SmplkitGeneratedClient::Audit
217
217
  end
218
218
 
219
219
  # Get Forwarder
220
- # Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller's account, including if the forwarder is soft-deleted. Header values in the response are always redacted regardless of caller permission.
220
+ # Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller's account, including if the forwarder is soft-deleted. Header values in the response are returned in plaintext so callers can perform a GET-modify-PUT round-trip without re-entering secrets (ADR-014). The persisted ``forwarder_delivery.request`` log column is what keeps redaction; that read path is unaffected by this route.
221
221
  # @param forwarder_id [String]
222
222
  # @param [Hash] opts the optional parameters
223
223
  # @return [ForwarderResponse]
@@ -227,7 +227,7 @@ module SmplkitGeneratedClient::Audit
227
227
  end
228
228
 
229
229
  # Get Forwarder
230
- # Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller's account, including if the forwarder is soft-deleted. Header values in the response are always redacted regardless of caller permission.
230
+ # Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller's account, including if the forwarder is soft-deleted. Header values in the response are returned in plaintext so callers can perform a GET-modify-PUT round-trip without re-entering secrets (ADR-014). The persisted ``forwarder_delivery.request`` log column is what keeps redaction; that read path is unaffected by this route.
231
231
  # @param forwarder_id [String]
232
232
  # @param [Hash] opts the optional parameters
233
233
  # @return [Array<(ForwarderResponse, Integer, Hash)>] ForwarderResponse data, response status code and response headers
@@ -564,7 +564,7 @@ module SmplkitGeneratedClient::Audit
564
564
  end
565
565
 
566
566
  # Update Forwarder
567
- # Full-replace update. PUT semantics — every field is overwritten. The header values must be re-supplied; the GET path redacts them, but a PUT body that contains ``\"<redacted>\"`` would persist that literal. Customers must round-trip the actual secret back. This is the standard get-mutate-put pattern (see CLAUDE.md \"Updating Resources via the API\"); the SDK helpers track the un-redacted secret client-side so customers don't usually need to re-enter it.
567
+ # Full-replace update. PUT semantics — every field is overwritten. The GET path returns plaintext header values, so the standard get-mutate-put round-trip (ADR-014) preserves secrets without any extra work from the caller: GET, change one field, PUT the result.
568
568
  # @param forwarder_id [String]
569
569
  # @param forwarder_response [ForwarderResponse]
570
570
  # @param [Hash] opts the optional parameters
@@ -575,7 +575,7 @@ module SmplkitGeneratedClient::Audit
575
575
  end
576
576
 
577
577
  # Update Forwarder
578
- # Full-replace update. PUT semantics — every field is overwritten. The header values must be re-supplied; the GET path redacts them, but a PUT body that contains &#x60;&#x60;\&quot;&lt;redacted&gt;\&quot;&#x60;&#x60; would persist that literal. Customers must round-trip the actual secret back. This is the standard get-mutate-put pattern (see CLAUDE.md \&quot;Updating Resources via the API\&quot;); the SDK helpers track the un-redacted secret client-side so customers don&#39;t usually need to re-enter it.
578
+ # Full-replace update. PUT semantics — every field is overwritten. The GET path returns plaintext header values, so the standard get-mutate-put round-trip (ADR-014) preserves secrets without any extra work from the caller: GET, change one field, PUT the result.
579
579
  # @param forwarder_id [String]
580
580
  # @param forwarder_response [ForwarderResponse]
581
581
  # @param [Hash] opts the optional parameters
@@ -70,7 +70,7 @@ describe 'ForwardersApi' do
70
70
 
71
71
  # unit tests for get_forwarder
72
72
  # Get Forwarder
73
- # Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller&#39;s account, including if the forwarder is soft-deleted. Header values in the response are always redacted regardless of caller permission.
73
+ # Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller&#39;s account, including if the forwarder is soft-deleted. Header values in the response are returned in plaintext so callers can perform a GET-modify-PUT round-trip without re-entering secrets (ADR-014). The persisted &#x60;&#x60;forwarder_delivery.request&#x60;&#x60; log column is what keeps redaction; that read path is unaffected by this route.
74
74
  # @param forwarder_id
75
75
  # @param [Hash] opts the optional parameters
76
76
  # @return [ForwarderResponse]
@@ -138,7 +138,7 @@ describe 'ForwardersApi' do
138
138
 
139
139
  # unit tests for update_forwarder
140
140
  # Update Forwarder
141
- # Full-replace update. PUT semantics — every field is overwritten. The header values must be re-supplied; the GET path redacts them, but a PUT body that contains &#x60;&#x60;\&quot;&lt;redacted&gt;\&quot;&#x60;&#x60; would persist that literal. Customers must round-trip the actual secret back. This is the standard get-mutate-put pattern (see CLAUDE.md \&quot;Updating Resources via the API\&quot;); the SDK helpers track the un-redacted secret client-side so customers don&#39;t usually need to re-enter it.
141
+ # Full-replace update. PUT semantics — every field is overwritten. The GET path returns plaintext header values, so the standard get-mutate-put round-trip (ADR-014) preserves secrets without any extra work from the caller: GET, change one field, PUT the result.
142
142
  # @param forwarder_id
143
143
  # @param forwarder_response
144
144
  # @param [Hash] opts the optional parameters
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smplkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.25
4
+ version: 1.0.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Smpl Solutions LLC