synunu-libs 1.0.73 → 1.0.75
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/catalog.dto.d.ts +16 -2
- package/dist/dto/catalog.dto.d.ts.map +1 -1
- package/dist/dto/catalog.dto.js +55 -4
- package/dist/dto/catalog.dto.js.map +1 -1
- package/dist/dto/index.d.ts +19 -15
- package/dist/dto/index.d.ts.map +1 -1
- package/dist/dto/index.js +19 -16
- package/dist/dto/index.js.map +1 -1
- package/dist/enum/catalog.enum.d.ts +14 -0
- package/dist/enum/catalog.enum.d.ts.map +1 -0
- package/dist/enum/catalog.enum.js +20 -0
- package/dist/enum/catalog.enum.js.map +1 -0
- package/dist/enum/index.d.ts +4 -3
- package/dist/enum/index.d.ts.map +1 -1
- package/dist/enum/index.js +4 -3
- package/dist/enum/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
import { DateRangeInput } from "./date-range.input";
|
|
2
2
|
import { OrderByInput } from "./order-by.input";
|
|
3
|
-
|
|
3
|
+
import { ECatalogStatus, ECatalogType, EPriceAdjustmentType } from "./../enum/catalog.enum";
|
|
4
|
+
export declare class CreateCatalogPublicationInput {
|
|
5
|
+
_id: string;
|
|
4
6
|
name: string;
|
|
5
|
-
|
|
7
|
+
clientId: string;
|
|
8
|
+
autoPublishProduct?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class CreateCatalogInput {
|
|
11
|
+
code: string;
|
|
12
|
+
title: string;
|
|
13
|
+
status: ECatalogStatus;
|
|
14
|
+
type: ECatalogType;
|
|
15
|
+
branchIds?: string[];
|
|
16
|
+
customerGroupIds?: string[];
|
|
17
|
+
adjustmentType: EPriceAdjustmentType;
|
|
18
|
+
adjustmentValue: number;
|
|
19
|
+
publication: CreateCatalogPublicationInput;
|
|
6
20
|
}
|
|
7
21
|
export declare class CatalogFilterInput {
|
|
8
22
|
searchKey?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.dto.d.ts","sourceRoot":"","sources":["../../src/dto/catalog.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.dto.d.ts","sourceRoot":"","sources":["../../src/dto/catalog.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAChD,OAAO,EACL,cAAc,EACd,YAAY,EACZ,oBAAoB,EACrB,MAAM,wBAAwB,CAAC;AAEhC,qBACa,6BAA6B;IAExC,GAAG,EAAE,MAAM,CAAC;IAGZ,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,MAAM,CAAC;IAGjB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,qBACa,kBAAkB;IAE7B,IAAI,EAAE,MAAM,CAAC;IAGb,KAAK,EAAE,MAAM,CAAC;IAGd,MAAM,EAAE,cAAc,CAAC;IAGvB,IAAI,EAAE,YAAY,CAAC;IAGnB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IAGrB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAG5B,cAAc,EAAE,oBAAoB,CAAC;IAGrC,eAAe,EAAE,MAAM,CAAC;IAGxB,WAAW,EAAE,6BAA6B,CAAC;CAC5C;AAED,qBACa,kBAAkB;IAE7B,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,kBAAmB,SAAQ,uBAA+B;IAErE,GAAG,EAAE,MAAM,CAAC;CACb"}
|
package/dist/dto/catalog.dto.js
CHANGED
|
@@ -9,21 +9,72 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.UpdateCatalogInput = exports.CatalogFilterInput = exports.CreateCatalogInput = void 0;
|
|
12
|
+
exports.UpdateCatalogInput = exports.CatalogFilterInput = exports.CreateCatalogInput = exports.CreateCatalogPublicationInput = void 0;
|
|
13
13
|
const graphql_1 = require("@nestjs/graphql");
|
|
14
14
|
const date_range_input_1 = require("./date-range.input");
|
|
15
15
|
const order_by_input_1 = require("./order-by.input");
|
|
16
|
+
const catalog_enum_1 = require("./../enum/catalog.enum");
|
|
17
|
+
let CreateCatalogPublicationInput = class CreateCatalogPublicationInput {
|
|
18
|
+
};
|
|
19
|
+
exports.CreateCatalogPublicationInput = CreateCatalogPublicationInput;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, graphql_1.Field)(() => String),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], CreateCatalogPublicationInput.prototype, "_id", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, graphql_1.Field)(() => String),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], CreateCatalogPublicationInput.prototype, "name", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, graphql_1.Field)(() => String),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], CreateCatalogPublicationInput.prototype, "clientId", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, graphql_1.Field)(() => Boolean, { defaultValue: false }),
|
|
34
|
+
__metadata("design:type", Boolean)
|
|
35
|
+
], CreateCatalogPublicationInput.prototype, "autoPublishProduct", void 0);
|
|
36
|
+
exports.CreateCatalogPublicationInput = CreateCatalogPublicationInput = __decorate([
|
|
37
|
+
(0, graphql_1.InputType)()
|
|
38
|
+
], CreateCatalogPublicationInput);
|
|
16
39
|
let CreateCatalogInput = class CreateCatalogInput {
|
|
17
40
|
};
|
|
18
41
|
exports.CreateCatalogInput = CreateCatalogInput;
|
|
19
42
|
__decorate([
|
|
20
43
|
(0, graphql_1.Field)(),
|
|
21
44
|
__metadata("design:type", String)
|
|
22
|
-
], CreateCatalogInput.prototype, "
|
|
45
|
+
], CreateCatalogInput.prototype, "code", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, graphql_1.Field)(),
|
|
48
|
+
__metadata("design:type", String)
|
|
49
|
+
], CreateCatalogInput.prototype, "title", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, graphql_1.Field)(() => catalog_enum_1.ECatalogStatus),
|
|
52
|
+
__metadata("design:type", String)
|
|
53
|
+
], CreateCatalogInput.prototype, "status", void 0);
|
|
23
54
|
__decorate([
|
|
24
|
-
(0, graphql_1.Field)(
|
|
55
|
+
(0, graphql_1.Field)(() => catalog_enum_1.ECatalogType),
|
|
25
56
|
__metadata("design:type", String)
|
|
26
|
-
], CreateCatalogInput.prototype, "
|
|
57
|
+
], CreateCatalogInput.prototype, "type", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, graphql_1.Field)(() => [String], { nullable: true }),
|
|
60
|
+
__metadata("design:type", Array)
|
|
61
|
+
], CreateCatalogInput.prototype, "branchIds", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, graphql_1.Field)(() => [String], { nullable: true }),
|
|
64
|
+
__metadata("design:type", Array)
|
|
65
|
+
], CreateCatalogInput.prototype, "customerGroupIds", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, graphql_1.Field)(() => catalog_enum_1.EPriceAdjustmentType),
|
|
68
|
+
__metadata("design:type", String)
|
|
69
|
+
], CreateCatalogInput.prototype, "adjustmentType", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, graphql_1.Field)(),
|
|
72
|
+
__metadata("design:type", Number)
|
|
73
|
+
], CreateCatalogInput.prototype, "adjustmentValue", void 0);
|
|
74
|
+
__decorate([
|
|
75
|
+
(0, graphql_1.Field)(() => CreateCatalogPublicationInput),
|
|
76
|
+
__metadata("design:type", CreateCatalogPublicationInput)
|
|
77
|
+
], CreateCatalogInput.prototype, "publication", void 0);
|
|
27
78
|
exports.CreateCatalogInput = CreateCatalogInput = __decorate([
|
|
28
79
|
(0, graphql_1.InputType)()
|
|
29
80
|
], CreateCatalogInput);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.dto.js","sourceRoot":"","sources":["../../src/dto/catalog.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,yDAAoD;AACpD,qDAAgD;
|
|
1
|
+
{"version":3,"file":"catalog.dto.js","sourceRoot":"","sources":["../../src/dto/catalog.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgE;AAChE,yDAAoD;AACpD,qDAAgD;AAChD,yDAIgC;AAGzB,IAAM,6BAA6B,GAAnC,MAAM,6BAA6B;CAYzC,CAAA;AAZY,sEAA6B;AAExC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;0DACR;AAGZ;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;2DACP;AAGb;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;+DACH;AAGjB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,KAAK,EAAE,CAAC;;yEACjB;wCAXlB,6BAA6B;IADzC,IAAA,mBAAS,GAAE;GACC,6BAA6B,CAYzC;AAGM,IAAM,kBAAkB,GAAxB,MAAM,kBAAkB;CA2B9B,CAAA;AA3BY,gDAAkB;AAE7B;IADC,IAAA,eAAK,GAAE;;gDACK;AAGb;IADC,IAAA,eAAK,GAAE;;iDACM;AAGd;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,6BAAc,CAAC;;kDACL;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,2BAAY,CAAC;;gDACP;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDACrB;AAGrB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4DACd;AAG5B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,mCAAoB,CAAC;;0DACG;AAGrC;IADC,IAAA,eAAK,GAAE;;2DACgB;AAGxB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,6BAA6B,CAAC;8BAC9B,6BAA6B;uDAAC;6BA1BhC,kBAAkB;IAD9B,IAAA,mBAAS,GAAE;GACC,kBAAkB,CA2B9B;AAGM,IAAM,kBAAkB,GAAxB,MAAM,kBAAkB;CAY9B,CAAA;AAZY,gDAAkB;AAE7B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDACrB;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,6BAAY,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDACvB;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;qDAAC;AAG3B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACpC,iCAAc;qDAAC;6BAXhB,kBAAkB;IAD9B,IAAA,mBAAS,GAAE;GACC,kBAAkB,CAY9B;AAGM,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,IAAA,qBAAW,EAAC,kBAAkB,CAAC;CAGtE,CAAA;AAHY,gDAAkB;AAE7B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;+CACR;6BAFD,kBAAkB;IAD9B,IAAA,mBAAS,GAAE;GACC,kBAAkB,CAG9B"}
|
package/dist/dto/index.d.ts
CHANGED
|
@@ -1,25 +1,29 @@
|
|
|
1
1
|
export * from "./auth.dto";
|
|
2
2
|
export * from "./branch.dto";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./
|
|
8
|
-
export * from "./
|
|
9
|
-
export * from "./product-image.dto";
|
|
3
|
+
export * from "./catalog.dto";
|
|
4
|
+
export * from "./collection-image.input";
|
|
5
|
+
export * from "./collection-rule.input";
|
|
6
|
+
export * from "./collection.dto";
|
|
7
|
+
export * from "./date-range.input";
|
|
8
|
+
export * from "./inventory-adjustment.dto";
|
|
10
9
|
export * from "./inventory-item.dto";
|
|
11
10
|
export * from "./inventory-level.dto";
|
|
12
|
-
export * from "./inventory-location.dto";
|
|
13
11
|
export * from "./inventory-storage.dto";
|
|
12
|
+
export * from "./membership.dto";
|
|
13
|
+
export * from "./menu.dto";
|
|
14
|
+
export * from "./organization.dto";
|
|
15
|
+
export * from "./metafield.dto";
|
|
16
|
+
export * from "./option.dto";
|
|
14
17
|
export * from "./packsize.dto";
|
|
15
|
-
export * from "./
|
|
16
|
-
export * from "./variant.dto";
|
|
18
|
+
export * from "./product-image.dto";
|
|
17
19
|
export * from "./product-type.dto";
|
|
20
|
+
export * from "./product.dto";
|
|
21
|
+
export * from "./profile.dto";
|
|
22
|
+
export * from "./publication.dto";
|
|
23
|
+
export * from "./receive-inventory.dto";
|
|
24
|
+
export * from "./roles.dto";
|
|
18
25
|
export * from "./tag.dto";
|
|
26
|
+
export * from "./user.dto";
|
|
27
|
+
export * from "./variant.dto";
|
|
19
28
|
export * from "./vendor.dto";
|
|
20
|
-
export * from "./receive-inventory.dto";
|
|
21
|
-
export * from "./inventory-adjustment.dto";
|
|
22
|
-
export * from "./collection.dto";
|
|
23
|
-
export * from "./profile.dto";
|
|
24
|
-
export * from "./date-range.input";
|
|
25
29
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/dto/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/dto/index.ts"],"names":[],"mappings":"AACA,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/dto/index.ts"],"names":[],"mappings":"AACA,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC"}
|
package/dist/dto/index.js
CHANGED
|
@@ -17,27 +17,30 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
// module
|
|
18
18
|
__exportStar(require("./auth.dto"), exports);
|
|
19
19
|
__exportStar(require("./branch.dto"), exports);
|
|
20
|
-
__exportStar(require("./
|
|
21
|
-
__exportStar(require("./
|
|
22
|
-
__exportStar(require("./
|
|
23
|
-
__exportStar(require("./
|
|
24
|
-
__exportStar(require("./
|
|
25
|
-
__exportStar(require("./
|
|
26
|
-
__exportStar(require("./product-image.dto"), exports);
|
|
20
|
+
__exportStar(require("./catalog.dto"), exports);
|
|
21
|
+
__exportStar(require("./collection-image.input"), exports);
|
|
22
|
+
__exportStar(require("./collection-rule.input"), exports);
|
|
23
|
+
__exportStar(require("./collection.dto"), exports);
|
|
24
|
+
__exportStar(require("./date-range.input"), exports);
|
|
25
|
+
__exportStar(require("./inventory-adjustment.dto"), exports);
|
|
27
26
|
__exportStar(require("./inventory-item.dto"), exports);
|
|
28
27
|
__exportStar(require("./inventory-level.dto"), exports);
|
|
29
|
-
__exportStar(require("./inventory-location.dto"), exports);
|
|
30
28
|
__exportStar(require("./inventory-storage.dto"), exports);
|
|
29
|
+
__exportStar(require("./membership.dto"), exports);
|
|
30
|
+
__exportStar(require("./menu.dto"), exports);
|
|
31
|
+
__exportStar(require("./organization.dto"), exports);
|
|
32
|
+
__exportStar(require("./metafield.dto"), exports);
|
|
33
|
+
__exportStar(require("./option.dto"), exports);
|
|
31
34
|
__exportStar(require("./packsize.dto"), exports);
|
|
32
|
-
__exportStar(require("./
|
|
33
|
-
__exportStar(require("./variant.dto"), exports);
|
|
35
|
+
__exportStar(require("./product-image.dto"), exports);
|
|
34
36
|
__exportStar(require("./product-type.dto"), exports);
|
|
37
|
+
__exportStar(require("./product.dto"), exports);
|
|
38
|
+
__exportStar(require("./profile.dto"), exports);
|
|
39
|
+
__exportStar(require("./publication.dto"), exports);
|
|
40
|
+
__exportStar(require("./receive-inventory.dto"), exports);
|
|
41
|
+
__exportStar(require("./roles.dto"), exports);
|
|
35
42
|
__exportStar(require("./tag.dto"), exports);
|
|
43
|
+
__exportStar(require("./user.dto"), exports);
|
|
44
|
+
__exportStar(require("./variant.dto"), exports);
|
|
36
45
|
__exportStar(require("./vendor.dto"), exports);
|
|
37
|
-
__exportStar(require("./receive-inventory.dto"), exports);
|
|
38
|
-
__exportStar(require("./inventory-adjustment.dto"), exports);
|
|
39
|
-
__exportStar(require("./collection.dto"), exports);
|
|
40
|
-
__exportStar(require("./profile.dto"), exports);
|
|
41
|
-
// share
|
|
42
|
-
__exportStar(require("./date-range.input"), exports);
|
|
43
46
|
//# sourceMappingURL=index.js.map
|
package/dist/dto/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,SAAS;AACT,6CAA2B;AAC3B,+CAA6B;AAC7B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,SAAS;AACT,6CAA2B;AAC3B,+CAA6B;AAC7B,gDAA8B;AAC9B,2DAAyC;AACzC,0DAAwC;AACxC,mDAAiC;AACjC,qDAAmC;AACnC,6DAA2C;AAC3C,uDAAqC;AACrC,wDAAsC;AACtC,0DAAwC;AACxC,mDAAiC;AACjC,6CAA2B;AAC3B,qDAAmC;AACnC,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,sDAAoC;AACpC,qDAAmC;AACnC,gDAA8B;AAC9B,gDAA8B;AAC9B,oDAAkC;AAClC,0DAAwC;AACxC,8CAA4B;AAC5B,4CAA0B;AAC1B,6CAA2B;AAC3B,gDAA8B;AAC9B,+CAA6B"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare enum ECatalogStatus {
|
|
2
|
+
ACTIVE = "ACTIVE",
|
|
3
|
+
INACTIVE = "INACTIVE"
|
|
4
|
+
}
|
|
5
|
+
export declare enum ECatalogType {
|
|
6
|
+
BRANCH = "BRANCH",
|
|
7
|
+
APP = "APP",
|
|
8
|
+
CUSTOMER = "CUSTOMER"
|
|
9
|
+
}
|
|
10
|
+
export declare enum EPriceAdjustmentType {
|
|
11
|
+
PERCENTAGE_INCREASE = "PERCENTAGE_INCREASE",
|
|
12
|
+
PERCENTAGE_DECREASE = "PERCENTAGE_DECREASE"
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=catalog.enum.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.enum.d.ts","sourceRoot":"","sources":["../../src/enum/catalog.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,MAAM,WAAW;IACjB,QAAQ,aAAa;CACtB;AAED,oBAAY,YAAY;IACtB,MAAM,WAAW;IACjB,GAAG,QAAQ;IACX,QAAQ,aAAa;CACtB;AAED,oBAAY,oBAAoB;IAC9B,mBAAmB,wBAAwB;IAC3C,mBAAmB,wBAAwB;CAC5C"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EPriceAdjustmentType = exports.ECatalogType = exports.ECatalogStatus = void 0;
|
|
4
|
+
var ECatalogStatus;
|
|
5
|
+
(function (ECatalogStatus) {
|
|
6
|
+
ECatalogStatus["ACTIVE"] = "ACTIVE";
|
|
7
|
+
ECatalogStatus["INACTIVE"] = "INACTIVE";
|
|
8
|
+
})(ECatalogStatus || (exports.ECatalogStatus = ECatalogStatus = {}));
|
|
9
|
+
var ECatalogType;
|
|
10
|
+
(function (ECatalogType) {
|
|
11
|
+
ECatalogType["BRANCH"] = "BRANCH";
|
|
12
|
+
ECatalogType["APP"] = "APP";
|
|
13
|
+
ECatalogType["CUSTOMER"] = "CUSTOMER";
|
|
14
|
+
})(ECatalogType || (exports.ECatalogType = ECatalogType = {}));
|
|
15
|
+
var EPriceAdjustmentType;
|
|
16
|
+
(function (EPriceAdjustmentType) {
|
|
17
|
+
EPriceAdjustmentType["PERCENTAGE_INCREASE"] = "PERCENTAGE_INCREASE";
|
|
18
|
+
EPriceAdjustmentType["PERCENTAGE_DECREASE"] = "PERCENTAGE_DECREASE";
|
|
19
|
+
})(EPriceAdjustmentType || (exports.EPriceAdjustmentType = EPriceAdjustmentType = {}));
|
|
20
|
+
//# sourceMappingURL=catalog.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.enum.js","sourceRoot":"","sources":["../../src/enum/catalog.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,mCAAiB,CAAA;IACjB,uCAAqB,CAAA;AACvB,CAAC,EAHW,cAAc,8BAAd,cAAc,QAGzB;AAED,IAAY,YAIX;AAJD,WAAY,YAAY;IACtB,iCAAiB,CAAA;IACjB,2BAAW,CAAA;IACX,qCAAqB,CAAA;AACvB,CAAC,EAJW,YAAY,4BAAZ,YAAY,QAIvB;AAED,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC9B,mEAA2C,CAAA;IAC3C,mEAA2C,CAAA;AAC7C,CAAC,EAHW,oBAAoB,oCAApB,oBAAoB,QAG/B"}
|
package/dist/enum/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export * from "./account-status.enum";
|
|
2
|
-
export * from "./
|
|
3
|
-
export * from "./relation-type.enum";
|
|
4
|
-
export * from "./sort-order.enum";
|
|
2
|
+
export * from "./catalog.enum";
|
|
5
3
|
export * from "./collection-type.enum";
|
|
6
4
|
export * from "./product.enum";
|
|
5
|
+
export * from "./relation-type.enum";
|
|
6
|
+
export * from "./sort-order.enum";
|
|
7
|
+
export * from "./use.enum";
|
|
7
8
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/enum/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/enum/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/enum/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC"}
|
package/dist/enum/index.js
CHANGED
|
@@ -15,9 +15,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./account-status.enum"), exports);
|
|
18
|
-
__exportStar(require("./
|
|
19
|
-
__exportStar(require("./relation-type.enum"), exports);
|
|
20
|
-
__exportStar(require("./sort-order.enum"), exports);
|
|
18
|
+
__exportStar(require("./catalog.enum"), exports);
|
|
21
19
|
__exportStar(require("./collection-type.enum"), exports);
|
|
22
20
|
__exportStar(require("./product.enum"), exports);
|
|
21
|
+
__exportStar(require("./relation-type.enum"), exports);
|
|
22
|
+
__exportStar(require("./sort-order.enum"), exports);
|
|
23
|
+
__exportStar(require("./use.enum"), exports);
|
|
23
24
|
//# sourceMappingURL=index.js.map
|
package/dist/enum/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/enum/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/enum/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,iDAA+B;AAC/B,yDAAuC;AACvC,iDAA+B;AAC/B,uDAAqC;AACrC,oDAAkC;AAClC,6CAA2B"}
|