New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

namirasoft-node-cli

Package Overview
Dependencies
Maintainers
0
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

namirasoft-node-cli - npm Package Compare versions

Comparing version

to
1.4.0

dist/ConfigGetItemCommand.d.ts

7

dist/BaseNavigatorCommand.js

@@ -13,2 +13,3 @@ "use strict";

exports.BaseNavigatorCommand = void 0;
const namirasoft_core_1 = require("namirasoft-core");
const BaseCommand_1 = require("./BaseCommand");

@@ -34,3 +35,7 @@ class BaseNavigatorCommand extends BaseCommand_1.BaseCommand {

let argv = this.argv.slice(1);
let command = new Command(argv);
let command;
if (namirasoft_core_1.ObjectService.isClass(Command))
command = new Command(argv);
else
command = Command(argv);
command.app = this.app;

@@ -37,0 +42,0 @@ command.name = name;

4

dist/BaseStorage.d.ts

@@ -6,3 +6,3 @@ export declare class BaseStorage {

protected set(item: any): void;
getItem(names: string): any | undefined;
getItem(names: string, errorMessage?: string): any | undefined;
setItemByHandler<T>(names: string, handler: (root: any, name: string) => T): T;

@@ -16,6 +16,4 @@ setItem(names: string, value: any | undefined): void;

delCred(name: string): void;
getConfigURL(): string;
setConfigURL(url: string | undefined): void;
getNSAToken(): string;
setNSAToken(token: string | undefined): void;
}

@@ -48,3 +48,3 @@ "use strict";

}
getItem(names) {
getItem(names, errorMessage) {
let toks = names.split('.');

@@ -56,3 +56,6 @@ let ans = this.get();

else
return undefined;
ans = undefined;
if (errorMessage)
if (ans == null)
throw new Error(errorMessage);
return ans;

@@ -98,16 +101,4 @@ }

}
getConfigURL() {
let url = this.getItem("config.url");
if (url == null)
throw new Error(`Config.URL is not available. Please login first using:\nns-{project} config url.`);
return url;
}
setConfigURL(url) {
this.setItem("config.url", url);
}
getNSAToken() {
let token = this.getItem("account.token");
if (token == null)
throw new Error("Token is not available. Please login first using:\nns-{project} account config \nor \nns-{project} account login.");
return token;
return this.getItem("account.token", "Token is not available. Please login first using:\nns-{project} account config \nor \nns-{project} account login.");
}

@@ -114,0 +105,0 @@ setNSAToken(token) {

import { BaseNavigatorCommand } from "./BaseNavigatorCommand";
export declare class ConfigCommand extends BaseNavigatorCommand {
constructor(argv: string[]);
constructor(argv: string[], keys: string[]);
}

@@ -8,6 +8,6 @@ "use strict";

class ConfigCommand extends BaseNavigatorCommand_1.BaseNavigatorCommand {
constructor(argv) {
constructor(argv, keys) {
super(argv, {
"set": ConfigSetCommand_1.ConfigSetCommand,
"get": ConfigGetCommand_1.ConfigGetCommand
"set": () => new ConfigSetCommand_1.ConfigSetCommand(argv, keys),
"get": () => new ConfigGetCommand_1.ConfigGetCommand(argv, keys)
});

@@ -14,0 +14,0 @@ }

import { BaseNavigatorCommand } from "./BaseNavigatorCommand";
export declare class ConfigGetCommand extends BaseNavigatorCommand {
constructor(argv: string[]);
constructor(argv: string[], keys: string[]);
}

@@ -5,8 +5,10 @@ "use strict";

const BaseNavigatorCommand_1 = require("./BaseNavigatorCommand");
const ConfigGetURLCommand_1 = require("./ConfigGetURLCommand");
const ConfigGetItemCommand_1 = require("./ConfigGetItemCommand");
class ConfigGetCommand extends BaseNavigatorCommand_1.BaseNavigatorCommand {
constructor(argv) {
super(argv, {
"url": ConfigGetURLCommand_1.ConfigGetURLCommand
constructor(argv, keys) {
let commnads = {};
keys.forEach(key => {
commnads[key] = () => new ConfigGetItemCommand_1.ConfigGetItemCommand(argv, key);
});
super(argv, commnads);
}

@@ -13,0 +15,0 @@ }

import { BaseNavigatorCommand } from "./BaseNavigatorCommand";
export declare class ConfigSetCommand extends BaseNavigatorCommand {
constructor(argv: string[]);
constructor(argv: string[], keys: string[]);
}

@@ -5,8 +5,10 @@ "use strict";

const BaseNavigatorCommand_1 = require("./BaseNavigatorCommand");
const ConfigSetURLCommand_1 = require("./ConfigSetURLCommand");
const ConfigSetItemCommand_1 = require("./ConfigSetItemCommand");
class ConfigSetCommand extends BaseNavigatorCommand_1.BaseNavigatorCommand {
constructor(argv) {
super(argv, {
"url": ConfigSetURLCommand_1.ConfigSetURLCommand
constructor(argv, keys) {
let commnads = {};
keys.forEach(key => {
commnads[key] = () => new ConfigSetItemCommand_1.ConfigSetItemCommand(argv, key);
});
super(argv, commnads);
}

@@ -13,0 +15,0 @@ }

@@ -9,7 +9,7 @@ export * from "./Application";

export * from "./ConfigGetCommand";
export * from "./ConfigGetURLCommand";
export * from "./ConfigGetItemCommand";
export * from "./ConfigSetCommand";
export * from "./ConfigSetURLCommand";
export * from "./ConfigSetItemCommand";
export * from "./Logger";
export * from "./MainCommand";
export * from "./VersionCommand";

@@ -25,5 +25,5 @@ "use strict";

__exportStar(require("./ConfigGetCommand"), exports);
__exportStar(require("./ConfigGetURLCommand"), exports);
__exportStar(require("./ConfigGetItemCommand"), exports);
__exportStar(require("./ConfigSetCommand"), exports);
__exportStar(require("./ConfigSetURLCommand"), exports);
__exportStar(require("./ConfigSetItemCommand"), exports);
__exportStar(require("./Logger"), exports);

@@ -30,0 +30,0 @@ __exportStar(require("./MainCommand"), exports);

@@ -11,3 +11,3 @@ {

"private": false,
"version": "1.3.9",
"version": "1.4.0",
"author": "Amir Abolhasani",

@@ -21,6 +21,6 @@ "license": "MIT",

"dependencies": {
"@types/node": "^22.0.0",
"axios": "^1.7.2",
"namirasoft-core": "^1.3.80"
"@types/node": "^22.0.2",
"axios": "^1.7.3",
"namirasoft-core": "^1.4.1"
}
}

@@ -0,1 +1,2 @@

import { ObjectService } from "namirasoft-core";
import { BaseCommand } from "./BaseCommand";

@@ -25,3 +26,7 @@

let argv = this.argv.slice(1);
let command = new Command(argv);
let command;
if (ObjectService.isClass(Command))
command = new Command(argv);
else
command = Command(argv);
command.app = this.app;

@@ -28,0 +33,0 @@ command.name = name;

@@ -28,3 +28,3 @@ import * as path from "path";

}
getItem(names: string): any | undefined
getItem(names: string, errorMessage?: string): any | undefined
{

@@ -37,3 +37,6 @@ let toks = names.split('.');

else
return undefined;
ans = undefined;
if (errorMessage)
if (ans == null)
throw new Error(errorMessage);
return ans;

@@ -87,19 +90,7 @@ }

}
getConfigURL(): string
{
let url = this.getItem("config.url");
if (url == null)
throw new Error(`Config.URL is not available. Please login first using:\nns-{project} config url.`);
return url;
}
setConfigURL(url: string | undefined): void
{
this.setItem("config.url", url);
}
getNSAToken(): string
{
let token = this.getItem("account.token");
if (token == null)
throw new Error("Token is not available. Please login first using:\nns-{project} account config \nor \nns-{project} account login.");
return token;
return this.getItem("account.token",
"Token is not available. Please login first using:\nns-{project} account config \nor \nns-{project} account login."
);
}

@@ -106,0 +97,0 @@ setNSAToken(token: string | undefined): void

@@ -7,9 +7,9 @@ import { BaseNavigatorCommand } from "./BaseNavigatorCommand";

{
constructor(argv: string[])
constructor(argv: string[], keys: string[])
{
super(argv, {
"set": ConfigSetCommand,
"get": ConfigGetCommand
"set": () => new ConfigSetCommand(argv, keys),
"get": () => new ConfigGetCommand(argv, keys)
});
}
}
import { BaseNavigatorCommand } from "./BaseNavigatorCommand";
import { ConfigGetURLCommand } from "./ConfigGetURLCommand";
import { ConfigGetItemCommand } from "./ConfigGetItemCommand";
export class ConfigGetCommand extends BaseNavigatorCommand
{
constructor(argv: string[])
constructor(argv: string[], keys: string[])
{
super(argv, {
"url": ConfigGetURLCommand
let commnads: { [key: string]: any } = {};
keys.forEach(key =>
{
commnads[key] = () => new ConfigGetItemCommand(argv, key)
});
super(argv, commnads);
}
}
import { BaseNavigatorCommand } from "./BaseNavigatorCommand";
import { ConfigSetURLCommand } from "./ConfigSetURLCommand";
import { ConfigSetItemCommand } from "./ConfigSetItemCommand";
export class ConfigSetCommand extends BaseNavigatorCommand
{
constructor(argv: string[])
constructor(argv: string[], keys: string[])
{
super(argv, {
"url": ConfigSetURLCommand
let commnads: { [key: string]: any } = {};
keys.forEach(key =>
{
commnads[key] = () => new ConfigSetItemCommand(argv, key)
});
super(argv, commnads);
}
}

@@ -9,7 +9,7 @@ export * from "./Application";

export * from "./ConfigGetCommand";
export * from "./ConfigGetURLCommand";
export * from "./ConfigGetItemCommand";
export * from "./ConfigSetCommand";
export * from "./ConfigSetURLCommand";
export * from "./ConfigSetItemCommand";
export * from "./Logger";
export * from "./MainCommand";
export * from "./VersionCommand";

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet