gdc-common-utils-ts 2.0.13 → 2.0.15
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,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Compatibility re-export for the historical medication claim-helper subpath.
|
|
3
|
+
*
|
|
4
|
+
* `gdc-sdk-core-ts` and older consumers still import
|
|
5
|
+
* `gdc-common-utils-ts/utils/medication-claim-helpers`, while the canonical
|
|
6
|
+
* implementation file is `claims-helpers-medication-statement`.
|
|
7
|
+
*/
|
|
8
|
+
export * from './claims-helpers-medication-statement';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// Copyright 2026 Antifraud Services Inc. under the Apache License, Version 2.0.
|
|
2
|
+
/**
|
|
3
|
+
* Compatibility re-export for the historical medication claim-helper subpath.
|
|
4
|
+
*
|
|
5
|
+
* `gdc-sdk-core-ts` and older consumers still import
|
|
6
|
+
* `gdc-common-utils-ts/utils/medication-claim-helpers`, while the canonical
|
|
7
|
+
* implementation file is `claims-helpers-medication-statement`.
|
|
8
|
+
*/
|
|
9
|
+
export * from './claims-helpers-medication-statement.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gdc-common-utils-ts",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.15",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -55,6 +55,14 @@
|
|
|
55
55
|
"types": "./dist/claims/*.d.ts",
|
|
56
56
|
"default": "./dist/claims/*.js"
|
|
57
57
|
},
|
|
58
|
+
"./utils/claims-helpers-medication-statement": {
|
|
59
|
+
"types": "./dist/claims/claims-helpers-medication-statement.d.ts",
|
|
60
|
+
"default": "./dist/claims/claims-helpers-medication-statement.js"
|
|
61
|
+
},
|
|
62
|
+
"./utils/medication-claim-helpers": {
|
|
63
|
+
"types": "./dist/claims/claims-helpers-medication-statement.d.ts",
|
|
64
|
+
"default": "./dist/claims/claims-helpers-medication-statement.js"
|
|
65
|
+
},
|
|
58
66
|
"./constants/*": {
|
|
59
67
|
"types": "./dist/constants/*.d.ts",
|
|
60
68
|
"default": "./dist/constants/*.js"
|