SugarCRM Mobile SDK Offline (Bulk Load)

We are trying to load the on-demand data of some modules using bulk load in SugarCRM Mobile SDK.  Please see the below code snippet of app.json. It is loading all the data for module 'ProductCategories' but
not loading for 'ProductTemplates'.

{     "defaults": {         "native": {             "android": {                 "packageName": "com.secotools.crm",                 "appDownloadUrl": "",                 "binaryName": "secoToolsCRM"             },             "ios": {                 "bundleId": "com.secotools.crm",                 "appDownloadUrl": "",                 "binaryName": "secoToolsCRM",                 "teamId": ""             }         },         "jsConfig": {             "appName": "secoTools",             "productName": "secoToolsCRM",             "brandName": "secoToolsCRM",             "appBuild": "1",             "appVersion": "0.1.1",             "about": {                 "privacy": "http://secotools.com/mobile_privacy",                 "tos": "http://secotools.com/mobile_tos",                 "support": "support.secotools.com",                 "supportEmail": "support@secotools.com",                 "copyrightText": "Copyright © 2018 secoToolsCRM Inc. All Rights Reserved.",                 "trademarkText": "secoTools and secoToolsCRM are trademarks owned by secoToolsCRM Inc. All other trademarks are the property of their respective owners."             },                            "offline": {                 "storageSize": 1024,                                  "bulkLoad": {                     "initial": {                         "modules": {                                 "ProductTypes": 2,                                 "ProductTemplates": 5,                                 "seco_process": 4                             }                     },                     "complete": {                         "modules": {                                 "ProductTemplates": 9,                                 "Teams": 9,                                 "Accounts": 9,                                 "Contacts": 9,                                 "Employees": 9,                                 "seco_process": 9                             }                     }                 }             }          }     },           "store": {         "native": {             "android": {                 "signingKey": {                     "keystore": "",                     "storepass": "",                     "alias": ""                 }             }         }     } }