namirasoft-slack-sender 1.4.3 → 1.4.4
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.
|
@@ -13,7 +13,7 @@ const NamirasoftSlackSenderServerSlack_1 = require("./NamirasoftSlackSenderServe
|
|
|
13
13
|
const NamirasoftSlackSenderServerValue_1 = require("./NamirasoftSlackSenderServerValue");
|
|
14
14
|
class NamirasoftSlackSenderServer extends namirasoft_account_1.NSABaseServer {
|
|
15
15
|
constructor(base_url, manager, onError) {
|
|
16
|
-
super(base_url, `1.4.
|
|
16
|
+
super(base_url, `1.4.4`, manager, onError);
|
|
17
17
|
this.healthz = new NamirasoftSlackSenderServerHealthz_1.NamirasoftSlackSenderServerHealthz(this);
|
|
18
18
|
this.value = new NamirasoftSlackSenderServerValue_1.NamirasoftSlackSenderServerValue(this);
|
|
19
19
|
this.provider_category = new NamirasoftSlackSenderServerProviderCategory_1.NamirasoftSlackSenderServerProviderCategory(this);
|
|
@@ -14,7 +14,7 @@ const namirasoft_core_1 = require("namirasoft-core");
|
|
|
14
14
|
const namirasoft_site_1 = require("namirasoft-site");
|
|
15
15
|
class ProviderMetaTable extends namirasoft_site_1.NSBaseMetaTable {
|
|
16
16
|
constructor(database) {
|
|
17
|
-
super(database, "provider", "Provider", new namirasoft_core_1.BaseUUID("
|
|
17
|
+
super(database, "provider", "Provider", new namirasoft_core_1.BaseUUID("slc-snd-pvd"));
|
|
18
18
|
this.columns = {
|
|
19
19
|
id: new namirasoft_core_1.BaseMetaColumn(this, "id", "ID", "String", true),
|
|
20
20
|
user_id: new namirasoft_core_1.BaseMetaColumn(this, "user_id", "User ID", "String", true),
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"framework": "npm",
|
|
9
9
|
"application": "package",
|
|
10
10
|
"private": false,
|
|
11
|
-
"version": "1.4.
|
|
11
|
+
"version": "1.4.4",
|
|
12
12
|
"author": "Amir Abolhasani",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"main": "./dist/index.js",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"build": ""
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"namirasoft-core": "^1.4.
|
|
20
|
+
"namirasoft-core": "^1.4.76",
|
|
21
21
|
"namirasoft-site": "^1.4.38",
|
|
22
22
|
"namirasoft-node-cli": "^1.4.7",
|
|
23
|
-
"namirasoft-account": "^1.4.
|
|
23
|
+
"namirasoft-account": "^1.4.79"
|
|
24
24
|
},
|
|
25
25
|
"bin": {
|
|
26
26
|
"ns-slack-sender": "./dist/command/cli.js"
|
|
@@ -43,7 +43,7 @@ export class NamirasoftSlackSenderServer extends NSABaseServer
|
|
|
43
43
|
sent: NamirasoftSlackSenderServerSent;
|
|
44
44
|
constructor(base_url: string, manager: TokenManager, onError: (error: Error) => void)
|
|
45
45
|
{
|
|
46
|
-
super(base_url, `1.4.
|
|
46
|
+
super(base_url, `1.4.4`, manager, onError);
|
|
47
47
|
this.healthz = new NamirasoftSlackSenderServerHealthz(this);
|
|
48
48
|
this.value = new NamirasoftSlackSenderServerValue(this);
|
|
49
49
|
this.provider_category = new NamirasoftSlackSenderServerProviderCategory(this);
|
|
@@ -46,7 +46,7 @@ export class ProviderMetaTable extends NSBaseMetaTable<NamirasoftSlackSenderServ
|
|
|
46
46
|
}
|
|
47
47
|
constructor(database: NSBaseMetaDatabase<NamirasoftSlackSenderServer>)
|
|
48
48
|
{
|
|
49
|
-
super(database, "provider", "Provider", new BaseUUID("
|
|
49
|
+
super(database, "provider", "Provider", new BaseUUID("slc-snd-pvd"));
|
|
50
50
|
this.columns = {
|
|
51
51
|
id: new BaseMetaColumn(this, "id", "ID", "String", true),
|
|
52
52
|
user_id: new BaseMetaColumn(this, "user_id", "User ID", "String", true),
|