Skip to content

Commit

Permalink
Update package imports to use '@postman-solutions' namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
aphanor-postman committed Apr 27, 2024
1 parent cf32397 commit 8d4309d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ To get a Postman API Key, follow the instructions [here](https://learning.postma

``` ts
// ... other imports here
import { PostmanCard } from '@internal/backstage-plugin-postman';
import { PostmanCard } from '@postman-solutions/backstage-plugin-postman';
// ... other components
const apiPage = (
<EntityLayout>
Expand Down Expand Up @@ -132,7 +132,7 @@ Additionally, you would need to insert the following lines into your `packages/b
``` ts
...
// new code after other imports
import { PostmanEntityProvider } from '@internal/backstage-plugin-postman-backend';
import { PostmanEntityProvider } from '@postman-solutions/backstage-plugin-postman-backend';
...
...
Expand Down Expand Up @@ -360,7 +360,7 @@ If you do not like to apply caching / get quicker updates when new entities get
```ts
import { Router } from 'express';
import { PluginEnvironment } from '../types';
import { createRouter } from '@internal/backstage-plugin-postman-backend';
import { createRouter } from '@postman-solutions/backstage-plugin-postman-backend';
export default async function createPlugin({
logger,
Expand Down
2 changes: 1 addition & 1 deletion packages/postman-backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ If you do not like to apply caching / get quicker updates when new entities get
```ts
import { Router } from 'express';
import { PluginEnvironment } from '../types';
import { createRouter } from '@internal/backstage-plugin-postman-backend';
import { createRouter } from '@postman-solutions/backstage-plugin-postman-backend';
export default async function createPlugin({
logger,
Expand Down
4 changes: 2 additions & 2 deletions packages/postman/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Refer to the installation steps for the backend plugin [here](https://github.com

``` ts
// ... other imports here
import { PostmanCard } from '@internal/backstage-plugin-postman';
import { PostmanCard } from '@postman-solutions/backstage-plugin-postman';
// ... other components
const apiPage = (
<EntityLayout>
Expand Down Expand Up @@ -59,7 +59,7 @@ Additionally, you would need to insert the following lines into your `packages/b
``` ts
...
// new code after other imports
import { PostmanEntityProvider } from '@internal/backstage-plugin-postman-backend';
import { PostmanEntityProvider } from '@postman-solutions/backstage-plugin-postman-backend';
...
...
Expand Down

0 comments on commit 8d4309d

Please sign in to comment.