diff --git a/packages/ai-api/src/client/AI_CORE_API/application-api.ts b/packages/ai-api/src/client/AI_CORE_API/application-api.ts index 92b6bba74..f770f451b 100644 --- a/packages/ai-api/src/client/AI_CORE_API/application-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/application-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -20,6 +20,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const ApplicationApi = { + _defaultBasePath: undefined, /** * Return all Argo CD application data objects. * @@ -37,7 +38,8 @@ export const ApplicationApi = { { queryParameters, headerParameters - } + }, + ApplicationApi._defaultBasePath ), /** * Create an ArgoCD application to synchronise a repository. @@ -56,7 +58,8 @@ export const ApplicationApi = { { body, headerParameters - } + }, + ApplicationApi._defaultBasePath ), /** * Returns the ArgoCD application health and sync status. @@ -75,7 +78,8 @@ export const ApplicationApi = { { pathParameters: { applicationName }, headerParameters - } + }, + ApplicationApi._defaultBasePath ), /** * Retrieve the ArgoCD application details. @@ -94,7 +98,8 @@ export const ApplicationApi = { { pathParameters: { applicationName }, headerParameters - } + }, + ApplicationApi._defaultBasePath ), /** * Update the referenced ArgoCD application to synchronize the repository. @@ -116,7 +121,8 @@ export const ApplicationApi = { pathParameters: { applicationName }, body, headerParameters - } + }, + ApplicationApi._defaultBasePath ), /** * Delete an ArgoCD application @@ -134,7 +140,8 @@ export const ApplicationApi = { { pathParameters: { applicationName }, headerParameters - } + }, + ApplicationApi._defaultBasePath ), /** * Schedules a refresh of the specified application that will be picked up by ArgoCD asynchronously @@ -153,6 +160,7 @@ export const ApplicationApi = { { pathParameters: { applicationName }, headerParameters - } + }, + ApplicationApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/artifact-api.ts b/packages/ai-api/src/client/AI_CORE_API/artifact-api.ts index 02df2ba69..7875cef2a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/artifact-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/artifact-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -16,6 +16,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const ArtifactApi = { + _defaultBasePath: undefined, /** * Retrieve a list of artifacts that matches the specified filter criteria. * Filter criteria include scenario ID, execution ID, an artifact name, artifact kind, or artifact labels. @@ -41,10 +42,15 @@ export const ArtifactApi = { }, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/artifacts', { - queryParameters, - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/lm/artifacts', + { + queryParameters, + headerParameters + }, + ArtifactApi._defaultBasePath + ), /** * Register an artifact for use in a configuration, for example a model or a dataset. * @param body - Request body. @@ -61,7 +67,8 @@ export const ArtifactApi = { { body, headerParameters - } + }, + ArtifactApi._defaultBasePath ), /** * Retrieve details for artifact with artifactId. @@ -75,11 +82,16 @@ export const ArtifactApi = { queryParameters: { $expand?: 'scenario' }, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/artifacts/{artifactId}', { - pathParameters: { artifactId }, - queryParameters, - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/lm/artifacts/{artifactId}', + { + pathParameters: { artifactId }, + queryParameters, + headerParameters + }, + ArtifactApi._defaultBasePath + ), /** * Retrieve the number of available artifacts that match the specified filter criteria. * Filter criteria include a scenarioId, executionId, an artifact name, artifact kind, or artifact labels. @@ -101,8 +113,13 @@ export const ArtifactApi = { }, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/artifacts/$count', { - queryParameters, - headerParameters - }) + new OpenApiRequestBuilder( + 'get', + '/lm/artifacts/$count', + { + queryParameters, + headerParameters + }, + ArtifactApi._defaultBasePath + ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/configuration-api.ts b/packages/ai-api/src/client/AI_CORE_API/configuration-api.ts index fdffb5662..eaadaf839 100644 --- a/packages/ai-api/src/client/AI_CORE_API/configuration-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/configuration-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -15,6 +15,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const ConfigurationApi = { + _defaultBasePath: undefined, /** * Retrieve a list of configurations. Filter results by scenario ID or a list of executable IDs. * Search for configurations containing the search string as substring in the configuration name. @@ -41,7 +42,8 @@ export const ConfigurationApi = { { queryParameters, headerParameters - } + }, + ConfigurationApi._defaultBasePath ), /** * Create a new configuration linked to a specific scenario and executable for use in an execution @@ -61,7 +63,8 @@ export const ConfigurationApi = { { body, headerParameters - } + }, + ConfigurationApi._defaultBasePath ), /** * Retrieve details for configuration with configurationId. @@ -82,7 +85,8 @@ export const ConfigurationApi = { pathParameters: { configurationId }, queryParameters, headerParameters - } + }, + ConfigurationApi._defaultBasePath ), /** * Retrieve the number of available configurations that match the specified filter criteria. @@ -101,8 +105,13 @@ export const ConfigurationApi = { }, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/configurations/$count', { - queryParameters, - headerParameters - }) + new OpenApiRequestBuilder( + 'get', + '/lm/configurations/$count', + { + queryParameters, + headerParameters + }, + ConfigurationApi._defaultBasePath + ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/deployment-api.ts b/packages/ai-api/src/client/AI_CORE_API/deployment-api.ts index 36ff8e1f6..195ff3561 100644 --- a/packages/ai-api/src/client/AI_CORE_API/deployment-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/deployment-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -21,6 +21,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const DeploymentApi = { + _defaultBasePath: undefined, /** * Retrieve a list of deployments that match the specified filter criteria. * Filter criteria include a list of executableIds, a scenarioId, a configurationId, or a deployment status. @@ -50,10 +51,15 @@ export const DeploymentApi = { }, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/deployments', { - queryParameters, - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/lm/deployments', + { + queryParameters, + headerParameters + }, + DeploymentApi._defaultBasePath + ), /** * Create a deployment using the configuration specified by configurationId after synchronously checking the * correctness of the configuration. @@ -72,7 +78,8 @@ export const DeploymentApi = { { body, headerParameters - } + }, + DeploymentApi._defaultBasePath ), /** * Update status of multiple deployments. stop or delete multiple deployments. @@ -90,7 +97,8 @@ export const DeploymentApi = { { body, headerParameters - } + }, + DeploymentApi._defaultBasePath ), /** * Retrieve details for execution with deploymentId. @@ -111,7 +119,8 @@ export const DeploymentApi = { pathParameters: { deploymentId }, queryParameters, headerParameters - } + }, + DeploymentApi._defaultBasePath ), /** * Update target status of a deployment to stop a deployment or change the configuration to be used by the @@ -135,7 +144,8 @@ export const DeploymentApi = { pathParameters: { deploymentId }, body, headerParameters - } + }, + DeploymentApi._defaultBasePath ), /** * Mark deployment with deploymentId as deleted. @@ -153,7 +163,8 @@ export const DeploymentApi = { { pathParameters: { deploymentId }, headerParameters - } + }, + DeploymentApi._defaultBasePath ), /** * Retrieve the number of available deployments. The number can be filtered by @@ -179,10 +190,15 @@ export const DeploymentApi = { }, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/deployments/$count', { - queryParameters, - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/lm/deployments/$count', + { + queryParameters, + headerParameters + }, + DeploymentApi._defaultBasePath + ), /** * Retrieve logs of a deployment for getting insight into the deployment results or failures. * @param deploymentId - Deployment identifier @@ -207,6 +223,7 @@ export const DeploymentApi = { pathParameters: { deploymentId }, queryParameters, headerParameters - } + }, + DeploymentApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/docker-registry-secret-api.ts b/packages/ai-api/src/client/AI_CORE_API/docker-registry-secret-api.ts index d43aa9b8b..f32c78f7e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/docker-registry-secret-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/docker-registry-secret-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -18,6 +18,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const DockerRegistrySecretApi = { + _defaultBasePath: undefined, /** * Retrieve the stored secret metadata which matches the parameter dockerRegistryName. The base64 encoded field for the stored secret is not returned. * @@ -35,7 +36,8 @@ export const DockerRegistrySecretApi = { { pathParameters: { dockerRegistryName }, headerParameters - } + }, + DockerRegistrySecretApi._defaultBasePath ), /** * Update a secret with name of dockerRegistryName if it exists. @@ -57,7 +59,8 @@ export const DockerRegistrySecretApi = { pathParameters: { dockerRegistryName }, body, headerParameters - } + }, + DockerRegistrySecretApi._defaultBasePath ), /** * Delete a secret with the name of dockerRegistryName if it exists. @@ -75,7 +78,8 @@ export const DockerRegistrySecretApi = { { pathParameters: { dockerRegistryName }, headerParameters - } + }, + DockerRegistrySecretApi._defaultBasePath ), /** * Retrieve a list of metadata of the stored secrets @@ -94,7 +98,8 @@ export const DockerRegistrySecretApi = { { queryParameters, headerParameters - } + }, + DockerRegistrySecretApi._defaultBasePath ), /** * Create a secret based on the configuration in the request body. @@ -115,6 +120,7 @@ export const DockerRegistrySecretApi = { { body, headerParameters - } + }, + DockerRegistrySecretApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/executable-api.ts b/packages/ai-api/src/client/AI_CORE_API/executable-api.ts index c50bcc310..6369495d5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/executable-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/executable-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -10,6 +10,7 @@ import type { AiExecutableList, AiExecutable } from './schema/index.js'; * This API is part of the 'AI_CORE_API' service. */ export const ExecutableApi = { + _defaultBasePath: undefined, /** * Retrieve a list of executables for a scenario. Filter by version ID, if required. * @@ -30,7 +31,8 @@ export const ExecutableApi = { pathParameters: { scenarioId }, queryParameters, headerParameters - } + }, + ExecutableApi._defaultBasePath ), /** * Retrieve details about an executable identified by executableId belonging @@ -52,6 +54,7 @@ export const ExecutableApi = { { pathParameters: { scenarioId, executableId }, headerParameters - } + }, + ExecutableApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/execution-api.ts b/packages/ai-api/src/client/AI_CORE_API/execution-api.ts index 7a71b1ad7..2a1f4cfec 100644 --- a/packages/ai-api/src/client/AI_CORE_API/execution-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/execution-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -21,6 +21,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const ExecutionApi = { + _defaultBasePath: undefined, /** * Retrieve a list of executions that match the specified filter criteria. * Filter criteria include a list of executableIds, a scenarioId, a configurationId, or a execution status. @@ -51,10 +52,15 @@ export const ExecutionApi = { }, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/executions', { - queryParameters, - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/lm/executions', + { + queryParameters, + headerParameters + }, + ExecutionApi._defaultBasePath + ), /** * Create an execution using the configuration specified by configurationId. * @param body - Request body. @@ -71,7 +77,8 @@ export const ExecutionApi = { { body, headerParameters - } + }, + ExecutionApi._defaultBasePath ), /** * Patch multiple executions' status to stopped or deleted. @@ -89,7 +96,8 @@ export const ExecutionApi = { { body, headerParameters - } + }, + ExecutionApi._defaultBasePath ), /** * Retrieve details for execution with executionId. @@ -110,7 +118,8 @@ export const ExecutionApi = { pathParameters: { executionId }, queryParameters, headerParameters - } + }, + ExecutionApi._defaultBasePath ), /** * Update target status of the execution to stop an execution. @@ -131,7 +140,8 @@ export const ExecutionApi = { pathParameters: { executionId }, body, headerParameters - } + }, + ExecutionApi._defaultBasePath ), /** * Mark the execution with executionId as deleted. @@ -149,7 +159,8 @@ export const ExecutionApi = { { pathParameters: { executionId }, headerParameters - } + }, + ExecutionApi._defaultBasePath ), /** * Retrieve the number of available executions. The number can be filtered by @@ -176,10 +187,15 @@ export const ExecutionApi = { }, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/executions/$count', { - queryParameters, - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/lm/executions/$count', + { + queryParameters, + headerParameters + }, + ExecutionApi._defaultBasePath + ), /** * Retrieve logs of an execution for getting insight into the execution results or failures. * @param executionId - Execution identifier @@ -204,6 +220,7 @@ export const ExecutionApi = { pathParameters: { executionId }, queryParameters, headerParameters - } + }, + ExecutionApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/execution-schedule-api.ts b/packages/ai-api/src/client/AI_CORE_API/execution-schedule-api.ts index b10c53a1a..63a8f1212 100644 --- a/packages/ai-api/src/client/AI_CORE_API/execution-schedule-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/execution-schedule-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -18,6 +18,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const ExecutionScheduleApi = { + _defaultBasePath: undefined, /** * Retrieve a list of execution schedules that match the specified filter criteria. * Filter criteria include executionScheduleStatus or a configurationId. @@ -42,7 +43,8 @@ export const ExecutionScheduleApi = { { queryParameters, headerParameters - } + }, + ExecutionScheduleApi._defaultBasePath ), /** * Create an execution schedule using the configuration specified by configurationId, and schedule. @@ -60,7 +62,8 @@ export const ExecutionScheduleApi = { { body, headerParameters - } + }, + ExecutionScheduleApi._defaultBasePath ), /** * Retrieve details for execution schedule with executionScheduleId. @@ -78,7 +81,8 @@ export const ExecutionScheduleApi = { { pathParameters: { executionScheduleId }, headerParameters - } + }, + ExecutionScheduleApi._defaultBasePath ), /** * Update details of an execution schedule @@ -99,7 +103,8 @@ export const ExecutionScheduleApi = { pathParameters: { executionScheduleId }, body, headerParameters - } + }, + ExecutionScheduleApi._defaultBasePath ), /** * Delete the execution schedule with executionScheduleId. @@ -117,7 +122,8 @@ export const ExecutionScheduleApi = { { pathParameters: { executionScheduleId }, headerParameters - } + }, + ExecutionScheduleApi._defaultBasePath ), /** * Retrieve the number of scheduled executions. The number can be filtered by @@ -134,8 +140,13 @@ export const ExecutionScheduleApi = { }, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/executionSchedules/$count', { - queryParameters, - headerParameters - }) + new OpenApiRequestBuilder( + 'get', + '/lm/executionSchedules/$count', + { + queryParameters, + headerParameters + }, + ExecutionScheduleApi._defaultBasePath + ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/file-api.ts b/packages/ai-api/src/client/AI_CORE_API/file-api.ts index 5bff2a1f3..9e73dd4b7 100644 --- a/packages/ai-api/src/client/AI_CORE_API/file-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/file-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -10,6 +10,7 @@ import type { DSetFileCreationResponse } from './schema/index.js'; * This API is part of the 'AI_CORE_API' service. */ export const FileApi = { + _defaultBasePath: undefined, /** * Endpoint for downloading file. The path must point to an individual file. * @param path - path relative to the object store root URL in the secret @@ -20,10 +21,15 @@ export const FileApi = { path: string, headerParameters?: { 'AI-Resource-Group'?: string } ) => - new OpenApiRequestBuilder('get', '/lm/dataset/files/{path}', { - pathParameters: { path }, - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/lm/dataset/files/{path}', + { + pathParameters: { path }, + headerParameters + }, + FileApi._defaultBasePath + ), /** * Endpoint for uploading file. The maximum file size depends on the actual implementation * but must not exceed 100MB. The actual file size limit can be obtained by querying @@ -62,7 +68,8 @@ export const FileApi = { body, queryParameters, headerParameters - } + }, + FileApi._defaultBasePath ), /** * Delete the file specified by the path parameter. @@ -74,8 +81,13 @@ export const FileApi = { path: string, headerParameters?: { 'AI-Resource-Group'?: string } ) => - new OpenApiRequestBuilder('delete', '/lm/dataset/files/{path}', { - pathParameters: { path }, - headerParameters - }) + new OpenApiRequestBuilder( + 'delete', + '/lm/dataset/files/{path}', + { + pathParameters: { path }, + headerParameters + }, + FileApi._defaultBasePath + ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/index.ts b/packages/ai-api/src/client/AI_CORE_API/index.ts index a4e3c2963..aeafe2883 100644 --- a/packages/ai-api/src/client/AI_CORE_API/index.ts +++ b/packages/ai-api/src/client/AI_CORE_API/index.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/kpi-api.ts b/packages/ai-api/src/client/AI_CORE_API/kpi-api.ts index 5a4bde68f..52394c757 100644 --- a/packages/ai-api/src/client/AI_CORE_API/kpi-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/kpi-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -10,6 +10,7 @@ import type { KpiResultSet, KpiColumnName } from './schema/index.js'; * This API is part of the 'AI_CORE_API' service. */ export const KPIApi = { + _defaultBasePath: undefined, /** * Retrieve the number of executions, artifacts, and deployments * for each resource group, scenario, and executable. The columns to be returned can be specified in a query parameter. @@ -18,7 +19,12 @@ export const KPIApi = { * @returns The request builder, use the `execute()` method to trigger the request. */ kpiGet: (queryParameters?: { $select?: Set }) => - new OpenApiRequestBuilder('get', '/analytics/kpis', { - queryParameters - }) + new OpenApiRequestBuilder( + 'get', + '/analytics/kpis', + { + queryParameters + }, + KPIApi._defaultBasePath + ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/meta-api.ts b/packages/ai-api/src/client/AI_CORE_API/meta-api.ts index ba7cc3830..517dbbceb 100644 --- a/packages/ai-api/src/client/AI_CORE_API/meta-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/meta-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -10,9 +10,16 @@ import type { MetaCapabilities } from './schema/index.js'; * This API is part of the 'AI_CORE_API' service. */ export const MetaApi = { + _defaultBasePath: undefined, /** * Meta information about an implementation of AI API, describing its capabilities, limits and extensions * @returns The request builder, use the `execute()` method to trigger the request. */ - metaGet: () => new OpenApiRequestBuilder('get', '/lm/meta') + metaGet: () => + new OpenApiRequestBuilder( + 'get', + '/lm/meta', + {}, + MetaApi._defaultBasePath + ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/metrics-api.ts b/packages/ai-api/src/client/AI_CORE_API/metrics-api.ts index 5d5568594..5cd5116f5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/metrics-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/metrics-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -17,6 +17,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const MetricsApi = { + _defaultBasePath: undefined, /** * Retrieve metrics, labels, or tags according to filter conditions. * One query parameter is mandatory, either execution ID or filter. @@ -34,10 +35,15 @@ export const MetricsApi = { }, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/metrics', { - queryParameters, - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/lm/metrics', + { + queryParameters, + headerParameters + }, + MetricsApi._defaultBasePath + ), /** * Update or create metrics, tags, or labels associated with an execution. * @@ -49,10 +55,15 @@ export const MetricsApi = { body: TrckMetricResource, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('patch', '/lm/metrics', { - body, - headerParameters - }), + new OpenApiRequestBuilder( + 'patch', + '/lm/metrics', + { + body, + headerParameters + }, + MetricsApi._defaultBasePath + ), /** * Delete metrics, tags, or labels associated with an execution. * @param queryParameters - Object containing the following keys: executionId. @@ -69,6 +80,7 @@ export const MetricsApi = { { queryParameters, headerParameters - } + }, + MetricsApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/object-store-secret-api.ts b/packages/ai-api/src/client/AI_CORE_API/object-store-secret-api.ts index 7cdf4b1f9..25f1ac30b 100644 --- a/packages/ai-api/src/client/AI_CORE_API/object-store-secret-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/object-store-secret-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -18,6 +18,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const ObjectStoreSecretApi = { + _defaultBasePath: undefined, /** * Retrieve a list of metadata of the stored secrets. * @@ -35,7 +36,8 @@ export const ObjectStoreSecretApi = { { queryParameters, headerParameters - } + }, + ObjectStoreSecretApi._defaultBasePath ), /** * Create a secret based on the configuration in the request body @@ -54,7 +56,8 @@ export const ObjectStoreSecretApi = { { body, headerParameters - } + }, + ObjectStoreSecretApi._defaultBasePath ), /** * This retrieves the metadata of the stored secret which match the parameter objectStoreName. @@ -75,7 +78,8 @@ export const ObjectStoreSecretApi = { { pathParameters: { objectStoreName }, headerParameters - } + }, + ObjectStoreSecretApi._defaultBasePath ), /** * Update a secret with name of objectStoreName if it exists. @@ -97,7 +101,8 @@ export const ObjectStoreSecretApi = { pathParameters: { objectStoreName }, body, headerParameters - } + }, + ObjectStoreSecretApi._defaultBasePath ), /** * Delete a secret with the name of objectStoreName if it exists. @@ -115,6 +120,7 @@ export const ObjectStoreSecretApi = { { pathParameters: { objectStoreName }, headerParameters - } + }, + ObjectStoreSecretApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/repository-api.ts b/packages/ai-api/src/client/AI_CORE_API/repository-api.ts index 0bcbe62f6..af8261e0c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/repository-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/repository-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -18,6 +18,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const RepositoryApi = { + _defaultBasePath: undefined, /** * Retrieve a list of all GitOps repositories for a tenant. * @param queryParameters - Object containing the following keys: $top, $skip, $count. @@ -34,7 +35,8 @@ export const RepositoryApi = { { queryParameters, headerParameters - } + }, + RepositoryApi._defaultBasePath ), /** * On-board a new GitOps repository as specified in the content payload @@ -52,7 +54,8 @@ export const RepositoryApi = { { body, headerParameters - } + }, + RepositoryApi._defaultBasePath ), /** * Retrieve the access details for a repository if it exists. @@ -70,7 +73,8 @@ export const RepositoryApi = { { pathParameters: { repositoryName }, headerParameters - } + }, + RepositoryApi._defaultBasePath ), /** * Update the referenced repository credentials to synchronize a repository. @@ -92,7 +96,8 @@ export const RepositoryApi = { pathParameters: { repositoryName }, body, headerParameters - } + }, + RepositoryApi._defaultBasePath ), /** * Remove a repository from GitOps. @@ -110,6 +115,7 @@ export const RepositoryApi = { { pathParameters: { repositoryName }, headerParameters - } + }, + RepositoryApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/resource-api.ts b/packages/ai-api/src/client/AI_CORE_API/resource-api.ts index 5039dc7bf..7d9550908 100644 --- a/packages/ai-api/src/client/AI_CORE_API/resource-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/resource-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -14,6 +14,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const ResourceApi = { + _defaultBasePath: undefined, /** * Lists all hot spare nodes, used nodes and total nodes corresponding to tenant. * @param headerParameters - Object containing the following keys: Authorization. @@ -25,7 +26,8 @@ export const ResourceApi = { '/admin/resources/nodes', { headerParameters - } + }, + ResourceApi._defaultBasePath ), /** * Set hot spare nodes corresponding to tenant at main tenant level. @@ -43,6 +45,7 @@ export const ResourceApi = { { body, headerParameters - } + }, + ResourceApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/resource-group-api.ts b/packages/ai-api/src/client/AI_CORE_API/resource-group-api.ts index 8cf1ed61e..b47bbe8e3 100644 --- a/packages/ai-api/src/client/AI_CORE_API/resource-group-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/resource-group-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -17,6 +17,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const ResourceGroupApi = { + _defaultBasePath: undefined, /** * Retrieve a list of resource groups for a given tenant. * @@ -40,7 +41,8 @@ export const ResourceGroupApi = { { queryParameters, headerParameters - } + }, + ResourceGroupApi._defaultBasePath ), /** * Create resource group to a given main tenant. The length of resource group id must be between 3 and 253. @@ -59,7 +61,8 @@ export const ResourceGroupApi = { { body, headerParameters - } + }, + ResourceGroupApi._defaultBasePath ), /** * Get a resource group of a given main tenant. @@ -78,7 +81,8 @@ export const ResourceGroupApi = { { pathParameters: { resourceGroupId }, headerParameters - } + }, + ResourceGroupApi._defaultBasePath ), /** * Replace some characteristics of the resource group, for instance labels. @@ -100,7 +104,8 @@ export const ResourceGroupApi = { pathParameters: { resourceGroupId }, body, headerParameters - } + }, + ResourceGroupApi._defaultBasePath ), /** * Delete a resource group of a given main tenant. @@ -119,6 +124,7 @@ export const ResourceGroupApi = { { pathParameters: { resourceGroupId }, headerParameters - } + }, + ResourceGroupApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/resource-quota-api.ts b/packages/ai-api/src/client/AI_CORE_API/resource-quota-api.ts index dea18a30e..636404ce7 100644 --- a/packages/ai-api/src/client/AI_CORE_API/resource-quota-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/resource-quota-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -14,6 +14,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const ResourceQuotaApi = { + _defaultBasePath: undefined, /** * Get the details about quota and usage for resource groups * @param queryParameters - Object containing the following keys: quotaOnly. @@ -30,7 +31,8 @@ export const ResourceQuotaApi = { { queryParameters, headerParameters - } + }, + ResourceQuotaApi._defaultBasePath ), /** * Get the details about quota and usage for executables @@ -48,7 +50,8 @@ export const ResourceQuotaApi = { { queryParameters, headerParameters - } + }, + ResourceQuotaApi._defaultBasePath ), /** * Get the details about quota and usage for applications @@ -66,7 +69,8 @@ export const ResourceQuotaApi = { { queryParameters, headerParameters - } + }, + ResourceQuotaApi._defaultBasePath ), /** * Get the details about quota and usage for repositories @@ -84,7 +88,8 @@ export const ResourceQuotaApi = { { queryParameters, headerParameters - } + }, + ResourceQuotaApi._defaultBasePath ), /** * Get the details about quota and usage for tenant-level generic secrets @@ -102,7 +107,8 @@ export const ResourceQuotaApi = { { queryParameters, headerParameters - } + }, + ResourceQuotaApi._defaultBasePath ), /** * Get the details about quota and usage for docker registry secrets @@ -120,7 +126,8 @@ export const ResourceQuotaApi = { { queryParameters, headerParameters - } + }, + ResourceQuotaApi._defaultBasePath ), /** * Get the details about quota and usage for deployments @@ -138,6 +145,7 @@ export const ResourceQuotaApi = { { queryParameters, headerParameters - } + }, + ResourceQuotaApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/scenario-api.ts b/packages/ai-api/src/client/AI_CORE_API/scenario-api.ts index f1891d7e4..f158de5f1 100644 --- a/packages/ai-api/src/client/AI_CORE_API/scenario-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/scenario-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -15,15 +15,21 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const ScenarioApi = { + _defaultBasePath: undefined, /** * Retrieve a list of all available scenarios. * @param headerParameters - Object containing the following keys: AI-Resource-Group. * @returns The request builder, use the `execute()` method to trigger the request. */ scenarioQuery: (headerParameters: { 'AI-Resource-Group': string }) => - new OpenApiRequestBuilder('get', '/lm/scenarios', { - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/lm/scenarios', + { + headerParameters + }, + ScenarioApi._defaultBasePath + ), /** * Retrieve details for a scenario specified by scenarioId. * @param scenarioId - Scenario identifier @@ -34,10 +40,15 @@ export const ScenarioApi = { scenarioId: string, headerParameters: { 'AI-Resource-Group': string } ) => - new OpenApiRequestBuilder('get', '/lm/scenarios/{scenarioId}', { - pathParameters: { scenarioId }, - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/lm/scenarios/{scenarioId}', + { + pathParameters: { scenarioId }, + headerParameters + }, + ScenarioApi._defaultBasePath + ), /** * Retrieve a list of scenario versions based on the versions of executables * available within that scenario. @@ -59,7 +70,8 @@ export const ScenarioApi = { pathParameters: { scenarioId }, queryParameters, headerParameters - } + }, + ScenarioApi._defaultBasePath ), /** * Retrieve information about all models available in LLM global scenario @@ -77,6 +89,7 @@ export const ScenarioApi = { { pathParameters: { scenarioId }, headerParameters - } + }, + ScenarioApi._defaultBasePath ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-api-error-with-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-api-error-with-id.ts index 986fae030..e8ef1672d 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-api-error-with-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-api-error-with-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-api-error.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-api-error.ts index 6bccf8731..2cb83a594 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-api-error.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-api-error.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-argument-binding-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-argument-binding-list.ts index 0ee60b62e..a298e0737 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-argument-binding-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-argument-binding-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-argument-binding.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-argument-binding.ts index 219b0cb74..f270fbd54 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-argument-binding.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-argument-binding.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-array.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-array.ts index ada8dce73..f3c55bbc5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-array.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-array.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-creation-response-message.ts index 0068aeac3..3f5648293 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-creation-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-creation-response.ts index e5b4c290b..fc914b9bc 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-creation-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-creation-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-description.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-description.ts index 83e6da0f1..1c8a913df 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-description.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-description.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-id.ts index fc03c003f..1f9b27aee 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-list.ts index a51730620..f8be24e41 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-name.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-name.ts index a5219b9cb..b0e6319e2 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-name.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-name.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-post-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-post-data.ts index d8abac216..1e2499b94 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-post-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-post-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-url.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-url.ts index 11f76aee0..bd4c36dc6 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-url.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact-url.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact.ts index 877433bc8..4fe33be55 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-artifact.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-backend-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-backend-details.ts index 5bfbac1d5..ee84fa308 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-backend-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-backend-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-base-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-base-data.ts index 7eb98a9ef..1feb8df3c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-base-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-base-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-creation-response-message.ts index 5780c58d4..3b8a421fe 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-creation-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-creation-response.ts index a6a1c6a58..6b246344a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-creation-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-creation-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-id.ts index e571d2932..d770df357 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-list.ts index 6fa863daf..593ae7ad0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-name.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-name.ts index 8d3fb55bc..3bbf383f5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-name.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration-name.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration.ts index 1a2a74f78..c7de205cb 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-configuration.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-creation-response-message.ts index d0303c611..9552397c5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-cron.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-cron.ts index 56acc9c76..8a9e2e1d5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-cron.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-cron.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-bulk-modification-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-bulk-modification-request.ts index 97c4ad231..e6d6fb71e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-bulk-modification-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-bulk-modification-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-bulk-modification-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-bulk-modification-response.ts index aad4be81e..a628e60b7 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-bulk-modification-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-bulk-modification-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-request.ts index 94c59979b..334421082 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-response-message.ts index 1ecc44d1f..9d0cea308 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-response.ts index ad88f59d8..84abc07e8 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-creation-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-deletion-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-deletion-response-message.ts index 300a72a51..cd1226123 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-deletion-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-deletion-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-deletion-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-deletion-response.ts index 7af98b898..f86b6e3a2 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-deletion-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-deletion-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-details.ts index 7f9f09ee9..b81495e1b 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-id.ts index 39ca218ad..7601d8678 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-list.ts index baa5fa8d4..6a3d1fd43 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request-list.ts index 5068931ce..12c7a23f2 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request-with-identifier.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request-with-identifier.ts index 5515007b2..1f24bc1f1 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request-with-identifier.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request-with-identifier.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request.ts index b067d2a21..c8f9dad13 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response-list.ts index 0f9b4d220..99d3345c8 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response-message.ts index e27c7812b..6065395e3 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response.ts index 518fd75fc..1a077e38f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-modification-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-response-with-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-response-with-details.ts index fa4d298ba..cd02b2c4f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-response-with-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-response-with-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status-details.ts index d6a4c3d7b..38c38b688 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status-message.ts index 446261da7..059a26f1b 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status.ts index 68b084a33..35e8ba840 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-status.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-target-status.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-target-status.ts index 47781a654..7e33daf26 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-target-status.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-target-status.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-time-to-live.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-time-to-live.ts index 6f48bab2a..8027e7533 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-time-to-live.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-time-to-live.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-url.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-url.ts index dda61e620..00af4bc65 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-url.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment-url.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment.ts index 2ed7bc233..00066c218 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-deployment.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-enactment-creation-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-enactment-creation-request.ts index a2d4c3370..fc402edf9 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-enactment-creation-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-enactment-creation-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-artifact-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-artifact-list.ts index d0534d018..cca9c3fa0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-artifact-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-artifact-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-artifact.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-artifact.ts index bbc8d4889..a677533eb 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-artifact.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-artifact.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-id.ts index 056dccdf6..10f15e07d 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-list.ts index 1a31e64a3..e893d953a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-parameter-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-parameter-list.ts index e06abe81b..de50aebd4 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-parameter-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-parameter-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-parameter.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-parameter.ts index 7bbef907b..890e01a14 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-parameter.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable-parameter.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable.ts index 4f9ae0527..c2914240c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-executable.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-bulk-modification-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-bulk-modification-request.ts index df5eec7d0..6a6224457 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-bulk-modification-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-bulk-modification-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-bulk-modification-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-bulk-modification-response.ts index 72b117147..eac0974b7 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-bulk-modification-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-bulk-modification-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-creation-response-message.ts index 888526b99..52a51c0bd 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-creation-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-creation-response.ts index 38a938d1a..538b62373 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-creation-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-creation-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-deletion-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-deletion-response-message.ts index c767ce082..2ca8655bc 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-deletion-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-deletion-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-deletion-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-deletion-response.ts index a425cd802..29f870270 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-deletion-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-deletion-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-id.ts index f7c4c3e13..48c85fbd5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-list.ts index 0d466f4a8..12d96c2ae 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request-list.ts index 28f799120..04883ba32 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request-with-identifier.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request-with-identifier.ts index 211eac2a1..dae5bf427 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request-with-identifier.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request-with-identifier.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request.ts index 4f7e0c100..abdf09b83 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response-list.ts index 9e7118529..7309d8d19 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response-message.ts index f53440d33..cf4d08940 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response.ts index 0a2878bb9..1852ccde2 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-modification-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-response-with-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-response-with-details.ts index 499b3cf5a..9d6cc0016 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-response-with-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-response-with-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-data.ts index 614a38c6a..d9c63637c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-response-message.ts index 91860238c..77cf7aee0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-response.ts index a9dadfe99..3719734d3 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-creation-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-deletion-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-deletion-response-message.ts index 6ae6266a0..9f259cad2 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-deletion-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-deletion-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-deletion-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-deletion-response.ts index d0e3f905e..1fd34e08c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-deletion-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-deletion-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-id.ts index 442525db3..c7e676ff5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-list.ts index 59fa61019..f3d279819 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-request.ts index a01aa2b5c..87a02dcf7 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-response-message.ts index 6c2e66cab..be9b54e10 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-response.ts index c9aa0bcd0..bc5825299 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-modification-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-status.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-status.ts index 678715103..227132414 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-status.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule-status.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule.ts index d13886e13..501a505cd 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-schedule.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status-details.ts index ea68b58d4..c95412161 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status-message.ts index 68a4cf442..bea730d26 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status.ts index c8addd619..19ccf8b92 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution-status.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution.ts index cd7e45746..f1fbbcdc7 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-execution.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-id.ts index 0c1ccd37a..28b90f942 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-key.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-key.ts index 5e6f26308..bbc73fff8 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-key.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-key.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-list.ts index e658e4aa2..0bdd4fa33 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-value.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-value.ts index c38c784fc..e9dbd6935 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-value.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-label-value.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-label.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-label.ts index fd506e5b5..66842035f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-label.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-label.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-data.ts index 5dbea256c..164c89ee3 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-result-item.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-result-item.ts index 21b0cd684..d474fb83d 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-result-item.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-result-item.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-result.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-result.ts index aea1e683a..b5e8a4900 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-result.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-log-common-result.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-base-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-base-data.ts index 703299e10..4405f4d8f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-base-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-base-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-list.ts index b1b78d85c..dbeccdd7c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-version-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-version-list.ts index 08fadf7e6..03c8f03a1 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-version-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-version-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-version.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-version.ts index 6c0536650..1ede49f13 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-version.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-model-version.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-parameter-argument-binding-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-parameter-argument-binding-list.ts index 6e7bf9c9d..3ce2397de 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-parameter-argument-binding-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-parameter-argument-binding-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-parameter-argument-binding.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-parameter-argument-binding.ts index ba73c9416..40ac4e043 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-parameter-argument-binding.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-parameter-argument-binding.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-resources-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-resources-details.ts index c92afb301..a1e6275d3 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-resources-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-resources-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scaling-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scaling-details.ts index d7bf723fc..7bdb670d3 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scaling-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scaling-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-id.ts index a9a810aff..b61c37865 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label-key.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label-key.ts index 3c5295588..9f30316f1 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label-key.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label-key.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label-list.ts index c38f26f77..29ee8a02c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label.ts index 0d953f958..ff23707e1 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-label.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-list.ts index 55cb25020..6cf8a7320 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario.ts index 592d8d154..299dcac83 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-scenario.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-url.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-url.ts index 0ca6c3c81..eefe36eca 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-url.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-url.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-description.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-description.ts index 174c1db79..e9c29f20f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-description.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-description.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-id.ts index d4a2a7cac..d86ae20d6 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-list.ts index b8032d6ac..1cbb5b1c2 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-version-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/ai-version.ts b/packages/ai-api/src/client/AI_CORE_API/schema/ai-version.ts index 127e15ade..75bbab94e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/ai-version.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/ai-version.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-all-argo-cd-application-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-all-argo-cd-application-data.ts index dbdf07953..cffe5a6b2 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-all-argo-cd-application-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-all-argo-cd-application-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-base-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-base-data.ts index c8cb7d872..3c7fca404 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-base-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-base-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-creation-response-message.ts index 4fba3edeb..719839e76 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-creation-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-creation-response.ts index 71c12222a..63a7d6bc7 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-creation-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-creation-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-data-repo-name.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-data-repo-name.ts index f162dccd6..1d4fd1bbd 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-data-repo-name.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-data-repo-name.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-data.ts index 2b6b06b7c..d2fab2709 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-deletion-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-deletion-response-message.ts index 73bb69352..2b8a9a2e5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-deletion-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-deletion-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-deletion-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-deletion-response.ts index b0b10a24d..f02bdb6cf 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-deletion-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-deletion-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-modification-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-modification-response-message.ts index 0ec31e28b..ddb779f08 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-modification-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-modification-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-modification-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-modification-response.ts index 0bcfe1b5b..d83e7502a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-modification-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-modification-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-refresh-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-refresh-response-message.ts index a3cb224e7..0b0233a58 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-refresh-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-refresh-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-refresh-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-refresh-response.ts index dca2fe478..e37155994 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-refresh-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-refresh-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-status.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-status.ts index 667d40de9..eda5833be 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-status.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-application-status.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-creation-response-message.ts index a85b0798b..bb0307758 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-creation-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-creation-response.ts index a00a3f12c..a4d408499 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-creation-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-creation-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-credentials.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-credentials.ts index 1b7784e5d..bffe1d99c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-credentials.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-credentials.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-data-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-data-response.ts index 402043128..e100e35df 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-data-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-data-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-data.ts index a688b1391..c282d89c0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-deletion-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-deletion-response-message.ts index 310bc6a57..6254326cd 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-deletion-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-deletion-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-deletion-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-deletion-response.ts index 834c135d3..adcb94f14 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-deletion-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-deletion-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-details.ts index a54c307bf..65c622832 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-modification-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-modification-response-message.ts index 5c71ad52e..d2fcd4f28 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-modification-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-modification-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-modification-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-modification-response.ts index 65d494991..ec5f9fbe4 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-modification-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-argo-cd-repository-modification-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-common-resource-quota-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-common-resource-quota-response.ts index a88ef127c..e8a8cf4c4 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-common-resource-quota-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-common-resource-quota-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-creation-response-message.ts index 36da96937..590df2ad7 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-quota-item.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-quota-item.ts index 6b19585d3..77de770f2 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-quota-item.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-quota-item.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-quota.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-quota.ts index addc6cfec..8d9f26dcc 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-quota.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-quota.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-resource-quota-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-resource-quota-response.ts index bfcc6769f..0526fae02 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-resource-quota-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-resource-quota-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-usage.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-usage.ts index 44606cf12..0320c47dd 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-usage.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-deployment-usage.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-error-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-error-response.ts index 65a57cb6f..945bf2a2d 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-error-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-error-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-error.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-error.ts index b1564067c..e01ba745d 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-error.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-error.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-event.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-event.ts index a9cdbb9d9..23e3f345e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-event.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-event.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-executable-resource-quota-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-executable-resource-quota-response.ts index 417ae2096..ee1cba26b 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-executable-resource-quota-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-executable-resource-quota-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-extended-service.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-extended-service.ts index aaf59a372..6b86cc25e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-extended-service.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-extended-service.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-data-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-data-response.ts index 85004a071..26d037650 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-data-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-data-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-data.ts index ab173dea1..27dc6ddfc 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-details.ts index 1b0732042..8ee7e0f56 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-patch-body.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-patch-body.ts index a46554513..2b85222a9 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-patch-body.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-patch-body.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-post-body.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-post-body.ts index 752ec56bd..ce68826db 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-post-body.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-generic-secret-post-body.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-id.ts index 17d8a55a4..9b4f3d55c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-annotation.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-annotation.ts index 21164110c..a1a7346e4 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-annotation.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-annotation.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-annotations.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-annotations.ts index 2c25ab226..9a3af4aa7 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-annotations.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-annotations.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-label.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-label.ts index 334ab73c0..de69a066a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-label.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-label.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-labels.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-labels.ts index 26d9352c4..f28ef88ad 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-labels.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group-labels.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group.ts index bf90a6474..d12012433 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-internal-resource-group.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-list-generic-secrets-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-list-generic-secrets-response.ts index a7f1bb2f5..95a70a41b 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-list-generic-secrets-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-list-generic-secrets-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-message.ts index bcae4d25b..3cca8b536 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-name.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-name.ts index 4e8d7485f..805f827cb 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-name.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-name.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-get-resource-plans.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-get-resource-plans.ts index ffcffbbe3..c31b304af 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-get-resource-plans.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-get-resource-plans.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-get-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-get-response.ts index 001bef961..0fa21ec87 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-get-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-get-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-base.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-base.ts index a1acfea87..6e2d86c59 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-base.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-base.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-deletion-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-deletion-response-message.ts index 7e8c44221..f18d963b0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-deletion-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-deletion-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-deletion-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-deletion-response.ts index ebb2cd42c..2b18bcb2b 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-deletion-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-deletion-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-label.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-label.ts index 600271855..588e30cbf 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-label.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-label.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-labels.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-labels.ts index a7a1c7397..abd4118ae 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-labels.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-labels.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-list.ts index 5a9f28bbd..531e137a6 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-patch-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-patch-request.ts index 307e0cbf7..cf1a18c20 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-patch-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group-patch-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group.ts index ac0482c4c..af038cf07 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-group.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-groups-post-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-groups-post-request.ts index a61159ca4..bb45b2a6d 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-groups-post-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-groups-post-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-body.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-body.ts index b88ffbd58..82ac14350 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-body.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-body.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-nodes.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-nodes.ts index f21e572bb..4bd818f04 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-nodes.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-nodes.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-resource-plans.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-resource-plans.ts index b9bafa052..2f9a4728a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-resource-plans.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-resource-plans.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-response.ts index ed431a749..17d52ef6c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-resource-patch-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-broker-secret.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-broker-secret.ts index 046df8e44..cc5d9ca94 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-broker-secret.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-broker-secret.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-capabilities.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-capabilities.ts index 0f74bb560..93e68e9e9 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-capabilities.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-capabilities.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-list.ts index 282c9543b..5b463f87a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item-extend-catalog.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item-extend-catalog.ts index d5ca2e1d5..259b4bb33 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item-extend-catalog.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item-extend-catalog.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item-extend-credentials.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item-extend-credentials.ts index 8c43c59d8..047b58183 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item-extend-credentials.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item-extend-credentials.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item.ts index 6e62454ba..be709e21f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog-item.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog.ts index 3b1f2d1fd..14c0fc90c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-catalog.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-plan-item-metadata.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-plan-item-metadata.ts index f263e131e..8a3dad4e0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-plan-item-metadata.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-plan-item-metadata.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-plan-item.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-plan-item.ts index a11b9e5f9..0c64430bf 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-plan-item.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service-service-plan-item.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service.ts index c238c3454..ecdbe5703 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-service.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-tenant.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-tenant.ts index a30f2a886..6e5f04b96 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-tenant.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-tenant.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-url.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-url.ts index 8dc0ef855..c424c0240 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-url.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-url.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-usage-resource-plan-item.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-usage-resource-plan-item.ts index fb8e81efc..04e567d5e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-usage-resource-plan-item.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknd-usage-resource-plan-item.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-name-component.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-name-component.ts index 61d3afd3d..4bb5ab971 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-name-component.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-name-component.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-creation-response-message.ts index d517b03c6..c14baef22 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-creation-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-creation-response.ts index 1dbf90627..e1defdc20 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-creation-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-creation-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-deletion-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-deletion-response-message.ts index 7da28887e..71d18d3b4 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-deletion-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-deletion-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-deletion-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-deletion-response.ts index 6d629cae7..63a1c0627 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-deletion-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-deletion-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-modification-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-modification-response-message.ts index ebc0cd8d7..9cde87225 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-modification-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-modification-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-modification-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-modification-response.ts index df660e122..db2ba6b53 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-modification-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-modification-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-status-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-status-response.ts index 0bf3c2836..091294b9f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-status-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-status-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-status.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-status.ts index 389091e67..e980247ca 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-status.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-status.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-with-sensitive-data-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-with-sensitive-data-request.ts index bf0cc29fc..8106fe242 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-with-sensitive-data-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bcknddocker-registry-secret-with-sensitive-data-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-creation-response-message.ts index 5e65ecf4a..af053aaec 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-creation-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-creation-response.ts index 1704eca81..7bee4441e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-creation-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-creation-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-deletion-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-deletion-response-message.ts index 10b17c845..c52e276e1 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-deletion-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-deletion-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-deletion-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-deletion-response.ts index f16ed6712..515d1e738 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-deletion-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-deletion-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-modification-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-modification-response-message.ts index c9605fe60..5f5cf105a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-modification-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-modification-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-modification-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-modification-response.ts index 9f2a884b3..60a450440 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-modification-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-modification-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-status-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-status-response.ts index 05b4d33c7..c11b35077 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-status-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-status-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-status.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-status.ts index 0db2020f1..73f66cc35 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-status.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-status.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-with-sensitive-data-request-for-post-call.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-with-sensitive-data-request-for-post-call.ts index fefa1bac7..e56d327e3 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-with-sensitive-data-request-for-post-call.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-with-sensitive-data-request-for-post-call.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-with-sensitive-data-request.ts b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-with-sensitive-data-request.ts index 3a1947e91..0788b82b7 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-with-sensitive-data-request.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/bckndobject-store-secret-with-sensitive-data-request.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/d-set-error.ts b/packages/ai-api/src/client/AI_CORE_API/schema/d-set-error.ts index ca5233474..a215b19b0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/d-set-error.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/d-set-error.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/d-set-file-creation-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/d-set-file-creation-response.ts index ff2f24e83..00ddeaef5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/d-set-file-creation-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/d-set-file-creation-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/d-set-url.ts b/packages/ai-api/src/client/AI_CORE_API/schema/d-set-url.ts index 17829d6b2..da5d220c9 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/d-set-url.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/d-set-url.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/index.ts b/packages/ai-api/src/client/AI_CORE_API/schema/index.ts index c5e807ede..9068efd6a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/index.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/index.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-aggregation-attribute.ts b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-aggregation-attribute.ts index cce29c98f..bf8546960 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-aggregation-attribute.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-aggregation-attribute.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-api-error.ts b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-api-error.ts index 41b8473c6..bde15bf1b 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-api-error.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-api-error.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-array-of-column-names.ts b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-array-of-column-names.ts index 3922fcb88..ba2bde044 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-array-of-column-names.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-array-of-column-names.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-column-name.ts b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-column-name.ts index 0c057fbdb..c4ffe241c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-column-name.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-column-name.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-count-aggregate.ts b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-count-aggregate.ts index 1d3aea915..c1558396f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-count-aggregate.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-count-aggregate.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row-item.ts b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row-item.ts index 97ab13a5b..cf432110c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row-item.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row-item.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row-list.ts index 101d3b5a6..885f2f082 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row.ts b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row.ts index 6c20b4cf2..25bc97a8c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-row.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-set.ts b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-set.ts index 856b226c8..ad9291bf4 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-set.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/kpi-result-set.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/meta-ai-api.ts b/packages/ai-api/src/client/AI_CORE_API/schema/meta-ai-api.ts index b21ac938f..c63287a1f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/meta-ai-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/meta-ai-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/meta-api-error.ts b/packages/ai-api/src/client/AI_CORE_API/schema/meta-api-error.ts index 5542aad4d..d8fc0b3df 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/meta-api-error.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/meta-api-error.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/meta-api-version.ts b/packages/ai-api/src/client/AI_CORE_API/schema/meta-api-version.ts index fdbfd87f8..e63a79e14 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/meta-api-version.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/meta-api-version.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/meta-capabilities.ts b/packages/ai-api/src/client/AI_CORE_API/schema/meta-capabilities.ts index e46379f04..39822245f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/meta-capabilities.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/meta-capabilities.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/meta-extensions.ts b/packages/ai-api/src/client/AI_CORE_API/schema/meta-extensions.ts index 8a5c1461a..ba97117ed 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/meta-extensions.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/meta-extensions.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/meta-version.ts b/packages/ai-api/src/client/AI_CORE_API/schema/meta-version.ts index b56199cba..a225bbb2e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/meta-version.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/meta-version.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rt-amessage.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rt-amessage.ts index 44e7d4f26..793048b3d 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rt-amessage.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rt-amessage.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rt-atimestamp.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rt-atimestamp.ts index b45d48d44..38f28c263 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rt-atimestamp.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rt-atimestamp.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-array.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-array.ts index d157cf7ac..4ec83c7c0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-array.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-array.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-label-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-label-list.ts index cc8cfd494..6c85fcfc9 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-label-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-label-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-label.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-label.ts index 0285f0760..dcf6d026e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-label.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-label.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-name.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-name.ts index becaf608c..3a9adf1e8 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-name.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-name.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-signature.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-signature.ts index 1a8be735a..98c2e3527 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-signature.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-signature.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-url.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-url.ts index 8fe5d89b8..d2a86284a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-url.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact-url.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact.ts index 2cf79ae35..3c6821251 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-artifact.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-backend-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-backend-details.ts index b61bd439c..40047bc95 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-backend-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-backend-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-creation-response-message.ts index 9a011ec0b..5749705d5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-cascade-update-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-cascade-update-response-message.ts index a8a35f3c5..9aa8b1270 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-cascade-update-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-cascade-update-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-creation-response-message.ts index 0b657f2b3..c9fb210a3 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-deletion-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-deletion-response-message.ts index ef16e6f53..eec7037ad 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-deletion-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-deletion-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-details.ts index bccca35ec..fa6c33114 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-id.ts index 5e0728cab..01e648a3c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-modification-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-modification-response-message.ts index 09a4c8777..b9d780a98 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-modification-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-modification-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-status-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-status-details.ts index 579b83072..19e1566e8 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-status-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-status-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-url.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-url.ts index 961a82c4b..79f0fa0ee 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-url.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment-url.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment.ts index aeccd37b6..15ca762fc 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-deployment.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-error-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-error-response.ts index 3068055ce..0f837e5ae 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-error-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-error-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-error.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-error.ts index 1ac359896..d6d162a44 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-error.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-error.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-argument-binding.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-argument-binding.ts index 95b85fd5e..5e9658bf0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-argument-binding.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-argument-binding.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-artifact.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-artifact.ts index a4befde1c..ec300c827 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-artifact.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-artifact.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-id.ts index a44c2625d..687a14e52 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-input-artifact-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-input-artifact-list.ts index 14cdd1220..78c021998 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-input-artifact-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-input-artifact-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-output-artifact-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-output-artifact-list.ts index aa9fb37c4..012f54488 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-output-artifact-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-output-artifact-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-parameter-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-parameter-list.ts index b8c65af92..805db4f1e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-parameter-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-parameter-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-parameter.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-parameter.ts index fb75a3512..2090be7ad 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-parameter.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable-parameter.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable.ts index 17982c081..df8e1e804 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-executable.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-creation-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-creation-response-message.ts index 97e10c5e4..8aa11af44 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-creation-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-creation-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-deletion-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-deletion-response-message.ts index e2aa13a15..bac57f071 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-deletion-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-deletion-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-id.ts index 43e7accfb..fb4288417 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-modification-response-message.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-modification-response-message.ts index e08bdc180..49db2eb99 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-modification-response-message.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-modification-response-message.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-status-details.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-status-details.ts index 885daa279..8d64c28a0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-status-details.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution-status-details.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution.ts index 8c625af53..078a84f07 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-execution.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-id.ts index 587e18ad7..fc0228bb8 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-input-artifact-argument-binding.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-input-artifact-argument-binding.ts index 714273a88..d5e51ed65 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-input-artifact-argument-binding.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-input-artifact-argument-binding.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-label-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-label-list.ts index 45a12dfd6..27355e0c8 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-label-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-label-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-label.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-label.ts index a040dec99..71790095c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-label.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-label.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-latest-running-target-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-latest-running-target-id.ts index 79d65b46f..3b62a5bcc 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-latest-running-target-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-latest-running-target-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-data.ts index 166f69e07..162d631a1 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-response.ts index d727e21c1..679a38b9c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-result-item.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-result-item.ts index 8aa0daa7e..fb8c27e1c 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-result-item.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-result-item.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-result.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-result.ts index 1bd709fdc..a0900d1ff 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-result.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-log-common-result.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-base-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-base-data.ts index acc82955f..124d0c23d 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-base-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-base-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-version-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-version-list.ts index 9fd008aa6..a1f781536 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-version-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-version-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-version.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-version.ts index eb7cf2ab7..e97ad68ac 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-version.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-model-version.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-output-artifact-argument-binding.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-output-artifact-argument-binding.ts index f86ee598d..19ea87359 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-output-artifact-argument-binding.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-output-artifact-argument-binding.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-scenario-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-scenario-id.ts index 51cb72086..3893da14e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-scenario-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-scenario-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-scenario.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-scenario.ts index 6e2ab4132..6ac43d24a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-scenario.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-scenario.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-target-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-target-id.ts index 052ac1449..f459d3808 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-target-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-target-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/rta-ttl.ts b/packages/ai-api/src/client/AI_CORE_API/schema/rta-ttl.ts index 9a5bcc73d..5804f4dab 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/rta-ttl.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/rta-ttl.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-api-error.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-api-error.ts index 6087b9df9..30b9ea464 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-api-error.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-api-error.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object-data.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object-data.ts index c26bc58c8..82ec1033f 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object-data.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object-data.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object-list.ts index 68ef4aa3b..2a3c4fe58 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object.ts index 3a2efd0c6..fa923cab6 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-custom-info-object.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-delete-metrics-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-delete-metrics-response.ts index 5f734e15f..acb59e155 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-delete-metrics-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-delete-metrics-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-details-error-response.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-details-error-response.ts index bf9baaaf2..57b63a8e6 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-details-error-response.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-details-error-response.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-execution-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-execution-id.ts index 4548b9139..7aabed1b5 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-execution-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-execution-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-generic-name.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-generic-name.ts index 36967d9ce..e34ca7bfd 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-generic-name.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-generic-name.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-list.ts index 64626c6b2..1b9086380 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-resource-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-resource-list.ts index 90e1283bb..de9a91129 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-resource-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-resource-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-resource.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-resource.ts index c56d5458d..ea8cb5952 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-resource.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric-resource.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric.ts index d68c13b88..7c0a8eba1 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-get-metric.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-label-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-label-list.ts index edbf19188..4eb020132 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-label-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-label-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-label-name.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-label-name.ts index 717d9c206..36510de70 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-label-name.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-label-name.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-label.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-label.ts index 9b03caf84..6d8e6f003 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-label.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-label.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-list.ts index dc20389a8..2eda79ae3 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-name.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-name.ts index bd7e564a0..3eba7e976 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-name.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-name.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-resource.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-resource.ts index baf69c91b..b26ac7c53 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-resource.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-resource.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-value.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-value.ts index 14754498e..922eb38ec 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-value.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric-value.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric.ts index 70ab18271..87d588b59 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-metric.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-mlapi-execution-id.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-mlapi-execution-id.ts index d8cc5f91c..3bb81d0d4 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-mlapi-execution-id.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-mlapi-execution-id.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-string-array.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-string-array.ts index a52f1c846..c7bfbfc27 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-string-array.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-string-array.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-tag-list.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-tag-list.ts index 9de1b0889..e1902f58e 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-tag-list.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-tag-list.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-tag.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-tag.ts index 1d84ae739..260ac1fd0 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-tag.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-tag.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trck-timestamp.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trck-timestamp.ts index cd6a2fc87..33503321b 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trck-timestamp.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trck-timestamp.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/schema/trckmetric-selector-permissible-values.ts b/packages/ai-api/src/client/AI_CORE_API/schema/trckmetric-selector-permissible-values.ts index 24221daa9..2e93fb843 100644 --- a/packages/ai-api/src/client/AI_CORE_API/schema/trckmetric-selector-permissible-values.ts +++ b/packages/ai-api/src/client/AI_CORE_API/schema/trckmetric-selector-permissible-values.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ diff --git a/packages/ai-api/src/client/AI_CORE_API/secret-api.ts b/packages/ai-api/src/client/AI_CORE_API/secret-api.ts index 138a0f030..dedc48a8a 100644 --- a/packages/ai-api/src/client/AI_CORE_API/secret-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/secret-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -15,6 +15,7 @@ import type { * This API is part of the 'AI_CORE_API' service. */ export const SecretApi = { + _defaultBasePath: undefined, /** * Lists all secrets corresponding to tenant. This retrieves metadata only, not the secret data itself. * @param queryParameters - Object containing the following keys: $top, $skip, $count. @@ -35,7 +36,8 @@ export const SecretApi = { { queryParameters, headerParameters - } + }, + SecretApi._defaultBasePath ), /** * Create a new generic secret in the corresponding resource group or at main tenant level. @@ -57,7 +59,8 @@ export const SecretApi = { { body, headerParameters - } + }, + SecretApi._defaultBasePath ), /** * Update secret credentials. Replace secret data with the provided data. @@ -82,7 +85,8 @@ export const SecretApi = { pathParameters: { secretName }, body, headerParameters - } + }, + SecretApi._defaultBasePath ), /** * Deletes the secret from provided resource group namespace @@ -98,8 +102,13 @@ export const SecretApi = { 'AI-Tenant-Scope'?: boolean; } ) => - new OpenApiRequestBuilder('delete', '/admin/secrets/{secretName}', { - pathParameters: { secretName }, - headerParameters - }) + new OpenApiRequestBuilder( + 'delete', + '/admin/secrets/{secretName}', + { + pathParameters: { secretName }, + headerParameters + }, + SecretApi._defaultBasePath + ) }; diff --git a/packages/ai-api/src/client/AI_CORE_API/service-api.ts b/packages/ai-api/src/client/AI_CORE_API/service-api.ts index 4ea02b980..f17ac9297 100644 --- a/packages/ai-api/src/client/AI_CORE_API/service-api.ts +++ b/packages/ai-api/src/client/AI_CORE_API/service-api.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 SAP SE or an SAP affiliate company. All rights reserved. + * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * * This is a generated file powered by the SAP Cloud SDK for JavaScript. */ @@ -10,6 +10,7 @@ import type { BckndServiceList, BckndExtendedService } from './schema/index.js'; * This API is part of the 'AI_CORE_API' service. */ export const ServiceApi = { + _defaultBasePath: undefined, /** * Retrieve a list of services for a given main tenant. * @@ -19,9 +20,14 @@ export const ServiceApi = { kubesubmitV4AiservicesGetAll: (headerParameters?: { Authorization?: string; }) => - new OpenApiRequestBuilder('get', '/admin/services', { - headerParameters - }), + new OpenApiRequestBuilder( + 'get', + '/admin/services', + { + headerParameters + }, + ServiceApi._defaultBasePath + ), /** * Get an service of a given main tenant. * @@ -39,6 +45,7 @@ export const ServiceApi = { { pathParameters: { serviceName }, headerParameters - } + }, + ServiceApi._defaultBasePath ) };