@ccci/micro-server 1.0.88 → 1.0.89

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.js CHANGED
@@ -119681,7 +119681,7 @@ class BaseModel extends Model {
119681
119681
  }
119682
119682
  static getCommonAssociations() {
119683
119683
  }
119684
- static initialize(fields, tableName, schema) {
119684
+ static initialize(fields, tableName, schema, paranoid = true) {
119685
119685
  this.init({
119686
119686
  ...fields,
119687
119687
  ...this.getCommonAttributes()
@@ -22,6 +22,6 @@ export default class BaseModel extends Model implements IBaseModel {
22
22
  };
23
23
  };
24
24
  static getCommonAssociations(): void;
25
- static initialize(fields: ModelAttributes, tableName: string, schema?: string): void;
25
+ static initialize(fields: ModelAttributes, tableName: string, schema?: string, paranoid?: boolean): void;
26
26
  }
27
27
  //# sourceMappingURL=BaseModel.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ccci/micro-server",
3
- "version": "1.0.88",
3
+ "version": "1.0.89",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",