synunu-libs 1.0.48 → 1.0.50
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/constants/patterns.constant.d.ts +4 -4
- package/dist/constants/patterns.constant.js +1 -1
- package/dist/constants/patterns.constant.js.map +1 -1
- package/dist/constants/permission.constant.d.ts +4 -4
- package/dist/constants/permission.constant.js +1 -1
- package/dist/constants/permission.constant.js.map +1 -1
- 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 +15 -13
- package/dist/dto/product-type.dto.d.ts.map +1 -1
- package/dist/dto/product-type.dto.js +40 -42
- 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
|
@@ -177,28 +177,28 @@ export declare const MESSAGE_PATTERNS: {
|
|
|
177
177
|
readonly UPDATE: `${string}_update`;
|
|
178
178
|
readonly DELETE: `${string}_delete`;
|
|
179
179
|
} & ExtraPatterns<never>;
|
|
180
|
-
readonly
|
|
180
|
+
readonly RECEIVE_INVENTORIES: {
|
|
181
181
|
readonly FIND_ALL: `${string}_find_all`;
|
|
182
182
|
readonly FIND_BY_ID: `${string}_find_by_id`;
|
|
183
183
|
readonly CREATE: `${string}_create`;
|
|
184
184
|
readonly UPDATE: `${string}_update`;
|
|
185
185
|
readonly DELETE: `${string}_delete`;
|
|
186
186
|
} & ExtraPatterns<never>;
|
|
187
|
-
readonly
|
|
187
|
+
readonly INVENTORY_ADJUSTMENTS: {
|
|
188
188
|
readonly FIND_ALL: `${string}_find_all`;
|
|
189
189
|
readonly FIND_BY_ID: `${string}_find_by_id`;
|
|
190
190
|
readonly CREATE: `${string}_create`;
|
|
191
191
|
readonly UPDATE: `${string}_update`;
|
|
192
192
|
readonly DELETE: `${string}_delete`;
|
|
193
193
|
} & ExtraPatterns<never>;
|
|
194
|
-
readonly
|
|
194
|
+
readonly COLLECTIONS: {
|
|
195
195
|
readonly FIND_ALL: `${string}_find_all`;
|
|
196
196
|
readonly FIND_BY_ID: `${string}_find_by_id`;
|
|
197
197
|
readonly CREATE: `${string}_create`;
|
|
198
198
|
readonly UPDATE: `${string}_update`;
|
|
199
199
|
readonly DELETE: `${string}_delete`;
|
|
200
200
|
} & ExtraPatterns<never>;
|
|
201
|
-
readonly
|
|
201
|
+
readonly PRODUCT_TYPES: {
|
|
202
202
|
readonly FIND_ALL: `${string}_find_all`;
|
|
203
203
|
readonly FIND_BY_ID: `${string}_find_by_id`;
|
|
204
204
|
readonly CREATE: `${string}_create`;
|
|
@@ -70,10 +70,10 @@ exports.MESSAGE_PATTERNS = {
|
|
|
70
70
|
VARIANTS: crudPatterns("variants"),
|
|
71
71
|
VENDORS: crudPatterns("vendors"),
|
|
72
72
|
TAGS: crudPatterns("tags"),
|
|
73
|
-
PRODUCT_TYPES: crudPatterns("productTypes"),
|
|
74
73
|
RECEIVE_INVENTORIES: crudPatterns("receiveInventories"),
|
|
75
74
|
INVENTORY_ADJUSTMENTS: crudPatterns("inventoryAdjustments"),
|
|
76
75
|
COLLECTIONS: crudPatterns("collections"),
|
|
76
|
+
PRODUCT_TYPES: crudPatterns("productTypes"),
|
|
77
77
|
},
|
|
78
78
|
ORDER_SERVICE: {
|
|
79
79
|
ORDER: crudPatterns("order"),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patterns.constant.js","sourceRoot":"","sources":["../../src/constants/patterns.constant.ts"],"names":[],"mappings":";;;AAEA,SAAS,YAAY,CACnB,MAAc,EACd,KAAwB;IAExB,MAAM,IAAI,GAAG;QACX,QAAQ,EAAE,GAAG,MAAM,WAAW;QAC9B,UAAU,EAAE,GAAG,MAAM,aAAa;QAClC,MAAM,EAAE,GAAG,MAAM,SAAS;QAC1B,MAAM,EAAE,GAAG,MAAM,SAAS;QAC1B,MAAM,EAAE,GAAG,MAAM,SAAS;KAClB,CAAC;IAEX,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,GAAG,IAAI,EAAE,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAC1B,CAAC;AACrB,CAAC;AAEY,QAAA,gBAAgB,GAAG;IAC9B,YAAY,EAAE;QACZ,IAAI,EAAE;YACJ,QAAQ,EAAE,eAAe;YACzB,KAAK,EAAE,YAAY;YACnB,aAAa,EAAE,oBAAoB;YACnC,aAAa,EAAE,oBAAoB;SACpC;QACD,IAAI,EAAE,YAAY,CAAC,MAAM,EAAE;YACzB,aAAa,EAAE,oBAAoB;YACnC,gBAAgB,EAAE,uBAAuB;YACzC,eAAe,EAAE,sBAAsB;SACxC,CAAC;QACF,IAAI,EAAE,YAAY,CAAC,MAAM,EAAE;YACzB,YAAY,EAAE,mBAAmB;SAClC,CAAC;QACF,UAAU,EAAE,YAAY,CAAC,YAAY,EAAE;YACrC,WAAW,EAAE,wBAAwB;YACrC,WAAW,EAAE,wBAAwB;YACrC,eAAe,EAAE,4BAA4B;YAC7C,eAAe,EAAE,4BAA4B;SAC9C,CAAC;QACF,YAAY,EAAE,YAAY,CAAC,cAAc,EAAE;YACzC,YAAY,EAAE,2BAA2B;YACzC,YAAY,EAAE,2BAA2B;SAC1C,CAAC;QACF,MAAM,EAAE,YAAY,CAAC,QAAQ,CAAC;QAC9B,UAAU,EAAE,YAAY,CAAC,YAAY,EAAE;YACrC,WAAW,EAAE,wBAAwB;YACrC,cAAc,EAAE,2BAA2B;SAC5C,CAAC;QACF,IAAI,EAAE,YAAY,CAAC,MAAM,EAAE;YACzB,YAAY,EAAE,mBAAmB;YACjC,SAAS,EAAE,gBAAgB;SAC5B,CAAC;KACH;IAED,eAAe,EAAE;QACf,OAAO,EAAE,YAAY,CAAC,SAAS,EAAE;YAC/B,WAAW,EAAE,qBAAqB;YAClC,gBAAgB,EAAE,0BAA0B;SAC7C,CAAC;QACF,QAAQ,EAAE,YAAY,CAAC,UAAU,EAAE;YACjC,SAAS,EAAE,oBAAoB;SAChC,CAAC;QACF,QAAQ,EAAE,YAAY,CAAC,UAAU,CAAC;QAClC,SAAS,EAAE,YAAY,CAAC,WAAW,CAAC;QAEpC,cAAc,EAAE,YAAY,CAAC,eAAe,CAAC;QAE7C,gBAAgB,EAAE,YAAY,CAAC,iBAAiB,CAAC;QAEjD,iBAAiB,EAAE,YAAY,CAAC,kBAAkB,CAAC;QAEnD,YAAY,EAAE,YAAY,CAAC,cAAc,CAAC;QAE1C,gBAAgB,EAAE,YAAY,CAAC,iBAAiB,CAAC;QAEjD,eAAe,EAAE,YAAY,CAAC,gBAAgB,CAAC;QAE/C,SAAS,EAAE,YAAY,CAAC,WAAW,CAAC;QAEpC,mBAAmB,EAAE,YAAY,CAAC,oBAAoB,CAAC;QAEvD,kBAAkB,EAAE,YAAY,CAAC,mBAAmB,CAAC;QAErD,QAAQ,EAAE,YAAY,CAAC,UAAU,CAAC;QAElC,QAAQ,EAAE,YAAY,CAAC,UAAU,CAAC;QAElC,OAAO,EAAE,YAAY,CAAC,SAAS,CAAC;QAEhC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC;QAE1B,
|
|
1
|
+
{"version":3,"file":"patterns.constant.js","sourceRoot":"","sources":["../../src/constants/patterns.constant.ts"],"names":[],"mappings":"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"}
|
|
@@ -132,25 +132,25 @@ export declare const PERMISSIONS: {
|
|
|
132
132
|
readonly UPDATE: `${string}:update`;
|
|
133
133
|
readonly DELETE: `${string}:delete`;
|
|
134
134
|
};
|
|
135
|
-
readonly
|
|
135
|
+
readonly RECEIVE_INVENTORIES: {
|
|
136
136
|
readonly READ: `${string}:read`;
|
|
137
137
|
readonly CREATE: `${string}:create`;
|
|
138
138
|
readonly UPDATE: `${string}:update`;
|
|
139
139
|
readonly DELETE: `${string}:delete`;
|
|
140
140
|
};
|
|
141
|
-
readonly
|
|
141
|
+
readonly INVENTORY_ADJUSTMENTS: {
|
|
142
142
|
readonly READ: `${string}:read`;
|
|
143
143
|
readonly CREATE: `${string}:create`;
|
|
144
144
|
readonly UPDATE: `${string}:update`;
|
|
145
145
|
readonly DELETE: `${string}:delete`;
|
|
146
146
|
};
|
|
147
|
-
readonly
|
|
147
|
+
readonly COLLECTIONS: {
|
|
148
148
|
readonly READ: `${string}:read`;
|
|
149
149
|
readonly CREATE: `${string}:create`;
|
|
150
150
|
readonly UPDATE: `${string}:update`;
|
|
151
151
|
readonly DELETE: `${string}:delete`;
|
|
152
152
|
};
|
|
153
|
-
readonly
|
|
153
|
+
readonly PRODUCT_TYPES: {
|
|
154
154
|
readonly READ: `${string}:read`;
|
|
155
155
|
readonly CREATE: `${string}:create`;
|
|
156
156
|
readonly UPDATE: `${string}:update`;
|
|
@@ -39,10 +39,10 @@ exports.PERMISSIONS = {
|
|
|
39
39
|
INVENTORY_STORAGES: crudPermissions("inventoryStorages"),
|
|
40
40
|
VENDORS: crudPermissions("vendors"),
|
|
41
41
|
TAGS: crudPermissions("tags"),
|
|
42
|
-
PRODUCT_TYPES: crudPermissions("productTypes"),
|
|
43
42
|
RECEIVE_INVENTORIES: crudPermissions("receiveInventories"),
|
|
44
43
|
INVENTORY_ADJUSTMENTS: crudPermissions("inventoryAdjustments"),
|
|
45
44
|
COLLECTIONS: crudPermissions("collections"),
|
|
45
|
+
PRODUCT_TYPES: crudPermissions("productTypes"),
|
|
46
46
|
},
|
|
47
47
|
ORDER_SERVICE: {
|
|
48
48
|
ORDER: crudPermissions("order"),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"permission.constant.js","sourceRoot":"","sources":["../../src/constants/permission.constant.ts"],"names":[],"mappings":";;;AAEA,SAAS,eAAe,CACtB,MAAc,EACd,KAA2B;IAE3B,MAAM,IAAI,GAAG;QACX,IAAI,EAAE,GAAG,MAAM,OAAO;QACtB,MAAM,EAAE,GAAG,MAAM,SAAS;QAC1B,MAAM,EAAE,GAAG,MAAM,SAAS;QAC1B,MAAM,EAAE,GAAG,MAAM,SAAS;KAClB,CAAC;IAEX,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,GAAG,IAAI,EAAE,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC;AAC9C,CAAC;AAEY,QAAA,WAAW,GAAG;IACzB,KAAK,EAAE;QACL,GAAG,EAAE,SAAS;KACf;IACD,YAAY,EAAE;QACZ,KAAK,EAAE,eAAe,CAAC,aAAa,CAAC;QACrC,KAAK,EAAE,eAAe,CAAC,OAAO,CAAC;QAC/B,KAAK,EAAE,eAAe,CAAC,OAAO,CAAC;QAC/B,WAAW,EAAE,eAAe,CAAC,aAAa,CAAC;QAC3C,aAAa,EAAE,eAAe,CAAC,eAAe,CAAC;QAC/C,QAAQ,EAAE,eAAe,CAAC,UAAU,CAAC;KACtC;IACD,eAAe,EAAE;QACf,WAAW,EAAE,eAAe,CAAC,aAAa,CAAC;QAC3C,SAAS,EAAE,WAAW;QACtB,QAAQ,EAAE,eAAe,CAAC,UAAU,CAAC;QACrC,QAAQ,EAAE,eAAe,CAAC,UAAU,CAAC;QACrC,aAAa,EAAE,eAAe,CAAC,eAAe,CAAC;QAC/C,cAAc,EAAE,eAAe,CAAC,eAAe,CAAC;QAChD,gBAAgB,EAAE,eAAe,CAAC,iBAAiB,CAAC;QACpD,iBAAiB,EAAE,eAAe,CAAC,kBAAkB,CAAC;QACtD,YAAY,EAAE,eAAe,CAAC,cAAc,CAAC;QAC7C,gBAAgB,EAAE,eAAe,CAAC,iBAAiB,CAAC;QACpD,eAAe,EAAE,eAAe,CAAC,gBAAgB,CAAC;QAClD,SAAS,EAAE,eAAe,CAAC,WAAW,CAAC;QACvC,mBAAmB,EAAE,eAAe,CAAC,oBAAoB,CAAC;QAC1D,kBAAkB,EAAE,eAAe,CAAC,mBAAmB,CAAC;QACxD,OAAO,EAAE,eAAe,CAAC,SAAS,CAAC;QACnC,IAAI,EAAE,eAAe,CAAC,MAAM,CAAC;QAC7B,
|
|
1
|
+
{"version":3,"file":"permission.constant.js","sourceRoot":"","sources":["../../src/constants/permission.constant.ts"],"names":[],"mappings":"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"}
|
|
@@ -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);
|