Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
87 lines
3.1 KiB
TypeScript
87 lines
3.1 KiB
TypeScript
import { Knex } from 'knex';
|
|
|
|
export type WorkflowDefinitionVersionRecord = {
|
|
version_id: string;
|
|
workflow_id: string;
|
|
// uuid Citus distribution column (backfilled from the parent definition).
|
|
tenant?: string | null;
|
|
version: number;
|
|
definition_json: Record<string, unknown>;
|
|
payload_schema_json?: Record<string, unknown> | null;
|
|
validation_status?: string | null;
|
|
validation_errors?: Record<string, unknown>[] | null;
|
|
validation_warnings?: Record<string, unknown>[] | null;
|
|
validated_at?: string | null;
|
|
published_by?: string | null;
|
|
published_at?: string | null;
|
|
created_at: string;
|
|
updated_at: string;
|
|
};
|
|
|
|
const serializeJsonArrayForPgJsonColumn = (value: unknown): unknown => {
|
|
// node-postgres treats JS arrays as Postgres arrays, not JSON, which breaks inserts into `json/jsonb` columns.
|
|
// Serialize explicitly so Postgres receives valid JSON text (e.g. `[{"...": "..."}]`).
|
|
return Array.isArray(value) ? JSON.stringify(value) : value;
|
|
};
|
|
|
|
const normalizeWorkflowDefinitionVersionWrite = (
|
|
data: Partial<WorkflowDefinitionVersionRecord>
|
|
): Partial<WorkflowDefinitionVersionRecord> => {
|
|
const out: Partial<WorkflowDefinitionVersionRecord> = { ...data };
|
|
|
|
if ('validation_errors' in out) {
|
|
out.validation_errors = serializeJsonArrayForPgJsonColumn(out.validation_errors) as any;
|
|
}
|
|
if ('validation_warnings' in out) {
|
|
out.validation_warnings = serializeJsonArrayForPgJsonColumn(out.validation_warnings) as any;
|
|
}
|
|
|
|
return out;
|
|
};
|
|
|
|
const WorkflowDefinitionVersionModelV2 = {
|
|
create: async (knex: Knex, data: Partial<WorkflowDefinitionVersionRecord>): Promise<WorkflowDefinitionVersionRecord> => {
|
|
const normalized = normalizeWorkflowDefinitionVersionWrite(data);
|
|
const [record] = await knex<WorkflowDefinitionVersionRecord>('workflow_definition_versions')
|
|
.insert({
|
|
...normalized,
|
|
created_at: new Date().toISOString(),
|
|
updated_at: new Date().toISOString()
|
|
})
|
|
.returning('*');
|
|
return record;
|
|
},
|
|
|
|
update: async (
|
|
knex: Knex,
|
|
workflowId: string,
|
|
version: number,
|
|
data: Partial<WorkflowDefinitionVersionRecord>
|
|
): Promise<WorkflowDefinitionVersionRecord> => {
|
|
const normalized = normalizeWorkflowDefinitionVersionWrite(data);
|
|
const [record] = await knex<WorkflowDefinitionVersionRecord>('workflow_definition_versions')
|
|
.where({ workflow_id: workflowId, version })
|
|
.update({
|
|
...normalized,
|
|
updated_at: new Date().toISOString()
|
|
})
|
|
.returning('*');
|
|
return record;
|
|
},
|
|
|
|
getByWorkflowAndVersion: async (knex: Knex, workflowId: string, version: number): Promise<WorkflowDefinitionVersionRecord | null> => {
|
|
const record = await knex<WorkflowDefinitionVersionRecord>('workflow_definition_versions')
|
|
.where({ workflow_id: workflowId, version })
|
|
.first();
|
|
return record || null;
|
|
},
|
|
|
|
listByWorkflow: async (knex: Knex, workflowId: string): Promise<WorkflowDefinitionVersionRecord[]> => {
|
|
return knex<WorkflowDefinitionVersionRecord>('workflow_definition_versions')
|
|
.where({ workflow_id: workflowId })
|
|
.orderBy('version', 'desc');
|
|
}
|
|
};
|
|
|
|
export default WorkflowDefinitionVersionModelV2;
|