@pax2pay/model-banking 0.1.324 → 0.1.326
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/Card/Preset.ts +2 -0
- package/Client/Audit.ts +10 -0
- package/Client/Logs.ts +19 -4
- package/Client/index.ts +4 -2
- package/dist/Card/Preset.d.ts +3 -3
- package/dist/Card/Preset.js +2 -0
- package/dist/Card/Preset.js.map +1 -1
- package/dist/Client/Audit.d.ts +8 -0
- package/dist/Client/Audit.js +9 -0
- package/dist/Client/Audit.js.map +1 -0
- package/dist/Client/Logs.d.ts +11 -3
- package/dist/Client/Logs.js +12 -3
- package/dist/Client/Logs.js.map +1 -1
- package/dist/Client/index.d.ts +4 -2
- package/dist/Client/index.js +4 -2
- package/dist/Client/index.js.map +1 -1
- package/package.json +1 -1
package/Card/Preset.ts
CHANGED
|
@@ -10,6 +10,7 @@ export namespace Preset {
|
|
|
10
10
|
"test-mc-200",
|
|
11
11
|
"test-ta-mq-200",
|
|
12
12
|
"test-pg-200",
|
|
13
|
+
"test-pg-150",
|
|
13
14
|
"test-ta-pg-200",
|
|
14
15
|
"test-ta-mc-200",
|
|
15
16
|
"test-diners-200",
|
|
@@ -25,5 +26,6 @@ export namespace Preset {
|
|
|
25
26
|
"test-pg-200": "test-paxgiro",
|
|
26
27
|
"test-ta-mc-200": "test-tpl-paxgiro",
|
|
27
28
|
"test-ta-pg-200": "test-tpl-paxgiro",
|
|
29
|
+
"test-pg-150": "test-paxgiro",
|
|
28
30
|
}
|
|
29
31
|
}
|
package/Client/Audit.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { gracely } from "gracely"
|
|
2
|
+
import { http } from "cloudly-http"
|
|
3
|
+
import { Audit as AuditLog } from "../Audit"
|
|
4
|
+
|
|
5
|
+
export class Audit {
|
|
6
|
+
constructor(private readonly client: http.Client) {}
|
|
7
|
+
async list(resource?: AuditLog.Resource): Promise<AuditLog[] | gracely.Error> {
|
|
8
|
+
return this.client.get<AuditLog[]>(`/audit/${resource}`)
|
|
9
|
+
}
|
|
10
|
+
}
|
package/Client/Logs.ts
CHANGED
|
@@ -1,10 +1,25 @@
|
|
|
1
1
|
import { gracely } from "gracely"
|
|
2
|
+
import { isoly } from "isoly"
|
|
2
3
|
import { http } from "cloudly-http"
|
|
3
|
-
import {
|
|
4
|
+
import { Log } from "../Log"
|
|
4
5
|
|
|
5
|
-
export class
|
|
6
|
+
export class Logs {
|
|
6
7
|
constructor(private readonly client: http.Client) {}
|
|
7
|
-
async list(
|
|
8
|
-
|
|
8
|
+
async list(options?: {
|
|
9
|
+
collection?: string
|
|
10
|
+
limit?: number
|
|
11
|
+
cursor?: string
|
|
12
|
+
dateRange?: isoly.DateRange
|
|
13
|
+
}): Promise<(Log[] & { cursor?: string | undefined }) | gracely.Error> {
|
|
14
|
+
const query = Object.entries({
|
|
15
|
+
...(options?.dateRange ?? {}),
|
|
16
|
+
})
|
|
17
|
+
.map(([k, v]) => `${k}=${v}`)
|
|
18
|
+
.join("&")
|
|
19
|
+
const path = options?.collection ? `/log/${options.collection}` : `/log`
|
|
20
|
+
return await this.client.get<Log[] & { cursor?: string | undefined }>(path + (query && "?" + query), {
|
|
21
|
+
...(options?.cursor ? { cursor: options.cursor } : {}),
|
|
22
|
+
...(options?.limit ? { limit: options?.limit.toString() } : {}),
|
|
23
|
+
})
|
|
9
24
|
}
|
|
10
25
|
}
|
package/Client/index.ts
CHANGED
|
@@ -3,10 +3,11 @@ import { userwidgets } from "@userwidgets/model"
|
|
|
3
3
|
import { http } from "cloudly-http"
|
|
4
4
|
import { rest } from "cloudly-rest"
|
|
5
5
|
import { Accounts } from "./Accounts"
|
|
6
|
+
import { Audit } from "./Audit"
|
|
6
7
|
import { Cards } from "./Cards"
|
|
7
8
|
import { Exchanges } from "./Exchanges"
|
|
8
9
|
import { Labels } from "./Labels"
|
|
9
|
-
import {
|
|
10
|
+
import { Logs } from "./Logs"
|
|
10
11
|
import { Operations } from "./Operations"
|
|
11
12
|
import { Organizations } from "./Organizations"
|
|
12
13
|
import { Reports } from "./Reports"
|
|
@@ -25,7 +26,8 @@ export class Client extends rest.Client<gracely.Error> {
|
|
|
25
26
|
readonly exchanges = new Exchanges(this.client)
|
|
26
27
|
readonly organizations = new Organizations(this.client)
|
|
27
28
|
readonly reports = new Reports(this.client)
|
|
28
|
-
readonly
|
|
29
|
+
readonly audits = new Audit(this.client)
|
|
30
|
+
readonly logs = new Logs(this.client)
|
|
29
31
|
readonly rules = new Rules(this.client)
|
|
30
32
|
readonly settlements = new Settlements(this.client)
|
|
31
33
|
readonly transactions = new Transactions(this.client)
|
package/dist/Card/Preset.d.ts
CHANGED
|
@@ -2,9 +2,9 @@ import { isly } from "isly";
|
|
|
2
2
|
import { Stack } from "./Stack";
|
|
3
3
|
export type Preset = typeof Preset.names[number];
|
|
4
4
|
export declare namespace Preset {
|
|
5
|
-
const names: readonly ["p2p-mc-200", "test-mc-200", "test-ta-mq-200", "test-pg-200", "test-ta-pg-200", "test-ta-mc-200", "test-diners-200"];
|
|
6
|
-
const type: isly.Type<"p2p-mc-200" | "test-mc-200" | "test-ta-mq-200" | "test-pg-200" | "test-ta-pg-200" | "test-ta-mc-200" | "test-diners-200">;
|
|
7
|
-
const is: isly.Type.IsFunction<"p2p-mc-200" | "test-mc-200" | "test-ta-mq-200" | "test-pg-200" | "test-ta-pg-200" | "test-ta-mc-200" | "test-diners-200">;
|
|
5
|
+
const names: readonly ["p2p-mc-200", "test-mc-200", "test-ta-mq-200", "test-pg-200", "test-pg-150", "test-ta-pg-200", "test-ta-mc-200", "test-diners-200"];
|
|
6
|
+
const type: isly.Type<"p2p-mc-200" | "test-mc-200" | "test-ta-mq-200" | "test-pg-200" | "test-pg-150" | "test-ta-pg-200" | "test-ta-mc-200" | "test-diners-200">;
|
|
7
|
+
const is: isly.Type.IsFunction<"p2p-mc-200" | "test-mc-200" | "test-ta-mq-200" | "test-pg-200" | "test-pg-150" | "test-ta-pg-200" | "test-ta-mc-200" | "test-diners-200">;
|
|
8
8
|
const flaw: isly.Type.FlawFunction;
|
|
9
9
|
const presets: Record<Preset, Stack>;
|
|
10
10
|
}
|
package/dist/Card/Preset.js
CHANGED
|
@@ -6,6 +6,7 @@ export var Preset;
|
|
|
6
6
|
"test-mc-200",
|
|
7
7
|
"test-ta-mq-200",
|
|
8
8
|
"test-pg-200",
|
|
9
|
+
"test-pg-150",
|
|
9
10
|
"test-ta-pg-200",
|
|
10
11
|
"test-ta-mc-200",
|
|
11
12
|
"test-diners-200",
|
|
@@ -21,6 +22,7 @@ export var Preset;
|
|
|
21
22
|
"test-pg-200": "test-paxgiro",
|
|
22
23
|
"test-ta-mc-200": "test-tpl-paxgiro",
|
|
23
24
|
"test-ta-pg-200": "test-tpl-paxgiro",
|
|
25
|
+
"test-pg-150": "test-paxgiro",
|
|
24
26
|
};
|
|
25
27
|
})(Preset || (Preset = {}));
|
|
26
28
|
//# sourceMappingURL=Preset.js.map
|
package/dist/Card/Preset.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Preset.js","sourceRoot":"../","sources":["Card/Preset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAM3B,MAAM,KAAW,MAAM,
|
|
1
|
+
{"version":3,"file":"Preset.js","sourceRoot":"../","sources":["Card/Preset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAM3B,MAAM,KAAW,MAAM,CAwBtB;AAxBD,WAAiB,MAAM;IACT,YAAK,GAAG;QACpB,YAAY;QACZ,aAAa;QACb,gBAAgB;QAChB,aAAa;QACb,aAAa;QACb,gBAAgB;QAChB,gBAAgB;QAChB,iBAAiB;KACR,CAAA;IACG,WAAI,GAAG,IAAI,CAAC,MAAM,CAAS,OAAA,KAAK,CAAC,CAAA;IACjC,SAAE,GAAG,OAAA,IAAI,CAAC,EAAE,CAAA;IACZ,WAAI,GAAG,OAAA,IAAI,CAAC,IAAI,CAAA;IAChB,cAAO,GAA0B;QAC7C,YAAY,EAAE,mBAAmB;QACjC,iBAAiB,EAAE,mBAAmB;QACtC,aAAa,EAAE,gBAAgB;QAC/B,gBAAgB,EAAE,oBAAoB;QACtC,aAAa,EAAE,cAAc;QAC7B,gBAAgB,EAAE,kBAAkB;QACpC,gBAAgB,EAAE,kBAAkB;QACpC,aAAa,EAAE,cAAc;KAC7B,CAAA;AACF,CAAC,EAxBgB,MAAM,KAAN,MAAM,QAwBtB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { gracely } from "gracely";
|
|
2
|
+
import { http } from "cloudly-http";
|
|
3
|
+
import { Audit as AuditLog } from "../Audit";
|
|
4
|
+
export declare class Audit {
|
|
5
|
+
private readonly client;
|
|
6
|
+
constructor(client: http.Client);
|
|
7
|
+
list(resource?: AuditLog.Resource): Promise<AuditLog[] | gracely.Error>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Audit.js","sourceRoot":"../","sources":["Client/Audit.ts"],"names":[],"mappings":"AAIA,MAAM,OAAO,KAAK;IACjB,YAA6B,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IACpD,KAAK,CAAC,IAAI,CAAC,QAA4B;QACtC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAa,UAAU,QAAQ,EAAE,CAAC,CAAA;IACzD,CAAC;CACD"}
|
package/dist/Client/Logs.d.ts
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
import { gracely } from "gracely";
|
|
2
|
+
import { isoly } from "isoly";
|
|
2
3
|
import { http } from "cloudly-http";
|
|
3
|
-
import {
|
|
4
|
-
export declare class
|
|
4
|
+
import { Log } from "../Log";
|
|
5
|
+
export declare class Logs {
|
|
5
6
|
private readonly client;
|
|
6
7
|
constructor(client: http.Client);
|
|
7
|
-
list(
|
|
8
|
+
list(options?: {
|
|
9
|
+
collection?: string;
|
|
10
|
+
limit?: number;
|
|
11
|
+
cursor?: string;
|
|
12
|
+
dateRange?: isoly.DateRange;
|
|
13
|
+
}): Promise<(Log[] & {
|
|
14
|
+
cursor?: string | undefined;
|
|
15
|
+
}) | gracely.Error>;
|
|
8
16
|
}
|
package/dist/Client/Logs.js
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
|
-
export class
|
|
1
|
+
export class Logs {
|
|
2
2
|
constructor(client) {
|
|
3
3
|
this.client = client;
|
|
4
4
|
}
|
|
5
|
-
async list(
|
|
6
|
-
|
|
5
|
+
async list(options) {
|
|
6
|
+
const query = Object.entries({
|
|
7
|
+
...(options?.dateRange ?? {}),
|
|
8
|
+
})
|
|
9
|
+
.map(([k, v]) => `${k}=${v}`)
|
|
10
|
+
.join("&");
|
|
11
|
+
const path = options?.collection ? `/log/${options.collection}` : `/log`;
|
|
12
|
+
return await this.client.get(path + (query && "?" + query), {
|
|
13
|
+
...(options?.cursor ? { cursor: options.cursor } : {}),
|
|
14
|
+
...(options?.limit ? { limit: options?.limit.toString() } : {}),
|
|
15
|
+
});
|
|
7
16
|
}
|
|
8
17
|
}
|
|
9
18
|
//# sourceMappingURL=Logs.js.map
|
package/dist/Client/Logs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Logs.js","sourceRoot":"../","sources":["Client/Logs.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Logs.js","sourceRoot":"../","sources":["Client/Logs.ts"],"names":[],"mappings":"AAKA,MAAM,OAAO,IAAI;IAChB,YAA6B,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IACpD,KAAK,CAAC,IAAI,CAAC,OAKV;QACA,MAAM,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC;YAC5B,GAAG,CAAC,OAAO,EAAE,SAAS,IAAI,EAAE,CAAC;SAC7B,CAAC;aACA,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;aAC5B,IAAI,CAAC,GAAG,CAAC,CAAA;QACX,MAAM,IAAI,GAAG,OAAO,EAAE,UAAU,CAAC,CAAC,CAAC,QAAQ,OAAO,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC,MAAM,CAAA;QACxE,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,GAAG,CAA0C,IAAI,GAAG,CAAC,KAAK,IAAI,GAAG,GAAG,KAAK,CAAC,EAAE;YACpG,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YACtD,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;SAC/D,CAAC,CAAA;IACH,CAAC;CACD"}
|
package/dist/Client/index.d.ts
CHANGED
|
@@ -3,10 +3,11 @@ import { userwidgets } from "@userwidgets/model";
|
|
|
3
3
|
import { http } from "cloudly-http";
|
|
4
4
|
import { rest } from "cloudly-rest";
|
|
5
5
|
import { Accounts } from "./Accounts";
|
|
6
|
+
import { Audit } from "./Audit";
|
|
6
7
|
import { Cards } from "./Cards";
|
|
7
8
|
import { Exchanges } from "./Exchanges";
|
|
8
9
|
import { Labels } from "./Labels";
|
|
9
|
-
import {
|
|
10
|
+
import { Logs } from "./Logs";
|
|
10
11
|
import { Operations } from "./Operations";
|
|
11
12
|
import { Organizations } from "./Organizations";
|
|
12
13
|
import { Reports } from "./Reports";
|
|
@@ -24,7 +25,8 @@ export declare class Client extends rest.Client<gracely.Error> {
|
|
|
24
25
|
readonly exchanges: Exchanges;
|
|
25
26
|
readonly organizations: Organizations;
|
|
26
27
|
readonly reports: Reports;
|
|
27
|
-
readonly
|
|
28
|
+
readonly audits: Audit;
|
|
29
|
+
readonly logs: Logs;
|
|
28
30
|
readonly rules: Rules;
|
|
29
31
|
readonly settlements: Settlements;
|
|
30
32
|
readonly transactions: Transactions;
|
package/dist/Client/index.js
CHANGED
|
@@ -2,10 +2,11 @@ import { userwidgets } from "@userwidgets/model";
|
|
|
2
2
|
import { http } from "cloudly-http";
|
|
3
3
|
import { rest } from "cloudly-rest";
|
|
4
4
|
import { Accounts } from "./Accounts";
|
|
5
|
+
import { Audit } from "./Audit";
|
|
5
6
|
import { Cards } from "./Cards";
|
|
6
7
|
import { Exchanges } from "./Exchanges";
|
|
7
8
|
import { Labels } from "./Labels";
|
|
8
|
-
import {
|
|
9
|
+
import { Logs } from "./Logs";
|
|
9
10
|
import { Operations } from "./Operations";
|
|
10
11
|
import { Organizations } from "./Organizations";
|
|
11
12
|
import { Reports } from "./Reports";
|
|
@@ -23,7 +24,8 @@ export class Client extends rest.Client {
|
|
|
23
24
|
this.exchanges = new Exchanges(this.client);
|
|
24
25
|
this.organizations = new Organizations(this.client);
|
|
25
26
|
this.reports = new Reports(this.client);
|
|
26
|
-
this.
|
|
27
|
+
this.audits = new Audit(this.client);
|
|
28
|
+
this.logs = new Logs(this.client);
|
|
27
29
|
this.rules = new Rules(this.client);
|
|
28
30
|
this.settlements = new Settlements(this.client);
|
|
29
31
|
this.transactions = new Transactions(this.client);
|
package/dist/Client/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAA;AAChD,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AACnC,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"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"}
|