Skip to content

Commit 82b8e94

Browse files
committed
More changes
1 parent 0d8caeb commit 82b8e94

18 files changed

+1542
-43
lines changed

package-lock.json

Lines changed: 1350 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
"knip": "^5.43.6",
4545
"prettier": "^3.1.1",
4646
"semantic-release": "^24.0.0",
47+
"testcontainers": "^11.0.1",
4748
"ts-jest": "^29.1.0",
4849
"typescript": "^5.1.3"
4950
},

src/apiexception.ts renamed to src/api-exception.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// file: src/client/apiexception.ts
2-
import { ZitadelException } from './zitadel_exception.js'; // Adjust path based on your structure
2+
import { ZitadelException } from './zitadel-exception.js'; // Adjust path based on your structure
33

44
/**
55
* Represents an HTTP error returned from an API.

src/auth/clientcredentialsauthenticator.ts renamed to src/auth/client-credentials-authenticator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { OAuthAuthenticator } from './oauthauthenticator.js';
1+
import { OAuthAuthenticator } from './oauth-authenticator.js';
22
import { OpenId } from './openid.js';
33
import { ClientCredentialsAuthenticatorBuilder } from './clientcredentialsauthenticatorbuilder.js';
44
import * as oauth from 'oauth4webapi';

src/auth/clientcredentialsauthenticatorbuilder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { OAuthAuthenticatorBuilder } from './oauthauthenticatorbuilder.js';
2-
import { ClientCredentialsAuthenticator } from './clientcredentialsauthenticator.js';
1+
import { OAuthAuthenticatorBuilder } from './oauth-authenticator-builder.js';
2+
import { ClientCredentialsAuthenticator } from './client-credentials-authenticator.js';
33

44
/**
55
* Builder for ClientCredentialsAuthenticator.
File renamed without changes.

src/auth/oauthauthenticatorbuilder.ts renamed to src/auth/oauth-authenticator-builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { OpenId } from './openid.js';
2-
import { OAuthAuthenticator } from './oauthauthenticator.js';
2+
import { OAuthAuthenticator } from './oauth-authenticator.js';
33

44
/**
55
* Base builder for OAuth authenticators.
File renamed without changes.
File renamed without changes.

src/auth/webtokenauthenticatorbuilder.ts renamed to src/auth/webtoken-authenticator-builder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { OAuthAuthenticatorBuilder } from './oauthauthenticatorbuilder.js';
2-
import { WebTokenAuthenticator } from './webtokenauthenticator.js';
1+
import { OAuthAuthenticatorBuilder } from './oauth-authenticator-builder.js';
2+
import { WebTokenAuthenticator } from './webtoken-authenticator.js';
33
import { promises as fs } from 'fs';
44

55
/**

0 commit comments

Comments
 (0)