Skip to content

Commit

Permalink
generate api-reports for lightspeed-common
Browse files Browse the repository at this point in the history
Signed-off-by: Karthik <[email protected]>
  • Loading branch information
karthikjeeyar committed Nov 22, 2024
1 parent fbb89a2 commit 2159a29
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import type { Config } from '@backstage/config';
import express from 'express';
import type { HttpAuthService } from '@backstage/backend-plugin-api';
import type { LoggerService } from '@backstage/backend-plugin-api';
import type { PermissionsService } from '@backstage/backend-plugin-api';
import type { UserInfoService } from '@backstage/backend-plugin-api';

// @public
Expand All @@ -24,6 +25,7 @@ export type RouterOptions = {
config: Config;
httpAuth: HttpAuthService;
userInfo: UserInfoService;
permissions: PermissionsService;
};

// (No @packageDocumentation comment for this package)
Expand Down
7 changes: 4 additions & 3 deletions workspaces/lightspeed/plugins/lightspeed-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"private": true,
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "common-library",
"supported-versions": "1.32.5",
"pluginId": "lightspeed",
"pluginPackage": "@red-hat-developer-hub/backstage-plugin-lightspeed-common",
"pluginPackages": [
"@red-hat-developer-hub/backstage-plugin-lightspeed",
Expand Down Expand Up @@ -62,6 +62,7 @@
"maintainers": [
"@karthikjeeyar",
"@rohitkrai03",
"@yangcao77"
"@yangcao77",
"@Eswaraiahsapram"
]
}
21 changes: 21 additions & 0 deletions workspaces/lightspeed/plugins/lightspeed-common/report.api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## API Report File for "@red-hat-developer-hub/backstage-plugin-lightspeed-common"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts

import { BasicPermission } from '@backstage/plugin-permission-common';

// @public
export const lightspeedConversationsCreatePermission: BasicPermission;

// @public
export const lightspeedConversationsDeletePermission: BasicPermission;

// @public
export const lightspeedConversationsReadPermission: BasicPermission;

// @public
export const lightspeedPermissions: BasicPermission[];

```

0 comments on commit 2159a29

Please sign in to comment.