@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 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 = ["customer", "product", "fincrime"] as const
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\-_]+$/)),
@@ -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 ["customer", "product", "fincrime"];
15
+ const categories: readonly ["fincrime", "product", "customer"];
16
16
  type Category = typeof categories[number];
17
17
  const type: isly.object.ExtendableType<Base>;
18
18
  }
@@ -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 = ["customer", "product", "fincrime"];
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(),
@@ -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 ["customer", "product", "fincrime"];
13
+ const values: readonly ["fincrime", "product", "customer"];
14
14
  }
15
15
  type Kind = ModelRule.Base.Kind;
16
16
  namespace Kind {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pax2pay/model-banking",
3
- "version": "0.1.304",
3
+ "version": "0.1.305",
4
4
  "description": "Library containing data model types and functions for the Pax2Pay Banking API.",
5
5
  "author": "Pax2Pay Ltd",
6
6
  "license": "MIT",