feat: Add usage data to getBillingAndUsage graphQL query

This commit is contained in:
Faruk AYDIN
2023-03-25 02:16:17 +03:00
parent b5524b18cf
commit f07d9dd813
4 changed files with 29 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ class ExecutionStep extends Base {
status: 'success' | 'failure';
step: Step;
execution?: Execution;
count?: number;
static tableName = 'execution_steps';

View File

@@ -6,6 +6,7 @@ import Connection from './connection';
import Flow from './flow';
import Step from './step';
import Execution from './execution';
import ExecutionStep from './execution-step';
import bcrypt from 'bcrypt';
import crypto from 'crypto';
import PaymentPlan from './payment-plan.ee';