ci: Include THIRD_PARTY_LICENSES.md file with release (#18739)

This commit is contained in:
Artem Sorokin
2025-09-01 12:41:42 +02:00
committed by GitHub
parent daac88b3ec
commit 168ac0e9f2
16 changed files with 729 additions and 8 deletions

View File

@@ -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';

View File

@@ -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',
});
}