SendGrid

 Go to azure 

Search SCCSMTP001


click Open SaaS Account on publisher’s site

settings > sender authentication > click show more.



VPN

 slvpn.ism-egroup.com

uname : s.kod

pw: pc login 



Fastly


https://manage.fastly.com/home

Fastly


https://www.microsoft365.com/apps?auth=2&home=1

heart 1

Sign in to your account



change CloudConfigs FastlyEnableForNewInstallation value to false

update [dbo].[CloudConfigs] set[Value] = 'false' where [key] = 'FastlyEnableForNewInstallation'


restart app

STAGING-WORKER-WEBAPP-PLATFORM-01

cypress typescript Advane

 

convert string to type 

export type InstallationPackage = 'Essential' |'Pro'|'Advanced'|'AdvancedLegacy'

let packageTypeName = packageType as InstallationPackage


export type HostingLevel = 'A - Beta / Test / Acceptance'|'B - Live / Production'

let hostingLevel:HostingLevel = Cypress.env('HostingLiveBeta')
    I.Log(hostingLevel)


simple Key, Value pair array 

//Define a simple Key value pair array
    let aksAddonSettingsValueList :{ Name: string; AksValue: string; }[]
   
    aksAddonSettingsValueList = [
        { Name:"MinBasketCalculationDelay", AksValue:aksDeploymentResponse.env.APP_Basket__MinBasketCalculationDelay},
        { Name:"OfflineModeSupport", AksValue:aksDeploymentResponse.env.APP_OfflineMode__Support},
        { Name:"UploadDesignPacks", AksValue:aksDeploymentResponse.env.APP_Features__UploadDesignPacks},
     


convert response object to Key value by Object entres

const envProperties = Object.entries(aksDeploymentResponse.env);

    // Output env name and value
    envProperties.forEach(([name, value]) => {
         I.Log(`Env Name: ${name}, Value: ${value}`);

         appSettingsData.AppSettings.AppSettings.find(x=>x.ResponseKey)

    });