@timardex/cluemart-server-shared 1.0.110 → 1.0.111
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/{chunk-7RUK3JKI.mjs → chunk-PLU34IF2.mjs} +193 -91
- package/dist/chunk-PLU34IF2.mjs.map +1 -0
- package/dist/index.cjs +199 -95
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +19 -2
- package/dist/index.d.ts +19 -2
- package/dist/index.mjs +197 -95
- package/dist/index.mjs.map +1 -1
- package/dist/mongoose/index.cjs +193 -89
- package/dist/mongoose/index.cjs.map +1 -1
- package/dist/mongoose/index.d.mts +19 -2
- package/dist/mongoose/index.d.ts +19 -2
- package/dist/mongoose/index.mjs +5 -1
- package/dist/service/index.cjs +191 -91
- package/dist/service/index.cjs.map +1 -1
- package/dist/service/index.mjs +1 -1
- package/package.json +2 -2
- package/dist/chunk-7RUK3JKI.mjs.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _timardex_cluemart_shared from '@timardex/cluemart-shared';
|
|
2
|
-
import { AdType, ReportChatUser, OwnerType, SocialMediaType, ResourceImageType, Category, UserLicenceType, AssociateType, TermsAgreement, RelationDate, DateTimeType, LocationGeoType, LocationType, ResourceContactDetailsType, PosterUsageType, GoogleImportedMarket, RelationType, ResourceActivityType, UserActivityEvent, UserType, VendorType, VendorInfoType, EventType, StallType, RefundPolicy, EventInfoType, PartnerType, PostType, PostContentType, AppSettingsType } from '@timardex/cluemart-shared';
|
|
2
|
+
import { AdType, ReportChatUser, OwnerType, SocialMediaType, ResourceImageType, Category, UserLicenceType, AssociateType, TermsAgreement, RelationDate, DateTimeType, LocationGeoType, LocationType, ResourceContactDetailsType, PosterUsageType, GoogleImportedMarket, RelationType, ResourceActivityType, UserActivityEvent, UserType, VendorType, VendorInfoType, EventType, StallType, RefundPolicy, EventInfoType, PartnerType, PostType, PostContentType, AppSettingsType, GameType } from '@timardex/cluemart-shared';
|
|
3
3
|
import mongoose from 'mongoose';
|
|
4
4
|
import { O as ObjectId } from '../Chat-DjrJ0LKo.mjs';
|
|
5
5
|
export { C as ChatModel, N as NotificationModel, P as ParticipantSchema, a as SchemaChatMessageReactionType, S as SchemaChatMessageReplyPreviewType, b as SchemaChatMessageSeenType, c as SchemaChatMessageType, e as SchemaChatType, f as SchemaCreateBulkNotificationInput, g as SchemaNotificationType, d as SchemaParticipantType } from '../Chat-DjrJ0LKo.mjs';
|
|
@@ -31,6 +31,17 @@ declare const ChatReportModel: mongoose.Model<SchemaChatReportType, {}, {}, {},
|
|
|
31
31
|
type SchemaOwnerType = Omit<OwnerType, "userId"> & {
|
|
32
32
|
userId: ObjectId;
|
|
33
33
|
};
|
|
34
|
+
declare const OwnerTypeSchema: mongoose.Schema<SchemaOwnerType, mongoose.Model<SchemaOwnerType, any, any, any, mongoose.Document<unknown, any, SchemaOwnerType, any, {}> & Omit<OwnerType, "userId"> & {
|
|
35
|
+
userId: ObjectId;
|
|
36
|
+
} & {
|
|
37
|
+
_id: mongoose.Types.ObjectId;
|
|
38
|
+
} & {
|
|
39
|
+
__v: number;
|
|
40
|
+
}, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, SchemaOwnerType, mongoose.Document<unknown, {}, mongoose.FlatRecord<SchemaOwnerType>, {}, mongoose.ResolveSchemaOptions<mongoose.DefaultSchemaOptions>> & mongoose.FlatRecord<SchemaOwnerType> & {
|
|
41
|
+
_id: mongoose.Types.ObjectId;
|
|
42
|
+
} & {
|
|
43
|
+
__v: number;
|
|
44
|
+
}>;
|
|
34
45
|
declare const SocialMediaTypeSchema: mongoose.Schema<SocialMediaType, mongoose.Model<SocialMediaType, any, any, any, mongoose.Document<unknown, any, SocialMediaType, any, {}> & SocialMediaType & {
|
|
35
46
|
_id: mongoose.Types.ObjectId;
|
|
36
47
|
} & {
|
|
@@ -531,4 +542,10 @@ declare const AppSettingModel: mongoose.Model<AppSettingsType, {}, {}, {}, mongo
|
|
|
531
542
|
__v: number;
|
|
532
543
|
}, any>;
|
|
533
544
|
|
|
534
|
-
|
|
545
|
+
declare const GameModel: mongoose.Model<GameType, {}, {}, {}, mongoose.Document<unknown, {}, GameType, {}, {}> & GameType & Required<{
|
|
546
|
+
_id: string;
|
|
547
|
+
}> & {
|
|
548
|
+
__v: number;
|
|
549
|
+
}, any>;
|
|
550
|
+
|
|
551
|
+
export { APP_SETTINGS_ID, AdModel, AppSettingModel, CategorySchema, ChatReportModel, EventInfoModel, EventModel, GameModel, GoogleImportedMarketModel, OwnerTypeSchema, PartnerModel, PostModel, PushTokenModel, RelationModel, RelationTypeSchema, ResourceActivityModel, ResourceImageTypeSchema, type SchemaChatReportType, type SchemaEventInfoType, type SchemaEventType, type SchemaGoogleImportedMarket, type SchemaOwnerType, type SchemaPartnerType, type SchemaPostType, type SchemaPushTokenType, type SchemaRelationType, type SchemaUserActivityEvent, type SchemaUserType, type SchemaVendorInfoType, type SchemaVendorType, SocialMediaTypeSchema, StallTypeSchema, UserModel, VendorInfoModel, VendorModel, VerificationTokenModel, type VerificationTokenType, associatesSchema, baseResourceFields, dateTimeSchema, locationGeoSchema, locationsSchema, refundPolicySchema, relationDatesSchema, resourceRelationsSchema, termsAgreementSchema, userLicenseSchema };
|
package/dist/mongoose/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _timardex_cluemart_shared from '@timardex/cluemart-shared';
|
|
2
|
-
import { AdType, ReportChatUser, OwnerType, SocialMediaType, ResourceImageType, Category, UserLicenceType, AssociateType, TermsAgreement, RelationDate, DateTimeType, LocationGeoType, LocationType, ResourceContactDetailsType, PosterUsageType, GoogleImportedMarket, RelationType, ResourceActivityType, UserActivityEvent, UserType, VendorType, VendorInfoType, EventType, StallType, RefundPolicy, EventInfoType, PartnerType, PostType, PostContentType, AppSettingsType } from '@timardex/cluemart-shared';
|
|
2
|
+
import { AdType, ReportChatUser, OwnerType, SocialMediaType, ResourceImageType, Category, UserLicenceType, AssociateType, TermsAgreement, RelationDate, DateTimeType, LocationGeoType, LocationType, ResourceContactDetailsType, PosterUsageType, GoogleImportedMarket, RelationType, ResourceActivityType, UserActivityEvent, UserType, VendorType, VendorInfoType, EventType, StallType, RefundPolicy, EventInfoType, PartnerType, PostType, PostContentType, AppSettingsType, GameType } from '@timardex/cluemart-shared';
|
|
3
3
|
import mongoose from 'mongoose';
|
|
4
4
|
import { O as ObjectId } from '../Chat-DjrJ0LKo.js';
|
|
5
5
|
export { C as ChatModel, N as NotificationModel, P as ParticipantSchema, a as SchemaChatMessageReactionType, S as SchemaChatMessageReplyPreviewType, b as SchemaChatMessageSeenType, c as SchemaChatMessageType, e as SchemaChatType, f as SchemaCreateBulkNotificationInput, g as SchemaNotificationType, d as SchemaParticipantType } from '../Chat-DjrJ0LKo.js';
|
|
@@ -31,6 +31,17 @@ declare const ChatReportModel: mongoose.Model<SchemaChatReportType, {}, {}, {},
|
|
|
31
31
|
type SchemaOwnerType = Omit<OwnerType, "userId"> & {
|
|
32
32
|
userId: ObjectId;
|
|
33
33
|
};
|
|
34
|
+
declare const OwnerTypeSchema: mongoose.Schema<SchemaOwnerType, mongoose.Model<SchemaOwnerType, any, any, any, mongoose.Document<unknown, any, SchemaOwnerType, any, {}> & Omit<OwnerType, "userId"> & {
|
|
35
|
+
userId: ObjectId;
|
|
36
|
+
} & {
|
|
37
|
+
_id: mongoose.Types.ObjectId;
|
|
38
|
+
} & {
|
|
39
|
+
__v: number;
|
|
40
|
+
}, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, SchemaOwnerType, mongoose.Document<unknown, {}, mongoose.FlatRecord<SchemaOwnerType>, {}, mongoose.ResolveSchemaOptions<mongoose.DefaultSchemaOptions>> & mongoose.FlatRecord<SchemaOwnerType> & {
|
|
41
|
+
_id: mongoose.Types.ObjectId;
|
|
42
|
+
} & {
|
|
43
|
+
__v: number;
|
|
44
|
+
}>;
|
|
34
45
|
declare const SocialMediaTypeSchema: mongoose.Schema<SocialMediaType, mongoose.Model<SocialMediaType, any, any, any, mongoose.Document<unknown, any, SocialMediaType, any, {}> & SocialMediaType & {
|
|
35
46
|
_id: mongoose.Types.ObjectId;
|
|
36
47
|
} & {
|
|
@@ -531,4 +542,10 @@ declare const AppSettingModel: mongoose.Model<AppSettingsType, {}, {}, {}, mongo
|
|
|
531
542
|
__v: number;
|
|
532
543
|
}, any>;
|
|
533
544
|
|
|
534
|
-
|
|
545
|
+
declare const GameModel: mongoose.Model<GameType, {}, {}, {}, mongoose.Document<unknown, {}, GameType, {}, {}> & GameType & Required<{
|
|
546
|
+
_id: string;
|
|
547
|
+
}> & {
|
|
548
|
+
__v: number;
|
|
549
|
+
}, any>;
|
|
550
|
+
|
|
551
|
+
export { APP_SETTINGS_ID, AdModel, AppSettingModel, CategorySchema, ChatReportModel, EventInfoModel, EventModel, GameModel, GoogleImportedMarketModel, OwnerTypeSchema, PartnerModel, PostModel, PushTokenModel, RelationModel, RelationTypeSchema, ResourceActivityModel, ResourceImageTypeSchema, type SchemaChatReportType, type SchemaEventInfoType, type SchemaEventType, type SchemaGoogleImportedMarket, type SchemaOwnerType, type SchemaPartnerType, type SchemaPostType, type SchemaPushTokenType, type SchemaRelationType, type SchemaUserActivityEvent, type SchemaUserType, type SchemaVendorInfoType, type SchemaVendorType, SocialMediaTypeSchema, StallTypeSchema, UserModel, VendorInfoModel, VendorModel, VerificationTokenModel, type VerificationTokenType, associatesSchema, baseResourceFields, dateTimeSchema, locationGeoSchema, locationsSchema, refundPolicySchema, relationDatesSchema, resourceRelationsSchema, termsAgreementSchema, userLicenseSchema };
|
package/dist/mongoose/index.mjs
CHANGED
|
@@ -7,8 +7,10 @@ import {
|
|
|
7
7
|
ChatReportModel,
|
|
8
8
|
EventInfoModel,
|
|
9
9
|
EventModel,
|
|
10
|
+
GameModel,
|
|
10
11
|
GoogleImportedMarketModel,
|
|
11
12
|
NotificationModel,
|
|
13
|
+
OwnerTypeSchema,
|
|
12
14
|
ParticipantSchema,
|
|
13
15
|
PartnerModel,
|
|
14
16
|
PostModel,
|
|
@@ -33,7 +35,7 @@ import {
|
|
|
33
35
|
resourceRelationsSchema,
|
|
34
36
|
termsAgreementSchema,
|
|
35
37
|
userLicenseSchema
|
|
36
|
-
} from "../chunk-
|
|
38
|
+
} from "../chunk-PLU34IF2.mjs";
|
|
37
39
|
import "../chunk-3QS3WKRC.mjs";
|
|
38
40
|
export {
|
|
39
41
|
APP_SETTINGS_ID,
|
|
@@ -44,8 +46,10 @@ export {
|
|
|
44
46
|
ChatReportModel,
|
|
45
47
|
EventInfoModel,
|
|
46
48
|
EventModel,
|
|
49
|
+
GameModel,
|
|
47
50
|
GoogleImportedMarketModel,
|
|
48
51
|
NotificationModel,
|
|
52
|
+
OwnerTypeSchema,
|
|
49
53
|
ParticipantSchema,
|
|
50
54
|
PartnerModel,
|
|
51
55
|
PostModel,
|