@backstage/plugin-auth-backend-module-gitlab-provider 0.0.0-nightly-20260120025109 → 0.0.0-nightly-20260123025240
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -3
- package/config.d.ts +4 -0
- package/dist/authenticator.cjs.js.map +1 -1
- package/dist/index.d.ts +14 -2
- package/dist/resolvers.cjs.js +32 -0
- package/dist/resolvers.cjs.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-gitlab-provider
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20260123025240
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ff07934: Added the `{gitlab-integration-host}/user-id` annotation to store GitLab's user ID (immutable) in user entities. Also includes addition of the `userIdMatchingUserEntityAnnotation` sign-in resolver that matches users by the new ID.
|
|
4
8
|
|
|
5
9
|
### Patch Changes
|
|
6
10
|
|
|
7
11
|
- Updated dependencies
|
|
8
|
-
- @backstage/plugin-auth-node@0.
|
|
9
|
-
- @backstage/backend-plugin-api@
|
|
12
|
+
- @backstage/plugin-auth-node@0.6.11
|
|
13
|
+
- @backstage/backend-plugin-api@1.6.1
|
|
10
14
|
|
|
11
15
|
## 0.3.10
|
|
12
16
|
|
package/config.d.ts
CHANGED
|
@@ -45,6 +45,10 @@ export interface Config {
|
|
|
45
45
|
resolver: 'emailMatchingUserEntityProfileEmail';
|
|
46
46
|
dangerouslyAllowSignInWithoutUserInCatalog?: boolean;
|
|
47
47
|
}
|
|
48
|
+
| {
|
|
49
|
+
resolver: 'userIdMatchingUserEntityAnnotation';
|
|
50
|
+
dangerouslyAllowSignInWithoutUserInCatalog?: boolean;
|
|
51
|
+
}
|
|
48
52
|
>;
|
|
49
53
|
};
|
|
50
54
|
sessionDuration?: HumanDuration | string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authenticator.cjs.js","sources":["../src/authenticator.ts"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Strategy as GitlabStrategy } from 'passport-gitlab2';\nimport {\n createOAuthAuthenticator,\n PassportOAuthAuthenticatorHelper,\n PassportOAuthDoneCallback,\n PassportProfile,\n} from '@backstage/plugin-auth-node';\n\n/** @public */\nexport const gitlabAuthenticator = createOAuthAuthenticator({\n defaultProfileTransform:\n PassportOAuthAuthenticatorHelper.defaultProfileTransform,\n scopes: {\n required: ['read_user'],\n },\n initialize({ callbackUrl, config }) {\n const clientId = config.getString('clientId');\n const clientSecret = config.getString('clientSecret');\n const baseUrl =\n config.getOptionalString('audience') || 'https://gitlab.com';\n\n return PassportOAuthAuthenticatorHelper.from(\n new GitlabStrategy(\n {\n clientID: clientId,\n clientSecret: clientSecret,\n callbackURL: callbackUrl,\n baseURL: baseUrl,\n authorizationURL: `${baseUrl}/oauth/authorize`,\n tokenURL: `${baseUrl}/oauth/token`,\n profileURL: `${baseUrl}/api/v4/user`,\n },\n (\n accessToken: string,\n refreshToken: string,\n params: any,\n fullProfile: PassportProfile,\n done: PassportOAuthDoneCallback,\n ) => {\n done(\n undefined,\n { fullProfile, params, accessToken },\n { refreshToken },\n );\n },\n ),\n );\n },\n\n async start(input, helper) {\n return helper.start(input, {\n accessType: 'offline',\n prompt: 'consent',\n });\n },\n\n async authenticate(input, helper) {\n return helper.authenticate(input);\n },\n\n async refresh(input, helper) {\n return helper.refresh(input);\n },\n});\n"],"names":["createOAuthAuthenticator","PassportOAuthAuthenticatorHelper","GitlabStrategy"],"mappings":";;;;;
|
|
1
|
+
{"version":3,"file":"authenticator.cjs.js","sources":["../src/authenticator.ts"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Strategy as GitlabStrategy } from 'passport-gitlab2';\nimport {\n createOAuthAuthenticator,\n PassportOAuthAuthenticatorHelper,\n PassportOAuthDoneCallback,\n PassportProfile,\n} from '@backstage/plugin-auth-node';\n\n/** @public */\nexport type GitlabProfile = PassportProfile & {\n id?: string;\n profileUrl?: string;\n};\n\n/** @public */\nexport const gitlabAuthenticator = createOAuthAuthenticator<\n PassportOAuthAuthenticatorHelper,\n GitlabProfile\n>({\n defaultProfileTransform:\n PassportOAuthAuthenticatorHelper.defaultProfileTransform,\n scopes: {\n required: ['read_user'],\n },\n initialize({ callbackUrl, config }) {\n const clientId = config.getString('clientId');\n const clientSecret = config.getString('clientSecret');\n const baseUrl =\n config.getOptionalString('audience') || 'https://gitlab.com';\n\n return PassportOAuthAuthenticatorHelper.from(\n new GitlabStrategy(\n {\n clientID: clientId,\n clientSecret: clientSecret,\n callbackURL: callbackUrl,\n baseURL: baseUrl,\n authorizationURL: `${baseUrl}/oauth/authorize`,\n tokenURL: `${baseUrl}/oauth/token`,\n profileURL: `${baseUrl}/api/v4/user`,\n },\n (\n accessToken: string,\n refreshToken: string,\n params: any,\n fullProfile: PassportProfile,\n done: PassportOAuthDoneCallback,\n ) => {\n done(\n undefined,\n { fullProfile: fullProfile as GitlabProfile, params, accessToken },\n { refreshToken },\n );\n },\n ),\n );\n },\n\n async start(input, helper) {\n return helper.start(input, {\n accessType: 'offline',\n prompt: 'consent',\n });\n },\n\n async authenticate(input, helper) {\n return helper.authenticate(input);\n },\n\n async refresh(input, helper) {\n return helper.refresh(input);\n },\n});\n"],"names":["createOAuthAuthenticator","PassportOAuthAuthenticatorHelper","GitlabStrategy"],"mappings":";;;;;AA+BO,MAAM,sBAAsBA,uCAAA,CAGjC;AAAA,EACA,yBACEC,+CAAA,CAAiC,uBAAA;AAAA,EACnC,MAAA,EAAQ;AAAA,IACN,QAAA,EAAU,CAAC,WAAW;AAAA,GACxB;AAAA,EACA,UAAA,CAAW,EAAE,WAAA,EAAa,MAAA,EAAO,EAAG;AAClC,IAAA,MAAM,QAAA,GAAW,MAAA,CAAO,SAAA,CAAU,UAAU,CAAA;AAC5C,IAAA,MAAM,YAAA,GAAe,MAAA,CAAO,SAAA,CAAU,cAAc,CAAA;AACpD,IAAA,MAAM,OAAA,GACJ,MAAA,CAAO,iBAAA,CAAkB,UAAU,CAAA,IAAK,oBAAA;AAE1C,IAAA,OAAOA,+CAAA,CAAiC,IAAA;AAAA,MACtC,IAAIC,wBAAA;AAAA,QACF;AAAA,UACE,QAAA,EAAU,QAAA;AAAA,UACV,YAAA;AAAA,UACA,WAAA,EAAa,WAAA;AAAA,UACb,OAAA,EAAS,OAAA;AAAA,UACT,gBAAA,EAAkB,GAAG,OAAO,CAAA,gBAAA,CAAA;AAAA,UAC5B,QAAA,EAAU,GAAG,OAAO,CAAA,YAAA,CAAA;AAAA,UACpB,UAAA,EAAY,GAAG,OAAO,CAAA,YAAA;AAAA,SACxB;AAAA,QACA,CACE,WAAA,EACA,YAAA,EACA,MAAA,EACA,aACA,IAAA,KACG;AACH,UAAA,IAAA;AAAA,YACE,MAAA;AAAA,YACA,EAAE,WAAA,EAA2C,MAAA,EAAQ,WAAA,EAAY;AAAA,YACjE,EAAE,YAAA;AAAa,WACjB;AAAA,QACF;AAAA;AACF,KACF;AAAA,EACF,CAAA;AAAA,EAEA,MAAM,KAAA,CAAM,KAAA,EAAO,MAAA,EAAQ;AACzB,IAAA,OAAO,MAAA,CAAO,MAAM,KAAA,EAAO;AAAA,MACzB,UAAA,EAAY,SAAA;AAAA,MACZ,MAAA,EAAQ;AAAA,KACT,CAAA;AAAA,EACH,CAAA;AAAA,EAEA,MAAM,YAAA,CAAa,KAAA,EAAO,MAAA,EAAQ;AAChC,IAAA,OAAO,MAAA,CAAO,aAAa,KAAK,CAAA;AAAA,EAClC,CAAA;AAAA,EAEA,MAAM,OAAA,CAAQ,KAAA,EAAO,MAAA,EAAQ;AAC3B,IAAA,OAAO,MAAA,CAAO,QAAQ,KAAK,CAAA;AAAA,EAC7B;AACF,CAAC;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,12 @@ import { PassportOAuthAuthenticatorHelper, PassportProfile, OAuthAuthenticatorRe
|
|
|
3
3
|
import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
4
4
|
|
|
5
5
|
/** @public */
|
|
6
|
-
|
|
6
|
+
type GitlabProfile = PassportProfile & {
|
|
7
|
+
id?: string;
|
|
8
|
+
profileUrl?: string;
|
|
9
|
+
};
|
|
10
|
+
/** @public */
|
|
11
|
+
declare const gitlabAuthenticator: _backstage_plugin_auth_node.OAuthAuthenticator<PassportOAuthAuthenticatorHelper, GitlabProfile>;
|
|
7
12
|
|
|
8
13
|
/** @public */
|
|
9
14
|
declare const authModuleGitlabProvider: _backstage_backend_plugin_api.BackendFeature;
|
|
@@ -17,9 +22,16 @@ declare namespace gitlabSignInResolvers {
|
|
|
17
22
|
/**
|
|
18
23
|
* Looks up the user by matching their GitLab username to the entity name.
|
|
19
24
|
*/
|
|
20
|
-
const usernameMatchingUserEntityName: _backstage_plugin_auth_node.SignInResolverFactory<OAuthAuthenticatorResult<
|
|
25
|
+
const usernameMatchingUserEntityName: _backstage_plugin_auth_node.SignInResolverFactory<OAuthAuthenticatorResult<GitlabProfile>, {
|
|
26
|
+
dangerouslyAllowSignInWithoutUserInCatalog?: boolean | undefined;
|
|
27
|
+
} | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* Looks up the user by matching their GitLab user ID to the user-id annotation.
|
|
30
|
+
*/
|
|
31
|
+
const userIdMatchingUserEntityAnnotation: _backstage_plugin_auth_node.SignInResolverFactory<OAuthAuthenticatorResult<GitlabProfile>, {
|
|
21
32
|
dangerouslyAllowSignInWithoutUserInCatalog?: boolean | undefined;
|
|
22
33
|
} | undefined>;
|
|
23
34
|
}
|
|
24
35
|
|
|
25
36
|
export { authModuleGitlabProvider as default, gitlabAuthenticator, gitlabSignInResolvers };
|
|
37
|
+
export type { GitlabProfile };
|
package/dist/resolvers.cjs.js
CHANGED
|
@@ -27,5 +27,37 @@ exports.gitlabSignInResolvers = void 0;
|
|
|
27
27
|
};
|
|
28
28
|
}
|
|
29
29
|
});
|
|
30
|
+
gitlabSignInResolvers2.userIdMatchingUserEntityAnnotation = pluginAuthNode.createSignInResolverFactory(
|
|
31
|
+
{
|
|
32
|
+
optionsSchema: zod.z.object({
|
|
33
|
+
dangerouslyAllowSignInWithoutUserInCatalog: zod.z.boolean().optional()
|
|
34
|
+
}).optional(),
|
|
35
|
+
create(options = {}) {
|
|
36
|
+
return async (info, ctx) => {
|
|
37
|
+
const { fullProfile } = info.result;
|
|
38
|
+
const userId = fullProfile.id;
|
|
39
|
+
if (!userId) {
|
|
40
|
+
throw new Error(`GitLab user profile does not contain a user ID`);
|
|
41
|
+
}
|
|
42
|
+
if (!fullProfile.profileUrl) {
|
|
43
|
+
throw new Error(
|
|
44
|
+
`GitLab user profile does not contain a profile URL`
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
const host = new URL(fullProfile.profileUrl).hostname;
|
|
48
|
+
return ctx.signInWithCatalogUser(
|
|
49
|
+
{
|
|
50
|
+
annotations: {
|
|
51
|
+
[`${host}/user-id`]: userId
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
dangerousEntityRefFallback: options?.dangerouslyAllowSignInWithoutUserInCatalog ? { entityRef: { name: userId } } : void 0
|
|
56
|
+
}
|
|
57
|
+
);
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
);
|
|
30
62
|
})(exports.gitlabSignInResolvers || (exports.gitlabSignInResolvers = {}));
|
|
31
63
|
//# sourceMappingURL=resolvers.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolvers.cjs.js","sources":["../src/resolvers.ts"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n createSignInResolverFactory,\n OAuthAuthenticatorResult,\n
|
|
1
|
+
{"version":3,"file":"resolvers.cjs.js","sources":["../src/resolvers.ts"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n createSignInResolverFactory,\n OAuthAuthenticatorResult,\n SignInInfo,\n} from '@backstage/plugin-auth-node';\nimport { z } from 'zod';\n\nimport { GitlabProfile } from './authenticator';\n\n/**\n * Available sign-in resolvers for the GitLab auth provider.\n *\n * @public\n */\nexport namespace gitlabSignInResolvers {\n /**\n * Looks up the user by matching their GitLab username to the entity name.\n */\n export const usernameMatchingUserEntityName = createSignInResolverFactory({\n optionsSchema: z\n .object({\n dangerouslyAllowSignInWithoutUserInCatalog: z.boolean().optional(),\n })\n .optional(),\n create(options = {}) {\n return async (\n info: SignInInfo<OAuthAuthenticatorResult<GitlabProfile>>,\n ctx,\n ) => {\n const { result } = info;\n\n const id = result.fullProfile.username;\n if (!id) {\n throw new Error(`GitLab user profile does not contain a username`);\n }\n\n return ctx.signInWithCatalogUser(\n {\n entityRef: { name: id },\n },\n {\n dangerousEntityRefFallback:\n options?.dangerouslyAllowSignInWithoutUserInCatalog\n ? { entityRef: { name: id } }\n : undefined,\n },\n );\n };\n },\n });\n\n /**\n * Looks up the user by matching their GitLab user ID to the user-id annotation.\n */\n export const userIdMatchingUserEntityAnnotation = createSignInResolverFactory(\n {\n optionsSchema: z\n .object({\n dangerouslyAllowSignInWithoutUserInCatalog: z.boolean().optional(),\n })\n .optional(),\n create(options = {}) {\n return async (\n info: SignInInfo<OAuthAuthenticatorResult<GitlabProfile>>,\n ctx,\n ) => {\n const { fullProfile } = info.result;\n\n const userId = fullProfile.id;\n if (!userId) {\n throw new Error(`GitLab user profile does not contain a user ID`);\n }\n\n if (!fullProfile.profileUrl) {\n throw new Error(\n `GitLab user profile does not contain a profile URL`,\n );\n }\n const host = new URL(fullProfile.profileUrl).hostname;\n\n return ctx.signInWithCatalogUser(\n {\n annotations: {\n [`${host}/user-id`]: userId,\n },\n },\n {\n dangerousEntityRefFallback:\n options?.dangerouslyAllowSignInWithoutUserInCatalog\n ? { entityRef: { name: userId } }\n : undefined,\n },\n );\n };\n },\n },\n );\n}\n"],"names":["gitlabSignInResolvers","createSignInResolverFactory","z"],"mappings":";;;;;AA8BiBA;AAAA,CAAV,CAAUA,sBAAAA,KAAV;AAIE,EAAMA,sBAAAA,CAAA,iCAAiCC,0CAAA,CAA4B;AAAA,IACxE,aAAA,EAAeC,MACZ,MAAA,CAAO;AAAA,MACN,0CAAA,EAA4CA,KAAA,CAAE,OAAA,EAAQ,CAAE,QAAA;AAAS,KAClE,EACA,QAAA,EAAS;AAAA,IACZ,MAAA,CAAO,OAAA,GAAU,EAAC,EAAG;AACnB,MAAA,OAAO,OACL,MACA,GAAA,KACG;AACH,QAAA,MAAM,EAAE,QAAO,GAAI,IAAA;AAEnB,QAAA,MAAM,EAAA,GAAK,OAAO,WAAA,CAAY,QAAA;AAC9B,QAAA,IAAI,CAAC,EAAA,EAAI;AACP,UAAA,MAAM,IAAI,MAAM,CAAA,+CAAA,CAAiD,CAAA;AAAA,QACnE;AAEA,QAAA,OAAO,GAAA,CAAI,qBAAA;AAAA,UACT;AAAA,YACE,SAAA,EAAW,EAAE,IAAA,EAAM,EAAA;AAAG,WACxB;AAAA,UACA;AAAA,YACE,0BAAA,EACE,SAAS,0CAAA,GACL,EAAE,WAAW,EAAE,IAAA,EAAM,EAAA,EAAG,EAAE,GAC1B;AAAA;AACR,SACF;AAAA,MACF,CAAA;AAAA,IACF;AAAA,GACD,CAAA;AAKM,EAAMF,uBAAA,kCAAA,GAAqCC,0CAAA;AAAA,IAChD;AAAA,MACE,aAAA,EAAeC,MACZ,MAAA,CAAO;AAAA,QACN,0CAAA,EAA4CA,KAAA,CAAE,OAAA,EAAQ,CAAE,QAAA;AAAS,OAClE,EACA,QAAA,EAAS;AAAA,MACZ,MAAA,CAAO,OAAA,GAAU,EAAC,EAAG;AACnB,QAAA,OAAO,OACL,MACA,GAAA,KACG;AACH,UAAA,MAAM,EAAE,WAAA,EAAY,GAAI,IAAA,CAAK,MAAA;AAE7B,UAAA,MAAM,SAAS,WAAA,CAAY,EAAA;AAC3B,UAAA,IAAI,CAAC,MAAA,EAAQ;AACX,YAAA,MAAM,IAAI,MAAM,CAAA,8CAAA,CAAgD,CAAA;AAAA,UAClE;AAEA,UAAA,IAAI,CAAC,YAAY,UAAA,EAAY;AAC3B,YAAA,MAAM,IAAI,KAAA;AAAA,cACR,CAAA,kDAAA;AAAA,aACF;AAAA,UACF;AACA,UAAA,MAAM,IAAA,GAAO,IAAI,GAAA,CAAI,WAAA,CAAY,UAAU,CAAA,CAAE,QAAA;AAE7C,UAAA,OAAO,GAAA,CAAI,qBAAA;AAAA,YACT;AAAA,cACE,WAAA,EAAa;AAAA,gBACX,CAAC,CAAA,EAAG,IAAI,CAAA,QAAA,CAAU,GAAG;AAAA;AACvB,aACF;AAAA,YACA;AAAA,cACE,0BAAA,EACE,SAAS,0CAAA,GACL,EAAE,WAAW,EAAE,IAAA,EAAM,MAAA,EAAO,EAAE,GAC9B;AAAA;AACR,WACF;AAAA,QACF,CAAA;AAAA,MACF;AAAA;AACF,GACF;AAAA,CAAA,EAlFeF,6BAAA,KAAAA,6BAAA,GAAA,EAAA,CAAA,CAAA;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-gitlab-provider",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20260123025240",
|
|
4
4
|
"description": "The gitlab-provider backend module for the auth plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/backend-plugin-api": "
|
|
41
|
-
"@backstage/plugin-auth-node": "0.
|
|
40
|
+
"@backstage/backend-plugin-api": "1.6.1",
|
|
41
|
+
"@backstage/plugin-auth-node": "0.6.11",
|
|
42
42
|
"express": "^4.22.0",
|
|
43
43
|
"passport": "^0.7.0",
|
|
44
44
|
"passport-gitlab2": "^5.0.0",
|
|
45
45
|
"zod": "^3.22.4"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@backstage/backend-defaults": "0.0.0-nightly-
|
|
49
|
-
"@backstage/backend-test-utils": "0.0.0-nightly-
|
|
50
|
-
"@backstage/cli": "0.0.0-nightly-
|
|
51
|
-
"@backstage/plugin-auth-backend": "0.
|
|
48
|
+
"@backstage/backend-defaults": "0.0.0-nightly-20260123025240",
|
|
49
|
+
"@backstage/backend-test-utils": "0.0.0-nightly-20260123025240",
|
|
50
|
+
"@backstage/cli": "0.0.0-nightly-20260123025240",
|
|
51
|
+
"@backstage/plugin-auth-backend": "0.26.0",
|
|
52
52
|
"@backstage/types": "1.2.2",
|
|
53
53
|
"supertest": "^7.0.0"
|
|
54
54
|
},
|