Skip to content

Feat/2gis feed

Feat/2gis feed #359

GitHub Actions / TypeCheck failed Nov 26, 2024 in 0s

Errors 6

Found 6 errors

Annotations

Check failure on line 11 in prices/core/infrastructure-module/src/module/prices-infrastructure.module.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find name 'providers'.

Cannot find name 'providers'.
Raw output
   9 |       global: true,
  10 |       module: TelegramBotInfrastructureModule,
> 11 |       providers: [...providers],
     |                      ^
  12 |       exports: [...providers],
  13 |       imports: [
  14 |         // adapters

Check failure on line 12 in prices/core/infrastructure-module/src/module/prices-infrastructure.module.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find name 'providers'.

Cannot find name 'providers'.
Raw output
  10 |       module: TelegramBotInfrastructureModule,
  11 |       providers: [...providers],
> 12 |       exports: [...providers],
     |                    ^
  13 |       imports: [
  14 |         // adapters
  15 |       ],

Check failure on line 5 in prices/core/infrastructure-module/src/module/prices-infrastructure.providers.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find name 'PricesPort'.

Cannot find name 'PricesPort'.
Raw output
  3 | export const pricesInfrastructureProviders: Array<Provider> = [
  4 |   {
> 5 |     provide: PricesPort,
    |              ^
  6 |     useClass: PricesPortImpl,
  7 |   },
  8 | ]

Check failure on line 6 in prices/core/infrastructure-module/src/module/prices-infrastructure.providers.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find name 'PricesPortImpl'.

Cannot find name 'PricesPortImpl'.
Raw output
  4 |   {
  5 |     provide: PricesPort,
> 6 |     useClass: PricesPortImpl,
    |               ^
  7 |   },
  8 | ]
  9 |

Check failure on line 6 in prices/entrypoints/service-entrypoint/src/entrypoint/entrypoint.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module '../bootstrap/index.js' or its corresponding type declarations.

Cannot find module '../bootstrap/index.js' or its corresponding type declarations.
Raw output
  4 | import { checkEnvsHelper }      from '@globals/data'
  5 |
> 6 | import { getBootstrap }         from '../bootstrap/index.js'
    |                                      ^
  7 | import { getCronTask }          from '../cron/cron.js'
  8 |
  9 | checkEnvsHelper({ applicationName: 'prices', envsList: PRICES_REQUIRED_ENVS })

Check failure on line 9 in prices/entrypoints/service-entrypoint/src/prices-service-entrypoint.bootstrap.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module './bot-service-entrypoint.module.js' or its corresponding type declarations.

Cannot find module './bot-service-entrypoint.module.js' or its corresponding type declarations.
Raw output
   7 | import { checkEnvsHelper }             from '@globals/data'
   8 |
>  9 | import { BotServiceEntrypointModule }  from './bot-service-entrypoint.module.js'
     |                                             ^
  10 |
  11 | // eslint-disable-next-line @next/next/no-assign-module-variable
  12 | declare const module: {