smplkit 2.0.7 → 2.0.8

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: 66338107727fee0497df67e431293bb53baa012406628418beaed8d5c5259b0c
4
- data.tar.gz: 4f0bce38478dbd008262b8e246aaaaef9ba49d902e274c0ac77ca4ba9d4ea5a1
3
+ metadata.gz: 0750ea6383e472f36e7f3b2ffdb4b7a28117c311213da66cf20deaa8c28c1d74
4
+ data.tar.gz: 5dca82e7751526abc2d2fd2842d9b4f92be45892b09987e1b7c3d4dfd06ecfe0
5
5
  SHA512:
6
- metadata.gz: 48f6367192217db87109c0a463b876f6bf1b1b505f7d6040df03c59cf86f4b5d06c2aa8154fc31c32e14aa9f1c70b67edb530575649eab2d2c3e7b6f16d74f6d
7
- data.tar.gz: 5a78484ff0e1ab4505e64bc4909006de56cd5ee2b362a3918450e5a352efd684a09faed7fa23bf2735eabcbdca1e9dfffc89319c9f3319863d26ccbffc5c1eff
6
+ metadata.gz: dce04a53acfc4b3b6de5b89ac54392ab60ba175d0bf2294ab5d1432474c78ef6fa18d5fe379be321d23a3e0da869e21dc9fd31dd48e33a80c681116051ce73d8
7
+ data.tar.gz: 53ac80d537a14f41770fa1476755b261fd1aa42778f70d0bd4fae1079794ad4ba2c4052f4091982e032937364592ae572b9ac46421836349490eb0bf7189972b
@@ -83,7 +83,7 @@ module SmplkitGeneratedClient::Audit
83
83
  end
84
84
 
85
85
  # List Events
86
- # List audit events for the authenticated account. Default sort is ``-created_at``; cursor pagination via ``page[after]`` (the opaque cursor returned in ``links.next``). Filters are exact-match except ``filter[occurred_at]`` which uses the platform's range notation (``[2026-01-01T00:00:00Z,*)``).
86
+ # List audit events for the authenticated account. Default sort is ``-created_at``; cursor pagination via ``page[after]`` (the opaque cursor returned in ``links.next``). Filters are exact-match except ``filter[occurred_at]`` which uses the platform's range notation (``[2026-01-01T00:00:00Z,*)``) and ``filter[search]`` which is a case-insensitive substring match (per ADR-014; targets ``resource_id`` only at this revision).
87
87
  # @param [Hash] opts the optional parameters
88
88
  # @option opts [String] :filter_occurred_at
89
89
  # @option opts [String] :filter_actor_type
@@ -91,6 +91,7 @@ module SmplkitGeneratedClient::Audit
91
91
  # @option opts [String] :filter_action
92
92
  # @option opts [String] :filter_resource_type
93
93
  # @option opts [String] :filter_resource_id
94
+ # @option opts [String] :filter_search Case-insensitive substring match. Searches against ``resource_id`` only — see ADR-014 for the platform-wide ``filter[search]`` convention. Use ``filter[resource_id]`` for an exact match.
94
95
  # @option opts [Integer] :page_size
95
96
  # @option opts [String] :page_after
96
97
  # @return [EventListResponse]
@@ -100,7 +101,7 @@ module SmplkitGeneratedClient::Audit
100
101
  end
101
102
 
102
103
  # List Events
103
- # List audit events for the authenticated account. Default sort is ``-created_at``; cursor pagination via ``page[after]`` (the opaque cursor returned in ``links.next``). Filters are exact-match except ``filter[occurred_at]`` which uses the platform's range notation (``[2026-01-01T00:00:00Z,*)``).
104
+ # List audit events for the authenticated account. Default sort is ``-created_at``; cursor pagination via ``page[after]`` (the opaque cursor returned in ``links.next``). Filters are exact-match except ``filter[occurred_at]`` which uses the platform's range notation (``[2026-01-01T00:00:00Z,*)``) and ``filter[search]`` which is a case-insensitive substring match (per ADR-014; targets ``resource_id`` only at this revision).
104
105
  # @param [Hash] opts the optional parameters
105
106
  # @option opts [String] :filter_occurred_at
106
107
  # @option opts [String] :filter_actor_type
@@ -108,6 +109,7 @@ module SmplkitGeneratedClient::Audit
108
109
  # @option opts [String] :filter_action
109
110
  # @option opts [String] :filter_resource_type
110
111
  # @option opts [String] :filter_resource_id
112
+ # @option opts [String] :filter_search Case-insensitive substring match. Searches against ``resource_id`` only — see ADR-014 for the platform-wide ``filter[search]`` convention. Use ``filter[resource_id]`` for an exact match.
111
113
  # @option opts [Integer] :page_size
112
114
  # @option opts [String] :page_after
113
115
  # @return [Array<(EventListResponse, Integer, Hash)>] EventListResponse data, response status code and response headers
@@ -130,6 +132,7 @@ module SmplkitGeneratedClient::Audit
130
132
  query_params[:'filter[action]'] = opts[:'filter_action'] if !opts[:'filter_action'].nil?
131
133
  query_params[:'filter[resource_type]'] = opts[:'filter_resource_type'] if !opts[:'filter_resource_type'].nil?
132
134
  query_params[:'filter[resource_id]'] = opts[:'filter_resource_id'] if !opts[:'filter_resource_id'].nil?
135
+ query_params[:'filter[search]'] = opts[:'filter_search'] if !opts[:'filter_search'].nil?
133
136
  query_params[:'page[size]'] = opts[:'page_size'] if !opts[:'page_size'].nil?
134
137
  query_params[:'page[after]'] = opts[:'page_after'] if !opts[:'page_after'].nil?
135
138
 
@@ -46,7 +46,7 @@ describe 'EventsApi' do
46
46
 
47
47
  # unit tests for list_events
48
48
  # List Events
49
- # List audit events for the authenticated account. Default sort is &#x60;&#x60;-created_at&#x60;&#x60;; cursor pagination via &#x60;&#x60;page[after]&#x60;&#x60; (the opaque cursor returned in &#x60;&#x60;links.next&#x60;&#x60;). Filters are exact-match except &#x60;&#x60;filter[occurred_at]&#x60;&#x60; which uses the platform&#39;s range notation (&#x60;&#x60;[2026-01-01T00:00:00Z,*)&#x60;&#x60;).
49
+ # List audit events for the authenticated account. Default sort is &#x60;&#x60;-created_at&#x60;&#x60;; cursor pagination via &#x60;&#x60;page[after]&#x60;&#x60; (the opaque cursor returned in &#x60;&#x60;links.next&#x60;&#x60;). Filters are exact-match except &#x60;&#x60;filter[occurred_at]&#x60;&#x60; which uses the platform&#39;s range notation (&#x60;&#x60;[2026-01-01T00:00:00Z,*)&#x60;&#x60;) and &#x60;&#x60;filter[search]&#x60;&#x60; which is a case-insensitive substring match (per ADR-014; targets &#x60;&#x60;resource_id&#x60;&#x60; only at this revision).
50
50
  # @param [Hash] opts the optional parameters
51
51
  # @option opts [String] :filter_occurred_at
52
52
  # @option opts [String] :filter_actor_type
@@ -54,6 +54,7 @@ describe 'EventsApi' do
54
54
  # @option opts [String] :filter_action
55
55
  # @option opts [String] :filter_resource_type
56
56
  # @option opts [String] :filter_resource_id
57
+ # @option opts [String] :filter_search Case-insensitive substring match. Searches against &#x60;&#x60;resource_id&#x60;&#x60; only — see ADR-014 for the platform-wide &#x60;&#x60;filter[search]&#x60;&#x60; convention. Use &#x60;&#x60;filter[resource_id]&#x60;&#x60; for an exact match.
57
58
  # @option opts [Integer] :page_size
58
59
  # @option opts [String] :page_after
59
60
  # @return [EventListResponse]
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: 2.0.7
4
+ version: 2.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Smpl Solutions LLC