@rdyl/node-mysql 0.4.5 → 0.4.6

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/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ## 0.4.5 (2026-01-04)
1
+ ## 0.4.6 (2026-01-07)
2
2
 
3
3
 
4
4
 
package/dist/meta.js CHANGED
@@ -108,6 +108,7 @@ var MysqlDbSchema = /** @class */ (function () {
108
108
  _this[k] = json[k];
109
109
  }
110
110
  });
111
+ return this;
111
112
  };
112
113
  MysqlDbSchema.prototype.$get = function () {
113
114
  return __awaiter(this, void 0, void 0, function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rdyl/node-mysql",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "types/index.d.ts",
package/types/meta.d.ts CHANGED
@@ -17,7 +17,7 @@ export declare class MysqlDbSchema implements MysqlDbBaseType {
17
17
  get $fields(): string[];
18
18
  get $mapFields(): string[];
19
19
  get $toMap(): any;
20
- $formJson(json: Record<string, unknown>): void;
20
+ $formJson(json: Record<string, unknown>): this;
21
21
  $get(): Promise<this | null>;
22
22
  $insert(uniqueKey?: string): Promise<MysqlDbResultStat>;
23
23
  $remove(): Promise<MysqlDbResultStat>;