@stemy/ngx-utils 19.9.29 → 19.9.31

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.
@@ -3543,7 +3543,7 @@ class BaseHttpService {
3543
3543
  return this.bag.requestParams;
3544
3544
  }
3545
3545
  get withCredentials() {
3546
- return true;
3546
+ return false;
3547
3547
  }
3548
3548
  get universal() {
3549
3549
  return this.storage.universal;
@@ -4849,8 +4849,9 @@ class OpenApiService {
4849
4849
  }
4850
4850
  extractSchemas(res) {
4851
4851
  const schemas = Object.assign({}, res.components?.schemas || res.definitions || {});
4852
- Object.values(schemas).forEach(schema => {
4852
+ Object.entries(schemas).forEach(([name, schema]) => {
4853
4853
  Object.keys(schema.properties || {}).forEach(p => {
4854
+ schema.name = name;
4854
4855
  schema.properties[p].id = p;
4855
4856
  });
4856
4857
  });