vet-data-utils-ts 0.5.0 → 0.5.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/README.md +7 -0
- package/dist/group.d.ts +90 -0
- package/dist/group.js +227 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -16,6 +16,13 @@ be attributed to the wrong party. A party classifier describes an organization
|
|
|
16
16
|
category; it never represents Consent or CRUDS authorization. See
|
|
17
17
|
[`docs/research-study-r5-contract.md`](docs/research-study-r5-contract.md).
|
|
18
18
|
|
|
19
|
+
ResearchStudy professional teams use native FHIR R5 Group resources from
|
|
20
|
+
`vet-data-utils-ts/group`: required type and membership codes, the exact twelve
|
|
21
|
+
resource-specific SearchParameters, canonical flat claim projection and
|
|
22
|
+
enumerated PractitionerRole member normalization. Group membership is
|
|
23
|
+
descriptive and never carries authorization, permission or scope. See
|
|
24
|
+
[`docs/group-r5-contract.md`](docs/group-r5-contract.md).
|
|
25
|
+
|
|
19
26
|
Reusable Communication screens receive immutable workflow presets from
|
|
20
27
|
`vet-data-utils-ts/communication`. The research-agreement screen is fixed to
|
|
21
28
|
FHIR `notification` plus HL7 v3 ActReason `HRESCH` and does not expose a topic
|
package/dist/group.d.ts
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Browser-safe FHIR R5 Group contract for research-team descriptions.
|
|
3
|
+
*
|
|
4
|
+
* Group membership is descriptive. It never grants authorization, permission
|
|
5
|
+
* or a SMART scope; those decisions remain separate Consent and credential
|
|
6
|
+
* contracts.
|
|
7
|
+
*
|
|
8
|
+
* @see https://hl7.org/fhir/R5/group.html
|
|
9
|
+
* @see https://hl7.org/fhir/R5/group-search.html
|
|
10
|
+
*/
|
|
11
|
+
export declare const GroupR5Version: "5.0.0";
|
|
12
|
+
export declare const GroupR5TypeSystem: "http://hl7.org/fhir/group-type";
|
|
13
|
+
export declare const GroupR5TypeCodes: readonly ["person", "animal", "practitioner", "device", "careteam", "healthcareservice", "location", "organization", "relatedperson", "specimen"];
|
|
14
|
+
export type GroupR5TypeCode = (typeof GroupR5TypeCodes)[number];
|
|
15
|
+
export declare const GroupR5MembershipSystem: "http://hl7.org/fhir/group-membership-basis";
|
|
16
|
+
export declare const GroupR5MembershipCodes: readonly ["definitional", "enumerated"];
|
|
17
|
+
export type GroupR5MembershipCode = (typeof GroupR5MembershipCodes)[number];
|
|
18
|
+
export declare const GroupR5Bindings: Readonly<{
|
|
19
|
+
readonly type: Readonly<{
|
|
20
|
+
valueSet: "http://hl7.org/fhir/ValueSet/group-type";
|
|
21
|
+
strength: "required";
|
|
22
|
+
}>;
|
|
23
|
+
readonly membership: Readonly<{
|
|
24
|
+
valueSet: "http://hl7.org/fhir/ValueSet/group-membership-basis";
|
|
25
|
+
strength: "required";
|
|
26
|
+
}>;
|
|
27
|
+
}>;
|
|
28
|
+
export type GroupSearchParameterType = 'composite' | 'reference' | 'string' | 'token';
|
|
29
|
+
export type GroupR5SearchParameter = Readonly<{
|
|
30
|
+
code: string;
|
|
31
|
+
type: GroupSearchParameterType;
|
|
32
|
+
expression: string;
|
|
33
|
+
components: readonly string[];
|
|
34
|
+
}>;
|
|
35
|
+
/** Exact resource-specific SearchParameters published by FHIR R5 5.0.0. */
|
|
36
|
+
export declare const GroupR5SearchParameterCatalog: readonly GroupR5SearchParameter[];
|
|
37
|
+
declare const standardSearchClaims: readonly `Group.${string}`[];
|
|
38
|
+
/** Canonical claims derived only from the official resource-specific catalogue. */
|
|
39
|
+
export declare const GroupFlatClaimCatalog: Readonly<{
|
|
40
|
+
standardSearch: readonly `Group.${string}`[];
|
|
41
|
+
all: readonly `Group.${string}`[];
|
|
42
|
+
}>;
|
|
43
|
+
export type GroupR5SearchClaim = (typeof standardSearchClaims)[number];
|
|
44
|
+
export type GroupR5SearchClaims = Readonly<Partial<Record<GroupR5SearchClaim, readonly string[]>>>;
|
|
45
|
+
export type GroupR5Reference = Readonly<{
|
|
46
|
+
reference: string;
|
|
47
|
+
type?: string;
|
|
48
|
+
display?: string;
|
|
49
|
+
}>;
|
|
50
|
+
export type GroupR5Period = Readonly<{
|
|
51
|
+
start?: string;
|
|
52
|
+
end?: string;
|
|
53
|
+
}>;
|
|
54
|
+
export type GroupPractitionerRoleMember = Readonly<{
|
|
55
|
+
entity: Readonly<{
|
|
56
|
+
reference: `PractitionerRole/${string}`;
|
|
57
|
+
type: 'PractitionerRole';
|
|
58
|
+
display?: string;
|
|
59
|
+
}>;
|
|
60
|
+
period?: GroupR5Period;
|
|
61
|
+
inactive?: boolean;
|
|
62
|
+
}>;
|
|
63
|
+
export type GroupR5ResearchTeam = Readonly<Record<string, unknown> & {
|
|
64
|
+
resourceType: 'Group';
|
|
65
|
+
id?: string;
|
|
66
|
+
type: 'practitioner';
|
|
67
|
+
membership: 'enumerated';
|
|
68
|
+
member: readonly GroupPractitionerRoleMember[];
|
|
69
|
+
}>;
|
|
70
|
+
/**
|
|
71
|
+
* Normalizes the members used by an enumerated professional research team.
|
|
72
|
+
* Every entity is a native PractitionerRole reference; a Practitioner or an
|
|
73
|
+
* employee identifier cannot substitute for the registered role assignment.
|
|
74
|
+
*/
|
|
75
|
+
export declare function normalizeGroupPractitionerRoleMembers(input: unknown): readonly GroupPractitionerRoleMember[];
|
|
76
|
+
/**
|
|
77
|
+
* Normalizes the Group profile used to describe an explicit professional
|
|
78
|
+
* ResearchStudy team. This data is descriptive and authorization-shaped
|
|
79
|
+
* properties are rejected at every depth.
|
|
80
|
+
*/
|
|
81
|
+
export declare function normalizeGroupR5ResearchTeam(input: unknown): GroupR5ResearchTeam;
|
|
82
|
+
/**
|
|
83
|
+
* Projects all populated official resource-specific R5 Group SearchParameters
|
|
84
|
+
* into flat `resource.meta.claims`. A referenced characteristic is indexed by
|
|
85
|
+
* `characteristic-reference`, not as the token-valued `value` parameter.
|
|
86
|
+
*
|
|
87
|
+
* @see https://hl7.org/fhir/R5/group-search.html
|
|
88
|
+
*/
|
|
89
|
+
export declare function projectGroupR5SearchClaims(input: unknown): GroupR5SearchClaims;
|
|
90
|
+
export {};
|
package/dist/group.js
ADDED
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Browser-safe FHIR R5 Group contract for research-team descriptions.
|
|
3
|
+
*
|
|
4
|
+
* Group membership is descriptive. It never grants authorization, permission
|
|
5
|
+
* or a SMART scope; those decisions remain separate Consent and credential
|
|
6
|
+
* contracts.
|
|
7
|
+
*
|
|
8
|
+
* @see https://hl7.org/fhir/R5/group.html
|
|
9
|
+
* @see https://hl7.org/fhir/R5/group-search.html
|
|
10
|
+
*/
|
|
11
|
+
export const GroupR5Version = '5.0.0';
|
|
12
|
+
export const GroupR5TypeSystem = 'http://hl7.org/fhir/group-type';
|
|
13
|
+
export const GroupR5TypeCodes = Object.freeze([
|
|
14
|
+
'person',
|
|
15
|
+
'animal',
|
|
16
|
+
'practitioner',
|
|
17
|
+
'device',
|
|
18
|
+
'careteam',
|
|
19
|
+
'healthcareservice',
|
|
20
|
+
'location',
|
|
21
|
+
'organization',
|
|
22
|
+
'relatedperson',
|
|
23
|
+
'specimen',
|
|
24
|
+
]);
|
|
25
|
+
export const GroupR5MembershipSystem = 'http://hl7.org/fhir/group-membership-basis';
|
|
26
|
+
export const GroupR5MembershipCodes = Object.freeze(['definitional', 'enumerated']);
|
|
27
|
+
export const GroupR5Bindings = Object.freeze({
|
|
28
|
+
type: Object.freeze({
|
|
29
|
+
valueSet: 'http://hl7.org/fhir/ValueSet/group-type',
|
|
30
|
+
strength: 'required',
|
|
31
|
+
}),
|
|
32
|
+
membership: Object.freeze({
|
|
33
|
+
valueSet: 'http://hl7.org/fhir/ValueSet/group-membership-basis',
|
|
34
|
+
strength: 'required',
|
|
35
|
+
}),
|
|
36
|
+
});
|
|
37
|
+
const searchParameter = (code, type, expression, components = []) => Object.freeze({
|
|
38
|
+
code,
|
|
39
|
+
type,
|
|
40
|
+
expression,
|
|
41
|
+
components: Object.freeze([...components]),
|
|
42
|
+
});
|
|
43
|
+
/** Exact resource-specific SearchParameters published by FHIR R5 5.0.0. */
|
|
44
|
+
export const GroupR5SearchParameterCatalog = Object.freeze([
|
|
45
|
+
searchParameter('characteristic', 'token', 'Group.characteristic.code'),
|
|
46
|
+
searchParameter('characteristic-reference', 'reference', '(Group.characteristic.value.ofType(Reference))'),
|
|
47
|
+
searchParameter('characteristic-value', 'composite', 'Group.characteristic', [
|
|
48
|
+
'http://hl7.org/fhir/SearchParameter/Group-characteristic',
|
|
49
|
+
'http://hl7.org/fhir/SearchParameter/Group-value',
|
|
50
|
+
]),
|
|
51
|
+
searchParameter('code', 'token', 'Group.code'),
|
|
52
|
+
searchParameter('exclude', 'token', 'Group.characteristic.exclude'),
|
|
53
|
+
searchParameter('identifier', 'token', 'Group.identifier'),
|
|
54
|
+
searchParameter('managing-entity', 'reference', 'Group.managingEntity'),
|
|
55
|
+
searchParameter('member', 'reference', 'Group.member.entity'),
|
|
56
|
+
searchParameter('membership', 'token', 'Group.membership'),
|
|
57
|
+
searchParameter('name', 'string', 'Group.name'),
|
|
58
|
+
searchParameter('type', 'token', 'Group.type'),
|
|
59
|
+
searchParameter('value', 'token', '(Group.characteristic.value.ofType(CodeableConcept)) | (Group.characteristic.value.ofType(boolean))'),
|
|
60
|
+
]);
|
|
61
|
+
const standardSearchClaims = Object.freeze(GroupR5SearchParameterCatalog.map(parameter => `Group.${parameter.code}`));
|
|
62
|
+
/** Canonical claims derived only from the official resource-specific catalogue. */
|
|
63
|
+
export const GroupFlatClaimCatalog = Object.freeze({
|
|
64
|
+
standardSearch: standardSearchClaims,
|
|
65
|
+
all: standardSearchClaims,
|
|
66
|
+
});
|
|
67
|
+
/**
|
|
68
|
+
* Normalizes the members used by an enumerated professional research team.
|
|
69
|
+
* Every entity is a native PractitionerRole reference; a Practitioner or an
|
|
70
|
+
* employee identifier cannot substitute for the registered role assignment.
|
|
71
|
+
*/
|
|
72
|
+
export function normalizeGroupPractitionerRoleMembers(input) {
|
|
73
|
+
if (!Array.isArray(input))
|
|
74
|
+
throw new TypeError('group_members_invalid');
|
|
75
|
+
return Object.freeze(input.map((value, index) => {
|
|
76
|
+
if (!isRecord(value) || containsAuthorizationProperty(value)) {
|
|
77
|
+
throw new TypeError(containsAuthorizationProperty(value) ? 'group_authorization_property_forbidden' : `group_member_${index}_invalid`);
|
|
78
|
+
}
|
|
79
|
+
if (!isRecord(value.entity))
|
|
80
|
+
throw new TypeError(`group_member_${index}_practitioner_role_reference_invalid`);
|
|
81
|
+
const reference = optionalString(value.entity.reference);
|
|
82
|
+
const declaredType = optionalString(value.entity.type);
|
|
83
|
+
if (!reference || !/^PractitionerRole\/[A-Za-z0-9.-]{1,64}$/.test(reference) || (declaredType && declaredType !== 'PractitionerRole')) {
|
|
84
|
+
throw new TypeError(`group_member_${index}_practitioner_role_reference_invalid`);
|
|
85
|
+
}
|
|
86
|
+
const display = optionalString(value.entity.display);
|
|
87
|
+
const period = value.period === undefined ? undefined : normalizePeriod(value.period, index);
|
|
88
|
+
if (value.inactive !== undefined && typeof value.inactive !== 'boolean') {
|
|
89
|
+
throw new TypeError(`group_member_${index}_inactive_invalid`);
|
|
90
|
+
}
|
|
91
|
+
return Object.freeze({
|
|
92
|
+
entity: Object.freeze({
|
|
93
|
+
reference: reference,
|
|
94
|
+
type: 'PractitionerRole',
|
|
95
|
+
...(display ? { display } : {}),
|
|
96
|
+
}),
|
|
97
|
+
...(period ? { period } : {}),
|
|
98
|
+
...(value.inactive !== undefined ? { inactive: value.inactive } : {}),
|
|
99
|
+
});
|
|
100
|
+
}));
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Normalizes the Group profile used to describe an explicit professional
|
|
104
|
+
* ResearchStudy team. This data is descriptive and authorization-shaped
|
|
105
|
+
* properties are rejected at every depth.
|
|
106
|
+
*/
|
|
107
|
+
export function normalizeGroupR5ResearchTeam(input) {
|
|
108
|
+
if (!isRecord(input) || input.resourceType !== 'Group')
|
|
109
|
+
throw new TypeError('group_resource_invalid');
|
|
110
|
+
if (containsAuthorizationProperty(input))
|
|
111
|
+
throw new TypeError('group_authorization_property_forbidden');
|
|
112
|
+
if (input.type !== 'practitioner')
|
|
113
|
+
throw new TypeError('group_research_team_type_invalid');
|
|
114
|
+
if (input.membership !== 'enumerated')
|
|
115
|
+
throw new TypeError('group_research_team_membership_invalid');
|
|
116
|
+
const member = normalizeGroupPractitionerRoleMembers(input.member);
|
|
117
|
+
return Object.freeze({ ...input, type: 'practitioner', membership: 'enumerated', member });
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Projects all populated official resource-specific R5 Group SearchParameters
|
|
121
|
+
* into flat `resource.meta.claims`. A referenced characteristic is indexed by
|
|
122
|
+
* `characteristic-reference`, not as the token-valued `value` parameter.
|
|
123
|
+
*
|
|
124
|
+
* @see https://hl7.org/fhir/R5/group-search.html
|
|
125
|
+
*/
|
|
126
|
+
export function projectGroupR5SearchClaims(input) {
|
|
127
|
+
if (!isRecord(input) || input.resourceType !== 'Group')
|
|
128
|
+
throw new TypeError('group_resource_invalid');
|
|
129
|
+
if (containsAuthorizationProperty(input))
|
|
130
|
+
throw new TypeError('group_authorization_property_forbidden');
|
|
131
|
+
if (!GroupR5TypeCodes.includes(input.type))
|
|
132
|
+
throw new TypeError('group_type_invalid');
|
|
133
|
+
if (!GroupR5MembershipCodes.includes(input.membership)) {
|
|
134
|
+
throw new TypeError('group_membership_invalid');
|
|
135
|
+
}
|
|
136
|
+
const characteristics = normalizeRecords(input.characteristic, 'group_characteristic_invalid');
|
|
137
|
+
const characteristicCodes = characteristics.flatMap(item => conceptTokens(item.code));
|
|
138
|
+
const characteristicValues = characteristics.flatMap(characteristicTokenValues);
|
|
139
|
+
const claims = {};
|
|
140
|
+
addClaim(claims, 'Group.characteristic', characteristicCodes);
|
|
141
|
+
addClaim(claims, 'Group.characteristic-reference', characteristics.flatMap(item => referenceTokens(item.valueReference)));
|
|
142
|
+
addClaim(claims, 'Group.characteristic-value', characteristics.flatMap(item => conceptTokens(item.code).flatMap(code => characteristicTokenValues(item).map(value => `${code}$${value}`))));
|
|
143
|
+
addClaim(claims, 'Group.code', conceptTokens(input.code));
|
|
144
|
+
addClaim(claims, 'Group.exclude', characteristics.flatMap(item => typeof item.exclude === 'boolean' ? [String(item.exclude)] : []));
|
|
145
|
+
addClaim(claims, 'Group.identifier', identifierTokens(input.identifier));
|
|
146
|
+
addClaim(claims, 'Group.managing-entity', referenceTokens(input.managingEntity));
|
|
147
|
+
addClaim(claims, 'Group.member', normalizeRecords(input.member, 'group_members_invalid').flatMap(item => referenceTokens(item.entity)));
|
|
148
|
+
addClaim(claims, 'Group.membership', [input.membership]);
|
|
149
|
+
addClaim(claims, 'Group.name', strings(input.name));
|
|
150
|
+
addClaim(claims, 'Group.type', [input.type]);
|
|
151
|
+
addClaim(claims, 'Group.value', characteristicValues);
|
|
152
|
+
return Object.freeze(claims);
|
|
153
|
+
}
|
|
154
|
+
function addClaim(claims, name, values) {
|
|
155
|
+
const normalized = [...new Set(values.flatMap(value => strings(value)))];
|
|
156
|
+
if (normalized.length > 0)
|
|
157
|
+
claims[name] = Object.freeze(normalized);
|
|
158
|
+
}
|
|
159
|
+
function identifierTokens(value) {
|
|
160
|
+
return normalizeRecords(value, 'group_identifier_invalid').flatMap(identifier => {
|
|
161
|
+
const system = optionalString(identifier.system);
|
|
162
|
+
const identifierValue = optionalString(identifier.value);
|
|
163
|
+
return identifierValue ? [`${system ? `${system}|` : ''}${identifierValue}`] : [];
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
function conceptTokens(value) {
|
|
167
|
+
if (!isRecord(value))
|
|
168
|
+
return [];
|
|
169
|
+
const coding = normalizeRecords(value.coding, 'group_coding_invalid').flatMap(item => {
|
|
170
|
+
const system = optionalString(item.system);
|
|
171
|
+
const code = optionalString(item.code);
|
|
172
|
+
return code ? [`${system ? `${system}|` : ''}${code}`] : [];
|
|
173
|
+
});
|
|
174
|
+
return coding.length > 0 ? coding : strings(value.text);
|
|
175
|
+
}
|
|
176
|
+
function characteristicTokenValues(value) {
|
|
177
|
+
if (typeof value.valueBoolean === 'boolean')
|
|
178
|
+
return [String(value.valueBoolean)];
|
|
179
|
+
return conceptTokens(value.valueCodeableConcept);
|
|
180
|
+
}
|
|
181
|
+
function referenceTokens(value) {
|
|
182
|
+
return isRecord(value) ? strings(value.reference) : [];
|
|
183
|
+
}
|
|
184
|
+
function normalizeRecords(value, error) {
|
|
185
|
+
if (value === undefined)
|
|
186
|
+
return [];
|
|
187
|
+
if (!Array.isArray(value) || !value.every(isRecord))
|
|
188
|
+
throw new TypeError(error);
|
|
189
|
+
return value;
|
|
190
|
+
}
|
|
191
|
+
function normalizePeriod(value, index) {
|
|
192
|
+
if (!isRecord(value))
|
|
193
|
+
throw new TypeError(`group_member_${index}_period_invalid`);
|
|
194
|
+
const start = optionalString(value.start);
|
|
195
|
+
const end = optionalString(value.end);
|
|
196
|
+
if (!start && !end)
|
|
197
|
+
throw new TypeError(`group_member_${index}_period_invalid`);
|
|
198
|
+
if ((start && !isFhirDateTime(start)) || (end && !isFhirDateTime(end))) {
|
|
199
|
+
throw new TypeError(`group_member_${index}_period_invalid`);
|
|
200
|
+
}
|
|
201
|
+
if (start && end && Date.parse(end) < Date.parse(start))
|
|
202
|
+
throw new TypeError(`group_member_${index}_period_invalid`);
|
|
203
|
+
return Object.freeze({ ...(start ? { start } : {}), ...(end ? { end } : {}) });
|
|
204
|
+
}
|
|
205
|
+
function containsAuthorizationProperty(value, seen = new WeakSet()) {
|
|
206
|
+
if (!value || typeof value !== 'object')
|
|
207
|
+
return false;
|
|
208
|
+
if (seen.has(value))
|
|
209
|
+
return false;
|
|
210
|
+
seen.add(value);
|
|
211
|
+
if (Array.isArray(value))
|
|
212
|
+
return value.some(item => containsAuthorizationProperty(item, seen));
|
|
213
|
+
return Object.entries(value).some(([name, nested]) => ['authorization', 'permission', 'scope'].includes(name) || containsAuthorizationProperty(nested, seen));
|
|
214
|
+
}
|
|
215
|
+
function strings(value) {
|
|
216
|
+
const normalized = optionalString(value);
|
|
217
|
+
return normalized ? [normalized] : [];
|
|
218
|
+
}
|
|
219
|
+
function optionalString(value) {
|
|
220
|
+
return typeof value === 'string' && value.trim() ? value.trim() : undefined;
|
|
221
|
+
}
|
|
222
|
+
function isFhirDateTime(value) {
|
|
223
|
+
return /^\d{4}(?:-(?:0[1-9]|1[0-2])(?:-(?:0[1-9]|[12]\d|3[01])(?:T.+)?)?)?$/.test(value);
|
|
224
|
+
}
|
|
225
|
+
function isRecord(value) {
|
|
226
|
+
return Boolean(value) && typeof value === 'object' && !Array.isArray(value);
|
|
227
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export * from './clinical-terminology.js';
|
|
|
5
5
|
export * from './digital-twin.js';
|
|
6
6
|
export * from './emergency.js';
|
|
7
7
|
export * from './financial.js';
|
|
8
|
+
export * from './group.js';
|
|
8
9
|
export * from './iso-jurisdictions.js';
|
|
9
10
|
export * from './organization-application.js';
|
|
10
11
|
export * from './research-study.js';
|
package/dist/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export * from './clinical-terminology.js';
|
|
|
5
5
|
export * from './digital-twin.js';
|
|
6
6
|
export * from './emergency.js';
|
|
7
7
|
export * from './financial.js';
|
|
8
|
+
export * from './group.js';
|
|
8
9
|
export * from './iso-jurisdictions.js';
|
|
9
10
|
export * from './organization-application.js';
|
|
10
11
|
export * from './research-study.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vet-data-utils-ts",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Browser-safe governed VetChain data contracts",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Connecting Solution & Applications Ltd",
|
|
@@ -36,6 +36,10 @@
|
|
|
36
36
|
"types": "./dist/financial.d.ts",
|
|
37
37
|
"default": "./dist/financial.js"
|
|
38
38
|
},
|
|
39
|
+
"./group": {
|
|
40
|
+
"types": "./dist/group.d.ts",
|
|
41
|
+
"default": "./dist/group.js"
|
|
42
|
+
},
|
|
39
43
|
"./iso-jurisdictions": {
|
|
40
44
|
"types": "./dist/iso-jurisdictions.d.ts",
|
|
41
45
|
"default": "./dist/iso-jurisdictions.js"
|