@framebreak/types 0.1.34 → 0.1.35
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 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -51,14 +51,14 @@ declare const notification: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
51
51
|
tableName: "notification";
|
|
52
52
|
dataType: "string";
|
|
53
53
|
columnType: "PgEnumColumn";
|
|
54
|
-
data: "mention" | "reply" | "new_article" | "article_comment" | "announcement" | "new_thread";
|
|
54
|
+
data: "post_like" | "community_post_comment" | "mention" | "reply" | "new_article" | "article_comment" | "announcement" | "new_thread" | "reaction";
|
|
55
55
|
driverParam: string;
|
|
56
56
|
notNull: true;
|
|
57
57
|
hasDefault: false;
|
|
58
58
|
isPrimaryKey: false;
|
|
59
59
|
isAutoincrement: false;
|
|
60
60
|
hasRuntimeDefault: false;
|
|
61
|
-
enumValues: ["mention", "reply", "new_article", "article_comment", "announcement", "new_thread"];
|
|
61
|
+
enumValues: ["mention", "reply", "new_article", "article_comment", "announcement", "new_thread", "post_like", "community_post_comment", "reaction"];
|
|
62
62
|
baseColumn: never;
|
|
63
63
|
identity: undefined;
|
|
64
64
|
generated: undefined;
|
|
@@ -7977,7 +7977,7 @@ declare const v1Router: {
|
|
|
7977
7977
|
id: string;
|
|
7978
7978
|
createdAt: Date;
|
|
7979
7979
|
title: string | null;
|
|
7980
|
-
type: "mention" | "reply" | "new_article" | "article_comment" | "announcement" | "new_thread";
|
|
7980
|
+
type: "post_like" | "community_post_comment" | "mention" | "reply" | "new_article" | "article_comment" | "announcement" | "new_thread" | "reaction";
|
|
7981
7981
|
recipientId: string;
|
|
7982
7982
|
sourceType: "post" | "comment" | "community_post" | "note" | "note_comment" | "community_comment";
|
|
7983
7983
|
sourceId: string;
|
|
@@ -8011,7 +8011,7 @@ declare const v1Router: {
|
|
|
8011
8011
|
id: string;
|
|
8012
8012
|
createdAt: Date;
|
|
8013
8013
|
title: string | null;
|
|
8014
|
-
type: "mention" | "reply" | "new_article" | "article_comment" | "announcement" | "new_thread";
|
|
8014
|
+
type: "post_like" | "community_post_comment" | "mention" | "reply" | "new_article" | "article_comment" | "announcement" | "new_thread" | "reaction";
|
|
8015
8015
|
recipientId: string;
|
|
8016
8016
|
sourceType: "post" | "comment" | "community_post" | "note" | "note_comment" | "community_comment";
|
|
8017
8017
|
sourceId: string;
|