Skip to content

Commit

Permalink
6655 remove field direction in message and add it in mcma (#6743)
Browse files Browse the repository at this point in the history
Closes #6655 
- Remove direction from message
- Add direction do mcma
- Create migration command
- Create upgrade 0.24
  • Loading branch information
bosiraphael authored Aug 27, 2024
1 parent 5ce1e6b commit e771793
Show file tree
Hide file tree
Showing 26 changed files with 358 additions and 2,346 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1711,20 +1711,20 @@ export const getObjectMetadataItemsMock = () => {
"updatedAt": "2024-08-05T16:38:57.285Z",
"fromRelationMetadata": null,
"toRelationMetadata": null,
"defaultValue": "'incoming'",
"defaultValue": "'INCOMING'",
"options": [
{
"id": "14216544-33d1-47d0-99a9-717763d49c0f",
"color": "green",
"label": "Incoming",
"value": "incoming",
"value": "INCOMING",
"position": 0
},
{
"id": "f1b89e48-1107-45a2-b54a-31a75e76b9b2",
"color": "blue",
"label": "Outgoing",
"value": "outgoing",
"value": "OUTGOING",
"position": 1
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -866,20 +866,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery =
"isNullable": false,
"createdAt": "2024-08-02T16:00:05.938Z",
"updatedAt": "2024-08-02T16:00:05.938Z",
"defaultValue": "'incoming'",
"defaultValue": "'INCOMING'",
"options": [
{
"id": "09fd3f5f-5903-4a3a-8f8b-335825349389",
"color": "green",
"label": "Incoming",
"value": "incoming",
"value": "INCOMING",
"position": 0
},
{
"id": "0df4272e-dfef-450e-84b7-d1477e66ee7f",
"color": "blue",
"label": "Outgoing",
"value": "outgoing",
"value": "OUTGOING",
"position": 1
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import { DataSeedDemoWorkspaceCommand } from 'src/database/commands/data-seed-de
import { DataSeedDemoWorkspaceModule } from 'src/database/commands/data-seed-demo-workspace/data-seed-demo-workspace.module';
import { DataSeedWorkspaceCommand } from 'src/database/commands/data-seed-dev-workspace.command';
import { ConfirmationQuestion } from 'src/database/commands/questions/confirmation.question';
import { UpgradeTo0_23CommandModule } from 'src/database/commands/upgrade-version/0-23/0-23-upgrade-version.module';
import { UpgradeVersionModule } from 'src/database/commands/upgrade-version/upgrade-version.module';
import { UpgradeTo0_24CommandModule } from 'src/database/commands/upgrade-version/0-24/0-24-upgrade-version.module';
import { TypeORMModule } from 'src/database/typeorm/typeorm.module';
import { BillingSubscription } from 'src/engine/core-modules/billing/entities/billing-subscription.entity';
import { FeatureFlagEntity } from 'src/engine/core-modules/feature-flag/feature-flag.entity';
Expand Down Expand Up @@ -46,8 +45,7 @@ import { WorkspaceSyncMetadataModule } from 'src/engine/workspace-manager/worksp
FieldMetadataModule,
DataSeedDemoWorkspaceModule,
WorkspaceMetadataVersionModule,
UpgradeTo0_23CommandModule,
UpgradeVersionModule,
UpgradeTo0_24CommandModule,
],
providers: [
DataSeedWorkspaceCommand,
Expand Down

This file was deleted.

Loading

0 comments on commit e771793

Please sign in to comment.