@nsshunt/stsfhirpg 1.2.15 → 1.2.17
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/dist/index.cjs +343 -2059
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +343 -2059
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -7
- package/types/fhir-database/dbsearchindextesthelpers.d.ts +20 -21
- package/types/fhir-database/dbsearchindextesthelpers.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nsshunt/stsfhirpg",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.17",
|
|
4
4
|
"description": "STS FHIR Postgres (pg) Persistence",
|
|
5
|
-
"type": "
|
|
5
|
+
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
8
8
|
"types": "./types/index.d.ts",
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://github.com/nsshunt/stsfhirpg#readme",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@nsshunt/stsconfig": "^1.27.
|
|
46
|
-
"@nsshunt/stsfhirclient": "^2.0.
|
|
47
|
-
"@nsshunt/stsutils": "^1.19.
|
|
48
|
-
"chalk": "^
|
|
45
|
+
"@nsshunt/stsconfig": "^1.27.58",
|
|
46
|
+
"@nsshunt/stsfhirclient": "^2.0.21",
|
|
47
|
+
"@nsshunt/stsutils": "^1.19.95",
|
|
48
|
+
"chalk": "^5.6.2",
|
|
49
49
|
"jmespath": "^0.16.0",
|
|
50
50
|
"luxon": "^3.7.2",
|
|
51
51
|
"murmurhash3js": "^3.0.1",
|
|
@@ -55,10 +55,11 @@
|
|
|
55
55
|
"valid-url": "^1.0.9"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@nsshunt/stsdevtools": "^1.0.
|
|
58
|
+
"@nsshunt/stsdevtools": "^1.0.89",
|
|
59
59
|
"@types/jmespath": "^0.15.2",
|
|
60
60
|
"@types/luxon": "^3.7.1",
|
|
61
61
|
"@types/murmurhash3js": "^3.0.7",
|
|
62
|
+
"@types/node": "^25.5.2",
|
|
62
63
|
"@types/pg": "^8.20.0",
|
|
63
64
|
"@types/valid-url": "^1.0.7",
|
|
64
65
|
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
@@ -1,36 +1,35 @@
|
|
|
1
|
-
import chalk from 'chalk';
|
|
2
1
|
export declare function IsDefined(val: any): boolean;
|
|
3
2
|
export declare function TestIndexRecords(jsonFile: string): (obj: any) => Promise<void>;
|
|
4
3
|
export declare const pastel: {
|
|
5
4
|
blue: {
|
|
6
|
-
babyBlue: chalk.
|
|
7
|
-
powderBlue: chalk.
|
|
8
|
-
lightSkyBlue: chalk.
|
|
9
|
-
periwinkle: chalk.
|
|
5
|
+
babyBlue: import("chalk").ChalkInstance;
|
|
6
|
+
powderBlue: import("chalk").ChalkInstance;
|
|
7
|
+
lightSkyBlue: import("chalk").ChalkInstance;
|
|
8
|
+
periwinkle: import("chalk").ChalkInstance;
|
|
10
9
|
};
|
|
11
10
|
pinkPurple: {
|
|
12
|
-
babyPink: chalk.
|
|
13
|
-
lavender: chalk.
|
|
14
|
-
thistle: chalk.
|
|
15
|
-
mauve: chalk.
|
|
11
|
+
babyPink: import("chalk").ChalkInstance;
|
|
12
|
+
lavender: import("chalk").ChalkInstance;
|
|
13
|
+
thistle: import("chalk").ChalkInstance;
|
|
14
|
+
mauve: import("chalk").ChalkInstance;
|
|
16
15
|
};
|
|
17
16
|
green: {
|
|
18
|
-
mintGreen: chalk.
|
|
19
|
-
celadon: chalk.
|
|
20
|
-
teaGreen: chalk.
|
|
21
|
-
honeydew: chalk.
|
|
17
|
+
mintGreen: import("chalk").ChalkInstance;
|
|
18
|
+
celadon: import("chalk").ChalkInstance;
|
|
19
|
+
teaGreen: import("chalk").ChalkInstance;
|
|
20
|
+
honeydew: import("chalk").ChalkInstance;
|
|
22
21
|
};
|
|
23
22
|
yellowOrange: {
|
|
24
|
-
lightYellow: chalk.
|
|
25
|
-
lemonChiffon: chalk.
|
|
26
|
-
peachPuff: chalk.
|
|
27
|
-
apricot: chalk.
|
|
23
|
+
lightYellow: import("chalk").ChalkInstance;
|
|
24
|
+
lemonChiffon: import("chalk").ChalkInstance;
|
|
25
|
+
peachPuff: import("chalk").ChalkInstance;
|
|
26
|
+
apricot: import("chalk").ChalkInstance;
|
|
28
27
|
};
|
|
29
28
|
neutral: {
|
|
30
|
-
gainsboro: chalk.
|
|
31
|
-
mistyRose: chalk.
|
|
32
|
-
lightGray: chalk.
|
|
33
|
-
seashell: chalk.
|
|
29
|
+
gainsboro: import("chalk").ChalkInstance;
|
|
30
|
+
mistyRose: import("chalk").ChalkInstance;
|
|
31
|
+
lightGray: import("chalk").ChalkInstance;
|
|
32
|
+
seashell: import("chalk").ChalkInstance;
|
|
34
33
|
};
|
|
35
34
|
};
|
|
36
35
|
//# sourceMappingURL=dbsearchindextesthelpers.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dbsearchindextesthelpers.d.ts","sourceRoot":"","sources":["../../src/fhir-database/dbsearchindextesthelpers.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dbsearchindextesthelpers.d.ts","sourceRoot":"","sources":["../../src/fhir-database/dbsearchindextesthelpers.ts"],"names":[],"mappings":"AAOA,wBAAgB,SAAS,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAE3C;AAED,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,IAI/B,KAAK,GAAG,mBAwBzB;AAED,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmClB,CAAC"}
|