@lukiteam/luki-be-general 0.2.105 → 0.2.107
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/index.d.ts +4 -2
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/mongo/index.d.ts +5 -1
- package/dist/mongo/index.js +6 -1
- package/dist/mongo/index.js.map +1 -1
- package/dist/mongo/schema/post/category.entity.d.ts +34 -0
- package/dist/mongo/schema/post/category.entity.js +41 -0
- package/dist/mongo/schema/post/category.entity.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -56,8 +56,8 @@ export { DefinedTexts, DefinedTextsSchema, } from './mongo/schema/notification/d
|
|
|
56
56
|
export type { DefinedTextsDocument } from './mongo/schema/notification/defined-texts.entity';
|
|
57
57
|
export { Highlights, HighlightsSchema, } from './mongo/schema/post/highlights.entity';
|
|
58
58
|
export type { HighlightsDocument } from './mongo/schema/post/highlights.entity';
|
|
59
|
-
export { Language, LanguageSchema, } from './mongo/schema/
|
|
60
|
-
export type { LanguageDocument } from './mongo/schema/
|
|
59
|
+
export { Language, LanguageSchema, } from './mongo/schema/language.entity';
|
|
60
|
+
export type { LanguageDocument } from './mongo/schema/language.entity';
|
|
61
61
|
export { MemberConfigs, MemberConfigSchema, } from './mongo/schema/admin/member-config.entity';
|
|
62
62
|
export type { MemberConfigDocument } from './mongo/schema/admin/member-config.entity';
|
|
63
63
|
export { MemberRoles, MemberRolesSchema, } from './mongo/schema/admin/member-roles.entity';
|
|
@@ -96,3 +96,5 @@ export { MemberView, MemberViewSchema } from './mongo/schema/mobile/member-view.
|
|
|
96
96
|
export type { MemberViewDocument } from './mongo/schema/mobile/member-view.entity';
|
|
97
97
|
export { MemberNotification, MemberNotificationSchema, } from './mongo/schema/notification/member-notification.entity';
|
|
98
98
|
export type { MemberNotificationDocument } from './mongo/schema/notification/member-notification.entity';
|
|
99
|
+
export { Category, CategorySchema, } from './mongo/schema/post/category.entity';
|
|
100
|
+
export type { CategoryDocument } from './mongo/schema/post/category.entity';
|
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
18
18
|
};
|
|
19
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
20
|
exports.PostLikes = exports.PostCommentSchema = exports.PostComments = exports.NotificationSchema = exports.Notifications = exports.MemberRolesSchema = exports.MemberRoles = exports.MemberConfigSchema = exports.MemberConfigs = exports.LanguageSchema = exports.Language = exports.HighlightsSchema = exports.Highlights = exports.DefinedTextsSchema = exports.DefinedTexts = exports.ContentsSchema = exports.Contents = exports.AgencySchema = exports.Agency = exports.AgencyPublishersSchema = exports.AgencyPublishers = exports.Notification = exports.Wallet = exports.WalletDetail = exports.SystemSettings = exports.SystemLogs = exports.SwipeCountries = exports.Purchase = exports.ProductPurchase = exports.Payment = exports.Mission = exports.Message = exports.Member = exports.MemberVerification = exports.MemberReminder = exports.MemberMission = exports.MemberLiked = exports.MemberFriends = exports.MemberConnections = exports.MemberConfig = exports.MemberBlocked = exports.MemberBankAccount = exports.FeedbackAndComplaint = exports.CoinsDefinition = exports.CallHistoryDetail = exports.CallHistory = exports.BlockedPhone = exports.Banners = exports.MONGO_SCHEMAS = exports.POSTGRES_ENTITIES = void 0;
|
|
21
|
-
exports.MemberNotificationSchema = exports.MemberNotification = exports.MemberViewSchema = exports.MemberView = exports.MemberCacheSchema = exports.MemberCache = exports.StorySchema = exports.Story = exports.MemberSchema = exports.Members = exports.AgencyMembersSchema = exports.AgencyMembers = exports.SystemLogSchema = exports.SystemLog = exports.StorySeenBySchema = exports.StorySeenBy = exports.StoryPriorityLogSchema = exports.StoryPriorityLog = exports.SpendLogSchema = exports.SpendLog = exports.RolesSchema = exports.Roles = exports.RolesRightsSchema = exports.RolesRights = exports.RightsSchema = exports.Rights = exports.PostsSchema = exports.Posts = exports.PostLikeSchema = void 0;
|
|
21
|
+
exports.CategorySchema = exports.Category = exports.MemberNotificationSchema = exports.MemberNotification = exports.MemberViewSchema = exports.MemberView = exports.MemberCacheSchema = exports.MemberCache = exports.StorySchema = exports.Story = exports.MemberSchema = exports.Members = exports.AgencyMembersSchema = exports.AgencyMembers = exports.SystemLogSchema = exports.SystemLog = exports.StorySeenBySchema = exports.StorySeenBy = exports.StoryPriorityLogSchema = exports.StoryPriorityLog = exports.SpendLogSchema = exports.SpendLog = exports.RolesSchema = exports.Roles = exports.RolesRightsSchema = exports.RolesRights = exports.RightsSchema = exports.Rights = exports.PostsSchema = exports.Posts = exports.PostLikeSchema = void 0;
|
|
22
22
|
const index_1 = require("./postgresql/index");
|
|
23
23
|
Object.defineProperty(exports, "POSTGRES_ENTITIES", { enumerable: true, get: function () { return index_1.POSTGRES_ENTITIES; } });
|
|
24
24
|
const index_2 = require("./mongo/index");
|
|
@@ -109,7 +109,7 @@ Object.defineProperty(exports, "DefinedTextsSchema", { enumerable: true, get: fu
|
|
|
109
109
|
var highlights_entity_1 = require("./mongo/schema/post/highlights.entity");
|
|
110
110
|
Object.defineProperty(exports, "Highlights", { enumerable: true, get: function () { return highlights_entity_1.Highlights; } });
|
|
111
111
|
Object.defineProperty(exports, "HighlightsSchema", { enumerable: true, get: function () { return highlights_entity_1.HighlightsSchema; } });
|
|
112
|
-
var language_entity_1 = require("./mongo/schema/
|
|
112
|
+
var language_entity_1 = require("./mongo/schema/language.entity");
|
|
113
113
|
Object.defineProperty(exports, "Language", { enumerable: true, get: function () { return language_entity_1.Language; } });
|
|
114
114
|
Object.defineProperty(exports, "LanguageSchema", { enumerable: true, get: function () { return language_entity_1.LanguageSchema; } });
|
|
115
115
|
var member_config_entity_2 = require("./mongo/schema/admin/member-config.entity");
|
|
@@ -169,4 +169,7 @@ Object.defineProperty(exports, "MemberViewSchema", { enumerable: true, get: func
|
|
|
169
169
|
var member_notification_entity_1 = require("./mongo/schema/notification/member-notification.entity");
|
|
170
170
|
Object.defineProperty(exports, "MemberNotification", { enumerable: true, get: function () { return member_notification_entity_1.MemberNotification; } });
|
|
171
171
|
Object.defineProperty(exports, "MemberNotificationSchema", { enumerable: true, get: function () { return member_notification_entity_1.MemberNotificationSchema; } });
|
|
172
|
+
var category_entity_1 = require("./mongo/schema/post/category.entity");
|
|
173
|
+
Object.defineProperty(exports, "Category", { enumerable: true, get: function () { return category_entity_1.Category; } });
|
|
174
|
+
Object.defineProperty(exports, "CategorySchema", { enumerable: true, get: function () { return category_entity_1.CategorySchema; } });
|
|
172
175
|
//# 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,8CAAuD;AAG9C,kGAHA,yBAAiB,OAGA;AAF1B,yCAA8C;AAGrC,8FAHA,qBAAa,OAGA;AAEtB,4EAA0D;AAC1D,8EAA4D;AAC5D,uEAAqD;AACrD,0EAAwD;AACxD,2EAAyD;AAEzD,gDAA8B;AAE9B,uEAAqD;AACrD,mEAAiD;AACjD,qEAAmD;AACnD,yDAAuC;AACvC,uEAAqD;AAGrD,wDAAsC;AACtC,wDAAsC;AACtC,uDAAqC;AAErC,sDAAoC;AACpC,qDAAmC;AACnC,4DAA0C;AAE1C,qEAAuE;AAA9D,0HAAA,OAAO,OAAW;AAC3B,iFAAmF;AAA1E,qIAAA,OAAO,OAAgB;AAChC,+EAAiF;AAAxE,mIAAA,OAAO,OAAe;AAC/B,6FAA8F;AAArF,gJAAA,OAAO,OAAqB;AACrC,uFAAyF;AAAhF,2IAAA,OAAO,OAAmB;AACnC,mGAAoG;AAA3F,sJAAA,OAAO,OAAwB;AACxC,6FAA8F;AAArF,gJAAA,OAAO,OAAqB;AACrC,mFAAqF;AAA5E,uIAAA,OAAO,OAAiB;AACjC,iFAAmF;AAA1E,qIAAA,OAAO,OAAgB;AAChC,2FAA6F;AAApF,+IAAA,OAAO,OAAqB;AACrC,mFAAqF;AAA5E,uIAAA,OAAO,OAAiB;AACjC,+EAAiF;AAAxE,mIAAA,OAAO,OAAe;AAC/B,mFAAqF;AAA5E,uIAAA,OAAO,OAAiB;AACjC,qFAAuF;AAA9E,yIAAA,OAAO,OAAkB;AAClC,6FAA+F;AAAtF,iJAAA,OAAO,OAAsB;AACtC,mEAAsE;AAA7D,wHAAA,OAAO,OAAU;AAC1B,qEAAwE;AAA/D,0HAAA,OAAO,OAAW;AAC3B,qEAAwE;AAA/D,0HAAA,OAAO,OAAW;AAC3B,qEAAwE;AAA/D,0HAAA,OAAO,OAAW;AAC3B,uFAAyF;AAAhF,2IAAA,OAAO,OAAmB;AACnC,uEAA0E;AAAjE,4HAAA,OAAO,OAAY;AAC5B,qFAAuF;AAA9E,yIAAA,OAAO,OAAkB;AAClC,6EAA+E;AAAtE,iIAAA,OAAO,OAAc;AAC9B,qFAAuF;AAA9E,yIAAA,OAAO,OAAkB;AAClC,iFAAmF;AAA1E,qIAAA,OAAO,OAAgB;AAChC,mEAAsE;AAA7D,wHAAA,OAAO,OAAU;AAC1B,+EAAkF;AAAzE,oIAAA,OAAO,OAAgB;AAEhC,0FAGuD;AAFnD,4HAAA,gBAAgB,OAAA;AAChB,kIAAA,sBAAsB,OAAA;AAK1B,oEAG4C;AAFxC,uGAAA,MAAM,OAAA;AACN,6GAAA,YAAY,OAAA;AAKhB,+EAGqD;AAFjD,2GAAA,QAAQ,OAAA;AACR,iHAAA,cAAc,OAAA;AAKlB,yFAG0D;AAFtD,oHAAA,YAAY,OAAA;AACZ,0HAAA,kBAAkB,OAAA;AAKtB,2EAG+C;AAF3C,+GAAA,UAAU,OAAA;AACV,qHAAA,gBAAgB,OAAA;AAKpB
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/mongo/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AgencyMembers } from "./schema/admin/agency-members.entity";
|
|
2
2
|
import { AgencyPublishers } from "./schema/admin/agency-publishers.entity";
|
|
3
3
|
import { Highlights } from "./schema/post/highlights.entity";
|
|
4
|
-
import { Language } from "./schema/
|
|
4
|
+
import { Language } from "./schema/language.entity";
|
|
5
5
|
import { MemberConfigs } from "./schema/admin/member-config.entity";
|
|
6
6
|
import { Notifications } from "./schema/notification/notification.entity";
|
|
7
7
|
import { SpendLog } from "./schema/mobile/spend-log.entity";
|
|
@@ -20,6 +20,7 @@ import { Story } from "./schema/post/story.entity";
|
|
|
20
20
|
import { MemberCache } from "./schema/mobile/member-cache.entity";
|
|
21
21
|
import { MemberView } from "./schema/mobile/member-view.entity";
|
|
22
22
|
import { MemberNotification } from "./schema/notification/member-notification.entity";
|
|
23
|
+
import { Category } from "./schema/post/category.entity";
|
|
23
24
|
export declare const MONGO_SCHEMAS: ({
|
|
24
25
|
name: string;
|
|
25
26
|
schema: import("mongoose").Schema<SpendLog, import("mongoose").Model<SpendLog, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, SpendLog>;
|
|
@@ -86,4 +87,7 @@ export declare const MONGO_SCHEMAS: ({
|
|
|
86
87
|
} | {
|
|
87
88
|
name: string;
|
|
88
89
|
schema: import("mongoose").Schema<MemberNotification, import("mongoose").Model<MemberNotification, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, MemberNotification>;
|
|
90
|
+
} | {
|
|
91
|
+
name: string;
|
|
92
|
+
schema: import("mongoose").Schema<Category, import("mongoose").Model<Category, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Category>;
|
|
89
93
|
})[];
|
package/dist/mongo/index.js
CHANGED
|
@@ -5,7 +5,7 @@ const agency_members_entity_1 = require("./schema/admin/agency-members.entity");
|
|
|
5
5
|
const agency_publishers_entity_1 = require("./schema/admin/agency-publishers.entity");
|
|
6
6
|
const agency_entity_1 = require("./schema/admin/agency.entity");
|
|
7
7
|
const highlights_entity_1 = require("./schema/post/highlights.entity");
|
|
8
|
-
const language_entity_1 = require("./schema/
|
|
8
|
+
const language_entity_1 = require("./schema/language.entity");
|
|
9
9
|
const member_config_entity_1 = require("./schema/admin/member-config.entity");
|
|
10
10
|
const notification_entity_1 = require("./schema/notification/notification.entity");
|
|
11
11
|
const spend_log_entity_1 = require("./schema/mobile/spend-log.entity");
|
|
@@ -26,6 +26,7 @@ const story_entity_1 = require("./schema/post/story.entity");
|
|
|
26
26
|
const member_cache_entity_1 = require("./schema/mobile/member-cache.entity");
|
|
27
27
|
const member_view_entity_1 = require("./schema/mobile/member-view.entity");
|
|
28
28
|
const member_notification_entity_1 = require("./schema/notification/member-notification.entity");
|
|
29
|
+
const category_entity_1 = require("./schema/post/category.entity");
|
|
29
30
|
exports.MONGO_SCHEMAS = [
|
|
30
31
|
{
|
|
31
32
|
name: spend_log_entity_1.SpendLog.name,
|
|
@@ -127,5 +128,9 @@ exports.MONGO_SCHEMAS = [
|
|
|
127
128
|
name: member_notification_entity_1.MemberNotification.name,
|
|
128
129
|
schema: member_notification_entity_1.MemberNotificationSchema,
|
|
129
130
|
},
|
|
131
|
+
{
|
|
132
|
+
name: category_entity_1.Category.name,
|
|
133
|
+
schema: category_entity_1.CategorySchema,
|
|
134
|
+
},
|
|
130
135
|
];
|
|
131
136
|
//# sourceMappingURL=index.js.map
|
package/dist/mongo/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/mongo/index.ts"],"names":[],"mappings":";;;AAAA,gFAA0F;AAC1F,sFAAmG;AACnG,gEAAoE;AACpE,uEAA+E;AAC/E,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/mongo/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
+
/// <reference types="mongoose/types/callback" />
|
|
3
|
+
/// <reference types="mongoose/types/collection" />
|
|
4
|
+
/// <reference types="mongoose/types/connection" />
|
|
5
|
+
/// <reference types="mongoose/types/cursor" />
|
|
6
|
+
/// <reference types="mongoose/types/document" />
|
|
7
|
+
/// <reference types="mongoose/types/error" />
|
|
8
|
+
/// <reference types="mongoose/types/expressions" />
|
|
9
|
+
/// <reference types="mongoose/types/helpers" />
|
|
10
|
+
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
+
/// <reference types="mongoose/types/indexes" />
|
|
12
|
+
/// <reference types="mongoose/types/models" />
|
|
13
|
+
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
+
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
+
/// <reference types="mongoose/types/populate" />
|
|
16
|
+
/// <reference types="mongoose/types/query" />
|
|
17
|
+
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
+
/// <reference types="mongoose/types/schematypes" />
|
|
19
|
+
/// <reference types="mongoose/types/session" />
|
|
20
|
+
/// <reference types="mongoose/types/types" />
|
|
21
|
+
/// <reference types="mongoose/types/utility" />
|
|
22
|
+
/// <reference types="mongoose/types/validation" />
|
|
23
|
+
/// <reference types="mongoose/types/virtuals" />
|
|
24
|
+
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { Document } from 'mongoose';
|
|
26
|
+
import { EnumStatus } from '../../../models/enum/index';
|
|
27
|
+
export type CategoryDocument = Category & Document;
|
|
28
|
+
export declare class Category {
|
|
29
|
+
key: string;
|
|
30
|
+
translations: Record<string, string>;
|
|
31
|
+
status: EnumStatus;
|
|
32
|
+
original: string;
|
|
33
|
+
}
|
|
34
|
+
export declare const CategorySchema: import("mongoose").Schema<Category, import("mongoose").Model<Category, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Category>;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CategorySchema = exports.Category = void 0;
|
|
13
|
+
const mongoose_1 = require("@nestjs/mongoose");
|
|
14
|
+
const index_1 = require("../../../models/enum/index");
|
|
15
|
+
let Category = class Category {
|
|
16
|
+
};
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, mongoose_1.Prop)({ type: String, required: true, unique: true, index: true }),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], Category.prototype, "key", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, mongoose_1.Prop)({ type: Map, of: String, default: {} }),
|
|
23
|
+
__metadata("design:type", Object)
|
|
24
|
+
], Category.prototype, "translations", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, mongoose_1.Prop)({ type: String, default: index_1.EnumStatus.A, index: true }),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], Category.prototype, "status", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, mongoose_1.Prop)({ type: String, default: null }),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], Category.prototype, "original", void 0);
|
|
33
|
+
Category = __decorate([
|
|
34
|
+
(0, mongoose_1.Schema)({
|
|
35
|
+
timestamps: true,
|
|
36
|
+
collection: 'Category'
|
|
37
|
+
})
|
|
38
|
+
], Category);
|
|
39
|
+
exports.Category = Category;
|
|
40
|
+
exports.CategorySchema = mongoose_1.SchemaFactory.createForClass(Category);
|
|
41
|
+
//# sourceMappingURL=category.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"category.entity.js","sourceRoot":"","sources":["../../../../src/mongo/schema/post/category.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAA+D;AAE/D,sDAAwD;AAQjD,IAAM,QAAQ,GAAd,MAAM,QAAQ;CAapB,CAAA;AAXG;IAAC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;;qCACtD;AAEZ;IAAC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC;;8CACR;AAErC;IAAC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,kBAAU,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;;wCACxC;AAEnB;IAAC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;;0CACrB;AAZR,QAAQ;IAJpB,IAAA,iBAAM,EAAC;QACJ,UAAU,EAAE,IAAI;QAChB,UAAU,EAAE,UAAU;KACzB,CAAC;GACW,QAAQ,CAapB;AAbY,4BAAQ;AAeR,QAAA,cAAc,GAAG,wBAAa,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC"}
|