@pax2pay/model-banking 0.1.212 → 0.1.214
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/Operation/Card.ts +4 -2
- package/Card/Operation/index.ts +9 -0
- package/Identifier.ts +5 -0
- package/Settlement/Entry/index.ts +1 -0
- package/dist/Authorization/Status.d.ts +2 -2
- package/dist/Card/Operation/Card.d.ts +3 -1
- package/dist/Card/Operation/Card.js +2 -1
- package/dist/Card/Operation/Card.js.map +1 -1
- package/dist/Card/Operation/index.d.ts +4 -2
- package/dist/Card/Operation/index.js +9 -0
- package/dist/Card/Operation/index.js.map +1 -1
- package/dist/Identifier.d.ts +5 -0
- package/dist/Identifier.js +4 -0
- package/dist/Identifier.js.map +1 -1
- package/dist/Settlement/Entry/index.d.ts +1 -0
- package/dist/Settlement/Entry/index.js.map +1 -1
- package/package.json +1 -1
package/Card/Operation/Card.ts
CHANGED
|
@@ -4,15 +4,17 @@ import { Changeable } from "../Changeable"
|
|
|
4
4
|
|
|
5
5
|
export interface Card {
|
|
6
6
|
type: "card"
|
|
7
|
-
status:
|
|
7
|
+
status: Card.Status
|
|
8
8
|
from?: Changeable
|
|
9
9
|
created: isoly.DateTime
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
export namespace Card {
|
|
13
|
+
export const statuses = ["created", "changed", "cancelled"] as const
|
|
14
|
+
export type Status = typeof statuses[number]
|
|
13
15
|
export const type = isly.object<Card>({
|
|
14
16
|
type: isly.string("card"),
|
|
15
|
-
status: isly.
|
|
17
|
+
status: isly.string(statuses),
|
|
16
18
|
from: Changeable.type.optional(),
|
|
17
19
|
created: isly.fromIs("isoly.DateTime", isoly.DateTime.is),
|
|
18
20
|
})
|
package/Card/Operation/index.ts
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
import { isly } from "isly"
|
|
2
|
+
import { Entry } from "../../Settlement/Entry"
|
|
2
3
|
import { Authorization } from "./Authorization"
|
|
3
4
|
import { Card } from "./Card"
|
|
4
5
|
|
|
5
6
|
export type Operation = Card | Authorization
|
|
6
7
|
|
|
7
8
|
export namespace Operation {
|
|
9
|
+
export function fromEntryStatus(status: Exclude<Entry.Type, "unknown">): Authorization.Status {
|
|
10
|
+
const statusConverter: Record<Exclude<Entry.Type, "unknown">, Authorization.Status> = {
|
|
11
|
+
capture: "captured",
|
|
12
|
+
cancel: "cancelled",
|
|
13
|
+
refund: "refunded",
|
|
14
|
+
}
|
|
15
|
+
return statusConverter[status]
|
|
16
|
+
}
|
|
8
17
|
export const type = isly.union(Card.type, Authorization.type)
|
|
9
18
|
export const is = type.is
|
|
10
19
|
}
|
package/Identifier.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { cryptly } from "cryptly"
|
|
2
2
|
import { isoly } from "isoly"
|
|
3
|
+
import { isly } from "isly"
|
|
3
4
|
|
|
5
|
+
export type Identifier = cryptly.Identifier
|
|
4
6
|
export namespace Identifier {
|
|
5
7
|
export function generate(
|
|
6
8
|
date: isoly.DateTime = isoly.DateTime.now(),
|
|
@@ -16,4 +18,7 @@ export namespace Identifier {
|
|
|
16
18
|
const decoded = cryptly.Base64.decode(identifier, ordering)
|
|
17
19
|
return isoly.DateTime.create(Number(new BigUint64Array(decoded.slice(decoded.length - 8).buffer)), "milliseconds")
|
|
18
20
|
}
|
|
21
|
+
export const type = isly.fromIs("Identifier", cryptly.Identifier.is)
|
|
22
|
+
export const is = type.is
|
|
23
|
+
export const flaw = type.flaw
|
|
19
24
|
}
|
|
@@ -33,6 +33,7 @@ export namespace Entry {
|
|
|
33
33
|
export namespace Unknown {
|
|
34
34
|
export type Creatable = EntryUnknown.Creatable
|
|
35
35
|
}
|
|
36
|
+
export type Type = "unknown" | "refund" | "capture" | "cancel"
|
|
36
37
|
export type Summary = EntrySummary
|
|
37
38
|
export const Summary = EntrySummary
|
|
38
39
|
export type Creatable = EntryCreatable
|
|
@@ -11,7 +11,7 @@ export declare namespace Status {
|
|
|
11
11
|
namespace Failed {
|
|
12
12
|
function from(error: gracely.Error | Transaction.Note[]): Failed;
|
|
13
13
|
}
|
|
14
|
-
const type: isly.Type<"approved"
|
|
15
|
-
const is: isly.Type.IsFunction<"approved"
|
|
14
|
+
const type: isly.Type<Failed | "approved">;
|
|
15
|
+
const is: isly.Type.IsFunction<Failed | "approved">;
|
|
16
16
|
const flaw: isly.Type.FlawFunction;
|
|
17
17
|
}
|
|
@@ -3,11 +3,13 @@ import { isly } from "isly";
|
|
|
3
3
|
import { Changeable } from "../Changeable";
|
|
4
4
|
export interface Card {
|
|
5
5
|
type: "card";
|
|
6
|
-
status:
|
|
6
|
+
status: Card.Status;
|
|
7
7
|
from?: Changeable;
|
|
8
8
|
created: isoly.DateTime;
|
|
9
9
|
}
|
|
10
10
|
export declare namespace Card {
|
|
11
|
+
const statuses: readonly ["created", "changed", "cancelled"];
|
|
12
|
+
type Status = typeof statuses[number];
|
|
11
13
|
const type: isly.object.ExtendableType<Card>;
|
|
12
14
|
const is: isly.Type.IsFunction<Card>;
|
|
13
15
|
}
|
|
@@ -3,9 +3,10 @@ import { isly } from "isly";
|
|
|
3
3
|
import { Changeable } from "../Changeable";
|
|
4
4
|
export var Card;
|
|
5
5
|
(function (Card) {
|
|
6
|
+
Card.statuses = ["created", "changed", "cancelled"];
|
|
6
7
|
Card.type = isly.object({
|
|
7
8
|
type: isly.string("card"),
|
|
8
|
-
status: isly.
|
|
9
|
+
status: isly.string(Card.statuses),
|
|
9
10
|
from: Changeable.type.optional(),
|
|
10
11
|
created: isly.fromIs("isoly.DateTime", isoly.DateTime.is),
|
|
11
12
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.js","sourceRoot":"../","sources":["Card/Operation/Card.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAS1C,MAAM,KAAW,IAAI,
|
|
1
|
+
{"version":3,"file":"Card.js","sourceRoot":"../","sources":["Card/Operation/Card.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAS1C,MAAM,KAAW,IAAI,CAUpB;AAVD,WAAiB,IAAI;IACP,aAAQ,GAAG,CAAC,SAAS,EAAE,SAAS,EAAE,WAAW,CAAU,CAAA;IAEvD,SAAI,GAAG,IAAI,CAAC,MAAM,CAAO;QACrC,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;QACzB,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,KAAA,QAAQ,CAAC;QAC7B,IAAI,EAAE,UAAU,CAAC,IAAI,CAAC,QAAQ,EAAE;QAChC,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;KACzD,CAAC,CAAA;IACW,OAAE,GAAG,KAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAVgB,IAAI,KAAJ,IAAI,QAUpB"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { isly } from "isly";
|
|
2
|
+
import { Entry } from "../../Settlement/Entry";
|
|
2
3
|
import { Authorization } from "./Authorization";
|
|
3
4
|
import { Card } from "./Card";
|
|
4
5
|
export type Operation = Card | Authorization;
|
|
5
6
|
export declare namespace Operation {
|
|
6
|
-
|
|
7
|
-
const
|
|
7
|
+
function fromEntryStatus(status: Exclude<Entry.Type, "unknown">): Authorization.Status;
|
|
8
|
+
const type: isly.Type<Card | Authorization>;
|
|
9
|
+
const is: isly.Type.IsFunction<Card | Authorization>;
|
|
8
10
|
}
|
|
@@ -3,6 +3,15 @@ import { Authorization } from "./Authorization";
|
|
|
3
3
|
import { Card } from "./Card";
|
|
4
4
|
export var Operation;
|
|
5
5
|
(function (Operation) {
|
|
6
|
+
function fromEntryStatus(status) {
|
|
7
|
+
const statusConverter = {
|
|
8
|
+
capture: "captured",
|
|
9
|
+
cancel: "cancelled",
|
|
10
|
+
refund: "refunded",
|
|
11
|
+
};
|
|
12
|
+
return statusConverter[status];
|
|
13
|
+
}
|
|
14
|
+
Operation.fromEntryStatus = fromEntryStatus;
|
|
6
15
|
Operation.type = isly.union(Card.type, Authorization.type);
|
|
7
16
|
Operation.is = Operation.type.is;
|
|
8
17
|
})(Operation || (Operation = {}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Card/Operation/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Card/Operation/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAE3B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAA;AAI7B,MAAM,KAAW,SAAS,CAWzB;AAXD,WAAiB,SAAS;IACzB,SAAgB,eAAe,CAAC,MAAsC;QACrE,MAAM,eAAe,GAAiE;YACrF,OAAO,EAAE,UAAU;YACnB,MAAM,EAAE,WAAW;YACnB,MAAM,EAAE,UAAU;SAClB,CAAA;QACD,OAAO,eAAe,CAAC,MAAM,CAAC,CAAA;IAC/B,CAAC;IAPe,yBAAe,kBAO9B,CAAA;IACY,cAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,EAAE,aAAa,CAAC,IAAI,CAAC,CAAA;IAChD,YAAE,GAAG,UAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAXgB,SAAS,KAAT,SAAS,QAWzB"}
|
package/dist/Identifier.d.ts
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { cryptly } from "cryptly";
|
|
2
2
|
import { isoly } from "isoly";
|
|
3
|
+
import { isly } from "isly";
|
|
4
|
+
export type Identifier = cryptly.Identifier;
|
|
3
5
|
export declare namespace Identifier {
|
|
4
6
|
function generate(date?: isoly.DateTime, length?: cryptly.Identifier.Length, ordering?: "ordered" | "reversed"): string;
|
|
5
7
|
function timeOf(identifier: cryptly.Identifier, ordering?: "ordered" | "reversed"): isoly.DateTime;
|
|
8
|
+
const type: isly.Type<string>;
|
|
9
|
+
const is: isly.Type.IsFunction<string>;
|
|
10
|
+
const flaw: isly.Type.FlawFunction;
|
|
6
11
|
}
|
package/dist/Identifier.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { cryptly } from "cryptly";
|
|
2
2
|
import { isoly } from "isoly";
|
|
3
|
+
import { isly } from "isly";
|
|
3
4
|
export var Identifier;
|
|
4
5
|
(function (Identifier) {
|
|
5
6
|
function generate(date = isoly.DateTime.now(), length = 16, ordering = "reversed") {
|
|
@@ -11,5 +12,8 @@ export var Identifier;
|
|
|
11
12
|
return isoly.DateTime.create(Number(new BigUint64Array(decoded.slice(decoded.length - 8).buffer)), "milliseconds");
|
|
12
13
|
}
|
|
13
14
|
Identifier.timeOf = timeOf;
|
|
15
|
+
Identifier.type = isly.fromIs("Identifier", cryptly.Identifier.is);
|
|
16
|
+
Identifier.is = Identifier.type.is;
|
|
17
|
+
Identifier.flaw = Identifier.type.flaw;
|
|
14
18
|
})(Identifier || (Identifier = {}));
|
|
15
19
|
//# sourceMappingURL=Identifier.js.map
|
package/dist/Identifier.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Identifier.js","sourceRoot":"../","sources":["Identifier.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"Identifier.js","sourceRoot":"../","sources":["Identifier.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAG3B,MAAM,KAAW,UAAU,CAkB1B;AAlBD,WAAiB,UAAU;IAC1B,SAAgB,QAAQ,CACvB,OAAuB,KAAK,CAAC,QAAQ,CAAC,GAAG,EAAE,EAC3C,SAAoC,EAAE,EACtC,WAAmC,UAAU;QAE7C,OAAO,OAAO,CAAC,UAAU,CAAC,QAAQ,CAAC,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,cAAc,CAAC,CAAC,CAAA;IACjG,CAAC;IANe,mBAAQ,WAMvB,CAAA;IACD,SAAgB,MAAM,CACrB,UAA8B,EAC9B,WAAmC,UAAU;QAE7C,MAAM,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAA;QAC3D,OAAO,KAAK,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,cAAc,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,cAAc,CAAC,CAAA;IACnH,CAAC;IANe,iBAAM,SAMrB,CAAA;IACY,eAAI,GAAG,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,CAAA;IACvD,aAAE,GAAG,WAAA,IAAI,CAAC,EAAE,CAAA;IACZ,eAAI,GAAG,WAAA,IAAI,CAAC,IAAI,CAAA;AAC9B,CAAC,EAlBgB,UAAU,KAAV,UAAU,QAkB1B"}
|
|
@@ -30,6 +30,7 @@ export declare namespace Entry {
|
|
|
30
30
|
namespace Unknown {
|
|
31
31
|
type Creatable = EntryUnknown.Creatable;
|
|
32
32
|
}
|
|
33
|
+
type Type = "unknown" | "refund" | "capture" | "cancel";
|
|
33
34
|
type Summary = EntrySummary;
|
|
34
35
|
const Summary: typeof EntrySummary;
|
|
35
36
|
type Creatable = EntryCreatable;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Settlement/Entry/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AACjC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AACrC,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAC/C,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAA;AAChC,OAAO,EAAE,MAAM,IAAI,WAAW,EAAE,MAAM,UAAU,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,WAAW,CAAA;AACnD,OAAO,EAAE,SAAS,IAAI,cAAc,EAAE,MAAM,aAAa,CAAA;AACzD,OAAO,EAAE,MAAM,IAAI,WAAW,EAAE,MAAM,UAAU,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,WAAW,CAAA;AACnD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,WAAW,CAAA;AAInD,MAAM,KAAW,KAAK,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Settlement/Entry/index.ts"],"names":[],"mappings":"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"}
|