@pax2pay/model-banking 0.1.392 → 0.1.393
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/Warning/Base.ts +3 -0
- package/Warning/Issue.ts +13 -0
- package/dist/Warning/Base.d.ts +2 -0
- package/dist/Warning/Base.js +2 -0
- package/dist/Warning/Base.js.map +1 -1
- package/dist/Warning/Issue.d.ts +8 -0
- package/dist/Warning/Issue.js +9 -0
- package/dist/Warning/Issue.js.map +1 -0
- package/package.json +1 -1
package/Warning/Base.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { isoly } from "isoly"
|
|
2
2
|
import { isly } from "isly"
|
|
3
|
+
import { Issue } from "./Issue"
|
|
3
4
|
|
|
4
5
|
export interface Base {
|
|
5
6
|
type: string
|
|
6
7
|
resource: string
|
|
7
8
|
value?: number
|
|
8
9
|
date: isoly.Date
|
|
10
|
+
issue?: Issue
|
|
9
11
|
}
|
|
10
12
|
|
|
11
13
|
export namespace Base {
|
|
@@ -14,5 +16,6 @@ export namespace Base {
|
|
|
14
16
|
resource: isly.string(),
|
|
15
17
|
value: isly.number().optional(),
|
|
16
18
|
date: isly.string(),
|
|
19
|
+
issue: Issue.type.optional(),
|
|
17
20
|
})
|
|
18
21
|
}
|
package/Warning/Issue.ts
ADDED
package/dist/Warning/Base.d.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { isoly } from "isoly";
|
|
2
2
|
import { isly } from "isly";
|
|
3
|
+
import { Issue } from "./Issue";
|
|
3
4
|
export interface Base {
|
|
4
5
|
type: string;
|
|
5
6
|
resource: string;
|
|
6
7
|
value?: number;
|
|
7
8
|
date: isoly.Date;
|
|
9
|
+
issue?: Issue;
|
|
8
10
|
}
|
|
9
11
|
export declare namespace Base {
|
|
10
12
|
const type: isly.object.ExtendableType<Base>;
|
package/dist/Warning/Base.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { isly } from "isly";
|
|
2
|
+
import { Issue } from "./Issue";
|
|
2
3
|
export var Base;
|
|
3
4
|
(function (Base) {
|
|
4
5
|
Base.type = isly.object({
|
|
@@ -6,6 +7,7 @@ export var Base;
|
|
|
6
7
|
resource: isly.string(),
|
|
7
8
|
value: isly.number().optional(),
|
|
8
9
|
date: isly.string(),
|
|
10
|
+
issue: Issue.type.optional(),
|
|
9
11
|
});
|
|
10
12
|
})(Base || (Base = {}));
|
|
11
13
|
//# sourceMappingURL=Base.js.map
|
package/dist/Warning/Base.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Base.js","sourceRoot":"../","sources":["Warning/Base.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"Base.js","sourceRoot":"../","sources":["Warning/Base.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAU/B,MAAM,KAAW,IAAI,CAQpB;AARD,WAAiB,IAAI;IACP,SAAI,GAAG,IAAI,CAAC,MAAM,CAAO;QACrC,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;QACvB,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC/B,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE;KAC5B,CAAC,CAAA;AACH,CAAC,EARgB,IAAI,KAAJ,IAAI,QAQpB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Issue.js","sourceRoot":"../","sources":["Warning/Issue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAO3B,MAAM,KAAW,KAAK,CAKrB;AALD,WAAiB,KAAK;IACR,UAAI,GAAG,IAAI,CAAC,MAAM,CAAQ;QACtC,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;KACvC,CAAC,CAAA;AACH,CAAC,EALgB,KAAK,KAAL,KAAK,QAKrB"}
|