@pax2pay/model-banking 0.1.30 → 0.1.32
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/Client/index.ts +2 -10
- package/Transaction/Incoming.ts +2 -2
- package/Transaction/Reference.ts +8 -0
- package/Transaction/index.ts +3 -1
- package/dist/Client/index.d.ts +2 -8
- package/dist/Client/index.js +2 -10
- package/dist/Client/index.js.map +1 -1
- package/dist/Transaction/Incoming.d.ts +2 -1
- package/dist/Transaction/Incoming.js +0 -1
- package/dist/Transaction/Incoming.js.map +1 -1
- package/dist/Transaction/Reference.d.ts +7 -0
- package/dist/Transaction/Reference.js +2 -0
- package/dist/Transaction/Reference.js.map +1 -0
- package/dist/Transaction/index.d.ts +3 -1
- package/dist/Transaction/index.js.map +1 -1
- package/package.json +2 -2
package/Client/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as gracely from "gracely"
|
|
2
2
|
import * as isoly from "isoly"
|
|
3
|
+
import { userwidgets } from "@userwidgets/model"
|
|
3
4
|
import * as http from "cloudly-http"
|
|
4
5
|
import * as rest from "cloudly-rest"
|
|
5
6
|
import { Accounts } from "./Accounts"
|
|
@@ -23,16 +24,7 @@ export class Client extends rest.Client<gracely.Error> {
|
|
|
23
24
|
realm?: string
|
|
24
25
|
organization?: string
|
|
25
26
|
entityTags: EntityTags = { application: {}, organization: {}, user: {} }
|
|
26
|
-
readonly userwidgets =
|
|
27
|
-
me: new ClientMe(this.client),
|
|
28
|
-
user: new ClientUser(this.client, this.entityTags),
|
|
29
|
-
application: new ClientApplication(this.client, this.entityTags),
|
|
30
|
-
organization: new ClientOrganization(this.client, this.entityTags),
|
|
31
|
-
set onUnauthorized(callback: (client: rest.Client<never>) => Promise<boolean>) {
|
|
32
|
-
this.client.onUnauthorized = callback
|
|
33
|
-
},
|
|
34
|
-
client: this as Client,
|
|
35
|
-
}
|
|
27
|
+
readonly userwidgets = new userwidgets.ClientCollection(this.client, "/widgets")
|
|
36
28
|
readonly accounts = new Accounts(this.client)
|
|
37
29
|
readonly operations = new Operations(this.client)
|
|
38
30
|
readonly organizations = new Organizations(this.client)
|
package/Transaction/Incoming.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import * as isoly from "isoly"
|
|
2
2
|
import { Rail } from "../Rail"
|
|
3
3
|
import { Creatable as TransactionCreatable } from "./Creatable"
|
|
4
|
+
import { Reference as TransactionReference } from "./Reference"
|
|
4
5
|
|
|
5
6
|
export interface Incoming extends TransactionCreatable {
|
|
6
7
|
account: Rail
|
|
7
8
|
counterpart: Rail
|
|
8
9
|
currency: isoly.Currency
|
|
9
10
|
amount: number
|
|
10
|
-
reference?:
|
|
11
|
+
reference?: TransactionReference
|
|
11
12
|
posted: isoly.DateTime
|
|
12
13
|
description: string
|
|
13
14
|
}
|
|
@@ -21,7 +22,6 @@ export namespace Incoming {
|
|
|
21
22
|
Rail.is(value.counterpart) &&
|
|
22
23
|
isoly.Currency.is(value.currency) &&
|
|
23
24
|
typeof value.amount == "number" &&
|
|
24
|
-
(value.reference == "undefined" || typeof value.reference == "string") &&
|
|
25
25
|
isoly.DateTime.is(value.posted) &&
|
|
26
26
|
typeof value.description == "string"
|
|
27
27
|
)
|
package/Transaction/index.ts
CHANGED
|
@@ -5,13 +5,14 @@ import { Rail } from "../Rail"
|
|
|
5
5
|
import { Creatable as TransactionCreatable } from "./Creatable"
|
|
6
6
|
import { Incoming as TransactionIncoming } from "./Incoming"
|
|
7
7
|
import { Note as TransactionNote } from "./Note"
|
|
8
|
+
import { Reference as TransactionReference } from "./Reference"
|
|
8
9
|
|
|
9
10
|
export interface Transaction extends TransactionCreatable {
|
|
10
11
|
organization: string
|
|
11
12
|
accountId: string
|
|
12
13
|
account: Rail
|
|
13
14
|
readonly id: cryptly.Identifier
|
|
14
|
-
readonly reference?:
|
|
15
|
+
readonly reference?: TransactionReference
|
|
15
16
|
readonly posted: isoly.DateTime
|
|
16
17
|
transacted?: isoly.DateTime
|
|
17
18
|
balance: number
|
|
@@ -94,6 +95,7 @@ export namespace Transaction {
|
|
|
94
95
|
export const Creatable = TransactionCreatable
|
|
95
96
|
export type Incoming = TransactionIncoming
|
|
96
97
|
export const Incoming = TransactionIncoming
|
|
98
|
+
export type Reference = TransactionReference
|
|
97
99
|
export type Note = TransactionNote
|
|
98
100
|
export const Note = TransactionNote
|
|
99
101
|
export namespace Note {
|
package/dist/Client/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as gracely from "gracely";
|
|
2
2
|
import * as isoly from "isoly";
|
|
3
|
+
import { userwidgets } from "@userwidgets/model";
|
|
3
4
|
import * as http from "cloudly-http";
|
|
4
5
|
import * as rest from "cloudly-rest";
|
|
5
6
|
import { Accounts } from "./Accounts";
|
|
@@ -21,14 +22,7 @@ export declare class Client extends rest.Client<gracely.Error> {
|
|
|
21
22
|
realm?: string;
|
|
22
23
|
organization?: string;
|
|
23
24
|
entityTags: EntityTags;
|
|
24
|
-
readonly userwidgets:
|
|
25
|
-
me: ClientMe;
|
|
26
|
-
user: ClientUser;
|
|
27
|
-
application: ClientApplication;
|
|
28
|
-
organization: ClientOrganization;
|
|
29
|
-
onUnauthorized: (client: rest.Client<never>) => Promise<boolean>;
|
|
30
|
-
client: Client;
|
|
31
|
-
};
|
|
25
|
+
readonly userwidgets: userwidgets.ClientCollection;
|
|
32
26
|
readonly accounts: Accounts;
|
|
33
27
|
readonly operations: Operations;
|
|
34
28
|
readonly organizations: Organizations;
|
package/dist/Client/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { userwidgets } from "@userwidgets/model";
|
|
1
2
|
import * as http from "cloudly-http";
|
|
2
3
|
import * as rest from "cloudly-rest";
|
|
3
4
|
import { Accounts } from "./Accounts";
|
|
@@ -14,16 +15,7 @@ export class Client extends rest.Client {
|
|
|
14
15
|
constructor() {
|
|
15
16
|
super(...arguments);
|
|
16
17
|
this.entityTags = { application: {}, organization: {}, user: {} };
|
|
17
|
-
this.userwidgets =
|
|
18
|
-
me: new ClientMe(this.client),
|
|
19
|
-
user: new ClientUser(this.client, this.entityTags),
|
|
20
|
-
application: new ClientApplication(this.client, this.entityTags),
|
|
21
|
-
organization: new ClientOrganization(this.client, this.entityTags),
|
|
22
|
-
set onUnauthorized(callback) {
|
|
23
|
-
this.client.onUnauthorized = callback;
|
|
24
|
-
},
|
|
25
|
-
client: this,
|
|
26
|
-
};
|
|
18
|
+
this.userwidgets = new userwidgets.ClientCollection(this.client, "/widgets");
|
|
27
19
|
this.accounts = new Accounts(this.client);
|
|
28
20
|
this.operations = new Operations(this.client);
|
|
29
21
|
this.organizations = new Organizations(this.client);
|
package/dist/Client/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AACpC,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,WAAW,IAAI,iBAAiB,EAAE,MAAM,eAAe,CAAA;AAChE,OAAO,EAAE,EAAE,IAAI,QAAQ,EAAE,MAAM,MAAM,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,YAAY,IAAI,kBAAkB,EAAE,MAAM,gBAAgB,CAAA;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,IAAI,IAAI,UAAU,EAAE,MAAM,QAAQ,CAAA;AAC3C,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAQnC,MAAM,OAAO,MAAO,SAAQ,IAAI,CAAC,MAAqB;IAAtD;;QAGC,eAAU,GAAe,EAAE,WAAW,EAAE,EAAE,EAAE,YAAY,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,CAAA;QAC/D,gBAAW,GAAG
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAA;AAChD,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AACpC,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,WAAW,IAAI,iBAAiB,EAAE,MAAM,eAAe,CAAA;AAChE,OAAO,EAAE,EAAE,IAAI,QAAQ,EAAE,MAAM,MAAM,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,YAAY,IAAI,kBAAkB,EAAE,MAAM,gBAAgB,CAAA;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,IAAI,IAAI,UAAU,EAAE,MAAM,QAAQ,CAAA;AAC3C,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAQnC,MAAM,OAAO,MAAO,SAAQ,IAAI,CAAC,MAAqB;IAAtD;;QAGC,eAAU,GAAe,EAAE,WAAW,EAAE,EAAE,EAAE,YAAY,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,CAAA;QAC/D,gBAAW,GAAG,IAAI,WAAW,CAAC,gBAAgB,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC,CAAA;QACvE,aAAQ,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QACpC,eAAU,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QACxC,kBAAa,GAAG,IAAI,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC9C,iBAAY,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC5C,aAAQ,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QACpC,YAAO,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IAa5C,CAAC;IAXA,MAAM,CAAC,MAAM,CAA0B,MAAc,EAAE,GAAW,EAAE,IAAiC;QACpG,IAAI,UAAsC,CAAA;QAC1C,MAAM,MAAM,GAAW,IAAI,MAAM,CAChC,CAAC,UAAU,GAAG,IAAI,IAAI,CAAC,MAAM,CAAgB,MAAM,EAAE,GAAG,EAAE;YACzD,YAAY,EAAE,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,OAAO,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,KAAK,EAAE,YAAY,EAAE,MAAM,CAAC,YAAY,EAAE,CAAC;SACxG,CAAC,CAAC,CACH,CAAA;QACD,IAAI,IAAI;YACP,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAA;QACxC,OAAO,MAAoB,CAAA;IAC5B,CAAC;CACD;AACD,WAAiB,MAAM;IAET,kBAAW,GAAG,iBAAiB,CAAA;IAE/B,mBAAY,GAAG,kBAAkB,CAAA;IAEjC,SAAE,GAAG,QAAQ,CAAA;IAEb,WAAI,GAAG,UAAU,CAAA;AAE/B,CAAC,EAVgB,MAAM,KAAN,MAAM,QAUtB"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import * as isoly from "isoly";
|
|
2
2
|
import { Rail } from "../Rail";
|
|
3
3
|
import { Creatable as TransactionCreatable } from "./Creatable";
|
|
4
|
+
import { Reference as TransactionReference } from "./Reference";
|
|
4
5
|
export interface Incoming extends TransactionCreatable {
|
|
5
6
|
account: Rail;
|
|
6
7
|
counterpart: Rail;
|
|
7
8
|
currency: isoly.Currency;
|
|
8
9
|
amount: number;
|
|
9
|
-
reference?:
|
|
10
|
+
reference?: TransactionReference;
|
|
10
11
|
posted: isoly.DateTime;
|
|
11
12
|
description: string;
|
|
12
13
|
}
|
|
@@ -9,7 +9,6 @@ export var Incoming;
|
|
|
9
9
|
Rail.is(value.counterpart) &&
|
|
10
10
|
isoly.Currency.is(value.currency) &&
|
|
11
11
|
typeof value.amount == "number" &&
|
|
12
|
-
(value.reference == "undefined" || typeof value.reference == "string") &&
|
|
13
12
|
isoly.DateTime.is(value.posted) &&
|
|
14
13
|
typeof value.description == "string");
|
|
15
14
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Incoming.js","sourceRoot":"../","sources":["Transaction/Incoming.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"Incoming.js","sourceRoot":"../","sources":["Transaction/Incoming.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAc9B,MAAM,KAAW,QAAQ,CAaxB;AAbD,WAAiB,QAAQ;IACxB,SAAgB,EAAE,CAAC,KAAqB;QACvC,OAAO,CACN,KAAK;YACL,OAAO,KAAK,IAAI,QAAQ;YACxB,IAAI,CAAC,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC;YACtB,IAAI,CAAC,EAAE,CAAC,KAAK,CAAC,WAAW,CAAC;YAC1B,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC;YACjC,OAAO,KAAK,CAAC,MAAM,IAAI,QAAQ;YAC/B,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC;YAC/B,OAAO,KAAK,CAAC,WAAW,IAAI,QAAQ,CACpC,CAAA;IACF,CAAC;IAXe,WAAE,KAWjB,CAAA;AACF,CAAC,EAbgB,QAAQ,KAAR,QAAQ,QAaxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Reference.js","sourceRoot":"../","sources":["Transaction/Reference.ts"],"names":[],"mappings":""}
|
|
@@ -5,12 +5,13 @@ import { Rail } from "../Rail";
|
|
|
5
5
|
import { Creatable as TransactionCreatable } from "./Creatable";
|
|
6
6
|
import { Incoming as TransactionIncoming } from "./Incoming";
|
|
7
7
|
import { Note as TransactionNote } from "./Note";
|
|
8
|
+
import { Reference as TransactionReference } from "./Reference";
|
|
8
9
|
export interface Transaction extends TransactionCreatable {
|
|
9
10
|
organization: string;
|
|
10
11
|
accountId: string;
|
|
11
12
|
account: Rail;
|
|
12
13
|
readonly id: cryptly.Identifier;
|
|
13
|
-
readonly reference?:
|
|
14
|
+
readonly reference?: TransactionReference;
|
|
14
15
|
readonly posted: isoly.DateTime;
|
|
15
16
|
transacted?: isoly.DateTime;
|
|
16
17
|
balance: number;
|
|
@@ -32,6 +33,7 @@ export declare namespace Transaction {
|
|
|
32
33
|
const Creatable: typeof TransactionCreatable;
|
|
33
34
|
type Incoming = TransactionIncoming;
|
|
34
35
|
const Incoming: typeof TransactionIncoming;
|
|
36
|
+
type Reference = TransactionReference;
|
|
35
37
|
type Note = TransactionNote;
|
|
36
38
|
const Note: typeof TransactionNote;
|
|
37
39
|
namespace Note {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Transaction/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAA;AAClC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AACxC,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,EAAE,SAAS,IAAI,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAC/D,OAAO,EAAE,QAAQ,IAAI,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAC5D,OAAO,EAAE,IAAI,IAAI,eAAe,EAAE,MAAM,QAAQ,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Transaction/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pax2pay/model-banking",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"description": "Library containing data model types and functions for the Pax2Pay Banking API.",
|
|
5
5
|
"author": "Pax2Pay Ltd",
|
|
6
6
|
"license": "MIT",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"typescript": "^5.0.4"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@userwidgets/model": "^0.2.
|
|
71
|
+
"@userwidgets/model": "^0.2.4",
|
|
72
72
|
"cloudly-http": "^0.1.5",
|
|
73
73
|
"cloudly-rest": "^0.1.2",
|
|
74
74
|
"cryptly": "^3.0.4",
|