chore: Remove default values from fields of database models

This commit is contained in:
Faruk AYDIN
2022-10-19 19:22:11 +02:00
parent dc0f374110
commit 74aed833bf
5 changed files with 13 additions and 9 deletions

View File

@@ -18,6 +18,7 @@ const createConnection = async (
return await context.currentUser.$relatedQuery('connections').insert({
key: params.input.key,
formattedData: params.input.formattedData,
verified: false,
});
};

View File

@@ -4,7 +4,6 @@ import { AES, enc } from 'crypto-js';
import Base from './base';
import User from './user';
import Step from './step';
import App from './app';
import appConfig from '../config/app';
import { IJSONObject } from '@automatisch/types';
import Telemetry from '../helpers/telemetry';
@@ -15,7 +14,7 @@ class Connection extends Base {
data: string;
formattedData?: IJSONObject;
userId!: string;
verified = false;
verified: boolean;
draft: boolean;
count?: number;
flowCount?: number;
@@ -32,7 +31,7 @@ class Connection extends Base {
data: { type: 'string' },
formattedData: { type: 'object' },
userId: { type: 'string', format: 'uuid' },
verified: { type: 'boolean' },
verified: { type: 'boolean', default: false },
draft: { type: 'boolean' },
},
};

View File

@@ -12,7 +12,7 @@ class ExecutionStep extends Base {
dataIn!: IJSONObject;
dataOut!: IJSONObject;
errorDetails: IJSONObject;
status = 'failure';
status: 'success' | 'failure';
step: Step;
static tableName = 'execution_steps';

View File

@@ -7,9 +7,9 @@ import Telemetry from '../helpers/telemetry';
class Execution extends Base {
id!: string;
flowId!: string;
testRun = false;
testRun: boolean;
internalId: string;
executionSteps: ExecutionStep[] = [];
executionSteps: ExecutionStep[];
static tableName = 'executions';
@@ -19,7 +19,7 @@ class Execution extends Base {
properties: {
id: { type: 'string', format: 'uuid' },
flowId: { type: 'string', format: 'uuid' },
testRun: { type: 'boolean' },
testRun: { type: 'boolean', default: false },
internalId: { type: 'string' },
},
};

View File

@@ -15,7 +15,7 @@ class Step extends Base {
appKey?: string;
type!: IStep['type'];
connectionId?: string;
status = 'incomplete';
status: 'incomplete' | 'completed';
position!: number;
parameters: IJSONObject;
connection?: Connection;
@@ -35,7 +35,11 @@ class Step extends Base {
appKey: { type: ['string', 'null'], minLength: 1, maxLength: 255 },
type: { type: 'string', enum: ['action', 'trigger'] },
connectionId: { type: ['string', 'null'], format: 'uuid' },
status: { type: 'string', enum: ['incomplete', 'completed'] },
status: {
type: 'string',
enum: ['incomplete', 'completed'],
default: 'incomplete',
},
position: { type: 'integer' },
parameters: { type: 'object' },
},