@availity/dockyard 2.0.0 → 2.0.1
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/CHANGELOG.md +4 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -5
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [2.0.1](https://github.com/Availity/sdk-js/compare/@availity/dockyard@2.0.0...@availity/dockyard@2.0.1) (2025-03-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
# [2.0.0](https://github.com/Availity/sdk-js/compare/@availity/dockyard@1.0.7...@availity/dockyard@2.0.0) (2024-07-29)
|
|
6
10
|
|
|
7
11
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
|
|
2
|
-
export {
|
|
2
|
+
export { }
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
|
|
2
|
-
export {
|
|
2
|
+
export { }
|
package/dist/index.js
CHANGED
|
@@ -42,11 +42,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
42
42
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
43
43
|
|
|
44
44
|
// src/index.js
|
|
45
|
-
var
|
|
46
|
-
__export(
|
|
47
|
-
default: () =>
|
|
45
|
+
var index_exports = {};
|
|
46
|
+
__export(index_exports, {
|
|
47
|
+
default: () => index_default
|
|
48
48
|
});
|
|
49
|
-
module.exports = __toCommonJS(
|
|
49
|
+
module.exports = __toCommonJS(index_exports);
|
|
50
50
|
var import_get = __toESM(require("lodash/get"));
|
|
51
51
|
var import_set = __toESM(require("lodash/set"));
|
|
52
52
|
var addDelimiter = (a, b, { underscore = false } = {}) => underscore ? a ? `${a}.${b}._${b}` : `${b}._${b}` : a ? `${a}.${b}` : `${b}`;
|
|
@@ -139,4 +139,4 @@ var getRules = (validation, { compileRequiredFields = false, excludeOneOf = fals
|
|
|
139
139
|
const description = validation.describe();
|
|
140
140
|
return buildRules(description.fields, "", { compileRequiredFields, excludeOneOf, excludeTypes });
|
|
141
141
|
};
|
|
142
|
-
var
|
|
142
|
+
var index_default = getRules;
|
package/dist/index.mjs
CHANGED
|
@@ -108,7 +108,7 @@ var getRules = (validation, { compileRequiredFields = false, excludeOneOf = fals
|
|
|
108
108
|
const description = validation.describe();
|
|
109
109
|
return buildRules(description.fields, "", { compileRequiredFields, excludeOneOf, excludeTypes });
|
|
110
110
|
};
|
|
111
|
-
var
|
|
111
|
+
var index_default = getRules;
|
|
112
112
|
export {
|
|
113
|
-
|
|
113
|
+
index_default as default
|
|
114
114
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/dockyard",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Convert yup schema to a friendly docs object",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yup",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"lodash": "^4.17.21"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"tsup": "^
|
|
39
|
+
"tsup": "^8.4.0",
|
|
40
40
|
"typescript": "^5.5.4",
|
|
41
41
|
"yup": "^0.32.11"
|
|
42
42
|
},
|