mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-23 03:51:36 +03:00
Remove flag relation select (#3588)
* Remove feature flag on relation and select * Move packages back to twenty-server to enable smaller build without using nx * Fix package.json
This commit is contained in:
parent
6aad59d0be
commit
a7265fa3b4
11
nx.json
11
nx.json
@ -2,9 +2,7 @@
|
|||||||
"targetDefaults": {
|
"targetDefaults": {
|
||||||
"build": {
|
"build": {
|
||||||
"cache": true,
|
"cache": true,
|
||||||
"dependsOn": [
|
"dependsOn": ["^build"]
|
||||||
"^build"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"lint": {
|
"lint": {
|
||||||
"cache": true
|
"cache": true
|
||||||
@ -17,11 +15,7 @@
|
|||||||
},
|
},
|
||||||
"@nx/jest:jest": {
|
"@nx/jest:jest": {
|
||||||
"cache": true,
|
"cache": true,
|
||||||
"inputs": [
|
"inputs": ["default", "^default", "{workspaceRoot}/jest.preset.js"],
|
||||||
"default",
|
|
||||||
"^default",
|
|
||||||
"{workspaceRoot}/jest.preset.js"
|
|
||||||
],
|
|
||||||
"options": {
|
"options": {
|
||||||
"passWithNoTests": true
|
"passWithNoTests": true
|
||||||
},
|
},
|
||||||
@ -40,4 +34,3 @@
|
|||||||
"defaultBase": "main"
|
"defaultBase": "main"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,9 +8,11 @@ COPY ./.yarnrc.yml .
|
|||||||
COPY ./.yarn/releases /app/.yarn/releases
|
COPY ./.yarn/releases /app/.yarn/releases
|
||||||
COPY ./tools/eslint-rules /app/tools/eslint-rules
|
COPY ./tools/eslint-rules /app/tools/eslint-rules
|
||||||
COPY ./packages/twenty-server /app/packages/twenty-server
|
COPY ./packages/twenty-server /app/packages/twenty-server
|
||||||
RUN yarn
|
|
||||||
|
|
||||||
RUN yarn nx build twenty-server
|
WORKDIR /app/packages/twenty-server
|
||||||
|
RUN yarn workspaces focus
|
||||||
|
|
||||||
|
RUN yarn build
|
||||||
|
|
||||||
WORKDIR /app/packages/twenty-server
|
WORKDIR /app/packages/twenty-server
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@ import { useFavorites } from '@/favorites/hooks/useFavorites';
|
|||||||
import { useObjectMetadataItem } from '@/object-metadata/hooks/useObjectMetadataItem';
|
import { useObjectMetadataItem } from '@/object-metadata/hooks/useObjectMetadataItem';
|
||||||
import { formatFieldMetadataItemAsColumnDefinition } from '@/object-metadata/utils/formatFieldMetadataItemAsColumnDefinition';
|
import { formatFieldMetadataItemAsColumnDefinition } from '@/object-metadata/utils/formatFieldMetadataItemAsColumnDefinition';
|
||||||
import { isObjectMetadataAvailableForRelation } from '@/object-metadata/utils/isObjectMetadataAvailableForRelation';
|
import { isObjectMetadataAvailableForRelation } from '@/object-metadata/utils/isObjectMetadataAvailableForRelation';
|
||||||
import { parseFieldRelationType } from '@/object-metadata/utils/parseFieldRelationType';
|
|
||||||
import { parseFieldType } from '@/object-metadata/utils/parseFieldType';
|
import { parseFieldType } from '@/object-metadata/utils/parseFieldType';
|
||||||
import {
|
import {
|
||||||
FieldContext,
|
FieldContext,
|
||||||
@ -33,7 +32,6 @@ import { ShowPageSummaryCard } from '@/ui/layout/show-page/components/ShowPageSu
|
|||||||
import { ShowPageRecoilScopeContext } from '@/ui/layout/states/ShowPageRecoilScopeContext';
|
import { ShowPageRecoilScopeContext } from '@/ui/layout/states/ShowPageRecoilScopeContext';
|
||||||
import { PageTitle } from '@/ui/utilities/page-title/PageTitle';
|
import { PageTitle } from '@/ui/utilities/page-title/PageTitle';
|
||||||
import { RecoilScope } from '@/ui/utilities/recoil-scope/components/RecoilScope';
|
import { RecoilScope } from '@/ui/utilities/recoil-scope/components/RecoilScope';
|
||||||
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
|
|
||||||
import {
|
import {
|
||||||
FieldMetadataType,
|
FieldMetadataType,
|
||||||
FileFolder,
|
FileFolder,
|
||||||
@ -145,10 +143,6 @@ export const RecordShowPage = () => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const isRelationFieldCardEnabled = useIsFeatureEnabled(
|
|
||||||
'IS_RELATION_FIELD_CARD_ENABLED',
|
|
||||||
);
|
|
||||||
|
|
||||||
const availableFieldMetadataItems = objectMetadataItem.fields
|
const availableFieldMetadataItems = objectMetadataItem.fields
|
||||||
.filter(
|
.filter(
|
||||||
(fieldMetadataItem) =>
|
(fieldMetadataItem) =>
|
||||||
@ -161,9 +155,7 @@ export const RecordShowPage = () => {
|
|||||||
|
|
||||||
const inlineFieldMetadataItems = availableFieldMetadataItems.filter(
|
const inlineFieldMetadataItems = availableFieldMetadataItems.filter(
|
||||||
(fieldMetadataItem) =>
|
(fieldMetadataItem) =>
|
||||||
fieldMetadataItem.type !== FieldMetadataType.Relation ||
|
fieldMetadataItem.type !== FieldMetadataType.Relation,
|
||||||
(!isRelationFieldCardEnabled &&
|
|
||||||
parseFieldRelationType(fieldMetadataItem) === 'TO_ONE_OBJECT'),
|
|
||||||
);
|
);
|
||||||
|
|
||||||
const relationFieldMetadataItems = availableFieldMetadataItems.filter(
|
const relationFieldMetadataItems = availableFieldMetadataItems.filter(
|
||||||
@ -280,42 +272,40 @@ export const RecordShowPage = () => {
|
|||||||
),
|
),
|
||||||
)}
|
)}
|
||||||
</PropertyBox>
|
</PropertyBox>
|
||||||
{isRelationFieldCardEnabled &&
|
{relationFieldMetadataItems
|
||||||
relationFieldMetadataItems
|
.filter((item) => {
|
||||||
.filter((item) => {
|
const relationObjectMetadataItem = item.toRelationMetadata
|
||||||
const relationObjectMetadataItem =
|
? item.toRelationMetadata.fromObjectMetadata
|
||||||
item.toRelationMetadata
|
: item.fromRelationMetadata?.toObjectMetadata;
|
||||||
? item.toRelationMetadata.fromObjectMetadata
|
|
||||||
: item.fromRelationMetadata?.toObjectMetadata;
|
|
||||||
|
|
||||||
if (!relationObjectMetadataItem) {
|
if (!relationObjectMetadataItem) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return isObjectMetadataAvailableForRelation(
|
return isObjectMetadataAvailableForRelation(
|
||||||
relationObjectMetadataItem,
|
relationObjectMetadataItem,
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
.map((fieldMetadataItem, index) => (
|
.map((fieldMetadataItem, index) => (
|
||||||
<FieldContext.Provider
|
<FieldContext.Provider
|
||||||
key={record.id + fieldMetadataItem.id}
|
key={record.id + fieldMetadataItem.id}
|
||||||
value={{
|
value={{
|
||||||
entityId: record.id,
|
entityId: record.id,
|
||||||
recoilScopeId: record.id + fieldMetadataItem.id,
|
recoilScopeId: record.id + fieldMetadataItem.id,
|
||||||
isLabelIdentifier: false,
|
isLabelIdentifier: false,
|
||||||
fieldDefinition:
|
fieldDefinition:
|
||||||
formatFieldMetadataItemAsColumnDefinition({
|
formatFieldMetadataItemAsColumnDefinition({
|
||||||
field: fieldMetadataItem,
|
field: fieldMetadataItem,
|
||||||
position: index,
|
position: index,
|
||||||
objectMetadataItem,
|
objectMetadataItem,
|
||||||
}),
|
}),
|
||||||
useUpdateRecord: useUpdateOneObjectRecordMutation,
|
useUpdateRecord: useUpdateOneObjectRecordMutation,
|
||||||
hotkeyScope: InlineCellHotkeyScope.InlineCell,
|
hotkeyScope: InlineCellHotkeyScope.InlineCell,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<RecordRelationFieldCardSection />
|
<RecordRelationFieldCardSection />
|
||||||
</FieldContext.Provider>
|
</FieldContext.Provider>
|
||||||
))}
|
))}
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</ShowPageLeftContainer>
|
</ShowPageLeftContainer>
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
export type FeatureFlagKey =
|
export type FeatureFlagKey =
|
||||||
| 'IS_MESSAGING_ENABLED'
|
| 'IS_MESSAGING_ENABLED'
|
||||||
| 'IS_QUICK_ACTIONS_ENABLED'
|
| 'IS_QUICK_ACTIONS_ENABLED'
|
||||||
| 'IS_RATING_FIELD_TYPE_ENABLED'
|
| 'IS_RATING_FIELD_TYPE_ENABLED';
|
||||||
| 'IS_RELATION_FIELD_CARD_ENABLED'
|
|
||||||
| 'IS_RELATION_FIELD_TYPE_ENABLED'
|
|
||||||
| 'IS_SELECT_FIELD_TYPE_ENABLED';
|
|
||||||
|
@ -40,14 +40,6 @@ export const SettingsObjectNewFieldStep2 = () => {
|
|||||||
findActiveObjectMetadataItemBySlug(objectSlug);
|
findActiveObjectMetadataItemBySlug(objectSlug);
|
||||||
const { createMetadataField } = useFieldMetadataItem();
|
const { createMetadataField } = useFieldMetadataItem();
|
||||||
|
|
||||||
const isRelationFieldTypeEnabled = useIsFeatureEnabled(
|
|
||||||
'IS_RELATION_FIELD_TYPE_ENABLED',
|
|
||||||
);
|
|
||||||
|
|
||||||
const isSelectFieldTypeEnabled = useIsFeatureEnabled(
|
|
||||||
'IS_SELECT_FIELD_TYPE_ENABLED',
|
|
||||||
);
|
|
||||||
|
|
||||||
const isRatingFieldTypeEnabled = useIsFeatureEnabled(
|
const isRatingFieldTypeEnabled = useIsFeatureEnabled(
|
||||||
'IS_RATING_FIELD_TYPE_ENABLED',
|
'IS_RATING_FIELD_TYPE_ENABLED',
|
||||||
);
|
);
|
||||||
@ -272,14 +264,6 @@ export const SettingsObjectNewFieldStep2 = () => {
|
|||||||
FieldMetadataType.Uuid,
|
FieldMetadataType.Uuid,
|
||||||
];
|
];
|
||||||
|
|
||||||
if (!isRelationFieldTypeEnabled) {
|
|
||||||
excludedFieldTypes.push(FieldMetadataType.Relation);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isSelectFieldTypeEnabled) {
|
|
||||||
excludedFieldTypes.push(FieldMetadataType.Select);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isRatingFieldTypeEnabled) {
|
if (!isRatingFieldTypeEnabled) {
|
||||||
excludedFieldTypes.push(FieldMetadataType.Rating);
|
excludedFieldTypes.push(FieldMetadataType.Rating);
|
||||||
}
|
}
|
||||||
|
@ -29,15 +29,7 @@ export const mockDefaultWorkspace: Workspace = {
|
|||||||
logo: workspaceLogoUrl,
|
logo: workspaceLogoUrl,
|
||||||
allowImpersonation: true,
|
allowImpersonation: true,
|
||||||
subscriptionStatus: 'active',
|
subscriptionStatus: 'active',
|
||||||
featureFlags: [
|
featureFlags: [],
|
||||||
{
|
|
||||||
id: '0eada9a3-ccf4-4fcc-b25c-0c5d746e0fac',
|
|
||||||
key: 'IS_RELATION_FIELD_TYPE_ENABLED',
|
|
||||||
value: true,
|
|
||||||
workspaceId: '7dfbc3f7-6e5e-4128-957e-8d86808cdf6b',
|
|
||||||
__typename: 'FeatureFlag',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
createdAt: '2023-04-26T10:23:42.33625+00:00',
|
createdAt: '2023-04-26T10:23:42.33625+00:00',
|
||||||
updatedAt: '2023-04-26T10:23:42.33625+00:00',
|
updatedAt: '2023-04-26T10:23:42.33625+00:00',
|
||||||
};
|
};
|
||||||
|
@ -34,11 +34,77 @@
|
|||||||
"queue:work": "node dist/src/queue-worker"
|
"queue:work": "node dist/src/queue-worker"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@aws-sdk/client-s3": "^3.363.0",
|
||||||
|
"@aws-sdk/credential-providers": "^3.363.0",
|
||||||
"@graphql-yoga/nestjs": "patch:@graphql-yoga/nestjs@2.1.0#./patches/@graphql-yoga+nestjs+2.1.0.patch",
|
"@graphql-yoga/nestjs": "patch:@graphql-yoga/nestjs@2.1.0#./patches/@graphql-yoga+nestjs+2.1.0.patch",
|
||||||
|
"@nestjs/apollo": "^11.0.5",
|
||||||
|
"@nestjs/axios": "^3.0.1",
|
||||||
|
"@nestjs/cli": "^9.0.0",
|
||||||
|
"@nestjs/common": "^9.0.0",
|
||||||
|
"@nestjs/config": "^2.3.2",
|
||||||
|
"@nestjs/core": "^9.0.0",
|
||||||
"@nestjs/graphql": "patch:@nestjs/graphql@12.0.8#./patches/@nestjs+graphql+12.0.8.patch",
|
"@nestjs/graphql": "patch:@nestjs/graphql@12.0.8#./patches/@nestjs+graphql+12.0.8.patch",
|
||||||
|
"@nestjs/jwt": "^10.0.3",
|
||||||
|
"@nestjs/passport": "^9.0.3",
|
||||||
|
"@nestjs/platform-express": "^9.0.0",
|
||||||
|
"@nestjs/schematics": "^9.0.0",
|
||||||
|
"@nestjs/serve-static": "^3.0.0",
|
||||||
|
"@nestjs/terminus": "^9.2.2",
|
||||||
|
"@nestjs/testing": "^9.0.0",
|
||||||
|
"@nestjs/typeorm": "^10.0.0",
|
||||||
|
"@ptc-org/nestjs-query-core": "^4.2.0",
|
||||||
"@ptc-org/nestjs-query-graphql": "patch:@ptc-org/nestjs-query-graphql@4.2.0#./patches/@ptc-org+nestjs-query-graphql+4.2.0.patch",
|
"@ptc-org/nestjs-query-graphql": "patch:@ptc-org/nestjs-query-graphql@4.2.0#./patches/@ptc-org+nestjs-query-graphql+4.2.0.patch",
|
||||||
|
"@ptc-org/nestjs-query-typeorm": "4.2.1-alpha.2",
|
||||||
|
"@react-email/components": "0.0.12",
|
||||||
|
"@react-email/render": "0.0.10",
|
||||||
|
"@sentry/node": "^7.66.0",
|
||||||
|
"@sentry/profiling-node": "^1.3.4",
|
||||||
|
"axios": "^1.6.2",
|
||||||
|
"bcrypt": "^5.1.1",
|
||||||
|
"bullmq": "^4.14.0",
|
||||||
|
"class-transformer": "^0.5.1",
|
||||||
"class-validator": "patch:class-validator@^0.14.0#./patches/class-validator+0.14.0.patch",
|
"class-validator": "patch:class-validator@^0.14.0#./patches/class-validator+0.14.0.patch",
|
||||||
"twenty-emails": "workspace:*"
|
"date-fns": "^2.30.0",
|
||||||
|
"file-type": "16.5.4",
|
||||||
|
"googleapis": "105",
|
||||||
|
"graphql": "^16.8.1",
|
||||||
|
"graphql-fields": "^2.0.3",
|
||||||
|
"graphql-subscriptions": "2.0.0",
|
||||||
|
"graphql-tag": "^2.12.6",
|
||||||
|
"graphql-type-json": "^0.3.2",
|
||||||
|
"graphql-upload": "^13.0.0",
|
||||||
|
"graphql-yoga": "^4.0.4",
|
||||||
|
"lodash.camelcase": "^4.3.0",
|
||||||
|
"lodash.isempty": "^4.4.0",
|
||||||
|
"lodash.isobject": "^3.0.2",
|
||||||
|
"lodash.kebabcase": "^4.1.1",
|
||||||
|
"lodash.snakecase": "^4.1.1",
|
||||||
|
"lodash.upperfirst": "^4.3.1",
|
||||||
|
"mailparser": "^3.6.5",
|
||||||
|
"microdiff": "^1.3.2",
|
||||||
|
"nest-commander": "^3.12.0",
|
||||||
|
"nodemailer": "^6.9.8",
|
||||||
|
"openapi-types": "^12.1.3",
|
||||||
|
"passport": "^0.6.0",
|
||||||
|
"passport-google-oauth20": "^2.0.0",
|
||||||
|
"passport-jwt": "^4.0.1",
|
||||||
|
"passport-local": "^1.0.0",
|
||||||
|
"pg": "^8.11.3",
|
||||||
|
"pg-boss": "^9.0.3",
|
||||||
|
"react": "^18.2.0",
|
||||||
|
"rimraf": "^3.0.2",
|
||||||
|
"sharp": "^0.32.1",
|
||||||
|
"twenty-emails": "workspace:*",
|
||||||
|
"type-fest": "^4.1.0",
|
||||||
|
"typeorm": "^0.3.17"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/lodash.isempty": "^4.4.7",
|
||||||
|
"@types/lodash.isobject": "^3.0.7",
|
||||||
|
"@types/lodash.snakecase": "^4.1.7",
|
||||||
|
"@types/lodash.upperfirst": "^4.3.7",
|
||||||
|
"@types/react": "^18.2.39",
|
||||||
|
"jest": "29.7.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.17.1",
|
"node": "^18.17.1",
|
||||||
|
@ -14,9 +14,7 @@ import { IDField } from '@ptc-org/nestjs-query-graphql';
|
|||||||
import { Workspace } from 'src/core/workspace/workspace.entity';
|
import { Workspace } from 'src/core/workspace/workspace.entity';
|
||||||
|
|
||||||
export enum FeatureFlagKeys {
|
export enum FeatureFlagKeys {
|
||||||
IsRelationFieldTypeEnabled = 'IS_RELATION_FIELD_TYPE_ENABLED',
|
|
||||||
IsMessagingEnabled = 'IS_MESSAGING_ENABLED',
|
IsMessagingEnabled = 'IS_MESSAGING_ENABLED',
|
||||||
IsSelectFieldTypeEnabled = 'IS_SELECT_FIELD_TYPE_ENABLED',
|
|
||||||
IsRatingFieldTypeEnabled = 'IS_RATING_FIELD_TYPE_ENABLED',
|
IsRatingFieldTypeEnabled = 'IS_RATING_FIELD_TYPE_ENABLED',
|
||||||
IsWorkspaceCleanable = 'IS_WORKSPACE_CLEANABLE',
|
IsWorkspaceCleanable = 'IS_WORKSPACE_CLEANABLE',
|
||||||
}
|
}
|
||||||
|
@ -15,26 +15,11 @@ export const seedFeatureFlags = async (
|
|||||||
.into(`${schemaName}.${tableName}`, ['key', 'workspaceId', 'value'])
|
.into(`${schemaName}.${tableName}`, ['key', 'workspaceId', 'value'])
|
||||||
.orIgnore()
|
.orIgnore()
|
||||||
.values([
|
.values([
|
||||||
{
|
|
||||||
key: FeatureFlagKeys.IsRelationFieldTypeEnabled,
|
|
||||||
workspaceId: workspaceId,
|
|
||||||
value: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: FeatureFlagKeys.IsSelectFieldTypeEnabled,
|
|
||||||
workspaceId: workspaceId,
|
|
||||||
value: true,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
key: FeatureFlagKeys.IsRatingFieldTypeEnabled,
|
key: FeatureFlagKeys.IsRatingFieldTypeEnabled,
|
||||||
workspaceId: workspaceId,
|
workspaceId: workspaceId,
|
||||||
value: false,
|
value: false,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
key: 'IS_RELATION_FIELD_CARD_ENABLED',
|
|
||||||
workspaceId: workspaceId,
|
|
||||||
value: false,
|
|
||||||
},
|
|
||||||
])
|
])
|
||||||
.execute();
|
.execute();
|
||||||
};
|
};
|
||||||
|
@ -15,21 +15,11 @@ export const seedFeatureFlags = async (
|
|||||||
.into(`${schemaName}.${tableName}`, ['key', 'workspaceId', 'value'])
|
.into(`${schemaName}.${tableName}`, ['key', 'workspaceId', 'value'])
|
||||||
.orIgnore()
|
.orIgnore()
|
||||||
.values([
|
.values([
|
||||||
{
|
|
||||||
key: FeatureFlagKeys.IsRelationFieldTypeEnabled,
|
|
||||||
workspaceId: workspaceId,
|
|
||||||
value: true,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
key: FeatureFlagKeys.IsMessagingEnabled,
|
key: FeatureFlagKeys.IsMessagingEnabled,
|
||||||
workspaceId: workspaceId,
|
workspaceId: workspaceId,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
key: FeatureFlagKeys.IsSelectFieldTypeEnabled,
|
|
||||||
workspaceId: workspaceId,
|
|
||||||
value: true,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
key: FeatureFlagKeys.IsRatingFieldTypeEnabled,
|
key: FeatureFlagKeys.IsRatingFieldTypeEnabled,
|
||||||
workspaceId: workspaceId,
|
workspaceId: workspaceId,
|
||||||
@ -40,11 +30,6 @@ export const seedFeatureFlags = async (
|
|||||||
workspaceId: workspaceId,
|
workspaceId: workspaceId,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
key: 'IS_RELATION_FIELD_CARD_ENABLED',
|
|
||||||
workspaceId: workspaceId,
|
|
||||||
value: true,
|
|
||||||
},
|
|
||||||
])
|
])
|
||||||
.execute();
|
.execute();
|
||||||
};
|
};
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
import { PrismaClient, Prisma } from '@prisma/client';
|
|
||||||
|
|
||||||
import { camelCase } from 'src/utils/camel-case';
|
|
||||||
|
|
||||||
const prisma = new PrismaClient();
|
|
||||||
|
|
||||||
export default async () => {
|
|
||||||
const models = Prisma.dmmf.datamodel.models;
|
|
||||||
const modelNames = models.map((model) => model.name);
|
|
||||||
const entities = modelNames.map((modelName) => camelCase(modelName));
|
|
||||||
|
|
||||||
await prisma.$transaction(
|
|
||||||
entities.map((entity) => {
|
|
||||||
return prisma[entity].deleteMany();
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
};
|
|
@ -1,5 +1,3 @@
|
|||||||
import resetDb from './reset-db';
|
|
||||||
|
|
||||||
global.beforeEach(() => {
|
global.beforeEach(() => {
|
||||||
// resetDb();
|
// resetDb();
|
||||||
});
|
});
|
||||||
|
64
yarn.lock
64
yarn.lock
@ -42383,11 +42383,75 @@ __metadata:
|
|||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "twenty-server@workspace:packages/twenty-server"
|
resolution: "twenty-server@workspace:packages/twenty-server"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
"@aws-sdk/client-s3": "npm:^3.363.0"
|
||||||
|
"@aws-sdk/credential-providers": "npm:^3.363.0"
|
||||||
"@graphql-yoga/nestjs": "patch:@graphql-yoga/nestjs@2.1.0#./patches/@graphql-yoga+nestjs+2.1.0.patch"
|
"@graphql-yoga/nestjs": "patch:@graphql-yoga/nestjs@2.1.0#./patches/@graphql-yoga+nestjs+2.1.0.patch"
|
||||||
|
"@nestjs/apollo": "npm:^11.0.5"
|
||||||
|
"@nestjs/axios": "npm:^3.0.1"
|
||||||
|
"@nestjs/cli": "npm:^9.0.0"
|
||||||
|
"@nestjs/common": "npm:^9.0.0"
|
||||||
|
"@nestjs/config": "npm:^2.3.2"
|
||||||
|
"@nestjs/core": "npm:^9.0.0"
|
||||||
"@nestjs/graphql": "patch:@nestjs/graphql@12.0.8#./patches/@nestjs+graphql+12.0.8.patch"
|
"@nestjs/graphql": "patch:@nestjs/graphql@12.0.8#./patches/@nestjs+graphql+12.0.8.patch"
|
||||||
|
"@nestjs/jwt": "npm:^10.0.3"
|
||||||
|
"@nestjs/passport": "npm:^9.0.3"
|
||||||
|
"@nestjs/platform-express": "npm:^9.0.0"
|
||||||
|
"@nestjs/schematics": "npm:^9.0.0"
|
||||||
|
"@nestjs/serve-static": "npm:^3.0.0"
|
||||||
|
"@nestjs/terminus": "npm:^9.2.2"
|
||||||
|
"@nestjs/testing": "npm:^9.0.0"
|
||||||
|
"@nestjs/typeorm": "npm:^10.0.0"
|
||||||
|
"@ptc-org/nestjs-query-core": "npm:^4.2.0"
|
||||||
"@ptc-org/nestjs-query-graphql": "patch:@ptc-org/nestjs-query-graphql@4.2.0#./patches/@ptc-org+nestjs-query-graphql+4.2.0.patch"
|
"@ptc-org/nestjs-query-graphql": "patch:@ptc-org/nestjs-query-graphql@4.2.0#./patches/@ptc-org+nestjs-query-graphql+4.2.0.patch"
|
||||||
|
"@ptc-org/nestjs-query-typeorm": "npm:4.2.1-alpha.2"
|
||||||
|
"@react-email/components": "npm:0.0.12"
|
||||||
|
"@react-email/render": "npm:0.0.10"
|
||||||
|
"@sentry/node": "npm:^7.66.0"
|
||||||
|
"@sentry/profiling-node": "npm:^1.3.4"
|
||||||
|
"@types/lodash.isempty": "npm:^4.4.7"
|
||||||
|
"@types/lodash.isobject": "npm:^3.0.7"
|
||||||
|
"@types/lodash.snakecase": "npm:^4.1.7"
|
||||||
|
"@types/lodash.upperfirst": "npm:^4.3.7"
|
||||||
|
"@types/react": "npm:^18.2.39"
|
||||||
|
axios: "npm:^1.6.2"
|
||||||
|
bcrypt: "npm:^5.1.1"
|
||||||
|
bullmq: "npm:^4.14.0"
|
||||||
|
class-transformer: "npm:^0.5.1"
|
||||||
class-validator: "patch:class-validator@^0.14.0#./patches/class-validator+0.14.0.patch"
|
class-validator: "patch:class-validator@^0.14.0#./patches/class-validator+0.14.0.patch"
|
||||||
|
date-fns: "npm:^2.30.0"
|
||||||
|
file-type: "npm:16.5.4"
|
||||||
|
googleapis: "npm:105"
|
||||||
|
graphql: "npm:^16.8.1"
|
||||||
|
graphql-fields: "npm:^2.0.3"
|
||||||
|
graphql-subscriptions: "npm:2.0.0"
|
||||||
|
graphql-tag: "npm:^2.12.6"
|
||||||
|
graphql-type-json: "npm:^0.3.2"
|
||||||
|
graphql-upload: "npm:^13.0.0"
|
||||||
|
graphql-yoga: "npm:^4.0.4"
|
||||||
|
jest: "npm:29.7.0"
|
||||||
|
lodash.camelcase: "npm:^4.3.0"
|
||||||
|
lodash.isempty: "npm:^4.4.0"
|
||||||
|
lodash.isobject: "npm:^3.0.2"
|
||||||
|
lodash.kebabcase: "npm:^4.1.1"
|
||||||
|
lodash.snakecase: "npm:^4.1.1"
|
||||||
|
lodash.upperfirst: "npm:^4.3.1"
|
||||||
|
mailparser: "npm:^3.6.5"
|
||||||
|
microdiff: "npm:^1.3.2"
|
||||||
|
nest-commander: "npm:^3.12.0"
|
||||||
|
nodemailer: "npm:^6.9.8"
|
||||||
|
openapi-types: "npm:^12.1.3"
|
||||||
|
passport: "npm:^0.6.0"
|
||||||
|
passport-google-oauth20: "npm:^2.0.0"
|
||||||
|
passport-jwt: "npm:^4.0.1"
|
||||||
|
passport-local: "npm:^1.0.0"
|
||||||
|
pg: "npm:^8.11.3"
|
||||||
|
pg-boss: "npm:^9.0.3"
|
||||||
|
react: "npm:^18.2.0"
|
||||||
|
rimraf: "npm:^3.0.2"
|
||||||
|
sharp: "npm:^0.32.1"
|
||||||
twenty-emails: "workspace:*"
|
twenty-emails: "workspace:*"
|
||||||
|
type-fest: "npm:^4.1.0"
|
||||||
|
typeorm: "npm:^0.3.17"
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user