smplkit 3.0.105 → 3.0.106
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: b3b8dc995421893ac031513a7fbb1f0005a5180314216cf5b8159e60d76d3424
|
|
4
|
+
data.tar.gz: 1cce423bb15b75b9e94157d7669a3675489a0c6bf7ab996011648d56a076d88d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d7fcf01e05a2440c1f6bba6c0916ba4bdbaf2af78308289a54ee99aea27f8bc6055ae3c561f3930536bb983cb372b9a80751c62288114b4afa6e4951598afe6
|
|
7
|
+
data.tar.gz: 0b1e714e296bf9e01915185f0b1a2a79108c20503590862e2215647bfd4a782bb254d6278f8bfa233651716d1e1f66bf855498fa02ad60ab9bde1efbed4e0bbd
|
|
@@ -149,7 +149,7 @@ module SmplkitGeneratedClient::Jobs
|
|
|
149
149
|
# List runs for this account, newest first (cursor paginated). Use `filter[job]={id}` for a single job's run history.
|
|
150
150
|
# @param [Hash] opts the optional parameters
|
|
151
151
|
# @option opts [String] :filter_job
|
|
152
|
-
# @option opts [Integer] :page_size
|
|
152
|
+
# @option opts [Integer] :page_size Number of runs per page. Optional; defaults to `50` when omitted. Must be between `1` and `1000` inclusive — requests outside that range are rejected with a 400 error.
|
|
153
153
|
# @option opts [String] :page_after
|
|
154
154
|
# @return [RunListResponse]
|
|
155
155
|
def list_runs(opts = {})
|
|
@@ -161,7 +161,7 @@ module SmplkitGeneratedClient::Jobs
|
|
|
161
161
|
# List runs for this account, newest first (cursor paginated). Use `filter[job]={id}` for a single job's run history.
|
|
162
162
|
# @param [Hash] opts the optional parameters
|
|
163
163
|
# @option opts [String] :filter_job
|
|
164
|
-
# @option opts [Integer] :page_size
|
|
164
|
+
# @option opts [Integer] :page_size Number of runs per page. Optional; defaults to `50` when omitted. Must be between `1` and `1000` inclusive — requests outside that range are rejected with a 400 error.
|
|
165
165
|
# @option opts [String] :page_after
|
|
166
166
|
# @return [Array<(RunListResponse, Integer, Hash)>] RunListResponse data, response status code and response headers
|
|
167
167
|
def list_runs_with_http_info(opts = {})
|
|
@@ -61,7 +61,7 @@ describe 'RunsApi' do
|
|
|
61
61
|
# List runs for this account, newest first (cursor paginated). Use `filter[job]={id}` for a single job's run history.
|
|
62
62
|
# @param [Hash] opts the optional parameters
|
|
63
63
|
# @option opts [String] :filter_job
|
|
64
|
-
# @option opts [Integer] :page_size
|
|
64
|
+
# @option opts [Integer] :page_size Number of runs per page. Optional; defaults to `50` when omitted. Must be between `1` and `1000` inclusive — requests outside that range are rejected with a 400 error.
|
|
65
65
|
# @option opts [String] :page_after
|
|
66
66
|
# @return [RunListResponse]
|
|
67
67
|
describe 'list_runs test' do
|