orak-util-ts 0.0.11 → 0.0.12

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/index.d.mts CHANGED
@@ -92,6 +92,7 @@ declare class FiCol {
92
92
 
93
93
  declare class FiKeybean {
94
94
  mapData: Map<string, any>;
95
+ fiPut(txKey: string, value: any): FiKeybean;
95
96
  constructor();
96
97
  }
97
98
 
package/dist/index.d.ts CHANGED
@@ -92,6 +92,7 @@ declare class FiCol {
92
92
 
93
93
  declare class FiKeybean {
94
94
  mapData: Map<string, any>;
95
+ fiPut(txKey: string, value: any): FiKeybean;
95
96
  constructor();
96
97
  }
97
98
 
package/dist/index.js CHANGED
@@ -210,6 +210,10 @@ var FiCol = class {
210
210
  // src/FiKeybean.ts
211
211
  var FiKeybean = class {
212
212
  mapData = /* @__PURE__ */ new Map();
213
+ fiPut(txKey, value) {
214
+ this.mapData.set(txKey, value);
215
+ return this;
216
+ }
213
217
  constructor() {
214
218
  }
215
219
  };
package/dist/index.mjs CHANGED
@@ -177,6 +177,10 @@ var FiCol = class {
177
177
  // src/FiKeybean.ts
178
178
  var FiKeybean = class {
179
179
  mapData = /* @__PURE__ */ new Map();
180
+ fiPut(txKey, value) {
181
+ this.mapData.set(txKey, value);
182
+ return this;
183
+ }
180
184
  constructor() {
181
185
  }
182
186
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orak-util-ts",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "Orak Software Utility Typescript Library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -12,7 +12,8 @@
12
12
  "build": "tsup",
13
13
  "dev": "tsup --watch",
14
14
  "test": "vitest run",
15
- "test:watch": "vitest"
15
+ "test:watch": "vitest",
16
+ "fpub": "npm publish"
16
17
  },
17
18
  "keywords": [
18
19
  "typescript",