Merge pull request #9069 from backstage/rugvip/tip
tech-insights-backend: fixed type assignment
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
# @backstage/plugin-tech-insights-backend
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ad0a7eb088: Fixed invalid access that caused an immediate crash with a `TypeError` when loading the package.
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-tech-insights-backend",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
|
||||
@@ -28,7 +28,8 @@ import { DateTime } from 'luxon';
|
||||
import { Logger } from 'winston';
|
||||
import { parseEntityName, stringifyEntityRef } from '@backstage/catalog-model';
|
||||
import { isMaxItems, isTtl } from '../fact/factRetrievers/utils';
|
||||
import Transaction = Knex.Transaction;
|
||||
|
||||
type Transaction = Knex.Transaction;
|
||||
|
||||
export type RawDbFactRow = {
|
||||
id: string;
|
||||
|
||||
Reference in New Issue
Block a user