Typos CLI - initial config and changes

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Fixed test typos

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Fixed docs typos

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Fixed code comment typos

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Fixed remaining typos

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Added CI and Config

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Fixed typo, lol

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Fixes and update API reports

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Updated based on feedback

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Updated test

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Minor corrections

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Removed changesets

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Refactor to make changes non-breaking

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Clean up of new typos

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Use typoed over typo'd

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Added typoed

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Updated API Reports

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Feedback improvement

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Refinements

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Simplify based on feedback

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

Reverted to handle both keys

Signed-off-by: Andre Wanlin <awanlin@spotify.com>
This commit is contained in:
Andre Wanlin
2026-03-02 09:26:47 -06:00
parent f0f6823a66
commit a07e6a31a4
29 changed files with 186 additions and 55 deletions
@@ -5,7 +5,7 @@
```ts
import { AwsCredentialsManager } from '@backstage/integration-aws-node';
import { AwsS3Integration } from '@backstage/integration';
import { AzureBlobStorageIntergation } from '@backstage/integration';
import { AzureBlobStorageIntegration } from '@backstage/integration';
import { AzureCredentialsManager } from '@backstage/integration';
import { AzureDevOpsCredentialsProvider } from '@backstage/integration';
import { AzureIntegration } from '@backstage/integration';
@@ -67,7 +67,7 @@ export class AwsS3UrlReader implements UrlReaderService {
export class AzureBlobStorageUrlReader implements UrlReaderService {
constructor(
credsManager: AzureCredentialsManager,
integration: AzureBlobStorageIntergation,
integration: AzureBlobStorageIntegration,
deps: {
treeResponseFactory: ReadTreeResponseFactory;
},
@@ -26,7 +26,7 @@ import { Readable } from 'node:stream';
import { relative } from 'node:path/posix';
import { ReadUrlResponseFactory } from './ReadUrlResponseFactory';
import {
AzureBlobStorageIntergation,
AzureBlobStorageIntegration,
AzureCredentialsManager,
DefaultAzureCredentialsManager,
ScmIntegrations,
@@ -88,14 +88,14 @@ export class AzureBlobStorageUrlReader implements UrlReaderService {
// private readonly blobServiceClient: BlobServiceClient;
private readonly credsManager: AzureCredentialsManager;
private readonly integration: AzureBlobStorageIntergation;
private readonly integration: AzureBlobStorageIntegration;
private readonly deps: {
treeResponseFactory: ReadTreeResponseFactory;
};
constructor(
credsManager: AzureCredentialsManager,
integration: AzureBlobStorageIntergation,
integration: AzureBlobStorageIntegration,
deps: {
treeResponseFactory: ReadTreeResponseFactory;
},