File tree Expand file tree Collapse file tree
engine/src/lib/handler/context Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import {
2- EncryptedDatabaseToken ,
2+ EncryptedObject ,
33 ExecuteFlowOperation ,
44 ExecutePropsOptions ,
55 ExecuteStepOperation ,
@@ -69,7 +69,7 @@ export class EngineConstants {
6969 public readonly testRunActionLimits : TestRunLimitSettings ,
7070 public readonly isTestRun : boolean ,
7171 public readonly tablesDatabaseId : number ,
72- public readonly tablesDatabaseToken : EncryptedDatabaseToken ,
72+ public readonly tablesDatabaseToken : EncryptedObject ,
7373 public readonly resumePayload ?: ResumePayload ,
7474 ) { }
7575
Original file line number Diff line number Diff line change 11import { Static , Type } from '@sinclair/typebox' ;
22import { AppConnectionValue } from '../app-connection/app-connection' ;
33import { BlockPackage } from '../blocks' ;
4+ import { EncryptedObject } from '../common' ;
45import { OpenOpsId } from '../common/id-generator' ;
56import {
67 ExecutionState ,
@@ -32,11 +33,6 @@ export enum TriggerHookType {
3233 TEST = 'TEST' ,
3334}
3435
35- export type EncryptedDatabaseToken = {
36- iv : string ;
37- data : string ;
38- } ;
39-
4036export type EngineOperation =
4137 | ExecuteStepOperation
4238 | ExecuteFlowOperation
@@ -52,7 +48,7 @@ export type BaseEngineOperation = {
5248 internalApiUrl : string ;
5349 publicUrl : string ;
5450 tablesDatabaseId : number ;
55- tablesDatabaseToken : EncryptedDatabaseToken ;
51+ tablesDatabaseToken : EncryptedObject ;
5652} ;
5753
5854export type ExecuteValidateAuthOperation = BaseEngineOperation & {
You can’t perform that action at this time.
0 commit comments