@social-mail/social-mail-web-server 1.8.396 → 1.8.398

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@social-mail/social-mail-web-server",
3
- "version": "1.8.396",
3
+ "version": "1.8.398",
4
4
  "description": "## Phase 1",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -19,6 +19,12 @@ import MultiForeignKeys from "@entity-access/entity-access/dist/decorators/Forei
19
19
  {name: (x) => x.dateReceived, descending: true }
20
20
  ]
21
21
  })
22
+ @Index({
23
+ name: "IX_MailboxContactEmails_Email_ID",
24
+ columns: [
25
+ { name: (x) => x.emailID, descending: true },
26
+ ]
27
+ })
22
28
  export default class MailboxContactEmail {
23
29
  @Column({ key: true, dataType: "BigInt", order: 1})
24
30
  @RelateTo(Mailbox, {
@@ -20,7 +20,7 @@ export default class IndexFileContentsWorkflow extends Workflow {
20
20
 
21
21
  static startIndexing(context: AppWorkflowContext) {
22
22
  return context.queue(IndexFileContentsWorkflow, 0, {
23
- id: `index-app-files`
23
+ id: `index-file-contents`
24
24
  });
25
25
  }
26
26