@friggframework/core 2.0.0--canary.459.51231dd.0 → 2.0.0--canary.459.47085f6.0
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friggframework/core",
|
|
3
3
|
"prettier": "@friggframework/prettier-config",
|
|
4
|
-
"version": "2.0.0--canary.459.
|
|
4
|
+
"version": "2.0.0--canary.459.47085f6.0",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@hapi/boom": "^10.0.1",
|
|
7
7
|
"@prisma/client": "^6.16.3",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"uuid": "^9.0.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@friggframework/eslint-config": "2.0.0--canary.459.
|
|
27
|
-
"@friggframework/prettier-config": "2.0.0--canary.459.
|
|
28
|
-
"@friggframework/test": "2.0.0--canary.459.
|
|
26
|
+
"@friggframework/eslint-config": "2.0.0--canary.459.47085f6.0",
|
|
27
|
+
"@friggframework/prettier-config": "2.0.0--canary.459.47085f6.0",
|
|
28
|
+
"@friggframework/test": "2.0.0--canary.459.47085f6.0",
|
|
29
29
|
"@types/lodash": "4.17.15",
|
|
30
30
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
31
31
|
"chai": "^4.3.6",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "47085f6facf01bcd5a67cabc7b47c21d5e881e70"
|
|
68
68
|
}
|
|
@@ -46,6 +46,7 @@ model User {
|
|
|
46
46
|
credentials Credential[]
|
|
47
47
|
entities Entity[]
|
|
48
48
|
integrations Integration[]
|
|
49
|
+
processes Process[]
|
|
49
50
|
|
|
50
51
|
@@unique([email])
|
|
51
52
|
@@unique([username])
|
|
@@ -164,6 +165,7 @@ model Integration {
|
|
|
164
165
|
associations Association[]
|
|
165
166
|
syncs Sync[]
|
|
166
167
|
mappings IntegrationMapping[]
|
|
168
|
+
processes Process[]
|
|
167
169
|
|
|
168
170
|
@@index([userId])
|
|
169
171
|
@@index([status])
|
|
@@ -281,6 +283,49 @@ enum AssociationType {
|
|
|
281
283
|
MANY_TO_ONE
|
|
282
284
|
}
|
|
283
285
|
|
|
286
|
+
// ============================================================================
|
|
287
|
+
// PROCESS MODELS
|
|
288
|
+
// ============================================================================
|
|
289
|
+
|
|
290
|
+
/// Generic Process Model - tracks any long-running operation
|
|
291
|
+
/// Used for: CRM syncs, data migrations, bulk operations, etc.
|
|
292
|
+
model Process {
|
|
293
|
+
id Int @id @default(autoincrement())
|
|
294
|
+
|
|
295
|
+
// Core references
|
|
296
|
+
userId Int
|
|
297
|
+
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
298
|
+
integrationId Int
|
|
299
|
+
integration Integration @relation(fields: [integrationId], references: [id], onDelete: Cascade)
|
|
300
|
+
|
|
301
|
+
// Process identification
|
|
302
|
+
name String // e.g., "zoho-crm-contact-sync", "pipedrive-lead-sync"
|
|
303
|
+
type String // e.g., "CRM_SYNC", "DATA_MIGRATION", "BULK_OPERATION"
|
|
304
|
+
|
|
305
|
+
// State machine
|
|
306
|
+
state String // Current state (integration-defined states)
|
|
307
|
+
|
|
308
|
+
// Flexible storage
|
|
309
|
+
context Json @default("{}") // Process-specific data (pagination, metadata, etc.)
|
|
310
|
+
results Json @default("{}") // Process results and metrics
|
|
311
|
+
|
|
312
|
+
// Hierarchy support - self-referential relation
|
|
313
|
+
parentProcessId Int?
|
|
314
|
+
parentProcess Process? @relation("ProcessHierarchy", fields: [parentProcessId], references: [id], onDelete: SetNull)
|
|
315
|
+
childProcesses Process[] @relation("ProcessHierarchy")
|
|
316
|
+
|
|
317
|
+
// Timestamps
|
|
318
|
+
createdAt DateTime @default(now())
|
|
319
|
+
updatedAt DateTime @updatedAt
|
|
320
|
+
|
|
321
|
+
@@index([userId])
|
|
322
|
+
@@index([integrationId])
|
|
323
|
+
@@index([type])
|
|
324
|
+
@@index([state])
|
|
325
|
+
@@index([name])
|
|
326
|
+
@@index([parentProcessId])
|
|
327
|
+
}
|
|
328
|
+
|
|
284
329
|
// ============================================================================
|
|
285
330
|
// UTILITY MODELS
|
|
286
331
|
// ============================================================================
|