export-table-plugin-typescript 1.0.22 → 1.0.23

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.
package/dist/ExportTS.js CHANGED
@@ -233,7 +233,7 @@ export class ${ClassName} {
233
233
 
234
234
  ${(0, export_table_lib_1.foreach)(fields, f => `
235
235
  private _findBy${(0, export_table_lib_1.makeFirstLetterUpper)(f.name)}CacheMap: Map<${f.type}, ${RowClass}> = new Map()
236
- FindConfigBy${(0, export_table_lib_1.makeFirstLetterUpper)(f.name)}(${f.name}: ${f.type}): ${RowClass} | undefined {
236
+ GetConfigBy${(0, export_table_lib_1.makeFirstLetterUpper)(f.name)}(${f.name}: ${f.type}): ${RowClass} | undefined {
237
237
  let cacheMap = this._findBy${(0, export_table_lib_1.makeFirstLetterUpper)(f.name)}CacheMap
238
238
  if (cacheMap.has(${f.name})) {
239
239
  return cacheMap.get(${f.name})
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "export-table-plugin-typescript",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
package/src/ExportTS.ts CHANGED
@@ -197,7 +197,7 @@ export class ${ClassName} {
197
197
 
198
198
  ${foreach(fields, f => `
199
199
  private _findBy${makeFirstLetterUpper(f.name)}CacheMap: Map<${f.type}, ${RowClass}> = new Map()
200
- FindConfigBy${makeFirstLetterUpper(f.name)}(${f.name}: ${f.type}): ${RowClass} | undefined {
200
+ GetConfigBy${makeFirstLetterUpper(f.name)}(${f.name}: ${f.type}): ${RowClass} | undefined {
201
201
  let cacheMap = this._findBy${makeFirstLetterUpper(f.name)}CacheMap
202
202
  if (cacheMap.has(${f.name})) {
203
203
  return cacheMap.get(${f.name})