@m5kdev/backend 0.1.0 → 0.1.2
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/.cursor/rules/backend.mdc +70 -0
- package/.turbo/turbo-build.log +5 -0
- package/.turbo/turbo-check-types.log +5 -0
- package/.turbo/turbo-lint$colon$fix.log +255 -0
- package/CHANGELOG.md +19 -0
- package/dist/src/lib/posthog.d.ts +3 -0
- package/dist/src/lib/posthog.d.ts.map +1 -0
- package/dist/src/lib/posthog.js +7 -0
- package/dist/src/lib/sentry.d.ts +2 -0
- package/dist/src/lib/sentry.d.ts.map +1 -0
- package/dist/src/lib/sentry.js +9 -0
- package/dist/src/modules/access/access.repository.d.ts +2348 -0
- package/dist/src/modules/access/access.repository.d.ts.map +1 -0
- package/dist/src/modules/access/access.repository.js +32 -0
- package/dist/src/modules/access/access.service.d.ts +22 -0
- package/dist/src/modules/access/access.service.d.ts.map +1 -0
- package/dist/src/modules/access/access.service.js +51 -0
- package/dist/src/modules/access/access.test.d.ts +2 -0
- package/dist/src/modules/access/access.test.d.ts.map +1 -0
- package/dist/src/modules/access/access.test.js +182 -0
- package/dist/src/modules/access/access.utils.d.ts +17 -0
- package/dist/src/modules/access/access.utils.d.ts.map +1 -0
- package/dist/src/modules/access/access.utils.js +20 -0
- package/dist/src/modules/ai/ai.db.d.ts +396 -0
- package/dist/src/modules/ai/ai.db.d.ts.map +1 -0
- package/dist/src/modules/ai/ai.db.js +39 -0
- package/dist/src/modules/ai/ai.prompt.d.ts +28 -0
- package/dist/src/modules/ai/ai.prompt.d.ts.map +1 -0
- package/dist/src/modules/ai/ai.prompt.js +30 -0
- package/dist/src/modules/ai/ai.repository.d.ts +424 -0
- package/dist/src/modules/ai/ai.repository.d.ts.map +1 -0
- package/dist/src/modules/ai/ai.repository.js +26 -0
- package/dist/src/modules/ai/ai.router.d.ts +2 -0
- package/dist/src/modules/ai/ai.router.d.ts.map +1 -0
- package/dist/src/modules/ai/ai.router.js +132 -0
- package/dist/src/modules/ai/ai.service.d.ts +115 -0
- package/dist/src/modules/ai/ai.service.d.ts.map +1 -0
- package/dist/src/modules/ai/ai.service.js +207 -0
- package/dist/src/modules/ai/ai.trpc.d.ts +59 -0
- package/dist/src/modules/ai/ai.trpc.d.ts.map +1 -0
- package/dist/src/modules/ai/ai.trpc.js +20 -0
- package/dist/src/modules/ai/ideogram/ideogram.constants.d.ts +8 -0
- package/dist/src/modules/ai/ideogram/ideogram.constants.d.ts.map +1 -0
- package/dist/src/modules/ai/ideogram/ideogram.constants.js +167 -0
- package/dist/src/modules/ai/ideogram/ideogram.dto.d.ts +230 -0
- package/dist/src/modules/ai/ideogram/ideogram.dto.d.ts.map +1 -0
- package/dist/src/modules/ai/ideogram/ideogram.dto.js +49 -0
- package/dist/src/modules/ai/ideogram/ideogram.prompt.d.ts +3 -0
- package/dist/src/modules/ai/ideogram/ideogram.prompt.d.ts.map +1 -0
- package/dist/src/modules/ai/ideogram/ideogram.prompt.js +860 -0
- package/dist/src/modules/ai/ideogram/ideogram.repository.d.ts +7 -0
- package/dist/src/modules/ai/ideogram/ideogram.repository.d.ts.map +1 -0
- package/dist/src/modules/ai/ideogram/ideogram.repository.js +46 -0
- package/dist/src/modules/ai/ideogram/ideogram.service.d.ts +10 -0
- package/dist/src/modules/ai/ideogram/ideogram.service.d.ts.map +1 -0
- package/dist/src/modules/ai/ideogram/ideogram.service.js +11 -0
- package/dist/src/modules/auth/auth.db.d.ts +2336 -0
- package/dist/src/modules/auth/auth.db.d.ts.map +1 -0
- package/dist/src/modules/auth/auth.db.js +215 -0
- package/dist/src/modules/auth/auth.dto.d.ts +66 -0
- package/dist/src/modules/auth/auth.dto.d.ts.map +1 -0
- package/dist/src/modules/auth/auth.dto.js +38 -0
- package/dist/src/modules/auth/auth.lib.d.ts +4874 -0
- package/dist/src/modules/auth/auth.lib.d.ts.map +1 -0
- package/dist/src/modules/auth/auth.lib.js +284 -0
- package/dist/src/modules/auth/auth.middleware.d.ts +615 -0
- package/dist/src/modules/auth/auth.middleware.d.ts.map +1 -0
- package/dist/src/modules/auth/auth.middleware.js +52 -0
- package/dist/src/modules/auth/auth.repository.d.ts +2417 -0
- package/dist/src/modules/auth/auth.repository.d.ts.map +1 -0
- package/dist/src/modules/auth/auth.repository.js +541 -0
- package/dist/src/modules/auth/auth.service.d.ts +104 -0
- package/dist/src/modules/auth/auth.service.d.ts.map +1 -0
- package/dist/src/modules/auth/auth.service.js +201 -0
- package/dist/src/modules/auth/auth.trpc.d.ts +309 -0
- package/dist/src/modules/auth/auth.trpc.d.ts.map +1 -0
- package/dist/src/modules/auth/auth.trpc.js +157 -0
- package/dist/src/modules/auth/auth.utils.d.ts +2352 -0
- package/dist/src/modules/auth/auth.utils.d.ts.map +1 -0
- package/dist/src/modules/auth/auth.utils.js +97 -0
- package/dist/src/modules/base/base.abstract.d.ts +19 -0
- package/dist/src/modules/base/base.abstract.d.ts.map +1 -0
- package/dist/src/modules/base/base.abstract.js +53 -0
- package/dist/src/modules/base/base.dto.d.ts +70 -0
- package/dist/src/modules/base/base.dto.d.ts.map +1 -0
- package/dist/src/modules/base/base.dto.js +112 -0
- package/dist/src/modules/base/base.grants.d.ts +29 -0
- package/dist/src/modules/base/base.grants.d.ts.map +1 -0
- package/dist/src/modules/base/base.grants.js +123 -0
- package/dist/src/modules/base/base.grants.test.d.ts +2 -0
- package/dist/src/modules/base/base.grants.test.d.ts.map +1 -0
- package/dist/src/modules/base/base.grants.test.js +668 -0
- package/dist/src/modules/base/base.repository.d.ts +97 -0
- package/dist/src/modules/base/base.repository.d.ts.map +1 -0
- package/dist/src/modules/base/base.repository.js +307 -0
- package/dist/src/modules/base/base.service.d.ts +42 -0
- package/dist/src/modules/base/base.service.d.ts.map +1 -0
- package/dist/src/modules/base/base.service.js +109 -0
- package/dist/src/modules/base/base.types.d.ts +2 -0
- package/dist/src/modules/base/base.types.d.ts.map +1 -0
- package/dist/src/modules/base/base.types.js +2 -0
- package/dist/src/modules/billing/billing.db.d.ts +366 -0
- package/dist/src/modules/billing/billing.db.d.ts.map +1 -0
- package/dist/src/modules/billing/billing.db.js +29 -0
- package/dist/src/modules/billing/billing.repository.d.ts +2764 -0
- package/dist/src/modules/billing/billing.repository.d.ts.map +1 -0
- package/dist/src/modules/billing/billing.repository.js +235 -0
- package/dist/src/modules/billing/billing.router.d.ts +5 -0
- package/dist/src/modules/billing/billing.router.d.ts.map +1 -0
- package/dist/src/modules/billing/billing.router.js +56 -0
- package/dist/src/modules/billing/billing.service.d.ts +60 -0
- package/dist/src/modules/billing/billing.service.d.ts.map +1 -0
- package/dist/src/modules/billing/billing.service.js +147 -0
- package/dist/src/modules/billing/billing.trpc.d.ts +75 -0
- package/dist/src/modules/billing/billing.trpc.d.ts.map +1 -0
- package/dist/src/modules/billing/billing.trpc.js +17 -0
- package/dist/src/modules/clay/clay.repository.d.ts +6 -0
- package/dist/src/modules/clay/clay.repository.d.ts.map +1 -0
- package/dist/src/modules/clay/clay.repository.js +26 -0
- package/dist/src/modules/clay/clay.service.d.ts +29 -0
- package/dist/src/modules/clay/clay.service.d.ts.map +1 -0
- package/dist/src/modules/clay/clay.service.js +24 -0
- package/dist/src/modules/connect/connect.db.d.ts +357 -0
- package/dist/src/modules/connect/connect.db.d.ts.map +1 -0
- package/dist/src/modules/connect/connect.db.js +30 -0
- package/dist/src/modules/connect/connect.dto.d.ts +75 -0
- package/dist/src/modules/connect/connect.dto.d.ts.map +1 -0
- package/dist/src/modules/connect/connect.dto.js +36 -0
- package/dist/src/modules/connect/connect.linkedin.d.ts +3 -0
- package/dist/src/modules/connect/connect.linkedin.d.ts.map +1 -0
- package/dist/src/modules/connect/connect.linkedin.js +53 -0
- package/dist/src/modules/connect/connect.oauth.d.ts +28 -0
- package/dist/src/modules/connect/connect.oauth.d.ts.map +1 -0
- package/dist/src/modules/connect/connect.oauth.js +198 -0
- package/dist/src/modules/connect/connect.repository.d.ts +414 -0
- package/dist/src/modules/connect/connect.repository.d.ts.map +1 -0
- package/dist/src/modules/connect/connect.repository.js +54 -0
- package/dist/src/modules/connect/connect.router.d.ts +5 -0
- package/dist/src/modules/connect/connect.router.d.ts.map +1 -0
- package/dist/src/modules/connect/connect.router.js +54 -0
- package/dist/src/modules/connect/connect.service.d.ts +89 -0
- package/dist/src/modules/connect/connect.service.d.ts.map +1 -0
- package/dist/src/modules/connect/connect.service.js +114 -0
- package/dist/src/modules/connect/connect.trpc.d.ts +81 -0
- package/dist/src/modules/connect/connect.trpc.d.ts.map +1 -0
- package/dist/src/modules/connect/connect.trpc.js +21 -0
- package/dist/src/modules/connect/connect.types.d.ts +26 -0
- package/dist/src/modules/connect/connect.types.d.ts.map +1 -0
- package/dist/src/modules/connect/connect.types.js +2 -0
- package/dist/src/modules/crypto/crypto.db.d.ts +152 -0
- package/dist/src/modules/crypto/crypto.db.d.ts.map +1 -0
- package/dist/src/modules/crypto/crypto.db.js +17 -0
- package/dist/src/modules/crypto/crypto.repository.d.ts +160 -0
- package/dist/src/modules/crypto/crypto.repository.d.ts.map +1 -0
- package/dist/src/modules/crypto/crypto.repository.js +10 -0
- package/dist/src/modules/crypto/crypto.service.d.ts +11 -0
- package/dist/src/modules/crypto/crypto.service.d.ts.map +1 -0
- package/dist/src/modules/crypto/crypto.service.js +52 -0
- package/dist/src/modules/email/email.service.d.ts +57 -0
- package/dist/src/modules/email/email.service.d.ts.map +1 -0
- package/dist/src/modules/email/email.service.js +107 -0
- package/dist/src/modules/file/file.repository.d.ts +13 -0
- package/dist/src/modules/file/file.repository.d.ts.map +1 -0
- package/dist/src/modules/file/file.repository.js +79 -0
- package/dist/src/modules/file/file.router.d.ts +4 -0
- package/dist/src/modules/file/file.router.d.ts.map +1 -0
- package/dist/src/modules/file/file.router.js +99 -0
- package/dist/src/modules/file/file.service.d.ts +25 -0
- package/dist/src/modules/file/file.service.d.ts.map +1 -0
- package/dist/src/modules/file/file.service.js +150 -0
- package/dist/src/modules/recurrence/recurrence.db.d.ts +563 -0
- package/dist/src/modules/recurrence/recurrence.db.d.ts.map +1 -0
- package/dist/src/modules/recurrence/recurrence.db.js +66 -0
- package/dist/src/modules/recurrence/recurrence.repository.d.ts +585 -0
- package/dist/src/modules/recurrence/recurrence.repository.d.ts.map +1 -0
- package/dist/src/modules/recurrence/recurrence.repository.js +39 -0
- package/dist/src/modules/recurrence/recurrence.service.d.ts +30 -0
- package/dist/src/modules/recurrence/recurrence.service.d.ts.map +1 -0
- package/dist/src/modules/recurrence/recurrence.service.js +70 -0
- package/dist/src/modules/recurrence/recurrence.trpc.d.ts +243 -0
- package/dist/src/modules/recurrence/recurrence.trpc.d.ts.map +1 -0
- package/dist/src/modules/recurrence/recurrence.trpc.js +65 -0
- package/dist/src/modules/social/social.dto.d.ts +35 -0
- package/dist/src/modules/social/social.dto.d.ts.map +1 -0
- package/dist/src/modules/social/social.dto.js +18 -0
- package/dist/src/modules/social/social.linkedin.d.ts +11 -0
- package/dist/src/modules/social/social.linkedin.d.ts.map +1 -0
- package/dist/src/modules/social/social.linkedin.js +427 -0
- package/dist/src/modules/social/social.linkedin.test.d.ts +2 -0
- package/dist/src/modules/social/social.linkedin.test.d.ts.map +1 -0
- package/dist/src/modules/social/social.linkedin.test.js +235 -0
- package/dist/src/modules/social/social.service.d.ts +29 -0
- package/dist/src/modules/social/social.service.d.ts.map +1 -0
- package/dist/src/modules/social/social.service.js +76 -0
- package/dist/src/modules/social/social.types.d.ts +36 -0
- package/dist/src/modules/social/social.types.d.ts.map +1 -0
- package/dist/src/modules/social/social.types.js +2 -0
- package/dist/src/modules/tag/tag.db.d.ts +347 -0
- package/dist/src/modules/tag/tag.db.d.ts.map +1 -0
- package/dist/src/modules/tag/tag.db.js +42 -0
- package/dist/src/modules/tag/tag.dto.d.ts +1019 -0
- package/dist/src/modules/tag/tag.dto.d.ts.map +1 -0
- package/dist/src/modules/tag/tag.dto.js +9 -0
- package/dist/src/modules/tag/tag.repository.d.ts +384 -0
- package/dist/src/modules/tag/tag.repository.d.ts.map +1 -0
- package/dist/src/modules/tag/tag.repository.js +154 -0
- package/dist/src/modules/tag/tag.service.d.ts +36 -0
- package/dist/src/modules/tag/tag.service.d.ts.map +1 -0
- package/dist/src/modules/tag/tag.service.js +31 -0
- package/dist/src/modules/tag/tag.trpc.d.ts +191 -0
- package/dist/src/modules/tag/tag.trpc.d.ts.map +1 -0
- package/dist/src/modules/tag/tag.trpc.js +47 -0
- package/dist/src/modules/utils/applyPagination.d.ts +7 -0
- package/dist/src/modules/utils/applyPagination.d.ts.map +1 -0
- package/dist/src/modules/utils/applyPagination.js +16 -0
- package/dist/src/modules/utils/applySorting.d.ts +9 -0
- package/dist/src/modules/utils/applySorting.d.ts.map +1 -0
- package/dist/src/modules/utils/applySorting.js +18 -0
- package/dist/src/modules/utils/getConditionsFromFilters.d.ts +5 -0
- package/dist/src/modules/utils/getConditionsFromFilters.d.ts.map +1 -0
- package/dist/src/modules/utils/getConditionsFromFilters.js +200 -0
- package/dist/src/modules/video/video.service.d.ts +8 -0
- package/dist/src/modules/video/video.service.d.ts.map +1 -0
- package/dist/src/modules/video/video.service.js +84 -0
- package/dist/src/modules/webhook/webhook.constants.d.ts +9 -0
- package/dist/src/modules/webhook/webhook.constants.d.ts.map +1 -0
- package/dist/src/modules/webhook/webhook.constants.js +10 -0
- package/dist/src/modules/webhook/webhook.db.d.ts +137 -0
- package/dist/src/modules/webhook/webhook.db.d.ts.map +1 -0
- package/dist/src/modules/webhook/webhook.db.js +17 -0
- package/dist/src/modules/webhook/webhook.dto.d.ts +395 -0
- package/dist/src/modules/webhook/webhook.dto.d.ts.map +1 -0
- package/dist/src/modules/webhook/webhook.dto.js +7 -0
- package/dist/src/modules/webhook/webhook.repository.d.ts +149 -0
- package/dist/src/modules/webhook/webhook.repository.d.ts.map +1 -0
- package/dist/src/modules/webhook/webhook.repository.js +56 -0
- package/dist/src/modules/webhook/webhook.router.d.ts +4 -0
- package/dist/src/modules/webhook/webhook.router.d.ts.map +1 -0
- package/dist/src/modules/webhook/webhook.router.js +30 -0
- package/dist/src/modules/webhook/webhook.service.d.ts +10 -0
- package/dist/src/modules/webhook/webhook.service.d.ts.map +1 -0
- package/dist/src/modules/webhook/webhook.service.js +68 -0
- package/dist/src/modules/workflow/workflow.db.d.ts +297 -0
- package/dist/src/modules/workflow/workflow.db.d.ts.map +1 -0
- package/dist/src/modules/workflow/workflow.db.js +30 -0
- package/dist/src/modules/workflow/workflow.repository.d.ts +344 -0
- package/dist/src/modules/workflow/workflow.repository.d.ts.map +1 -0
- package/dist/src/modules/workflow/workflow.repository.js +105 -0
- package/dist/src/modules/workflow/workflow.service.d.ts +22 -0
- package/dist/src/modules/workflow/workflow.service.d.ts.map +1 -0
- package/dist/src/modules/workflow/workflow.service.js +37 -0
- package/dist/src/modules/workflow/workflow.trpc.d.ts +93 -0
- package/dist/src/modules/workflow/workflow.trpc.d.ts.map +1 -0
- package/dist/src/modules/workflow/workflow.trpc.js +21 -0
- package/dist/src/modules/workflow/workflow.types.d.ts +21 -0
- package/dist/src/modules/workflow/workflow.types.d.ts.map +1 -0
- package/dist/src/modules/workflow/workflow.types.js +2 -0
- package/dist/src/modules/workflow/workflow.utils.d.ts +22 -0
- package/dist/src/modules/workflow/workflow.utils.d.ts.map +1 -0
- package/dist/src/modules/workflow/workflow.utils.js +173 -0
- package/dist/src/test/stubs/utils.d.ts +3 -0
- package/dist/src/test/stubs/utils.d.ts.map +1 -0
- package/dist/src/test/stubs/utils.js +5 -0
- package/dist/src/trpc/context.d.ts +42 -0
- package/dist/src/trpc/context.d.ts.map +1 -0
- package/dist/src/trpc/context.js +17 -0
- package/dist/src/trpc/index.d.ts +4 -0
- package/dist/src/trpc/index.d.ts.map +1 -0
- package/dist/src/trpc/index.js +6 -0
- package/dist/src/trpc/procedures.d.ts +234 -0
- package/dist/src/trpc/procedures.d.ts.map +1 -0
- package/dist/src/trpc/procedures.js +32 -0
- package/dist/src/trpc/utils.d.ts +5 -0
- package/dist/src/trpc/utils.d.ts.map +1 -0
- package/dist/src/trpc/utils.js +20 -0
- package/dist/src/types.d.ts +486 -0
- package/dist/src/types.d.ts.map +1 -0
- package/dist/src/types.js +13 -0
- package/dist/src/utils/errors.d.ts +50 -0
- package/dist/src/utils/errors.d.ts.map +1 -0
- package/dist/src/utils/errors.js +104 -0
- package/dist/src/utils/logger.d.ts +2 -0
- package/dist/src/utils/logger.d.ts.map +1 -0
- package/dist/src/utils/logger.js +11 -0
- package/dist/src/utils/posthog.d.ts +14 -0
- package/dist/src/utils/posthog.d.ts.map +1 -0
- package/dist/src/utils/posthog.js +31 -0
- package/dist/src/utils/types.d.ts +5 -0
- package/dist/src/utils/types.d.ts.map +1 -0
- package/dist/src/utils/types.js +2 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/jest.config.ts +19 -0
- package/package.json +3 -6
- package/tsconfig.json +21 -0
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import type { LibSQLDatabase } from "drizzle-orm/libsql";
|
|
2
|
+
import type { ServerResultAsync } from "#modules/base/base.dto";
|
|
3
|
+
import { BaseTableRepository } from "#modules/base/base.repository";
|
|
4
|
+
declare const schema: {
|
|
5
|
+
webhook: import("drizzle-orm/sqlite-core").SQLiteTableWithColumns<{
|
|
6
|
+
name: "webhook";
|
|
7
|
+
schema: undefined;
|
|
8
|
+
columns: {
|
|
9
|
+
id: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
10
|
+
name: "id";
|
|
11
|
+
tableName: "webhook";
|
|
12
|
+
dataType: "string";
|
|
13
|
+
columnType: "SQLiteText";
|
|
14
|
+
data: string;
|
|
15
|
+
driverParam: string;
|
|
16
|
+
notNull: true;
|
|
17
|
+
hasDefault: true;
|
|
18
|
+
isPrimaryKey: true;
|
|
19
|
+
isAutoincrement: false;
|
|
20
|
+
hasRuntimeDefault: true;
|
|
21
|
+
enumValues: [string, ...string[]];
|
|
22
|
+
baseColumn: never;
|
|
23
|
+
identity: undefined;
|
|
24
|
+
generated: undefined;
|
|
25
|
+
}, {}, {
|
|
26
|
+
length: number | undefined;
|
|
27
|
+
}>;
|
|
28
|
+
createdAt: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
29
|
+
name: "created_at";
|
|
30
|
+
tableName: "webhook";
|
|
31
|
+
dataType: "date";
|
|
32
|
+
columnType: "SQLiteTimestamp";
|
|
33
|
+
data: Date;
|
|
34
|
+
driverParam: number;
|
|
35
|
+
notNull: true;
|
|
36
|
+
hasDefault: true;
|
|
37
|
+
isPrimaryKey: false;
|
|
38
|
+
isAutoincrement: false;
|
|
39
|
+
hasRuntimeDefault: true;
|
|
40
|
+
enumValues: undefined;
|
|
41
|
+
baseColumn: never;
|
|
42
|
+
identity: undefined;
|
|
43
|
+
generated: undefined;
|
|
44
|
+
}, {}, {}>;
|
|
45
|
+
updatedAt: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
46
|
+
name: "updated_at";
|
|
47
|
+
tableName: "webhook";
|
|
48
|
+
dataType: "date";
|
|
49
|
+
columnType: "SQLiteTimestamp";
|
|
50
|
+
data: Date;
|
|
51
|
+
driverParam: number;
|
|
52
|
+
notNull: false;
|
|
53
|
+
hasDefault: false;
|
|
54
|
+
isPrimaryKey: false;
|
|
55
|
+
isAutoincrement: false;
|
|
56
|
+
hasRuntimeDefault: false;
|
|
57
|
+
enumValues: undefined;
|
|
58
|
+
baseColumn: never;
|
|
59
|
+
identity: undefined;
|
|
60
|
+
generated: undefined;
|
|
61
|
+
}, {}, {}>;
|
|
62
|
+
timeoutSec: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
63
|
+
name: "timeout_sec";
|
|
64
|
+
tableName: "webhook";
|
|
65
|
+
dataType: "number";
|
|
66
|
+
columnType: "SQLiteInteger";
|
|
67
|
+
data: number;
|
|
68
|
+
driverParam: number;
|
|
69
|
+
notNull: true;
|
|
70
|
+
hasDefault: true;
|
|
71
|
+
isPrimaryKey: false;
|
|
72
|
+
isAutoincrement: false;
|
|
73
|
+
hasRuntimeDefault: false;
|
|
74
|
+
enumValues: undefined;
|
|
75
|
+
baseColumn: never;
|
|
76
|
+
identity: undefined;
|
|
77
|
+
generated: undefined;
|
|
78
|
+
}, {}, {}>;
|
|
79
|
+
status: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
80
|
+
name: "status";
|
|
81
|
+
tableName: "webhook";
|
|
82
|
+
dataType: "string";
|
|
83
|
+
columnType: "SQLiteText";
|
|
84
|
+
data: import("./webhook.constants").WebhookStatus;
|
|
85
|
+
driverParam: string;
|
|
86
|
+
notNull: true;
|
|
87
|
+
hasDefault: true;
|
|
88
|
+
isPrimaryKey: false;
|
|
89
|
+
isAutoincrement: false;
|
|
90
|
+
hasRuntimeDefault: false;
|
|
91
|
+
enumValues: [string, ...string[]];
|
|
92
|
+
baseColumn: never;
|
|
93
|
+
identity: undefined;
|
|
94
|
+
generated: undefined;
|
|
95
|
+
}, {}, {
|
|
96
|
+
length: number | undefined;
|
|
97
|
+
$type: import("./webhook.constants").WebhookStatus;
|
|
98
|
+
}>;
|
|
99
|
+
error: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
100
|
+
name: "error";
|
|
101
|
+
tableName: "webhook";
|
|
102
|
+
dataType: "string";
|
|
103
|
+
columnType: "SQLiteText";
|
|
104
|
+
data: string;
|
|
105
|
+
driverParam: string;
|
|
106
|
+
notNull: false;
|
|
107
|
+
hasDefault: false;
|
|
108
|
+
isPrimaryKey: false;
|
|
109
|
+
isAutoincrement: false;
|
|
110
|
+
hasRuntimeDefault: false;
|
|
111
|
+
enumValues: [string, ...string[]];
|
|
112
|
+
baseColumn: never;
|
|
113
|
+
identity: undefined;
|
|
114
|
+
generated: undefined;
|
|
115
|
+
}, {}, {
|
|
116
|
+
length: number | undefined;
|
|
117
|
+
}>;
|
|
118
|
+
payload: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
119
|
+
name: "payload";
|
|
120
|
+
tableName: "webhook";
|
|
121
|
+
dataType: "string";
|
|
122
|
+
columnType: "SQLiteText";
|
|
123
|
+
data: string;
|
|
124
|
+
driverParam: string;
|
|
125
|
+
notNull: false;
|
|
126
|
+
hasDefault: false;
|
|
127
|
+
isPrimaryKey: false;
|
|
128
|
+
isAutoincrement: false;
|
|
129
|
+
hasRuntimeDefault: false;
|
|
130
|
+
enumValues: [string, ...string[]];
|
|
131
|
+
baseColumn: never;
|
|
132
|
+
identity: undefined;
|
|
133
|
+
generated: undefined;
|
|
134
|
+
}, {}, {
|
|
135
|
+
length: number | undefined;
|
|
136
|
+
}>;
|
|
137
|
+
};
|
|
138
|
+
dialect: "sqlite";
|
|
139
|
+
}>;
|
|
140
|
+
};
|
|
141
|
+
type Schema = typeof schema;
|
|
142
|
+
type Orm = LibSQLDatabase<Schema>;
|
|
143
|
+
export declare class WebhookRepository extends BaseTableRepository<Orm, Schema, Record<string, never>, Schema["webhook"]> {
|
|
144
|
+
completed(id: string, payload: unknown, tx?: Orm): ServerResultAsync<void>;
|
|
145
|
+
timeout(id: string, tx?: Orm): ServerResultAsync<void>;
|
|
146
|
+
registerError(id: string, status: "ERROR_CALLBACK" | "ERROR_DATA", error: string, tx?: Orm): ServerResultAsync<void>;
|
|
147
|
+
}
|
|
148
|
+
export {};
|
|
149
|
+
//# sourceMappingURL=webhook.repository.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webhook.repository.d.ts","sourceRoot":"","sources":["../../../../src/modules/webhook/webhook.repository.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEzD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAChE,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAIpE,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAc,CAAC;AAC3B,KAAK,MAAM,GAAG,OAAO,MAAM,CAAC;AAC5B,KAAK,GAAG,GAAG,cAAc,CAAC,MAAM,CAAC,CAAC;AAElC,qBAAa,iBAAkB,SAAQ,mBAAmB,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,CAAC,SAAS,CAAC,CAAC;IACzG,SAAS,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,EAAE,CAAC,EAAE,GAAG,GAAG,iBAAiB,CAAC,IAAI,CAAC;IAiB1E,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,GAAG,GAAG,iBAAiB,CAAC,IAAI,CAAC;IAiBtD,aAAa,CACjB,EAAE,EAAE,MAAM,EACV,MAAM,EAAE,gBAAgB,GAAG,YAAY,EACvC,KAAK,EAAE,MAAM,EACb,EAAE,CAAC,EAAE,GAAG,GACP,iBAAiB,CAAC,IAAI,CAAC;CAgB3B"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WebhookRepository = void 0;
|
|
4
|
+
const neverthrow_1 = require("neverthrow");
|
|
5
|
+
const base_repository_1 = require("#modules/base/base.repository");
|
|
6
|
+
const webhook_constants_1 = require("./webhook.constants");
|
|
7
|
+
const webhook_db_1 = require("./webhook.db");
|
|
8
|
+
const schema = { webhook: webhook_db_1.webhook };
|
|
9
|
+
class WebhookRepository extends base_repository_1.BaseTableRepository {
|
|
10
|
+
async completed(id, payload, tx) {
|
|
11
|
+
return this.throwableAsync(async () => {
|
|
12
|
+
const webhook = await this.findById(id, tx);
|
|
13
|
+
if (webhook.isErr())
|
|
14
|
+
return (0, neverthrow_1.err)(webhook.error);
|
|
15
|
+
if (!webhook.value)
|
|
16
|
+
return this.error("NOT_FOUND");
|
|
17
|
+
await this.update({
|
|
18
|
+
id,
|
|
19
|
+
status: webhook_constants_1.WEBHOOK_STATUS_ENUM.COMPLETED,
|
|
20
|
+
payload: JSON.stringify(payload),
|
|
21
|
+
}, tx);
|
|
22
|
+
return (0, neverthrow_1.ok)();
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
async timeout(id, tx) {
|
|
26
|
+
return this.throwableAsync(async () => {
|
|
27
|
+
const webhook = await this.findById(id, tx);
|
|
28
|
+
if (webhook.isErr())
|
|
29
|
+
return (0, neverthrow_1.err)(webhook.error);
|
|
30
|
+
if (!webhook.value)
|
|
31
|
+
return this.error("NOT_FOUND");
|
|
32
|
+
await this.update({
|
|
33
|
+
id,
|
|
34
|
+
status: webhook_constants_1.WEBHOOK_STATUS_ENUM.TIMEOUT,
|
|
35
|
+
error: `Timeout of ${webhook.value.timeoutSec} seconds reached`,
|
|
36
|
+
}, tx);
|
|
37
|
+
return (0, neverthrow_1.ok)();
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
async registerError(id, status, error, tx) {
|
|
41
|
+
return this.throwableAsync(async () => {
|
|
42
|
+
const webhook = await this.findById(id, tx);
|
|
43
|
+
if (webhook.isErr())
|
|
44
|
+
return (0, neverthrow_1.err)(webhook.error);
|
|
45
|
+
if (!webhook.value)
|
|
46
|
+
return this.error("NOT_FOUND");
|
|
47
|
+
await this.update({
|
|
48
|
+
id,
|
|
49
|
+
status,
|
|
50
|
+
error,
|
|
51
|
+
}, tx);
|
|
52
|
+
return (0, neverthrow_1.ok)();
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
exports.WebhookRepository = WebhookRepository;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webhook.router.d.ts","sourceRoot":"","sources":["../../../../src/modules/webhook/webhook.router.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAExD,wBAAgB,mBAAmB,CAAC,cAAc,EAAE,cAAc,GAAG,MAAM,CAwB1E"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createWebhookRouter = createWebhookRouter;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const body_parser_1 = tslib_1.__importDefault(require("body-parser"));
|
|
6
|
+
const express_1 = require("express");
|
|
7
|
+
function createWebhookRouter(webhookService) {
|
|
8
|
+
const webhookRouter = (0, express_1.Router)();
|
|
9
|
+
webhookRouter.post("/:id", body_parser_1.default.json(), async (req, res) => {
|
|
10
|
+
const { authorization } = req.headers;
|
|
11
|
+
if (!authorization)
|
|
12
|
+
return res.status(401).json({ message: "Missing authorization header" });
|
|
13
|
+
if (typeof authorization !== "string")
|
|
14
|
+
return res.status(401).json({ message: "Authorization header is not a string" });
|
|
15
|
+
if (!authorization.startsWith("Bearer "))
|
|
16
|
+
return res.status(401).json({ message: "Invalid authorization header" });
|
|
17
|
+
const token = authorization.split(" ")[1];
|
|
18
|
+
if (!token)
|
|
19
|
+
return res.status(401).json({ message: "Missing token" });
|
|
20
|
+
if (token !== process.env.WEBHOOK_SECRET)
|
|
21
|
+
return res.status(401).json({ message: "Invalid token" });
|
|
22
|
+
const result = await webhookService.completed(req.params.id, req.body);
|
|
23
|
+
if (result.isErr())
|
|
24
|
+
return res
|
|
25
|
+
.status(result.error.getHTTPStatusCode() || 500)
|
|
26
|
+
.json({ message: result.error.message });
|
|
27
|
+
return res.status(200).json({ message: "Webhook completed" });
|
|
28
|
+
});
|
|
29
|
+
return webhookRouter;
|
|
30
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ServerResultAsync } from "#modules/base/base.dto";
|
|
2
|
+
import { BaseService } from "#modules/base/base.service";
|
|
3
|
+
import type { WebhookRepository } from "./webhook.repository";
|
|
4
|
+
export declare class WebhookService extends BaseService<{
|
|
5
|
+
webhook: WebhookRepository;
|
|
6
|
+
}, never> {
|
|
7
|
+
completed(id: string, payload: unknown): ServerResultAsync<void>;
|
|
8
|
+
waitForRequest<T>(callback: (url: string) => any, timeoutSec?: number): ServerResultAsync<T>;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=webhook.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webhook.service.d.ts","sourceRoot":"","sources":["../../../../src/modules/webhook/webhook.service.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAgB,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC9E,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAEzD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAE9D,qBAAa,cAAe,SAAQ,WAAW,CAAC;IAAE,OAAO,EAAE,iBAAiB,CAAA;CAAE,EAAE,KAAK,CAAC;IAC9E,SAAS,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,iBAAiB,CAAC,IAAI,CAAC;IAehE,cAAc,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,GAAG,EAAE,UAAU,SAAK,GAAG,iBAAiB,CAAC,CAAC,CAAC;CAsD/F"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WebhookService = void 0;
|
|
4
|
+
const json_1 = require("@m5kdev/commons/utils/json");
|
|
5
|
+
const neverthrow_1 = require("neverthrow");
|
|
6
|
+
const base_service_1 = require("#modules/base/base.service");
|
|
7
|
+
const webhook_constants_1 = require("./webhook.constants");
|
|
8
|
+
class WebhookService extends base_service_1.BaseService {
|
|
9
|
+
async completed(id, payload) {
|
|
10
|
+
const result = await this.repository.webhook.completed(id, payload);
|
|
11
|
+
if (result.isErr()) {
|
|
12
|
+
await this.repository.webhook.registerError(id, webhook_constants_1.WEBHOOK_STATUS_ENUM.ERROR_DATA, JSON.stringify(result.error));
|
|
13
|
+
return this.error("INTERNAL_SERVER_ERROR", "Webhook completed failed", {
|
|
14
|
+
cause: result.error,
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
return (0, neverthrow_1.ok)();
|
|
18
|
+
}
|
|
19
|
+
async waitForRequest(callback, timeoutSec = 60) {
|
|
20
|
+
const webhook = await this.repository.webhook.create({
|
|
21
|
+
timeoutSec,
|
|
22
|
+
});
|
|
23
|
+
if (webhook.isErr())
|
|
24
|
+
return Promise.reject(webhook.error);
|
|
25
|
+
const url = `${process.env.NGROK_LOCALHOST_TUNNEL || process.env.VITE_SERVER_URL}/webhook/${webhook.value.id}`;
|
|
26
|
+
try {
|
|
27
|
+
await callback(url);
|
|
28
|
+
}
|
|
29
|
+
catch (error) {
|
|
30
|
+
await this.repository.webhook.registerError(webhook.value.id, webhook_constants_1.WEBHOOK_STATUS_ENUM.ERROR_CALLBACK, JSON.stringify(error));
|
|
31
|
+
return this.error("INTERNAL_SERVER_ERROR", "Error callback failed", { cause: error });
|
|
32
|
+
}
|
|
33
|
+
const startTime = new Date(webhook.value.createdAt).getTime();
|
|
34
|
+
const endTime = startTime + timeoutSec * 1000;
|
|
35
|
+
const promise = await new Promise((resolve, reject) => {
|
|
36
|
+
const intervalId = setInterval(async () => {
|
|
37
|
+
const currentTime = Date.now();
|
|
38
|
+
// Check if the timeout is reached
|
|
39
|
+
if (currentTime > endTime) {
|
|
40
|
+
await this.repository.webhook.timeout(webhook.value.id);
|
|
41
|
+
clearInterval(intervalId);
|
|
42
|
+
return reject(this.error("TIMEOUT", "Wait for request timeout"));
|
|
43
|
+
}
|
|
44
|
+
const result = await this.repository.webhook.findById(webhook.value.id);
|
|
45
|
+
if (result.isErr()) {
|
|
46
|
+
clearInterval(intervalId);
|
|
47
|
+
return reject((0, neverthrow_1.err)(result.error));
|
|
48
|
+
}
|
|
49
|
+
if (!result.value) {
|
|
50
|
+
clearInterval(intervalId);
|
|
51
|
+
return reject(this.error("NOT_FOUND", "Wait for request failed: cannot find webhook"));
|
|
52
|
+
}
|
|
53
|
+
const { status, payload } = result.value;
|
|
54
|
+
if (status === "COMPLETED") {
|
|
55
|
+
const data = payload ? (0, json_1.safeParseJson)(payload, payload) : payload;
|
|
56
|
+
clearInterval(intervalId);
|
|
57
|
+
return resolve((0, neverthrow_1.ok)(data));
|
|
58
|
+
}
|
|
59
|
+
if (status !== "WAITING") {
|
|
60
|
+
clearInterval(intervalId);
|
|
61
|
+
return reject(this.error("BAD_REQUEST", "Wait for request failed"));
|
|
62
|
+
}
|
|
63
|
+
}, 1000);
|
|
64
|
+
});
|
|
65
|
+
return promise;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.WebhookService = WebhookService;
|
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
export declare const workflows: import("drizzle-orm/sqlite-core").SQLiteTableWithColumns<{
|
|
2
|
+
name: "workflows";
|
|
3
|
+
schema: undefined;
|
|
4
|
+
columns: {
|
|
5
|
+
id: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
6
|
+
name: "id";
|
|
7
|
+
tableName: "workflows";
|
|
8
|
+
dataType: "string";
|
|
9
|
+
columnType: "SQLiteText";
|
|
10
|
+
data: string;
|
|
11
|
+
driverParam: string;
|
|
12
|
+
notNull: true;
|
|
13
|
+
hasDefault: true;
|
|
14
|
+
isPrimaryKey: true;
|
|
15
|
+
isAutoincrement: false;
|
|
16
|
+
hasRuntimeDefault: true;
|
|
17
|
+
enumValues: [string, ...string[]];
|
|
18
|
+
baseColumn: never;
|
|
19
|
+
identity: undefined;
|
|
20
|
+
generated: undefined;
|
|
21
|
+
}, {}, {
|
|
22
|
+
length: number | undefined;
|
|
23
|
+
}>;
|
|
24
|
+
userId: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
25
|
+
name: "user_id";
|
|
26
|
+
tableName: "workflows";
|
|
27
|
+
dataType: "string";
|
|
28
|
+
columnType: "SQLiteText";
|
|
29
|
+
data: string;
|
|
30
|
+
driverParam: string;
|
|
31
|
+
notNull: false;
|
|
32
|
+
hasDefault: false;
|
|
33
|
+
isPrimaryKey: false;
|
|
34
|
+
isAutoincrement: false;
|
|
35
|
+
hasRuntimeDefault: false;
|
|
36
|
+
enumValues: [string, ...string[]];
|
|
37
|
+
baseColumn: never;
|
|
38
|
+
identity: undefined;
|
|
39
|
+
generated: undefined;
|
|
40
|
+
}, {}, {
|
|
41
|
+
length: number | undefined;
|
|
42
|
+
}>;
|
|
43
|
+
jobId: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
44
|
+
name: "job_id";
|
|
45
|
+
tableName: "workflows";
|
|
46
|
+
dataType: "string";
|
|
47
|
+
columnType: "SQLiteText";
|
|
48
|
+
data: string;
|
|
49
|
+
driverParam: string;
|
|
50
|
+
notNull: true;
|
|
51
|
+
hasDefault: false;
|
|
52
|
+
isPrimaryKey: false;
|
|
53
|
+
isAutoincrement: false;
|
|
54
|
+
hasRuntimeDefault: false;
|
|
55
|
+
enumValues: [string, ...string[]];
|
|
56
|
+
baseColumn: never;
|
|
57
|
+
identity: undefined;
|
|
58
|
+
generated: undefined;
|
|
59
|
+
}, {}, {
|
|
60
|
+
length: number | undefined;
|
|
61
|
+
}>;
|
|
62
|
+
jobName: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
63
|
+
name: "job_name";
|
|
64
|
+
tableName: "workflows";
|
|
65
|
+
dataType: "string";
|
|
66
|
+
columnType: "SQLiteText";
|
|
67
|
+
data: string;
|
|
68
|
+
driverParam: string;
|
|
69
|
+
notNull: true;
|
|
70
|
+
hasDefault: false;
|
|
71
|
+
isPrimaryKey: false;
|
|
72
|
+
isAutoincrement: false;
|
|
73
|
+
hasRuntimeDefault: false;
|
|
74
|
+
enumValues: [string, ...string[]];
|
|
75
|
+
baseColumn: never;
|
|
76
|
+
identity: undefined;
|
|
77
|
+
generated: undefined;
|
|
78
|
+
}, {}, {
|
|
79
|
+
length: number | undefined;
|
|
80
|
+
}>;
|
|
81
|
+
queueName: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
82
|
+
name: "queue_name";
|
|
83
|
+
tableName: "workflows";
|
|
84
|
+
dataType: "string";
|
|
85
|
+
columnType: "SQLiteText";
|
|
86
|
+
data: string;
|
|
87
|
+
driverParam: string;
|
|
88
|
+
notNull: true;
|
|
89
|
+
hasDefault: false;
|
|
90
|
+
isPrimaryKey: false;
|
|
91
|
+
isAutoincrement: false;
|
|
92
|
+
hasRuntimeDefault: false;
|
|
93
|
+
enumValues: [string, ...string[]];
|
|
94
|
+
baseColumn: never;
|
|
95
|
+
identity: undefined;
|
|
96
|
+
generated: undefined;
|
|
97
|
+
}, {}, {
|
|
98
|
+
length: number | undefined;
|
|
99
|
+
}>;
|
|
100
|
+
timeout: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
101
|
+
name: "timeout";
|
|
102
|
+
tableName: "workflows";
|
|
103
|
+
dataType: "number";
|
|
104
|
+
columnType: "SQLiteInteger";
|
|
105
|
+
data: number;
|
|
106
|
+
driverParam: number;
|
|
107
|
+
notNull: false;
|
|
108
|
+
hasDefault: false;
|
|
109
|
+
isPrimaryKey: false;
|
|
110
|
+
isAutoincrement: false;
|
|
111
|
+
hasRuntimeDefault: false;
|
|
112
|
+
enumValues: undefined;
|
|
113
|
+
baseColumn: never;
|
|
114
|
+
identity: undefined;
|
|
115
|
+
generated: undefined;
|
|
116
|
+
}, {}, {}>;
|
|
117
|
+
tags: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
118
|
+
name: "tags";
|
|
119
|
+
tableName: "workflows";
|
|
120
|
+
dataType: "json";
|
|
121
|
+
columnType: "SQLiteTextJson";
|
|
122
|
+
data: string[];
|
|
123
|
+
driverParam: string;
|
|
124
|
+
notNull: false;
|
|
125
|
+
hasDefault: true;
|
|
126
|
+
isPrimaryKey: false;
|
|
127
|
+
isAutoincrement: false;
|
|
128
|
+
hasRuntimeDefault: true;
|
|
129
|
+
enumValues: undefined;
|
|
130
|
+
baseColumn: never;
|
|
131
|
+
identity: undefined;
|
|
132
|
+
generated: undefined;
|
|
133
|
+
}, {}, {
|
|
134
|
+
$type: string[];
|
|
135
|
+
}>;
|
|
136
|
+
input: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
137
|
+
name: "input";
|
|
138
|
+
tableName: "workflows";
|
|
139
|
+
dataType: "json";
|
|
140
|
+
columnType: "SQLiteTextJson";
|
|
141
|
+
data: unknown;
|
|
142
|
+
driverParam: string;
|
|
143
|
+
notNull: false;
|
|
144
|
+
hasDefault: false;
|
|
145
|
+
isPrimaryKey: false;
|
|
146
|
+
isAutoincrement: false;
|
|
147
|
+
hasRuntimeDefault: false;
|
|
148
|
+
enumValues: undefined;
|
|
149
|
+
baseColumn: never;
|
|
150
|
+
identity: undefined;
|
|
151
|
+
generated: undefined;
|
|
152
|
+
}, {}, {}>;
|
|
153
|
+
output: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
154
|
+
name: "output";
|
|
155
|
+
tableName: "workflows";
|
|
156
|
+
dataType: "json";
|
|
157
|
+
columnType: "SQLiteTextJson";
|
|
158
|
+
data: unknown;
|
|
159
|
+
driverParam: string;
|
|
160
|
+
notNull: false;
|
|
161
|
+
hasDefault: false;
|
|
162
|
+
isPrimaryKey: false;
|
|
163
|
+
isAutoincrement: false;
|
|
164
|
+
hasRuntimeDefault: false;
|
|
165
|
+
enumValues: undefined;
|
|
166
|
+
baseColumn: never;
|
|
167
|
+
identity: undefined;
|
|
168
|
+
generated: undefined;
|
|
169
|
+
}, {}, {}>;
|
|
170
|
+
status: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
171
|
+
name: "status";
|
|
172
|
+
tableName: "workflows";
|
|
173
|
+
dataType: "string";
|
|
174
|
+
columnType: "SQLiteText";
|
|
175
|
+
data: "queued" | "running" | "completed" | "failed";
|
|
176
|
+
driverParam: string;
|
|
177
|
+
notNull: true;
|
|
178
|
+
hasDefault: false;
|
|
179
|
+
isPrimaryKey: false;
|
|
180
|
+
isAutoincrement: false;
|
|
181
|
+
hasRuntimeDefault: false;
|
|
182
|
+
enumValues: [string, ...string[]];
|
|
183
|
+
baseColumn: never;
|
|
184
|
+
identity: undefined;
|
|
185
|
+
generated: undefined;
|
|
186
|
+
}, {}, {
|
|
187
|
+
length: number | undefined;
|
|
188
|
+
$type: "queued" | "running" | "completed" | "failed";
|
|
189
|
+
}>;
|
|
190
|
+
error: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
191
|
+
name: "error";
|
|
192
|
+
tableName: "workflows";
|
|
193
|
+
dataType: "string";
|
|
194
|
+
columnType: "SQLiteText";
|
|
195
|
+
data: string;
|
|
196
|
+
driverParam: string;
|
|
197
|
+
notNull: false;
|
|
198
|
+
hasDefault: false;
|
|
199
|
+
isPrimaryKey: false;
|
|
200
|
+
isAutoincrement: false;
|
|
201
|
+
hasRuntimeDefault: false;
|
|
202
|
+
enumValues: [string, ...string[]];
|
|
203
|
+
baseColumn: never;
|
|
204
|
+
identity: undefined;
|
|
205
|
+
generated: undefined;
|
|
206
|
+
}, {}, {
|
|
207
|
+
length: number | undefined;
|
|
208
|
+
}>;
|
|
209
|
+
retries: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
210
|
+
name: "retries";
|
|
211
|
+
tableName: "workflows";
|
|
212
|
+
dataType: "number";
|
|
213
|
+
columnType: "SQLiteInteger";
|
|
214
|
+
data: number;
|
|
215
|
+
driverParam: number;
|
|
216
|
+
notNull: true;
|
|
217
|
+
hasDefault: true;
|
|
218
|
+
isPrimaryKey: false;
|
|
219
|
+
isAutoincrement: false;
|
|
220
|
+
hasRuntimeDefault: false;
|
|
221
|
+
enumValues: undefined;
|
|
222
|
+
baseColumn: never;
|
|
223
|
+
identity: undefined;
|
|
224
|
+
generated: undefined;
|
|
225
|
+
}, {}, {}>;
|
|
226
|
+
finishedAt: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
227
|
+
name: "finished_at";
|
|
228
|
+
tableName: "workflows";
|
|
229
|
+
dataType: "date";
|
|
230
|
+
columnType: "SQLiteTimestamp";
|
|
231
|
+
data: Date;
|
|
232
|
+
driverParam: number;
|
|
233
|
+
notNull: false;
|
|
234
|
+
hasDefault: false;
|
|
235
|
+
isPrimaryKey: false;
|
|
236
|
+
isAutoincrement: false;
|
|
237
|
+
hasRuntimeDefault: false;
|
|
238
|
+
enumValues: undefined;
|
|
239
|
+
baseColumn: never;
|
|
240
|
+
identity: undefined;
|
|
241
|
+
generated: undefined;
|
|
242
|
+
}, {}, {}>;
|
|
243
|
+
processedAt: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
244
|
+
name: "processed_at";
|
|
245
|
+
tableName: "workflows";
|
|
246
|
+
dataType: "date";
|
|
247
|
+
columnType: "SQLiteTimestamp";
|
|
248
|
+
data: Date;
|
|
249
|
+
driverParam: number;
|
|
250
|
+
notNull: false;
|
|
251
|
+
hasDefault: false;
|
|
252
|
+
isPrimaryKey: false;
|
|
253
|
+
isAutoincrement: false;
|
|
254
|
+
hasRuntimeDefault: false;
|
|
255
|
+
enumValues: undefined;
|
|
256
|
+
baseColumn: never;
|
|
257
|
+
identity: undefined;
|
|
258
|
+
generated: undefined;
|
|
259
|
+
}, {}, {}>;
|
|
260
|
+
createdAt: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
261
|
+
name: "created_at";
|
|
262
|
+
tableName: "workflows";
|
|
263
|
+
dataType: "date";
|
|
264
|
+
columnType: "SQLiteTimestamp";
|
|
265
|
+
data: Date;
|
|
266
|
+
driverParam: number;
|
|
267
|
+
notNull: true;
|
|
268
|
+
hasDefault: true;
|
|
269
|
+
isPrimaryKey: false;
|
|
270
|
+
isAutoincrement: false;
|
|
271
|
+
hasRuntimeDefault: true;
|
|
272
|
+
enumValues: undefined;
|
|
273
|
+
baseColumn: never;
|
|
274
|
+
identity: undefined;
|
|
275
|
+
generated: undefined;
|
|
276
|
+
}, {}, {}>;
|
|
277
|
+
updatedAt: import("drizzle-orm/sqlite-core").SQLiteColumn<{
|
|
278
|
+
name: "updated_at";
|
|
279
|
+
tableName: "workflows";
|
|
280
|
+
dataType: "date";
|
|
281
|
+
columnType: "SQLiteTimestamp";
|
|
282
|
+
data: Date;
|
|
283
|
+
driverParam: number;
|
|
284
|
+
notNull: true;
|
|
285
|
+
hasDefault: true;
|
|
286
|
+
isPrimaryKey: false;
|
|
287
|
+
isAutoincrement: false;
|
|
288
|
+
hasRuntimeDefault: true;
|
|
289
|
+
enumValues: undefined;
|
|
290
|
+
baseColumn: never;
|
|
291
|
+
identity: undefined;
|
|
292
|
+
generated: undefined;
|
|
293
|
+
}, {}, {}>;
|
|
294
|
+
};
|
|
295
|
+
dialect: "sqlite";
|
|
296
|
+
}>;
|
|
297
|
+
//# sourceMappingURL=workflow.db.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workflow.db.d.ts","sourceRoot":"","sources":["../../../../src/modules/workflow/workflow.db.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuBpB,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.workflows = void 0;
|
|
4
|
+
const sqlite_core_1 = require("drizzle-orm/sqlite-core");
|
|
5
|
+
const uuid_1 = require("uuid");
|
|
6
|
+
const auth_db_1 = require("#modules/auth/auth.db");
|
|
7
|
+
exports.workflows = (0, sqlite_core_1.sqliteTable)("workflows", {
|
|
8
|
+
id: (0, sqlite_core_1.text)("id").primaryKey().$default(uuid_1.v4),
|
|
9
|
+
userId: (0, sqlite_core_1.text)("user_id").references(() => auth_db_1.users.id, { onDelete: "cascade" }),
|
|
10
|
+
jobId: (0, sqlite_core_1.text)("job_id").unique().notNull(),
|
|
11
|
+
jobName: (0, sqlite_core_1.text)("job_name").notNull(),
|
|
12
|
+
queueName: (0, sqlite_core_1.text)("queue_name").notNull(),
|
|
13
|
+
timeout: (0, sqlite_core_1.integer)("timeout"),
|
|
14
|
+
tags: (0, sqlite_core_1.text)("tags", { mode: "json" })
|
|
15
|
+
.$default(() => [])
|
|
16
|
+
.$type(),
|
|
17
|
+
input: (0, sqlite_core_1.text)("input", { mode: "json" }),
|
|
18
|
+
output: (0, sqlite_core_1.text)("output", { mode: "json" }),
|
|
19
|
+
status: (0, sqlite_core_1.text)("status").notNull().$type(),
|
|
20
|
+
error: (0, sqlite_core_1.text)("error"),
|
|
21
|
+
retries: (0, sqlite_core_1.integer)("retries").notNull().default(0),
|
|
22
|
+
finishedAt: (0, sqlite_core_1.integer)("finished_at", { mode: "timestamp" }),
|
|
23
|
+
processedAt: (0, sqlite_core_1.integer)("processed_at", { mode: "timestamp" }),
|
|
24
|
+
createdAt: (0, sqlite_core_1.integer)("created_at", { mode: "timestamp" })
|
|
25
|
+
.notNull()
|
|
26
|
+
.$default(() => new Date()),
|
|
27
|
+
updatedAt: (0, sqlite_core_1.integer)("updated_at", { mode: "timestamp" })
|
|
28
|
+
.notNull()
|
|
29
|
+
.$default(() => new Date()),
|
|
30
|
+
});
|