@digione/node-custom-api 0.2.0-alpha4 → 0.2.0-alpha5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/utils/stream.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digione/node-custom-api",
3
- "version": "0.2.0-alpha4",
3
+ "version": "0.2.0-alpha5",
4
4
  "description": "Typescript node digione-api",
5
5
  "author": "Monchai Jirayupong <monchai.j@seven.co.th>",
6
6
  "license": "MIT",
package/utils/stream.js CHANGED
@@ -486,8 +486,8 @@ class StreamUtil {
486
486
  }
487
487
  return Object.assign({ field_slug: i['lang_code'], field_name: `${convert_option ? (0, i18n_1.__)({ phrase: item['field_name'], locale: lang_code }) : item['field_name']} (${i['lang_code']})`, field_type: item['field_type'], field_name_raw: item['field_name'] ? item['field_name'] : "", is_required: item['is_required'] }, include);
488
488
  });
489
- fields.push(Object.assign(Object.assign({}, item), { field_data }));
490
489
  if (item['field_type'] != "stream") {
490
+ fields.push(Object.assign(Object.assign({}, item), { field_data }));
491
491
  continue;
492
492
  }
493
493
  }
@@ -685,7 +685,7 @@ class StreamUtil {
685
685
  if (field_data['choose_stream']) {
686
686
  let stream = yield stream_1.StreamModel.schema(this.ref, "_").findOne({ where: { id: field_data['choose_stream'] }, raw: true, attributes: ['stream_slug', 'stream_namespace'] });
687
687
  if (stream) {
688
- item['stream'] = yield this.findField(stream['stream_slug'], stream['stream_namespace'], { field_only: true, convert_option: true });
688
+ item['stream'] = yield this.findField(stream['stream_slug'], stream['stream_namespace'], { option, lang_code, field_only: true, convert_option: true });
689
689
  }
690
690
  }
691
691
  }