namirasoft-site
Advanced tools
Comparing version 1.4.3 to 1.4.4
import { BaseMetaTable, BaseUUID } from "namirasoft-core"; | ||
import { NSBaseMetaTable_Frontend } from "./NSBaseMetaTable_Frontend"; | ||
import { NSBaseMetaDatabase } from "./NSBaseMetaDatabase"; | ||
export declare abstract class NSBaseMetaTable extends BaseMetaTable { | ||
database: NSBaseMetaDatabase; | ||
uuid: BaseUUID; | ||
constructor(name: string, text: string, uuid: BaseUUID); | ||
front_end: NSBaseMetaTable_Frontend; | ||
constructor(database: NSBaseMetaDatabase, name: string, text: string, uuid: BaseUUID); | ||
} |
@@ -5,6 +5,9 @@ "use strict"; | ||
const namirasoft_core_1 = require("namirasoft-core"); | ||
const NSBaseMetaTable_Frontend_1 = require("./NSBaseMetaTable_Frontend"); | ||
class NSBaseMetaTable extends namirasoft_core_1.BaseMetaTable { | ||
constructor(name, text, uuid) { | ||
super(name, text); | ||
constructor(database, name, text, uuid) { | ||
super(database, name, text); | ||
this.database = database; | ||
this.uuid = uuid; | ||
this.front_end = new NSBaseMetaTable_Frontend_1.NSBaseMetaTable_Frontend(this, name); | ||
} | ||
@@ -11,0 +14,0 @@ } |
@@ -11,3 +11,3 @@ { | ||
"private": false, | ||
"version": "1.4.3", | ||
"version": "1.4.4", | ||
"author": "Amir Abolhasani", | ||
@@ -22,4 +22,4 @@ "license": "MIT", | ||
"axios": "^1.7.9", | ||
"namirasoft-core": "^1.4.19" | ||
"namirasoft-core": "^1.4.21" | ||
} | ||
} |
@@ -0,0 +0,0 @@ export * from "./NSBaseHeader"; |
@@ -0,0 +0,0 @@ export class NSBaseHeader |
@@ -0,0 +0,0 @@ import { BaseMetaDatabase } from "namirasoft-core"; |
import { BaseMetaTable, BaseUUID } from "namirasoft-core"; | ||
import { NSBaseMetaTable_Frontend } from "./NSBaseMetaTable_Frontend"; | ||
import { NSBaseMetaDatabase } from "./NSBaseMetaDatabase"; | ||
export abstract class NSBaseMetaTable extends BaseMetaTable | ||
{ | ||
override database: NSBaseMetaDatabase; | ||
public uuid: BaseUUID; | ||
constructor(name: string, text: string, uuid: BaseUUID) | ||
public front_end: NSBaseMetaTable_Frontend; | ||
constructor(database: NSBaseMetaDatabase, name: string, text: string, uuid: BaseUUID) | ||
{ | ||
super(name, text); | ||
super(database, name, text); | ||
this.database = database; | ||
this.uuid = uuid; | ||
this.front_end = new NSBaseMetaTable_Frontend(this, name); | ||
} | ||
}; |
@@ -0,0 +0,0 @@ import { BaseServer } from "namirasoft-core"; |
@@ -0,0 +0,0 @@ import { NSReqHeader } from "./NSReqHeader"; |
@@ -0,0 +0,0 @@ import { NSBaseHeader } from "./NSBaseHeader"; |
@@ -0,0 +0,0 @@ import { NSBaseHeader } from "./NSBaseHeader"; |
@@ -0,0 +0,0 @@ export class ProductUUID |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
94951
46
548
Updatednamirasoft-core@^1.4.21