@@ -166,8 +166,10 @@ def update(
166166 icon : Optional [app_update_params .Icon ] | Omit = omit ,
167167 name : Optional [str ] | Omit = omit ,
168168 oauth_client_type : Optional [Literal ["public" , "confidential" ]] | Omit = omit ,
169+ openapi_path : Optional [str ] | Omit = omit ,
169170 redirect_uris : Optional [SequenceNotStr [str ]] | Omit = omit ,
170171 required_scopes : Optional [List [Literal ["read_user" ]]] | Omit = omit ,
172+ skills_path : Optional [str ] | Omit = omit ,
171173 status : Optional [AppStatuses ] | Omit = omit ,
172174 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
173175 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -208,11 +210,16 @@ def update(
208210
209211 oauth_client_type: How this app authenticates at the OAuth token endpoint.
210212
213+ openapi_path: The URL path to the OpenAPI spec file of the app, such as
214+ '/assets/openapi.json'.
215+
211216 redirect_uris: The whitelisted OAuth callback URLs that users are redirected to after
212217 authorizing the app
213218
214219 required_scopes: The permission scopes the app will request from users when they install it.
215220
221+ skills_path: The URL path to the skills directory of the app, such as '/assets/skills/'.
222+
216223 status: The status of an experience interface
217224
218225 extra_headers: Send extra headers
@@ -239,8 +246,10 @@ def update(
239246 "icon" : icon ,
240247 "name" : name ,
241248 "oauth_client_type" : oauth_client_type ,
249+ "openapi_path" : openapi_path ,
242250 "redirect_uris" : redirect_uris ,
243251 "required_scopes" : required_scopes ,
252+ "skills_path" : skills_path ,
244253 "status" : status ,
245254 },
246255 app_update_params .AppUpdateParams ,
@@ -489,8 +498,10 @@ async def update(
489498 icon : Optional [app_update_params .Icon ] | Omit = omit ,
490499 name : Optional [str ] | Omit = omit ,
491500 oauth_client_type : Optional [Literal ["public" , "confidential" ]] | Omit = omit ,
501+ openapi_path : Optional [str ] | Omit = omit ,
492502 redirect_uris : Optional [SequenceNotStr [str ]] | Omit = omit ,
493503 required_scopes : Optional [List [Literal ["read_user" ]]] | Omit = omit ,
504+ skills_path : Optional [str ] | Omit = omit ,
494505 status : Optional [AppStatuses ] | Omit = omit ,
495506 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
496507 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -531,11 +542,16 @@ async def update(
531542
532543 oauth_client_type: How this app authenticates at the OAuth token endpoint.
533544
545+ openapi_path: The URL path to the OpenAPI spec file of the app, such as
546+ '/assets/openapi.json'.
547+
534548 redirect_uris: The whitelisted OAuth callback URLs that users are redirected to after
535549 authorizing the app
536550
537551 required_scopes: The permission scopes the app will request from users when they install it.
538552
553+ skills_path: The URL path to the skills directory of the app, such as '/assets/skills/'.
554+
539555 status: The status of an experience interface
540556
541557 extra_headers: Send extra headers
@@ -562,8 +578,10 @@ async def update(
562578 "icon" : icon ,
563579 "name" : name ,
564580 "oauth_client_type" : oauth_client_type ,
581+ "openapi_path" : openapi_path ,
565582 "redirect_uris" : redirect_uris ,
566583 "required_scopes" : required_scopes ,
584+ "skills_path" : skills_path ,
567585 "status" : status ,
568586 },
569587 app_update_params .AppUpdateParams ,
0 commit comments