smplkit 3.0.25 → 3.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: fa5a6eee857a0f0792cc2a7c5442b752783355410e56df2b31c6a0c6a6cd0c77
4
- data.tar.gz: 77c2fa4112a9ab8b61d017529bb1b135fff9407eac54bfb7928494e29832958c
3
+ metadata.gz: f236dfed682fa341169b093612514653b656ddab8f7fe9be20c59d5074281e80
4
+ data.tar.gz: f1c80f2b55bd9066967a5846ec80cbf7a4b09cee89df3add7eda03b1ac4a67ca
5
5
  SHA512:
6
- metadata.gz: b0135c0d4ac37176fa5ea072bcaa0ca11cec186f76326ec21be63c2a019892ca565c6029f409f51067ea53439a7561a349baa397f25012e5c9729ab5a3ebdd2d
7
- data.tar.gz: 1fae10527875c467d271dde21ba7c07595901005357cb459d3ca3953429073bbd6fdc2f74b18d4f9fcc1c1fde1620942a0ba755383d4e494771e633d31db6947
6
+ metadata.gz: be2aecd7113cd6e6c2f3cc628ea2a1451b9ab7be8f45d17549eace3e3dba71d6842ed739b4f28f9e772f6ba29e953870105a2348bb9011f4b676da0e697a8812
7
+ data.tar.gz: e8ebdc14c43393f33de59dc7e12e77bce15c61700a6978048287638cc70cf400b102118390e728a884c62247a01d1e51b5311229efb90dc2dc1e20bacd9f56e0
@@ -83,7 +83,7 @@ module SmplkitGeneratedClient::Audit
83
83
  end
84
84
 
85
85
  # List Events
86
- # List audit events for this account. Default sort is `-occurred_at` (newest occurrence first). Sort by `occurred_at` or `created_at`, ascending or descending — keep the same `sort` value across paginated requests so the cursor stays consistent. Filters are exact-match except `filter[occurred_at]`, which uses interval notation (e.g. `[2026-01-01T00:00:00Z,2026-01-31T00:00:00Z)`), and `filter[search]`, which is a case-insensitive substring match against `resource_id` or `description`. To bound the rows scanned per request, the endpoint requires either: - `filter[resource_id]` (which must be accompanied by `filter[resource_type]`), or - `filter[occurred_at]` with a span no greater than 30 days. `page[size]` defaults to 50 and must not exceed 1000.
86
+ # List audit events for this account. Default sort is `-occurred_at` (newest occurrence first). Sort by `occurred_at` or `created_at`, ascending or descending — keep the same `sort` value across paginated requests so the cursor stays consistent. Filters are exact-match except `filter[occurred_at]`, which uses interval notation (e.g. `[2026-01-01T00:00:00Z,2026-01-31T00:00:00Z)`), and `filter[search]`, which is a case-insensitive substring match against `resource_id` or `description`. Two filter-combination rules: - `filter[resource_id]` must be accompanied by `filter[resource_type]` (the index is keyed on the pair). - `filter[search]` must be accompanied by either `filter[occurred_at]` or `filter[resource_type]` + `filter[resource_id]` (substring matching has no index, so an unbounded substring scan is rejected). No other filter combinations are required — calling the endpoint with no query parameters returns the latest events for the account, paginated. `page[size]` defaults to 1000 and must not exceed 1000.
87
87
  # @param [Hash] opts the optional parameters
88
88
  # @option opts [String] :filter_occurred_at
89
89
  # @option opts [String] :filter_actor_type
@@ -102,7 +102,7 @@ module SmplkitGeneratedClient::Audit
102
102
  end
103
103
 
104
104
  # List Events
105
- # List audit events for this account. Default sort is `-occurred_at` (newest occurrence first). Sort by `occurred_at` or `created_at`, ascending or descending — keep the same `sort` value across paginated requests so the cursor stays consistent. Filters are exact-match except `filter[occurred_at]`, which uses interval notation (e.g. `[2026-01-01T00:00:00Z,2026-01-31T00:00:00Z)`), and `filter[search]`, which is a case-insensitive substring match against `resource_id` or `description`. To bound the rows scanned per request, the endpoint requires either: - `filter[resource_id]` (which must be accompanied by `filter[resource_type]`), or - `filter[occurred_at]` with a span no greater than 30 days. `page[size]` defaults to 50 and must not exceed 1000.
105
+ # List audit events for this account. Default sort is `-occurred_at` (newest occurrence first). Sort by `occurred_at` or `created_at`, ascending or descending — keep the same `sort` value across paginated requests so the cursor stays consistent. Filters are exact-match except `filter[occurred_at]`, which uses interval notation (e.g. `[2026-01-01T00:00:00Z,2026-01-31T00:00:00Z)`), and `filter[search]`, which is a case-insensitive substring match against `resource_id` or `description`. Two filter-combination rules: - `filter[resource_id]` must be accompanied by `filter[resource_type]` (the index is keyed on the pair). - `filter[search]` must be accompanied by either `filter[occurred_at]` or `filter[resource_type]` + `filter[resource_id]` (substring matching has no index, so an unbounded substring scan is rejected). No other filter combinations are required — calling the endpoint with no query parameters returns the latest events for the account, paginated. `page[size]` defaults to 1000 and must not exceed 1000.
106
106
  # @param [Hash] opts the optional parameters
107
107
  # @option opts [String] :filter_occurred_at
108
108
  # @option opts [String] :filter_actor_type
@@ -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 this account. Default sort is `-occurred_at` (newest occurrence first). Sort by `occurred_at` or `created_at`, ascending or descending — keep the same `sort` value across paginated requests so the cursor stays consistent. Filters are exact-match except `filter[occurred_at]`, which uses interval notation (e.g. `[2026-01-01T00:00:00Z,2026-01-31T00:00:00Z)`), and `filter[search]`, which is a case-insensitive substring match against `resource_id` or `description`. To bound the rows scanned per request, the endpoint requires either: - `filter[resource_id]` (which must be accompanied by `filter[resource_type]`), or - `filter[occurred_at]` with a span no greater than 30 days. `page[size]` defaults to 50 and must not exceed 1000.
49
+ # List audit events for this account. Default sort is `-occurred_at` (newest occurrence first). Sort by `occurred_at` or `created_at`, ascending or descending — keep the same `sort` value across paginated requests so the cursor stays consistent. Filters are exact-match except `filter[occurred_at]`, which uses interval notation (e.g. `[2026-01-01T00:00:00Z,2026-01-31T00:00:00Z)`), and `filter[search]`, which is a case-insensitive substring match against `resource_id` or `description`. Two filter-combination rules: - `filter[resource_id]` must be accompanied by `filter[resource_type]` (the index is keyed on the pair). - `filter[search]` must be accompanied by either `filter[occurred_at]` or `filter[resource_type]` + `filter[resource_id]` (substring matching has no index, so an unbounded substring scan is rejected). No other filter combinations are required — calling the endpoint with no query parameters returns the latest events for the account, paginated. `page[size]` defaults to 1000 and must not exceed 1000.
50
50
  # @param [Hash] opts the optional parameters
51
51
  # @option opts [String] :filter_occurred_at
52
52
  # @option opts [String] :filter_actor_type
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: 3.0.25
4
+ version: 3.0.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Smpl Solutions LLC