@intlayer/backend 7.1.3 → 7.1.4

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.
Files changed (41) hide show
  1. package/README.md +0 -3
  2. package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_tanstack.json +10242 -9216
  3. package/dist/types/controllers/dictionary.controller.d.ts.map +1 -1
  4. package/dist/types/controllers/project.controller.d.ts.map +1 -1
  5. package/dist/types/controllers/tag.controller.d.ts.map +1 -1
  6. package/dist/types/emails/InviteUserEmail.d.ts +4 -4
  7. package/dist/types/emails/MagicLinkEmail.d.ts +4 -4
  8. package/dist/types/emails/OAuthTokenCreatedEmail.d.ts +4 -4
  9. package/dist/types/emails/OAuthTokenCreatedEmail.d.ts.map +1 -1
  10. package/dist/types/emails/PasswordChangeConfirmation.d.ts +4 -4
  11. package/dist/types/emails/ResetUserPassword.d.ts +4 -4
  12. package/dist/types/emails/ResetUserPassword.d.ts.map +1 -1
  13. package/dist/types/emails/SubscriptionPaymentError.d.ts +4 -4
  14. package/dist/types/emails/SubscriptionPaymentError.d.ts.map +1 -1
  15. package/dist/types/emails/SubscriptionPaymentSuccess.d.ts +4 -4
  16. package/dist/types/emails/ValidateUserEmail.d.ts +4 -4
  17. package/dist/types/emails/ValidateUserEmail.d.ts.map +1 -1
  18. package/dist/types/emails/Welcome.d.ts +4 -4
  19. package/dist/types/models/dictionary.model.d.ts +4 -4
  20. package/dist/types/models/discussion.model.d.ts +2 -2
  21. package/dist/types/models/discussion.model.d.ts.map +1 -1
  22. package/dist/types/models/oAuth2.model.d.ts +3 -3
  23. package/dist/types/models/oAuth2.model.d.ts.map +1 -1
  24. package/dist/types/schemas/dictionary.schema.d.ts +6 -6
  25. package/dist/types/schemas/dictionary.schema.d.ts.map +1 -1
  26. package/dist/types/schemas/discussion.schema.d.ts +6 -6
  27. package/dist/types/schemas/oAuth2.schema.d.ts +5 -5
  28. package/dist/types/schemas/oAuth2.schema.d.ts.map +1 -1
  29. package/dist/types/schemas/organization.schema.d.ts +6 -6
  30. package/dist/types/schemas/plans.schema.d.ts +6 -6
  31. package/dist/types/schemas/project.schema.d.ts +6 -6
  32. package/dist/types/schemas/session.schema.d.ts +6 -6
  33. package/dist/types/schemas/tag.schema.d.ts +6 -6
  34. package/dist/types/schemas/user.schema.d.ts +6 -6
  35. package/dist/types/schemas/user.schema.d.ts.map +1 -1
  36. package/dist/types/services/email.service.d.ts +11 -11
  37. package/dist/types/utils/filtersAndPagination/getDiscussionFiltersAndPagination.d.ts +2 -2
  38. package/dist/types/utils/filtersAndPagination/getOrganizationFiltersAndPagination.d.ts +2 -2
  39. package/dist/types/utils/filtersAndPagination/getProjectFiltersAndPagination.d.ts +2 -2
  40. package/dist/types/utils/filtersAndPagination/getTagFiltersAndPagination.d.ts +2 -2
  41. package/package.json +7 -7
@@ -1,16 +1,16 @@
1
1
  import { Tag, TagSchema } from "../types/tag.types.js";
2
- import * as mongoose53 from "mongoose";
2
+ import * as mongoose24 from "mongoose";
3
3
  import { Schema } from "mongoose";
4
4
 
5
5
  //#region src/schemas/tag.schema.d.ts
6
- declare const tagSchema: Schema<TagSchema, mongoose53.Model<TagSchema, any, any, any, mongoose53.Document<unknown, any, TagSchema, any, {}> & Omit<Tag, "id"> & {
7
- _id: mongoose53.Types.ObjectId;
6
+ declare const tagSchema: Schema<TagSchema, mongoose24.Model<TagSchema, any, any, any, mongoose24.Document<unknown, any, TagSchema, any, {}> & Omit<Tag, "id"> & {
7
+ _id: mongoose24.Types.ObjectId;
8
8
  } & Required<{
9
- _id: mongoose53.Types.ObjectId;
9
+ _id: mongoose24.Types.ObjectId;
10
10
  }> & {
11
11
  __v: number;
12
- }, any>, {}, {}, {}, {}, mongoose53.DefaultSchemaOptions, TagSchema, mongoose53.Document<unknown, {}, mongoose53.FlatRecord<TagSchema>, {}, mongoose53.ResolveSchemaOptions<mongoose53.DefaultSchemaOptions>> & mongoose53.FlatRecord<TagSchema> & Required<{
13
- _id: mongoose53.Types.ObjectId;
12
+ }, any>, {}, {}, {}, {}, mongoose24.DefaultSchemaOptions, TagSchema, mongoose24.Document<unknown, {}, mongoose24.FlatRecord<TagSchema>, {}, mongoose24.ResolveSchemaOptions<mongoose24.DefaultSchemaOptions>> & mongoose24.FlatRecord<TagSchema> & Required<{
13
+ _id: mongoose24.Types.ObjectId;
14
14
  }> & {
15
15
  __v: number;
16
16
  }>;
@@ -1,16 +1,16 @@
1
1
  import { User, UserSchema } from "../types/user.types.js";
2
- import * as mongoose75 from "mongoose";
2
+ import * as mongoose0 from "mongoose";
3
3
  import { Schema } from "mongoose";
4
4
 
5
5
  //#region src/schemas/user.schema.d.ts
6
- declare const userSchema: Schema<UserSchema, mongoose75.Model<UserSchema, any, any, any, mongoose75.Document<unknown, any, UserSchema, any, {}> & Omit<User, "id"> & {
7
- _id: mongoose75.Types.ObjectId;
6
+ declare const userSchema: Schema<UserSchema, mongoose0.Model<UserSchema, any, any, any, mongoose0.Document<unknown, any, UserSchema, any, {}> & Omit<User, "id"> & {
7
+ _id: mongoose0.Types.ObjectId;
8
8
  } & Required<{
9
- _id: mongoose75.Types.ObjectId;
9
+ _id: mongoose0.Types.ObjectId;
10
10
  }> & {
11
11
  __v: number;
12
- }, any>, {}, {}, {}, {}, mongoose75.DefaultSchemaOptions, UserSchema, mongoose75.Document<unknown, {}, mongoose75.FlatRecord<UserSchema>, {}, mongoose75.ResolveSchemaOptions<mongoose75.DefaultSchemaOptions>> & mongoose75.FlatRecord<UserSchema> & Required<{
13
- _id: mongoose75.Types.ObjectId;
12
+ }, any>, {}, {}, {}, {}, mongoose0.DefaultSchemaOptions, UserSchema, mongoose0.Document<unknown, {}, mongoose0.FlatRecord<UserSchema>, {}, mongoose0.ResolveSchemaOptions<mongoose0.DefaultSchemaOptions>> & mongoose0.FlatRecord<UserSchema> & Required<{
13
+ _id: mongoose0.Types.ObjectId;
14
14
  }> & {
15
15
  __v: number;
16
16
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"user.schema.d.ts","names":[],"sources":["../../../src/schemas/user.schema.ts"],"sourcesContent":[],"mappings":";;;;;cAQa,YAAU,OAAA,uBAAA,MAAA,2BAAA,UAAA,CAAA,uBAAA,uBAAA,KAAA,IAAA;;;EAAV,GAAA,2BA+EZ;CA/EsB,CAAA,GAAA;EAAA,GAAA,EAAA,MAAA;CAAA,EAAA,GAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,UAAA,CAAA,oBAAA,YAAA,qBAAA,CAAA,OAAA,EAAA,CAAA,CAAA,uBAAA,WAAA,CAAA,EAAA,CAAA,CAAA,iCAAA,iCAAA,CAAA,wBAAA,WAAA,CAAA,WAAA,CAAA;EAAA,GAAA,2BAAA;CAAA,CAAA,GAAA;EAAA,GAAA,EAAA,MAAA"}
1
+ {"version":3,"file":"user.schema.d.ts","names":[],"sources":["../../../src/schemas/user.schema.ts"],"sourcesContent":[],"mappings":";;;;;cAQa,YAAU,OAAA,sBAAA,MAAA,2BAAA,SAAA,CAAA,uBAAA,uBAAA,KAAA,IAAA;;;EAAV,GAAA,0BA+EZ;CA/EsB,CAAA,GAAA;EAAA,GAAA,EAAA,MAAA;CAAA,EAAA,GAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,SAAA,CAAA,oBAAA,YAAA,oBAAA,CAAA,OAAA,EAAA,CAAA,CAAA,sBAAA,WAAA,CAAA,EAAA,CAAA,CAAA,gCAAA,gCAAA,CAAA,uBAAA,WAAA,CAAA,WAAA,CAAA;EAAA,GAAA,0BAAA;CAAA,CAAA,GAAA;EAAA,GAAA,EAAA,MAAA"}
@@ -9,7 +9,7 @@ import { SubscriptionPaymentSuccessProps } from "../emails/SubscriptionPaymentSu
9
9
  import { ValidateUserEmailProps } from "../emails/ValidateUserEmail.js";
10
10
  import { WelcomeEmailProps } from "../emails/Welcome.js";
11
11
  import { Locale } from "@intlayer/types";
12
- import * as react_jsx_runtime26 from "react/jsx-runtime";
12
+ import * as react_jsx_runtime29 from "react/jsx-runtime";
13
13
  import { ComponentProps } from "react";
14
14
 
15
15
  //#region src/services/email.service.d.ts
@@ -24,7 +24,7 @@ declare const getEmailComponents: (locale?: Locale) => {
24
24
  inviteLink,
25
25
  inviteFromIp,
26
26
  inviteFromLocation
27
- }: InviteUserEmailProps): react_jsx_runtime26.JSX.Element;
27
+ }: InviteUserEmailProps): react_jsx_runtime29.JSX.Element;
28
28
  PreviewProps: InviteUserEmailProps;
29
29
  };
30
30
  subject: string;
@@ -34,7 +34,7 @@ declare const getEmailComponents: (locale?: Locale) => {
34
34
  ({
35
35
  username,
36
36
  validationLink
37
- }: ValidateUserEmailProps): react_jsx_runtime26.JSX.Element;
37
+ }: ValidateUserEmailProps): react_jsx_runtime29.JSX.Element;
38
38
  PreviewProps: ValidateUserEmailProps;
39
39
  };
40
40
  subject: string;
@@ -44,7 +44,7 @@ declare const getEmailComponents: (locale?: Locale) => {
44
44
  ({
45
45
  username,
46
46
  resetLink
47
- }: ResetPasswordEmailProps): react_jsx_runtime26.JSX.Element;
47
+ }: ResetPasswordEmailProps): react_jsx_runtime29.JSX.Element;
48
48
  PreviewProps: ResetPasswordEmailProps;
49
49
  };
50
50
  subject: string;
@@ -54,7 +54,7 @@ declare const getEmailComponents: (locale?: Locale) => {
54
54
  ({
55
55
  username,
56
56
  loginLink
57
- }: WelcomeEmailProps): react_jsx_runtime26.JSX.Element;
57
+ }: WelcomeEmailProps): react_jsx_runtime29.JSX.Element;
58
58
  PreviewProps: WelcomeEmailProps;
59
59
  };
60
60
  subject: string;
@@ -64,7 +64,7 @@ declare const getEmailComponents: (locale?: Locale) => {
64
64
  ({
65
65
  username,
66
66
  magicLink
67
- }: MagicLinkEmailProps): react_jsx_runtime26.JSX.Element;
67
+ }: MagicLinkEmailProps): react_jsx_runtime29.JSX.Element;
68
68
  PreviewProps: MagicLinkEmailProps;
69
69
  };
70
70
  subject: string;
@@ -73,7 +73,7 @@ declare const getEmailComponents: (locale?: Locale) => {
73
73
  template: {
74
74
  ({
75
75
  username
76
- }: PasswordChangeConfirmationEmailProps): react_jsx_runtime26.JSX.Element;
76
+ }: PasswordChangeConfirmationEmailProps): react_jsx_runtime29.JSX.Element;
77
77
  PreviewProps: PasswordChangeConfirmationEmailProps;
78
78
  };
79
79
  subject: string;
@@ -86,7 +86,7 @@ declare const getEmailComponents: (locale?: Locale) => {
86
86
  organizationName,
87
87
  subscriptionStartDate,
88
88
  manageSubscriptionLink
89
- }: SubscriptionPaymentSuccessProps): react_jsx_runtime26.JSX.Element;
89
+ }: SubscriptionPaymentSuccessProps): react_jsx_runtime29.JSX.Element;
90
90
  PreviewProps: SubscriptionPaymentSuccessProps;
91
91
  };
92
92
  subject: string;
@@ -99,7 +99,7 @@ declare const getEmailComponents: (locale?: Locale) => {
99
99
  organizationName,
100
100
  cancellationDate,
101
101
  reactivateLink
102
- }: SubscriptionPaymentCancellationProps): react_jsx_runtime26.JSX.Element;
102
+ }: SubscriptionPaymentCancellationProps): react_jsx_runtime29.JSX.Element;
103
103
  PreviewProps: SubscriptionPaymentCancellationProps;
104
104
  };
105
105
  subject: string;
@@ -112,7 +112,7 @@ declare const getEmailComponents: (locale?: Locale) => {
112
112
  organizationName,
113
113
  errorDate,
114
114
  retryPaymentLink
115
- }: SubscriptionPaymentErrorProps): react_jsx_runtime26.JSX.Element;
115
+ }: SubscriptionPaymentErrorProps): react_jsx_runtime29.JSX.Element;
116
116
  PreviewProps: SubscriptionPaymentErrorProps;
117
117
  };
118
118
  subject: string;
@@ -126,7 +126,7 @@ declare const getEmailComponents: (locale?: Locale) => {
126
126
  tokenDetailsUrl,
127
127
  securityLogUrl,
128
128
  supportUrl
129
- }: OAuthTokenCreatedEmailProps): react_jsx_runtime26.JSX.Element;
129
+ }: OAuthTokenCreatedEmailProps): react_jsx_runtime29.JSX.Element;
130
130
  PreviewProps: OAuthTokenCreatedEmailProps;
131
131
  };
132
132
  subject: string;
@@ -1,7 +1,7 @@
1
1
  import { ResponseWithSession } from "../../middlewares/sessionAuth.middleware.js";
2
2
  import { Discussion } from "../../types/discussion.types.js";
3
3
  import { FiltersAndPagination } from "./getFiltersAndPaginationFromBody.js";
4
- import * as mongoose105 from "mongoose";
4
+ import * as mongoose106 from "mongoose";
5
5
  import { RootFilterQuery } from "mongoose";
6
6
  import { Request } from "express";
7
7
 
@@ -30,7 +30,7 @@ declare const getDiscussionFiltersAndPagination: (req: Request<FiltersAndPaginat
30
30
  skip: number;
31
31
  pageSize: number;
32
32
  getNumberOfPages: (totalItems: number) => number;
33
- filters: mongoose105.Types.ObjectId | mongoose105.Query<any, any, {}, unknown, "find", Record<string, never>> | mongoose105.FilterQuery<Discussion>;
33
+ filters: mongoose106.Types.ObjectId | mongoose106.Query<any, any, {}, unknown, "find", Record<string, never>> | mongoose106.FilterQuery<Discussion>;
34
34
  sortOptions: Record<string, 1 | -1>;
35
35
  };
36
36
  //#endregion
@@ -1,7 +1,7 @@
1
1
  import { Organization } from "../../types/organization.types.js";
2
2
  import { ResponseWithSession } from "../../middlewares/sessionAuth.middleware.js";
3
3
  import { FiltersAndPagination } from "./getFiltersAndPaginationFromBody.js";
4
- import * as mongoose101 from "mongoose";
4
+ import * as mongoose94 from "mongoose";
5
5
  import { RootFilterQuery } from "mongoose";
6
6
  import { Request } from "express";
7
7
 
@@ -37,7 +37,7 @@ declare const getOrganizationFiltersAndPagination: (req: Request<FiltersAndPagin
37
37
  skip: number;
38
38
  pageSize: number;
39
39
  getNumberOfPages: (totalItems: number) => number;
40
- filters: mongoose101.FilterQuery<Organization>;
40
+ filters: mongoose94.FilterQuery<Organization>;
41
41
  sortOptions: Record<string, 1 | -1>;
42
42
  };
43
43
  //#endregion
@@ -1,7 +1,7 @@
1
1
  import { Project } from "../../types/project.types.js";
2
2
  import { ResponseWithSession } from "../../middlewares/sessionAuth.middleware.js";
3
3
  import { FiltersAndPagination } from "./getFiltersAndPaginationFromBody.js";
4
- import * as mongoose100 from "mongoose";
4
+ import * as mongoose93 from "mongoose";
5
5
  import { RootFilterQuery } from "mongoose";
6
6
  import { Request } from "express";
7
7
 
@@ -30,7 +30,7 @@ declare const getProjectFiltersAndPagination: (req: Request<FiltersAndPagination
30
30
  skip: number;
31
31
  pageSize: number;
32
32
  getNumberOfPages: (totalItems: number) => number;
33
- filters: mongoose100.FilterQuery<Project>;
33
+ filters: mongoose93.FilterQuery<Project>;
34
34
  sortOptions: Record<string, 1 | -1>;
35
35
  };
36
36
  //#endregion
@@ -1,7 +1,7 @@
1
1
  import { Tag } from "../../types/tag.types.js";
2
2
  import { ResponseWithSession } from "../../middlewares/sessionAuth.middleware.js";
3
3
  import { FiltersAndPagination } from "./getFiltersAndPaginationFromBody.js";
4
- import * as mongoose108 from "mongoose";
4
+ import * as mongoose89 from "mongoose";
5
5
  import { RootFilterQuery } from "mongoose";
6
6
  import { Request } from "express";
7
7
 
@@ -28,7 +28,7 @@ declare const getTagFiltersAndPagination: (req: Request<FiltersAndPagination<Tag
28
28
  skip: number;
29
29
  pageSize: number;
30
30
  getNumberOfPages: (totalItems: number) => number;
31
- filters: mongoose108.FilterQuery<Tag>;
31
+ filters: mongoose89.FilterQuery<Tag>;
32
32
  sortOptions: Record<string, 1 | -1>;
33
33
  };
34
34
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intlayer/backend",
3
- "version": "7.1.3",
3
+ "version": "7.1.4",
4
4
  "private": false,
5
5
  "description": "Intlayer Backend is a an application that allow you to manage your Intlayer content and interact with the intlayer editor.",
6
6
  "keywords": [
@@ -88,7 +88,7 @@
88
88
  "cross-env": "10.1.0",
89
89
  "dotenv": "16.6.1",
90
90
  "express": "5.1.0",
91
- "express-intlayer": "7.1.3",
91
+ "express-intlayer": "7.1.4",
92
92
  "express-rate-limit": "8.2.1",
93
93
  "helmet": "8.1.0",
94
94
  "mongodb": "6.21.0",
@@ -103,10 +103,10 @@
103
103
  "winston": "3.18.3"
104
104
  },
105
105
  "devDependencies": {
106
- "@intlayer/config": "7.1.3",
107
- "@intlayer/core": "7.1.3",
108
- "@intlayer/docs": "7.1.3",
109
- "@intlayer/types": "7.1.3",
106
+ "@intlayer/config": "7.1.4",
107
+ "@intlayer/core": "7.1.4",
108
+ "@intlayer/docs": "7.1.4",
109
+ "@intlayer/types": "7.1.4",
110
110
  "@types/body-parser": "1.19.6",
111
111
  "@types/compression": "1.8.1",
112
112
  "@types/cookie-parser": "1.4.10",
@@ -121,7 +121,7 @@
121
121
  "@utils/ts-config": "1.0.4",
122
122
  "@utils/ts-config-types": "1.0.4",
123
123
  "@utils/tsdown-config": "1.0.4",
124
- "intlayer": "7.1.3",
124
+ "intlayer": "7.1.4",
125
125
  "npm-run-all": "^4.1.5",
126
126
  "rimraf": "6.1.0",
127
127
  "tsdown": "0.16.5",