Improve snackbar and fix sentry (#7181)
- Improve snackbar to enable displaying multi-line message (so far we only displayed the first few words which was very frustrating) - Followup on previous issue to enable tim@apple.dev on the demo workspace (prefilled automatically) - Fix sentry tracing which had been broken when migrating from v7 to v8
This commit is contained in:
@ -1,7 +1,7 @@
|
|||||||
import { ComponentPropsWithoutRef, ReactNode, useMemo } from 'react';
|
|
||||||
import { useTheme } from '@emotion/react';
|
import { useTheme } from '@emotion/react';
|
||||||
import styled from '@emotion/styled';
|
import styled from '@emotion/styled';
|
||||||
import { isUndefined } from '@sniptt/guards';
|
import { isUndefined } from '@sniptt/guards';
|
||||||
|
import { ComponentPropsWithoutRef, ReactNode, useMemo } from 'react';
|
||||||
import {
|
import {
|
||||||
IconAlertTriangle,
|
IconAlertTriangle,
|
||||||
IconInfoCircle,
|
IconInfoCircle,
|
||||||
@ -46,7 +46,6 @@ const StyledContainer = styled.div`
|
|||||||
box-shadow: ${({ theme }) => theme.boxShadow.strong};
|
box-shadow: ${({ theme }) => theme.boxShadow.strong};
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
height: 61px;
|
|
||||||
padding: ${({ theme }) => theme.spacing(2)};
|
padding: ${({ theme }) => theme.spacing(2)};
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 296px;
|
width: 296px;
|
||||||
@ -90,7 +89,6 @@ const StyledDescription = styled.div`
|
|||||||
padding-left: ${({ theme }) => theme.spacing(6)};
|
padding-left: ${({ theme }) => theme.spacing(6)};
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
|
||||||
width: 200px;
|
width: 200px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,6 @@
|
|||||||
|
import { useTheme } from '@emotion/react';
|
||||||
|
import styled from '@emotion/styled';
|
||||||
|
import { zodResolver } from '@hookform/resolvers/zod';
|
||||||
import { useCallback } from 'react';
|
import { useCallback } from 'react';
|
||||||
import {
|
import {
|
||||||
Controller,
|
Controller,
|
||||||
@ -5,9 +8,6 @@ import {
|
|||||||
useFieldArray,
|
useFieldArray,
|
||||||
useForm,
|
useForm,
|
||||||
} from 'react-hook-form';
|
} from 'react-hook-form';
|
||||||
import { useTheme } from '@emotion/react';
|
|
||||||
import styled from '@emotion/styled';
|
|
||||||
import { zodResolver } from '@hookform/resolvers/zod';
|
|
||||||
import { useRecoilValue } from 'recoil';
|
import { useRecoilValue } from 'recoil';
|
||||||
import { Key } from 'ts-key-enum';
|
import { Key } from 'ts-key-enum';
|
||||||
import { IconCopy } from 'twenty-ui';
|
import { IconCopy } from 'twenty-ui';
|
||||||
@ -101,15 +101,15 @@ export const InviteTeam = () => {
|
|||||||
|
|
||||||
const getPlaceholder = (emailIndex: number) => {
|
const getPlaceholder = (emailIndex: number) => {
|
||||||
if (emailIndex === 0) {
|
if (emailIndex === 0) {
|
||||||
return 'tim@apple.dev';
|
return 'tim@apple.com';
|
||||||
}
|
}
|
||||||
if (emailIndex === 1) {
|
if (emailIndex === 1) {
|
||||||
return 'craig@apple.dev';
|
return 'phil@apple.com';
|
||||||
}
|
}
|
||||||
if (emailIndex === 2) {
|
if (emailIndex === 2) {
|
||||||
return 'mike@apple.dev';
|
return 'jony@apple.com';
|
||||||
}
|
}
|
||||||
return 'phil@apple.dev';
|
return 'craig@apple.com';
|
||||||
};
|
};
|
||||||
|
|
||||||
const copyInviteLink = () => {
|
const copyInviteLink = () => {
|
||||||
|
|||||||
@ -25,6 +25,7 @@
|
|||||||
"@nestjs/graphql": "patch:@nestjs/graphql@12.1.1#./patches/@nestjs+graphql+12.1.1.patch",
|
"@nestjs/graphql": "patch:@nestjs/graphql@12.1.1#./patches/@nestjs+graphql+12.1.1.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-graphql": "patch:@ptc-org/nestjs-query-graphql@4.2.0#./patches/@ptc-org+nestjs-query-graphql+4.2.0.patch",
|
||||||
"@revertdotdev/revert-react": "^0.0.21",
|
"@revertdotdev/revert-react": "^0.0.21",
|
||||||
|
"@sentry/nestjs": "^8.30.0",
|
||||||
"cache-manager": "^5.4.0",
|
"cache-manager": "^5.4.0",
|
||||||
"cache-manager-redis-yet": "^4.1.2",
|
"cache-manager-redis-yet": "^4.1.2",
|
||||||
"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",
|
||||||
|
|||||||
@ -12,6 +12,7 @@ import { existsSync } from 'fs';
|
|||||||
import { join } from 'path';
|
import { join } from 'path';
|
||||||
|
|
||||||
import { YogaDriver, YogaDriverConfig } from '@graphql-yoga/nestjs';
|
import { YogaDriver, YogaDriverConfig } from '@graphql-yoga/nestjs';
|
||||||
|
import { SentryModule } from '@sentry/nestjs/setup';
|
||||||
|
|
||||||
import { CoreGraphQLApiModule } from 'src/engine/api/graphql/core-graphql-api.module';
|
import { CoreGraphQLApiModule } from 'src/engine/api/graphql/core-graphql-api.module';
|
||||||
import { GraphQLConfigModule } from 'src/engine/api/graphql/graphql-config/graphql-config.module';
|
import { GraphQLConfigModule } from 'src/engine/api/graphql/graphql-config/graphql-config.module';
|
||||||
@ -26,8 +27,10 @@ import { WorkspaceCacheStorageModule } from 'src/engine/workspace-cache-storage/
|
|||||||
import { ModulesModule } from 'src/modules/modules.module';
|
import { ModulesModule } from 'src/modules/modules.module';
|
||||||
|
|
||||||
import { CoreEngineModule } from './engine/core-modules/core-engine.module';
|
import { CoreEngineModule } from './engine/core-modules/core-engine.module';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
|
SentryModule.forRoot(),
|
||||||
ConfigModule.forRoot({
|
ConfigModule.forRoot({
|
||||||
isGlobal: true,
|
isGlobal: true,
|
||||||
envFilePath: process.env.NODE_ENV === 'test' ? '.env.test' : '.env',
|
envFilePath: process.env.NODE_ENV === 'test' ? '.env.test' : '.env',
|
||||||
|
|||||||
@ -6,15 +6,17 @@ export function SentryCronMonitor(monitorSlug: string, schedule: string) {
|
|||||||
propertyKey: string,
|
propertyKey: string,
|
||||||
descriptor: PropertyDescriptor,
|
descriptor: PropertyDescriptor,
|
||||||
) {
|
) {
|
||||||
if (!Sentry.isInitialized()) {
|
|
||||||
return descriptor;
|
|
||||||
}
|
|
||||||
|
|
||||||
const originalMethod = descriptor.value;
|
const originalMethod = descriptor.value;
|
||||||
|
|
||||||
descriptor.value = async function (...args: any[]) {
|
descriptor.value = async function (...args: any[]) {
|
||||||
|
if (!Sentry.isInitialized()) {
|
||||||
|
return await originalMethod.apply(this, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
let checkInId: string | undefined;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Sentry.captureCheckIn(
|
checkInId = Sentry.captureCheckIn(
|
||||||
{
|
{
|
||||||
monitorSlug,
|
monitorSlug,
|
||||||
status: 'in_progress',
|
status: 'in_progress',
|
||||||
@ -25,13 +27,14 @@ export function SentryCronMonitor(monitorSlug: string, schedule: string) {
|
|||||||
value: schedule,
|
value: schedule,
|
||||||
},
|
},
|
||||||
checkinMargin: 1,
|
checkinMargin: 1,
|
||||||
maxRuntime: 1,
|
maxRuntime: 5,
|
||||||
timezone: 'UTC',
|
timezone: 'UTC',
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
const result = await originalMethod.apply(this, args);
|
const result = await originalMethod.apply(this, args);
|
||||||
|
|
||||||
Sentry.captureCheckIn({
|
Sentry.captureCheckIn({
|
||||||
|
checkInId,
|
||||||
monitorSlug,
|
monitorSlug,
|
||||||
status: 'ok',
|
status: 'ok',
|
||||||
});
|
});
|
||||||
@ -39,6 +42,7 @@ export function SentryCronMonitor(monitorSlug: string, schedule: string) {
|
|||||||
return result;
|
return result;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
Sentry.captureCheckIn({
|
Sentry.captureCheckIn({
|
||||||
|
checkInId,
|
||||||
monitorSlug,
|
monitorSlug,
|
||||||
status: 'error',
|
status: 'error',
|
||||||
});
|
});
|
||||||
|
|||||||
@ -1,42 +1,13 @@
|
|||||||
import * as Sentry from '@sentry/node';
|
import * as Sentry from '@sentry/node';
|
||||||
import { nodeProfilingIntegration } from '@sentry/profiling-node';
|
|
||||||
|
|
||||||
import { ExceptionHandlerOptions } from 'src/engine/core-modules/exception-handler/interfaces/exception-handler-options.interface';
|
import { ExceptionHandlerOptions } from 'src/engine/core-modules/exception-handler/interfaces/exception-handler-options.interface';
|
||||||
import { ExceptionHandlerUser } from 'src/engine/core-modules/exception-handler/interfaces/exception-handler-user.interface';
|
import { ExceptionHandlerUser } from 'src/engine/core-modules/exception-handler/interfaces/exception-handler-user.interface';
|
||||||
|
|
||||||
import {
|
import { ExceptionHandlerDriverInterface } from 'src/engine/core-modules/exception-handler/interfaces';
|
||||||
ExceptionHandlerDriverInterface,
|
|
||||||
ExceptionHandlerSentryDriverFactoryOptions,
|
|
||||||
} from 'src/engine/core-modules/exception-handler/interfaces';
|
|
||||||
import { WorkspaceCacheKeys } from 'src/engine/workspace-cache-storage/workspace-cache-storage.service';
|
|
||||||
|
|
||||||
export class ExceptionHandlerSentryDriver
|
export class ExceptionHandlerSentryDriver
|
||||||
implements ExceptionHandlerDriverInterface
|
implements ExceptionHandlerDriverInterface
|
||||||
{
|
{
|
||||||
constructor(options: ExceptionHandlerSentryDriverFactoryOptions['options']) {
|
|
||||||
Sentry.init({
|
|
||||||
environment: options.environment,
|
|
||||||
release: options.release,
|
|
||||||
dsn: options.dsn,
|
|
||||||
integrations: [
|
|
||||||
// TODO: Redis integration doesn't seem to work - investigate why
|
|
||||||
Sentry.redisIntegration({
|
|
||||||
cachePrefixes: Object.values(WorkspaceCacheKeys).map(
|
|
||||||
(key) => `engine:${key}:`,
|
|
||||||
),
|
|
||||||
}),
|
|
||||||
Sentry.httpIntegration(),
|
|
||||||
Sentry.expressIntegration(),
|
|
||||||
Sentry.graphqlIntegration(),
|
|
||||||
Sentry.postgresIntegration(),
|
|
||||||
nodeProfilingIntegration(),
|
|
||||||
],
|
|
||||||
tracesSampleRate: 0.1,
|
|
||||||
profilesSampleRate: 0.3,
|
|
||||||
debug: options.debug,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
captureExceptions(
|
captureExceptions(
|
||||||
exceptions: ReadonlyArray<any>,
|
exceptions: ReadonlyArray<any>,
|
||||||
options?: ExceptionHandlerOptions,
|
options?: ExceptionHandlerOptions,
|
||||||
|
|||||||
@ -1,15 +1,15 @@
|
|||||||
import { DynamicModule, Global, Module } from '@nestjs/common';
|
import { DynamicModule, Global, Module } from '@nestjs/common';
|
||||||
|
|
||||||
import { ExceptionHandlerService } from 'src/engine/core-modules/exception-handler/exception-handler.service';
|
|
||||||
import { ExceptionHandlerDriver } from 'src/engine/core-modules/exception-handler/interfaces';
|
|
||||||
import { EXCEPTION_HANDLER_DRIVER } from 'src/engine/core-modules/exception-handler/exception-handler.constants';
|
|
||||||
import {
|
|
||||||
ConfigurableModuleClass,
|
|
||||||
OPTIONS_TYPE,
|
|
||||||
ASYNC_OPTIONS_TYPE,
|
|
||||||
} from 'src/engine/core-modules/exception-handler/exception-handler.module-definition';
|
|
||||||
import { ExceptionHandlerConsoleDriver } from 'src/engine/core-modules/exception-handler/drivers/console.driver';
|
import { ExceptionHandlerConsoleDriver } from 'src/engine/core-modules/exception-handler/drivers/console.driver';
|
||||||
import { ExceptionHandlerSentryDriver } from 'src/engine/core-modules/exception-handler/drivers/sentry.driver';
|
import { ExceptionHandlerSentryDriver } from 'src/engine/core-modules/exception-handler/drivers/sentry.driver';
|
||||||
|
import { EXCEPTION_HANDLER_DRIVER } from 'src/engine/core-modules/exception-handler/exception-handler.constants';
|
||||||
|
import {
|
||||||
|
ASYNC_OPTIONS_TYPE,
|
||||||
|
ConfigurableModuleClass,
|
||||||
|
OPTIONS_TYPE,
|
||||||
|
} from 'src/engine/core-modules/exception-handler/exception-handler.module-definition';
|
||||||
|
import { ExceptionHandlerService } from 'src/engine/core-modules/exception-handler/exception-handler.service';
|
||||||
|
import { ExceptionHandlerDriver } from 'src/engine/core-modules/exception-handler/interfaces';
|
||||||
|
|
||||||
@Global()
|
@Global()
|
||||||
@Module({
|
@Module({
|
||||||
@ -23,7 +23,7 @@ export class ExceptionHandlerModule extends ConfigurableModuleClass {
|
|||||||
useValue:
|
useValue:
|
||||||
options.type === ExceptionHandlerDriver.Console
|
options.type === ExceptionHandlerDriver.Console
|
||||||
? new ExceptionHandlerConsoleDriver()
|
? new ExceptionHandlerConsoleDriver()
|
||||||
: new ExceptionHandlerSentryDriver(options.options),
|
: new ExceptionHandlerSentryDriver(),
|
||||||
};
|
};
|
||||||
const dynamicModule = super.forRoot(options);
|
const dynamicModule = super.forRoot(options);
|
||||||
|
|
||||||
@ -45,7 +45,7 @@ export class ExceptionHandlerModule extends ConfigurableModuleClass {
|
|||||||
|
|
||||||
return config.type === ExceptionHandlerDriver.Console
|
return config.type === ExceptionHandlerDriver.Console
|
||||||
? new ExceptionHandlerConsoleDriver()
|
? new ExceptionHandlerConsoleDriver()
|
||||||
: new ExceptionHandlerSentryDriver(config.options);
|
: new ExceptionHandlerSentryDriver();
|
||||||
},
|
},
|
||||||
inject: options.inject || [],
|
inject: options.inject || [],
|
||||||
};
|
};
|
||||||
|
|||||||
@ -31,6 +31,7 @@ export const workspaceMemberPrefillData = async (
|
|||||||
nameLastName: 'A',
|
nameLastName: 'A',
|
||||||
locale: 'en',
|
locale: 'en',
|
||||||
colorScheme: 'Light',
|
colorScheme: 'Light',
|
||||||
|
userEmail: 'noah@demo.dev',
|
||||||
userId: DEMO_SEED_USER_IDS.NOAH,
|
userId: DEMO_SEED_USER_IDS.NOAH,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -39,6 +40,7 @@ export const workspaceMemberPrefillData = async (
|
|||||||
nameLastName: 'I',
|
nameLastName: 'I',
|
||||||
locale: 'en',
|
locale: 'en',
|
||||||
colorScheme: 'Light',
|
colorScheme: 'Light',
|
||||||
|
userEmail: 'hugo@demo.dev',
|
||||||
userId: DEMO_SEED_USER_IDS.HUGO,
|
userId: DEMO_SEED_USER_IDS.HUGO,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -47,6 +49,7 @@ export const workspaceMemberPrefillData = async (
|
|||||||
nameLastName: 'Apple',
|
nameLastName: 'Apple',
|
||||||
locale: 'en',
|
locale: 'en',
|
||||||
colorScheme: 'Light',
|
colorScheme: 'Light',
|
||||||
|
userEmail: 'tim@apple.dev',
|
||||||
userId: DEMO_SEED_USER_IDS.TIM,
|
userId: DEMO_SEED_USER_IDS.TIM,
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
|
|||||||
29
packages/twenty-server/src/instrument.ts
Normal file
29
packages/twenty-server/src/instrument.ts
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
import * as Sentry from '@sentry/nestjs';
|
||||||
|
import { nodeProfilingIntegration } from '@sentry/profiling-node';
|
||||||
|
|
||||||
|
import { ExceptionHandlerDriver } from 'src/engine/core-modules/exception-handler/interfaces';
|
||||||
|
import { WorkspaceCacheKeys } from 'src/engine/workspace-cache-storage/workspace-cache-storage.service';
|
||||||
|
|
||||||
|
if (process.env.EXCEPTION_HANDLER_DRIVER === ExceptionHandlerDriver.Sentry) {
|
||||||
|
Sentry.init({
|
||||||
|
environment: process.env.SENTRY_ENVIRONMENT,
|
||||||
|
release: process.env.SENTRY_RELEASE,
|
||||||
|
dsn: process.env.SENTRY_DSN,
|
||||||
|
integrations: [
|
||||||
|
// TODO: Redis integration doesn't seem to work - investigate why
|
||||||
|
Sentry.redisIntegration({
|
||||||
|
cachePrefixes: Object.values(WorkspaceCacheKeys).map(
|
||||||
|
(key) => `engine:${key}:`,
|
||||||
|
),
|
||||||
|
}),
|
||||||
|
Sentry.httpIntegration(),
|
||||||
|
Sentry.expressIntegration(),
|
||||||
|
Sentry.graphqlIntegration(),
|
||||||
|
Sentry.postgresIntegration(),
|
||||||
|
nodeProfilingIntegration(),
|
||||||
|
],
|
||||||
|
tracesSampleRate: 0.1,
|
||||||
|
profilesSampleRate: 0.3,
|
||||||
|
debug: process.env.DEBUG_MODE === 'true',
|
||||||
|
});
|
||||||
|
}
|
||||||
@ -2,7 +2,6 @@ import { ValidationPipe } from '@nestjs/common';
|
|||||||
import { NestFactory } from '@nestjs/core';
|
import { NestFactory } from '@nestjs/core';
|
||||||
import { NestExpressApplication } from '@nestjs/platform-express';
|
import { NestExpressApplication } from '@nestjs/platform-express';
|
||||||
|
|
||||||
import * as Sentry from '@sentry/node';
|
|
||||||
import bytes from 'bytes';
|
import bytes from 'bytes';
|
||||||
import { useContainer } from 'class-validator';
|
import { useContainer } from 'class-validator';
|
||||||
import { graphqlUploadExpress } from 'graphql-upload';
|
import { graphqlUploadExpress } from 'graphql-upload';
|
||||||
@ -11,6 +10,7 @@ import { LoggerService } from 'src/engine/core-modules/logger/logger.service';
|
|||||||
import { ApplyCorsToExceptions } from 'src/utils/apply-cors-to-exceptions';
|
import { ApplyCorsToExceptions } from 'src/utils/apply-cors-to-exceptions';
|
||||||
|
|
||||||
import { AppModule } from './app.module';
|
import { AppModule } from './app.module';
|
||||||
|
import './instrument';
|
||||||
|
|
||||||
import { settings } from './engine/constants/settings';
|
import { settings } from './engine/constants/settings';
|
||||||
import { generateFrontConfig } from './utils/generate-front-config';
|
import { generateFrontConfig } from './utils/generate-front-config';
|
||||||
@ -34,10 +34,6 @@ const bootstrap = async () => {
|
|||||||
// Use our logger
|
// Use our logger
|
||||||
app.useLogger(logger);
|
app.useLogger(logger);
|
||||||
|
|
||||||
if (Sentry.isInitialized()) {
|
|
||||||
Sentry.setupExpressErrorHandler(app);
|
|
||||||
}
|
|
||||||
|
|
||||||
app.useGlobalFilters(new ApplyCorsToExceptions());
|
app.useGlobalFilters(new ApplyCorsToExceptions());
|
||||||
|
|
||||||
// Apply validation pipes globally
|
// Apply validation pipes globally
|
||||||
|
|||||||
@ -4,6 +4,7 @@ import { ExceptionHandlerService } from 'src/engine/core-modules/exception-handl
|
|||||||
import { LoggerService } from 'src/engine/core-modules/logger/logger.service';
|
import { LoggerService } from 'src/engine/core-modules/logger/logger.service';
|
||||||
import { shouldFilterException } from 'src/engine/utils/global-exception-handler.util';
|
import { shouldFilterException } from 'src/engine/utils/global-exception-handler.util';
|
||||||
import { QueueWorkerModule } from 'src/queue-worker/queue-worker.module';
|
import { QueueWorkerModule } from 'src/queue-worker/queue-worker.module';
|
||||||
|
import 'src/instrument';
|
||||||
|
|
||||||
async function bootstrap() {
|
async function bootstrap() {
|
||||||
let exceptionHandlerService: ExceptionHandlerService | undefined;
|
let exceptionHandlerService: ExceptionHandlerService | undefined;
|
||||||
|
|||||||
@ -49,7 +49,7 @@ Internet connection (Offline mode isn't yet supported).
|
|||||||
If you wish to try Twenty before creating your own account, go to demo.twenty.com and login with the following credentials:
|
If you wish to try Twenty before creating your own account, go to demo.twenty.com and login with the following credentials:
|
||||||
|
|
||||||
|
|
||||||
`email: noah@demo.dev`\
|
`email: tim@apple.dev`\
|
||||||
`password: Applecar2025`
|
`password: Applecar2025`
|
||||||
|
|
||||||
## Vision
|
## Vision
|
||||||
|
|||||||
16
yarn.lock
16
yarn.lock
@ -12196,6 +12196,21 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@sentry/nestjs@npm:^8.30.0":
|
||||||
|
version: 8.30.0
|
||||||
|
resolution: "@sentry/nestjs@npm:8.30.0"
|
||||||
|
dependencies:
|
||||||
|
"@sentry/core": "npm:8.30.0"
|
||||||
|
"@sentry/node": "npm:8.30.0"
|
||||||
|
"@sentry/types": "npm:8.30.0"
|
||||||
|
"@sentry/utils": "npm:8.30.0"
|
||||||
|
peerDependencies:
|
||||||
|
"@nestjs/common": ^8.0.0 || ^9.0.0 || ^10.0.0
|
||||||
|
"@nestjs/core": ^8.0.0 || ^9.0.0 || ^10.0.0
|
||||||
|
checksum: 10c0/f0412787f5fac68743ed6e4f4b58fd06a198d3f0b5777dd072784d9c943fbb3725ee82b00838a7f274f4eb51d7776f5a72f80f8cba253f5c30a7649a292f20c0
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@sentry/node@npm:8.30.0, @sentry/node@npm:^8":
|
"@sentry/node@npm:8.30.0, @sentry/node@npm:^8":
|
||||||
version: 8.30.0
|
version: 8.30.0
|
||||||
resolution: "@sentry/node@npm:8.30.0"
|
resolution: "@sentry/node@npm:8.30.0"
|
||||||
@ -47464,6 +47479,7 @@ __metadata:
|
|||||||
"@nx/js": "npm:18.3.3"
|
"@nx/js": "npm:18.3.3"
|
||||||
"@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"
|
||||||
"@revertdotdev/revert-react": "npm:^0.0.21"
|
"@revertdotdev/revert-react": "npm:^0.0.21"
|
||||||
|
"@sentry/nestjs": "npm:^8.30.0"
|
||||||
"@types/lodash.differencewith": "npm:^4.5.9"
|
"@types/lodash.differencewith": "npm:^4.5.9"
|
||||||
"@types/lodash.isempty": "npm:^4.4.7"
|
"@types/lodash.isempty": "npm:^4.4.7"
|
||||||
"@types/lodash.isequal": "npm:^4.5.8"
|
"@types/lodash.isequal": "npm:^4.5.8"
|
||||||
|
|||||||
Reference in New Issue
Block a user