Client Script SDK, ZDK.Apps.CRM does not return newly created module in the result

Client Script SDK, ZDK.Apps.CRM does not return newly created module in the result

I created a new module "StaticPublicIPs".
The module name is listed in the output when I ran the sample client script.
  1. var modules = ZDK.Apps.CRM.Settings.fetchAllModules();
    for (var i = 0; i < modules.length; i++) {
        log(modules[i].api_name);
    }

However the  result is undefined when the command is executed
  1. log(ZDK.Apps.CRM.StaticPublicIPs) // result is undefined