@aion2hub/shared-schemas 1.0.28 → 1.0.29

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 CHANGED
@@ -8682,7 +8682,7 @@ export declare const youtubeChannelSubscriptions: import("drizzle-orm/pg-core").
8682
8682
  name: "filter_profile_id";
8683
8683
  tableName: "youtube_channel_subscriptions";
8684
8684
  dataType: "string";
8685
- columnType: "PgText";
8685
+ columnType: "PgUUID";
8686
8686
  data: string;
8687
8687
  driverParam: string;
8688
8688
  notNull: false;
@@ -8690,7 +8690,7 @@ export declare const youtubeChannelSubscriptions: import("drizzle-orm/pg-core").
8690
8690
  isPrimaryKey: false;
8691
8691
  isAutoincrement: false;
8692
8692
  hasRuntimeDefault: false;
8693
- enumValues: [string, ...string[]];
8693
+ enumValues: undefined;
8694
8694
  baseColumn: never;
8695
8695
  identity: undefined;
8696
8696
  generated: undefined;
package/dist/index.js CHANGED
@@ -904,7 +904,7 @@ exports.youtubeChannelSubscriptions = (0, pg_core_1.pgTable)('youtube_channel_su
904
904
  sourceConfigId: (0, pg_core_1.text)('source_config_id').notNull().references(() => exports.youtubeSourceConfigs.id),
905
905
  // Subscription preferences
906
906
  notificationEnabled: (0, pg_core_1.boolean)('notification_enabled').notNull().default(true),
907
- filterProfileId: (0, pg_core_1.text)('filter_profile_id').references(() => exports.filterProfiles.id),
907
+ filterProfileId: (0, pg_core_1.uuid)('filter_profile_id').references(() => exports.filterProfiles.id),
908
908
  // Metadata
909
909
  subscribedAt: (0, pg_core_1.timestamp)('subscribed_at').notNull().defaultNow()
910
910
  }, (table) => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aion2hub/shared-schemas",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "Centralized database schemas for Aion2Hub microservices",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",