orak-util-ts 1.0.11 → 1.1.3

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.
@@ -1 +1 @@
1
- "use strict";var __create=Object.create,__defProp=Object.defineProperty,__getOwnPropDesc=Object.getOwnPropertyDescriptor,__getOwnPropNames=Object.getOwnPropertyNames,__getProtoOf=Object.getPrototypeOf,__hasOwnProp=Object.prototype.hasOwnProperty,__export=(t,e)=>{for(var r in e)__defProp(t,r,{get:e[r],enumerable:!0})},__copyProps=(t,e,r,i)=>{if(e&&"object"==typeof e||"function"==typeof e)for(let s of __getOwnPropNames(e))__hasOwnProp.call(t,s)||s===r||__defProp(t,s,{get:()=>e[s],enumerable:!(i=__getOwnPropDesc(e,s))||i.enumerable});return t},__toESM=(t,e,r)=>(r=null!=t?__create(__getProtoOf(t)):{},__copyProps(!e&&t&&t.__esModule?r:__defProp(r,"default",{value:t,enumerable:!0}),t)),__toCommonJS=t=>__copyProps(__defProp({},"__esModule",{value:!0}),t),src_exports={};__export(src_exports,{Fdr:()=>Fdr,FiApp:()=>FiApp,FiCol:()=>FiCol,FiConnConfig:()=>FiConnConfig,FiEnv:()=>FiEnv,FiFetchClient:()=>FiFetchClient,FiHttpClient:()=>FiHttpClient,FiKeyEntity:()=>FiKeyEntity,FiKeybean:()=>FiKeybean,FiLocalStorage:()=>FiLocalStorage,FiLog:()=>FiLog,FiLogger:()=>FiLogger,FiMeta:()=>FiMeta,FiNumber:()=>FiNumber,FiObject:()=>FiObject,FiQuery:()=>FiQuery,FiQueryUtil:()=>FiQueryUtil,FiQugen:()=>FiQugen,FiString:()=>FiString,FicList:()=>FicList,FimFiCol:()=>FimFiCol,FimFiReq:()=>FimFiReq,FimFiRes:()=>FimFiRes,FkbList:()=>FkbList}),module.exports=__toCommonJS(src_exports);var FiConnConfig=class{},FiQuery=class{},FiQueryUtil=class{},FiQugen=class{},FiNumber=class{static orZero(t){return null==t?0:t}static orMinusOne(t){return null==t?-1:t}},FiString=class{static cropWitDot(t,e){return this.crop(t,e,"..")}static crop(t,e,r=""){return t?t.length>e?t.substring(0,e)+r:t:""}static joinComma(t,e){return t&&0!==t.length?t.map(e).join(", "):""}static orEmpty(t){return null==t?"":t}},FiMeta=class _FiMeta{static create(t){let e=new _FiMeta;return e.fimTxKey=t,e}getTxKeyNtn(){return FiString.orEmpty(this.fimTxKey)}getTxValueNtn(){return FiString.orEmpty(this.fimTxValue)}getLnKeyOrMinusOne(){return FiNumber.orMinusOne(this.fimLnKey)}},FimFiRes=class{static fsBoTknValid(){return FiMeta.create("fsBoTknValid")}static fsBoResult(){return FiMeta.create("fsBoResult")}static fsRefFdr(){return FiMeta.create("fsRefFdr")}static fsRefValue(){return FiMeta.create("fsRefValue")}static fsTxVer(){return FiMeta.create("fsTxVer")}static fsTxMessage(){return FiMeta.create("fsTxMessage")}static fsLnErrorCode(){return FiMeta.create("fsLnErrorCode")}static fsTxToken(){return FiMeta.create("fsTxToken")}},FiObject=class{constructor(t){this.refValue=t||{}}getValueByFiMeta(t){return null==t||null==t||null==t.fimTxKey?null:this.refValue[t.getTxKeyNtn()]}getValueByFkb(t){return null==t||null==t||null==t.getFieldName()?null:this.refValue[t.getFieldName()]}},FimFiReq=class{static frTxProfile(){return FiMeta.create("frTxProfile")}static frTxUser(){return FiMeta.create("frTxUser")}static frTxPass(){return FiMeta.create("frTxPass")}static frTxToken(){return FiMeta.create("frTxToken")}static frFkbParams(){return FiMeta.create("frFkbParams")}static frBoShowDoc(){return FiMeta.create("frBoShowDoc")}static frTxDb(){return FiMeta.create("frTxDb")}},FiApp=class{},FiLogger=class{static debug(t,e,r){r&&r()&&console.log(t)}static error(t,e){}static errorFront(t,e){}},FiEnv=class{},FiKeyEntity=class{constructor(){this.mapData=new Map}fiPut(t,e){return this.mapData.set(t,e),this}fiGet(t){if(null!=t)return this.mapData.get(t)}},FiFetchClient=class{constructor(t,e={}){this.baseUrl=t,this.defaultHeaders=e}async request(t,e={}){const r=`${this.baseUrl}${t}`,i={...this.defaultHeaders,...e.headers||{}};try{const t=await fetch(r,{...e,headers:i});if(!t.ok)throw new Error(`Fetch error: ${t.status} - ${t.statusText}`);return t.headers.get("Content-Type")?.includes("application/json")?await t.json():await t.text()}catch(t){throw console.error("Request failed:",t),t}}async get(t,e){return this.request(t,{method:"GET",headers:e})}async post(t,e,r){return this.request(t,{method:"POST",headers:{"Content-Type":"application/json",...r},body:JSON.stringify(e)})}async put(t,e,r){return this.request(t,{method:"PUT",headers:{"Content-Type":"application/json",...r},body:JSON.stringify(e)})}async delete(t,e){return this.request(t,{method:"DELETE",headers:e})}},import_axios=__toESM(require("axios"),1),FiHttpClient=class{constructor(t,e=1e4,r){const i={"Content-Type":"application/json",...r?.getAsObject()};this.axiosInstance=import_axios.default.create({baseURL:t,timeout:e,headers:i}),this.initializeResponseInterceptor()}getAxiosInstance(){return this.axiosInstance}initializeResponseInterceptor(){this.axiosInstance.interceptors.response.use(this.handleResponse,this.handleError)}handleResponse(t){return Promise.resolve(t)}handleError(t){return console.error("API Hatası:",t),Promise.reject(t)}async get(t,e){return this.axiosInstance.get(t,e)}async post(t,e,r){return this.axiosInstance.post(t,e,r)}async put(t,e,r){return this.axiosInstance.put(t,e,r)}async delete(t,e){return this.axiosInstance.delete(t,e)}},Fdr=class{getLogListNtn(){return null==this.logList&&(this.logList=new Array),this.logList}},FiLog=class{},FiCol=class _FiCol{static bui(t,e){let r=new _FiCol;return r.ofcTxFieldName=t,r.ofcTxHeader=e,r}},FimFiCol=class{static ofcTxDesc(){return FiMeta.create("ofcTxDesc")}static ofcTxPrefix(){return FiMeta.create("ofcTxPrefix")}static ofcTxEntityName(){return FiMeta.create("ofcTxEntityName")}static ofcTxFieldName(){return FiMeta.create("ofcTxFieldName")}static ofcTxFieldType(){return FiMeta.create("ofcTxFieldType")}static ofcTxHeader(){return FiMeta.create("ofcTxHeader")}static ofcTxDbField(){return FiMeta.create("ofcTxDbField")}static ofcTxRefField(){return FiMeta.create("ofcTxRefField")}static ofcLnLength(){return FiMeta.create("ofcLnLength")}static ofcLnPrecision(){return FiMeta.create("ofcLnPrecision")}static ofcLnScale(){return FiMeta.create("ofcLnScale")}static ofcBoNullable(){return FiMeta.create("ofcBoNullable")}static ofcTxIdType(){return FiMeta.create("ofcTxIdType")}static ofcBoTransient(){return FiMeta.create("ofcBoTransient")}static ofcBoUnique(){return FiMeta.create("ofcBoUnique")}static ofcBoUniqGro1(){return FiMeta.create("ofcBoUniqGro1")}static ofcTxDefValue(){return FiMeta.create("ofcTxDefValue")}},FiKeybean=class{constructor(){this.mapData=new Map}fiPut(t,e){return this.mapData.set(t,e),this}fiGetAsStringNtn(t){return null==t?"":this.mapData.has(t)?this.mapData.get(t).toString():""}getAsStringNtn(t){return null==t?"":this.mapData.has(t)?this.mapData.get(t).toString():""}fiGet(t){if(null!=t)return this.mapData.get(t)}getAsObject(){const t={};for(const[e,r]of this.mapData.entries())t[e]=r;return t}addFieldByFiMeta(t,e){this.fiPut(t.getTxKeyNtn(),e)}addFieldByFm(t,e){this.addFieldByFiMeta(t,e)}getFieldName(){return this.fiGetAsStringNtn(FimFiCol.ofcTxFieldName().fimTxKey)}isNumber(){const t=this.fiGetAsStringNtn(FimFiCol.ofcTxFieldType().fimTxKey).toLowerCase();return"number"===t||"float"===t||"double"===t||"int"===t}},FkbList=class{constructor(){this.fkbList=[]}add(t){this.push(t)}push(t){this.fkbList.push(t)}getFkbListInit(){return null!=this.fkbList&&null!=this.fkbList||(this.fkbList=[]),this.fkbList}getArray(){return this.fkbList}},FicList=class{constructor(){this.ficList=[]}add(t){this.push(t)}push(t){this.ficList.push(t)}getFicListInit(){return null==this.ficList&&(this.ficList=[]),this.ficList}getFl(){return this.ficList}},FiLocalStorage=class{static set(t,e){try{const r="string"==typeof e?e:JSON.stringify(e);window.localStorage.setItem(t,r)}catch(t){console.error("FiLocalStorage.set error:",t)}}static get(t){try{const e=window.localStorage.getItem(t);if(null===e)return null;try{return JSON.parse(e)}catch{return e}}catch(t){return console.error("FiLocalStorage.get error:",t),null}}static remove(t){try{window.localStorage.removeItem(t)}catch(t){console.error("FiLocalStorage.remove error:",t)}}static clear(){try{window.localStorage.clear()}catch(t){console.error("FiLocalStorage.clear error:",t)}}static exist(t){try{return null!==window.localStorage.getItem(t)}catch(t){return console.error("FiLocalStorage.exist error:",t),!1}}};
1
+ "use strict";var __create=Object.create,__defProp=Object.defineProperty,__getOwnPropDesc=Object.getOwnPropertyDescriptor,__getOwnPropNames=Object.getOwnPropertyNames,__getProtoOf=Object.getPrototypeOf,__hasOwnProp=Object.prototype.hasOwnProperty,__export=(t,e)=>{for(var r in e)__defProp(t,r,{get:e[r],enumerable:!0})},__copyProps=(t,e,r,i)=>{if(e&&"object"==typeof e||"function"==typeof e)for(let s of __getOwnPropNames(e))__hasOwnProp.call(t,s)||s===r||__defProp(t,s,{get:()=>e[s],enumerable:!(i=__getOwnPropDesc(e,s))||i.enumerable});return t},__toESM=(t,e,r)=>(r=null!=t?__create(__getProtoOf(t)):{},__copyProps(!e&&t&&t.__esModule?r:__defProp(r,"default",{value:t,enumerable:!0}),t)),__toCommonJS=t=>__copyProps(__defProp({},"__esModule",{value:!0}),t),src_exports={};__export(src_exports,{Fdr:()=>Fdr,FiApp:()=>FiApp,FiCol:()=>FiCol,FiConnConfig:()=>FiConnConfig,FiEnv:()=>FiEnv,FiFetchClient:()=>FiFetchClient,FiHttpClient:()=>FiHttpClient,FiKeyEntity:()=>FiKeyEntity,FiKeybean:()=>FiKeybean,FiLocalStorage:()=>FiLocalStorage,FiLog:()=>FiLog,FiLogger:()=>FiLogger,FiMeta:()=>FiMeta,FiNumber:()=>FiNumber,FiObject:()=>FiObject,FiQuery:()=>FiQuery,FiQueryUtil:()=>FiQueryUtil,FiQugen:()=>FiQugen,FiString:()=>FiString,FicList:()=>FicList,FimFiCol:()=>FimFiCol,FimFiReq:()=>FimFiReq,FimFiRes:()=>FimFiRes,FkbList:()=>FkbList}),module.exports=__toCommonJS(src_exports);var FiConnConfig=class{},FiQuery=class{},FiQueryUtil=class{},FiQugen=class{},FiNumber=class{static orZero(t){return null==t?0:t}static orMinusOne(t){return null==t?-1:t}},FiString=class{static cropWitDot(t,e){return this.crop(t,e,"..")}static crop(t,e,r=""){return t?t.length>e?t.substring(0,e)+r:t:""}static joinComma(t,e){return t&&0!==t.length?t.map(e).join(", "):""}static orEmpty(t){return null==t?"":t}},FiMeta=class _FiMeta{static create(t){let e=new _FiMeta;return e.fimTxKey=t,e}getTxKeyNtn(){return FiString.orEmpty(this.fimTxKey)}getTxValueNtn(){return FiString.orEmpty(this.fimTxValue)}getLnKeyOrMinusOne(){return FiNumber.orMinusOne(this.fimLnKey)}},FimFiRes=class{static fsBoTknValid(){return FiMeta.create("fsBoTknValid")}static fsBoResult(){return FiMeta.create("fsBoResult")}static fsRefFdr(){return FiMeta.create("fsRefFdr")}static fsRefValue(){return FiMeta.create("fsRefValue")}static fsTxVer(){return FiMeta.create("fsTxVer")}static fsTxMessage(){return FiMeta.create("fsTxMessage")}static fsLnErrorCode(){return FiMeta.create("fsLnErrorCode")}static fsTxToken(){return FiMeta.create("fsTxToken")}},FiObject=class{constructor(t){this.refValue=t||{}}getValueByFiMeta(t){return null==t||null==t||null==t.fimTxKey?null:this.refValue[t.getTxKeyNtn()]}getValueByFkb(t){return null==t||null==t||null==t.getFieldName()?null:this.refValue[t.getFieldName()]}},FimFiReq=class{static frTxProfile(){return FiMeta.create("frTxProfile")}static frTxUser(){return FiMeta.create("frTxUser")}static frTxPass(){return FiMeta.create("frTxPass")}static frTxToken(){return FiMeta.create("frTxToken")}static frFkbParams(){return FiMeta.create("frFkbParams")}static frBoShowDoc(){return FiMeta.create("frBoShowDoc")}static frTxDb(){return FiMeta.create("frTxDb")}},FiApp=class{},FiLogger=class{static debug(t,e,r){r&&r()&&console.log(t)}static error(t,e){}static errorFront(t,e){}},FiEnv=class{},FiKeyEntity=class{constructor(){this.mapData=new Map}fiPut(t,e){return this.mapData.set(t,e),this}fiGet(t){if(null!=t)return this.mapData.get(t)}},FiFetchClient=class{constructor(t,e={}){this.baseUrl=t,this.defaultHeaders=e}async request(t,e={}){const r=`${this.baseUrl}${t}`,i={...this.defaultHeaders,...e.headers||{}};try{const t=await fetch(r,{...e,headers:i});if(!t.ok)throw new Error(`Fetch error: ${t.status} - ${t.statusText}`);return t.headers.get("Content-Type")?.includes("application/json")?await t.json():await t.text()}catch(t){throw console.error("Request failed:",t),t}}async get(t,e){return this.request(t,{method:"GET",headers:e})}async post(t,e,r){return this.request(t,{method:"POST",headers:{"Content-Type":"application/json",...r},body:JSON.stringify(e)})}async put(t,e,r){return this.request(t,{method:"PUT",headers:{"Content-Type":"application/json",...r},body:JSON.stringify(e)})}async delete(t,e){return this.request(t,{method:"DELETE",headers:e})}},import_axios=__toESM(require("axios"),1),FiHttpClient=class{constructor(t,e=1e4,r){const i={"Content-Type":"application/json",...r?.getAsObject()};this.axiosInstance=import_axios.default.create({baseURL:t,timeout:e,headers:i}),this.initializeResponseInterceptor()}getAxiosInstance(){return this.axiosInstance}initializeResponseInterceptor(){this.axiosInstance.interceptors.response.use(this.handleResponse,this.handleError)}handleResponse(t){return Promise.resolve(t)}handleError(t){return console.error("API Hatası:",t),Promise.reject(t)}async get(t,e){return this.axiosInstance.get(t,e)}async post(t,e,r){return this.axiosInstance.post(t,e,r)}async put(t,e,r){return this.axiosInstance.put(t,e,r)}async delete(t,e){return this.axiosInstance.delete(t,e)}},Fdr=class{getLogListNtn(){return null==this.logList&&(this.logList=new Array),this.logList}},FiLog=class{},FiCol=class _FiCol{static bui(t,e){let r=new _FiCol;return r.fcTxFieldName=t,r.fcTxHeader=e,r}},FimFiCol=class{static fcTxDesc(){return FiMeta.create("fcTxDesc")}static fcTxPrefix(){return FiMeta.create("fcTxPrefix")}static fcTxEntityName(){return FiMeta.create("fcTxEntityName")}static fcTxFieldName(){return FiMeta.create("fcTxFieldName")}static fcTxFieldType(){return FiMeta.create("fcTxFieldType")}static fcTxHeader(){return FiMeta.create("fcTxHeader")}static fcTxDbField(){return FiMeta.create("fcTxDbField")}static fcTxRefField(){return FiMeta.create("fcTxRefField")}static fcLnLength(){return FiMeta.create("fcLnLength")}static fcLnPrecision(){return FiMeta.create("fcLnPrecision")}static fcLnScale(){return FiMeta.create("fcLnScale")}static fcBoNullable(){return FiMeta.create("fcBoNullable")}static fcTxIdType(){return FiMeta.create("fcTxIdType")}static fcBoTransient(){return FiMeta.create("fcBoTransient")}static fcBoUnique(){return FiMeta.create("fcBoUnique")}static fcBoUniqGro1(){return FiMeta.create("fcBoUniqGro1")}static fcTxDefValue(){return FiMeta.create("fcTxDefValue")}},FiKeybean=class{constructor(){this.mapData=new Map}fiPut(t,e){return this.mapData.set(t,e),this}fiGetAsStringNtn(t){return null==t?"":this.mapData.has(t)?this.mapData.get(t).toString():""}getAsStringNtn(t){return null==t?"":this.mapData.has(t)?this.mapData.get(t).toString():""}fiGet(t){if(null!=t)return this.mapData.get(t)}getAsObject(){const t={};for(const[e,r]of this.mapData.entries())t[e]=r;return t}addFieldByFiMeta(t,e){this.fiPut(t.getTxKeyNtn(),e)}addFieldByFm(t,e){this.addFieldByFiMeta(t,e)}getFieldName(){return this.fiGetAsStringNtn(FimFiCol.fcTxFieldName().fimTxKey)}isNumber(){const t=this.fiGetAsStringNtn(FimFiCol.fcTxFieldType().fimTxKey).toLowerCase();return"number"===t||"float"===t||"double"===t||"int"===t}},FkbList=class{constructor(){this.fkbList=[]}add(t){this.push(t)}push(t){this.fkbList.push(t)}getFkbListInit(){return null!=this.fkbList&&null!=this.fkbList||(this.fkbList=[]),this.fkbList}getArray(){return this.fkbList}},FicList=class{constructor(){this.ficList=[]}add(t){this.push(t)}push(t){this.ficList.push(t)}getFicListInit(){return null==this.ficList&&(this.ficList=[]),this.ficList}getFl(){return this.ficList}},FiLocalStorage=class{static set(t,e){try{const r="string"==typeof e?e:JSON.stringify(e);window.localStorage.setItem(t,r)}catch(t){console.error("FiLocalStorage.set error:",t)}}static get(t){try{const e=window.localStorage.getItem(t);if(null===e)return null;try{return JSON.parse(e)}catch{return e}}catch(t){return console.error("FiLocalStorage.get error:",t),null}}static remove(t){try{window.localStorage.removeItem(t)}catch(t){console.error("FiLocalStorage.remove error:",t)}}static clear(){try{window.localStorage.clear()}catch(t){console.error("FiLocalStorage.clear error:",t)}}static exist(t){try{return null!==window.localStorage.getItem(t)}catch(t){return console.error("FiLocalStorage.exist error:",t),!1}}};
@@ -180,23 +180,23 @@ declare class Fdr {
180
180
  }
181
181
 
182
182
  declare class FiCol {
183
- ofcTxFieldName?: string;
184
- ofcTxHeader?: string;
185
- ofcTxDbFieldName?: string;
186
- ofcBoUniqGro1?: boolean;
187
- ofcBoNullable?: boolean;
188
- ofcBoUnique?: boolean;
189
- ofcBoUtfSupport?: boolean;
190
- ofcTxDefValue?: string;
191
- ofcTxCollation?: string;
192
- ofcTxTypeName?: string;
193
- ofcLnLength?: number;
194
- ofcLnPrecision?: number;
195
- ofcLnScale?: number;
196
- ofcBoFilterLike?: boolean;
197
- ofcTxFieldType?: string;
198
- ofcTxEntityName?: string;
199
- oftBoTransient?: boolean;
183
+ fcTxFieldName?: string;
184
+ fcTxHeader?: string;
185
+ fcTxDbFieldName?: string;
186
+ fcBoUniqGro1?: boolean;
187
+ fcBoNullable?: boolean;
188
+ fcBoUnique?: boolean;
189
+ fcBoUtfSupport?: boolean;
190
+ fcTxDefValue?: string;
191
+ fcTxCollation?: string;
192
+ fcTxTypeName?: string;
193
+ fcLnLength?: number;
194
+ fcLnPrecision?: number;
195
+ fcLnScale?: number;
196
+ fcBoFilterLike?: boolean;
197
+ fcTxFieldType?: string;
198
+ fcTxEntityName?: string;
199
+ fcBoTransient?: boolean;
200
200
  txLabel?: string;
201
201
  txGuid?: string;
202
202
  ofiTxIdType?: string;
@@ -286,23 +286,23 @@ declare class FiLocalStorage {
286
286
  }
287
287
 
288
288
  declare class FimFiCol {
289
- static ofcTxDesc(): FiMeta;
290
- static ofcTxPrefix(): FiMeta;
291
- static ofcTxEntityName(): FiMeta;
292
- static ofcTxFieldName(): FiMeta;
293
- static ofcTxFieldType(): FiMeta;
294
- static ofcTxHeader(): FiMeta;
295
- static ofcTxDbField(): FiMeta;
296
- static ofcTxRefField(): FiMeta;
297
- static ofcLnLength(): FiMeta;
298
- static ofcLnPrecision(): FiMeta;
299
- static ofcLnScale(): FiMeta;
300
- static ofcBoNullable(): FiMeta;
301
- static ofcTxIdType(): FiMeta;
302
- static ofcBoTransient(): FiMeta;
303
- static ofcBoUnique(): FiMeta;
304
- static ofcBoUniqGro1(): FiMeta;
305
- static ofcTxDefValue(): FiMeta;
289
+ static fcTxDesc(): FiMeta;
290
+ static fcTxPrefix(): FiMeta;
291
+ static fcTxEntityName(): FiMeta;
292
+ static fcTxFieldName(): FiMeta;
293
+ static fcTxFieldType(): FiMeta;
294
+ static fcTxHeader(): FiMeta;
295
+ static fcTxDbField(): FiMeta;
296
+ static fcTxRefField(): FiMeta;
297
+ static fcLnLength(): FiMeta;
298
+ static fcLnPrecision(): FiMeta;
299
+ static fcLnScale(): FiMeta;
300
+ static fcBoNullable(): FiMeta;
301
+ static fcTxIdType(): FiMeta;
302
+ static fcBoTransient(): FiMeta;
303
+ static fcBoUnique(): FiMeta;
304
+ static fcBoUniqGro1(): FiMeta;
305
+ static fcTxDefValue(): FiMeta;
306
306
  }
307
307
 
308
308
  interface IFiTableFic {
@@ -180,23 +180,23 @@ declare class Fdr {
180
180
  }
181
181
 
182
182
  declare class FiCol {
183
- ofcTxFieldName?: string;
184
- ofcTxHeader?: string;
185
- ofcTxDbFieldName?: string;
186
- ofcBoUniqGro1?: boolean;
187
- ofcBoNullable?: boolean;
188
- ofcBoUnique?: boolean;
189
- ofcBoUtfSupport?: boolean;
190
- ofcTxDefValue?: string;
191
- ofcTxCollation?: string;
192
- ofcTxTypeName?: string;
193
- ofcLnLength?: number;
194
- ofcLnPrecision?: number;
195
- ofcLnScale?: number;
196
- ofcBoFilterLike?: boolean;
197
- ofcTxFieldType?: string;
198
- ofcTxEntityName?: string;
199
- oftBoTransient?: boolean;
183
+ fcTxFieldName?: string;
184
+ fcTxHeader?: string;
185
+ fcTxDbFieldName?: string;
186
+ fcBoUniqGro1?: boolean;
187
+ fcBoNullable?: boolean;
188
+ fcBoUnique?: boolean;
189
+ fcBoUtfSupport?: boolean;
190
+ fcTxDefValue?: string;
191
+ fcTxCollation?: string;
192
+ fcTxTypeName?: string;
193
+ fcLnLength?: number;
194
+ fcLnPrecision?: number;
195
+ fcLnScale?: number;
196
+ fcBoFilterLike?: boolean;
197
+ fcTxFieldType?: string;
198
+ fcTxEntityName?: string;
199
+ fcBoTransient?: boolean;
200
200
  txLabel?: string;
201
201
  txGuid?: string;
202
202
  ofiTxIdType?: string;
@@ -286,23 +286,23 @@ declare class FiLocalStorage {
286
286
  }
287
287
 
288
288
  declare class FimFiCol {
289
- static ofcTxDesc(): FiMeta;
290
- static ofcTxPrefix(): FiMeta;
291
- static ofcTxEntityName(): FiMeta;
292
- static ofcTxFieldName(): FiMeta;
293
- static ofcTxFieldType(): FiMeta;
294
- static ofcTxHeader(): FiMeta;
295
- static ofcTxDbField(): FiMeta;
296
- static ofcTxRefField(): FiMeta;
297
- static ofcLnLength(): FiMeta;
298
- static ofcLnPrecision(): FiMeta;
299
- static ofcLnScale(): FiMeta;
300
- static ofcBoNullable(): FiMeta;
301
- static ofcTxIdType(): FiMeta;
302
- static ofcBoTransient(): FiMeta;
303
- static ofcBoUnique(): FiMeta;
304
- static ofcBoUniqGro1(): FiMeta;
305
- static ofcTxDefValue(): FiMeta;
289
+ static fcTxDesc(): FiMeta;
290
+ static fcTxPrefix(): FiMeta;
291
+ static fcTxEntityName(): FiMeta;
292
+ static fcTxFieldName(): FiMeta;
293
+ static fcTxFieldType(): FiMeta;
294
+ static fcTxHeader(): FiMeta;
295
+ static fcTxDbField(): FiMeta;
296
+ static fcTxRefField(): FiMeta;
297
+ static fcLnLength(): FiMeta;
298
+ static fcLnPrecision(): FiMeta;
299
+ static fcLnScale(): FiMeta;
300
+ static fcBoNullable(): FiMeta;
301
+ static fcTxIdType(): FiMeta;
302
+ static fcBoTransient(): FiMeta;
303
+ static fcBoUnique(): FiMeta;
304
+ static fcBoUniqGro1(): FiMeta;
305
+ static fcTxDefValue(): FiMeta;
306
306
  }
307
307
 
308
308
  interface IFiTableFic {