@accelbyte/codegen 1.0.0-alpha.8 → 1.0.0-alpha.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -279,8 +279,8 @@ class ParserUtils {
279
279
  }
280
280
  let classMethod = httpMethod + "/" + replacedIdsPath;
281
281
  classMethod = _.camelCase(classMethod);
282
- classMethod = classMethod.replace("PublicNamespacesByNamespace", "");
283
- classMethod = classMethod.replace("AdminNamespacesByNamespace", "Admin");
282
+ classMethod = classMethod.replace("PublicNamespacesByNamespace", "Ns");
283
+ classMethod = classMethod.replace("AdminNamespacesByNamespace", "AdminNs");
284
284
  const searchWord = "NamespacesByNamespace";
285
285
  const nsExistInsideMethod = classMethod.indexOf(searchWord) > 0 && classMethod.indexOf(searchWord) + searchWord.length < classMethod.length;
286
286
  const excludedClasses = ["Policies"];