@@ -104,6 +104,25 @@ unless res.linked_account.nil?
104104 # handle response
105105end
106106
107+ ```
108+
109+ ### Per-Operation Security Schemes
110+
111+ Some operations in this SDK require the security scheme to be specified at the request level. For example:
112+ ``` ruby
113+ require ' stackone_client'
114+
115+ Models = ::StackOne ::Models
116+ s = ::StackOne ::StackOne .new
117+
118+ res = s.mcp.mcp_delete(security: Models ::Operations ::StackoneMcpDeleteSecurity .new (
119+ api_key: ' <YOUR_API_KEY_HERE>' ,
120+ ), mcp_session_id: ' <id>' , x_account_id: ' <id>' )
121+
122+ if res.status_code == 200
123+ # handle response
124+ end
125+
107126```
108127<!-- End Authentication [security] -->
109128
134153* [ list_linked_accounts] ( docs/sdks/accounts/README.md#list_linked_accounts ) - List Accounts
135154* [ update_account] ( docs/sdks/accounts/README.md#update_account ) - Update Account
136155
156+ ### [ actions] ( docs/sdks/actions/README.md )
157+
158+ * [ list_actions_meta] ( docs/sdks/actions/README.md#list_actions_meta ) - List all actions metadata
159+ * [ rpc_action] ( docs/sdks/actions/README.md#rpc_action ) - Make an RPC call to an action
160+
137161### [ ats] ( docs/sdks/ats/README.md )
138162
139163* [ create_application] ( docs/sdks/ats/README.md#create_application ) - Create Application
@@ -153,14 +177,15 @@ end
153177* [ get_application_offer] ( docs/sdks/ats/README.md#get_application_offer ) - Get Application Offer
154178* [ get_application_scheduled_interview] ( docs/sdks/ats/README.md#get_application_scheduled_interview ) - Get Applications scheduled interview
155179* [ get_application_scorecard] ( docs/sdks/ats/README.md#get_application_scorecard ) - Get Application Scorecard
180+ * [ get_application_stage] ( docs/sdks/ats/README.md#get_application_stage ) - Get Application Stage
156181* [ get_assessments_package] ( docs/sdks/ats/README.md#get_assessments_package ) - Get Assessments Package
157182* [ get_background_check_package] ( docs/sdks/ats/README.md#get_background_check_package ) - Get Background Check Package
158183* [ get_candidate] ( docs/sdks/ats/README.md#get_candidate ) - Get Candidate
159184* [ get_candidate_custom_field_definition] ( docs/sdks/ats/README.md#get_candidate_custom_field_definition ) - Get Candidate Custom Field Definition
160185* [ get_candidate_note] ( docs/sdks/ats/README.md#get_candidate_note ) - Get Candidate Note
161186* [ get_department] ( docs/sdks/ats/README.md#get_department ) - Get Department
162187* [ get_interview] ( docs/sdks/ats/README.md#get_interview ) - Get Interview
163- * [ get_interview_stage] ( docs/sdks/ats/README.md#get_interview_stage ) - Get Interview Stage
188+ * [ ~~ get_interview_stage~~ ] ( docs/sdks/ats/README.md#get_interview_stage ) - Get Interview Stage : warning : ** Deprecated **
164189* [ get_job] ( docs/sdks/ats/README.md#get_job ) - Get Job
165190* [ get_job_application_stage] ( docs/sdks/ats/README.md#get_job_application_stage ) - Get Job Application Stage
166191* [ get_job_custom_field_definition] ( docs/sdks/ats/README.md#get_job_custom_field_definition ) - Get Job Custom Field Definition
176201* [ list_application_documents] ( docs/sdks/ats/README.md#list_application_documents ) - List Application Documents
177202* [ list_application_notes] ( docs/sdks/ats/README.md#list_application_notes ) - List Application Notes
178203* [ list_application_scorecards] ( docs/sdks/ats/README.md#list_application_scorecards ) - List Application Scorecards
204+ * [ list_application_stages] ( docs/sdks/ats/README.md#list_application_stages ) - List Application Stages
179205* [ list_applications] ( docs/sdks/ats/README.md#list_applications ) - List Applications
180206* [ list_applications_offers] ( docs/sdks/ats/README.md#list_applications_offers ) - List Application Offers
181207* [ list_applications_scheduled_interviews] ( docs/sdks/ats/README.md#list_applications_scheduled_interviews ) - List Applications scheduled interviews
185211* [ list_candidate_notes] ( docs/sdks/ats/README.md#list_candidate_notes ) - List Candidate Notes
186212* [ list_candidates] ( docs/sdks/ats/README.md#list_candidates ) - List Candidates
187213* [ list_departments] ( docs/sdks/ats/README.md#list_departments ) - List Departments
188- * [ list_interview_stages] ( docs/sdks/ats/README.md#list_interview_stages ) - List Interview Stages
214+ * [ ~~ list_interview_stages~~ ] ( docs/sdks/ats/README.md#list_interview_stages ) - List Interview Stages : warning : ** Deprecated **
189215* [ list_interviews] ( docs/sdks/ats/README.md#list_interviews ) - List Interviews
190216* [ list_job_application_stages] ( docs/sdks/ats/README.md#list_job_application_stages ) - List Job Application Stages
191217* [ list_job_custom_field_definitions] ( docs/sdks/ats/README.md#list_job_custom_field_definitions ) - List Job Custom Field Definitions
387413* [ update_push_template] ( docs/sdks/marketing/README.md#update_push_template ) - Update Push Template
388414* [ update_sms_template] ( docs/sdks/marketing/README.md#update_sms_template ) - Update SMS Template
389415
416+ ### [ mcp] ( docs/sdks/mcp/README.md )
417+
418+ * [ mcp_delete] ( docs/sdks/mcp/README.md#mcp_delete ) - Delete MCP session
419+ * [ mcp_get] ( docs/sdks/mcp/README.md#mcp_get ) - Open MCP SSE stream
420+ * [ mcp_post] ( docs/sdks/mcp/README.md#mcp_post ) - Send MCP JSON-RPC message
421+
390422### [ messaging] ( docs/sdks/messaging/README.md )
391423
392424* [ create_conversation] ( docs/sdks/messaging/README.md#create_conversation ) - Create Conversation
0 commit comments