@studious-lms/server 1.2.39 → 1.2.40

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.
@@ -5026,7 +5026,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
5026
5026
  };
5027
5027
  }[];
5028
5028
  content: string;
5029
- createdAt: Date;
5029
+ modifiedAt: Date | null;
5030
5030
  updatedAt: never;
5031
5031
  author: {
5032
5032
  id: string;
@@ -5206,7 +5206,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
5206
5206
  };
5207
5207
  }[];
5208
5208
  content: string;
5209
- createdAt: Date;
5209
+ modifiedAt: Date | null;
5210
5210
  updatedAt: never;
5211
5211
  author: {
5212
5212
  id: string;
@@ -10336,7 +10336,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
10336
10336
  };
10337
10337
  }[];
10338
10338
  content: string;
10339
- createdAt: Date;
10339
+ modifiedAt: Date | null;
10340
10340
  updatedAt: never;
10341
10341
  author: {
10342
10342
  id: string;
@@ -10516,7 +10516,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
10516
10516
  };
10517
10517
  }[];
10518
10518
  content: string;
10519
- createdAt: Date;
10519
+ modifiedAt: Date | null;
10520
10520
  updatedAt: never;
10521
10521
  author: {
10522
10522
  id: string;
@@ -3,7 +3,7 @@ export declare const commentSelect: {
3
3
  id: boolean;
4
4
  content: boolean;
5
5
  updatedAt: boolean;
6
- createdAt: boolean;
6
+ modifiedAt: boolean;
7
7
  author: {
8
8
  select: {
9
9
  id: boolean;
@@ -91,7 +91,7 @@ export declare const commentRouter: import("@trpc/server").TRPCBuiltRouter<{
91
91
  };
92
92
  }[];
93
93
  content: string;
94
- createdAt: Date;
94
+ modifiedAt: Date | null;
95
95
  updatedAt: never;
96
96
  author: {
97
97
  id: string;
@@ -6,7 +6,7 @@ export const commentSelect = {
6
6
  id: true,
7
7
  content: true,
8
8
  updatedAt: true,
9
- createdAt: true,
9
+ modifiedAt: true,
10
10
  author: {
11
11
  select: {
12
12
  id: true,
@@ -215,7 +215,7 @@ export declare const worksheetRouter: import("@trpc/server").TRPCBuiltRouter<{
215
215
  };
216
216
  }[];
217
217
  content: string;
218
- createdAt: Date;
218
+ modifiedAt: Date | null;
219
219
  updatedAt: never;
220
220
  author: {
221
221
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studious-lms/server",
3
- "version": "1.2.39",
3
+ "version": "1.2.40",
4
4
  "description": "Backend server for Studious application",
5
5
  "main": "dist/exportType.js",
6
6
  "types": "dist/exportType.d.ts",
@@ -7,7 +7,7 @@ export const commentSelect = {
7
7
  id: true,
8
8
  content: true,
9
9
  updatedAt: true,
10
- createdAt: true,
10
+ modifiedAt: true,
11
11
  author: {
12
12
  select: {
13
13
  id: true,