mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
ci: Include THIRD_PARTY_LICENSES.md file with release (#18739)
This commit is contained in:
@@ -123,6 +123,9 @@
|
||||
"about.debug.message": "Copy debug information",
|
||||
"about.debug.toast.title": "Debug info",
|
||||
"about.debug.toast.message": "Copied debug info to clipboard",
|
||||
"about.thirdPartyLicenses": "Third-Party Licenses",
|
||||
"about.thirdPartyLicensesLink": "View all third-party licenses",
|
||||
"about.thirdPartyLicenses.downloadError": "Failed to download third-party licenses file",
|
||||
"askAi.dialog.title": "'Ask AI' is almost ready",
|
||||
"askAi.dialog.body": "We’re still applying the finishing touches. Soon, you will be able to <strong>automatically generate code from simple text prompts</strong>. Join the waitlist to get early access to this feature.",
|
||||
"askAi.dialog.signup": "Join Waitlist",
|
||||
|
||||
@@ -16,6 +16,7 @@ export * from './module-settings';
|
||||
export * from './sso';
|
||||
export type * from './tags';
|
||||
export * from './templates';
|
||||
export * from './third-party-licenses';
|
||||
export * from './ui';
|
||||
export * from './users';
|
||||
export * from './versions';
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
import type { IRestApiContext } from '../types';
|
||||
import { request } from '../utils';
|
||||
|
||||
export async function getThirdPartyLicenses(context: IRestApiContext): Promise<string> {
|
||||
return await request({
|
||||
method: 'GET',
|
||||
baseURL: context.baseUrl,
|
||||
endpoint: '/third-party-licenses',
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user