@vendure/core 1.9.5 → 1.9.6
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/config/catalog/default-collection-filters.d.ts +18 -19
- package/dist/entity/global-settings/global-settings.entity.js +3 -1
- package/dist/entity/global-settings/global-settings.entity.js.map +1 -1
- package/dist/entity/history-entry/customer-history-entry.entity.js +3 -1
- package/dist/entity/history-entry/customer-history-entry.entity.js.map +1 -1
- package/dist/entity/history-entry/order-history-entry.entity.js +3 -1
- package/dist/entity/history-entry/order-history-entry.entity.js.map +1 -1
- package/dist/entity/stock-movement/allocation.entity.d.ts +1 -2
- package/dist/entity/stock-movement/allocation.entity.js +3 -1
- package/dist/entity/stock-movement/allocation.entity.js.map +1 -1
- package/dist/entity/stock-movement/cancellation.entity.d.ts +1 -2
- package/dist/entity/stock-movement/cancellation.entity.js +3 -1
- package/dist/entity/stock-movement/cancellation.entity.js.map +1 -1
- package/dist/i18n/i18n.service.js +1 -0
- package/dist/i18n/i18n.service.js.map +1 -1
- package/dist/plugin/default-job-queue-plugin/default-job-queue-plugin.d.ts +1 -1
- package/package.json +3 -3
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { LanguageCode } from '@vendure/common/lib/generated-types';
|
|
2
1
|
import { ConfigArgDef } from '../../common/configurable-operation';
|
|
3
2
|
import { CollectionFilter } from './collection-filter';
|
|
4
3
|
/**
|
|
@@ -18,24 +17,24 @@ export declare const combineWithAndArg: ConfigArgDef<'boolean'>;
|
|
|
18
17
|
*/
|
|
19
18
|
export declare const facetValueCollectionFilter: CollectionFilter<{
|
|
20
19
|
facetValueIds: {
|
|
21
|
-
type:
|
|
20
|
+
type: string;
|
|
22
21
|
list: true;
|
|
23
22
|
ui: {
|
|
24
23
|
component: string;
|
|
25
24
|
};
|
|
26
25
|
label: {
|
|
27
|
-
languageCode:
|
|
26
|
+
languageCode: any;
|
|
28
27
|
value: string;
|
|
29
28
|
}[];
|
|
30
29
|
};
|
|
31
30
|
containsAny: {
|
|
32
|
-
type:
|
|
31
|
+
type: string;
|
|
33
32
|
label: {
|
|
34
|
-
languageCode:
|
|
33
|
+
languageCode: any;
|
|
35
34
|
value: string;
|
|
36
35
|
}[];
|
|
37
36
|
description: {
|
|
38
|
-
languageCode:
|
|
37
|
+
languageCode: any;
|
|
39
38
|
value: string;
|
|
40
39
|
}[];
|
|
41
40
|
};
|
|
@@ -58,10 +57,10 @@ export declare const variantNameCollectionFilter: CollectionFilter<{
|
|
|
58
57
|
}>;
|
|
59
58
|
export declare const variantIdCollectionFilter: CollectionFilter<{
|
|
60
59
|
variantIds: {
|
|
61
|
-
type:
|
|
60
|
+
type: string;
|
|
62
61
|
list: true;
|
|
63
62
|
label: {
|
|
64
|
-
languageCode:
|
|
63
|
+
languageCode: any;
|
|
65
64
|
value: string;
|
|
66
65
|
}[];
|
|
67
66
|
ui: {
|
|
@@ -73,10 +72,10 @@ export declare const variantIdCollectionFilter: CollectionFilter<{
|
|
|
73
72
|
}>;
|
|
74
73
|
export declare const productIdCollectionFilter: CollectionFilter<{
|
|
75
74
|
productIds: {
|
|
76
|
-
type:
|
|
75
|
+
type: string;
|
|
77
76
|
list: true;
|
|
78
77
|
label: {
|
|
79
|
-
languageCode:
|
|
78
|
+
languageCode: any;
|
|
80
79
|
value: string;
|
|
81
80
|
}[];
|
|
82
81
|
ui: {
|
|
@@ -88,24 +87,24 @@ export declare const productIdCollectionFilter: CollectionFilter<{
|
|
|
88
87
|
}>;
|
|
89
88
|
export declare const defaultCollectionFilters: (CollectionFilter<{
|
|
90
89
|
facetValueIds: {
|
|
91
|
-
type:
|
|
90
|
+
type: string;
|
|
92
91
|
list: true;
|
|
93
92
|
ui: {
|
|
94
93
|
component: string;
|
|
95
94
|
};
|
|
96
95
|
label: {
|
|
97
|
-
languageCode:
|
|
96
|
+
languageCode: any;
|
|
98
97
|
value: string;
|
|
99
98
|
}[];
|
|
100
99
|
};
|
|
101
100
|
containsAny: {
|
|
102
|
-
type:
|
|
101
|
+
type: string;
|
|
103
102
|
label: {
|
|
104
|
-
languageCode:
|
|
103
|
+
languageCode: any;
|
|
105
104
|
value: string;
|
|
106
105
|
}[];
|
|
107
106
|
description: {
|
|
108
|
-
languageCode:
|
|
107
|
+
languageCode: any;
|
|
109
108
|
value: string;
|
|
110
109
|
}[];
|
|
111
110
|
};
|
|
@@ -126,10 +125,10 @@ export declare const defaultCollectionFilters: (CollectionFilter<{
|
|
|
126
125
|
combineWithAnd: import("../../common/configurable-operation").ConfigArgCommonDef<"boolean"> & import("../../common/configurable-operation").WithArgConfig<never>;
|
|
127
126
|
}> | CollectionFilter<{
|
|
128
127
|
variantIds: {
|
|
129
|
-
type:
|
|
128
|
+
type: string;
|
|
130
129
|
list: true;
|
|
131
130
|
label: {
|
|
132
|
-
languageCode:
|
|
131
|
+
languageCode: any;
|
|
133
132
|
value: string;
|
|
134
133
|
}[];
|
|
135
134
|
ui: {
|
|
@@ -140,10 +139,10 @@ export declare const defaultCollectionFilters: (CollectionFilter<{
|
|
|
140
139
|
combineWithAnd: import("../../common/configurable-operation").ConfigArgCommonDef<"boolean"> & import("../../common/configurable-operation").WithArgConfig<never>;
|
|
141
140
|
}> | CollectionFilter<{
|
|
142
141
|
productIds: {
|
|
143
|
-
type:
|
|
142
|
+
type: string;
|
|
144
143
|
list: true;
|
|
145
144
|
label: {
|
|
146
|
-
languageCode:
|
|
145
|
+
languageCode: any;
|
|
147
146
|
value: string;
|
|
148
147
|
}[];
|
|
149
148
|
ui: {
|
|
@@ -8,8 +8,10 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
|
+
var _a;
|
|
11
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
13
|
exports.GlobalSettings = void 0;
|
|
14
|
+
const shared_types_1 = require("@vendure/common/lib/shared-types");
|
|
13
15
|
const typeorm_1 = require("typeorm");
|
|
14
16
|
const __1 = require("..");
|
|
15
17
|
const custom_entity_fields_1 = require("../custom-entity-fields");
|
|
@@ -36,7 +38,7 @@ __decorate([
|
|
|
36
38
|
], GlobalSettings.prototype, "customFields", void 0);
|
|
37
39
|
GlobalSettings = __decorate([
|
|
38
40
|
typeorm_1.Entity(),
|
|
39
|
-
__metadata("design:paramtypes", [Object])
|
|
41
|
+
__metadata("design:paramtypes", [typeof (_a = typeof shared_types_1.DeepPartial !== "undefined" && shared_types_1.DeepPartial) === "function" ? _a : Object])
|
|
40
42
|
], GlobalSettings);
|
|
41
43
|
exports.GlobalSettings = GlobalSettings;
|
|
42
44
|
//# sourceMappingURL=global-settings.entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"global-settings.entity.js","sourceRoot":"","sources":["../../../src/entity/global-settings/global-settings.entity.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"global-settings.entity.js","sourceRoot":"","sources":["../../../src/entity/global-settings/global-settings.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AACA,mEAA+D;AAC/D,qCAAyC;AAEzC,0BAAmC;AAEnC,kEAAqE;AAGrE,IAAa,cAAc,GAA3B,MAAa,cAAe,SAAQ,iBAAa;IAC7C,YAAY,KAAmC;QAC3C,KAAK,CAAC,KAAK,CAAC,CAAC;IACjB,CAAC;CAwBJ,CAAA;AArBG;IADC,gBAAM,CAAC,cAAc,CAAC;;0DACY;AASnC;IADC,gBAAM,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;;sDACF;AAQxB;IADC,gBAAM,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;;2DACK;AAG5B;IADC,gBAAM,CAAC,IAAI,CAAC,EAAE,CAAC,iDAA0B,CAAC;8BAC7B,iDAA0B;oDAAC;AA1BhC,cAAc;IAD1B,gBAAM,EAAE;yDAEe,0BAAW,oBAAX,0BAAW;GADtB,cAAc,CA2B1B;AA3BY,wCAAc"}
|
|
@@ -8,8 +8,10 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
|
+
var _a;
|
|
11
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
13
|
exports.CustomerHistoryEntry = void 0;
|
|
14
|
+
const shared_types_1 = require("@vendure/common/lib/shared-types");
|
|
13
15
|
const typeorm_1 = require("typeorm");
|
|
14
16
|
const customer_entity_1 = require("../customer/customer.entity");
|
|
15
17
|
const history_entry_entity_1 = require("./history-entry.entity");
|
|
@@ -30,7 +32,7 @@ __decorate([
|
|
|
30
32
|
], CustomerHistoryEntry.prototype, "customer", void 0);
|
|
31
33
|
CustomerHistoryEntry = __decorate([
|
|
32
34
|
typeorm_1.ChildEntity(),
|
|
33
|
-
__metadata("design:paramtypes", [Object])
|
|
35
|
+
__metadata("design:paramtypes", [typeof (_a = typeof shared_types_1.DeepPartial !== "undefined" && shared_types_1.DeepPartial) === "function" ? _a : Object])
|
|
34
36
|
], CustomerHistoryEntry);
|
|
35
37
|
exports.CustomerHistoryEntry = CustomerHistoryEntry;
|
|
36
38
|
//# sourceMappingURL=customer-history-entry.entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customer-history-entry.entity.js","sourceRoot":"","sources":["../../../src/entity/history-entry/customer-history-entry.entity.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"customer-history-entry.entity.js","sourceRoot":"","sources":["../../../src/entity/history-entry/customer-history-entry.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mEAA+D;AAC/D,qCAAiD;AAEjD,iEAAuD;AAEvD,iEAAsD;AAEtD;;;;;GAKG;AAEH,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,mCAAY;IAClD,YAAY,KAAwC;QAChD,KAAK,CAAC,KAAK,CAAC,CAAC;IACjB,CAAC;CAIJ,CAAA;AADG;IADC,mBAAS,CAAC,IAAI,CAAC,EAAE,CAAC,0BAAQ,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC3C,0BAAQ;sDAAC;AANV,oBAAoB;IADhC,qBAAW,EAAE;yDAES,0BAAW,oBAAX,0BAAW;GADrB,oBAAoB,CAOhC;AAPY,oDAAoB"}
|
|
@@ -8,8 +8,10 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
|
+
var _a;
|
|
11
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
13
|
exports.OrderHistoryEntry = void 0;
|
|
14
|
+
const shared_types_1 = require("@vendure/common/lib/shared-types");
|
|
13
15
|
const typeorm_1 = require("typeorm");
|
|
14
16
|
const order_entity_1 = require("../order/order.entity");
|
|
15
17
|
const history_entry_entity_1 = require("./history-entry.entity");
|
|
@@ -30,7 +32,7 @@ __decorate([
|
|
|
30
32
|
], OrderHistoryEntry.prototype, "order", void 0);
|
|
31
33
|
OrderHistoryEntry = __decorate([
|
|
32
34
|
typeorm_1.ChildEntity(),
|
|
33
|
-
__metadata("design:paramtypes", [Object])
|
|
35
|
+
__metadata("design:paramtypes", [typeof (_a = typeof shared_types_1.DeepPartial !== "undefined" && shared_types_1.DeepPartial) === "function" ? _a : Object])
|
|
34
36
|
], OrderHistoryEntry);
|
|
35
37
|
exports.OrderHistoryEntry = OrderHistoryEntry;
|
|
36
38
|
//# sourceMappingURL=order-history-entry.entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"order-history-entry.entity.js","sourceRoot":"","sources":["../../../src/entity/history-entry/order-history-entry.entity.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"order-history-entry.entity.js","sourceRoot":"","sources":["../../../src/entity/history-entry/order-history-entry.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mEAA+D;AAC/D,qCAAiD;AAEjD,wDAA8C;AAE9C,iEAAsD;AAEtD;;;;;GAKG;AAEH,IAAa,iBAAiB,GAA9B,MAAa,iBAAkB,SAAQ,mCAAY;IAC/C,YAAY,KAAqC;QAC7C,KAAK,CAAC,KAAK,CAAC,CAAC;IACjB,CAAC;CAIJ,CAAA;AADG;IADC,mBAAS,CAAC,IAAI,CAAC,EAAE,CAAC,oBAAK,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC3C,oBAAK;gDAAC;AANJ,iBAAiB;IAD7B,qBAAW,EAAE;yDAES,0BAAW,oBAAX,0BAAW;GADrB,iBAAiB,CAO7B;AAPY,8CAAiB"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { StockMovementType } from '@vendure/common/lib/generated-types';
|
|
2
1
|
import { DeepPartial } from '@vendure/common/lib/shared-types';
|
|
3
2
|
import { OrderLine } from '../order-line/order-line.entity';
|
|
4
3
|
import { StockMovement } from './stock-movement.entity';
|
|
@@ -11,7 +10,7 @@ import { StockMovement } from './stock-movement.entity';
|
|
|
11
10
|
* @docsPage StockMovement
|
|
12
11
|
*/
|
|
13
12
|
export declare class Allocation extends StockMovement {
|
|
14
|
-
readonly type
|
|
13
|
+
readonly type: any;
|
|
15
14
|
constructor(input: DeepPartial<Allocation>);
|
|
16
15
|
orderLine: OrderLine;
|
|
17
16
|
}
|
|
@@ -8,9 +8,11 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
|
+
var _a;
|
|
11
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
13
|
exports.Allocation = void 0;
|
|
13
14
|
const generated_types_1 = require("@vendure/common/lib/generated-types");
|
|
15
|
+
const shared_types_1 = require("@vendure/common/lib/shared-types");
|
|
14
16
|
const typeorm_1 = require("typeorm");
|
|
15
17
|
const order_line_entity_1 = require("../order-line/order-line.entity");
|
|
16
18
|
const stock_movement_entity_1 = require("./stock-movement.entity");
|
|
@@ -34,7 +36,7 @@ __decorate([
|
|
|
34
36
|
], Allocation.prototype, "orderLine", void 0);
|
|
35
37
|
Allocation = __decorate([
|
|
36
38
|
typeorm_1.ChildEntity(),
|
|
37
|
-
__metadata("design:paramtypes", [Object])
|
|
39
|
+
__metadata("design:paramtypes", [typeof (_a = typeof shared_types_1.DeepPartial !== "undefined" && shared_types_1.DeepPartial) === "function" ? _a : Object])
|
|
38
40
|
], Allocation);
|
|
39
41
|
exports.Allocation = Allocation;
|
|
40
42
|
//# sourceMappingURL=allocation.entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"allocation.entity.js","sourceRoot":"","sources":["../../../src/entity/stock-movement/allocation.entity.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"allocation.entity.js","sourceRoot":"","sources":["../../../src/entity/stock-movement/allocation.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yEAAwE;AACxE,mEAA+D;AAC/D,qCAAiD;AAEjD,uEAA4D;AAE5D,mEAAwD;AAExD;;;;;;;GAOG;AAEH,IAAa,UAAU,GAAvB,MAAa,UAAW,SAAQ,qCAAa;IAGzC,YAAY,KAA8B;QACtC,KAAK,CAAC,KAAK,CAAC,CAAC;QAHR,SAAI,GAAG,mCAAiB,CAAC,UAAU,CAAC;IAI7C,CAAC;CAIJ,CAAA;AADG;IADC,mBAAS,CAAC,IAAI,CAAC,EAAE,CAAC,6BAAS,CAAC;8BAClB,6BAAS;6CAAC;AARZ,UAAU;IADtB,qBAAW,EAAE;yDAIS,0BAAW,oBAAX,0BAAW;GAHrB,UAAU,CAStB;AATY,gCAAU"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { StockMovementType } from '@vendure/common/lib/generated-types';
|
|
2
1
|
import { DeepPartial } from '@vendure/common/lib/shared-types';
|
|
3
2
|
import { OrderItem } from '../order-item/order-item.entity';
|
|
4
3
|
import { StockMovement } from './stock-movement.entity';
|
|
@@ -10,7 +9,7 @@ import { StockMovement } from './stock-movement.entity';
|
|
|
10
9
|
* @docsPage StockMovement
|
|
11
10
|
*/
|
|
12
11
|
export declare class Cancellation extends StockMovement {
|
|
13
|
-
readonly type
|
|
12
|
+
readonly type: any;
|
|
14
13
|
constructor(input: DeepPartial<Cancellation>);
|
|
15
14
|
orderItem: OrderItem;
|
|
16
15
|
}
|
|
@@ -8,9 +8,11 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
|
+
var _a;
|
|
11
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
13
|
exports.Cancellation = void 0;
|
|
13
14
|
const generated_types_1 = require("@vendure/common/lib/generated-types");
|
|
15
|
+
const shared_types_1 = require("@vendure/common/lib/shared-types");
|
|
14
16
|
const typeorm_1 = require("typeorm");
|
|
15
17
|
const order_item_entity_1 = require("../order-item/order-item.entity");
|
|
16
18
|
const stock_movement_entity_1 = require("./stock-movement.entity");
|
|
@@ -33,7 +35,7 @@ __decorate([
|
|
|
33
35
|
], Cancellation.prototype, "orderItem", void 0);
|
|
34
36
|
Cancellation = __decorate([
|
|
35
37
|
typeorm_1.ChildEntity(),
|
|
36
|
-
__metadata("design:paramtypes", [Object])
|
|
38
|
+
__metadata("design:paramtypes", [typeof (_a = typeof shared_types_1.DeepPartial !== "undefined" && shared_types_1.DeepPartial) === "function" ? _a : Object])
|
|
37
39
|
], Cancellation);
|
|
38
40
|
exports.Cancellation = Cancellation;
|
|
39
41
|
//# sourceMappingURL=cancellation.entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cancellation.entity.js","sourceRoot":"","sources":["../../../src/entity/stock-movement/cancellation.entity.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"cancellation.entity.js","sourceRoot":"","sources":["../../../src/entity/stock-movement/cancellation.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yEAAwE;AACxE,mEAA+D;AAC/D,qCAAiD;AAEjD,uEAA4D;AAE5D,mEAAwD;AAExD;;;;;;GAMG;AAEH,IAAa,YAAY,GAAzB,MAAa,YAAa,SAAQ,qCAAa;IAG3C,YAAY,KAAgC;QACxC,KAAK,CAAC,KAAK,CAAC,CAAC;QAHR,SAAI,GAAG,mCAAiB,CAAC,YAAY,CAAC;IAI/C,CAAC;CAIJ,CAAA;AADG;IADC,mBAAS,CAAC,IAAI,CAAC,EAAE,CAAC,6BAAS,EAAE,SAAS,CAAC,EAAE,CAAC,SAAS,CAAC,YAAY,CAAC;8BACvD,6BAAS;+CAAC;AARZ,YAAY;IADxB,qBAAW,EAAE;yDAIS,0BAAW,oBAAX,0BAAW;GAHrB,YAAY,CASxB;AATY,oCAAY"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"i18n.service.js","sourceRoot":"","sources":["../../src/i18n/i18n.service.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"i18n.service.js","sourceRoot":"","sources":["../../src/i18n/i18n.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -16,7 +16,7 @@ export interface DefaultJobQueueOptions {
|
|
|
16
16
|
* are active, the polling may cause undue load on the database, in which case this value
|
|
17
17
|
* should be increased to e.g. 1000.
|
|
18
18
|
*
|
|
19
|
-
* @
|
|
19
|
+
* @default 200
|
|
20
20
|
*/
|
|
21
21
|
pollInterval?: number | ((queueName: string) => number);
|
|
22
22
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vendure/core",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.6",
|
|
4
4
|
"description": "A modern, headless ecommerce framework",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@nestjs/testing": "7.6.17",
|
|
50
50
|
"@nestjs/typeorm": "7.1.5",
|
|
51
51
|
"@types/fs-extra": "^9.0.1",
|
|
52
|
-
"@vendure/common": "^1.9.
|
|
52
|
+
"@vendure/common": "^1.9.6",
|
|
53
53
|
"apollo-server-express": "2.24.1",
|
|
54
54
|
"bcrypt": "^5.1.0",
|
|
55
55
|
"body-parser": "^1.19.0",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"sqlite3": "^5.0.0",
|
|
102
102
|
"typescript": "4.3.5"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "154780bf3b9b6b4e98174d1a992c0539f936f26d"
|
|
105
105
|
}
|