@sildeswj/thechium-schema 10.0.5 → 10.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,33 @@
1
+ import mongoose from 'mongoose';
2
+ import { Geolocation } from '../geoLocation.schema';
3
+ export declare class BuyerRetailStore {
4
+ retailBrand: mongoose.Schema.Types.ObjectId;
5
+ retailBrandName: string;
6
+ retailStoreId: mongoose.Schema.Types.ObjectId;
7
+ name: string;
8
+ code: string;
9
+ address: string;
10
+ addressDetails: string;
11
+ region: string;
12
+ countryCode: string;
13
+ geolocation: Geolocation;
14
+ geolocationFailedCount: number;
15
+ transmittedBy: mongoose.Schema.Types.ObjectId;
16
+ buyerCompanyId: mongoose.Schema.Types.ObjectId;
17
+ businessStatus: string;
18
+ businessRegistrationNumber: string;
19
+ phoneNumber: string;
20
+ annualMaximumExpectedGenerationAmount: number;
21
+ annualMaximumExpectedSustainableGenerationAmount: number;
22
+ status: string;
23
+ }
24
+ export declare const BuyerRetailStoreSchema: mongoose.Schema<BuyerRetailStore, mongoose.Model<BuyerRetailStore, any, any, any, mongoose.Document<unknown, any, BuyerRetailStore, any, {}> & BuyerRetailStore & {
25
+ _id: mongoose.Types.ObjectId;
26
+ } & {
27
+ __v: number;
28
+ }, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, BuyerRetailStore, mongoose.Document<unknown, {}, mongoose.FlatRecord<BuyerRetailStore>, {}, mongoose.ResolveSchemaOptions<mongoose.DefaultSchemaOptions>> & mongoose.FlatRecord<BuyerRetailStore> & {
29
+ _id: mongoose.Types.ObjectId;
30
+ } & {
31
+ __v: number;
32
+ }>;
33
+ //# sourceMappingURL=retailStore.schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retailStore.schema.d.ts","sourceRoot":"","sources":["../../src/buyer/retailStore.schema.ts"],"names":[],"mappings":"AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAGpD,qBACa,gBAAgB;IAK3B,WAAW,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAM5C,eAAe,EAAE,MAAM,CAAC;IAMxB,aAAa,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAG9C,IAAI,EAAE,MAAM,CAAC;IAGb,IAAI,EAAE,MAAM,CAAC;IAGb,OAAO,EAAE,MAAM,CAAC;IAGhB,cAAc,EAAE,MAAM,CAAC;IAGvB,MAAM,EAAE,MAAM,CAAC;IAGf,WAAW,EAAE,MAAM,CAAC;IAGpB,WAAW,EAAE,WAAW,CAAC;IAGzB,sBAAsB,EAAE,MAAM,CAAC;IAM/B,aAAa,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAM9C,cAAc,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAM/C,cAAc,EAAE,MAAM,CAAC;IAGvB,0BAA0B,EAAE,MAAM,CAAC;IAGnC,WAAW,EAAE,MAAM,CAAC;IAGpB,qCAAqC,EAAE,MAAM,CAAC;IAG9C,gDAAgD,EAAE,MAAM,CAAC;IAOzD,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,sBAAsB;;;;;;;;EAAiD,CAAC"}
@@ -0,0 +1,152 @@
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
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.BuyerRetailStoreSchema = exports.BuyerRetailStore = void 0;
16
+ const mongoose_1 = require("@nestjs/mongoose");
17
+ const options_1 = require("../options");
18
+ const mongoose_2 = __importDefault(require("mongoose"));
19
+ const geoLocation_schema_1 = require("../geoLocation.schema");
20
+ // INFO: I merged the retailBrand and retailStore here since we might remove the retailBrand in the future.
21
+ let BuyerRetailStore = class BuyerRetailStore {
22
+ };
23
+ exports.BuyerRetailStore = BuyerRetailStore;
24
+ __decorate([
25
+ (0, mongoose_1.Prop)({
26
+ required: false,
27
+ type: mongoose_2.default.Schema.Types.ObjectId,
28
+ }),
29
+ __metadata("design:type", mongoose_2.default.Schema.Types.ObjectId)
30
+ ], BuyerRetailStore.prototype, "retailBrand", void 0);
31
+ __decorate([
32
+ (0, mongoose_1.Prop)({
33
+ required: true,
34
+ type: String,
35
+ }),
36
+ __metadata("design:type", String)
37
+ ], BuyerRetailStore.prototype, "retailBrandName", void 0);
38
+ __decorate([
39
+ (0, mongoose_1.Prop)({
40
+ required: true,
41
+ type: mongoose_2.default.Schema.Types.ObjectId,
42
+ }),
43
+ __metadata("design:type", mongoose_2.default.Schema.Types.ObjectId)
44
+ ], BuyerRetailStore.prototype, "retailStoreId", void 0);
45
+ __decorate([
46
+ (0, mongoose_1.Prop)({ required: true, maxlength: 150, minlength: 2 }),
47
+ __metadata("design:type", String)
48
+ ], BuyerRetailStore.prototype, "name", void 0);
49
+ __decorate([
50
+ (0, mongoose_1.Prop)({ required: false, maxlength: 50, minlength: 2 }),
51
+ __metadata("design:type", String)
52
+ ], BuyerRetailStore.prototype, "code", void 0);
53
+ __decorate([
54
+ (0, mongoose_1.Prop)({ required: true }),
55
+ __metadata("design:type", String)
56
+ ], BuyerRetailStore.prototype, "address", void 0);
57
+ __decorate([
58
+ (0, mongoose_1.Prop)({ maxlength: 200 }),
59
+ __metadata("design:type", String)
60
+ ], BuyerRetailStore.prototype, "addressDetails", void 0);
61
+ __decorate([
62
+ (0, mongoose_1.Prop)({ required: true }),
63
+ __metadata("design:type", String)
64
+ ], BuyerRetailStore.prototype, "region", void 0);
65
+ __decorate([
66
+ (0, mongoose_1.Prop)({ required: false }),
67
+ __metadata("design:type", String)
68
+ ], BuyerRetailStore.prototype, "countryCode", void 0);
69
+ __decorate([
70
+ (0, mongoose_1.Prop)({ required: false, type: geoLocation_schema_1.Geolocation }),
71
+ __metadata("design:type", geoLocation_schema_1.Geolocation)
72
+ ], BuyerRetailStore.prototype, "geolocation", void 0);
73
+ __decorate([
74
+ (0, mongoose_1.Prop)({ type: Number }),
75
+ __metadata("design:type", Number)
76
+ ], BuyerRetailStore.prototype, "geolocationFailedCount", void 0);
77
+ __decorate([
78
+ (0, mongoose_1.Prop)({
79
+ required: true,
80
+ type: mongoose_2.default.Schema.Types.ObjectId,
81
+ }),
82
+ __metadata("design:type", mongoose_2.default.Schema.Types.ObjectId)
83
+ ], BuyerRetailStore.prototype, "transmittedBy", void 0);
84
+ __decorate([
85
+ (0, mongoose_1.Prop)({
86
+ required: true,
87
+ type: mongoose_2.default.Schema.Types.ObjectId,
88
+ }),
89
+ __metadata("design:type", mongoose_2.default.Schema.Types.ObjectId)
90
+ ], BuyerRetailStore.prototype, "buyerCompanyId", void 0);
91
+ __decorate([
92
+ (0, mongoose_1.Prop)({
93
+ enum: ['operating', 'temporarilyClosed', 'permanentlyClosed'],
94
+ default: 'operating',
95
+ }),
96
+ __metadata("design:type", String)
97
+ ], BuyerRetailStore.prototype, "businessStatus", void 0);
98
+ __decorate([
99
+ (0, mongoose_1.Prop)(),
100
+ __metadata("design:type", String)
101
+ ], BuyerRetailStore.prototype, "businessRegistrationNumber", void 0);
102
+ __decorate([
103
+ (0, mongoose_1.Prop)(),
104
+ __metadata("design:type", String)
105
+ ], BuyerRetailStore.prototype, "phoneNumber", void 0);
106
+ __decorate([
107
+ (0, mongoose_1.Prop)(),
108
+ __metadata("design:type", Number)
109
+ ], BuyerRetailStore.prototype, "annualMaximumExpectedGenerationAmount", void 0);
110
+ __decorate([
111
+ (0, mongoose_1.Prop)(),
112
+ __metadata("design:type", Number)
113
+ ], BuyerRetailStore.prototype, "annualMaximumExpectedSustainableGenerationAmount", void 0);
114
+ __decorate([
115
+ (0, mongoose_1.Prop)({
116
+ required: true,
117
+ enum: ['active', 'deleted'],
118
+ default: 'active',
119
+ }),
120
+ __metadata("design:type", String)
121
+ ], BuyerRetailStore.prototype, "status", void 0);
122
+ exports.BuyerRetailStore = BuyerRetailStore = __decorate([
123
+ (0, mongoose_1.Schema)(options_1.options)
124
+ ], BuyerRetailStore);
125
+ exports.BuyerRetailStoreSchema = mongoose_1.SchemaFactory.createForClass(BuyerRetailStore);
126
+ exports.BuyerRetailStoreSchema.index({ retailBrand: 1 });
127
+ exports.BuyerRetailStoreSchema.index({ transmittedBy: 1 });
128
+ exports.BuyerRetailStoreSchema.index({
129
+ address: 1,
130
+ geolocation: 1,
131
+ geolocationFailedCount: 1,
132
+ status: 1,
133
+ });
134
+ exports.BuyerRetailStoreSchema.index({
135
+ 'geolocation.coordinates.1': 1,
136
+ address: 1,
137
+ geolocationFailedCount: 1,
138
+ status: 1,
139
+ });
140
+ exports.BuyerRetailStoreSchema.index({
141
+ 'geolocation.coordinates.0': 1,
142
+ address: 1,
143
+ geolocationFailedCount: 1,
144
+ status: 1,
145
+ });
146
+ // Automatically exclude deleted records in all queries
147
+ exports.BuyerRetailStoreSchema.pre(/^find/, function (next) {
148
+ const query = this;
149
+ query.setQuery(Object.assign(Object.assign({}, query.getFilter()), { status: { $ne: 'deleted' } }));
150
+ next();
151
+ });
152
+ //# sourceMappingURL=retailStore.schema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retailStore.schema.js","sourceRoot":"","sources":["../../src/buyer/retailStore.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,+CAA+D;AAC/D,wCAAqC;AACrC,wDAAgC;AAChC,8DAAoD;AAEpD,2GAA2G;AAEpG,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CA+E5B,CAAA;AA/EY,4CAAgB;AAK3B;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,KAAK;QACf,IAAI,EAAE,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;KACrC,CAAC;8BACW,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;qDAAC;AAM5C;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,MAAM;KACb,CAAC;;yDACsB;AAMxB;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;KACrC,CAAC;8BACa,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;uDAAC;AAG9C;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,SAAS,EAAE,CAAC,EAAE,CAAC;;8CAC1C;AAGb;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,SAAS,EAAE,CAAC,EAAE,CAAC;;8CAC1C;AAGb;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACT;AAGhB;IADC,IAAA,eAAI,EAAC,EAAE,SAAS,EAAE,GAAG,EAAE,CAAC;;wDACF;AAGvB;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACV;AAGf;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;qDACN;AAGpB;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,IAAI,EAAE,gCAAW,EAAE,CAAC;8BAChC,gCAAW;qDAAC;AAGzB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;gEACQ;AAM/B;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;KACrC,CAAC;8BACa,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;uDAAC;AAM9C;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;KACrC,CAAC;8BACc,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;wDAAC;AAM/C;IAJC,IAAA,eAAI,EAAC;QACJ,IAAI,EAAE,CAAC,WAAW,EAAE,mBAAmB,EAAE,mBAAmB,CAAC;QAC7D,OAAO,EAAE,WAAW;KACrB,CAAC;;wDACqB;AAGvB;IADC,IAAA,eAAI,GAAE;;oEAC4B;AAGnC;IADC,IAAA,eAAI,GAAE;;qDACa;AAGpB;IADC,IAAA,eAAI,GAAE;;+EACuC;AAG9C;IADC,IAAA,eAAI,GAAE;;0FACkD;AAOzD;IALC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC;QAC3B,OAAO,EAAE,QAAQ;KAClB,CAAC;;gDACa;2BA9EJ,gBAAgB;IAD5B,IAAA,iBAAM,EAAC,iBAAO,CAAC;GACH,gBAAgB,CA+E5B;AAEY,QAAA,sBAAsB,GAAG,wBAAa,CAAC,cAAc,CAAC,gBAAgB,CAAC,CAAC;AAErF,8BAAsB,CAAC,KAAK,CAAC,EAAE,WAAW,EAAE,CAAC,EAAE,CAAC,CAAC;AACjD,8BAAsB,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,CAAC,EAAE,CAAC,CAAC;AAEnD,8BAAsB,CAAC,KAAK,CAAC;IAC3B,OAAO,EAAE,CAAC;IACV,WAAW,EAAE,CAAC;IACd,sBAAsB,EAAE,CAAC;IACzB,MAAM,EAAE,CAAC;CACV,CAAC,CAAC;AAEH,8BAAsB,CAAC,KAAK,CAAC;IAC3B,2BAA2B,EAAE,CAAC;IAC9B,OAAO,EAAE,CAAC;IACV,sBAAsB,EAAE,CAAC;IACzB,MAAM,EAAE,CAAC;CACV,CAAC,CAAC;AAEH,8BAAsB,CAAC,KAAK,CAAC;IAC3B,2BAA2B,EAAE,CAAC;IAC9B,OAAO,EAAE,CAAC;IACV,sBAAsB,EAAE,CAAC;IACzB,MAAM,EAAE,CAAC;CACV,CAAC,CAAC;AAEH,uDAAuD;AACvD,8BAAsB,CAAC,GAAG,CAAC,OAAO,EAAE,UAAU,IAAI;IAChD,MAAM,KAAK,GAAG,IAA6C,CAAC;IAC5D,KAAK,CAAC,QAAQ,iCAAM,KAAK,CAAC,SAAS,EAAE,KAAE,MAAM,EAAE,EAAE,GAAG,EAAE,SAAS,EAAE,IAAG,CAAC;IACrE,IAAI,EAAE,CAAC;AACT,CAAC,CAAC,CAAC"}
package/dist/index.d.ts CHANGED
@@ -12,20 +12,21 @@ export * from './payment.schema';
12
12
  export * from './tossPaymentBillingKey.schema';
13
13
  export * from './phoneVerification.schema';
14
14
  export * from './collectionOrderPayment.schema';
15
+ export * from './passwordReset.schema';
16
+ export * from './zaloAuth.schema';
17
+ export * from './blockchain/audit.schema';
18
+ export * from './qrVerification.schema';
19
+ export * from './measureOptions.enum';
20
+ export * from './buyer/retailStore.schema';
15
21
  export * from './buyer/company.schema';
16
22
  export * from './buyer/companyEmployee.schema';
17
23
  export * from './buyer/collectionOrder.schema';
18
- export * from './passwordReset.schema';
19
- export * from './relationships/buyerRequest.schema';
20
- export * from './zaloAuth.schema';
21
24
  export * from './buyer/collectionCompany.schema';
22
- export * from './blockchain/audit.schema';
23
25
  export * from './buyer/monthlyCollectionOrderSummary.schema';
24
- export * from './qrVerification.schema';
25
26
  export * from './warehouse/driverShipment.schema';
26
- export * from './measureOptions.enum';
27
27
  export * from './warehouse/shipmentStatus.enum';
28
- export * from './sub/collectionOrder/subSchemaFactory';
29
28
  export * from './warehouse/warehouse.schema';
30
29
  export * from './warehouse/scale.schema';
30
+ export * from './sub/collectionOrder/subSchemaFactory';
31
+ export * from './relationships/buyerRequest.schema';
31
32
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oCAAoC,CAAC;AACnD,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC;AAChD,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,wBAAwB,CAAC;AACvC,cAAc,qCAAqC,CAAC;AACpD,cAAc,mBAAmB,CAAC;AAClC,cAAc,kCAAkC,CAAC;AACjD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,8CAA8C,CAAC;AAC7D,cAAc,yBAAyB,CAAC;AACxC,cAAc,mCAAmC,CAAC;AAClD,cAAc,uBAAuB,CAAC;AACtC,cAAc,iCAAiC,CAAC;AAChD,cAAc,wCAAwC,CAAC;AACvD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oCAAoC,CAAC;AACnD,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC;AAChD,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AACxC,cAAc,uBAAuB,CAAC;AAGtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kCAAkC,CAAC;AACjD,cAAc,8CAA8C,CAAC;AAG7D,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC;AAChD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AAGzC,cAAc,wCAAwC,CAAC;AAGvD,cAAc,qCAAqC,CAAC"}
package/dist/index.js CHANGED
@@ -28,20 +28,25 @@ __exportStar(require("./payment.schema"), exports);
28
28
  __exportStar(require("./tossPaymentBillingKey.schema"), exports);
29
29
  __exportStar(require("./phoneVerification.schema"), exports);
30
30
  __exportStar(require("./collectionOrderPayment.schema"), exports);
31
+ __exportStar(require("./passwordReset.schema"), exports);
32
+ __exportStar(require("./zaloAuth.schema"), exports);
33
+ __exportStar(require("./blockchain/audit.schema"), exports);
34
+ __exportStar(require("./qrVerification.schema"), exports);
35
+ __exportStar(require("./measureOptions.enum"), exports);
36
+ // Buyer
37
+ __exportStar(require("./buyer/retailStore.schema"), exports);
31
38
  __exportStar(require("./buyer/company.schema"), exports);
32
39
  __exportStar(require("./buyer/companyEmployee.schema"), exports);
33
40
  __exportStar(require("./buyer/collectionOrder.schema"), exports);
34
- __exportStar(require("./passwordReset.schema"), exports);
35
- __exportStar(require("./relationships/buyerRequest.schema"), exports);
36
- __exportStar(require("./zaloAuth.schema"), exports);
37
41
  __exportStar(require("./buyer/collectionCompany.schema"), exports);
38
- __exportStar(require("./blockchain/audit.schema"), exports);
39
42
  __exportStar(require("./buyer/monthlyCollectionOrderSummary.schema"), exports);
40
- __exportStar(require("./qrVerification.schema"), exports);
43
+ // Warehouse
41
44
  __exportStar(require("./warehouse/driverShipment.schema"), exports);
42
- __exportStar(require("./measureOptions.enum"), exports);
43
45
  __exportStar(require("./warehouse/shipmentStatus.enum"), exports);
44
- __exportStar(require("./sub/collectionOrder/subSchemaFactory"), exports);
45
46
  __exportStar(require("./warehouse/warehouse.schema"), exports);
46
47
  __exportStar(require("./warehouse/scale.schema"), exports);
48
+ // Sub
49
+ __exportStar(require("./sub/collectionOrder/subSchemaFactory"), exports);
50
+ // Relationships
51
+ __exportStar(require("./relationships/buyerRequest.schema"), exports);
47
52
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C;AAC3C,iDAA+B;AAC/B,qEAAmD;AACnD,2DAAyC;AACzC,uDAAqC;AACrC,uDAAqC;AACrC,uDAAqC;AACrC,+DAA6C;AAC7C,kEAAgD;AAChD,iDAA+B;AAC/B,mDAAiC;AACjC,iEAA+C;AAC/C,6DAA2C;AAC3C,kEAAgD;AAChD,yDAAuC;AACvC,iEAA+C;AAC/C,iEAA+C;AAC/C,yDAAuC;AACvC,sEAAoD;AACpD,oDAAkC;AAClC,mEAAiD;AACjD,4DAA0C;AAC1C,+EAA6D;AAC7D,0DAAwC;AACxC,oEAAkD;AAClD,wDAAsC;AACtC,kEAAgD;AAChD,yEAAuD;AACvD,+DAA6C;AAC7C,2DAAyC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C;AAC3C,iDAA+B;AAC/B,qEAAmD;AACnD,2DAAyC;AACzC,uDAAqC;AACrC,uDAAqC;AACrC,uDAAqC;AACrC,+DAA6C;AAC7C,kEAAgD;AAChD,iDAA+B;AAC/B,mDAAiC;AACjC,iEAA+C;AAC/C,6DAA2C;AAC3C,kEAAgD;AAChD,yDAAuC;AACvC,oDAAkC;AAClC,4DAA0C;AAC1C,0DAAwC;AACxC,wDAAsC;AAEtC,QAAQ;AACR,6DAA2C;AAC3C,yDAAuC;AACvC,iEAA+C;AAC/C,iEAA+C;AAC/C,mEAAiD;AACjD,+EAA6D;AAE7D,YAAY;AACZ,oEAAkD;AAClD,kEAAgD;AAChD,+DAA6C;AAC7C,2DAAyC;AAEzC,MAAM;AACN,yEAAuD;AAEvD,gBAAgB;AAChB,sEAAoD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sildeswj/thechium-schema",
3
- "version": "10.0.5",
3
+ "version": "10.0.6",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {