ocker logs twenty-server-1 Running database setup and migrations... Database default does not exist, creating... CREATE DATABASE Performed 'create schema "public"' successfully Performed 'create schema "core"' successfully Performed 'create extension "uuid-ossp"' successfully query: SELECT * FROM current_schema() query: CREATE EXTENSION IF NOT EXISTS "uuid-ossp" query: SELECT version(); query: SELECT * FROM "information_schema"."tables" WHERE "table_schema" = 'core' AND "table_name" = '_typeorm_migrations' query: CREATE TABLE "core"."_typeorm_migrations" ("id" SERIAL NOT NULL, "timestamp" bigint NOT NULL, "name" character varying NOT NULL, CONSTRAINT "PK_a6ff2a8e8bb563f3d15635efd01" PRIMARY KEY ("id")) query: SELECT * FROM "core"."_typeorm_migrations" "_typeorm_migrations" ORDER BY "id" DESC 0 migrations are already loaded in the database. 131 migrations were found in the source code. 131 migrations are new migrations must be executed. query: START TRANSACTION query: CREATE TABLE "core"."relationMetadata" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "relationType" character varying NOT NULL, "fromObjectMetadataId" uuid NOT NULL, "toObjectMetadataId" uuid NOT NULL, "fromFieldMetadataId" uuid NOT NULL, "toFieldMetadataId" uuid NOT NULL, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "REL_3deb257254145a3bdde9575e7d" UNIQUE ("fromFieldMetadataId"), CONSTRAINT "REL_9dea8f90d04edbbf9c541a95c3" UNIQUE ("toFieldMetadataId"), CONSTRAINT "PK_2724f60cb4f17a89481a7e8d7d3" PRIMARY KEY ("id")) query: CREATE TABLE "core"."fieldMetadata" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "objectMetadataId" uuid NOT NULL, "type" character varying NOT NULL, "name" character varying NOT NULL, "label" character varying NOT NULL, "targetColumnMap" jsonb NOT NULL, "defaultValue" jsonb, "description" text, "icon" character varying, "enums" text array, "isCustom" boolean NOT NULL DEFAULT false, "isActive" boolean NOT NULL DEFAULT false, "isSystem" boolean NOT NULL DEFAULT false, "isNullable" boolean DEFAULT true, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "IndexOnNameObjectMetadataIdAndWorkspaceIdUnique" UNIQUE ("name", "objectMetadataId", "workspaceId"), CONSTRAINT "PK_d046b1c7cea325ebc4cdc25e7a9" PRIMARY KEY ("id")) query: CREATE TABLE "core"."objectMetadata" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "dataSourceId" uuid NOT NULL, "nameSingular" character varying NOT NULL, "namePlural" character varying NOT NULL, "labelSingular" character varying NOT NULL, "labelPlural" character varying NOT NULL, "description" text, "icon" character varying, "targetTableName" character varying NOT NULL, "isCustom" boolean NOT NULL DEFAULT false, "isActive" boolean NOT NULL DEFAULT false, "isSystem" boolean NOT NULL DEFAULT false, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "IndexOnNamePluralAndWorkspaceIdUnique" UNIQUE ("namePlural", "workspaceId"), CONSTRAINT "IndexOnNameSingularAndWorkspaceIdUnique" UNIQUE ("nameSingular", "workspaceId"), CONSTRAINT "PK_81fb7f4f4244211cfbd188af1e8" PRIMARY KEY ("id")) query: CREATE TYPE "core"."dataSource_type_enum" AS ENUM('postgres') query: CREATE TABLE "core"."dataSource" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "url" character varying, "schema" character varying, "type" "core"."dataSource_type_enum" NOT NULL DEFAULT 'postgres', "label" character varying, "isRemote" boolean NOT NULL DEFAULT false, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "PK_6d01ae6c0f47baf4f8e37342268" PRIMARY KEY ("id")) query: CREATE TABLE "core"."workspaceMigration" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "migrations" jsonb, "name" character varying, "isCustom" boolean NOT NULL DEFAULT false, "appliedAt" TIMESTAMP, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "PK_f9b06eb42494795f73acb5c2350" PRIMARY KEY ("id")) query: ALTER TABLE "core"."relationMetadata" ADD CONSTRAINT "FK_f2a0acd3a548ee446a1a35df44d" FOREIGN KEY ("fromObjectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE NO ACTION ON UPDATE NO ACTION query: ALTER TABLE "core"."relationMetadata" ADD CONSTRAINT "FK_0f781f589e5a527b8f3d3a4b824" FOREIGN KEY ("toObjectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE NO ACTION ON UPDATE NO ACTION query: ALTER TABLE "core"."relationMetadata" ADD CONSTRAINT "FK_3deb257254145a3bdde9575e7d6" FOREIGN KEY ("fromFieldMetadataId") REFERENCES "core"."fieldMetadata"("id") ON DELETE NO ACTION ON UPDATE NO ACTION query: ALTER TABLE "core"."relationMetadata" ADD CONSTRAINT "FK_9dea8f90d04edbbf9c541a95c3b" FOREIGN KEY ("toFieldMetadataId") REFERENCES "core"."fieldMetadata"("id") ON DELETE NO ACTION ON UPDATE NO ACTION query: ALTER TABLE "core"."fieldMetadata" ADD CONSTRAINT "FK_de2a09b9e3e690440480d2dee26" FOREIGN KEY ("objectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."objectMetadata" ADD CONSTRAINT "FK_0b19dd17369574578bc18c405b2" FOREIGN KEY ("dataSourceId") REFERENCES "core"."dataSource"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1700140427984,"SetupMetadataTables1700140427984"] Migration SetupMetadataTables1700140427984 has been executed successfully. query: CREATE TABLE "core"."refreshToken" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "userId" uuid NOT NULL, "expiresAt" TIMESTAMP WITH TIME ZONE NOT NULL, "deletedAt" TIMESTAMP WITH TIME ZONE, "revokedAt" TIMESTAMP WITH TIME ZONE, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "PK_7d8bee0204106019488c4c50ffa" PRIMARY KEY ("id")) query: CREATE TABLE "core"."workspace" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "domainName" character varying, "displayName" character varying, "logo" character varying, "inviteHash" character varying, "deletedAt" TIMESTAMP, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "PK_098656ae401f3e1a4586f47fd8e" PRIMARY KEY ("id")) query: CREATE TABLE "core"."user" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "firstName" character varying NOT NULL DEFAULT '', "lastName" character varying NOT NULL DEFAULT '', "email" character varying NOT NULL, "emailVerified" boolean NOT NULL DEFAULT false, "disabled" boolean NOT NULL DEFAULT false, "passwordHash" character varying, "canImpersonate" boolean NOT NULL DEFAULT false, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "deletedAt" TIMESTAMP, "defaultWorkspaceId" uuid, CONSTRAINT "PK_a3ffb1c0c8416b9fc6f907b7433" PRIMARY KEY ("id")) query: ALTER TABLE "core"."refreshToken" ADD CONSTRAINT "FK_610102b60fea1455310ccd299de" FOREIGN KEY ("userId") REFERENCES "core"."user"("id") ON DELETE NO ACTION ON UPDATE NO ACTION query: ALTER TABLE "core"."user" ADD CONSTRAINT "FK_5d77e050eabd28d203b301235a7" FOREIGN KEY ("defaultWorkspaceId") REFERENCES "core"."workspace"("id") ON DELETE NO ACTION ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1700324860820,"SetupCoreTables1700324860820"] Migration SetupCoreTables1700324860820 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" ADD "labelIdentifierFieldMetadataId" character varying query: ALTER TABLE "core"."objectMetadata" ADD "imageIdentifierFieldMetadataId" character varying query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1700565712112,"AddIdentifierFieldToObjectMetadata1700565712112"] Migration AddIdentifierFieldToObjectMetadata1700565712112 has been executed successfully. query: CREATE TABLE "core"."workspaceCacheVersion" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "workspaceId" uuid NOT NULL, "version" character varying NOT NULL, "createdAt" TIMESTAMP NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "UQ_1a80ecf2638b477809403cc26ed" UNIQUE ("workspaceId"), CONSTRAINT "PK_5d502f8dbfb5b9a8bf2439320e9" PRIMARY KEY ("id")) query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1700650554672,"AddWorkspaceCacheVersion1700650554672"] Migration AddWorkspaceCacheVersion1700650554672 has been executed successfully. query: ALTER TABLE "core"."user" DROP CONSTRAINT "FK_5d77e050eabd28d203b301235a7" query: ALTER TABLE "core"."refreshToken" DROP CONSTRAINT "FK_610102b60fea1455310ccd299de" query: ALTER TABLE "core"."workspace" ADD "allowImpersonation" boolean NOT NULL DEFAULT true query: ALTER TABLE "core"."user" ADD CONSTRAINT "FK_2ec910029395fa7655621c88908" FOREIGN KEY ("defaultWorkspaceId") REFERENCES "core"."workspace"("id") ON DELETE NO ACTION ON UPDATE NO ACTION query: ALTER TABLE "core"."refreshToken" ADD CONSTRAINT "FK_7008a2b0fb083127f60b5f4448e" FOREIGN KEY ("userId") REFERENCES "core"."user"("id") ON DELETE NO ACTION ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1700654387203,"AddAllowImpersonationToWorkspace1700654387203"] Migration AddAllowImpersonationToWorkspace1700654387203 has been executed successfully. query: ALTER TABLE "core"."refreshToken" DROP CONSTRAINT "FK_7008a2b0fb083127f60b5f4448e" query: ALTER TABLE "core"."refreshToken" ADD CONSTRAINT "FK_7008a2b0fb083127f60b5f4448e" FOREIGN KEY ("userId") REFERENCES "core"."user"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1700661180856,"AddCascadeDeleteOnRefreshTokenUser1700661180856"] Migration AddCascadeDeleteOnRefreshTokenUser1700661180856 has been executed successfully. query: ALTER TABLE "core"."relationMetadata" DROP CONSTRAINT "FK_0f781f589e5a527b8f3d3a4b824" query: ALTER TABLE "core"."relationMetadata" DROP CONSTRAINT "FK_f2a0acd3a548ee446a1a35df44d" query: ALTER TABLE "core"."relationMetadata" ADD CONSTRAINT "FK_f2a0acd3a548ee446a1a35df44d" FOREIGN KEY ("fromObjectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."relationMetadata" ADD CONSTRAINT "FK_0f781f589e5a527b8f3d3a4b824" FOREIGN KEY ("toObjectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1700661538754,"AddCascadeDeleteOnRelationObject1700661538754"] Migration AddCascadeDeleteOnRelationObject1700661538754 has been executed successfully. query: ALTER TABLE "core"."user" DROP CONSTRAINT "FK_2ec910029395fa7655621c88908" query: ALTER TABLE "core"."user" ADD CONSTRAINT "FK_2ec910029395fa7655621c88908" FOREIGN KEY ("defaultWorkspaceId") REFERENCES "core"."workspace"("id") ON DELETE SET NULL ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1700663611659,"AddWorkspaceDeleteCascadeSetNullInUser1700663611659"] Migration AddWorkspaceDeleteCascadeSetNullInUser1700663611659 has been executed successfully. query: ALTER TABLE "core"."fieldMetadata" RENAME COLUMN "enums" TO "options" query: ALTER TABLE "core"."fieldMetadata" DROP COLUMN "options" query: ALTER TABLE "core"."fieldMetadata" ADD "options" jsonb query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1700663879152,"AddEnumOptions1700663879152"] Migration AddEnumOptions1700663879152 has been executed successfully. query: CREATE TABLE "core"."featureFlag" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "key" text NOT NULL, "workspaceId" uuid NOT NULL, "value" boolean NOT NULL, "createdAt" TIMESTAMP NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "IndexOnKeyAndWorkspaceIdUnique" UNIQUE ("key", "workspaceId"), CONSTRAINT "PK_894efa1b1822de801f3b9e04069" PRIMARY KEY ("id")) query: ALTER TABLE "core"."featureFlag" ADD CONSTRAINT "FK_6be7761fa8453f3a498aab6e72b" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1701194529853,"AddFeatureFlags1701194529853"] Migration AddFeatureFlags1701194529853 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD "subscriptionStatus" character varying NOT NULL DEFAULT 'incomplete' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1702479005171,"AddSubscriptionStatusOnWorkspace1702479005171"] Migration AddSubscriptionStatusOnWorkspace1702479005171 has been executed successfully. query: ALTER TABLE "core"."user" ADD "passwordResetToken" character varying query: ALTER TABLE "core"."user" ADD "passwordResetTokenExpiresAt" TIMESTAMP query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1704825571702,"AddPasswordResetToken1704825571702"] Migration AddPasswordResetToken1704825571702 has been executed successfully. query: ALTER TABLE "core"."user" ADD "defaultAvatarUrl" character varying query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1706613419989,"AddDefaultAvatarUrlToUser1706613419989"] Migration AddDefaultAvatarUrlToUser1706613419989 has been executed successfully. query: CREATE TABLE "core"."userWorkspace" ( "id" uuid PRIMARY KEY DEFAULT uuid_generate_v4(), "userId" uuid NOT NULL REFERENCES core.user(id), "workspaceId" uuid NOT NULL REFERENCES core.workspace(id), "createdAt" TIMESTAMP NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP NOT NULL DEFAULT now(), "deletedAt" TIMESTAMP ) query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1707778127558,"AddUserWorkspaces1707778127558"] Migration AddUserWorkspaces1707778127558 has been executed successfully. query: CREATE TYPE "core"."relationMetadata_ondeleteaction_enum" AS ENUM('CASCADE', 'RESTRICT', 'SET_NULL') query: ALTER TABLE "core"."relationMetadata" ADD "onDeleteAction" "core"."relationMetadata_ondeleteaction_enum" NOT NULL DEFAULT 'SET_NULL' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1708449210922,"AddOnDeleteActionToRelationMetadata1708449210922"] Migration AddOnDeleteActionToRelationMetadata1708449210922 has been executed successfully. query: ALTER TABLE "core"."userWorkspace" ADD CONSTRAINT "FK_37fdc7357af701e595c5c3a9bd6" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."userWorkspace" ADD CONSTRAINT "FK_cb488f32c6a0827b938edadf221" FOREIGN KEY ("userId") REFERENCES "core"."user"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1709314035408,"UpdateUserWorkspace1709314035408"] Migration UpdateUserWorkspace1709314035408 has been executed successfully. query: ALTER TABLE "core"."userWorkspace" DROP CONSTRAINT "userWorkspace_userId_fkey" query: ALTER TABLE "core"."userWorkspace" DROP CONSTRAINT "userWorkspace_workspaceId_fkey" query: ALTER TABLE "core"."userWorkspace" DROP CONSTRAINT "FK_cb488f32c6a0827b938edadf221" query: ALTER TABLE "core"."userWorkspace" DROP CONSTRAINT "FK_37fdc7357af701e595c5c3a9bd6" query: ALTER TABLE "core"."userWorkspace" ADD CONSTRAINT "FK_37fdc7357af701e595c5c3a9bd6" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."userWorkspace" ADD CONSTRAINT "FK_cb488f32c6a0827b938edadf221" FOREIGN KEY ("userId") REFERENCES "core"."user"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1709680520888,"updateUserWorkspaceColumnConstraints1709680520888"] Migration updateUserWorkspaceColumnConstraints1709680520888 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" ADD "standardId" uuid query: ALTER TABLE "core"."fieldMetadata" ADD "standardId" uuid query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1709894431938,"AddStandardId1709894431938"] Migration AddStandardId1709894431938 has been executed successfully. query: CREATE TABLE "core"."remoteServer" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "foreignDataWrapperId" uuid NOT NULL DEFAULT uuid_generate_v4(), "foreignDataWrapperType" character varying, "foreignDataWrapperOptions" jsonb, "userMappingOptions" jsonb, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "PK_8e5d208498fa2c9710bb934023a" PRIMARY KEY ("id")) query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1711374137222,"AddRemoteServerTable1711374137222"] Migration AddRemoteServerTable1711374137222 has been executed successfully. query: ALTER TABLE "core"."fieldMetadata" DROP COLUMN "targetColumnMap" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1711459912762,"DropTargetColumnMap1711459912762"] Migration DropTargetColumnMap1711459912762 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" ADD "isRemote" boolean NOT NULL DEFAULT false query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1711466822763,"AddIsRemoteField1711466822763"] Migration AddIsRemoteField1711466822763 has been executed successfully. query: ALTER TABLE "core"."userWorkspace" DROP CONSTRAINT "FK_37fdc7357af701e595c5c3a9bd6" query: ALTER TABLE "core"."userWorkspace" DROP CONSTRAINT "FK_cb488f32c6a0827b938edadf221" query: ALTER TABLE "core"."userWorkspace" ALTER COLUMN "createdAt" TYPE TIMESTAMP WITH TIME ZONE USING "createdAt"::TIMESTAMP WITH TIME ZONE query: ALTER TABLE "core"."userWorkspace" ALTER COLUMN "createdAt" SET DEFAULT now() query: ALTER TABLE "core"."userWorkspace" ALTER COLUMN "createdAt" SET NOT NULL; query: ALTER TABLE "core"."userWorkspace" ALTER COLUMN "updatedAt" TYPE TIMESTAMP WITH TIME ZONE USING "updatedAt"::TIMESTAMP WITH TIME ZONE query: ALTER TABLE "core"."userWorkspace" ALTER COLUMN "updatedAt" SET DEFAULT now() query: ALTER TABLE "core"."userWorkspace" ALTER COLUMN "updatedAt" SET NOT NULL; query: ALTER TABLE "core"."userWorkspace" ALTER COLUMN "deletedAt" TYPE TIMESTAMP WITH TIME ZONE USING "deletedAt"::TIMESTAMP WITH TIME ZONE query: ALTER TABLE "core"."user" DROP CONSTRAINT "FK_2ec910029395fa7655621c88908" query: ALTER TABLE "core"."user" ALTER COLUMN "defaultWorkspaceId" SET NOT NULL query: ALTER TABLE "core"."userWorkspace" ADD CONSTRAINT "IndexOnUserIdAndWorkspaceIdUnique" UNIQUE ("userId", "workspaceId") query: ALTER TABLE "core"."userWorkspace" ADD CONSTRAINT "FK_a2da2ea7d6cd1e5a4c5cb1791f8" FOREIGN KEY ("userId") REFERENCES "core"."user"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."userWorkspace" ADD CONSTRAINT "FK_22f5e76f493c3fb20237cfc48b0" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."user" ADD CONSTRAINT "FK_2ec910029395fa7655621c88908" FOREIGN KEY ("defaultWorkspaceId") REFERENCES "core"."workspace"("id") ON DELETE SET NULL ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1711557405330,"AddMissingMigration1711557405330"] Migration AddMissingMigration1711557405330 has been executed successfully. query: ALTER TABLE "core"."workspaceMigration" ALTER COLUMN "appliedAt" TYPE TIMESTAMP WITH TIME ZONE USING "appliedAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."workspaceMigration" ALTER COLUMN "createdAt" TYPE TIMESTAMP WITH TIME ZONE USING "createdAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."workspaceCacheVersion" ALTER COLUMN "createdAt" TYPE TIMESTAMP WITH TIME ZONE USING "createdAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."workspaceCacheVersion" ALTER COLUMN "updatedAt" TYPE TIMESTAMP WITH TIME ZONE USING "updatedAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."remoteServer" ALTER COLUMN "createdAt" TYPE TIMESTAMP WITH TIME ZONE USING "createdAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."remoteServer" ALTER COLUMN "updatedAt" TYPE TIMESTAMP WITH TIME ZONE USING "updatedAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."dataSource" ALTER COLUMN "createdAt" TYPE TIMESTAMP WITH TIME ZONE USING "createdAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."dataSource" ALTER COLUMN "updatedAt" TYPE TIMESTAMP WITH TIME ZONE USING "updatedAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."objectMetadata" ALTER COLUMN "createdAt" TYPE TIMESTAMP WITH TIME ZONE USING "createdAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."objectMetadata" ALTER COLUMN "updatedAt" TYPE TIMESTAMP WITH TIME ZONE USING "updatedAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."fieldMetadata" ALTER COLUMN "createdAt" TYPE TIMESTAMP WITH TIME ZONE USING "createdAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."fieldMetadata" ALTER COLUMN "updatedAt" TYPE TIMESTAMP WITH TIME ZONE USING "updatedAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."relationMetadata" ALTER COLUMN "createdAt" TYPE TIMESTAMP WITH TIME ZONE USING "createdAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."relationMetadata" ALTER COLUMN "updatedAt" TYPE TIMESTAMP WITH TIME ZONE USING "updatedAt" AT TIME ZONE 'UTC' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1711619086385,"UseTimestampWithTZ1711619086385"] Migration UseTimestampWithTZ1711619086385 has been executed successfully. query: ALTER TABLE "core"."refreshToken" RENAME TO "appToken" query: ALTER TABLE "core"."appToken" ADD "workspaceId" uuid query: ALTER TABLE "core"."appToken" ADD "type" text NOT NULL DEFAULT 'REFRESH_TOKEN' query: ALTER TABLE "core"."appToken" ADD "value" text query: ALTER TABLE "core"."appToken" ADD CONSTRAINT "FK_d6ae19a7aa2bbd4919053257772" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."appToken" DROP CONSTRAINT "FK_7008a2b0fb083127f60b5f4448e" query: ALTER TABLE "core"."appToken" ADD CONSTRAINT "FK_8cd4819144baf069777b5729136" FOREIGN KEY ("userId") REFERENCES "core"."user"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1711624086253,"UpdateRefreshTokenTable1711624086253"] Migration UpdateRefreshTokenTable1711624086253 has been executed successfully. query: ALTER TABLE "core"."featureFlag" ALTER COLUMN "createdAt" TYPE TIMESTAMP WITH TIME ZONE USING "createdAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."featureFlag" ALTER COLUMN "updatedAt" TYPE TIMESTAMP WITH TIME ZONE USING "updatedAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."workspace" ALTER COLUMN "deletedAt" TYPE TIMESTAMP WITH TIME ZONE USING "deletedAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."user" ALTER COLUMN "deletedAt" TYPE TIMESTAMP WITH TIME ZONE USING "deletedAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."user" ALTER COLUMN "passwordResetTokenExpiresAt" TYPE TIMESTAMP WITH TIME ZONE USING "passwordResetTokenExpiresAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."userWorkspace" ALTER COLUMN "createdAt" TYPE TIMESTAMP WITH TIME ZONE USING "createdAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."userWorkspace" ALTER COLUMN "updatedAt" TYPE TIMESTAMP WITH TIME ZONE USING "updatedAt" AT TIME ZONE 'UTC' query: ALTER TABLE "core"."userWorkspace" ALTER COLUMN "deletedAt" TYPE TIMESTAMP WITH TIME ZONE USING "deletedAt" AT TIME ZONE 'UTC' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1711633823798,"UseTimestampWithTZ1711633823798"] Migration UseTimestampWithTZ1711633823798 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" ADD "isAuditLogged" boolean NOT NULL DEFAULT true query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1712923480448,"AddIsAuditLogged1712923480448"] Migration AddIsAuditLogged1712923480448 has been executed successfully. query: CREATE TABLE "core"."remoteTable" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "distantTableName" character varying NOT NULL, "localTableName" character varying NOT NULL, "workspaceId" uuid NOT NULL, "remoteServerId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "PK_632b3858de52c8c2eb00c709b52" PRIMARY KEY ("id")) query: ALTER TABLE "core"."remoteTable" ADD CONSTRAINT "FK_3db5ae954f9197def326053f06a" FOREIGN KEY ("remoteServerId") REFERENCES "core"."remoteServer"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1713270565699,"CreateRemoteTable1713270565699"] Migration CreateRemoteTable1713270565699 has been executed successfully. query: ALTER TABLE "core"."fieldMetadata" ADD "settings" jsonb query: ALTER TABLE "core"."remoteServer" DROP COLUMN "foreignDataWrapperType" query: ALTER TABLE "core"."remoteServer" ADD "foreignDataWrapperType" text query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1713793656356,"AddSettingsColumnToFieldMetadata1713793656356"] Migration AddSettingsColumnToFieldMetadata1713793656356 has been executed successfully. query: ALTER TABLE "core"."remoteServer" ADD "schema" text query: ALTER TABLE "core"."remoteServer" ADD "availableTables" jsonb query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1714382420165,"AddSchemaAndAvailableTablesToServer1714382420165"] Migration AddSchemaAndAvailableTablesToServer1714382420165 has been executed successfully. query: ALTER TABLE "core"."user" DROP CONSTRAINT "FK_2ec910029395fa7655621c88908" query: ALTER TABLE "core"."workspace" ALTER COLUMN "subscriptionStatus" TYPE text query: ALTER TABLE "core"."user" ADD CONSTRAINT "FK_2ec910029395fa7655621c88908" FOREIGN KEY ("defaultWorkspaceId") REFERENCES "core"."workspace"("id") ON DELETE RESTRICT ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1715593226719,"UpdateInconsistentUserConstraint1715593226719"] Migration UpdateInconsistentUserConstraint1715593226719 has been executed successfully. query: ALTER TABLE "core"."remoteServer" DROP COLUMN "availableTables" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1716310822694,"RemoveAvailableTables1716310822694"] Migration RemoveAvailableTables1716310822694 has been executed successfully. query: ALTER TABLE "core"."remoteServer" ADD "label" text query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1716890009820,"AddRemoteServerLabel1716890009820"] Migration AddRemoteServerLabel1716890009820 has been executed successfully. query: CREATE TABLE "core"."keyValuePair" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "userId" uuid, "workspaceId" uuid, "key" text NOT NULL, "value" text, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "deletedAt" TIMESTAMP WITH TIME ZONE, CONSTRAINT "IndexOnKeyUserIdWorkspaceIdUnique" UNIQUE ("key", "userId", "workspaceId"), CONSTRAINT "PK_c5a1ca828435d3eaf8f9361ed4b" PRIMARY KEY ("id")) query: ALTER TABLE "core"."keyValuePair" ADD CONSTRAINT "FK_0dae35d1c0fbdda6495be4ae71a" FOREIGN KEY ("userId") REFERENCES "core"."user"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."keyValuePair" ADD CONSTRAINT "FK_c137e3d8b3980901e114941daa2" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1717425967770,"AddKeyValuePairTable1717425967770"] Migration AddKeyValuePairTable1717425967770 has been executed successfully. query: CREATE UNIQUE INDEX "IndexOnKeyUserIdAndNullWorkspaceIdUnique" ON "core"."keyValuePair" ("key", "userId") WHERE "workspaceId" is NULL query: CREATE UNIQUE INDEX "IndexOnKeyWorkspaceIdAndNullUserIdUnique" ON "core"."keyValuePair" ("key", "workspaceId") WHERE "userId" is NULL query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1717688588972,"AddKeyValuePairTableUniqueContraints1717688588972"] Migration AddKeyValuePairTableUniqueContraints1717688588972 has been executed successfully. query: CREATE TABLE "core"."postgresCredentials" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "user" character varying NOT NULL, "passwordHash" character varying NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "deletedAt" TIMESTAMP WITH TIME ZONE, "workspaceId" uuid NOT NULL, CONSTRAINT "PK_3f9c4cdf895bfea0a6ea15bdd81" PRIMARY KEY ("id")) query: ALTER TABLE "core"."postgresCredentials" ADD CONSTRAINT "FK_9494639abc06f9c8c3691bf5d22" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1717751631669,"AddPostgresCredentials1717751631669"] Migration AddPostgresCredentials1717751631669 has been executed successfully. query: CREATE TABLE "core"."indexMetadata" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "name" character varying NOT NULL, "workspaceId" character varying, "objectMetadataId" uuid NOT NULL, CONSTRAINT "PK_f73bb3c3678aee204e341f0ca4e" PRIMARY KEY ("id")) query: CREATE TABLE "core"."indexFieldMetadata" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "indexMetadataId" uuid NOT NULL, "fieldMetadataId" uuid NOT NULL, "order" integer NOT NULL, CONSTRAINT "PK_5928f67e43eff7d95aa79fd96fd" PRIMARY KEY ("id")) query: ALTER TABLE "core"."indexMetadata" ADD CONSTRAINT "FK_051487e9b745cb175950130b63f" FOREIGN KEY ("objectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."indexFieldMetadata" ADD CONSTRAINT "FK_b20192c432612eb710801dd5664" FOREIGN KEY ("indexMetadataId") REFERENCES "core"."indexMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."indexFieldMetadata" ADD CONSTRAINT "FK_be0950612a54b58c72bd62d629e" FOREIGN KEY ("fieldMetadataId") REFERENCES "core"."fieldMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1718985664968,"AddIndexMetadataTable1718985664968"] Migration AddIndexMetadataTable1718985664968 has been executed successfully. query: CREATE TYPE "core"."workspace_subscriptionstatus_enum" AS ENUM('active', 'canceled', 'incomplete', 'incomplete_expired', 'past_due', 'paused', 'trialing', 'unpaid') query: ALTER TABLE "core"."workspace" ALTER COLUMN "subscriptionStatus" DROP DEFAULT query: ALTER TABLE "core"."workspace" ALTER COLUMN "subscriptionStatus" TYPE "core"."workspace_subscriptionstatus_enum" USING "subscriptionStatus"::"core"."workspace_subscriptionstatus_enum" query: ALTER TABLE "core"."workspace" ALTER COLUMN "subscriptionStatus" SET NOT NULL query: ALTER TABLE "core"."workspace" ALTER COLUMN "subscriptionStatus" SET DEFAULT 'incomplete'::"core"."workspace_subscriptionstatus_enum" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1719327438923,"UseEnumForSubscriptionStatusInterval1719327438923"] Migration UseEnumForSubscriptionStatusInterval1719327438923 has been executed successfully. query: ALTER TABLE "core"."workspace" DROP COLUMN "subscriptionStatus" query: DROP TYPE "core"."workspace_subscriptionstatus_enum" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1719494707738,"RemoveSubscriptionStatusFromCoreWorkspace1719494707738"] Migration RemoveSubscriptionStatusFromCoreWorkspace1719494707738 has been executed successfully. query: ALTER TABLE "core"."indexMetadata" ADD "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now() query: ALTER TABLE "core"."indexMetadata" ADD "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now() query: ALTER TABLE "core"."indexFieldMetadata" ADD "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now() query: ALTER TABLE "core"."indexFieldMetadata" ADD "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now() query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1720524654925,"AddDateColumnsToIndexMetadata1720524654925"] Migration AddDateColumnsToIndexMetadata1720524654925 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" ALTER COLUMN "labelIdentifierFieldMetadataId" TYPE uuid USING "labelIdentifierFieldMetadataId"::uuid query: ALTER TABLE "core"."objectMetadata" ALTER COLUMN "imageIdentifierFieldMetadataId" TYPE uuid USING "imageIdentifierFieldMetadataId"::uuid query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1721057142509,"FixIdentifierTypes1721057142509"] Migration FixIdentifierTypes1721057142509 has been executed successfully. query: CREATE TYPE "core"."keyValuePair_type_enum" AS ENUM('USER_VAR', 'FEATURE_FLAG', 'SYSTEM_VAR') query: ALTER TABLE "core"."keyValuePair" ADD "type" "core"."keyValuePair_type_enum" NOT NULL DEFAULT 'USER_VAR' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1721139150487,"AddKeyValuePairType1721139150487"] Migration AddKeyValuePairType1721139150487 has been executed successfully. query: CREATE TYPE "core"."serverlessFunction_syncstatus_enum" AS ENUM('NOT_READY', 'READY') query: CREATE TABLE "core"."serverlessFunction" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "name" character varying NOT NULL, "sourceCodeHash" character varying NOT NULL, "syncStatus" "core"."serverlessFunction_syncstatus_enum" NOT NULL DEFAULT 'NOT_READY', "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "IndexOnNameAndWorkspaceIdUnique" UNIQUE ("name", "workspaceId"), CONSTRAINT "PK_49bfacee064bee9d0d486483b60" PRIMARY KEY ("id")) query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1721210534680,"CreateServerlessFunctionTable1721210534680"] Migration CreateServerlessFunctionTable1721210534680 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" ADD "runtime" character varying NOT NULL DEFAULT 'nodejs18.x' query: ALTER TABLE "core"."serverlessFunction" ADD "description" character varying query: ALTER TABLE "core"."serverlessFunction" ADD "sourceCodeFullPath" character varying NOT NULL query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1721309629608,"AddRuntimeColumnToServerlessFunction1721309629608"] Migration AddRuntimeColumnToServerlessFunction1721309629608 has been executed successfully. query: ALTER TABLE "core"."keyValuePair" RENAME COLUMN "value" TO "textValueDeprecated" query: ALTER TABLE "core"."keyValuePair" ADD "value" jsonb query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1721656106498,"MigrateKeyValueTypeToJsonb1721656106498"] Migration MigrateKeyValueTypeToJsonb1721656106498 has been executed successfully. query: ALTER TABLE "core"."user" DROP COLUMN "passwordResetToken" query: ALTER TABLE "core"."user" DROP COLUMN "passwordResetTokenExpiresAt" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1721738579379,"DeletePasswordResetToken1721738579379"] Migration DeletePasswordResetToken1721738579379 has been executed successfully. query: CREATE TYPE "core"."workspace_activationstatus_enum" AS ENUM('ACTIVE', 'INACTIVE') query: ALTER TABLE "core"."workspace" ADD "activationStatus" "core"."workspace_activationstatus_enum" NOT NULL DEFAULT 'INACTIVE' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1722256203539,"AddActivationStatus1722256203539"] Migration AddActivationStatus1722256203539 has been executed successfully. query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" SET DATA TYPE text USING "activationStatus"::text query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" DROP DEFAULT query: DROP TYPE "core"."workspace_activationstatus_enum" query: CREATE TYPE "core"."workspace_activationStatus_enum" AS ENUM('PENDING_CREATION', 'ACTIVE', 'INACTIVE') query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" SET DATA TYPE "core"."workspace_activationStatus_enum" USING "activationStatus"::"core"."workspace_activationStatus_enum" query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" SET DEFAULT 'INACTIVE' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1722256203540,"UpdateActivationStatus1722256203540"] Migration UpdateActivationStatus1722256203540 has been executed successfully. query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" SET DATA TYPE text USING "activationStatus"::text query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" DROP DEFAULT query: DROP TYPE "core"."workspace_activationStatus_enum" query: CREATE TYPE "core"."workspace_activationStatus_enum" AS ENUM('PENDING_CREATION', 'ONGOING_CREATION', 'ACTIVE', 'INACTIVE') query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" SET DATA TYPE "core"."workspace_activationStatus_enum" USING "activationStatus"::"core"."workspace_activationStatus_enum" query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" SET DEFAULT 'INACTIVE' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1722256203541,"UpdateActivationStatusEnumPendingCreationStatus1722256203541"] Migration UpdateActivationStatusEnumPendingCreationStatus1722256203541 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" ADD "isSoftDeletable" boolean query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1723038077987,"AddSoftDelete1723038077987"] Migration AddSoftDelete1723038077987 has been executed successfully. query: ALTER TABLE core."appToken" ALTER COLUMN "userId" DROP NOT NULL query: ALTER TABLE core."appToken" ADD CONSTRAINT "userIdIsNullWhenTypeIsInvitation" CHECK ("appToken".type != 'INVITATION_TOKEN' OR "appToken"."userId" IS NULL) query: ALTER TABLE core."appToken" ADD CONSTRAINT "userIdNotNullWhenTypeIsNotInvitation" CHECK ("appToken".type = 'INVITATION_TOKEN' OR "appToken"."userId" NOTNULL) query: ALTER TABLE core."appToken" ADD "context" jsonb query: CREATE UNIQUE INDEX apptoken_unique_invitation_by_user_workspace ON core."appToken" ("workspaceId", ("context" ->> 'email')) WHERE type = 'INVITATION_TOKEN'; query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1724056827317,"AddInvitation1724056827317"] Migration AddInvitation1724056827317 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" DROP COLUMN "sourceCodeFullPath" query: ALTER TABLE "core"."serverlessFunction" ADD "latestVersion" character varying query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1724171584314,"UpdateServerlessFunction1724171584314"] Migration UpdateServerlessFunction1724171584314 has been executed successfully. query: DROP TABLE "core"."workspaceCacheVersion" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1724173061204,"DeprecateCacheVersion1724173061204"] Migration DeprecateCacheVersion1724173061204 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD "metadataVersion" integer NOT NULL DEFAULT '1' query: ALTER TABLE "core"."workspace" ADD "databaseUrl" character varying NOT NULL DEFAULT '' query: ALTER TABLE "core"."workspace" ADD "databaseSchema" character varying NOT NULL DEFAULT '' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1724173430043,"IntroduceMetadataVersionAndDatasourceOnWorkspace1724173430043"] Migration IntroduceMetadataVersionAndDatasourceOnWorkspace1724173430043 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" DROP CONSTRAINT "IndexOnNameAndWorkspaceIdUnique" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1724423248330,"RemoveServerlessFunctionUniqueConstraint1724423248330"] Migration RemoveServerlessFunctionUniqueConstraint1724423248330 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" ADD "layerVersion" integer query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1724946099627,"AddServerlessFunctionLayerVersionColumn1724946099627"] Migration AddServerlessFunctionLayerVersionColumn1724946099627 has been executed successfully. query: CREATE TYPE "core"."indexMetadata_indextype_enum" AS ENUM('BTREE', 'GIN') query: ALTER TABLE "core"."indexMetadata" ADD COLUMN "indexType" "core"."indexMetadata_indextype_enum" NOT NULL DEFAULT 'BTREE'; query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1725893697807,"AddIndexType1725893697807"] Migration AddIndexType1725893697807 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" DROP COLUMN "sourceCodeHash" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1726240847733,"RemoveServerlessSourceCodeHashColumn1726240847733"] Migration RemoveServerlessSourceCodeHashColumn1726240847733 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" DROP COLUMN "isSoftDeletable" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1726486735275,"RemoveObjectMetadataIsSoftDeletable1726486735275"] Migration RemoveObjectMetadataIsSoftDeletable1726486735275 has been executed successfully. query: ALTER TYPE "core"."relationMetadata_ondeleteaction_enum" RENAME TO "relationMetadata_ondeleteaction_enum_old" query: CREATE TYPE "core"."relationMetadata_ondeleteaction_enum" AS ENUM('CASCADE', 'RESTRICT', 'SET_NULL', 'NO_ACTION') query: ALTER TABLE "core"."relationMetadata" ALTER COLUMN "onDeleteAction" DROP DEFAULT query: ALTER TABLE "core"."relationMetadata" ALTER COLUMN "onDeleteAction" TYPE "core"."relationMetadata_ondeleteaction_enum" USING "onDeleteAction"::"text"::"core"."relationMetadata_ondeleteaction_enum" query: ALTER TABLE "core"."relationMetadata" ALTER COLUMN "onDeleteAction" SET DEFAULT 'SET_NULL' query: DROP TYPE "core"."relationMetadata_ondeleteaction_enum_old" query: ALTER TABLE "core"."workspaceMigration" ALTER COLUMN "name" SET NOT NULL query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1726757368824,"MigrationDebt1726757368824"] Migration MigrationDebt1726757368824 has been executed successfully. query: ALTER TABLE "core"."indexMetadata" ADD "isUnique" boolean NOT NULL DEFAULT false query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1726757368825,"AddIsUniqueToIndexMetadata1726757368825"] Migration AddIsUniqueToIndexMetadata1726757368825 has been executed successfully. query: ALTER TABLE "core"."indexMetadata" ADD "indexWhereClause" text query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1726766871572,"AddWhereToIndexMetadata1726766871572"] Migration AddWhereToIndexMetadata1726766871572 has been executed successfully. query: ALTER TABLE "core"."user" ADD CONSTRAINT "UQ_USER_EMAIL" UNIQUE ("email", "deletedAt") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1726849473832,"AddUniqueConstraintOnUsers1726849473832"] Migration AddUniqueConstraintOnUsers1726849473832 has been executed successfully. query: CREATE TYPE "core"."idp_type_enum" AS ENUM('OIDC', 'SAML'); query: CREATE TABLE "core"."workspaceSSOIdentityProvider" ( "id" uuid DEFAULT uuid_generate_v4() PRIMARY KEY, "name" varchar NULL, "workspaceId" uuid NOT NULL, "createdAt" timestamptz DEFAULT now() NOT NULL, "updatedAt" timestamptz DEFAULT now() NOT NULL, "type" "core"."idp_type_enum" DEFAULT 'OIDC' NOT NULL, "issuer" varchar NOT NULL, "ssoURL" varchar NULL, "clientID" varchar NULL, "clientSecret" varchar NULL, "certificate" varchar NULL, "fingerprint" varchar NULL, "status" varchar DEFAULT 'Active' NOT NULL ); query: ALTER TABLE "core"."workspaceSSOIdentityProvider" ADD CONSTRAINT "FK_workspaceId" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE; query: ALTER TABLE "core"."workspaceSSOIdentityProvider" ADD CONSTRAINT "CHK_OIDC" CHECK ( ("type" = 'OIDC' AND "clientID" IS NOT NULL AND "clientSecret" IS NOT NULL) OR "type" = 'SAML' ) query: ALTER TABLE "core"."workspaceSSOIdentityProvider" ADD CONSTRAINT "CHK_SAML" CHECK ( ("type" = 'SAML' AND "ssoURL" IS NOT NULL AND "certificate" IS NOT NULL) OR "type" = 'OIDC' ) query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1727181198403,"AddWorkspaceSSOIdentityProvider1727181198403"] Migration AddWorkspaceSSOIdentityProvider1727181198403 has been executed successfully. query: ALTER TABLE "core"."indexMetadata" ADD COLUMN "isCustom" BOOLEAN NOT NULL DEFAULT FALSE; query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1727699709905,"AddIsCustomColumnToIndexMetadata1727699709905"] Migration AddIsCustomColumnToIndexMetadata1727699709905 has been executed successfully. query: CREATE TABLE "core"."_typeorm_generated_columns_and_materialized_views" ( "type" character varying NOT NULL, "database" character varying, "schema" character varying, "table" character varying, "name" character varying, "value" text ) query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1728314605995,"AddTypeormGeneratedColumnsAndMaterializedViews1728314605995"] Migration AddTypeormGeneratedColumnsAndMaterializedViews1728314605995 has been executed successfully. query: ALTER TABLE "core"."fieldMetadata" ADD "isUnique" boolean DEFAULT false query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1728563893694,"AddIsUniqueToFields1728563893694"] Migration AddIsUniqueToFields1728563893694 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" ADD "isLabelSyncedWithName" boolean NOT NULL DEFAULT false query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1728579416430,"AddIsLabelSyncedWithName1728579416430"] Migration AddIsLabelSyncedWithName1728579416430 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD "isPublicInviteLinkEnabled" boolean NOT NULL DEFAULT true query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1728986317196,"AddIsPublicInviteLinkEnabledOnWorkspace1728986317196"] Migration AddIsPublicInviteLinkEnabledOnWorkspace1728986317196 has been executed successfully. query: ALTER TABLE "core"."indexMetadata" ADD CONSTRAINT "IndexOnNameAndWorkspaceIdAndObjectMetadataUnique" UNIQUE ("name", "workspaceId", "objectMetadataId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1728999374151,"AddConstraintOnIndexMetadata1728999374151"] Migration AddConstraintOnIndexMetadata1728999374151 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" ADD "publishedVersions" jsonb NOT NULL DEFAULT '[]' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1729162426186,"UpdateServerlessFunctionColumns1729162426186"] Migration UpdateServerlessFunctionColumns1729162426186 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" ADD "shortcut" character varying query: CREATE UNIQUE INDEX "IDX_objectMetadata_shortcut_upper_workspace" ON "core"."objectMetadata" (UPPER("shortcut"), "workspaceId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1729676165199,"AddObjectShortcut1729676165199"] Migration AddObjectShortcut1729676165199 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD "subdomain" varchar NULL query: UPDATE "core"."workspace" SET "subdomain" = "id" query: ALTER TABLE "core"."workspace" ALTER COLUMN "subdomain" SET NOT NULL query: CREATE UNIQUE INDEX workspace_subdomain_unique_index ON "core"."workspace" (subdomain) query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1730137590546,"AddSubdomainToWorkspace1730137590546"] Migration AddSubdomainToWorkspace1730137590546 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD "isMicrosoftAuthEnabled" BOOLEAN DEFAULT false query: ALTER TABLE "core"."workspace" ADD "isGoogleAuthEnabled" BOOLEAN DEFAULT true query: ALTER TABLE "core"."workspace" ADD "isPasswordAuthEnabled" BOOLEAN DEFAULT true query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1730298416367,"AddAuthProvidersColumnsToWorkspace1730298416367"] Migration AddAuthProvidersColumnsToWorkspace1730298416367 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" ADD "latestVersionInputSchema" jsonb query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1730803174864,"AddInputSchemaToFunction1730803174864"] Migration AddInputSchemaToFunction1730803174864 has been executed successfully. query: ALTER TABLE "core"."fieldMetadata" ADD "isLabelSyncedWithName" boolean NOT NULL DEFAULT false query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1733153195498,"AddIsLabelSyncedWithNameToFieldMetadata1733153195498"] Migration AddIsLabelSyncedWithNameToFieldMetadata1733153195498 has been executed successfully. query: DROP INDEX "core"."IDX_objectMetadata_shortcut_upper_workspace" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1733318004066,"MissingShortcutMigration1733318004066"] Migration MissingShortcutMigration1733318004066 has been executed successfully. query: ALTER TABLE "core"."workspaceSSOIdentityProvider" DROP CONSTRAINT "FK_workspaceId" query: DROP INDEX "core"."apptoken_unique_invitation_by_user_workspace" query: DROP INDEX "core"."workspace_subdomain_unique_index" query: ALTER TABLE "core"."appToken" DROP CONSTRAINT "userIdIsNullWhenTypeIsInvitation" query: ALTER TABLE "core"."appToken" DROP CONSTRAINT "userIdNotNullWhenTypeIsNotInvitation" query: ALTER TABLE "core"."workspaceSSOIdentityProvider" DROP CONSTRAINT "CHK_OIDC" query: ALTER TABLE "core"."workspaceSSOIdentityProvider" DROP CONSTRAINT "CHK_SAML" query: ALTER TABLE "core"."workspaceSSOIdentityProvider" ALTER COLUMN "name" SET NOT NULL query: ALTER TABLE "core"."workspaceSSOIdentityProvider" DROP COLUMN "status" query: CREATE TYPE "core"."workspaceSSOIdentityProvider_status_enum" AS ENUM('Active', 'Inactive', 'Error') query: ALTER TABLE "core"."workspaceSSOIdentityProvider" ADD "status" "core"."workspaceSSOIdentityProvider_status_enum" NOT NULL DEFAULT 'Active' query: ALTER TYPE "core"."idp_type_enum" RENAME TO "idp_type_enum_old" query: CREATE TYPE "core"."workspaceSSOIdentityProvider_type_enum" AS ENUM('OIDC', 'SAML') query: ALTER TABLE "core"."workspaceSSOIdentityProvider" ALTER COLUMN "type" DROP DEFAULT query: ALTER TABLE "core"."workspaceSSOIdentityProvider" ALTER COLUMN "type" TYPE "core"."workspaceSSOIdentityProvider_type_enum" USING "type"::"text"::"core"."workspaceSSOIdentityProvider_type_enum" query: ALTER TABLE "core"."workspaceSSOIdentityProvider" ALTER COLUMN "type" SET DEFAULT 'OIDC' query: DROP TYPE "core"."idp_type_enum_old" query: ALTER TYPE "core"."workspace_activationStatus_enum" RENAME TO "workspace_activationStatus_enum_old" query: CREATE TYPE "core"."workspace_activationstatus_enum" AS ENUM('ONGOING_CREATION', 'PENDING_CREATION', 'ACTIVE', 'INACTIVE') query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" DROP DEFAULT query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" TYPE "core"."workspace_activationstatus_enum" USING "activationStatus"::"text"::"core"."workspace_activationstatus_enum" query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" SET DEFAULT 'INACTIVE' query: DROP TYPE "core"."workspace_activationStatus_enum_old" query: ALTER TABLE "core"."workspace" ALTER COLUMN "isGoogleAuthEnabled" SET NOT NULL query: ALTER TABLE "core"."workspace" ALTER COLUMN "isPasswordAuthEnabled" SET NOT NULL query: ALTER TABLE "core"."workspace" ALTER COLUMN "isMicrosoftAuthEnabled" SET NOT NULL query: ALTER TABLE "core"."workspaceSSOIdentityProvider" ADD CONSTRAINT "FK_bc8d8855198de1fbc32fba8df93" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1733318043626,"SsoMissingMigration1733318043626"] Migration SsoMissingMigration1733318043626 has been executed successfully. query: ALTER TABLE "core"."user" DROP CONSTRAINT "UQ_USER_EMAIL" query: CREATE UNIQUE INDEX "UQ_USER_EMAIL" ON "core"."user" ("email") WHERE "deletedAt" IS NULL query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1733408604468,"FixUserEmailUniqueConstraint1733408604468"] Migration FixUserEmailUniqueConstraint1733408604468 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD CONSTRAINT "UQ_cba6255a24deb1fff07dd7351b8" UNIQUE ("subdomain") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1734355945585,"AddUniqueIndexOnSubdomain1734355945585"] Migration AddUniqueIndexOnSubdomain1734355945585 has been executed successfully. query: ALTER TABLE "core"."user" DROP CONSTRAINT "FK_2ec910029395fa7655621c88908" query: ALTER TABLE "core"."user" DROP COLUMN "defaultWorkspaceId" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1734544295083,"RemoveDefaultWorkspaceId1734544295083"] Migration RemoveDefaultWorkspaceId1734544295083 has been executed successfully. query: ALTER TABLE "core"."user" RENAME COLUMN "emailVerified" TO "isEmailVerified" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1736050161854,"RenameEmailVerifiedColumn1736050161854"] Migration RenameEmailVerifiedColumn1736050161854 has been executed successfully. query: ALTER TYPE "core"."workspace_activationstatus_enum" RENAME TO "workspace_activationstatus_enum_old" query: CREATE TYPE "core"."workspace_activationStatus_enum" AS ENUM('ONGOING_CREATION', 'PENDING_CREATION', 'ACTIVE', 'INACTIVE', 'SUSPENDED') query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" DROP DEFAULT query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" TYPE "core"."workspace_activationStatus_enum" USING "activationStatus"::"text"::"core"."workspace_activationStatus_enum" query: ALTER TABLE "core"."workspace" ALTER COLUMN "activationStatus" SET DEFAULT 'INACTIVE' query: DROP TYPE "core"."workspace_activationstatus_enum_old" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1736861823893,"UpdateWorkspaceStatusEnum1736861823893"] Migration UpdateWorkspaceStatusEnum1736861823893 has been executed successfully. query: CREATE TABLE "core"."twoFactorMethod" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "userWorkspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "deletedAt" TIMESTAMP WITH TIME ZONE, CONSTRAINT "PK_752f0250dd6824289ceddd8b054" PRIMARY KEY ("id")) query: ALTER TABLE "core"."twoFactorMethod" ADD CONSTRAINT "FK_c1044145be65a4ee65c07e0a658" FOREIGN KEY ("userWorkspaceId") REFERENCES "core"."userWorkspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1737033794408,"TwoFactorMethod1737033794408"] Migration TwoFactorMethod1737033794408 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" ADD "timeoutSeconds" integer NOT NULL DEFAULT '300' query: ALTER TABLE "core"."serverlessFunction" ADD CONSTRAINT "CHK_4a5179975ee017934a91703247" CHECK ("timeoutSeconds" >= 1 AND "timeoutSeconds" <= 900) query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1737047131108,"AddTimeoutSecondsColumnToServerless1737047131108"] Migration AddTimeoutSecondsColumnToServerless1737047131108 has been executed successfully. query: ALTER TABLE "core"."fieldMetadata" ADD "relationTargetFieldMetadataId" uuid query: ALTER TABLE "core"."fieldMetadata" ADD CONSTRAINT "UQ_47a6c57e1652b6475f8248cff78" UNIQUE ("relationTargetFieldMetadataId") query: ALTER TABLE "core"."fieldMetadata" ADD "relationTargetObjectMetadataId" uuid query: CREATE INDEX "IndexOnRelationTargetObjectMetadataId" ON "core"."fieldMetadata" ("relationTargetObjectMetadataId") query: CREATE INDEX "IndexOnRelationTargetFieldMetadataId" ON "core"."fieldMetadata" ("relationTargetFieldMetadataId") query: ALTER TABLE "core"."fieldMetadata" ADD CONSTRAINT "FK_47a6c57e1652b6475f8248cff78" FOREIGN KEY ("relationTargetFieldMetadataId") REFERENCES "core"."fieldMetadata"("id") ON DELETE NO ACTION ON UPDATE NO ACTION query: ALTER TABLE "core"."fieldMetadata" ADD CONSTRAINT "FK_6f6c87ec32cca956d8be321071c" FOREIGN KEY ("relationTargetObjectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE NO ACTION ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1737561084251,"AddRelationTargetFieldAndObjectToFieldMetadata1737561084251"] Migration AddRelationTargetFieldAndObjectToFieldMetadata1737561084251 has been executed successfully. query: ALTER TABLE "core"."workspace" ALTER COLUMN "isMicrosoftAuthEnabled" SET DEFAULT true query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1737630672873,"WorkspaceEntityDefaultMicrosoftAuthEnabled1737630672873"] Migration WorkspaceEntityDefaultMicrosoftAuthEnabled1737630672873 has been executed successfully. query: ALTER TABLE "core"."workspace" DROP COLUMN "domainName" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1737996712702,"RemoveDomainNameFromWorkspace1737996712702"] Migration RemoveDomainNameFromWorkspace1737996712702 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD "hostname" character varying query: ALTER TABLE "core"."workspace" ADD CONSTRAINT "UQ_e6fa363bdaf45cbf8ce97bcebf0" UNIQUE ("hostname") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1737997028359,"AddHostnameToWorkspace1737997028359"] Migration AddHostnameToWorkspace1737997028359 has been executed successfully. query: ALTER TYPE "core"."serverlessFunction_syncstatus_enum" RENAME TO "serverlessFunction_syncstatus_enum_old" query: CREATE TYPE "core"."serverlessFunction_syncstatus_enum" AS ENUM('NOT_READY', 'BUILDING', 'READY') query: ALTER TABLE "core"."serverlessFunction" ALTER COLUMN "syncStatus" DROP DEFAULT query: ALTER TABLE "core"."serverlessFunction" ALTER COLUMN "syncStatus" TYPE "core"."serverlessFunction_syncstatus_enum" USING "syncStatus"::"text"::"core"."serverlessFunction_syncstatus_enum" query: ALTER TABLE "core"."serverlessFunction" ALTER COLUMN "syncStatus" SET DEFAULT 'NOT_READY' query: DROP TYPE "core"."serverlessFunction_syncstatus_enum_old" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1738233783889,"AddNewSyncStatusToServerless1738233783889"] Migration AddNewSyncStatusToServerless1738233783889 has been executed successfully. query: CREATE TABLE "core"."role" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "label" character varying NOT NULL, "canUpdateAllSettings" boolean NOT NULL DEFAULT false, "description" text, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "isEditable" boolean NOT NULL DEFAULT true, CONSTRAINT "PK_b36bcfe02fc8de3c57a8b2391c2" PRIMARY KEY ("id")) query: CREATE TABLE "core"."userWorkspaceRole" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "workspaceId" uuid NOT NULL, "roleId" uuid NOT NULL, "userWorkspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "IndexOnUserWorkspaceRoleUnique" UNIQUE ("userWorkspaceId", "roleId"), CONSTRAINT "PK_9c02cbdd9053fbb6791e21b7146" PRIMARY KEY ("id")) query: ALTER TABLE "core"."userWorkspaceRole" ADD CONSTRAINT "FK_0b70755f23a3705f1bea0ddc7d4" FOREIGN KEY ("roleId") REFERENCES "core"."role"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1738248281689,"CreatePermissionsTable1738248281689"] Migration CreatePermissionsTable1738248281689 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" ADD "duplicateCriteria" jsonb query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1738853620654,"AddDuplicateCriteriaColumnInObjectMetadata1738853620654"] Migration AddDuplicateCriteriaColumnInObjectMetadata1738853620654 has been executed successfully. query: ALTER TABLE "core"."user" ADD "locale" character varying NOT NULL DEFAULT 'en' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1739022118023,"AddLocaleToUser1739022118023"] Migration AddLocaleToUser1739022118023 has been executed successfully. query: ALTER TABLE "core"."workspace" RENAME COLUMN "hostname" TO "customDomain" query: ALTER TABLE "core"."workspace" RENAME CONSTRAINT "UQ_e6fa363bdaf45cbf8ce97bcebf0" TO "UQ_900f0a3eb789159c26c8bcb39cd" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1739178177820,"RenameHostnameToCustomDomain1739178177820"] Migration RenameHostnameToCustomDomain1739178177820 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD "isCustomDomainEnabled" boolean NOT NULL DEFAULT false query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1739203087254,"AddIsCustomDomainEnable1739203087254"] Migration AddIsCustomDomainEnable1739203087254 has been executed successfully. query: CREATE INDEX "IndexOnFieldMetadataId" ON "core"."indexFieldMetadata" ("fieldMetadataId") query: CREATE INDEX "IndexOnObjectMetadataId" ON "core"."fieldMetadata" ("objectMetadataId") query: CREATE INDEX "IndexOnWorkspaceId" ON "core"."fieldMetadata" ("workspaceId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1739203246456,"AddIndexesOnFieldMetadataAndIndexMetadata1739203246456"] Migration AddIndexesOnFieldMetadataAndIndexMetadata1739203246456 has been executed successfully. query: ALTER TABLE "core"."role" ADD "canReadAllObjectRecords" boolean NOT NULL DEFAULT false query: ALTER TABLE "core"."role" ADD "canUpdateAllObjectRecords" boolean NOT NULL DEFAULT false query: ALTER TABLE "core"."role" ADD "canSoftDeleteAllObjectRecords" boolean NOT NULL DEFAULT false query: ALTER TABLE "core"."role" ADD "canDestroyAllObjectRecords" boolean NOT NULL DEFAULT false query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1739795699972,"UpdateRoleTable1739795699972"] Migration UpdateRoleTable1739795699972 has been executed successfully. query: CREATE TABLE "core"."approvedAccessDomain" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "domain" character varying NOT NULL, "isValidated" boolean NOT NULL DEFAULT false, "workspaceId" uuid NOT NULL, CONSTRAINT "IndexOnDomainAndWorkspaceId" UNIQUE ("domain", "workspaceId"), CONSTRAINT "PK_523281ce57c84e1a039f4538c19" PRIMARY KEY ("id")) query: ALTER TABLE "core"."approvedAccessDomain" ADD CONSTRAINT "FK_73d3e340b6ce0716a25a86361fc" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1740048555744,"AddApprovedAccessDomain1740048555744"] Migration AddApprovedAccessDomain1740048555744 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD "defaultRoleId" uuid query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1740390801418,"AddDefaultRoleToWorkspace1740390801418"] Migration AddDefaultRoleToWorkspace1740390801418 has been executed successfully. query: ALTER TABLE "core"."user" ADD "canAccessFullAdminPanel" boolean NOT NULL DEFAULT false query: ALTER TABLE "core"."workspace" ADD "version" character varying query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1740415309924,"AddAccessToFullAdminAndWorkspaceVersion1740415309924"] Migration AddAccessToFullAdminAndWorkspaceVersion1740415309924 has been executed successfully. query: ALTER TABLE "core"."objectMetadata" ADD "isSearchable" boolean NOT NULL DEFAULT false query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1740478150675,"AddIsSearchableColumnInObjectMetadataTable1740478150675"] Migration AddIsSearchableColumnInObjectMetadataTable1740478150675 has been executed successfully. query: ALTER TABLE "core"."role" ADD "icon" character varying query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1741859116265,"AddIconToRole1741859116265"] Migration AddIconToRole1741859116265 has been executed successfully. query: CREATE TABLE "core"."objectPermissions" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "roleId" uuid NOT NULL, "objectMetadataId" uuid NOT NULL, "canReadObjectRecords" boolean, "canUpdateObjectRecords" boolean, "canSoftDeleteObjectRecords" boolean, "canDestroyObjectRecords" boolean, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "IndexOnObjectPermissionsUnique" UNIQUE ("objectMetadataId", "roleId"), CONSTRAINT "PK_ea2c5c9a2dfa3d674da8b1350cd" PRIMARY KEY ("id")) query: CREATE TABLE "core"."settingsPermissions" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "roleId" uuid NOT NULL, "setting" character varying NOT NULL, "canUpdateSetting" boolean, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "IndexOnSettingsPermissionsUnique" UNIQUE ("setting", "roleId"), CONSTRAINT "PK_44f120f1e527e62efa3fec8a846" PRIMARY KEY ("id")) query: ALTER TABLE "core"."objectPermissions" ADD CONSTRAINT "FK_770297c03e386df4c9fa4986ee1" FOREIGN KEY ("roleId") REFERENCES "core"."role"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."objectPermissions" ADD CONSTRAINT "FK_ddad09b4fdf32c88283ae815074" FOREIGN KEY ("objectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."settingsPermissions" ADD CONSTRAINT "FK_712bf97e56c4040026dd887ed4a" FOREIGN KEY ("roleId") REFERENCES "core"."role"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1742232505943,"GeneratePermissionsV2Tables1742232505943"] Migration GeneratePermissionsV2Tables1742232505943 has been executed successfully. query: ALTER TABLE "core"."role" ADD CONSTRAINT "IndexOnRoleUnique" UNIQUE ("label", "workspaceId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1742316060157,"AddIndexOnRoleLabelAndWorkspaceId1742316060157"] Migration AddIndexOnRoleLabelAndWorkspaceId1742316060157 has been executed successfully. query: DROP TABLE "core"."settingsPermissions" query: DROP TABLE "core"."objectPermissions" query: CREATE TABLE "core"."objectPermission" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "roleId" uuid NOT NULL, "objectMetadataId" uuid NOT NULL, "canReadObjectRecords" boolean, "canUpdateObjectRecords" boolean, "canSoftDeleteObjectRecords" boolean, "canDestroyObjectRecords" boolean, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "IndexOnObjectPermissionUnique" UNIQUE ("objectMetadataId", "roleId"), CONSTRAINT "PK_23a4033c1aa380d0d1431731add" PRIMARY KEY ("id")) query: CREATE TABLE "core"."settingPermission" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "roleId" uuid NOT NULL, "setting" character varying NOT NULL, "canUpdateSetting" boolean, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "IndexOnSettingPermissionUnique" UNIQUE ("setting", "roleId"), CONSTRAINT "PK_8c144a021030d7e3326835a04c8" PRIMARY KEY ("id")) query: ALTER TABLE "core"."objectPermission" ADD CONSTRAINT "FK_826052747c82e59f0a006204256" FOREIGN KEY ("roleId") REFERENCES "core"."role"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."objectPermission" ADD CONSTRAINT "FK_efbcf3528718de2b5c45c0a8a83" FOREIGN KEY ("objectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."settingPermission" ADD CONSTRAINT "FK_b327aadd9fd189f33d2c5237833" FOREIGN KEY ("roleId") REFERENCES "core"."role"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1742488572894,"RenamePermissionTables1742488572894"] Migration RenamePermissionTables1742488572894 has been executed successfully. query: ALTER TABLE "core"."fieldMetadata" ADD "standardOverrides" jsonb query: ALTER TABLE "core"."objectMetadata" ADD "standardOverrides" jsonb query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1742736630054,"StandardObjectOverwrite1742736630054"] Migration StandardObjectOverwrite1742736630054 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD CONSTRAINT "onboarded_workspace_requires_default_role" CHECK ("activationStatus" IN ('PENDING_CREATION', 'ONGOING_CREATION') OR "defaultRoleId" IS NOT NULL) query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1742998832316,"AddWorkspaceConstraint1742998832316"] Migration AddWorkspaceConstraint1742998832316 has been executed successfully. query: ALTER TABLE "core"."keyValuePair" ALTER COLUMN "type" DROP DEFAULT query: ALTER TABLE "core"."keyValuePair" ALTER COLUMN "type" TYPE text USING "type"::text query: UPDATE "core"."keyValuePair" SET "type" = 'USER_VARIABLE' WHERE "type" = 'USER_VAR' query: UPDATE "core"."keyValuePair" SET "type" = 'CONFIG_VARIABLE' WHERE "type" = 'SYSTEM_VAR' query: DROP TYPE "core"."keyValuePair_type_enum" query: CREATE TYPE "core"."keyValuePair_type_enum" AS ENUM('USER_VARIABLE', 'FEATURE_FLAG', 'CONFIG_VARIABLE') query: ALTER TABLE "core"."keyValuePair" ALTER COLUMN "type" TYPE "core"."keyValuePair_type_enum" USING "type"::"core"."keyValuePair_type_enum" query: ALTER TABLE "core"."keyValuePair" ALTER COLUMN "type" SET DEFAULT 'USER_VARIABLE' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1743085000787,"UpdateKeyValuePairTypeEnum1743085000787"] Migration UpdateKeyValuePairTypeEnum1743085000787 has been executed successfully. query: SELECT EXISTS(SELECT 1 FROM pg_namespace WHERE nspname = 'metadata') query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1743085000788,"TransferMetadataToCore1743085000788"] Migration TransferMetadataToCore1743085000788 has been executed successfully. query: ALTER TABLE "core"."settingPermission" DROP COLUMN "canUpdateSetting" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1743605310126,"RemoveCanUpdateSettingFromSettingPermission1743605310126"] Migration RemoveCanUpdateSettingFromSettingPermission1743605310126 has been executed successfully. query: ALTER TABLE "core"."fieldMetadata" DROP CONSTRAINT IF EXISTS "FK_6f6c87ec32cca956d8be321071c" query: ALTER TABLE "core"."fieldMetadata" ADD CONSTRAINT "FK_6f6c87ec32cca956d8be321071c" FOREIGN KEY ("relationTargetObjectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1747062634513,"AddCascadeDeleteOnFieldMetadataRelationTargetObject1747062634513"] Migration AddCascadeDeleteOnFieldMetadataRelationTargetObject1747062634513 has been executed successfully. query: ALTER TABLE "core"."userWorkspace" ADD "defaultAvatarUrl" character varying query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1747401483135,"AddDefaultAvatarUrlColumnInUserWorkspaceTable1747401483135"] Migration AddDefaultAvatarUrlColumnInUserWorkspaceTable1747401483135 has been executed successfully. query: CREATE TABLE "core"."agent" ( "id" uuid NOT NULL DEFAULT uuid_generate_v4(), "name" character varying NOT NULL, "description" character varying, "prompt" text NOT NULL, "modelId" character varying NOT NULL, "responseFormat" jsonb, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "deletedAt" TIMESTAMP WITH TIME ZONE, CONSTRAINT "PK_agent" PRIMARY KEY ("id") ) query: CREATE INDEX "IDX_AGENT_ID_DELETED_AT" ON "core"."agent" ("id", "deletedAt") query: ALTER TABLE "core"."agent" ADD CONSTRAINT "FK_c4cb56621768a4a325dd772bbe1" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1747401483136,"CreateAgentTable1747401483136"] Migration CreateAgentTable1747401483136 has been executed successfully. query: CREATE INDEX "IDX_USER_WORKSPACE_ROLE_USER_WORKSPACE_ID_WORKSPACE_ID" ON "core"."userWorkspaceRole" ("userWorkspaceId", "workspaceId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1748843737248,"AddUserWorkspaceRoleCompositeIndex1748843737248"] Migration AddUserWorkspaceRoleCompositeIndex1748843737248 has been executed successfully. query: CREATE INDEX "IDX_INDEX_METADATA_WORKSPACE_ID_OBJECT_METADATA_ID" ON "core"."indexMetadata" ("workspaceId", "objectMetadataId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1748843862307,"AddIndexMetadataWorkspaceObjectCompositeIndex1748843862307"] Migration AddIndexMetadataWorkspaceObjectCompositeIndex1748843862307 has been executed successfully. query: CREATE INDEX "IDX_USER_WORKSPACE_WORKSPACE_ID" ON "core"."userWorkspace" ("workspaceId") query: CREATE INDEX "IDX_USER_WORKSPACE_USER_ID" ON "core"."userWorkspace" ("userId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1748844710107,"AddSoftDeleteIndexes1748844710107"] Migration AddSoftDeleteIndexes1748844710107 has been executed successfully. query: DROP INDEX "core"."IndexOnFieldMetadataId" query: DROP INDEX "core"."IndexOnRelationTargetObjectMetadataId" query: DROP INDEX "core"."IndexOnRelationTargetFieldMetadataId" query: DROP INDEX "core"."IndexOnObjectMetadataId" query: DROP INDEX "core"."IndexOnWorkspaceId" query: ALTER TABLE "core"."indexMetadata" DROP CONSTRAINT "IndexOnNameAndWorkspaceIdAndObjectMetadataUnique" query: ALTER TABLE "core"."fieldMetadata" DROP CONSTRAINT "IndexOnNameObjectMetadataIdAndWorkspaceIdUnique" query: ALTER TABLE "core"."objectMetadata" DROP CONSTRAINT "IndexOnNamePluralAndWorkspaceIdUnique" query: ALTER TABLE "core"."objectMetadata" DROP CONSTRAINT "IndexOnNameSingularAndWorkspaceIdUnique" query: ALTER TABLE "core"."objectPermission" DROP CONSTRAINT "IndexOnObjectPermissionUnique" query: ALTER TABLE "core"."userWorkspaceRole" DROP CONSTRAINT "IndexOnUserWorkspaceRoleUnique" query: ALTER TABLE "core"."role" DROP CONSTRAINT "IndexOnRoleUnique" query: ALTER TABLE "core"."settingPermission" DROP CONSTRAINT "IndexOnSettingPermissionUnique" query: CREATE INDEX "IDX_INDEX_FIELD_METADATA_FIELD_METADATA_ID" ON "core"."indexFieldMetadata" ("fieldMetadataId") query: CREATE INDEX "IDX_FIELD_METADATA_OBJECT_METADATA_ID" ON "core"."fieldMetadata" ("objectMetadataId") query: CREATE INDEX "IDX_FIELD_METADATA_WORKSPACE_ID" ON "core"."fieldMetadata" ("workspaceId") query: CREATE INDEX "IDX_FIELD_METADATA_OBJECT_METADATA_ID_WORKSPACE_ID" ON "core"."fieldMetadata" ("objectMetadataId", "workspaceId") query: CREATE INDEX "IDX_FIELD_METADATA_RELATION_TARGET_OBJECT_METADATA_ID" ON "core"."fieldMetadata" ("relationTargetObjectMetadataId") query: CREATE INDEX "IDX_FIELD_METADATA_RELATION_TARGET_FIELD_METADATA_ID" ON "core"."fieldMetadata" ("relationTargetFieldMetadataId") query: ALTER TABLE "core"."indexMetadata" ADD CONSTRAINT "IDX_INDEX_METADATA_NAME_WORKSPACE_ID_OBJECT_METADATA_ID_UNIQUE" UNIQUE ("name", "workspaceId", "objectMetadataId") query: ALTER TABLE "core"."fieldMetadata" ADD CONSTRAINT "IDX_FIELD_METADATA_NAME_OBJECT_METADATA_ID_WORKSPACE_ID_UNIQUE" UNIQUE ("name", "objectMetadataId", "workspaceId") query: ALTER TABLE "core"."objectMetadata" ADD CONSTRAINT "IDX_OBJECT_METADATA_NAME_PLURAL_WORKSPACE_ID_UNIQUE" UNIQUE ("namePlural", "workspaceId") query: ALTER TABLE "core"."objectMetadata" ADD CONSTRAINT "IDX_OBJECT_METADATA_NAME_SINGULAR_WORKSPACE_ID_UNIQUE" UNIQUE ("nameSingular", "workspaceId") query: ALTER TABLE "core"."objectPermission" ADD CONSTRAINT "IDX_OBJECT_PERMISSION_OBJECT_METADATA_ID_ROLE_ID_UNIQUE" UNIQUE ("objectMetadataId", "roleId") query: ALTER TABLE "core"."userWorkspaceRole" ADD CONSTRAINT "IDX_USER_WORKSPACE_ROLE_USER_WORKSPACE_ID_ROLE_ID_UNIQUE" UNIQUE ("userWorkspaceId", "roleId") query: ALTER TABLE "core"."role" ADD CONSTRAINT "IDX_ROLE_LABEL_WORKSPACE_ID_UNIQUE" UNIQUE ("label", "workspaceId") query: ALTER TABLE "core"."settingPermission" ADD CONSTRAINT "IDX_SETTING_PERMISSION_SETTING_ROLE_ID_UNIQUE" UNIQUE ("setting", "roleId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1748846032709,"FixMetadataIndexes1748846032709"] Migration FixMetadataIndexes1748846032709 has been executed successfully. query: DROP INDEX "core"."IndexOnKeyUserIdAndNullWorkspaceIdUnique" query: DROP INDEX "core"."IndexOnKeyWorkspaceIdAndNullUserIdUnique" query: ALTER TABLE "core"."keyValuePair" DROP CONSTRAINT "IndexOnKeyUserIdWorkspaceIdUnique" query: ALTER TABLE "core"."approvedAccessDomain" DROP CONSTRAINT "IndexOnDomainAndWorkspaceId" query: ALTER TABLE "core"."featureFlag" DROP CONSTRAINT "IndexOnKeyAndWorkspaceIdUnique" query: CREATE UNIQUE INDEX "IDX_KEY_VALUE_PAIR_KEY_USER_ID_NULL_WORKSPACE_ID_UNIQUE" ON "core"."keyValuePair" ("key", "userId") WHERE "workspaceId" is NULL query: CREATE UNIQUE INDEX "IDX_KEY_VALUE_PAIR_KEY_WORKSPACE_ID_NULL_USER_ID_UNIQUE" ON "core"."keyValuePair" ("key", "workspaceId") WHERE "userId" is NULL query: ALTER TABLE "core"."keyValuePair" ADD CONSTRAINT "IDX_KEY_VALUE_PAIR_KEY_USER_ID_WORKSPACE_ID_UNIQUE" UNIQUE ("key", "userId", "workspaceId") query: ALTER TABLE "core"."approvedAccessDomain" ADD CONSTRAINT "IDX_APPROVED_ACCESS_DOMAIN_DOMAIN_WORKSPACE_ID_UNIQUE" UNIQUE ("domain", "workspaceId") query: ALTER TABLE "core"."featureFlag" ADD CONSTRAINT "IDX_FEATURE_FLAG_KEY_WORKSPACE_ID_UNIQUE" UNIQUE ("key", "workspaceId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1748846118238,"FixCoreIndexes1748846118238"] Migration FixCoreIndexes1748846118238 has been executed successfully. query: ALTER TABLE "core"."userWorkspace" DROP CONSTRAINT "IndexOnUserIdAndWorkspaceIdUnique" query: ALTER TABLE "core"."userWorkspace" ADD CONSTRAINT "IDX_USER_WORKSPACE_USER_ID_WORKSPACE_ID_UNIQUE" UNIQUE ("userId", "workspaceId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1748849487789,"FixCoreIndexes21748849487789"] Migration FixCoreIndexes21748849487789 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" ADD "deletedAt" TIMESTAMP WITH TIME ZONE query: CREATE INDEX "IDX_SERVERLESS_FUNCTION_ID_DELETED_AT" ON "core"."serverlessFunction" ("id", "deletedAt") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1748875812894,"AddDeletedAtToServerlessFunction1748875812894"] Migration AddDeletedAtToServerlessFunction1748875812894 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" DROP COLUMN "syncStatus" query: SELECT 1 FROM information_schema.schemata WHERE schema_name = 'metadata'; query: DROP TYPE "core"."serverlessFunction_syncstatus_enum" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1748942397538,"RemoveUselessServerlessFunctionColumn1748942397538"] Migration RemoveUselessServerlessFunctionColumn1748942397538 has been executed successfully. query: ALTER TABLE "core"."userWorkspaceRole" ADD "agentId" uuid query: ALTER TABLE "core"."userWorkspaceRole" ALTER COLUMN "userWorkspaceId" DROP NOT NULL query: ALTER TABLE "core"."userWorkspaceRole" ADD CONSTRAINT "CHK_role_targets_either_agent_or_user" CHECK (((("agentId" IS NOT NULL) AND ("userWorkspaceId" IS NULL)) OR (("agentId" IS NULL) AND ("userWorkspaceId" IS NOT NULL)))) query: ALTER TABLE "core"."userWorkspaceRole" RENAME TO "roleTargets" query: ALTER INDEX "core"."IDX_USER_WORKSPACE_ROLE_USER_WORKSPACE_ID_ROLE_ID_UNIQUE" RENAME TO "IDX_ROLE_TARGETS_UNIQUE" query: ALTER INDEX "core"."IDX_USER_WORKSPACE_ROLE_USER_WORKSPACE_ID_WORKSPACE_ID" RENAME TO "IDX_ROLE_TARGETS_WORKSPACE_ID" query: ALTER TABLE "core"."roleTargets" DROP CONSTRAINT "FK_0b70755f23a3705f1bea0ddc7d4" query: CREATE INDEX "IDX_ROLE_TARGETS_AGENT_ID" ON "core"."roleTargets" ("agentId") query: ALTER TABLE "core"."roleTargets" ADD CONSTRAINT "FK_d5838ba43033ee6266d8928d7d7" FOREIGN KEY ("roleId") REFERENCES "core"."role"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1749000000000,"RenameUserWorkspaceRoleToRoleTargets1749000000000"] Migration RenameUserWorkspaceRoleToRoleTargets1749000000000 has been executed successfully. query: ALTER TABLE "core"."serverlessFunction" ALTER COLUMN "runtime" SET DEFAULT 'nodejs22.x' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1749205425841,"UpdateServerlessFunctionDefaultRuntimeToNode221749205425841"] Migration UpdateServerlessFunctionDefaultRuntimeToNode221749205425841 has been executed successfully. query: CREATE INDEX "IDX_DATA_SOURCE_WORKSPACE_ID_CREATED_AT" ON "core"."dataSource" ("workspaceId", "createdAt") query: ALTER TABLE "core"."relationMetadata" DROP CONSTRAINT IF EXISTS "FK_9dea8f90d04edbbf9c541a95c3b" query: ALTER TABLE "core"."relationMetadata" DROP CONSTRAINT IF EXISTS "FK_3deb257254145a3bdde9575e7d6" query: ALTER TABLE "core"."relationMetadata" DROP CONSTRAINT IF EXISTS "FK_0f781f589e5a527b8f3d3a4b824" query: ALTER TABLE "core"."relationMetadata" DROP CONSTRAINT IF EXISTS "FK_f2a0acd3a548ee446a1a35df44d" query: DROP TABLE IF EXISTS "core"."relationMetadata" query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1750673748111,"RemoveRelationMetadata1750673748111"] Migration RemoveRelationMetadata1750673748111 has been executed successfully. query: CREATE TYPE "core"."agentChatMessage_role_enum" AS ENUM('user', 'assistant') query: CREATE TABLE "core"."agentChatMessage" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "threadId" uuid NOT NULL, "role" "core"."agentChatMessage_role_enum" NOT NULL, "content" text NOT NULL, "createdAt" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "PK_f54a95b34e98d94251bce37a180" PRIMARY KEY ("id")) query: CREATE INDEX "IDX_cd5b23d4e471b630137b3017ba" ON "core"."agentChatMessage" ("threadId") query: CREATE TABLE "core"."agentChatThread" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "agentId" uuid NOT NULL, "userWorkspaceId" uuid NOT NULL, "createdAt" TIMESTAMP NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "PK_a53b1d75d11ec67d13590cfa627" PRIMARY KEY ("id")) query: CREATE INDEX "IDX_d0bdc80c68a48b1f26727aabfe" ON "core"."agentChatThread" ("agentId") query: CREATE INDEX "IDX_3bd935d6f8c5ce87194b8db824" ON "core"."agentChatThread" ("userWorkspaceId") query: ALTER TABLE "core"."agentChatMessage" ADD CONSTRAINT "FK_cd5b23d4e471b630137b3017ba6" FOREIGN KEY ("threadId") REFERENCES "core"."agentChatThread"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."agentChatThread" ADD CONSTRAINT "FK_d0bdc80c68a48b1f26727aabfe6" FOREIGN KEY ("agentId") REFERENCES "core"."agent"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."agentChatThread" ADD CONSTRAINT "FK_3bd935d6f8c5ce87194b8db8240" FOREIGN KEY ("userWorkspaceId") REFERENCES "core"."userWorkspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1751467467020,"AddAgentChatMessageAndThreadTable1751467467020"] Migration AddAgentChatMessageAndThreadTable1751467467020 has been executed successfully. query: ALTER TABLE "core"."fieldMetadata" DROP CONSTRAINT "IDX_FIELD_METADATA_NAME_OBJECT_METADATA_ID_WORKSPACE_ID_UNIQUE" query: CREATE UNIQUE INDEX "IDX_FIELD_METADATA_NAME_OBJMID_WORKSPACE_ID_EXCEPT_MORPH_UNIQUE" ON "core"."fieldMetadata" ("name", "objectMetadataId", "workspaceId") WHERE "type" <> 'MORPH_RELATION' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1751558024634,"MorphIndexUpdate1751558024634"] Migration MorphIndexUpdate1751558024634 has been executed successfully. query: CREATE TABLE "core"."apiKey" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "name" character varying NOT NULL, "expiresAt" TIMESTAMP WITH TIME ZONE NOT NULL, "revokedAt" TIMESTAMP WITH TIME ZONE, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "PK_2ae3a5e8e04fb402b2dc8d6ce4b" PRIMARY KEY ("id")) query: CREATE INDEX "IDX_API_KEY_WORKSPACE_ID" ON "core"."apiKey" ("workspaceId") query: CREATE TABLE "core"."webhook" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "targetUrl" character varying NOT NULL, "operations" text array NOT NULL DEFAULT '{*.*}', "description" character varying, "secret" character varying NOT NULL, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "deletedAt" TIMESTAMP WITH TIME ZONE, CONSTRAINT "PK_e6765510c2d078db49632b59020" PRIMARY KEY ("id")) query: CREATE INDEX "IDX_WEBHOOK_WORKSPACE_ID" ON "core"."webhook" ("workspaceId") query: ALTER TABLE "core"."apiKey" ADD CONSTRAINT "FK_c8b3efa54a29aa873043e72fb1d" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."webhook" ADD CONSTRAINT "FK_597ab5e7de76f1836b8fd80d6b9" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1751690946522,"AddApiKeysAndWebhookToCore1751690946522"] Migration AddApiKeysAndWebhookToCore1751690946522 has been executed successfully. query: ALTER TABLE "core"."userWorkspace" ADD "locale" character varying NOT NULL DEFAULT 'en' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1751700932529,"AddLocaleToUserWorkspace1751700932529"] Migration AddLocaleToUserWorkspace1751700932529 has been executed successfully. query: CREATE INDEX "IDX_OBJECT_PERMISSION_WORKSPACE_ID_ROLE_ID" ON "core"."objectPermission" ("workspaceId", "roleId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1751890088507,"AddIndexOnObjectPermission1751890088507"] Migration AddIndexOnObjectPermission1751890088507 has been executed successfully. query: CREATE TABLE "core"."fieldPermission" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "roleId" uuid NOT NULL, "objectMetadataId" uuid NOT NULL, "fieldMetadataId" uuid NOT NULL, "canReadFieldValue" boolean, "canUpdateFieldValue" boolean, "workspaceId" uuid NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), CONSTRAINT "IDX_FIELD_PERMISSION_FIELD_METADATA_ID_ROLE_ID_UNIQUE" UNIQUE ("fieldMetadataId", "roleId"), CONSTRAINT "PK_d7bb911e4f9b1b5e3bfcfdd1c4b" PRIMARY KEY ("id")) query: CREATE INDEX "IDX_FIELD_PERMISSION_WORKSPACE_ID_ROLE_ID" ON "core"."fieldPermission" ("workspaceId", "roleId") query: ALTER TABLE "core"."fieldPermission" ADD CONSTRAINT "FK_bbf16a91f5a10199e5b18c019ba" FOREIGN KEY ("roleId") REFERENCES "core"."role"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."fieldPermission" ADD CONSTRAINT "FK_dc8e552397f5e44d175fedf752a" FOREIGN KEY ("objectMetadataId") REFERENCES "core"."objectMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."fieldPermission" ADD CONSTRAINT "FK_d5c47a26fe71648894d05da3d3a" FOREIGN KEY ("fieldMetadataId") REFERENCES "core"."fieldMetadata"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: ALTER TABLE "core"."fieldPermission" ADD CONSTRAINT "FK_2763aee5614b54019d692333fe1" FOREIGN KEY ("workspaceId") REFERENCES "core"."workspace"("id") ON DELETE CASCADE ON UPDATE NO ACTION query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1751993324990,"AddFieldPermission1751993324990"] Migration AddFieldPermission1751993324990 has been executed successfully. query: ALTER TABLE "core"."workspace" ADD "defaultAgentId" uuid query: ALTER TABLE "core"."agent" ALTER COLUMN "modelId" SET DEFAULT 'auto' query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1752070094777,"AddDefaultAgentId1752070094777"] Migration AddDefaultAgentId1752070094777 has been executed successfully. query: ALTER TABLE "core"."agent" ADD "label" character varying NOT NULL query: ALTER TABLE "core"."agent" ADD "icon" character varying query: ALTER TABLE "core"."agent" ADD "isCustom" boolean NOT NULL DEFAULT false query: ALTER TABLE "core"."agent" ADD CONSTRAINT "IDX_AGENT_NAME_WORKSPACE_ID_UNIQUE" UNIQUE ("name", "workspaceId") query: INSERT INTO "core"."_typeorm_migrations"("timestamp", "name") VALUES ($1, $2) -- PARAMETERS: [1752088464449,"AgentAsStandardMetadata1752088464449"] Migration AgentAsStandardMetadata1752088464449 has been executed successfully. query: COMMIT npm notice npm notice New major version of npm available! 10.9.2 -> 11.4.2 npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.4.2 npm notice To update run: npm install -g npm@11.4.2 npm notice [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [NestFactory] Starting Nest application... [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CommandRootModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CommandModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AppModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] SentryModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] GraphQLConfigModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CoreEngineModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TwentyConfigModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] StripeSDKModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessageQueueModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AiModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceMigrationV2Module dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceMigrationBuilderV2Module dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceMigrationRunnerV2Module dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] EmailModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AppTokenModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ObjectMetadataRepositoryModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RecordTransformerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] FormActionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] FilterActionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] HttpRequestActionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowBuilderModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceQueryBuilderModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ImapSmtpCaldavValidatorModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessageQueueModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ModulesModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessagingModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CalendarModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MetadataEngineModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MetadataGraphQLApiModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] I18nModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] SyncWorkspaceLoggerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] FileStorageModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] V1_2_UpgradeVersionCommandModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] V1_3_UpgradeVersionCommandModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] HttpModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] HttpModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] HttpModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ConfigHostModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MetadataQueryBuilderModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ConfigModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ConfigModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ConfigModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] DiscoveryModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceEventEmitterModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] DiscoveryModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TerminusModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ServeStaticModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CommandRunnerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] EventEmitterModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ScheduleModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] GraphQLSchemaBuilderModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceQueryHookModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceMigrationModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] DataSourceModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AgentRoleModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] KeyValuePairModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] DatabaseConfigModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [TwentyConfigService] Database configuration is enabled [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [TwentyConfigService] Using database configuration driver [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RemoteTableRelationsModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] UserVarsModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] IndexMetadataModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WebhookModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TwentyConfigModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] SearchVectorModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RedisClientModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ClickHouseModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] GoogleAPIRefreshAccessTokenModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MicrosoftAPIRefreshAccessTokenModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TelemetryModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TypeORMModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] JwtModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] OAuth2ClientManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] PgPoolSharedModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] FileStorageModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MicrosoftCalendarDriverModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] LoggerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CaptchaModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] StripeModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceDataSourceModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ExceptionHandlerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] JwtModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] GuardRedirectModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessageQueueCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceMigrationRunnerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] DistantTableModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RemoteTableSchemaUpdateModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] SubscriptionsModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AuditModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] GoogleCalendarDriverModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessagingGmailDriverModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ServerlessModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ClientConfigModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] EmailModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceMigrationRunnerCommandsModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] PostgresCredentialsModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ApiKeyModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] OnboardingModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] FileUploadModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] DomainManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] FileModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CacheModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CacheStorageModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceCacheStorageModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ThrottlerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CacheLockModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MetricsModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceFeatureFlagsMapCacheModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceMetadataCacheModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspacePermissionsCacheModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceMetadataVersionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CodeActionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] DataloaderModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] SettingPermissionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ObjectPermissionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] FeatureFlagModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ForeignTableModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceMigrationBuilderModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AdminPanelModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceSchemaBuilderModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ServerlessFunctionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TwentyORMModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] HealthModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] GraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] EmailAliasManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RefreshTokensManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ConnectedAccountQueryHookModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessagingCommonModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CalendarCommonModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessagingMicrosoftDriverModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RecordPositionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] FavoriteFolderModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ObjectMetadataRepositoryModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ObjectMetadataRepositoryModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] IMAPAPIsModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ViewModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MatchParticipantModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ConnectedAccountModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] SendEmailActionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] UserRoleModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowCommonModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowStatusModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowRunQueueModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] V0_55_UpgradeVersionCommandModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessagingMonitoringModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceSyncMetadataModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] V0_54_UpgradeVersionCommandModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] V1_1_UpgradeVersionCommandModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceSyncMetadataCommandsModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] GraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ApprovedAccessDomainModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessagingMessageCleanerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessagingQueryHookModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CalendarQueryHookModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CalendarEventCleanerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] FavoriteModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ActorModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ContactCreationManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TokenModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessagingBlocklistManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CalendarBlocklistManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceQueryRunnerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] BlocklistValidationManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] PermissionsModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowRunModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowSchemaModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AutomatedTriggerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RecordCRUDActionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MiddlewareModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] UpgradeVersionCommandModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CoreQueryBuilderModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TimelineCalendarEventModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] SearchModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowQueryHookModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessageParticipantManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CalendarEventParticipantManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] GraphqlQueryRunnerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] BlocklistQueryHookModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceHealthModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceSSOModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] LabModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceInvitationModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessagingIMAPDriverModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] UserWorkspaceModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceMemberQueryHookModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowTriggerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowVersionStepModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceHealthCommandModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RemoteTableModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] DevSeederModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] OpenApiModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceResolverBuilderModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowVersionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CalendarEventImportManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ImapSmtpCaldavModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RemoteServerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] FieldMetadataModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] DatabaseCommandModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] ObjectMetadataModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] CoreGraphQLApiModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AiAgentActionModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] MessagingImportManagerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RestApiModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] BillingModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] UserModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RoleModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] TimelineMessagingModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceCleanerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkspaceModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] EmailVerificationModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowExecutorModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] RestApiCoreModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowRunnerModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AgentModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AiModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AiModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] BillingWebhookModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] WorkflowApiModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [InstanceLoader] AuthModule dependencies initialized [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [PgPoolSharedService] Pool sharing will use max 10 connections per pool with 600000ms idle timeout and allowExitOnIdle=true [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [PgPoolSharedService] pg.Pool patched successfully by this service instance. [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [PgPoolSharedService] Pg pool sharing initialized - pools will be shared across tenants [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [PgPoolSharedService] Created new shared pg Pool for key "localhost|5432|postgres||no-ssl" with 10 max connections and 600000 ms idle timeout. Total pools: 1 [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [DatabaseConfigDriver] [INIT] Loading initial config variables from database [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [DatabaseConfigDriver] [INIT] Config variables loaded: 0 values found in DB, 53 falling to env vars/defaults [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [UpgradeCommand] Fresh installation detected, skipping migration [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [UpgradeCommand] Command completed! [Nest] 169 - 07/18/2025, 7:09:20 AM LOG [PgPoolSharedService] pg Pool for key "localhost|5432|postgres||no-ssl" has been closed. Remaining pools: 0 Successfully migrated DB! Registering background sync jobs... [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [NestFactory] Starting Nest application... [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CommandRootModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CommandModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AppModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] SentryModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] GraphQLConfigModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CoreEngineModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TwentyConfigModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] StripeSDKModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessageQueueModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AiModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceMigrationV2Module dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceMigrationBuilderV2Module dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceMigrationRunnerV2Module dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] EmailModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AppTokenModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ObjectMetadataRepositoryModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RecordTransformerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] FormActionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] FilterActionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] HttpRequestActionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowBuilderModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceQueryBuilderModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ImapSmtpCaldavValidatorModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessageQueueModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ModulesModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessagingModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CalendarModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MetadataEngineModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MetadataGraphQLApiModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] I18nModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] SyncWorkspaceLoggerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] FileStorageModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] V1_2_UpgradeVersionCommandModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] V1_3_UpgradeVersionCommandModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] HttpModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] HttpModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] HttpModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ConfigHostModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MetadataQueryBuilderModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ConfigModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ConfigModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ConfigModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] DiscoveryModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceEventEmitterModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] DiscoveryModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TerminusModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ServeStaticModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CommandRunnerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] EventEmitterModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ScheduleModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] GraphQLSchemaBuilderModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceQueryHookModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceMigrationModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] DataSourceModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AgentRoleModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] KeyValuePairModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] DatabaseConfigModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [TwentyConfigService] Database configuration is enabled [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [TwentyConfigService] Using database configuration driver [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RemoteTableRelationsModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] UserVarsModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] IndexMetadataModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WebhookModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TwentyConfigModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] SearchVectorModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RedisClientModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ClickHouseModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] GoogleAPIRefreshAccessTokenModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MicrosoftAPIRefreshAccessTokenModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TelemetryModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TypeORMModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] JwtModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] OAuth2ClientManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] PgPoolSharedModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] FileStorageModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MicrosoftCalendarDriverModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] LoggerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CaptchaModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] StripeModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceDataSourceModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ExceptionHandlerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] JwtModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] GuardRedirectModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessageQueueCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceMigrationRunnerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] DistantTableModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RemoteTableSchemaUpdateModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] SubscriptionsModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AuditModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] GoogleCalendarDriverModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessagingGmailDriverModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ServerlessModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ClientConfigModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] EmailModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceMigrationRunnerCommandsModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] PostgresCredentialsModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ApiKeyModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] OnboardingModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] FileUploadModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] DomainManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] FileModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CacheModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CacheStorageModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceCacheStorageModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ThrottlerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CacheLockModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MetricsModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceFeatureFlagsMapCacheModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceMetadataCacheModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspacePermissionsCacheModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceMetadataVersionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CodeActionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] DataloaderModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] SettingPermissionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ObjectPermissionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] FeatureFlagModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ForeignTableModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceMigrationBuilderModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AdminPanelModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceSchemaBuilderModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ServerlessFunctionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TwentyORMModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] HealthModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] GraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] EmailAliasManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RefreshTokensManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ConnectedAccountQueryHookModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessagingCommonModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CalendarCommonModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessagingMicrosoftDriverModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RecordPositionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] FavoriteFolderModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ObjectMetadataRepositoryModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ObjectMetadataRepositoryModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] IMAPAPIsModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ViewModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MatchParticipantModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ConnectedAccountModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] SendEmailActionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] UserRoleModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowCommonModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowStatusModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowRunQueueModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] V0_55_UpgradeVersionCommandModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessagingMonitoringModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceSyncMetadataModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] V0_54_UpgradeVersionCommandModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] V1_1_UpgradeVersionCommandModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceSyncMetadataCommandsModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] GraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ApprovedAccessDomainModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessagingMessageCleanerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessagingQueryHookModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CalendarQueryHookModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CalendarEventCleanerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] FavoriteModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ActorModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ContactCreationManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TokenModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessagingBlocklistManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CalendarBlocklistManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceQueryRunnerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] BlocklistValidationManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] PermissionsModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowRunModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowSchemaModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AutomatedTriggerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RecordCRUDActionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MiddlewareModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] UpgradeVersionCommandModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CoreQueryBuilderModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TimelineCalendarEventModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] SearchModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowQueryHookModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessageParticipantManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CalendarEventParticipantManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] GraphqlQueryRunnerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] BlocklistQueryHookModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceHealthModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceSSOModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] LabModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceInvitationModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessagingIMAPDriverModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] UserWorkspaceModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceMemberQueryHookModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowTriggerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowVersionStepModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceHealthCommandModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RemoteTableModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] DevSeederModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] OpenApiModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceResolverBuilderModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowVersionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CalendarEventImportManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ImapSmtpCaldavModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RemoteServerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] FieldMetadataModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] DatabaseCommandModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] ObjectMetadataModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] CoreGraphQLApiModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AiAgentActionModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] MessagingImportManagerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RestApiModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] BillingModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] UserModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RoleModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] TimelineMessagingModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceCleanerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkspaceModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] EmailVerificationModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowExecutorModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] RestApiCoreModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowRunnerModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AgentModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AiModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AiModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] BillingWebhookModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] WorkflowApiModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [InstanceLoader] AuthModule dependencies initialized [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [PgPoolSharedService] Pool sharing will use max 10 connections per pool with 600000ms idle timeout and allowExitOnIdle=true [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [PgPoolSharedService] pg.Pool patched successfully by this service instance. [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [PgPoolSharedService] Pg pool sharing initialized - pools will be shared across tenants [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [PgPoolSharedService] Created new shared pg Pool for key "localhost|5432|postgres||no-ssl" with 10 max connections and 600000 ms idle timeout. Total pools: 1 [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [DatabaseConfigDriver] [INIT] Loading initial config variables from database [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [DatabaseConfigDriver] [INIT] Config variables loaded: 0 values found in DB, 53 falling to env vars/defaults [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Registering all background sync cron jobs... [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Registering MessagingMessagesImport cron job... [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Successfully registered MessagingMessagesImport cron job [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Registering MessagingMessageListFetch cron job... [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Successfully registered MessagingMessageListFetch cron job [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Registering MessagingOngoingStale cron job... [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Successfully registered MessagingOngoingStale cron job [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Registering CalendarEventListFetch cron job... [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Successfully registered CalendarEventListFetch cron job [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Registering CalendarEventsImport cron job... [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Successfully registered CalendarEventsImport cron job [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Registering CalendarOngoingStale cron job... [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Successfully registered CalendarOngoingStale cron job [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Registering CronTrigger cron job... [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Successfully registered CronTrigger cron job [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Cron job registration completed: 7 successful, 0 failed [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [CronRegisterAllCommand] Successful commands: MessagingMessagesImport, MessagingMessageListFetch, MessagingOngoingStale, CalendarEventListFetch, CalendarEventsImport, CalendarOngoingStale, CronTrigger [Nest] 214 - 07/18/2025, 7:09:30 AM LOG [PgPoolSharedService] pg Pool for key "localhost|5432|postgres||no-ssl" has been closed. Remaining pools: 0 Successfully registered all background sync jobs! [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [NestFactory] Starting Nest application... [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AppModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] SentryModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] GraphQLConfigModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CoreEngineModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TwentyConfigModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] StripeSDKModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessageQueueModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AiModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceMigrationV2Module dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceMigrationBuilderV2Module dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceMigrationRunnerV2Module dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] EmailModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AppTokenModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ObjectMetadataRepositoryModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RecordTransformerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] FormActionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] FilterActionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] HttpRequestActionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowBuilderModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceQueryBuilderModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ImapSmtpCaldavValidatorModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessageQueueModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ModulesModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessagingModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CalendarModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MetadataEngineModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MetadataGraphQLApiModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] I18nModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] HttpModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] HttpModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] HttpModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ConfigHostModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MetadataQueryBuilderModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ConfigModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ConfigModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ConfigModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceEventEmitterModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] DiscoveryModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TerminusModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ServeStaticModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] EventEmitterModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ScheduleModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] GraphQLSchemaBuilderModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceQueryHookModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceMigrationModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] DataSourceModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AgentRoleModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryTypeOrmModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] KeyValuePairModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] DatabaseConfigModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [TwentyConfigService] Database configuration is enabled [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [TwentyConfigService] Using database configuration driver [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RemoteTableRelationsModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] UserVarsModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] IndexMetadataModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WebhookModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TwentyConfigModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] SearchVectorModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RedisClientModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ClickHouseModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] GoogleAPIRefreshAccessTokenModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MicrosoftAPIRefreshAccessTokenModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TelemetryModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TypeORMModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] JwtModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] OAuth2ClientManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] PgPoolSharedModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] FileStorageModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MicrosoftCalendarDriverModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] LoggerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CaptchaModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] StripeModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceDataSourceModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ExceptionHandlerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] JwtModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] GuardRedirectModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessageQueueCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceMigrationRunnerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] DistantTableModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RemoteTableSchemaUpdateModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] SubscriptionsModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AuditModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] GoogleCalendarDriverModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessagingGmailDriverModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ServerlessModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ClientConfigModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] EmailModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] PostgresCredentialsModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ApiKeyModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] OnboardingModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] FileUploadModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] DomainManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] FileModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CacheModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CacheStorageModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceCacheStorageModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ThrottlerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CacheLockModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MetricsModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceFeatureFlagsMapCacheModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceMetadataCacheModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspacePermissionsCacheModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceMetadataVersionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CodeActionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] DataloaderModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] SettingPermissionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ObjectPermissionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] FeatureFlagModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ForeignTableModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceMigrationBuilderModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AdminPanelModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceSchemaBuilderModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ServerlessFunctionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] HealthModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TwentyORMModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] GraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] EmailAliasManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RefreshTokensManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ConnectedAccountQueryHookModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessagingCommonModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CalendarCommonModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessagingMicrosoftDriverModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RecordPositionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] FavoriteFolderModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ObjectMetadataRepositoryModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ObjectMetadataRepositoryModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] IMAPAPIsModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ViewModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MatchParticipantModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ConnectedAccountModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] SendEmailActionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] UserRoleModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowCommonModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowStatusModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowRunQueueModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessagingMonitoringModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceSyncMetadataModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] GraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ApprovedAccessDomainModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessagingMessageCleanerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessagingQueryHookModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CalendarQueryHookModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CalendarEventCleanerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] FavoriteModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ActorModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ContactCreationManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TokenModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessagingBlocklistManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CalendarBlocklistManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceQueryRunnerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] BlocklistValidationManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] PermissionsModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowRunModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowSchemaModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AutomatedTriggerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RecordCRUDActionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MiddlewareModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CoreQueryBuilderModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TimelineCalendarEventModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] SearchModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowQueryHookModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessageParticipantManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CalendarEventParticipantManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] GraphqlQueryRunnerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] BlocklistQueryHookModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceHealthModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceSSOModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] LabModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceInvitationModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessagingIMAPDriverModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] UserWorkspaceModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceMemberQueryHookModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowTriggerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowVersionStepModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RemoteTableModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] DevSeederModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] OpenApiModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceResolverBuilderModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowVersionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ImapSmtpCaldavModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CalendarEventImportManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RemoteServerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] FieldMetadataModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] ObjectMetadataModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] CoreGraphQLApiModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AiAgentActionModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] MessagingImportManagerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RestApiModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] BillingModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] NestjsQueryGraphQLModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RoleModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] UserModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] TimelineMessagingModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkspaceModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] EmailVerificationModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowExecutorModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] RestApiCoreModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowRunnerModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AgentModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AiModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AiModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] BillingWebhookModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] WorkflowApiModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [InstanceLoader] AuthModule dependencies initialized [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] HealthController {/healthz}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/healthz, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/healthz/:indicatorId, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] GoogleAuthController {/auth/google}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/google, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/google/redirect, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] MicrosoftAuthController {/auth/microsoft}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/microsoft, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/microsoft/redirect, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] GoogleAPIsAuthController {/auth/google-apis}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/google-apis, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/google-apis/get-access-token, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] MicrosoftAPIsAuthController {/auth/microsoft-apis}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/microsoft-apis, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/microsoft-apis/get-access-token, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] SSOAuthController {/auth}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/saml/metadata/:identityProviderId, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/oidc/login/:identityProviderId, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/saml/login/:identityProviderId, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/oidc/callback, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/auth/saml/callback/:identityProviderId, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] FileController {/files}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/files/*/:filename, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] CloudflareController {/}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/cloudflare/custom-hostname-webhooks, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/webhooks/cloudflare, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] AgentChatController {/rest/agent-chat}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/agent-chat/threads/:agentId, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/agent-chat/threads/:threadId/messages, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/agent-chat/threads, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/agent-chat/stream, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] BillingWebhookController {/}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/webhooks/stripe, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] ClientConfigController {/client-config}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/client-config, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] OpenApiController {/}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/open-api/core, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/open-api/core, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/open-api/metadata, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/open-api/metadata, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] WorkflowTriggerController {/webhooks}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/webhooks/workflows/:workspaceId/:workflowId, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/webhooks/workflows/:workspaceId/:workflowId, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] AiController {/chat}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/chat, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] McpController {/mcp}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/mcp, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] AiController {/chat}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/chat, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] McpController {/mcp}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/mcp, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] RestApiMetadataController {/rest/metadata/*}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/metadata/*, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/metadata/*, DELETE} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/metadata/*, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/metadata/*, PATCH} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/metadata/*, PUT} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RoutesResolver] RestApiCoreController {/rest}: [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/batch/*, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/*/duplicates, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/*, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/*, GET} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/*, DELETE} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/*, PATCH} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [RouterExplorer] Mapped {/rest/*, PUT} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [PgPoolSharedService] Pool sharing will use max 10 connections per pool with 600000ms idle timeout and allowExitOnIdle=true [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [PgPoolSharedService] pg.Pool patched successfully by this service instance. [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [PgPoolSharedService] Pg pool sharing initialized - pools will be shared across tenants [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [PgPoolSharedService] Created new shared pg Pool for key "localhost|5432|postgres||no-ssl" with 10 max connections and 600000 ms idle timeout. Total pools: 1 [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [DatabaseConfigDriver] [INIT] Loading initial config variables from database [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [DatabaseConfigDriver] [INIT] Config variables loaded: 0 values found in DB, 53 falling to env vars/defaults [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [GraphQLModule] Mapped {/metadata, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [GraphQLModule] Mapped {/graphql, POST} route [Nest] 1 - 07/18/2025, 7:09:39 AM LOG [NestApplication] Nest application successfully started