opf-validator 0.0.3 → 0.0.5

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.
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "opf-validator-consent",
3
+ "private": true,
4
+ "main": "index.js",
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "opf-validator-payments",
3
+ "private": true,
4
+ "main": "index.js",
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "opf-validator-recurring-payments",
3
+ "private": true,
4
+ "main": "index.js",
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Utils Module - Exports all utilities
3
+ */
4
+ export * from "./openFinanceErrors";
5
+ export * from "./paymentErrors";
6
+ export * from "./successResponses";
7
+ export * from "./validateHeaderParameters";
8
+ export * from "./validationHelpers";
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,qBAAqB,CAAC"}
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ /**
3
+ * Utils Module - Exports all utilities
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
17
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
18
+ };
19
+ Object.defineProperty(exports, "__esModule", { value: true });
20
+ __exportStar(require("./openFinanceErrors"), exports);
21
+ __exportStar(require("./paymentErrors"), exports);
22
+ __exportStar(require("./successResponses"), exports);
23
+ __exportStar(require("./validateHeaderParameters"), exports);
24
+ __exportStar(require("./validationHelpers"), exports);
25
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,sDAAoC;AACpC,kDAAgC;AAChC,qDAAmC;AACnC,6DAA2C;AAC3C,sDAAoC"}
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "opf-validator-utils",
3
+ "private": true,
4
+ "main": "index.js",
5
+ "types": "index.d.ts"
6
+ }
package/package.json CHANGED
@@ -1,30 +1,52 @@
1
1
  {
2
2
  "name": "opf-validator",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
- "files": ["dist"],
6
+ "files": [
7
+ "dist"
8
+ ],
7
9
  "exports": {
8
10
  ".": {
9
11
  "import": "./dist/index.js",
10
12
  "require": "./dist/index.js",
11
13
  "types": "./dist/index.d.ts"
12
14
  },
15
+ "./utils": {
16
+ "import": "./dist/utils/index.js",
17
+ "require": "./dist/utils/index.js",
18
+ "types": "./dist/utils/index.d.ts"
19
+ },
13
20
  "./utils/*": {
14
21
  "import": "./dist/utils/*.js",
15
22
  "require": "./dist/utils/*.js",
16
23
  "types": "./dist/utils/*.d.ts"
17
24
  },
25
+ "./consent": {
26
+ "import": "./dist/consent/index.js",
27
+ "require": "./dist/consent/index.js",
28
+ "types": "./dist/consent/index.d.ts"
29
+ },
18
30
  "./consent/*": {
19
31
  "import": "./dist/consent/*.js",
20
32
  "require": "./dist/consent/*.js",
21
33
  "types": "./dist/consent/*.d.ts"
22
34
  },
35
+ "./payments": {
36
+ "import": "./dist/payments/index.js",
37
+ "require": "./dist/payments/index.js",
38
+ "types": "./dist/payments/index.d.ts"
39
+ },
23
40
  "./payments/*": {
24
41
  "import": "./dist/payments/*.js",
25
42
  "require": "./dist/payments/*.js",
26
43
  "types": "./dist/payments/*.d.ts"
27
44
  },
45
+ "./recurring-payments": {
46
+ "import": "./dist/recurring-payments/index.js",
47
+ "require": "./dist/recurring-payments/index.js",
48
+ "types": "./dist/recurring-payments/index.d.ts"
49
+ },
28
50
  "./recurring-payments/*": {
29
51
  "import": "./dist/recurring-payments/*.js",
30
52
  "require": "./dist/recurring-payments/*.js",