@@ -106,7 +106,7 @@ export interface DomainRecord {
106106 type : "custom-domain" ;
107107 url : string ;
108108 hostname : string ;
109- computeServiceId : string ;
109+ appId : string ;
110110 status : DomainStatus ;
111111 foundryStatus : string ;
112112 failureReason : string | null ;
@@ -791,7 +791,7 @@ interface RawDomainRecord {
791791 type : "custom-domain" ;
792792 url : string ;
793793 hostname : string ;
794- computeServiceId : string ;
794+ appId : string ;
795795 status : DomainStatus ;
796796 foundryStatus : string ;
797797 failureReason : string | null ;
@@ -926,12 +926,12 @@ async function listComputeServices(
926926
927927async function listComputeServiceDomains (
928928 client : ManagementApiClient ,
929- computeServiceId : string ,
929+ appId : string ,
930930 signal ?: AbortSignal ,
931931) : Promise < DomainRecord [ ] > {
932932 const result = await client . GET ( "/v1/apps/{appId}/domains" , {
933933 params : {
934- path : { appId : computeServiceId } ,
934+ path : { appId : appId } ,
935935 } ,
936936 signal,
937937 } ) ;
@@ -953,7 +953,7 @@ function normalizeDomainRecord(domain: RawDomainRecord): DomainRecord {
953953 type : domain . type ,
954954 url : domain . url ,
955955 hostname : domain . hostname ,
956- computeServiceId : domain . computeServiceId ,
956+ appId : domain . appId ,
957957 status : domain . status ,
958958 foundryStatus : domain . foundryStatus ,
959959 failureReason : domain . failureReason ,
0 commit comments