namirasoft-credential 1.4.29 → 1.4.31
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/NamirasoftCredentialServer.d.ts +6 -0
- package/dist/NamirasoftCredentialServer.js +7 -1
- package/dist/NamirasoftCredentialServer.js.map +1 -1
- package/dist/NamirasoftCredentialServerDatabase.d.ts +15 -0
- package/dist/NamirasoftCredentialServerDatabase.js +49 -0
- package/dist/NamirasoftCredentialServerDatabase.js.map +1 -0
- package/dist/NamirasoftCredentialServerInMemoryStore.d.ts +15 -0
- package/dist/NamirasoftCredentialServerInMemoryStore.js +49 -0
- package/dist/NamirasoftCredentialServerInMemoryStore.js.map +1 -0
- package/dist/NamirasoftCredentialServerMessageBroker.d.ts +15 -0
- package/dist/NamirasoftCredentialServerMessageBroker.js +49 -0
- package/dist/NamirasoftCredentialServerMessageBroker.js.map +1 -0
- package/dist/command/DatabaseCommand.d.ts +4 -0
- package/dist/command/DatabaseCommand.js +19 -0
- package/dist/command/DatabaseCommand.js.map +1 -0
- package/dist/command/DatabaseGetCommand.d.ts +5 -0
- package/dist/command/DatabaseGetCommand.js +38 -0
- package/dist/command/DatabaseGetCommand.js.map +1 -0
- package/dist/command/DatabaseListCommand.d.ts +5 -0
- package/dist/command/DatabaseListCommand.js +38 -0
- package/dist/command/DatabaseListCommand.js.map +1 -0
- package/dist/command/Database_GetForCommand.d.ts +5 -0
- package/dist/command/Database_GetForCommand.js +38 -0
- package/dist/command/Database_GetForCommand.js.map +1 -0
- package/dist/command/GitLabCreateCommand.js +5 -5
- package/dist/command/GitLabCreateCommand.js.map +1 -1
- package/dist/command/GitLabUpdateCommand.js +4 -4
- package/dist/command/GitLabUpdateCommand.js.map +1 -1
- package/dist/command/InMemoryStoreCommand.d.ts +4 -0
- package/dist/command/InMemoryStoreCommand.js +19 -0
- package/dist/command/InMemoryStoreCommand.js.map +1 -0
- package/dist/command/InMemoryStoreGetCommand.d.ts +5 -0
- package/dist/command/InMemoryStoreGetCommand.js +38 -0
- package/dist/command/InMemoryStoreGetCommand.js.map +1 -0
- package/dist/command/InMemoryStoreListCommand.d.ts +5 -0
- package/dist/command/InMemoryStoreListCommand.js +38 -0
- package/dist/command/InMemoryStoreListCommand.js.map +1 -0
- package/dist/command/InMemoryStore_GetForCommand.d.ts +5 -0
- package/dist/command/InMemoryStore_GetForCommand.js +38 -0
- package/dist/command/InMemoryStore_GetForCommand.js.map +1 -0
- package/dist/command/MessageBrokerCommand.d.ts +4 -0
- package/dist/command/MessageBrokerCommand.js +19 -0
- package/dist/command/MessageBrokerCommand.js.map +1 -0
- package/dist/command/MessageBrokerGetCommand.d.ts +5 -0
- package/dist/command/MessageBrokerGetCommand.js +38 -0
- package/dist/command/MessageBrokerGetCommand.js.map +1 -0
- package/dist/command/MessageBrokerListCommand.d.ts +5 -0
- package/dist/command/MessageBrokerListCommand.js +38 -0
- package/dist/command/MessageBrokerListCommand.js.map +1 -0
- package/dist/command/MessageBroker_GetForCommand.d.ts +5 -0
- package/dist/command/MessageBroker_GetForCommand.js +38 -0
- package/dist/command/MessageBroker_GetForCommand.js.map +1 -0
- package/dist/command/cli.js +6 -0
- package/dist/command/cli.js.map +1 -1
- package/dist/enum/DatabaseType.d.ts +4 -0
- package/dist/enum/DatabaseType.js +9 -0
- package/dist/enum/DatabaseType.js.map +1 -0
- package/dist/enum/InMemoryStoreType.d.ts +4 -0
- package/dist/enum/InMemoryStoreType.js +9 -0
- package/dist/enum/InMemoryStoreType.js.map +1 -0
- package/dist/enum/MessageBrokerType.d.ts +4 -0
- package/dist/enum/MessageBrokerType.js +9 -0
- package/dist/enum/MessageBrokerType.js.map +1 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.js +24 -0
- package/dist/index.js.map +1 -1
- package/dist/meta/DatabaseMetaTable.d.ts +34 -0
- package/dist/meta/DatabaseMetaTable.js +59 -0
- package/dist/meta/DatabaseMetaTable.js.map +1 -0
- package/dist/meta/InMemoryStoreMetaTable.d.ts +34 -0
- package/dist/meta/InMemoryStoreMetaTable.js +59 -0
- package/dist/meta/InMemoryStoreMetaTable.js.map +1 -0
- package/dist/meta/MessageBrokerMetaTable.d.ts +34 -0
- package/dist/meta/MessageBrokerMetaTable.js +59 -0
- package/dist/meta/MessageBrokerMetaTable.js.map +1 -0
- package/dist/meta/NamirasoftCredentialMetaDatabase.d.ts +6 -0
- package/dist/meta/NamirasoftCredentialMetaDatabase.js +6 -0
- package/dist/meta/NamirasoftCredentialMetaDatabase.js.map +1 -1
- package/dist/row/DatabaseRow.d.ts +30 -0
- package/dist/row/DatabaseRow.js +3 -0
- package/dist/row/DatabaseRow.js.map +1 -0
- package/dist/row/GitLabCreateRow.d.ts +1 -1
- package/dist/row/GitLabUpdateRow.d.ts +1 -1
- package/dist/row/InMemoryStoreRow.d.ts +30 -0
- package/dist/row/InMemoryStoreRow.js +3 -0
- package/dist/row/InMemoryStoreRow.js.map +1 -0
- package/dist/row/MessageBrokerRow.d.ts +30 -0
- package/dist/row/MessageBrokerRow.js +3 -0
- package/dist/row/MessageBrokerRow.js.map +1 -0
- package/package.json +1 -1
- package/src/NamirasoftCredentialServer.ts +10 -1
- package/src/NamirasoftCredentialServerDatabase.ts +57 -0
- package/src/NamirasoftCredentialServerInMemoryStore.ts +57 -0
- package/src/NamirasoftCredentialServerMessageBroker.ts +57 -0
- package/src/command/DatabaseCommand.ts +36 -0
- package/src/command/DatabaseGetCommand.ts +45 -0
- package/src/command/DatabaseListCommand.ts +45 -0
- package/src/command/Database_GetForCommand.ts +45 -0
- package/src/command/GitLabCreateCommand.ts +5 -5
- package/src/command/GitLabUpdateCommand.ts +4 -4
- package/src/command/InMemoryStoreCommand.ts +36 -0
- package/src/command/InMemoryStoreGetCommand.ts +45 -0
- package/src/command/InMemoryStoreListCommand.ts +45 -0
- package/src/command/InMemoryStore_GetForCommand.ts +45 -0
- package/src/command/MessageBrokerCommand.ts +36 -0
- package/src/command/MessageBrokerGetCommand.ts +45 -0
- package/src/command/MessageBrokerListCommand.ts +45 -0
- package/src/command/MessageBroker_GetForCommand.ts +45 -0
- package/src/command/cli.ts +6 -0
- package/src/enum/DatabaseType.ts +25 -0
- package/src/enum/InMemoryStoreType.ts +25 -0
- package/src/enum/MessageBrokerType.ts +25 -0
- package/src/index.ts +24 -0
- package/src/meta/DatabaseMetaTable.ts +99 -0
- package/src/meta/InMemoryStoreMetaTable.ts +99 -0
- package/src/meta/MessageBrokerMetaTable.ts +99 -0
- package/src/meta/NamirasoftCredentialMetaDatabase.ts +9 -0
- package/src/row/DatabaseRow.ts +52 -0
- package/src/row/GitLabCreateRow.ts +1 -1
- package/src/row/GitLabUpdateRow.ts +1 -1
- package/src/row/InMemoryStoreRow.ts +52 -0
- package/src/row/MessageBrokerRow.ts +52 -0
|
@@ -16,6 +16,7 @@ import { NamirasoftCredentialServerBasicAuthTag } from "./NamirasoftCredentialSe
|
|
|
16
16
|
import { NamirasoftCredentialServerCloud } from "./NamirasoftCredentialServerCloud";
|
|
17
17
|
import { NamirasoftCredentialServerCredential } from "./NamirasoftCredentialServerCredential";
|
|
18
18
|
import { NamirasoftCredentialServerDNS } from "./NamirasoftCredentialServerDNS";
|
|
19
|
+
import { NamirasoftCredentialServerDatabase } from "./NamirasoftCredentialServerDatabase";
|
|
19
20
|
import { NamirasoftCredentialServerGCP } from "./NamirasoftCredentialServerGCP";
|
|
20
21
|
import { NamirasoftCredentialServerGCPCategory } from "./NamirasoftCredentialServerGCPCategory";
|
|
21
22
|
import { NamirasoftCredentialServerGCPField } from "./NamirasoftCredentialServerGCPField";
|
|
@@ -34,10 +35,12 @@ import { NamirasoftCredentialServerHarborField } from "./NamirasoftCredentialSer
|
|
|
34
35
|
import { NamirasoftCredentialServerHarborTag } from "./NamirasoftCredentialServerHarborTag";
|
|
35
36
|
import { NamirasoftCredentialServerHealth } from "./NamirasoftCredentialServerHealth";
|
|
36
37
|
import { NamirasoftCredentialServerHealthz } from "./NamirasoftCredentialServerHealthz";
|
|
38
|
+
import { NamirasoftCredentialServerInMemoryStore } from "./NamirasoftCredentialServerInMemoryStore";
|
|
37
39
|
import { NamirasoftCredentialServerJFrogArtifactory } from "./NamirasoftCredentialServerJFrogArtifactory";
|
|
38
40
|
import { NamirasoftCredentialServerJFrogArtifactoryCategory } from "./NamirasoftCredentialServerJFrogArtifactoryCategory";
|
|
39
41
|
import { NamirasoftCredentialServerJFrogArtifactoryField } from "./NamirasoftCredentialServerJFrogArtifactoryField";
|
|
40
42
|
import { NamirasoftCredentialServerJFrogArtifactoryTag } from "./NamirasoftCredentialServerJFrogArtifactoryTag";
|
|
43
|
+
import { NamirasoftCredentialServerMessageBroker } from "./NamirasoftCredentialServerMessageBroker";
|
|
41
44
|
import { NamirasoftCredentialServerMetrics } from "./NamirasoftCredentialServerMetrics";
|
|
42
45
|
import { NamirasoftCredentialServerRotator } from "./NamirasoftCredentialServerRotator";
|
|
43
46
|
import { NamirasoftCredentialServerRotatorCategory } from "./NamirasoftCredentialServerRotatorCategory";
|
|
@@ -68,7 +71,10 @@ export declare class NamirasoftCredentialServer extends NSABaseServer {
|
|
|
68
71
|
artifact_registry: NamirasoftCredentialServerArtifactRegistry;
|
|
69
72
|
cloud: NamirasoftCredentialServerCloud;
|
|
70
73
|
dns: NamirasoftCredentialServerDNS;
|
|
74
|
+
database: NamirasoftCredentialServerDatabase;
|
|
75
|
+
message_broker: NamirasoftCredentialServerMessageBroker;
|
|
71
76
|
source_control: NamirasoftCredentialServerSourceControl;
|
|
77
|
+
in_memory_store: NamirasoftCredentialServerInMemoryStore;
|
|
72
78
|
aws_category: NamirasoftCredentialServerAWSCategory;
|
|
73
79
|
aws_field: NamirasoftCredentialServerAWSField;
|
|
74
80
|
aws_tag: NamirasoftCredentialServerAWSTag;
|
|
@@ -19,6 +19,7 @@ const NamirasoftCredentialServerBasicAuthTag_1 = require("./NamirasoftCredential
|
|
|
19
19
|
const NamirasoftCredentialServerCloud_1 = require("./NamirasoftCredentialServerCloud");
|
|
20
20
|
const NamirasoftCredentialServerCredential_1 = require("./NamirasoftCredentialServerCredential");
|
|
21
21
|
const NamirasoftCredentialServerDNS_1 = require("./NamirasoftCredentialServerDNS");
|
|
22
|
+
const NamirasoftCredentialServerDatabase_1 = require("./NamirasoftCredentialServerDatabase");
|
|
22
23
|
const NamirasoftCredentialServerGCP_1 = require("./NamirasoftCredentialServerGCP");
|
|
23
24
|
const NamirasoftCredentialServerGCPCategory_1 = require("./NamirasoftCredentialServerGCPCategory");
|
|
24
25
|
const NamirasoftCredentialServerGCPField_1 = require("./NamirasoftCredentialServerGCPField");
|
|
@@ -37,10 +38,12 @@ const NamirasoftCredentialServerHarborField_1 = require("./NamirasoftCredentialS
|
|
|
37
38
|
const NamirasoftCredentialServerHarborTag_1 = require("./NamirasoftCredentialServerHarborTag");
|
|
38
39
|
const NamirasoftCredentialServerHealth_1 = require("./NamirasoftCredentialServerHealth");
|
|
39
40
|
const NamirasoftCredentialServerHealthz_1 = require("./NamirasoftCredentialServerHealthz");
|
|
41
|
+
const NamirasoftCredentialServerInMemoryStore_1 = require("./NamirasoftCredentialServerInMemoryStore");
|
|
40
42
|
const NamirasoftCredentialServerJFrogArtifactory_1 = require("./NamirasoftCredentialServerJFrogArtifactory");
|
|
41
43
|
const NamirasoftCredentialServerJFrogArtifactoryCategory_1 = require("./NamirasoftCredentialServerJFrogArtifactoryCategory");
|
|
42
44
|
const NamirasoftCredentialServerJFrogArtifactoryField_1 = require("./NamirasoftCredentialServerJFrogArtifactoryField");
|
|
43
45
|
const NamirasoftCredentialServerJFrogArtifactoryTag_1 = require("./NamirasoftCredentialServerJFrogArtifactoryTag");
|
|
46
|
+
const NamirasoftCredentialServerMessageBroker_1 = require("./NamirasoftCredentialServerMessageBroker");
|
|
44
47
|
const NamirasoftCredentialServerMetrics_1 = require("./NamirasoftCredentialServerMetrics");
|
|
45
48
|
const NamirasoftCredentialServerRotator_1 = require("./NamirasoftCredentialServerRotator");
|
|
46
49
|
const NamirasoftCredentialServerRotatorCategory_1 = require("./NamirasoftCredentialServerRotatorCategory");
|
|
@@ -62,7 +65,7 @@ const NamirasoftCredentialServerTokenAuthTag_1 = require("./NamirasoftCredential
|
|
|
62
65
|
const NamirasoftCredentialServerValue_1 = require("./NamirasoftCredentialServerValue");
|
|
63
66
|
class NamirasoftCredentialServer extends namirasoft_account_1.NSABaseServer {
|
|
64
67
|
constructor(base_url, token_manager, onError) {
|
|
65
|
-
super(base_url, `1.4.
|
|
68
|
+
super(base_url, `1.4.31`, token_manager, onError);
|
|
66
69
|
this.healthz = new NamirasoftCredentialServerHealthz_1.NamirasoftCredentialServerHealthz(this);
|
|
67
70
|
this.health = new NamirasoftCredentialServerHealth_1.NamirasoftCredentialServerHealth(this);
|
|
68
71
|
this.metrics = new NamirasoftCredentialServerMetrics_1.NamirasoftCredentialServerMetrics(this);
|
|
@@ -72,7 +75,10 @@ class NamirasoftCredentialServer extends namirasoft_account_1.NSABaseServer {
|
|
|
72
75
|
this.artifact_registry = new NamirasoftCredentialServerArtifactRegistry_1.NamirasoftCredentialServerArtifactRegistry(this);
|
|
73
76
|
this.cloud = new NamirasoftCredentialServerCloud_1.NamirasoftCredentialServerCloud(this);
|
|
74
77
|
this.dns = new NamirasoftCredentialServerDNS_1.NamirasoftCredentialServerDNS(this);
|
|
78
|
+
this.database = new NamirasoftCredentialServerDatabase_1.NamirasoftCredentialServerDatabase(this);
|
|
79
|
+
this.message_broker = new NamirasoftCredentialServerMessageBroker_1.NamirasoftCredentialServerMessageBroker(this);
|
|
75
80
|
this.source_control = new NamirasoftCredentialServerSourceControl_1.NamirasoftCredentialServerSourceControl(this);
|
|
81
|
+
this.in_memory_store = new NamirasoftCredentialServerInMemoryStore_1.NamirasoftCredentialServerInMemoryStore(this);
|
|
76
82
|
this.aws_category = new NamirasoftCredentialServerAWSCategory_1.NamirasoftCredentialServerAWSCategory(this);
|
|
77
83
|
this.aws_field = new NamirasoftCredentialServerAWSField_1.NamirasoftCredentialServerAWSField(this);
|
|
78
84
|
this.aws_tag = new NamirasoftCredentialServerAWSTag_1.NamirasoftCredentialServerAWSTag(this);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NamirasoftCredentialServer.js","sourceRoot":"","sources":["../src/NamirasoftCredentialServer.ts"],"names":[],"mappings":";;;AAoBA,2DAAmD;AACnD,mFAAgF;AAChF,mGAAgG;AAChG,6FAA0F;AAC1F,yFAAsF;AACtF,6GAA0G;AAC1G,qFAAkF;AAClF,uFAAoF;AACpF,uGAAoG;AACpG,iGAA8F;AAC9F,6FAA0F;AAC1F,+FAA4F;AAC5F,+GAA4G;AAC5G,yGAAsG;AACtG,qGAAkG;AAClG,uFAAoF;AACpF,iGAA8F;AAC9F,mFAAgF;AAChF,mFAAgF;AAChF,mGAAgG;AAChG,6FAA0F;AAC1F,yFAAsF;AACtF,yFAAsF;AACtF,yGAAsG;AACtG,mGAAgG;AAChG,+FAA4F;AAC5F,yFAAsF;AACtF,yGAAsG;AACtG,mGAAgG;AAChG,+FAA4F;AAC5F,yFAAsF;AACtF,yGAAsG;AACtG,mGAAgG;AAChG,+FAA4F;AAC5F,yFAAsF;AACtF,2FAAwF;AACxF,6GAA0G;AAC1G,6HAA0H;AAC1H,uHAAoH;AACpH,mHAAgH;AAChH,2FAAwF;AACxF,2FAAwF;AACxF,2GAAwG;AACxG,qGAAkG;AAClG,iGAA8F;AAC9F,mFAAgF;AAChF,uGAAoG;AACpG,uHAAoH;AACpH,iHAA8G;AAC9G,6GAA0G;AAC1G,uGAAoG;AACpG,mGAAgG;AAChG,6FAA0F;AAC1F,yFAAsF;AACtF,+FAA4F;AAC5F,+GAA4G;AAC5G,yGAAsG;AACtG,qGAAkG;AAClG,uFAAoF;AAGpF,MAAa,0BAA2B,SAAQ,kCAAa;
|
|
1
|
+
{"version":3,"file":"NamirasoftCredentialServer.js","sourceRoot":"","sources":["../src/NamirasoftCredentialServer.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BaseServerConfig } from "namirasoft-core";
|
|
2
|
+
import { DatabaseRow } from "./row/DatabaseRow";
|
|
3
|
+
import { FilterItem } from "namirasoft-core";
|
|
4
|
+
import { NamirasoftCredentialServer } from "./NamirasoftCredentialServer";
|
|
5
|
+
import { NamirasoftCredentialServerBase } from "./NamirasoftCredentialServerBase";
|
|
6
|
+
import { SortItem } from "namirasoft-core";
|
|
7
|
+
export declare class NamirasoftCredentialServerDatabase extends NamirasoftCredentialServerBase {
|
|
8
|
+
constructor(server: NamirasoftCredentialServer);
|
|
9
|
+
List(filters: FilterItem[] | null, page: (number | null), size: (number | null), sorts: SortItem[], config?: BaseServerConfig<any>): Promise<{
|
|
10
|
+
rows: DatabaseRow[];
|
|
11
|
+
count: number;
|
|
12
|
+
}>;
|
|
13
|
+
_GetFor(user_id: string, id: string, config?: BaseServerConfig<any>): Promise<DatabaseRow>;
|
|
14
|
+
Get(id: string, config?: BaseServerConfig<any>): Promise<DatabaseRow>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.NamirasoftCredentialServerDatabase = void 0;
|
|
13
|
+
const namirasoft_core_1 = require("namirasoft-core");
|
|
14
|
+
const NamirasoftCredentialServerBase_1 = require("./NamirasoftCredentialServerBase");
|
|
15
|
+
const namirasoft_core_2 = require("namirasoft-core");
|
|
16
|
+
class NamirasoftCredentialServerDatabase extends NamirasoftCredentialServerBase_1.NamirasoftCredentialServerBase {
|
|
17
|
+
constructor(server) {
|
|
18
|
+
super(server);
|
|
19
|
+
this.List = this.List.bind(this);
|
|
20
|
+
this._GetFor = this._GetFor.bind(this);
|
|
21
|
+
this.Get = this.Get.bind(this);
|
|
22
|
+
}
|
|
23
|
+
List(filters, page, size, sorts, config) {
|
|
24
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
25
|
+
let filters_string_value = namirasoft_core_1.FilterItem.stringify(filters);
|
|
26
|
+
let sorts_string_value = namirasoft_core_2.SortItem.stringify(sorts);
|
|
27
|
+
let path = `/database/list`;
|
|
28
|
+
let { data } = yield this.server._get(path, { filters: filters_string_value, page, size, sorts: sorts_string_value }, config);
|
|
29
|
+
return data;
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
_GetFor(user_id, id, config) {
|
|
33
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
34
|
+
let path = `/application/user/${user_id}/database/${id}`;
|
|
35
|
+
let { data } = yield this.server._get(path, {}, config);
|
|
36
|
+
return data;
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
Get(id, config) {
|
|
40
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
41
|
+
let path = `/database/${id}`;
|
|
42
|
+
let { data } = yield this.server._get(path, {}, config);
|
|
43
|
+
return data;
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
exports.NamirasoftCredentialServerDatabase = NamirasoftCredentialServerDatabase;
|
|
48
|
+
;
|
|
49
|
+
//# sourceMappingURL=NamirasoftCredentialServerDatabase.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NamirasoftCredentialServerDatabase.js","sourceRoot":"","sources":["../src/NamirasoftCredentialServerDatabase.ts"],"names":[],"mappings":";;;;;;;;;;;;AAsBA,qDAA6C;AAE7C,qFAAkF;AAClF,qDAA2C;AAE3C,MAAa,kCAAmC,SAAQ,+DAA8B;IAElF,YAAY,MAAkC;QAE1C,KAAK,CAAC,MAAM,CAAC,CAAC;QACd,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACjC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACvC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACnC,CAAC;IACK,IAAI,CAAC,OAA4B,EAAE,IAAqB,EAAE,IAAqB,EAAE,KAAiB,EAAE,MAA8B;;YAEpI,IAAI,oBAAoB,GAAW,4BAAU,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;YACjE,IAAI,kBAAkB,GAAW,0BAAQ,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;YAC3D,IAAI,IAAI,GAAG,gBAAgB,CAAC;YAC5B,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAyC,IAAI,EAAE,EAAE,OAAO,EAAE,oBAAoB,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,kBAAkB,EAAE,EAAE,MAAM,CAAC,CAAC;YACtK,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,OAAO,CAAC,OAAe,EAAE,EAAU,EAAE,MAA8B;;YAErE,IAAI,IAAI,GAAG,qBAAqB,OAAO,aAAa,EAAE,EAAE,CAAC;YACzD,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAc,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;YACrE,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,GAAG,CAAC,EAAU,EAAE,MAA8B;;YAEhD,IAAI,IAAI,GAAG,aAAa,EAAE,EAAE,CAAC;YAC7B,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAc,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;YACrE,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;CACJ;AA7BD,gFA6BC;AAAA,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BaseServerConfig } from "namirasoft-core";
|
|
2
|
+
import { FilterItem } from "namirasoft-core";
|
|
3
|
+
import { InMemoryStoreRow } from "./row/InMemoryStoreRow";
|
|
4
|
+
import { NamirasoftCredentialServer } from "./NamirasoftCredentialServer";
|
|
5
|
+
import { NamirasoftCredentialServerBase } from "./NamirasoftCredentialServerBase";
|
|
6
|
+
import { SortItem } from "namirasoft-core";
|
|
7
|
+
export declare class NamirasoftCredentialServerInMemoryStore extends NamirasoftCredentialServerBase {
|
|
8
|
+
constructor(server: NamirasoftCredentialServer);
|
|
9
|
+
List(filters: FilterItem[] | null, page: (number | null), size: (number | null), sorts: SortItem[], config?: BaseServerConfig<any>): Promise<{
|
|
10
|
+
rows: InMemoryStoreRow[];
|
|
11
|
+
count: number;
|
|
12
|
+
}>;
|
|
13
|
+
_GetFor(user_id: string, id: string, config?: BaseServerConfig<any>): Promise<InMemoryStoreRow>;
|
|
14
|
+
Get(id: string, config?: BaseServerConfig<any>): Promise<InMemoryStoreRow>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.NamirasoftCredentialServerInMemoryStore = void 0;
|
|
13
|
+
const namirasoft_core_1 = require("namirasoft-core");
|
|
14
|
+
const NamirasoftCredentialServerBase_1 = require("./NamirasoftCredentialServerBase");
|
|
15
|
+
const namirasoft_core_2 = require("namirasoft-core");
|
|
16
|
+
class NamirasoftCredentialServerInMemoryStore extends NamirasoftCredentialServerBase_1.NamirasoftCredentialServerBase {
|
|
17
|
+
constructor(server) {
|
|
18
|
+
super(server);
|
|
19
|
+
this.List = this.List.bind(this);
|
|
20
|
+
this._GetFor = this._GetFor.bind(this);
|
|
21
|
+
this.Get = this.Get.bind(this);
|
|
22
|
+
}
|
|
23
|
+
List(filters, page, size, sorts, config) {
|
|
24
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
25
|
+
let filters_string_value = namirasoft_core_1.FilterItem.stringify(filters);
|
|
26
|
+
let sorts_string_value = namirasoft_core_2.SortItem.stringify(sorts);
|
|
27
|
+
let path = `/in/memory/store/list`;
|
|
28
|
+
let { data } = yield this.server._get(path, { filters: filters_string_value, page, size, sorts: sorts_string_value }, config);
|
|
29
|
+
return data;
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
_GetFor(user_id, id, config) {
|
|
33
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
34
|
+
let path = `/application/user/${user_id}/in/memory/store/${id}`;
|
|
35
|
+
let { data } = yield this.server._get(path, {}, config);
|
|
36
|
+
return data;
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
Get(id, config) {
|
|
40
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
41
|
+
let path = `/in/memory/store/${id}`;
|
|
42
|
+
let { data } = yield this.server._get(path, {}, config);
|
|
43
|
+
return data;
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
exports.NamirasoftCredentialServerInMemoryStore = NamirasoftCredentialServerInMemoryStore;
|
|
48
|
+
;
|
|
49
|
+
//# sourceMappingURL=NamirasoftCredentialServerInMemoryStore.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NamirasoftCredentialServerInMemoryStore.js","sourceRoot":"","sources":["../src/NamirasoftCredentialServerInMemoryStore.ts"],"names":[],"mappings":";;;;;;;;;;;;AAqBA,qDAA6C;AAG7C,qFAAkF;AAClF,qDAA2C;AAE3C,MAAa,uCAAwC,SAAQ,+DAA8B;IAEvF,YAAY,MAAkC;QAE1C,KAAK,CAAC,MAAM,CAAC,CAAC;QACd,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACjC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACvC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACnC,CAAC;IACK,IAAI,CAAC,OAA4B,EAAE,IAAqB,EAAE,IAAqB,EAAE,KAAiB,EAAE,MAA8B;;YAEpI,IAAI,oBAAoB,GAAW,4BAAU,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;YACjE,IAAI,kBAAkB,GAAW,0BAAQ,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;YAC3D,IAAI,IAAI,GAAG,uBAAuB,CAAC;YACnC,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAA8C,IAAI,EAAE,EAAE,OAAO,EAAE,oBAAoB,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,kBAAkB,EAAE,EAAE,MAAM,CAAC,CAAC;YAC3K,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,OAAO,CAAC,OAAe,EAAE,EAAU,EAAE,MAA8B;;YAErE,IAAI,IAAI,GAAG,qBAAqB,OAAO,oBAAoB,EAAE,EAAE,CAAC;YAChE,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAmB,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;YAC1E,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,GAAG,CAAC,EAAU,EAAE,MAA8B;;YAEhD,IAAI,IAAI,GAAG,oBAAoB,EAAE,EAAE,CAAC;YACpC,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAmB,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;YAC1E,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;CACJ;AA7BD,0FA6BC;AAAA,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BaseServerConfig } from "namirasoft-core";
|
|
2
|
+
import { FilterItem } from "namirasoft-core";
|
|
3
|
+
import { MessageBrokerRow } from "./row/MessageBrokerRow";
|
|
4
|
+
import { NamirasoftCredentialServer } from "./NamirasoftCredentialServer";
|
|
5
|
+
import { NamirasoftCredentialServerBase } from "./NamirasoftCredentialServerBase";
|
|
6
|
+
import { SortItem } from "namirasoft-core";
|
|
7
|
+
export declare class NamirasoftCredentialServerMessageBroker extends NamirasoftCredentialServerBase {
|
|
8
|
+
constructor(server: NamirasoftCredentialServer);
|
|
9
|
+
List(filters: FilterItem[] | null, page: (number | null), size: (number | null), sorts: SortItem[], config?: BaseServerConfig<any>): Promise<{
|
|
10
|
+
rows: MessageBrokerRow[];
|
|
11
|
+
count: number;
|
|
12
|
+
}>;
|
|
13
|
+
_GetFor(user_id: string, id: string, config?: BaseServerConfig<any>): Promise<MessageBrokerRow>;
|
|
14
|
+
Get(id: string, config?: BaseServerConfig<any>): Promise<MessageBrokerRow>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.NamirasoftCredentialServerMessageBroker = void 0;
|
|
13
|
+
const namirasoft_core_1 = require("namirasoft-core");
|
|
14
|
+
const NamirasoftCredentialServerBase_1 = require("./NamirasoftCredentialServerBase");
|
|
15
|
+
const namirasoft_core_2 = require("namirasoft-core");
|
|
16
|
+
class NamirasoftCredentialServerMessageBroker extends NamirasoftCredentialServerBase_1.NamirasoftCredentialServerBase {
|
|
17
|
+
constructor(server) {
|
|
18
|
+
super(server);
|
|
19
|
+
this.List = this.List.bind(this);
|
|
20
|
+
this._GetFor = this._GetFor.bind(this);
|
|
21
|
+
this.Get = this.Get.bind(this);
|
|
22
|
+
}
|
|
23
|
+
List(filters, page, size, sorts, config) {
|
|
24
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
25
|
+
let filters_string_value = namirasoft_core_1.FilterItem.stringify(filters);
|
|
26
|
+
let sorts_string_value = namirasoft_core_2.SortItem.stringify(sorts);
|
|
27
|
+
let path = `/message/broker/list`;
|
|
28
|
+
let { data } = yield this.server._get(path, { filters: filters_string_value, page, size, sorts: sorts_string_value }, config);
|
|
29
|
+
return data;
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
_GetFor(user_id, id, config) {
|
|
33
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
34
|
+
let path = `/application/user/${user_id}/message/broker/${id}`;
|
|
35
|
+
let { data } = yield this.server._get(path, {}, config);
|
|
36
|
+
return data;
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
Get(id, config) {
|
|
40
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
41
|
+
let path = `/message/broker/${id}`;
|
|
42
|
+
let { data } = yield this.server._get(path, {}, config);
|
|
43
|
+
return data;
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
exports.NamirasoftCredentialServerMessageBroker = NamirasoftCredentialServerMessageBroker;
|
|
48
|
+
;
|
|
49
|
+
//# sourceMappingURL=NamirasoftCredentialServerMessageBroker.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NamirasoftCredentialServerMessageBroker.js","sourceRoot":"","sources":["../src/NamirasoftCredentialServerMessageBroker.ts"],"names":[],"mappings":";;;;;;;;;;;;AAqBA,qDAA6C;AAG7C,qFAAkF;AAClF,qDAA2C;AAE3C,MAAa,uCAAwC,SAAQ,+DAA8B;IAEvF,YAAY,MAAkC;QAE1C,KAAK,CAAC,MAAM,CAAC,CAAC;QACd,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACjC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACvC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACnC,CAAC;IACK,IAAI,CAAC,OAA4B,EAAE,IAAqB,EAAE,IAAqB,EAAE,KAAiB,EAAE,MAA8B;;YAEpI,IAAI,oBAAoB,GAAW,4BAAU,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;YACjE,IAAI,kBAAkB,GAAW,0BAAQ,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;YAC3D,IAAI,IAAI,GAAG,sBAAsB,CAAC;YAClC,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAA8C,IAAI,EAAE,EAAE,OAAO,EAAE,oBAAoB,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,kBAAkB,EAAE,EAAE,MAAM,CAAC,CAAC;YAC3K,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,OAAO,CAAC,OAAe,EAAE,EAAU,EAAE,MAA8B;;YAErE,IAAI,IAAI,GAAG,qBAAqB,OAAO,mBAAmB,EAAE,EAAE,CAAC;YAC/D,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAmB,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;YAC1E,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,GAAG,CAAC,EAAU,EAAE,MAA8B;;YAEhD,IAAI,IAAI,GAAG,mBAAmB,EAAE,EAAE,CAAC;YACnC,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAmB,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;YAC1E,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;CACJ;AA7BD,0FA6BC;AAAA,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DatabaseCommand = void 0;
|
|
4
|
+
const namirasoft_node_cli_1 = require("namirasoft-node-cli");
|
|
5
|
+
const DatabaseGetCommand_1 = require("./DatabaseGetCommand");
|
|
6
|
+
const DatabaseListCommand_1 = require("./DatabaseListCommand");
|
|
7
|
+
const Database_GetForCommand_1 = require("./Database_GetForCommand");
|
|
8
|
+
class DatabaseCommand extends namirasoft_node_cli_1.BaseNavigatorCommand {
|
|
9
|
+
constructor(argv) {
|
|
10
|
+
super(argv, {
|
|
11
|
+
"list": DatabaseListCommand_1.DatabaseListCommand,
|
|
12
|
+
"_getfor": Database_GetForCommand_1.Database_GetForCommand,
|
|
13
|
+
"get": DatabaseGetCommand_1.DatabaseGetCommand,
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.DatabaseCommand = DatabaseCommand;
|
|
18
|
+
;
|
|
19
|
+
//# sourceMappingURL=DatabaseCommand.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DatabaseCommand.js","sourceRoot":"","sources":["../../src/command/DatabaseCommand.ts"],"names":[],"mappings":";;;AAoBA,6DAA2D;AAC3D,6DAA0D;AAC1D,+DAA4D;AAC5D,qEAAkE;AAElE,MAAa,eAAgB,SAAQ,0CAAoB;IAErD,YAAY,IAAc;QAEtB,KAAK,CAAC,IAAI,EAAE;YACR,MAAM,EAAE,yCAAmB;YAC3B,SAAS,EAAE,+CAAsB;YACjC,KAAK,EAAE,uCAAkB;SAC5B,CAAC,CAAC;IACP,CAAC;CACJ;AAVD,0CAUC;AAAA,CAAC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.DatabaseGetCommand = void 0;
|
|
13
|
+
const namirasoft_node_cli_1 = require("namirasoft-node-cli");
|
|
14
|
+
const namirasoft_core_1 = require("namirasoft-core");
|
|
15
|
+
const NamirasoftCredentialServer_1 = require("../NamirasoftCredentialServer");
|
|
16
|
+
const namirasoft_account_1 = require("namirasoft-account");
|
|
17
|
+
class DatabaseGetCommand extends namirasoft_node_cli_1.BaseFinalCommand {
|
|
18
|
+
constructor(argv) {
|
|
19
|
+
super(argv, ["id"], []);
|
|
20
|
+
}
|
|
21
|
+
exec() {
|
|
22
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
23
|
+
let token = this.app.storage.getNSAToken();
|
|
24
|
+
if (token == null)
|
|
25
|
+
throw new Error("Token is not available. Please login first using:\nns-credential account config \nor \nns-credential account login.");
|
|
26
|
+
let storage = new namirasoft_core_1.IStorageMemoryDedicated();
|
|
27
|
+
let token_manager = new namirasoft_account_1.TokenManager(storage, () => { });
|
|
28
|
+
token_manager.setValue(token, false);
|
|
29
|
+
let url = this.app.storage.getItem("ns-credential-server-url");
|
|
30
|
+
let server = new NamirasoftCredentialServer_1.NamirasoftCredentialServer(url, token_manager, e => this.app.logger.error(e.message));
|
|
31
|
+
let ans = yield server.database.Get(this.arg_values[0]);
|
|
32
|
+
this.app.logger.success(JSON.stringify(ans));
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DatabaseGetCommand = DatabaseGetCommand;
|
|
37
|
+
;
|
|
38
|
+
//# sourceMappingURL=DatabaseGetCommand.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DatabaseGetCommand.js","sourceRoot":"","sources":["../../src/command/DatabaseGetCommand.ts"],"names":[],"mappings":";;;;;;;;;;;;AAoBA,6DAAuD;AACvD,qDAA0D;AAC1D,8EAA2E;AAC3E,2DAAkD;AAElD,MAAa,kBAAmB,SAAQ,sCAAgB;IAEpD,YAAY,IAAc;QAEtB,KAAK,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC;IAC5B,CAAC;IACc,IAAI;;YAEf,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC;YAC3C,IAAI,KAAK,IAAI,IAAI;gBACb,MAAM,IAAI,KAAK,CAAC,qHAAqH,CAAC,CAAC;YAC3I,IAAI,OAAO,GAAG,IAAI,yCAAuB,EAAE,CAAC;YAC5C,IAAI,aAAa,GAAG,IAAI,iCAAY,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;YACzD,aAAa,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;YACrC,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC;YAC/D,IAAI,MAAM,GAAG,IAAI,uDAA0B,CAAC,GAAG,EAAE,aAAa,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;YACvG,IAAI,GAAG,GAAG,MAAM,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;YACxD,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;QACjD,CAAC;KAAA;CACJ;AAnBD,gDAmBC;AAAA,CAAC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.DatabaseListCommand = void 0;
|
|
13
|
+
const namirasoft_node_cli_1 = require("namirasoft-node-cli");
|
|
14
|
+
const namirasoft_core_1 = require("namirasoft-core");
|
|
15
|
+
const NamirasoftCredentialServer_1 = require("../NamirasoftCredentialServer");
|
|
16
|
+
const namirasoft_account_1 = require("namirasoft-account");
|
|
17
|
+
class DatabaseListCommand extends namirasoft_node_cli_1.BaseFinalCommand {
|
|
18
|
+
constructor(argv) {
|
|
19
|
+
super(argv, ["filters", "page", "size", "sorts"], []);
|
|
20
|
+
}
|
|
21
|
+
exec() {
|
|
22
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
23
|
+
let token = this.app.storage.getNSAToken();
|
|
24
|
+
if (token == null)
|
|
25
|
+
throw new Error("Token is not available. Please login first using:\nns-credential account config \nor \nns-credential account login.");
|
|
26
|
+
let storage = new namirasoft_core_1.IStorageMemoryDedicated();
|
|
27
|
+
let token_manager = new namirasoft_account_1.TokenManager(storage, () => { });
|
|
28
|
+
token_manager.setValue(token, false);
|
|
29
|
+
let url = this.app.storage.getItem("ns-credential-server-url");
|
|
30
|
+
let server = new NamirasoftCredentialServer_1.NamirasoftCredentialServer(url, token_manager, e => this.app.logger.error(e.message));
|
|
31
|
+
let ans = yield server.database.List(this.arg_values[0], this.arg_values[1], this.arg_values[2], this.arg_values[3]);
|
|
32
|
+
this.app.logger.success(JSON.stringify(ans));
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DatabaseListCommand = DatabaseListCommand;
|
|
37
|
+
;
|
|
38
|
+
//# sourceMappingURL=DatabaseListCommand.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DatabaseListCommand.js","sourceRoot":"","sources":["../../src/command/DatabaseListCommand.ts"],"names":[],"mappings":";;;;;;;;;;;;AAoBA,6DAAuD;AACvD,qDAA0D;AAC1D,8EAA2E;AAC3E,2DAAkD;AAElD,MAAa,mBAAoB,SAAQ,sCAAgB;IAErD,YAAY,IAAc;QAEtB,KAAK,CAAC,IAAI,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,EAAE,CAAC,CAAC;IAC1D,CAAC;IACc,IAAI;;YAEf,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC;YAC3C,IAAI,KAAK,IAAI,IAAI;gBACb,MAAM,IAAI,KAAK,CAAC,qHAAqH,CAAC,CAAC;YAC3I,IAAI,OAAO,GAAG,IAAI,yCAAuB,EAAE,CAAC;YAC5C,IAAI,aAAa,GAAG,IAAI,iCAAY,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;YACzD,aAAa,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;YACrC,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC;YAC/D,IAAI,MAAM,GAAG,IAAI,uDAA0B,CAAC,GAAG,EAAE,aAAa,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;YACvG,IAAI,GAAG,GAAG,MAAM,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;YACrH,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;QACjD,CAAC;KAAA;CACJ;AAnBD,kDAmBC;AAAA,CAAC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.Database_GetForCommand = void 0;
|
|
13
|
+
const namirasoft_node_cli_1 = require("namirasoft-node-cli");
|
|
14
|
+
const namirasoft_core_1 = require("namirasoft-core");
|
|
15
|
+
const NamirasoftCredentialServer_1 = require("../NamirasoftCredentialServer");
|
|
16
|
+
const namirasoft_account_1 = require("namirasoft-account");
|
|
17
|
+
class Database_GetForCommand extends namirasoft_node_cli_1.BaseFinalCommand {
|
|
18
|
+
constructor(argv) {
|
|
19
|
+
super(argv, ["user_id", "id"], []);
|
|
20
|
+
}
|
|
21
|
+
exec() {
|
|
22
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
23
|
+
let token = this.app.storage.getNSAToken();
|
|
24
|
+
if (token == null)
|
|
25
|
+
throw new Error("Token is not available. Please login first using:\nns-credential account config \nor \nns-credential account login.");
|
|
26
|
+
let storage = new namirasoft_core_1.IStorageMemoryDedicated();
|
|
27
|
+
let token_manager = new namirasoft_account_1.TokenManager(storage, () => { });
|
|
28
|
+
token_manager.setValue(token, false);
|
|
29
|
+
let url = this.app.storage.getItem("ns-credential-server-url");
|
|
30
|
+
let server = new NamirasoftCredentialServer_1.NamirasoftCredentialServer(url, token_manager, e => this.app.logger.error(e.message));
|
|
31
|
+
let ans = yield server.database._GetFor(this.arg_values[0], this.arg_values[1]);
|
|
32
|
+
this.app.logger.success(JSON.stringify(ans));
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.Database_GetForCommand = Database_GetForCommand;
|
|
37
|
+
;
|
|
38
|
+
//# sourceMappingURL=Database_GetForCommand.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Database_GetForCommand.js","sourceRoot":"","sources":["../../src/command/Database_GetForCommand.ts"],"names":[],"mappings":";;;;;;;;;;;;AAoBA,6DAAuD;AACvD,qDAA0D;AAC1D,8EAA2E;AAC3E,2DAAkD;AAElD,MAAa,sBAAuB,SAAQ,sCAAgB;IAExD,YAAY,IAAc;QAEtB,KAAK,CAAC,IAAI,EAAE,CAAC,SAAS,EAAE,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC;IACvC,CAAC;IACc,IAAI;;YAEf,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC;YAC3C,IAAI,KAAK,IAAI,IAAI;gBACb,MAAM,IAAI,KAAK,CAAC,qHAAqH,CAAC,CAAC;YAC3I,IAAI,OAAO,GAAG,IAAI,yCAAuB,EAAE,CAAC;YAC5C,IAAI,aAAa,GAAG,IAAI,iCAAY,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;YACzD,aAAa,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;YACrC,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC;YAC/D,IAAI,MAAM,GAAG,IAAI,uDAA0B,CAAC,GAAG,EAAE,aAAa,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;YACvG,IAAI,GAAG,GAAG,MAAM,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;YAChF,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;QACjD,CAAC;KAAA;CACJ;AAnBD,wDAmBC;AAAA,CAAC"}
|
|
@@ -42,11 +42,11 @@ class GitLabCreateCommand extends namirasoft_node_cli_1.BaseFinalCommand {
|
|
|
42
42
|
defaults: [""]
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
|
-
name: "
|
|
45
|
+
name: "password_secret_id",
|
|
46
46
|
short: "",
|
|
47
|
-
description: "Provides the value of '
|
|
48
|
-
optional:
|
|
49
|
-
args: ["
|
|
47
|
+
description: "Provides the value of 'password_secret_id' in body",
|
|
48
|
+
optional: true,
|
|
49
|
+
args: ["password_secret_id"],
|
|
50
50
|
defaults: [""]
|
|
51
51
|
},
|
|
52
52
|
{
|
|
@@ -177,7 +177,7 @@ class GitLabCreateCommand extends namirasoft_node_cli_1.BaseFinalCommand {
|
|
|
177
177
|
host: this.option_values.host,
|
|
178
178
|
type: this.option_values.type,
|
|
179
179
|
username: this.option_values.username,
|
|
180
|
-
|
|
180
|
+
password_secret_id: this.option_values.password_secret_id,
|
|
181
181
|
pat_token_secret_id: this.option_values.pat_token_secret_id,
|
|
182
182
|
oauth_client_id_secret_id: this.option_values.oauth_client_id_secret_id,
|
|
183
183
|
oauth_client_secret_secret_id: this.option_values.oauth_client_secret_secret_id,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GitLabCreateCommand.js","sourceRoot":"","sources":["../../src/command/GitLabCreateCommand.ts"],"names":[],"mappings":";;;;;;;;;;;;AAoBA,6DAAuD;AACvD,qDAA0D;AAC1D,8EAA2E;AAC3E,2DAAkD;AAElD,MAAa,mBAAoB,SAAQ,sCAAgB;IAErD,YAAY,IAAc;QAEtB,KAAK,CAAC,IAAI,EAAE,EAAE,EAAE;YACZ;gBACI,IAAI,EAAE,MAAM;gBACZ,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,sCAAsC;gBACnD,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,MAAM,CAAC;gBACd,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,MAAM;gBACZ,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,sCAAsC;gBACnD,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,MAAM,CAAC;gBACd,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,0CAA0C;gBACvD,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,UAAU,CAAC;gBAClB,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"GitLabCreateCommand.js","sourceRoot":"","sources":["../../src/command/GitLabCreateCommand.ts"],"names":[],"mappings":"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"}
|
|
@@ -34,11 +34,11 @@ class GitLabUpdateCommand extends namirasoft_node_cli_1.BaseFinalCommand {
|
|
|
34
34
|
defaults: [""]
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
|
-
name: "
|
|
37
|
+
name: "password_secret_id",
|
|
38
38
|
short: "",
|
|
39
|
-
description: "Provides the value of '
|
|
39
|
+
description: "Provides the value of 'password_secret_id' in body",
|
|
40
40
|
optional: true,
|
|
41
|
-
args: ["
|
|
41
|
+
args: ["password_secret_id"],
|
|
42
42
|
defaults: [""]
|
|
43
43
|
},
|
|
44
44
|
{
|
|
@@ -168,7 +168,7 @@ class GitLabUpdateCommand extends namirasoft_node_cli_1.BaseFinalCommand {
|
|
|
168
168
|
let ans = yield server.git_lab.Update(this.arg_values[0], {
|
|
169
169
|
host: this.option_values.host,
|
|
170
170
|
username: this.option_values.username,
|
|
171
|
-
|
|
171
|
+
password_secret_id: this.option_values.password_secret_id,
|
|
172
172
|
pat_token_secret_id: this.option_values.pat_token_secret_id,
|
|
173
173
|
oauth_client_id_secret_id: this.option_values.oauth_client_id_secret_id,
|
|
174
174
|
oauth_client_secret_secret_id: this.option_values.oauth_client_secret_secret_id,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GitLabUpdateCommand.js","sourceRoot":"","sources":["../../src/command/GitLabUpdateCommand.ts"],"names":[],"mappings":";;;;;;;;;;;;AAoBA,6DAAuD;AACvD,qDAA0D;AAC1D,8EAA2E;AAC3E,2DAAkD;AAElD,MAAa,mBAAoB,SAAQ,sCAAgB;IAErD,YAAY,IAAc;QAEtB,KAAK,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE;YAChB;gBACI,IAAI,EAAE,MAAM;gBACZ,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,sCAAsC;gBACnD,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,MAAM,CAAC;gBACd,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,0CAA0C;gBACvD,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,UAAU,CAAC;gBAClB,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"GitLabUpdateCommand.js","sourceRoot":"","sources":["../../src/command/GitLabUpdateCommand.ts"],"names":[],"mappings":";;;;;;;;;;;;AAoBA,6DAAuD;AACvD,qDAA0D;AAC1D,8EAA2E;AAC3E,2DAAkD;AAElD,MAAa,mBAAoB,SAAQ,sCAAgB;IAErD,YAAY,IAAc;QAEtB,KAAK,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE;YAChB;gBACI,IAAI,EAAE,MAAM;gBACZ,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,sCAAsC;gBACnD,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,MAAM,CAAC;gBACd,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,0CAA0C;gBACvD,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,UAAU,CAAC;gBAClB,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,oBAAoB;gBAC1B,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,oDAAoD;gBACjE,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,oBAAoB,CAAC;gBAC5B,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,qBAAqB;gBAC3B,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,qDAAqD;gBAClE,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,qBAAqB,CAAC;gBAC7B,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,2BAA2B;gBACjC,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,2DAA2D;gBACxE,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,2BAA2B,CAAC;gBACnC,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,+BAA+B;gBACrC,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,+DAA+D;gBAC5E,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,+BAA+B,CAAC;gBACvC,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,+BAA+B;gBACrC,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,+DAA+D;gBAC5E,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,+BAA+B,CAAC;gBACvC,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,8BAA8B;gBACpC,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,8DAA8D;gBAC3E,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,8BAA8B,CAAC;gBACtC,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,yBAAyB;gBAC/B,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,yDAAyD;gBACtE,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,yBAAyB,CAAC;gBACjC,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,0BAA0B;gBAChC,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,0DAA0D;gBACvE,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,0BAA0B,CAAC;gBAClC,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,YAAY;gBAClB,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,4CAA4C;gBACzD,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,YAAY,CAAC;gBACpB,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,cAAc;gBACpB,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,8CAA8C;gBAC3D,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,cAAc,CAAC;gBACtB,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,MAAM;gBACZ,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,sCAAsC;gBACnD,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,MAAM,CAAC;gBACd,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,aAAa;gBACnB,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,6CAA6C;gBAC1D,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE,CAAC,aAAa,CAAC;gBACrB,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,kBAAkB;gBACxB,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,kDAAkD;gBAC/D,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,kBAAkB,CAAC;gBAC1B,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,eAAe;gBACrB,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,+CAA+C;gBAC5D,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,eAAe,CAAC;gBACvB,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;YACD;gBACI,IAAI,EAAE,aAAa;gBACnB,KAAK,EAAE,EAAE;gBACT,WAAW,EAAE,6CAA6C;gBAC1D,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,aAAa,CAAC;gBACrB,QAAQ,EAAE,CAAC,EAAE,CAAC;aACjB;SACA,CAAC,CAAC;IACX,CAAC;IACc,IAAI;;YAEf,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC;YAC3C,IAAI,KAAK,IAAI,IAAI;gBACb,MAAM,IAAI,KAAK,CAAC,qHAAqH,CAAC,CAAC;YAC3I,IAAI,OAAO,GAAG,IAAI,yCAAuB,EAAE,CAAC;YAC5C,IAAI,aAAa,GAAG,IAAI,iCAAY,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;YACzD,aAAa,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;YACrC,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC;YAC/D,IAAI,MAAM,GAAG,IAAI,uDAA0B,CAAC,GAAG,EAAE,aAAa,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;YACvG,IAAI,GAAG,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE;gBACtD,IAAI,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI;gBAC7B,QAAQ,EAAE,IAAI,CAAC,aAAa,CAAC,QAAQ;gBACrC,kBAAkB,EAAE,IAAI,CAAC,aAAa,CAAC,kBAAkB;gBACzD,mBAAmB,EAAE,IAAI,CAAC,aAAa,CAAC,mBAAmB;gBAC3D,yBAAyB,EAAE,IAAI,CAAC,aAAa,CAAC,yBAAyB;gBACvE,6BAA6B,EAAE,IAAI,CAAC,aAAa,CAAC,6BAA6B;gBAC/E,6BAA6B,EAAE,IAAI,CAAC,aAAa,CAAC,6BAA6B;gBAC/E,4BAA4B,EAAE,IAAI,CAAC,aAAa,CAAC,4BAA4B;gBAC7E,uBAAuB,EAAE,IAAI,CAAC,aAAa,CAAC,uBAAuB;gBACnE,wBAAwB,EAAE,IAAI,CAAC,aAAa,CAAC,wBAAwB;gBACrE,UAAU,EAAE,IAAI,CAAC,aAAa,CAAC,UAAU;gBACzC,YAAY,EAAE,IAAI,CAAC,aAAa,CAAC,YAAY;gBAC7C,IAAI,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI;gBAC7B,WAAW,EAAE,IAAI,CAAC,aAAa,CAAC,WAAW;gBAC3C,gBAAgB,EAAE,IAAI,CAAC,aAAa,CAAC,gBAAgB;gBACrD,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,aAAa;gBAC/C,WAAW,EAAE,IAAI,CAAC,aAAa,CAAC,WAAW;aAC9C,CAAC,CAAC;YACH,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;QACjD,CAAC;KAAA;CACJ;AA9KD,kDA8KC;AAAA,CAAC"}
|