@unchainedshop/core-quotations 2.11.2 → 2.12.0
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/db/QuotationStatus.d.ts +1 -0
- package/lib/db/QuotationStatus.d.ts.map +1 -0
- package/lib/db/QuotationsCollection.d.ts +1 -0
- package/lib/db/QuotationsCollection.d.ts.map +1 -0
- package/lib/db/QuotationsSchema.d.ts +1 -0
- package/lib/db/QuotationsSchema.d.ts.map +1 -0
- package/lib/director/QuotationAdapter.d.ts +1 -0
- package/lib/director/QuotationAdapter.d.ts.map +1 -0
- package/lib/director/QuotationDirector.d.ts +1 -0
- package/lib/director/QuotationDirector.d.ts.map +1 -0
- package/lib/director/QuotationError.d.ts +1 -0
- package/lib/director/QuotationError.d.ts.map +1 -0
- package/lib/module/configureQuotationsModule.d.ts +1 -0
- package/lib/module/configureQuotationsModule.d.ts.map +1 -0
- package/lib/quotations-index.d.ts +1 -0
- package/lib/quotations-index.d.ts.map +1 -0
- package/lib/quotations-settings.d.ts +1 -0
- package/lib/quotations-settings.d.ts.map +1 -0
- package/package.json +7 -7
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QuotationStatus.d.ts","sourceRoot":"","sources":["../../src/db/QuotationStatus.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IACzB,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,QAAQ,aAAa;CACtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QuotationsCollection.d.ts","sourceRoot":"","sources":["../../src/db/QuotationsCollection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAkB,MAAM,wBAAwB,CAAC;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAE/D,eAAO,MAAM,oBAAoB,OAAc,OAAO,CAAC,EAAE,2CAgCxD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QuotationsSchema.d.ts","sourceRoot":"","sources":["../../src/db/QuotationsSchema.ts"],"names":[],"mappings":"AACA,OAAO,YAAY,MAAM,cAAc,CAAC;AAExC,eAAO,MAAM,gBAAgB,cA+B5B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QuotationAdapter.d.ts","sourceRoot":"","sources":["../../src/director/QuotationAdapter.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AAGvE,eAAO,MAAM,gBAAgB,EAAE,IAAI,CAAC,iBAAiB,EAAE,KAAK,GAAG,OAAO,GAAG,SAAS,CA8CjF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QuotationDirector.d.ts","sourceRoot":"","sources":["../../src/director/QuotationDirector.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,kBAAkB,EAEnB,MAAM,oCAAoC,CAAC;AAsB5C,eAAO,MAAM,iBAAiB,EAAE,kBA2E/B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QuotationError.d.ts","sourceRoot":"","sources":["../../src/director/QuotationError.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,iBAAiB,sBAAsB;IACvC,eAAe,oBAAoB;IACnC,wBAAwB,6BAA6B;IACrD,iBAAiB,sBAAsB;CACxC"}
|
|
@@ -5,3 +5,4 @@ export declare const buildFindSelector: (query?: QuotationQuery) => {
|
|
|
5
5
|
$text?: any;
|
|
6
6
|
};
|
|
7
7
|
export declare const configureQuotationsModule: ({ db, options: quotationsOptions, }: ModuleInput<QuotationsSettingsOptions>) => Promise<QuotationsModule>;
|
|
8
|
+
//# sourceMappingURL=configureQuotationsModule.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"configureQuotationsModule.d.ts","sourceRoot":"","sources":["../../src/module/configureQuotationsModule.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAkC,MAAM,8BAA8B,CAAC;AAC3F,OAAO,EAEL,cAAc,EACd,gBAAgB,EAChB,yBAAyB,EAC1B,MAAM,oCAAoC,CAAC;AAiB5C,eAAO,MAAM,iBAAiB,WAAW,cAAc;aAC1B,MAAM;YAAU,GAAG;CAS/C,CAAC;AASF,eAAO,MAAM,yBAAyB,wCAGnC,WAAW,CAAC,yBAAyB,CAAC,KAAG,OAAO,CAAC,gBAAgB,CAwTnE,CAAC"}
|
|
@@ -3,3 +3,4 @@ export { QuotationStatus } from './db/QuotationStatus.js';
|
|
|
3
3
|
export { QuotationAdapter } from './director/QuotationAdapter.js';
|
|
4
4
|
export { QuotationDirector } from './director/QuotationDirector.js';
|
|
5
5
|
export { quotationsSettings } from './quotations-settings.js';
|
|
6
|
+
//# sourceMappingURL=quotations-index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quotations-index.d.ts","sourceRoot":"","sources":["../src/quotations-index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,uCAAuC,CAAC;AAElF,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAClE,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AAEpE,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quotations-settings.d.ts","sourceRoot":"","sources":["../src/quotations-settings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAG/E,eAAO,MAAM,kBAAkB;;kDAGqC,yBAAyB;CAG5F,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unchainedshop/core-quotations",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"main": "lib/quotations-index.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./lib/quotations-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/logger": "^2.
|
|
36
|
-
"@unchainedshop/utils": "^2.
|
|
34
|
+
"@unchainedshop/events": "^2.12.0",
|
|
35
|
+
"@unchainedshop/logger": "^2.12.0",
|
|
36
|
+
"@unchainedshop/utils": "^2.12.0",
|
|
37
37
|
"simpl-schema": "^3.4.6"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/locale": "^0.1.4",
|
|
41
|
-
"@types/node": "^20.14.
|
|
42
|
-
"@unchainedshop/types": "^2.
|
|
41
|
+
"@types/node": "^20.14.9",
|
|
42
|
+
"@unchainedshop/types": "^2.12.0",
|
|
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
|
}
|