@pax2pay/model-banking 0.1.247 → 0.1.249
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/Organizations/Groups.ts +15 -0
- package/Client/Organizations/index.ts +3 -0
- package/Settlement/Creatable.ts +2 -2
- package/Settlement/index.ts +3 -11
- package/dist/Client/Organizations/Groups.d.ts +8 -0
- package/dist/Client/Organizations/Groups.js +12 -0
- package/dist/Client/Organizations/Groups.js.map +1 -0
- package/dist/Client/Organizations/index.d.ts +2 -0
- package/dist/Client/Organizations/index.js +2 -0
- package/dist/Client/Organizations/index.js.map +1 -1
- package/dist/Settlement/Creatable.d.ts +1 -1
- package/dist/Settlement/Creatable.js +1 -1
- package/dist/Settlement/Creatable.js.map +1 -1
- package/dist/Settlement/index.d.ts +1 -5
- package/dist/Settlement/index.js +2 -7
- package/dist/Settlement/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { gracely } from "gracely"
|
|
2
|
+
import { http } from "cloudly-http"
|
|
3
|
+
import * as rest from "cloudly-rest"
|
|
4
|
+
import { Organization } from "../../Organization"
|
|
5
|
+
|
|
6
|
+
export class Groups extends rest.Collection<gracely.Error> {
|
|
7
|
+
constructor(client: http.Client) {
|
|
8
|
+
super(client)
|
|
9
|
+
}
|
|
10
|
+
async replace(organization: string, groups: string[]): Promise<Organization | gracely.Error> {
|
|
11
|
+
return this.client.put<Organization>(`/organization/group`, groups, {
|
|
12
|
+
organization,
|
|
13
|
+
})
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -2,10 +2,13 @@ import { gracely } from "gracely"
|
|
|
2
2
|
import { http } from "cloudly-http"
|
|
3
3
|
import * as rest from "cloudly-rest"
|
|
4
4
|
import { Organization } from "../../Organization"
|
|
5
|
+
import { Groups } from "./Groups"
|
|
5
6
|
import { Rules } from "./Rules"
|
|
6
7
|
|
|
7
8
|
export class Organizations extends rest.Collection<gracely.Error> {
|
|
8
9
|
readonly Rules = new Rules(this.client)
|
|
10
|
+
readonly groups = new Groups(this.client)
|
|
11
|
+
|
|
9
12
|
constructor(client: http.Client) {
|
|
10
13
|
super(client)
|
|
11
14
|
}
|
package/Settlement/Creatable.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { Total } from "./Total"
|
|
|
6
6
|
export interface Creatable {
|
|
7
7
|
expected?: Total
|
|
8
8
|
processor: Card.Stack
|
|
9
|
-
|
|
9
|
+
references?: string[] //File name
|
|
10
10
|
batch: Batch
|
|
11
11
|
}
|
|
12
12
|
|
|
@@ -14,7 +14,7 @@ export namespace Creatable {
|
|
|
14
14
|
export const type = isly.object<Creatable>({
|
|
15
15
|
expected: Total.type.optional(),
|
|
16
16
|
processor: Card.Stack.type,
|
|
17
|
-
|
|
17
|
+
references: isly.string().array().optional(),
|
|
18
18
|
batch: Batch.type,
|
|
19
19
|
})
|
|
20
20
|
export const is = type.is
|
package/Settlement/index.ts
CHANGED
|
@@ -10,15 +10,11 @@ import { Settled as SettlementSettled } from "./Settled"
|
|
|
10
10
|
import { Status } from "./Status"
|
|
11
11
|
import { Total as SettlementTotal } from "./Total"
|
|
12
12
|
|
|
13
|
-
export interface Settlement {
|
|
13
|
+
export interface Settlement extends Settlement.Creatable {
|
|
14
14
|
id: string
|
|
15
15
|
by?: string
|
|
16
16
|
created: isoly.DateTime
|
|
17
|
-
reference?: string
|
|
18
|
-
batch: SettlementBatch
|
|
19
|
-
processor: Card.Stack
|
|
20
17
|
status: Status
|
|
21
|
-
expected?: Settlement.Total
|
|
22
18
|
collected?: Settlement.Total
|
|
23
19
|
outcome: Settlement.Total
|
|
24
20
|
settled?: Settlement.Settled
|
|
@@ -103,22 +99,18 @@ export namespace Settlement {
|
|
|
103
99
|
status: { collected: "failed", settled: "failed" }, // ["failed", reason],
|
|
104
100
|
by,
|
|
105
101
|
processor: creatable.processor,
|
|
106
|
-
|
|
102
|
+
references: creatable.references,
|
|
107
103
|
batch: creatable.batch,
|
|
108
104
|
expected: Total.initiate(),
|
|
109
105
|
outcome: Total.initiate(),
|
|
110
106
|
entries: { count: 0 },
|
|
111
107
|
}
|
|
112
108
|
}
|
|
113
|
-
export const type =
|
|
109
|
+
export const type = SettlementCreatable.type.extend<Settlement>({
|
|
114
110
|
id: isly.string(),
|
|
115
111
|
by: isly.string().optional(),
|
|
116
112
|
created: isly.fromIs("isoly.DateTime", isoly.DateTime.is),
|
|
117
|
-
reference: isly.string().optional(),
|
|
118
|
-
processor: Card.Stack.type,
|
|
119
|
-
batch: Batch.type,
|
|
120
113
|
status: Status.type,
|
|
121
|
-
expected: Settlement.Total.type.optional(),
|
|
122
114
|
collected: Settlement.Total.type.optional(),
|
|
123
115
|
outcome: Settlement.Total.type,
|
|
124
116
|
settled: Settled.type.optional(),
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { gracely } from "gracely";
|
|
2
|
+
import { http } from "cloudly-http";
|
|
3
|
+
import * as rest from "cloudly-rest";
|
|
4
|
+
import { Organization } from "../../Organization";
|
|
5
|
+
export declare class Groups extends rest.Collection<gracely.Error> {
|
|
6
|
+
constructor(client: http.Client);
|
|
7
|
+
replace(organization: string, groups: string[]): Promise<Organization | gracely.Error>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as rest from "cloudly-rest";
|
|
2
|
+
export class Groups extends rest.Collection {
|
|
3
|
+
constructor(client) {
|
|
4
|
+
super(client);
|
|
5
|
+
}
|
|
6
|
+
async replace(organization, groups) {
|
|
7
|
+
return this.client.put(`/organization/group`, groups, {
|
|
8
|
+
organization,
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=Groups.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Groups.js","sourceRoot":"../","sources":["Client/Organizations/Groups.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAGpC,MAAM,OAAO,MAAO,SAAQ,IAAI,CAAC,UAAyB;IACzD,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;IACd,CAAC;IACD,KAAK,CAAC,OAAO,CAAC,YAAoB,EAAE,MAAgB;QACnD,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAe,qBAAqB,EAAE,MAAM,EAAE;YACnE,YAAY;SACZ,CAAC,CAAA;IACH,CAAC;CACD"}
|
|
@@ -2,9 +2,11 @@ import { gracely } from "gracely";
|
|
|
2
2
|
import { http } from "cloudly-http";
|
|
3
3
|
import * as rest from "cloudly-rest";
|
|
4
4
|
import { Organization } from "../../Organization";
|
|
5
|
+
import { Groups } from "./Groups";
|
|
5
6
|
import { Rules } from "./Rules";
|
|
6
7
|
export declare class Organizations extends rest.Collection<gracely.Error> {
|
|
7
8
|
readonly Rules: Rules;
|
|
9
|
+
readonly groups: Groups;
|
|
8
10
|
constructor(client: http.Client);
|
|
9
11
|
list(options?: {
|
|
10
12
|
limit?: string;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import * as rest from "cloudly-rest";
|
|
2
|
+
import { Groups } from "./Groups";
|
|
2
3
|
import { Rules } from "./Rules";
|
|
3
4
|
export class Organizations extends rest.Collection {
|
|
4
5
|
constructor(client) {
|
|
5
6
|
super(client);
|
|
6
7
|
this.Rules = new Rules(this.client);
|
|
8
|
+
this.groups = new Groups(this.client);
|
|
7
9
|
}
|
|
8
10
|
async list(options) {
|
|
9
11
|
return this.client.get(`/organization`, options);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Organizations/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAEpC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,MAAM,OAAO,aAAc,SAAQ,IAAI,CAAC,UAAyB;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Organizations/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAEpC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,MAAM,OAAO,aAAc,SAAQ,IAAI,CAAC,UAAyB;IAIhE,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;QAJL,UAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC9B,WAAM,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IAIzC,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAGV;QACA,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAmD,eAAe,EAAE,OAAO,CAAC,CAAA;IACnG,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,YAA0B;QACtC,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAe,eAAe,EAAE,YAAY,CAAC,CAAA;IACrE,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,EAAU,EAAE,UAAmC;QAC3D,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAe,iBAAiB,EAAE,EAAE,EAAE,UAAU,CAAC,CAAA;IAC1E,CAAC;CACD"}
|
|
@@ -7,7 +7,7 @@ export var Creatable;
|
|
|
7
7
|
Creatable.type = isly.object({
|
|
8
8
|
expected: Total.type.optional(),
|
|
9
9
|
processor: Card.Stack.type,
|
|
10
|
-
|
|
10
|
+
references: isly.string().array().optional(),
|
|
11
11
|
batch: Batch.type,
|
|
12
12
|
});
|
|
13
13
|
Creatable.is = Creatable.type.is;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Settlement/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAS/B,MAAM,KAAW,SAAS,CASzB;AATD,WAAiB,SAAS;IACZ,cAAI,GAAG,IAAI,CAAC,MAAM,CAAY;QAC1C,QAAQ,EAAE,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE;QAC/B,SAAS,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI;QAC1B,
|
|
1
|
+
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Settlement/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAS/B,MAAM,KAAW,SAAS,CASzB;AATD,WAAiB,SAAS;IACZ,cAAI,GAAG,IAAI,CAAC,MAAM,CAAY;QAC1C,QAAQ,EAAE,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE;QAC/B,SAAS,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI;QAC1B,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QAC5C,KAAK,EAAE,KAAK,CAAC,IAAI;KACjB,CAAC,CAAA;IACW,YAAE,GAAG,UAAA,IAAI,CAAC,EAAE,CAAA;IACZ,cAAI,GAAG,UAAA,IAAI,CAAC,IAAI,CAAA;AAC9B,CAAC,EATgB,SAAS,KAAT,SAAS,QASzB"}
|
|
@@ -8,15 +8,11 @@ import { Fee as SettlementFee } from "./Fee";
|
|
|
8
8
|
import { Settled as SettlementSettled } from "./Settled";
|
|
9
9
|
import { Status } from "./Status";
|
|
10
10
|
import { Total as SettlementTotal } from "./Total";
|
|
11
|
-
export interface Settlement {
|
|
11
|
+
export interface Settlement extends Settlement.Creatable {
|
|
12
12
|
id: string;
|
|
13
13
|
by?: string;
|
|
14
14
|
created: isoly.DateTime;
|
|
15
|
-
reference?: string;
|
|
16
|
-
batch: SettlementBatch;
|
|
17
|
-
processor: Card.Stack;
|
|
18
15
|
status: Status;
|
|
19
|
-
expected?: Settlement.Total;
|
|
20
16
|
collected?: Settlement.Total;
|
|
21
17
|
outcome: Settlement.Total;
|
|
22
18
|
settled?: Settlement.Settled;
|
package/dist/Settlement/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { isoly } from "isoly";
|
|
2
2
|
import { isly } from "isly";
|
|
3
|
-
import { Card } from "../Card";
|
|
4
3
|
import { Identifier } from "../Identifier";
|
|
5
4
|
import { Batch as SettlementBatch } from "./Batch";
|
|
6
5
|
import { Creatable as SettlementCreatable } from "./Creatable";
|
|
@@ -66,7 +65,7 @@ export var Settlement;
|
|
|
66
65
|
status: { collected: "failed", settled: "failed" },
|
|
67
66
|
by,
|
|
68
67
|
processor: creatable.processor,
|
|
69
|
-
|
|
68
|
+
references: creatable.references,
|
|
70
69
|
batch: creatable.batch,
|
|
71
70
|
expected: Settlement.Total.initiate(),
|
|
72
71
|
outcome: Settlement.Total.initiate(),
|
|
@@ -74,15 +73,11 @@ export var Settlement;
|
|
|
74
73
|
};
|
|
75
74
|
}
|
|
76
75
|
Settlement.toFailed = toFailed;
|
|
77
|
-
Settlement.type =
|
|
76
|
+
Settlement.type = SettlementCreatable.type.extend({
|
|
78
77
|
id: isly.string(),
|
|
79
78
|
by: isly.string().optional(),
|
|
80
79
|
created: isly.fromIs("isoly.DateTime", isoly.DateTime.is),
|
|
81
|
-
reference: isly.string().optional(),
|
|
82
|
-
processor: Card.Stack.type,
|
|
83
|
-
batch: Settlement.Batch.type,
|
|
84
80
|
status: Status.type,
|
|
85
|
-
expected: Settlement.Total.type.optional(),
|
|
86
81
|
collected: Settlement.Total.type.optional(),
|
|
87
82
|
outcome: Settlement.Total.type,
|
|
88
83
|
settled: Settlement.Settled.type.optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Settlement/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Settlement/index.ts"],"names":[],"mappings":"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"}
|