File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed
wuying-personal-pc-20251111 Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @alicloud/wuying-personal-pc20251111" ,
3- "version" : " 1.0.0 " ,
3+ "version" : " 1.0.1 " ,
44 "description" : " " ,
55 "main" : " dist/client.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -619,6 +619,10 @@ export default class Client extends OpenApi {
619619 async generateWuyingServerSceneUrlWithOptions ( request : $_model . GenerateWuyingServerSceneUrlRequest , runtime : $dara . RuntimeOptions ) : Promise < $_model . GenerateWuyingServerSceneUrlResponse > {
620620 request . validate ( ) ;
621621 let body : { [ key : string ] : any } = { } ;
622+ if ( ! $dara . isNull ( request . apiKey ) ) {
623+ body [ "ApiKey" ] = request . apiKey ;
624+ }
625+
622626 if ( ! $dara . isNull ( request . clientId ) ) {
623627 body [ "ClientId" ] = request . clientId ;
624628 }
Original file line number Diff line number Diff line change @@ -3,17 +3,18 @@ import * as $dara from '@darabonba/typescript';
33
44
55export class GenerateWuyingServerSceneUrlRequest extends $dara . Model {
6+ /**
7+ * @remarks
8+ * This parameter is required.
9+ */
10+ apiKey ?: string ;
611 clientId ?: string ;
712 clientIp ?: string ;
813 clientOS ?: string ;
914 clientType ?: string ;
1015 clientVersion ?: string ;
1116 endUserId ?: string ;
1217 loginRegionId ?: string ;
13- /**
14- * @remarks
15- * This parameter is required.
16- */
1718 loginToken ?: string ;
1819 /**
1920 * @remarks
@@ -25,10 +26,6 @@ export class GenerateWuyingServerSceneUrlRequest extends $dara.Model {
2526 * This parameter is required.
2627 */
2728 scene ?: string ;
28- /**
29- * @remarks
30- * This parameter is required.
31- */
3229 sessionId ?: string ;
3330 uuid ?: string ;
3431 /**
@@ -38,6 +35,7 @@ export class GenerateWuyingServerSceneUrlRequest extends $dara.Model {
3835 wuyingServerId ?: string ;
3936 static names ( ) : { [ key : string ] : string } {
4037 return {
38+ apiKey : 'ApiKey' ,
4139 clientId : 'ClientId' ,
4240 clientIp : 'ClientIp' ,
4341 clientOS : 'ClientOS' ,
@@ -56,6 +54,7 @@ export class GenerateWuyingServerSceneUrlRequest extends $dara.Model {
5654
5755 static types ( ) : { [ key : string ] : any } {
5856 return {
57+ apiKey : 'string' ,
5958 clientId : 'string' ,
6059 clientIp : 'string' ,
6160 clientOS : 'string' ,
You can’t perform that action at this time.
0 commit comments