-
Notifications
You must be signed in to change notification settings - Fork 5
chore: π Update SDK - Generate 0.40.1 #144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| .speakeasy/reports | ||
| sorbet/rbi | ||
| .env | ||
| .env.local | ||
|
|
||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,13 @@ | ||
| # Exclude | ||
|
|
||
| ## Example Usage | ||
|
|
||
| ```ruby | ||
| require "stackone_client" | ||
|
|
||
| value = Exclude::ACTIONS | ||
| ``` | ||
|
|
||
|
|
||
| ## Values | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,13 @@ | ||
| # Include | ||
|
|
||
| ## Example Usage | ||
|
|
||
| ```ruby | ||
| require "stackone_client" | ||
|
|
||
| value = Include::ACTION_DETAILS | ||
| ``` | ||
|
|
||
|
|
||
| ## Values | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,14 @@ | |||||
|
|
||||||
| The job_status of the job | ||||||
|
|
||||||
| ## Example Usage | ||||||
|
|
||||||
| ```ruby | ||||||
| require "stackone_client" | ||||||
|
|
||||||
| value = JobStatus::OPEN | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P3: Use the fully qualified enum constant here; Prompt for AI agents
Suggested change
|
||||||
| ``` | ||||||
|
|
||||||
|
|
||||||
| ## Values | ||||||
|
|
||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,14 @@ | |||||
|
|
||||||
| Filter to select assignment by status | ||||||
|
|
||||||
| ## Example Usage | ||||||
|
|
||||||
| ```ruby | ||||||
| require "stackone_client" | ||||||
|
|
||||||
| value = LmsListUserAssignmentsQueryParamStatus::PENDING | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P3: Prefix the enum with the SDK namespace so the example is executable. Prompt for AI agents
Suggested change
|
||||||
| ``` | ||||||
|
|
||||||
|
|
||||||
| ## Values | ||||||
|
|
||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # ParamStyle | ||
|
|
||
| Parameter schema style: "nested" (default) groups by location, "flat_prefixed" flattens with location prefix, "flat_smart" flattens and only prefixes on name collision | ||
|
|
||
| ## Example Usage | ||
|
|
||
| ```ruby | ||
| require "stackone_client" | ||
|
|
||
| value = ParamStyle::NESTED | ||
| ``` | ||
|
|
||
|
|
||
| ## Values | ||
|
|
||
| | Name | Value | | ||
| | --------------- | --------------- | | ||
| | `NESTED` | nested | | ||
| | `FLAT_PREFIXED` | flat_prefixed | | ||
| | `FLAT_SMART` | flat_smart | |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,14 @@ | |||||
|
|
||||||
| The field to order the results by. | ||||||
|
|
||||||
| ## Example Usage | ||||||
|
|
||||||
| ```ruby | ||||||
| require "stackone_client" | ||||||
|
|
||||||
| value = QueryParamOrderBy::PROVIDER | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P3: Qualify the enum constant in the example; Prompt for AI agents
Suggested change
|
||||||
| ``` | ||||||
|
|
||||||
|
|
||||||
| ## Values | ||||||
|
|
||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P3: Qualify the enum reference in the example;
Includeis not defined at top level.Prompt for AI agents