@pax2pay/model-banking 0.1.304 → 0.1.305
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/Rule/Rule/Base.ts +1 -1
- package/dist/Rule/Rule/Base.d.ts +1 -1
- package/dist/Rule/Rule/Base.js +1 -1
- package/dist/Rule/index.d.ts +1 -1
- package/package.json +1 -1
package/Rule/Rule/Base.ts
CHANGED
|
@@ -13,7 +13,7 @@ export interface Base {
|
|
|
13
13
|
export namespace Base {
|
|
14
14
|
export const kinds = ["authorization", "outbound", "inbound"] as const
|
|
15
15
|
export type Kind = typeof kinds[number]
|
|
16
|
-
export const categories = ["
|
|
16
|
+
export const categories = ["fincrime", "product", "customer"] as const
|
|
17
17
|
export type Category = typeof categories[number]
|
|
18
18
|
export const type = isly.object<Base>({
|
|
19
19
|
code: isly.string(new RegExp(/^[a-z0-9\-_]+$/)),
|
package/dist/Rule/Rule/Base.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export interface Base {
|
|
|
12
12
|
export declare namespace Base {
|
|
13
13
|
const kinds: readonly ["authorization", "outbound", "inbound"];
|
|
14
14
|
type Kind = typeof kinds[number];
|
|
15
|
-
const categories: readonly ["
|
|
15
|
+
const categories: readonly ["fincrime", "product", "customer"];
|
|
16
16
|
type Category = typeof categories[number];
|
|
17
17
|
const type: isly.object.ExtendableType<Base>;
|
|
18
18
|
}
|
package/dist/Rule/Rule/Base.js
CHANGED
|
@@ -2,7 +2,7 @@ import { isly } from "isly";
|
|
|
2
2
|
export var Base;
|
|
3
3
|
(function (Base) {
|
|
4
4
|
Base.kinds = ["authorization", "outbound", "inbound"];
|
|
5
|
-
Base.categories = ["
|
|
5
|
+
Base.categories = ["fincrime", "product", "customer"];
|
|
6
6
|
Base.type = isly.object({
|
|
7
7
|
code: isly.string(new RegExp(/^[a-z0-9\-_]+$/)),
|
|
8
8
|
name: isly.string(),
|
package/dist/Rule/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare namespace Rule {
|
|
|
10
10
|
}
|
|
11
11
|
type Category = ModelRule.Base.Category;
|
|
12
12
|
namespace Category {
|
|
13
|
-
const values: readonly ["
|
|
13
|
+
const values: readonly ["fincrime", "product", "customer"];
|
|
14
14
|
}
|
|
15
15
|
type Kind = ModelRule.Base.Kind;
|
|
16
16
|
namespace Kind {
|