@getstrata/core 0.5.53 → 0.5.54
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/README.md +5 -2
- package/dist/core/queue/failedJobRepository.d.ts +1 -1
- package/dist/core/queue/failedJobTable.d.ts +1 -1
- package/dist/entries/auth/sessionGuard.js +8 -7
- package/dist/entries/http/webErrorResponse.js +8 -7
- package/dist/entries/queue/createAppQueue.js +2 -2
- package/dist/entries/queue/failedJobRepository.js +2 -2
- package/dist/entries/queue/publicQueue.js +2 -2
- package/dist/entries/queue/queueMetrics.js +2 -2
- package/dist/entries/view.js +8 -7
- package/dist/index.js +2215 -2213
- package/dist/modules/user/apiTokenRepository.d.ts +1 -1
- package/dist/modules/user/apiTokenTable.d.ts +1 -1
- package/dist/modules/user/notificationRepository.d.ts +1 -1
- package/dist/modules/user/notificationTable.d.ts +1 -1
- package/dist/modules/user/oauthIdentityRepository.d.ts +2 -2
- package/dist/modules/user/repository.d.ts +1 -1
- package/dist/modules/user/table.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseRepository } from "@getstrata/core/database";
|
|
1
|
+
import { BaseRepository } from "@getstrata/core/database/baseRepository";
|
|
2
2
|
import type { ApiTokenRecord } from "./types";
|
|
3
3
|
declare class ApiTokenRepository extends BaseRepository<ApiTokenRecord, "id"> {
|
|
4
4
|
constructor();
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { ApiTokenRecord } from "./types";
|
|
2
|
-
declare const apiTokenTable: import("@getstrata/core/database").TableDefinition<ApiTokenRecord, "id">;
|
|
2
|
+
declare const apiTokenTable: import("@getstrata/core/database/table").TableDefinition<ApiTokenRecord, "id">;
|
|
3
3
|
export { apiTokenTable };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseRepository } from "@getstrata/core/database";
|
|
1
|
+
import { BaseRepository } from "@getstrata/core/database/baseRepository";
|
|
2
2
|
import type { NotificationRecord } from "./notificationTypes";
|
|
3
3
|
declare class NotificationRepository extends BaseRepository<NotificationRecord, "id"> {
|
|
4
4
|
constructor();
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { NotificationRecord } from "./notificationTypes";
|
|
2
|
-
declare const notificationTable: import("@getstrata/core/database").TableDefinition<NotificationRecord, "id">;
|
|
2
|
+
declare const notificationTable: import("@getstrata/core/database/table").TableDefinition<NotificationRecord, "id">;
|
|
3
3
|
export { notificationTable };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { BaseRepository } from "@getstrata/core/database";
|
|
1
|
+
import { BaseRepository } from "@getstrata/core/database/baseRepository";
|
|
2
2
|
import type { OAuthIdentityRecord } from "./types";
|
|
3
|
-
declare const oauthIdentityTable: import("@getstrata/core/database").TableDefinition<OAuthIdentityRecord, "id">;
|
|
3
|
+
declare const oauthIdentityTable: import("@getstrata/core/database/table").TableDefinition<OAuthIdentityRecord, "id">;
|
|
4
4
|
declare class OAuthIdentityRepository extends BaseRepository<OAuthIdentityRecord, "id"> {
|
|
5
5
|
constructor();
|
|
6
6
|
findByProviderUser(provider: string, providerUserId: string): Promise<OAuthIdentityRecord | null>;
|