synunu-libs 1.0.48 → 1.0.49
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/dto/collection.dto.d.ts +4 -3
- package/dist/dto/collection.dto.d.ts.map +1 -1
- package/dist/dto/collection.dto.js +12 -11
- package/dist/dto/collection.dto.js.map +1 -1
- package/dist/dto/inventory-adjustment.dto.d.ts +4 -0
- package/dist/dto/inventory-adjustment.dto.d.ts.map +1 -1
- package/dist/dto/inventory-adjustment.dto.js +13 -0
- package/dist/dto/inventory-adjustment.dto.js.map +1 -1
- package/dist/dto/inventory-item.dto.d.ts +4 -0
- package/dist/dto/inventory-item.dto.d.ts.map +1 -1
- package/dist/dto/inventory-item.dto.js +13 -0
- package/dist/dto/inventory-item.dto.js.map +1 -1
- package/dist/dto/inventory-level.dto.d.ts +4 -0
- package/dist/dto/inventory-level.dto.d.ts.map +1 -1
- package/dist/dto/inventory-level.dto.js +13 -0
- package/dist/dto/inventory-level.dto.js.map +1 -1
- package/dist/dto/inventory-location.dto.d.ts +4 -0
- package/dist/dto/inventory-location.dto.d.ts.map +1 -1
- package/dist/dto/inventory-location.dto.js +13 -0
- package/dist/dto/inventory-location.dto.js.map +1 -1
- package/dist/dto/inventory-storage.dto.d.ts +4 -0
- package/dist/dto/inventory-storage.dto.d.ts.map +1 -1
- package/dist/dto/inventory-storage.dto.js +13 -0
- package/dist/dto/inventory-storage.dto.js.map +1 -1
- package/dist/dto/menu.dto.d.ts +4 -0
- package/dist/dto/menu.dto.d.ts.map +1 -1
- package/dist/dto/menu.dto.js +13 -0
- package/dist/dto/menu.dto.js.map +1 -1
- package/dist/dto/option.dto.d.ts +4 -0
- package/dist/dto/option.dto.d.ts.map +1 -1
- package/dist/dto/option.dto.js +13 -0
- package/dist/dto/option.dto.js.map +1 -1
- package/dist/dto/order-by.input.d.ts +6 -0
- package/dist/dto/order-by.input.d.ts.map +1 -0
- package/dist/dto/order-by.input.js +29 -0
- package/dist/dto/order-by.input.js.map +1 -0
- package/dist/dto/packsize.dto.d.ts +4 -0
- package/dist/dto/packsize.dto.d.ts.map +1 -1
- package/dist/dto/packsize.dto.js +13 -0
- package/dist/dto/packsize.dto.js.map +1 -1
- package/dist/dto/product-image.dto.d.ts +4 -0
- package/dist/dto/product-image.dto.d.ts.map +1 -1
- package/dist/dto/product-image.dto.js +13 -0
- package/dist/dto/product-image.dto.js.map +1 -1
- package/dist/dto/product-type.dto.d.ts +4 -0
- package/dist/dto/product-type.dto.d.ts.map +1 -1
- package/dist/dto/product-type.dto.js +13 -0
- package/dist/dto/product-type.dto.js.map +1 -1
- package/dist/dto/product.dto.d.ts +4 -0
- package/dist/dto/product.dto.d.ts.map +1 -1
- package/dist/dto/product.dto.js +13 -0
- package/dist/dto/product.dto.js.map +1 -1
- package/dist/dto/publication.dto.d.ts +4 -0
- package/dist/dto/publication.dto.d.ts.map +1 -1
- package/dist/dto/publication.dto.js +13 -0
- package/dist/dto/publication.dto.js.map +1 -1
- package/dist/dto/receive-inventory.dto.d.ts +4 -0
- package/dist/dto/receive-inventory.dto.d.ts.map +1 -1
- package/dist/dto/receive-inventory.dto.js +13 -0
- package/dist/dto/receive-inventory.dto.js.map +1 -1
- package/dist/dto/roles.dto.d.ts +4 -0
- package/dist/dto/roles.dto.d.ts.map +1 -1
- package/dist/dto/roles.dto.js +13 -0
- package/dist/dto/roles.dto.js.map +1 -1
- package/dist/dto/tag.dto.d.ts +3 -0
- package/dist/dto/tag.dto.d.ts.map +1 -1
- package/dist/dto/tag.dto.js +9 -0
- package/dist/dto/tag.dto.js.map +1 -1
- package/dist/dto/variant.dto.d.ts +4 -0
- package/dist/dto/variant.dto.d.ts.map +1 -1
- package/dist/dto/variant.dto.js +13 -0
- package/dist/dto/variant.dto.js.map +1 -1
- package/dist/dto/vendor.dto.d.ts +3 -7
- package/dist/dto/vendor.dto.d.ts.map +1 -1
- package/dist/dto/vendor.dto.js +4 -18
- package/dist/dto/vendor.dto.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { DateRangeInput } from "./date-range.input";
|
|
|
2
2
|
import { ECollectionType, ESortOrder } from "../enum";
|
|
3
3
|
import { CollectionImageInput } from "./collection-image.input";
|
|
4
4
|
import { CollectionRuleInput } from "./collection-rule.input";
|
|
5
|
+
import { OrderByInput } from "./order-by.input";
|
|
5
6
|
export declare class CreateCollectionInput {
|
|
6
7
|
name: string;
|
|
7
8
|
alias: string;
|
|
@@ -18,10 +19,10 @@ export declare class CreateCollectionInput {
|
|
|
18
19
|
disjunctive?: boolean;
|
|
19
20
|
}
|
|
20
21
|
export declare class CollectionFilterInput {
|
|
22
|
+
searchKey?: string;
|
|
23
|
+
orderBy?: OrderByInput[];
|
|
21
24
|
createdAt?: DateRangeInput;
|
|
22
|
-
|
|
23
|
-
alias?: string;
|
|
24
|
-
type?: ECollectionType;
|
|
25
|
+
updatedAt?: DateRangeInput;
|
|
25
26
|
}
|
|
26
27
|
declare const UpdateCollectionInput_base: import("@nestjs/common").Type<Partial<CreateCollectionInput>>;
|
|
27
28
|
export declare class UpdateCollectionInput extends UpdateCollectionInput_base {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collection.dto.d.ts","sourceRoot":"","sources":["../../src/dto/collection.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACtD,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"collection.dto.d.ts","sourceRoot":"","sources":["../../src/dto/collection.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACtD,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,qBACa,qBAAqB;IAEhC,IAAI,EAAE,MAAM,CAAC;IAGb,KAAK,EAAE,MAAM,CAAC;IAGd,UAAU,EAAE,MAAM,EAAE,CAAC;IAGrB,WAAW,CAAC,EAAE,MAAM,CAAC;IAGrB,WAAW,CAAC,EAAE,IAAI,CAAC;IAGnB,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,eAAe,CAAC,EAAE,MAAM,CAAC;IAGzB,cAAc,CAAC,EAAE,MAAM,CAAC;IAGxB,SAAS,CAAC,EAAE,UAAU,CAAC;IAGvB,KAAK,CAAC,EAAE,oBAAoB,CAAC;IAG7B,KAAK,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAG9B,IAAI,CAAC,EAAE,eAAe,CAAC;IAGvB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,qBACa,qBAAqB;IAEhC,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IAGzB,SAAS,CAAC,EAAE,cAAc,CAAC;IAG3B,SAAS,CAAC,EAAE,cAAc,CAAC;CAC5B;;AAED,qBACa,qBAAsB,SAAQ,0BAAkC;IAE3E,GAAG,EAAE,MAAM,CAAC;CACb"}
|
|
@@ -15,6 +15,7 @@ const date_range_input_1 = require("./date-range.input");
|
|
|
15
15
|
const enum_1 = require("../enum");
|
|
16
16
|
const collection_image_input_1 = require("./collection-image.input");
|
|
17
17
|
const collection_rule_input_1 = require("./collection-rule.input");
|
|
18
|
+
const order_by_input_1 = require("./order-by.input");
|
|
18
19
|
let CreateCollectionInput = class CreateCollectionInput {
|
|
19
20
|
};
|
|
20
21
|
exports.CreateCollectionInput = CreateCollectionInput;
|
|
@@ -76,22 +77,22 @@ exports.CreateCollectionInput = CreateCollectionInput = __decorate([
|
|
|
76
77
|
let CollectionFilterInput = class CollectionFilterInput {
|
|
77
78
|
};
|
|
78
79
|
exports.CollectionFilterInput = CollectionFilterInput;
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, graphql_1.Field)(() => String, { nullable: true }),
|
|
82
|
+
__metadata("design:type", String)
|
|
83
|
+
], CollectionFilterInput.prototype, "searchKey", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, graphql_1.Field)(() => [order_by_input_1.OrderByInput], { nullable: true }),
|
|
86
|
+
__metadata("design:type", Array)
|
|
87
|
+
], CollectionFilterInput.prototype, "orderBy", void 0);
|
|
79
88
|
__decorate([
|
|
80
89
|
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
81
90
|
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
82
91
|
], CollectionFilterInput.prototype, "createdAt", void 0);
|
|
83
92
|
__decorate([
|
|
84
|
-
(0, graphql_1.Field)({ nullable: true }),
|
|
85
|
-
__metadata("design:type",
|
|
86
|
-
], CollectionFilterInput.prototype, "
|
|
87
|
-
__decorate([
|
|
88
|
-
(0, graphql_1.Field)({ nullable: true }),
|
|
89
|
-
__metadata("design:type", String)
|
|
90
|
-
], CollectionFilterInput.prototype, "alias", void 0);
|
|
91
|
-
__decorate([
|
|
92
|
-
(0, graphql_1.Field)(() => enum_1.ECollectionType, { nullable: true }),
|
|
93
|
-
__metadata("design:type", String)
|
|
94
|
-
], CollectionFilterInput.prototype, "type", void 0);
|
|
93
|
+
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
94
|
+
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
95
|
+
], CollectionFilterInput.prototype, "updatedAt", void 0);
|
|
95
96
|
exports.CollectionFilterInput = CollectionFilterInput = __decorate([
|
|
96
97
|
(0, graphql_1.InputType)()
|
|
97
98
|
], CollectionFilterInput);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collection.dto.js","sourceRoot":"","sources":["../../src/dto/collection.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,yDAAoD;AACpD,kCAAsD;AACtD,qEAAgE;AAChE,mEAA8D;
|
|
1
|
+
{"version":3,"file":"collection.dto.js","sourceRoot":"","sources":["../../src/dto/collection.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,yDAAoD;AACpD,kCAAsD;AACtD,qEAAgE;AAChE,mEAA8D;AAC9D,qDAAgD;AAGzC,IAAM,qBAAqB,GAA3B,MAAM,qBAAqB;CAuCjC,CAAA;AAvCY,sDAAqB;AAEhC;IADC,IAAA,eAAK,GAAE;;mDACK;AAGb;IADC,IAAA,eAAK,GAAE;;oDACM;AAGd;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC;;yDACD;AAGrB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACL;AAGrB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACZ,IAAI;0DAAC;AAGnB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDACP;AAGnB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8DACD;AAGzB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DACF;AAGxB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iBAAU,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDACrB;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,6CAAoB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC9C,6CAAoB;oDAAC;AAG7B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,2CAAmB,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACzB;AAG9B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,sBAAe,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAC1B;AAGvB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACJ;gCAtCX,qBAAqB;IADjC,IAAA,mBAAS,GAAE;GACC,qBAAqB,CAuCjC;AAGM,IAAM,qBAAqB,GAA3B,MAAM,qBAAqB;CAYjC,CAAA;AAZY,sDAAqB;AAEhC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDACrB;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,6BAAY,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDACvB;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;wDAAC;AAG3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;wDAAC;gCAXhB,qBAAqB;IADjC,IAAA,mBAAS,GAAE;GACC,qBAAqB,CAYjC;AAGM,IAAM,qBAAqB,GAA3B,MAAM,qBAAsB,SAAQ,IAAA,qBAAW,EAAC,qBAAqB,CAAC;CAG5E,CAAA;AAHY,sDAAqB;AAEhC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;kDACR;gCAFD,qBAAqB;IADjC,IAAA,mBAAS,GAAE;GACC,qBAAqB,CAGjC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DateRangeInput } from "./date-range.input";
|
|
2
|
+
import { OrderByInput } from "./order-by.input";
|
|
2
3
|
declare class AdjustmentChangeInput {
|
|
3
4
|
deltaValue: number;
|
|
4
5
|
valueAfterChange: number;
|
|
@@ -21,7 +22,10 @@ export declare class CreateInventoryAdjustmentInput {
|
|
|
21
22
|
issuedAt?: Date;
|
|
22
23
|
}
|
|
23
24
|
export declare class InventoryAdjustmentFilterInput {
|
|
25
|
+
searchKey?: string;
|
|
26
|
+
orderBy?: OrderByInput[];
|
|
24
27
|
createdAt?: DateRangeInput;
|
|
28
|
+
updatedAt?: DateRangeInput;
|
|
25
29
|
}
|
|
26
30
|
declare const UpdateInventoryAdjustmentInput_base: import("@nestjs/common").Type<Partial<CreateInventoryAdjustmentInput>>;
|
|
27
31
|
export declare class UpdateInventoryAdjustmentInput extends UpdateInventoryAdjustmentInput_base {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory-adjustment.dto.d.ts","sourceRoot":"","sources":["../../src/dto/inventory-adjustment.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"inventory-adjustment.dto.d.ts","sourceRoot":"","sources":["../../src/dto/inventory-adjustment.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,cAAM,qBAAqB;IAEzB,UAAU,EAAE,MAAM,CAAC;IAGnB,gBAAgB,EAAE,MAAM,CAAC;IAGzB,UAAU,EAAE,QAAQ,GAAG,WAAW,CAAC;IAGnC,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,qBACa,8BAA8B;IAEzC,cAAc,EAAE,MAAM,CAAC;IAGvB,QAAQ,EAAE,MAAM,CAAC;IAGjB,eAAe,EAAE,MAAM,CAAC;IAGxB,OAAO,EAAE,qBAAqB,EAAE,CAAC;IAGjC,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAG/B,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAG/B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAG9B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAG7B,uBAAuB,CAAC,EAAE,MAAM,CAAC;IAGjC,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,QAAQ,CAAC,EAAE,IAAI,CAAC;CACjB;AAED,qBACa,8BAA8B;IAEzC,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IAGzB,SAAS,CAAC,EAAE,cAAc,CAAC;IAG3B,SAAS,CAAC,EAAE,cAAc,CAAC;CAC5B;;AAED,qBACa,8BAA+B,SAAQ,mCAEnD;IAEC,GAAG,EAAE,MAAM,CAAC;CACb"}
|
|
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.UpdateInventoryAdjustmentInput = exports.InventoryAdjustmentFilterInput = exports.CreateInventoryAdjustmentInput = void 0;
|
|
13
13
|
const graphql_1 = require("@nestjs/graphql");
|
|
14
14
|
const date_range_input_1 = require("./date-range.input");
|
|
15
|
+
const order_by_input_1 = require("./order-by.input");
|
|
15
16
|
class AdjustmentChangeInput {
|
|
16
17
|
}
|
|
17
18
|
__decorate([
|
|
@@ -91,10 +92,22 @@ exports.CreateInventoryAdjustmentInput = CreateInventoryAdjustmentInput = __deco
|
|
|
91
92
|
let InventoryAdjustmentFilterInput = class InventoryAdjustmentFilterInput {
|
|
92
93
|
};
|
|
93
94
|
exports.InventoryAdjustmentFilterInput = InventoryAdjustmentFilterInput;
|
|
95
|
+
__decorate([
|
|
96
|
+
(0, graphql_1.Field)(() => String, { nullable: true }),
|
|
97
|
+
__metadata("design:type", String)
|
|
98
|
+
], InventoryAdjustmentFilterInput.prototype, "searchKey", void 0);
|
|
99
|
+
__decorate([
|
|
100
|
+
(0, graphql_1.Field)(() => [order_by_input_1.OrderByInput], { nullable: true }),
|
|
101
|
+
__metadata("design:type", Array)
|
|
102
|
+
], InventoryAdjustmentFilterInput.prototype, "orderBy", void 0);
|
|
94
103
|
__decorate([
|
|
95
104
|
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
96
105
|
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
97
106
|
], InventoryAdjustmentFilterInput.prototype, "createdAt", void 0);
|
|
107
|
+
__decorate([
|
|
108
|
+
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
109
|
+
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
110
|
+
], InventoryAdjustmentFilterInput.prototype, "updatedAt", void 0);
|
|
98
111
|
exports.InventoryAdjustmentFilterInput = InventoryAdjustmentFilterInput = __decorate([
|
|
99
112
|
(0, graphql_1.InputType)()
|
|
100
113
|
], InventoryAdjustmentFilterInput);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory-adjustment.dto.js","sourceRoot":"","sources":["../../src/dto/inventory-adjustment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,yDAAoD;
|
|
1
|
+
{"version":3,"file":"inventory-adjustment.dto.js","sourceRoot":"","sources":["../../src/dto/inventory-adjustment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,yDAAoD;AACpD,qDAAgD;AAEhD,MAAM,qBAAqB;CAY1B;AAVC;IADC,IAAA,eAAK,GAAE;;yDACW;AAGnB;IADC,IAAA,eAAK,GAAE;;+DACiB;AAGzB;IADC,IAAA,eAAK,GAAE;;yDAC2B;AAGnC;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDACV;AAIX,IAAM,8BAA8B,GAApC,MAAM,8BAA8B;CAuC1C,CAAA;AAvCY,wEAA8B;AAEzC;IADC,IAAA,eAAK,GAAE;;sEACe;AAGvB;IADC,IAAA,eAAK,GAAE;;gEACS;AAGjB;IADC,IAAA,eAAK,GAAE;;uEACgB;AAGxB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,qBAAqB,CAAC,CAAC;;+DACJ;AAGjC;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6EACK;AAG/B;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6EACK;AAG/B;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4EACI;AAG9B;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2EACG;AAG7B;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+EACO;AAGjC;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+DACT;AAGjB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iEACP;AAGnB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gEACR;AAGlB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACf,IAAI;gEAAC;yCAtCL,8BAA8B;IAD1C,IAAA,mBAAS,GAAE;GACC,8BAA8B,CAuC1C;AAGM,IAAM,8BAA8B,GAApC,MAAM,8BAA8B;CAY1C,CAAA;AAZY,wEAA8B;AAEzC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iEACrB;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,6BAAY,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+DACvB;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;iEAAC;AAG3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;iEAAC;yCAXhB,8BAA8B;IAD1C,IAAA,mBAAS,GAAE;GACC,8BAA8B,CAY1C;AAGM,IAAM,8BAA8B,GAApC,MAAM,8BAA+B,SAAQ,IAAA,qBAAW,EAC7D,8BAA8B,CAC/B;CAGA,CAAA;AALY,wEAA8B;AAIzC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;2DACR;yCAJD,8BAA8B;IAD1C,IAAA,mBAAS,GAAE;GACC,8BAA8B,CAK1C"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DateRangeInput } from "./date-range.input";
|
|
2
|
+
import { OrderByInput } from "./order-by.input";
|
|
2
3
|
export declare class CreateInventoryItemInput {
|
|
3
4
|
organizationId: string;
|
|
4
5
|
productId: string;
|
|
@@ -12,7 +13,10 @@ export declare class CreateInventoryItemInput {
|
|
|
12
13
|
alertBeforeExpiredInDay?: number | null;
|
|
13
14
|
}
|
|
14
15
|
export declare class InventoryItemFilterInput {
|
|
16
|
+
searchKey?: string;
|
|
17
|
+
orderBy?: OrderByInput[];
|
|
15
18
|
createdAt?: DateRangeInput;
|
|
19
|
+
updatedAt?: DateRangeInput;
|
|
16
20
|
}
|
|
17
21
|
declare const UpdateInventoryItemInput_base: import("@nestjs/common").Type<Partial<CreateInventoryItemInput>>;
|
|
18
22
|
export declare class UpdateInventoryItemInput extends UpdateInventoryItemInput_base {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory-item.dto.d.ts","sourceRoot":"","sources":["../../src/dto/inventory-item.dto.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"inventory-item.dto.d.ts","sourceRoot":"","sources":["../../src/dto/inventory-item.dto.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,qBACa,wBAAwB;IAEnC,cAAc,EAAE,MAAM,CAAC;IAGvB,SAAS,EAAE,MAAM,CAAC;IAGlB,SAAS,EAAE,MAAM,CAAC;IAGlB,GAAG,CAAC,EAAE,MAAM,CAAC;IAGb,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,EAAE,OAAO,CAAC;IAGjB,gBAAgB,EAAE,OAAO,CAAC;IAG1B,SAAS,EAAE,MAAM,CAAC;IAGlB,aAAa,EAAE,OAAO,CAAC;IAGvB,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACzC;AACD,qBACa,wBAAwB;IAEnC,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IAGzB,SAAS,CAAC,EAAE,cAAc,CAAC;IAG3B,SAAS,CAAC,EAAE,cAAc,CAAC;CAC5B;;AAED,qBACa,wBAAyB,SAAQ,6BAE7C;IAEC,GAAG,EAAE,MAAM,CAAC;CACb"}
|
|
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.UpdateInventoryItemInput = exports.InventoryItemFilterInput = exports.CreateInventoryItemInput = void 0;
|
|
13
13
|
const graphql_1 = require("@nestjs/graphql");
|
|
14
14
|
const date_range_input_1 = require("./date-range.input");
|
|
15
|
+
const order_by_input_1 = require("./order-by.input");
|
|
15
16
|
let CreateInventoryItemInput = class CreateInventoryItemInput {
|
|
16
17
|
};
|
|
17
18
|
exports.CreateInventoryItemInput = CreateInventoryItemInput;
|
|
@@ -61,10 +62,22 @@ exports.CreateInventoryItemInput = CreateInventoryItemInput = __decorate([
|
|
|
61
62
|
let InventoryItemFilterInput = class InventoryItemFilterInput {
|
|
62
63
|
};
|
|
63
64
|
exports.InventoryItemFilterInput = InventoryItemFilterInput;
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, graphql_1.Field)(() => String, { nullable: true }),
|
|
67
|
+
__metadata("design:type", String)
|
|
68
|
+
], InventoryItemFilterInput.prototype, "searchKey", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, graphql_1.Field)(() => [order_by_input_1.OrderByInput], { nullable: true }),
|
|
71
|
+
__metadata("design:type", Array)
|
|
72
|
+
], InventoryItemFilterInput.prototype, "orderBy", void 0);
|
|
64
73
|
__decorate([
|
|
65
74
|
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
66
75
|
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
67
76
|
], InventoryItemFilterInput.prototype, "createdAt", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
79
|
+
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
80
|
+
], InventoryItemFilterInput.prototype, "updatedAt", void 0);
|
|
68
81
|
exports.InventoryItemFilterInput = InventoryItemFilterInput = __decorate([
|
|
69
82
|
(0, graphql_1.InputType)()
|
|
70
83
|
], InventoryItemFilterInput);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory-item.dto.js","sourceRoot":"","sources":["../../src/dto/inventory-item.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAuE;AAGvE,yDAAoD;
|
|
1
|
+
{"version":3,"file":"inventory-item.dto.js","sourceRoot":"","sources":["../../src/dto/inventory-item.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAuE;AAGvE,yDAAoD;AACpD,qDAAgD;AAGzC,IAAM,wBAAwB,GAA9B,MAAM,wBAAwB;CA8BpC,CAAA;AA9BY,4DAAwB;AAEnC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;gEACG;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;2DACF;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;2DACF;AAGlB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDACb;AAGb;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACT;AAGjB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC;;yDAC5B;AAGjB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC;;kEACnB;AAG1B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAK,EAAE,EAAE,YAAY,EAAE,CAAC,EAAE,CAAC;;2DACtB;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,KAAK,EAAE,CAAC;;+DACvB;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAK,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yEACC;mCA7B7B,wBAAwB;IADpC,IAAA,mBAAS,GAAE;GACC,wBAAwB,CA8BpC;AAEM,IAAM,wBAAwB,GAA9B,MAAM,wBAAwB;CAYpC,CAAA;AAZY,4DAAwB;AAEnC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2DACrB;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,6BAAY,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACvB;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;2DAAC;AAG3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;2DAAC;mCAXhB,wBAAwB;IADpC,IAAA,mBAAS,GAAE;GACC,wBAAwB,CAYpC;AAGM,IAAM,wBAAwB,GAA9B,MAAM,wBAAyB,SAAQ,IAAA,qBAAW,EACvD,wBAAwB,CACzB;CAGA,CAAA;AALY,4DAAwB;AAInC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;qDACR;mCAJD,wBAAwB;IADpC,IAAA,mBAAS,GAAE;GACC,wBAAwB,CAKpC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DateRangeInput } from "./date-range.input";
|
|
2
|
+
import { OrderByInput } from "./order-by.input";
|
|
2
3
|
export declare class CreateInventoryLevelInput {
|
|
3
4
|
variantId: string;
|
|
4
5
|
organizationId: string;
|
|
@@ -10,7 +11,10 @@ export declare class CreateInventoryLevelInput {
|
|
|
10
11
|
incoming: number;
|
|
11
12
|
}
|
|
12
13
|
export declare class InventoryLevelFilterInput {
|
|
14
|
+
searchKey?: string;
|
|
15
|
+
orderBy?: OrderByInput[];
|
|
13
16
|
createdAt?: DateRangeInput;
|
|
17
|
+
updatedAt?: DateRangeInput;
|
|
14
18
|
}
|
|
15
19
|
declare const UpdateInventoryLevelInput_base: import("@nestjs/common").Type<Partial<CreateInventoryLevelInput>>;
|
|
16
20
|
export declare class UpdateInventoryLevelInput extends UpdateInventoryLevelInput_base {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory-level.dto.d.ts","sourceRoot":"","sources":["../../src/dto/inventory-level.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"inventory-level.dto.d.ts","sourceRoot":"","sources":["../../src/dto/inventory-level.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,qBACa,yBAAyB;IAEpC,SAAS,EAAE,MAAM,CAAC;IAGlB,cAAc,EAAE,MAAM,CAAC;IAGvB,eAAe,EAAE,MAAM,CAAC;IAGxB,QAAQ,EAAE,MAAM,CAAC;IAGjB,MAAM,EAAE,MAAM,CAAC;IAGf,SAAS,EAAE,MAAM,CAAC;IAGlB,SAAS,EAAE,MAAM,CAAC;IAGlB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,qBACa,yBAAyB;IAEpC,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IAGzB,SAAS,CAAC,EAAE,cAAc,CAAC;IAG3B,SAAS,CAAC,EAAE,cAAc,CAAC;CAC5B;;AAED,qBACa,yBAA0B,SAAQ,8BAE9C;IAEC,GAAG,EAAE,MAAM,CAAC;CACb"}
|
|
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.UpdateInventoryLevelInput = exports.InventoryLevelFilterInput = exports.CreateInventoryLevelInput = void 0;
|
|
13
13
|
const graphql_1 = require("@nestjs/graphql");
|
|
14
14
|
const date_range_input_1 = require("./date-range.input");
|
|
15
|
+
const order_by_input_1 = require("./order-by.input");
|
|
15
16
|
let CreateInventoryLevelInput = class CreateInventoryLevelInput {
|
|
16
17
|
};
|
|
17
18
|
exports.CreateInventoryLevelInput = CreateInventoryLevelInput;
|
|
@@ -53,10 +54,22 @@ exports.CreateInventoryLevelInput = CreateInventoryLevelInput = __decorate([
|
|
|
53
54
|
let InventoryLevelFilterInput = class InventoryLevelFilterInput {
|
|
54
55
|
};
|
|
55
56
|
exports.InventoryLevelFilterInput = InventoryLevelFilterInput;
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, graphql_1.Field)(() => String, { nullable: true }),
|
|
59
|
+
__metadata("design:type", String)
|
|
60
|
+
], InventoryLevelFilterInput.prototype, "searchKey", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, graphql_1.Field)(() => [order_by_input_1.OrderByInput], { nullable: true }),
|
|
63
|
+
__metadata("design:type", Array)
|
|
64
|
+
], InventoryLevelFilterInput.prototype, "orderBy", void 0);
|
|
56
65
|
__decorate([
|
|
57
66
|
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
58
67
|
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
59
68
|
], InventoryLevelFilterInput.prototype, "createdAt", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
71
|
+
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
72
|
+
], InventoryLevelFilterInput.prototype, "updatedAt", void 0);
|
|
60
73
|
exports.InventoryLevelFilterInput = InventoryLevelFilterInput = __decorate([
|
|
61
74
|
(0, graphql_1.InputType)()
|
|
62
75
|
], InventoryLevelFilterInput);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory-level.dto.js","sourceRoot":"","sources":["../../src/dto/inventory-level.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAuE;AACvE,yDAAoD;
|
|
1
|
+
{"version":3,"file":"inventory-level.dto.js","sourceRoot":"","sources":["../../src/dto/inventory-level.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAuE;AACvE,yDAAoD;AACpD,qDAAgD;AAGzC,IAAM,yBAAyB,GAA/B,MAAM,yBAAyB;CAwBrC,CAAA;AAxBY,8DAAyB;AAEpC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;4DACF;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;iEACG;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;kEACI;AAGxB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;2DACH;AAGjB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAK,CAAC;;yDACJ;AAGf;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAK,CAAC;;4DACD;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAK,CAAC;;4DACD;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAK,CAAC;;2DACF;oCAvBN,yBAAyB;IADrC,IAAA,mBAAS,GAAE;GACC,yBAAyB,CAwBrC;AAGM,IAAM,yBAAyB,GAA/B,MAAM,yBAAyB;CAYrC,CAAA;AAZY,8DAAyB;AAEpC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4DACrB;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,6BAAY,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACvB;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;4DAAC;AAG3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;4DAAC;oCAXhB,yBAAyB;IADrC,IAAA,mBAAS,GAAE;GACC,yBAAyB,CAYrC;AAGM,IAAM,yBAAyB,GAA/B,MAAM,yBAA0B,SAAQ,IAAA,qBAAW,EACxD,yBAAyB,CAC1B;CAGA,CAAA;AALY,8DAAyB;AAIpC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;sDACR;oCAJD,yBAAyB;IADrC,IAAA,mBAAS,GAAE;GACC,yBAAyB,CAKrC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TranslationInput } from "./translation.input";
|
|
2
2
|
import { UserType } from "../enum";
|
|
3
3
|
import { DateRangeInput } from "./date-range.input";
|
|
4
|
+
import { OrderByInput } from "./order-by.input";
|
|
4
5
|
export declare class CreateInventoryLocationInput {
|
|
5
6
|
key: string;
|
|
6
7
|
label: TranslationInput;
|
|
@@ -15,7 +16,10 @@ export declare class CreateInventoryLocationInput {
|
|
|
15
16
|
isActive?: boolean;
|
|
16
17
|
}
|
|
17
18
|
export declare class InventoryLocationFilterInput {
|
|
19
|
+
searchKey?: string;
|
|
20
|
+
orderBy?: OrderByInput[];
|
|
18
21
|
createdAt?: DateRangeInput;
|
|
22
|
+
updatedAt?: DateRangeInput;
|
|
19
23
|
}
|
|
20
24
|
declare const UpdateInventoryLocationInput_base: import("@nestjs/common").Type<Partial<CreateInventoryLocationInput>>;
|
|
21
25
|
export declare class UpdateInventoryLocationInput extends UpdateInventoryLocationInput_base {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory-location.dto.d.ts","sourceRoot":"","sources":["../../src/dto/inventory-location.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"inventory-location.dto.d.ts","sourceRoot":"","sources":["../../src/dto/inventory-location.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,qBACa,4BAA4B;IAEvC,GAAG,EAAE,MAAM,CAAC;IAGZ,KAAK,EAAE,gBAAgB,CAAC;IAGxB,IAAI,CAAC,EAAE,MAAM,CAAC;IAGd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,IAAI,CAAC,EAAE,gBAAgB,CAAC;IAGxB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IAGpB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,CAAC,EAAE,OAAO,CAAC;IAGlB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IAGvB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAGvB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,qBACa,4BAA4B;IAEvC,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IAGzB,SAAS,CAAC,EAAE,cAAc,CAAC;IAG3B,SAAS,CAAC,EAAE,cAAc,CAAC;CAC5B;;AAED,qBACa,4BAA6B,SAAQ,iCAEjD;IAEC,GAAG,EAAE,MAAM,CAAC;CACb"}
|
|
@@ -14,6 +14,7 @@ const graphql_1 = require("@nestjs/graphql");
|
|
|
14
14
|
const translation_input_1 = require("./translation.input");
|
|
15
15
|
const enum_1 = require("../enum");
|
|
16
16
|
const date_range_input_1 = require("./date-range.input");
|
|
17
|
+
const order_by_input_1 = require("./order-by.input");
|
|
17
18
|
let CreateInventoryLocationInput = class CreateInventoryLocationInput {
|
|
18
19
|
};
|
|
19
20
|
exports.CreateInventoryLocationInput = CreateInventoryLocationInput;
|
|
@@ -67,10 +68,22 @@ exports.CreateInventoryLocationInput = CreateInventoryLocationInput = __decorate
|
|
|
67
68
|
let InventoryLocationFilterInput = class InventoryLocationFilterInput {
|
|
68
69
|
};
|
|
69
70
|
exports.InventoryLocationFilterInput = InventoryLocationFilterInput;
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, graphql_1.Field)(() => String, { nullable: true }),
|
|
73
|
+
__metadata("design:type", String)
|
|
74
|
+
], InventoryLocationFilterInput.prototype, "searchKey", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, graphql_1.Field)(() => [order_by_input_1.OrderByInput], { nullable: true }),
|
|
77
|
+
__metadata("design:type", Array)
|
|
78
|
+
], InventoryLocationFilterInput.prototype, "orderBy", void 0);
|
|
70
79
|
__decorate([
|
|
71
80
|
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
72
81
|
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
73
82
|
], InventoryLocationFilterInput.prototype, "createdAt", void 0);
|
|
83
|
+
__decorate([
|
|
84
|
+
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
85
|
+
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
86
|
+
], InventoryLocationFilterInput.prototype, "updatedAt", void 0);
|
|
74
87
|
exports.InventoryLocationFilterInput = InventoryLocationFilterInput = __decorate([
|
|
75
88
|
(0, graphql_1.InputType)()
|
|
76
89
|
], InventoryLocationFilterInput);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory-location.dto.js","sourceRoot":"","sources":["../../src/dto/inventory-location.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,2DAAuD;AACvD,kCAAmC;AACnC,yDAAoD;
|
|
1
|
+
{"version":3,"file":"inventory-location.dto.js","sourceRoot":"","sources":["../../src/dto/inventory-location.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,2DAAuD;AACvD,kCAAmC;AACnC,yDAAoD;AACpD,qDAAgD;AAGzC,IAAM,4BAA4B,GAAlC,MAAM,4BAA4B;CAiCxC,CAAA;AAjCY,oEAA4B;AAEvC;IADC,IAAA,eAAK,GAAE;;yDACI;AAGZ;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oCAAgB,CAAC;8BACvB,oCAAgB;2DAAC;AAGxB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACZ;AAGd;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8DACR;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oCAAgB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC3C,oCAAgB;0DAAC;AAGxB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAQ,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,eAAQ,CAAC,KAAK,EAAE,CAAC;;8DACpD;AAGpB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC,EAAE,CAAC;;2DAC5B;AAGf;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC;;6DAC5B;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,EAAE,EAAE,CAAC;;iEACrC;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4DACjB;AAGvB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC;;8DAC3B;uCAhCR,4BAA4B;IADxC,IAAA,mBAAS,GAAE;GACC,4BAA4B,CAiCxC;AAGM,IAAM,4BAA4B,GAAlC,MAAM,4BAA4B;CAYxC,CAAA;AAZY,oEAA4B;AAEvC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+DACrB;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,6BAAY,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DACvB;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;+DAAC;AAG3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;+DAAC;uCAXhB,4BAA4B;IADxC,IAAA,mBAAS,GAAE;GACC,4BAA4B,CAYxC;AAGM,IAAM,4BAA4B,GAAlC,MAAM,4BAA6B,SAAQ,IAAA,qBAAW,EAC3D,4BAA4B,CAC7B;CAGA,CAAA;AALY,oEAA4B;AAIvC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;yDACR;uCAJD,4BAA4B;IADxC,IAAA,mBAAS,GAAE;GACC,4BAA4B,CAKxC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TranslationInput } from "./translation.input";
|
|
2
2
|
import { UserType } from "../enum";
|
|
3
3
|
import { DateRangeInput } from "./date-range.input";
|
|
4
|
+
import { OrderByInput } from "./order-by.input";
|
|
4
5
|
export declare class CreateInventoryStorageInput {
|
|
5
6
|
key: string;
|
|
6
7
|
label: TranslationInput;
|
|
@@ -15,7 +16,10 @@ export declare class CreateInventoryStorageInput {
|
|
|
15
16
|
isActive?: boolean;
|
|
16
17
|
}
|
|
17
18
|
export declare class InventoryStorageFilterInput {
|
|
19
|
+
searchKey?: string;
|
|
20
|
+
orderBy?: OrderByInput[];
|
|
18
21
|
createdAt?: DateRangeInput;
|
|
22
|
+
updatedAt?: DateRangeInput;
|
|
19
23
|
}
|
|
20
24
|
declare const UpdateInventoryStorageInput_base: import("@nestjs/common").Type<Partial<CreateInventoryStorageInput>>;
|
|
21
25
|
export declare class UpdateInventoryStorageInput extends UpdateInventoryStorageInput_base {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory-storage.dto.d.ts","sourceRoot":"","sources":["../../src/dto/inventory-storage.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"inventory-storage.dto.d.ts","sourceRoot":"","sources":["../../src/dto/inventory-storage.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,qBACa,2BAA2B;IAEtC,GAAG,EAAE,MAAM,CAAC;IAGZ,KAAK,EAAE,gBAAgB,CAAC;IAGxB,IAAI,CAAC,EAAE,MAAM,CAAC;IAGd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,IAAI,CAAC,EAAE,gBAAgB,CAAC;IAGxB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IAGpB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,CAAC,EAAE,OAAO,CAAC;IAGlB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IAGvB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAGvB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,qBACa,2BAA2B;IAEtC,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IAGzB,SAAS,CAAC,EAAE,cAAc,CAAC;IAG3B,SAAS,CAAC,EAAE,cAAc,CAAC;CAC5B;;AAED,qBACa,2BAA4B,SAAQ,gCAEhD;IAEC,GAAG,EAAE,MAAM,CAAC;CACb"}
|
|
@@ -14,6 +14,7 @@ const graphql_1 = require("@nestjs/graphql");
|
|
|
14
14
|
const translation_input_1 = require("./translation.input");
|
|
15
15
|
const enum_1 = require("../enum");
|
|
16
16
|
const date_range_input_1 = require("./date-range.input");
|
|
17
|
+
const order_by_input_1 = require("./order-by.input");
|
|
17
18
|
let CreateInventoryStorageInput = class CreateInventoryStorageInput {
|
|
18
19
|
};
|
|
19
20
|
exports.CreateInventoryStorageInput = CreateInventoryStorageInput;
|
|
@@ -67,10 +68,22 @@ exports.CreateInventoryStorageInput = CreateInventoryStorageInput = __decorate([
|
|
|
67
68
|
let InventoryStorageFilterInput = class InventoryStorageFilterInput {
|
|
68
69
|
};
|
|
69
70
|
exports.InventoryStorageFilterInput = InventoryStorageFilterInput;
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, graphql_1.Field)(() => String, { nullable: true }),
|
|
73
|
+
__metadata("design:type", String)
|
|
74
|
+
], InventoryStorageFilterInput.prototype, "searchKey", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, graphql_1.Field)(() => [order_by_input_1.OrderByInput], { nullable: true }),
|
|
77
|
+
__metadata("design:type", Array)
|
|
78
|
+
], InventoryStorageFilterInput.prototype, "orderBy", void 0);
|
|
70
79
|
__decorate([
|
|
71
80
|
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
72
81
|
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
73
82
|
], InventoryStorageFilterInput.prototype, "createdAt", void 0);
|
|
83
|
+
__decorate([
|
|
84
|
+
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
85
|
+
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
86
|
+
], InventoryStorageFilterInput.prototype, "updatedAt", void 0);
|
|
74
87
|
exports.InventoryStorageFilterInput = InventoryStorageFilterInput = __decorate([
|
|
75
88
|
(0, graphql_1.InputType)()
|
|
76
89
|
], InventoryStorageFilterInput);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory-storage.dto.js","sourceRoot":"","sources":["../../src/dto/inventory-storage.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,2DAAuD;AACvD,kCAAmC;AACnC,yDAAoD;
|
|
1
|
+
{"version":3,"file":"inventory-storage.dto.js","sourceRoot":"","sources":["../../src/dto/inventory-storage.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,2DAAuD;AACvD,kCAAmC;AACnC,yDAAoD;AACpD,qDAAgD;AAGzC,IAAM,2BAA2B,GAAjC,MAAM,2BAA2B;CAiCvC,CAAA;AAjCY,kEAA2B;AAEtC;IADC,IAAA,eAAK,GAAE;;wDACI;AAGZ;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oCAAgB,CAAC;8BACvB,oCAAgB;0DAAC;AAGxB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACZ;AAGd;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DACR;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oCAAgB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC3C,oCAAgB;yDAAC;AAGxB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAQ,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,eAAQ,CAAC,KAAK,EAAE,CAAC;;6DACpD;AAGpB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC,EAAE,CAAC;;0DAC5B;AAGf;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC;;4DAC5B;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,EAAE,EAAE,CAAC;;gEACrC;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2DACjB;AAGvB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC;;6DAC3B;sCAhCR,2BAA2B;IADvC,IAAA,mBAAS,GAAE;GACC,2BAA2B,CAiCvC;AAGM,IAAM,2BAA2B,GAAjC,MAAM,2BAA2B;CAYvC,CAAA;AAZY,kEAA2B;AAEtC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8DACrB;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,6BAAY,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4DACvB;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;8DAAC;AAG3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;8DAAC;sCAXhB,2BAA2B;IADvC,IAAA,mBAAS,GAAE;GACC,2BAA2B,CAYvC;AAGM,IAAM,2BAA2B,GAAjC,MAAM,2BAA4B,SAAQ,IAAA,qBAAW,EAC1D,2BAA2B,CAC5B;CAGA,CAAA;AALY,kEAA2B;AAItC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;wDACR;sCAJD,2BAA2B;IADvC,IAAA,mBAAS,GAAE;GACC,2BAA2B,CAKvC"}
|
package/dist/dto/menu.dto.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TranslationInput } from "./translation.input";
|
|
2
2
|
import { UserType } from "../enum";
|
|
3
3
|
import { DateRangeInput } from "./date-range.input";
|
|
4
|
+
import { OrderByInput } from "./order-by.input";
|
|
4
5
|
export declare class CreateMenuInput {
|
|
5
6
|
key: string;
|
|
6
7
|
label: TranslationInput;
|
|
@@ -15,7 +16,10 @@ export declare class CreateMenuInput {
|
|
|
15
16
|
isActive?: boolean;
|
|
16
17
|
}
|
|
17
18
|
export declare class MenuFilterInput {
|
|
19
|
+
searchKey?: string;
|
|
20
|
+
orderBy?: OrderByInput[];
|
|
18
21
|
createdAt?: DateRangeInput;
|
|
22
|
+
updatedAt?: DateRangeInput;
|
|
19
23
|
}
|
|
20
24
|
declare const UpdateMenuInput_base: import("@nestjs/common").Type<Partial<CreateMenuInput>>;
|
|
21
25
|
export declare class UpdateMenuInput extends UpdateMenuInput_base {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menu.dto.d.ts","sourceRoot":"","sources":["../../src/dto/menu.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAEvD,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"menu.dto.d.ts","sourceRoot":"","sources":["../../src/dto/menu.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAEvD,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,qBACa,eAAe;IAE1B,GAAG,EAAE,MAAM,CAAC;IAGZ,KAAK,EAAE,gBAAgB,CAAC;IAGxB,IAAI,CAAC,EAAE,MAAM,CAAC;IAGd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,IAAI,CAAC,EAAE,gBAAgB,CAAC;IAGxB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IAGpB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,CAAC,EAAE,OAAO,CAAC;IAGlB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IAGvB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAGvB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,qBACa,eAAe;IAE1B,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IAGzB,SAAS,CAAC,EAAE,cAAc,CAAC;IAG3B,SAAS,CAAC,EAAE,cAAc,CAAC;CAC5B;;AAED,qBACa,eAAgB,SAAQ,oBAA4B;IAE/D,GAAG,EAAE,MAAM,CAAC;CACb"}
|
package/dist/dto/menu.dto.js
CHANGED
|
@@ -14,6 +14,7 @@ const graphql_1 = require("@nestjs/graphql");
|
|
|
14
14
|
const translation_input_1 = require("./translation.input");
|
|
15
15
|
const enum_1 = require("../enum");
|
|
16
16
|
const date_range_input_1 = require("./date-range.input");
|
|
17
|
+
const order_by_input_1 = require("./order-by.input");
|
|
17
18
|
let CreateMenuInput = class CreateMenuInput {
|
|
18
19
|
};
|
|
19
20
|
exports.CreateMenuInput = CreateMenuInput;
|
|
@@ -67,10 +68,22 @@ exports.CreateMenuInput = CreateMenuInput = __decorate([
|
|
|
67
68
|
let MenuFilterInput = class MenuFilterInput {
|
|
68
69
|
};
|
|
69
70
|
exports.MenuFilterInput = MenuFilterInput;
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, graphql_1.Field)(() => String, { nullable: true }),
|
|
73
|
+
__metadata("design:type", String)
|
|
74
|
+
], MenuFilterInput.prototype, "searchKey", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, graphql_1.Field)(() => [order_by_input_1.OrderByInput], { nullable: true }),
|
|
77
|
+
__metadata("design:type", Array)
|
|
78
|
+
], MenuFilterInput.prototype, "orderBy", void 0);
|
|
70
79
|
__decorate([
|
|
71
80
|
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
72
81
|
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
73
82
|
], MenuFilterInput.prototype, "createdAt", void 0);
|
|
83
|
+
__decorate([
|
|
84
|
+
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
85
|
+
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
86
|
+
], MenuFilterInput.prototype, "updatedAt", void 0);
|
|
74
87
|
exports.MenuFilterInput = MenuFilterInput = __decorate([
|
|
75
88
|
(0, graphql_1.InputType)()
|
|
76
89
|
], MenuFilterInput);
|
package/dist/dto/menu.dto.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menu.dto.js","sourceRoot":"","sources":["../../src/dto/menu.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,2DAAuD;AAEvD,kCAAmC;AACnC,yDAAoD;
|
|
1
|
+
{"version":3,"file":"menu.dto.js","sourceRoot":"","sources":["../../src/dto/menu.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,2DAAuD;AAEvD,kCAAmC;AACnC,yDAAoD;AACpD,qDAAgD;AAGzC,IAAM,eAAe,GAArB,MAAM,eAAe;CAiC3B,CAAA;AAjCY,0CAAe;AAE1B;IADC,IAAA,eAAK,GAAE;;4CACI;AAGZ;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oCAAgB,CAAC;8BACvB,oCAAgB;8CAAC;AAGxB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACZ;AAGd;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACR;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oCAAgB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC3C,oCAAgB;6CAAC;AAGxB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAQ,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,eAAQ,CAAC,KAAK,EAAE,CAAC;;iDACpD;AAGpB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC,EAAE,CAAC;;8CAC5B;AAGf;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC;;gDAC5B;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,EAAE,EAAE,CAAC;;oDACrC;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACjB;AAGvB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC;;iDAC3B;0BAhCR,eAAe;IAD3B,IAAA,mBAAS,GAAE;GACC,eAAe,CAiC3B;AAGM,IAAM,eAAe,GAArB,MAAM,eAAe;CAY3B,CAAA;AAZY,0CAAe;AAE1B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDACrB;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,6BAAY,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACvB;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;kDAAC;AAG3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;kDAAC;0BAXhB,eAAe;IAD3B,IAAA,mBAAS,GAAE;GACC,eAAe,CAY3B;AAGM,IAAM,eAAe,GAArB,MAAM,eAAgB,SAAQ,IAAA,qBAAW,EAAC,eAAe,CAAC;CAGhE,CAAA;AAHY,0CAAe;AAE1B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;4CACR;0BAFD,eAAe;IAD3B,IAAA,mBAAS,GAAE;GACC,eAAe,CAG3B"}
|
package/dist/dto/option.dto.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TranslationInput } from "./translation.input";
|
|
2
2
|
import { UserType } from "../enum";
|
|
3
3
|
import { DateRangeInput } from "./date-range.input";
|
|
4
|
+
import { OrderByInput } from "./order-by.input";
|
|
4
5
|
export declare class CreateOptionInput {
|
|
5
6
|
key: string;
|
|
6
7
|
label: TranslationInput;
|
|
@@ -15,7 +16,10 @@ export declare class CreateOptionInput {
|
|
|
15
16
|
isActive?: boolean;
|
|
16
17
|
}
|
|
17
18
|
export declare class OptionFilterInput {
|
|
19
|
+
searchKey?: string;
|
|
20
|
+
orderBy?: OrderByInput[];
|
|
18
21
|
createdAt?: DateRangeInput;
|
|
22
|
+
updatedAt?: DateRangeInput;
|
|
19
23
|
}
|
|
20
24
|
declare const UpdateOptionInput_base: import("@nestjs/common").Type<Partial<CreateOptionInput>>;
|
|
21
25
|
export declare class UpdateOptionInput extends UpdateOptionInput_base {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"option.dto.d.ts","sourceRoot":"","sources":["../../src/dto/option.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"option.dto.d.ts","sourceRoot":"","sources":["../../src/dto/option.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,qBACa,iBAAiB;IAE5B,GAAG,EAAE,MAAM,CAAC;IAGZ,KAAK,EAAE,gBAAgB,CAAC;IAGxB,IAAI,CAAC,EAAE,MAAM,CAAC;IAGd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,IAAI,CAAC,EAAE,gBAAgB,CAAC;IAGxB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IAGpB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,CAAC,EAAE,OAAO,CAAC;IAGlB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IAGvB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAGvB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,qBACa,iBAAiB;IAE5B,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IAGzB,SAAS,CAAC,EAAE,cAAc,CAAC;IAG3B,SAAS,CAAC,EAAE,cAAc,CAAC;CAC5B;;AAED,qBACa,iBAAkB,SAAQ,sBAA8B;IAEnE,GAAG,EAAE,MAAM,CAAC;CACb"}
|
package/dist/dto/option.dto.js
CHANGED
|
@@ -14,6 +14,7 @@ const graphql_1 = require("@nestjs/graphql");
|
|
|
14
14
|
const translation_input_1 = require("./translation.input");
|
|
15
15
|
const enum_1 = require("../enum");
|
|
16
16
|
const date_range_input_1 = require("./date-range.input");
|
|
17
|
+
const order_by_input_1 = require("./order-by.input");
|
|
17
18
|
let CreateOptionInput = class CreateOptionInput {
|
|
18
19
|
};
|
|
19
20
|
exports.CreateOptionInput = CreateOptionInput;
|
|
@@ -67,10 +68,22 @@ exports.CreateOptionInput = CreateOptionInput = __decorate([
|
|
|
67
68
|
let OptionFilterInput = class OptionFilterInput {
|
|
68
69
|
};
|
|
69
70
|
exports.OptionFilterInput = OptionFilterInput;
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, graphql_1.Field)(() => String, { nullable: true }),
|
|
73
|
+
__metadata("design:type", String)
|
|
74
|
+
], OptionFilterInput.prototype, "searchKey", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, graphql_1.Field)(() => [order_by_input_1.OrderByInput], { nullable: true }),
|
|
77
|
+
__metadata("design:type", Array)
|
|
78
|
+
], OptionFilterInput.prototype, "orderBy", void 0);
|
|
70
79
|
__decorate([
|
|
71
80
|
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
72
81
|
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
73
82
|
], OptionFilterInput.prototype, "createdAt", void 0);
|
|
83
|
+
__decorate([
|
|
84
|
+
(0, graphql_1.Field)(() => date_range_input_1.DateRangeInput, { nullable: true }),
|
|
85
|
+
__metadata("design:type", date_range_input_1.DateRangeInput)
|
|
86
|
+
], OptionFilterInput.prototype, "updatedAt", void 0);
|
|
74
87
|
exports.OptionFilterInput = OptionFilterInput = __decorate([
|
|
75
88
|
(0, graphql_1.InputType)()
|
|
76
89
|
], OptionFilterInput);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"option.dto.js","sourceRoot":"","sources":["../../src/dto/option.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,2DAAuD;AACvD,kCAAmC;AACnC,yDAAoD;
|
|
1
|
+
{"version":3,"file":"option.dto.js","sourceRoot":"","sources":["../../src/dto/option.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,2DAAuD;AACvD,kCAAmC;AACnC,yDAAoD;AACpD,qDAAgD;AAGzC,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAiC7B,CAAA;AAjCY,8CAAiB;AAE5B;IADC,IAAA,eAAK,GAAE;;8CACI;AAGZ;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oCAAgB,CAAC;8BACvB,oCAAgB;gDAAC;AAGxB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACZ;AAGd;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDACR;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oCAAgB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC3C,oCAAgB;+CAAC;AAGxB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,eAAQ,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,eAAQ,CAAC,KAAK,EAAE,CAAC;;mDACpD;AAGpB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC,EAAE,CAAC;;gDAC5B;AAGf;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC;;kDAC5B;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,EAAE,EAAE,CAAC;;sDACrC;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACjB;AAGvB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC;;mDAC3B;4BAhCR,iBAAiB;IAD7B,IAAA,mBAAS,GAAE;GACC,iBAAiB,CAiC7B;AAGM,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAY7B,CAAA;AAZY,8CAAiB;AAE5B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACrB;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,6BAAY,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDACvB;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;oDAAC;AAG3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;oDAAC;4BAXhB,iBAAiB;IAD7B,IAAA,mBAAS,GAAE;GACC,iBAAiB,CAY7B;AAGM,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,IAAA,qBAAW,EAAC,iBAAiB,CAAC;CAGpE,CAAA;AAHY,8CAAiB;AAE5B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;8CACR;4BAFD,iBAAiB;IAD7B,IAAA,mBAAS,GAAE;GACC,iBAAiB,CAG7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"order-by.input.d.ts","sourceRoot":"","sources":["../../src/dto/order-by.input.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAEzC,qBACa,YAAY;IAEvB,KAAK,EAAE,MAAM,CAAC;IAGd,SAAS,EAAE,cAAc,CAAC;CAC3B"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.OrderByInput = void 0;
|
|
13
|
+
const graphql_1 = require("@nestjs/graphql");
|
|
14
|
+
const enum_1 = require("../enum");
|
|
15
|
+
let OrderByInput = class OrderByInput {
|
|
16
|
+
};
|
|
17
|
+
exports.OrderByInput = OrderByInput;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, graphql_1.Field)(() => String),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], OrderByInput.prototype, "field", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, graphql_1.Field)(() => enum_1.ESortDirection),
|
|
24
|
+
__metadata("design:type", Number)
|
|
25
|
+
], OrderByInput.prototype, "direction", void 0);
|
|
26
|
+
exports.OrderByInput = OrderByInput = __decorate([
|
|
27
|
+
(0, graphql_1.InputType)()
|
|
28
|
+
], OrderByInput);
|
|
29
|
+
//# sourceMappingURL=order-by.input.js.map
|