@framebreak/types 0.1.23 → 0.1.24

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 (2) hide show
  1. package/dist/index.d.ts +8 -4
  2. 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";
54
+ data: "mention" | "reply" | "new_article" | "article_comment" | "announcement" | "new_thread";
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"];
61
+ enumValues: ["mention", "reply", "new_article", "article_comment", "announcement", "new_thread"];
62
62
  baseColumn: never;
63
63
  identity: undefined;
64
64
  generated: undefined;
@@ -139,6 +139,7 @@ declare const notification: drizzle_orm_pg_core.PgTableWithColumns<{
139
139
  data: {
140
140
  postSlug?: string;
141
141
  commentId?: string;
142
+ communityPostId?: string;
142
143
  };
143
144
  driverParam: unknown;
144
145
  notNull: false;
@@ -154,6 +155,7 @@ declare const notification: drizzle_orm_pg_core.PgTableWithColumns<{
154
155
  $type: {
155
156
  postSlug?: string;
156
157
  commentId?: string;
158
+ communityPostId?: string;
157
159
  };
158
160
  }>;
159
161
  read: drizzle_orm_pg_core.PgColumn<{
@@ -7252,7 +7254,7 @@ declare const v1Router: {
7252
7254
  id: string;
7253
7255
  createdAt: Date;
7254
7256
  title: string | null;
7255
- type: "mention" | "reply" | "new_article" | "article_comment" | "announcement";
7257
+ type: "mention" | "reply" | "new_article" | "article_comment" | "announcement" | "new_thread";
7256
7258
  recipientId: string;
7257
7259
  sourceType: "post" | "comment" | "community_post" | "note" | "note_comment" | "community_comment";
7258
7260
  sourceId: string;
@@ -7260,6 +7262,7 @@ declare const v1Router: {
7260
7262
  metadata: {
7261
7263
  postSlug?: string;
7262
7264
  commentId?: string;
7265
+ communityPostId?: string;
7263
7266
  } | null;
7264
7267
  read: boolean;
7265
7268
  readAt: Date | null;
@@ -7275,7 +7278,7 @@ declare const v1Router: {
7275
7278
  id: string;
7276
7279
  createdAt: Date;
7277
7280
  title: string | null;
7278
- type: "mention" | "reply" | "new_article" | "article_comment" | "announcement";
7281
+ type: "mention" | "reply" | "new_article" | "article_comment" | "announcement" | "new_thread";
7279
7282
  recipientId: string;
7280
7283
  sourceType: "post" | "comment" | "community_post" | "note" | "note_comment" | "community_comment";
7281
7284
  sourceId: string;
@@ -7283,6 +7286,7 @@ declare const v1Router: {
7283
7286
  metadata: {
7284
7287
  postSlug?: string;
7285
7288
  commentId?: string;
7289
+ communityPostId?: string;
7286
7290
  } | null;
7287
7291
  read: boolean;
7288
7292
  readAt: Date | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@framebreak/types",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "Type definitions for the Framebreak API",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",