Skip to content

Commit

Permalink
Merge branch 'develop' into hotfix/update-axios
Browse files Browse the repository at this point in the history
  • Loading branch information
LenKlose authored Mar 1, 2024
2 parents 6a11821 + 6633604 commit 8c6eb6a
Show file tree
Hide file tree
Showing 22 changed files with 25 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export async function _createDmsObjectDefaultStoreFileFunction(context: DvelopCo

/**
* Factory for the {@link createDmsObject}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link createDmsObject}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link createDmsObject}-function. A corresponding transformFunction has to be supplied.
* @category DmsObject
*/
export function createDmsObjectFactory<T>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function _deleteCurrentDmsObjectVersionDefaultTransformFunction(response:

/**
* Factory for the {@link deleteCurrentDmsObjectVersion}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link deleteCurrentDmsObjectVersion}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link deleteCurrentDmsObjectVersion}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category DmsObject
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async function getDmsObjectBlobContentRespone(

/**
* Factory for {@link getDmsObjectMainFile}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the getRepositories-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the getRepositories-function. A corresponding transformFunction has to be supplied.
* @internal
* @category DmsObject
*/
Expand All @@ -59,7 +59,7 @@ export function _getDmsObjectMainFileFactory<T>(

/**
* Factory for {@link getDmsObjectPdfFile}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the getRepositories-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the getRepositories-function. A corresponding transformFunction has to be supplied.
* @internal
* @category DmsObject
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export function _getDmsObjectDefaultTransformFunctionFactory(

/**
* Factory for {@link getDmsObject}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link getDmsObject}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link getDmsObject}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category DmsObject
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export interface LinkDmsObjectsParams {

/**
* Factory for {@link linkDmsObjects}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link linkDmsObjects}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link linkDmsObjects}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category DmsObject
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function formatProperties(properties: { key: string, values: string[] }[]): { [k

/**
* Factory for the {@link searchDmsObjects}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link storeFileFunction}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link storeFileFunction}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category DmsObject
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function _storeFileTemporarilyDefaultTransformFunction(response: HttpResp

/**
* Factory for the {@link storeFileFunction}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link storeFileFunction}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link storeFileFunction}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category DmsObject
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export interface UnlinkDmsObjectsParams {

/**
* Factory for {@link unlinkDmsObjects}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link unlinkDmsObjects}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link unlinkDmsObjects}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category DmsObject
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { HttpConfig, HttpResponse, _defaultHttpRequestFunction } from "../../uti
export type DmsObjectStatus = "Processing" | "Verification" | "Release";

/**
* Parameters for the {@link updateDmsObject}-function.
* Parameters for the {@link updateDmsObjectStatus}-function.
* @category DmsObject
*/
export interface UpdateDmsObjectStatusParams {
Expand All @@ -21,15 +21,15 @@ export interface UpdateDmsObjectStatusParams {
}

/**
* Default transform-function provided to the {@link updateDmsObject}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* Default transform-function provided to the {@link updateDmsObjectStatus}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @internal
* @category DmsObject
*/
export function _updateDmsObjectStatusDefaultTransformFunction(_: HttpResponse, __: DvelopContext, ___: UpdateDmsObjectStatusParams): void { } // no error indicates success. Returning void

/**
* Factory for the {@link updateDmsObject}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link updateDmsObject}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link updateDmsObjectStatus}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category DmsObject
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export async function updateDmsObjectDefaultStoreFileFunction(context: DvelopCon

/**
* Factory for the {@link updateDmsObject}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link updateDmsObject}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link updateDmsObject}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category DmsObject
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/dms/src/mapping/get-mappings/get-mappings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function _getDmsMappingDefaultTransformFunctionFactory() {

/**
* Factory for {@link getMappings}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link getMappings}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link getMappings}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category Mappings
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function _getRepositoriesDefaultTransformFunction(response: HttpResponse,

/**
* Factory for {@link getRepositories}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the getRepositories-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the getRepositories-function. A corresponding transformFunction has to be supplied.
* @internal
* @category Repository
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function _getRepositoryDefaultTransformFunction(response: HttpResponse, _

/**
* Factory for the {@link getRepository}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link getRepository}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link getRepository}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category Repository
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function _getAuthSessionDefaultTransformFunction(response: HttpResponse,

/**
* Factory for the {@link getAuthSession}-function. See internals for more information. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link getAuthSession}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link getAuthSession}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category Authentication
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function _getImpersonatedAuthSessionIdDefaultTransformFunction(response:

/**
* Factory for the {@link getImpersonatedAuthSessionId}}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link getImpersonatedAuthSessionId}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link getImpersonatedAuthSessionId}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category Authentication
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface RequestAppSessionParams {

/**
* Factory for the {@link requestAppSession}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link requestAppSession}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link requestAppSession}-function. A corresponding transformFunction has to be supplied.
* @category Authentication
*/
export function _requestAppSessionFactory<T>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function _validateAuthSessionIdDefaultTransformFunction(response: HttpRes

/**
* Factory for the {@link validateAuthSessionId}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link validateAuthSessionId}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link validateAuthSessionId}-function. A corresponding transformFunction has to be supplied.
* @category Authentication
*/
export function _validateAuthSessionIdFactory<T>(
Expand Down
2 changes: 1 addition & 1 deletion packages/task/src/tasks/complete-task/complete-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface CompleteTaskParams {

/**
* Factory for the {@link completeTask}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link completeTask}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link completeTask}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category Task
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/task/src/tasks/create-task/create-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function _createTaskDefaultTransformFunction(response: HttpResponse, _: D

/**
* Factory for the {@link createTask}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link createTask}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link createTask}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category Task
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/task/src/tasks/delete-task/delete-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface DeleteTaskParams {

/**
* Factory for the {@link deleteTask}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link deleteTask}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link deleteTask}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category Task
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/task/src/tasks/get-task-count/get-task-count.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function _getTaskCountDefaultTransformFunction(response: HttpResponse, _:

/**
* Factory for the {@link getTaskCount}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link getTaskCount}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link getTaskCount}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category Task
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/task/src/tasks/update-task/update-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export interface UpdateTaskParams {

/**
* Factory for the {@link updateTask}-function. See [Advanced Topics](https://github.com/d-velop/dvelop-sdk-node#advanced-topics) for more information.
* @typeparam T Return type of the {@link updateTask}-function. A corresponding transformFuntion has to be supplied.
* @typeparam T Return type of the {@link updateTask}-function. A corresponding transformFunction has to be supplied.
* @internal
* @category Task
*/
Expand Down

0 comments on commit 8c6eb6a

Please sign in to comment.