@unchainedshop/core-countries 2.11.3 → 2.12.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/lib/countries-index.d.ts +1 -0
- package/lib/countries-index.d.ts.map +1 -0
- package/lib/db/CountriesCollection.d.ts +1 -0
- package/lib/db/CountriesCollection.d.ts.map +1 -0
- package/lib/db/CountriesSchema.d.ts +1 -0
- package/lib/db/CountriesSchema.d.ts.map +1 -0
- package/lib/module/configureCountriesModule.d.ts +1 -0
- package/lib/module/configureCountriesModule.d.ts.map +1 -0
- package/lib/service/countryServices.d.ts +1 -0
- package/lib/service/countryServices.d.ts.map +1 -0
- package/lib/service/resolveDefaultCurrencyCodeService.d.ts +1 -0
- package/lib/service/resolveDefaultCurrencyCodeService.d.ts.map +1 -0
- package/package.json +7 -7
package/lib/countries-index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"countries-index.d.ts","sourceRoot":"","sources":["../src/countries-index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAEhF,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CountriesCollection.d.ts","sourceRoot":"","sources":["../../src/db/CountriesCollection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkB,MAAM,wBAAwB,CAAC;AACjE,OAAO,EAAE,OAAO,EAAE,MAAM,mCAAmC,CAAC;AAE5D,eAAO,MAAM,mBAAmB,OAAc,OAAO,CAAC,EAAE,yCAuBvD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CountriesSchema.d.ts","sourceRoot":"","sources":["../../src/db/CountriesSchema.ts"],"names":[],"mappings":"AACA,OAAO,YAAY,MAAM,cAAc,CAAC;AAExC,eAAO,MAAM,eAAe,cAQ3B,CAAC"}
|
|
@@ -6,3 +6,4 @@ export declare const buildFindSelector: ({ includeInactive, queryString }: Count
|
|
|
6
6
|
deleted?: Date;
|
|
7
7
|
};
|
|
8
8
|
export declare const configureCountriesModule: ({ db, }: ModuleInput<Record<string, never>>) => Promise<CountriesModule>;
|
|
9
|
+
//# sourceMappingURL=configureCountriesModule.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"configureCountriesModule.d.ts","sourceRoot":"","sources":["../../src/module/configureCountriesModule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAmB,MAAM,8BAA8B,CAAC;AAC5E,OAAO,EAAE,eAAe,EAAW,YAAY,EAAE,MAAM,mCAAmC,CAAC;AAU3F,eAAO,MAAM,iBAAiB,qCAAmD,YAAY;eAC9D,IAAI;YAAU,GAAG;cAAY,IAAI;CAI/D,CAAC;AAEF,eAAO,MAAM,wBAAwB,YAElC,WAAW,CAAC,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,KAAG,OAAO,CAAC,eAAe,CA0E9D,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"countryServices.d.ts","sourceRoot":"","sources":["../../src/service/countryServices.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAC;AAGpE,eAAO,MAAM,eAAe,EAAE,eAE7B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolveDefaultCurrencyCodeService.d.ts","sourceRoot":"","sources":["../../src/service/resolveDefaultCurrencyCodeService.ts"],"names":[],"mappings":"AACA,OAAO,EAAW,iCAAiC,EAAE,MAAM,mCAAmC,CAAC;AAuB/F,eAAO,MAAM,iCAAiC,EAAE,iCAc/C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unchainedshop/core-countries",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.1",
|
|
4
4
|
"main": "lib/countries-index.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./lib/countries-index.js",
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/unchainedshop/unchained#readme",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@unchainedshop/events": "^2.
|
|
35
|
-
"@unchainedshop/utils": "^2.
|
|
36
|
-
"lru-cache": "^10.
|
|
34
|
+
"@unchainedshop/events": "^2.12.1",
|
|
35
|
+
"@unchainedshop/utils": "^2.12.1",
|
|
36
|
+
"lru-cache": "^10.4.0",
|
|
37
37
|
"simpl-schema": "^3.4.6"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@types/node": "^20.14.
|
|
41
|
-
"@unchainedshop/types": "^2.
|
|
40
|
+
"@types/node": "^20.14.10",
|
|
41
|
+
"@unchainedshop/types": "^2.12.1",
|
|
42
42
|
"cross-env": "^7.0.3",
|
|
43
43
|
"jest": "^29.7.0",
|
|
44
44
|
"ts-jest": "^29.1.5",
|
|
45
|
-
"typescript": "^5.
|
|
45
|
+
"typescript": "^5.5.3"
|
|
46
46
|
}
|
|
47
47
|
}
|