Skip to content

Commit

Permalink
Deploying to gh-pages from @ bbd7075 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfganggreschus committed Nov 20, 2023
1 parent 36ec456 commit 234ad8d
Show file tree
Hide file tree
Showing 396 changed files with 5,686 additions and 6,705 deletions.
8 changes: 4 additions & 4 deletions classes/BoardTaskStatusMapper.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ <h3 id="methods">
<tr>
<td class="col-md-4">
<span class="modifier-icon icon ion-ios-reset"></span>
<code>mapToResponse(status: <a href="../interfaces/ITaskStatus.html" target="_self">ITaskStatus</a>)</code>
<code>mapToResponse(status: <a href="../interfaces/TaskStatus.html" target="_self">TaskStatus</a>)</code>
</td>
</tr>

Expand Down Expand Up @@ -158,7 +158,7 @@ <h3 id="methods">
<tr>
<td>status</td>
<td>
<code><a href="../interfaces/ITaskStatus.html" target="_self" >ITaskStatus</a></code>
<code><a href="../interfaces/TaskStatus.html" target="_self" >TaskStatus</a></code>
</td>

<td>
Expand Down Expand Up @@ -191,11 +191,11 @@ <h3 id="methods">


<div class="tab-pane fade tab-source-code" id="source">
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { ITaskStatus } from &#x27;@shared/domain&#x27;;
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { TaskStatus } from &#x27;@shared/domain&#x27;;
import { BoardTaskStatusResponse } from &#x27;../controller/dto&#x27;;

export class BoardTaskStatusMapper {
static mapToResponse(status: ITaskStatus): BoardTaskStatusResponse {
static mapToResponse(status: TaskStatus): BoardTaskStatusResponse {
const dto &#x3D; new BoardTaskStatusResponse(status);

return dto;
Expand Down
8 changes: 4 additions & 4 deletions classes/BusinessError.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 id="constructor">Constructor</h3>
<tr>
<td class="col-md-4">
<span class="modifier">Protected</span>
<code>constructor(undefined: <a href="../interfaces/IErrorType.html" target="_self">IErrorType</a>, code: HttpStatus, details?: Record<string | >, cause?)</code>
<code>constructor(undefined: <a href="../interfaces/ErrorType.html" target="_self">ErrorType</a>, code: HttpStatus, details?: Record<string | >, cause?)</code>
</td>
</tr>
<tr>
Expand All @@ -188,7 +188,7 @@ <h3 id="constructor">Constructor</h3>
<tr>

<td>
<code><a href="../interfaces/IErrorType.html" target="_self" >IErrorType</a></code>
<code><a href="../interfaces/ErrorType.html" target="_self" >ErrorType</a></code>
</td>

<td>
Expand Down Expand Up @@ -490,7 +490,7 @@ <h3 id="methods">
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { HttpException, HttpStatus } from &#x27;@nestjs/common&#x27;;
import { ApiProperty, ApiPropertyOptional } from &#x27;@nestjs/swagger&#x27;;
import { ErrorResponse } from &#x27;@src/core/error/dto/error.response&#x27;;
import { IErrorType } from &#x27;@src/core/error/interface&#x27;;
import { ErrorType } from &#x27;@src/core/error/interface&#x27;;

/**
* Abstract base class for business errors, errors that are handled
Expand All @@ -514,7 +514,7 @@ <h3 id="methods">
readonly details?: Record&lt;string, unknown&gt;;

protected constructor(
{ type, title, defaultMessage }: IErrorType,
{ type, title, defaultMessage }: ErrorType,
code: HttpStatus &#x3D; HttpStatus.CONFLICT,
details?: Record&lt;string, unknown&gt;,
cause?: unknown
Expand Down
8 changes: 4 additions & 4 deletions classes/ClassEntityFactory.html
Original file line number Diff line number Diff line change
Expand Up @@ -1298,14 +1298,14 @@ <h3 id="methods">


<div class="tab-pane fade tab-source-code" id="source">
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { DeepPartial } from &#x27;fishery&#x27;;
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { ClassEntity, ClassEntityProps, ClassSourceOptionsEntity } from &#x27;@modules/class/entity&#x27;;
import { BaseFactory } from &#x27;@shared/testing/factory/base.factory&#x27;;
import { ClassEntity, ClassSourceOptionsEntity, IClassEntityProps } from &#x27;@modules/class/entity&#x27;;
import { ObjectId } from &#x27;bson&#x27;;
import { DeepPartial } from &#x27;fishery&#x27;;

class ClassEntityFactory extends BaseFactory&lt;ClassEntity, IClassEntityProps&gt; {
class ClassEntityFactory extends BaseFactory&lt;ClassEntity, ClassEntityProps&gt; {
withUserIds(userIds: ObjectId[]): this {
const params: DeepPartial&lt;IClassEntityProps&gt; &#x3D; {
const params: DeepPartial&lt;ClassEntityProps&gt; &#x3D; {
userIds,
};

Expand Down
22 changes: 11 additions & 11 deletions classes/CommonCartridgeFileBuilder.html
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ <h3 id="constructor">Constructor</h3>
<tbody>
<tr>
<td class="col-md-4">
<code>constructor(options: <a href="../undefineds/ICommonCartridgeFileBuilderOptions.html" target="_self">ICommonCartridgeFileBuilderOptions</a>)</code>
<code>constructor(options: <a href="../undefineds/CommonCartridgeFileBuilderOptions.html" target="_self">CommonCartridgeFileBuilderOptions</a>)</code>
</td>
</tr>
<tr>
Expand All @@ -180,7 +180,7 @@ <h3 id="constructor">Constructor</h3>
<td>options</td>

<td>
<code><a href="../miscellaneous/typealiases.html#ICommonCartridgeFileBuilderOptions" target="_self" >ICommonCartridgeFileBuilderOptions</a></code>
<code><a href="../miscellaneous/typealiases.html#CommonCartridgeFileBuilderOptions" target="_self" >CommonCartridgeFileBuilderOptions</a></code>
</td>

<td>
Expand Down Expand Up @@ -502,19 +502,19 @@ <h3 id="methods">
<div class="tab-pane fade tab-source-code" id="source">
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import AdmZip from &#x27;adm-zip&#x27;;
import { Builder } from &#x27;xml2js&#x27;;
import { CommonCartridgeElement } from &#x27;./common-cartridge-element.interface&#x27;;
import { CommonCartridgeVersion } from &#x27;./common-cartridge-enums&#x27;;
import { ICommonCartridgeElement } from &#x27;./common-cartridge-element.interface&#x27;;
import { CommonCartridgeManifestElement } from &#x27;./common-cartridge-manifest-element&#x27;;
import {
CommonCartridgeResourceItemElement,
ICommonCartridgeResourceProps,
} from &#x27;./common-cartridge-resource-item-element&#x27;;
import {
CommonCartridgeOrganizationItemElement,
ICommonCartridgeOrganizationProps,
} from &#x27;./common-cartridge-organization-item-element&#x27;;
import {
CommonCartridgeResourceItemElement,
ICommonCartridgeResourceProps,
} from &#x27;./common-cartridge-resource-item-element&#x27;;

export type ICommonCartridgeFileBuilderOptions &#x3D; {
export type CommonCartridgeFileBuilderOptions &#x3D; {
identifier: string;
title: string;
copyrightOwners: string;
Expand All @@ -541,11 +541,11 @@ <h3 id="methods">
private readonly zipBuilder: AdmZip
) {}

get organization(): ICommonCartridgeElement {
get organization(): CommonCartridgeElement {
return new CommonCartridgeOrganizationItemElement(this.props);
}

get resources(): ICommonCartridgeElement[] {
get resources(): CommonCartridgeElement[] {
return this.props.resources.map(
(resourceProps) &#x3D;&gt; new CommonCartridgeResourceItemElement(resourceProps, this.xmlBuilder)
);
Expand All @@ -570,7 +570,7 @@ <h3 id="methods">

private readonly resources &#x3D; new Array&lt;CommonCartridgeResourceItemElement&gt;();

constructor(private readonly options: ICommonCartridgeFileBuilderOptions) {}
constructor(private readonly options: CommonCartridgeFileBuilderOptions) {}

addOrganization(props: ICommonCartridgeOrganizationProps): ICommonCartridgeOrganizationBuilder {
const organizationBuilder &#x3D; new CommonCartridgeOrganizationBuilder(props, this.xmlBuilder, this.zipBuilder);
Expand Down
10 changes: 5 additions & 5 deletions classes/CommonCartridgeLtiResource.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ <h3>File</h3>
<h3>Implements</h3>
</p>
<p class="comment">
<code><a href="../interfaces/ICommonCartridgeElement.html" target="_self" >ICommonCartridgeElement</a></code>
<code><a href="../interfaces/ICommonCartridgeFile.html" target="_self" >ICommonCartridgeFile</a></code>
<code><a href="../interfaces/CommonCartridgeElement.html" target="_self" >CommonCartridgeElement</a></code>
<code><a href="../interfaces/CommonCartridgeFile.html" target="_self" >CommonCartridgeFile</a></code>
</p>


Expand Down Expand Up @@ -306,9 +306,9 @@ <h3 id="methods">

<div class="tab-pane fade tab-source-code" id="source">
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { Builder } from &#x27;xml2js&#x27;;
import { ICommonCartridgeElement } from &#x27;./common-cartridge-element.interface&#x27;;
import { ICommonCartridgeFile } from &#x27;./common-cartridge-file.interface&#x27;;
import { CommonCartridgeElement } from &#x27;./common-cartridge-element.interface&#x27;;
import { CommonCartridgeResourceType, CommonCartridgeVersion } from &#x27;./common-cartridge-enums&#x27;;
import { CommonCartridgeFile } from &#x27;./common-cartridge-file.interface&#x27;;

export type ICommonCartridgeLtiResourceProps &#x3D; {
type: CommonCartridgeResourceType.LTI;
Expand All @@ -320,7 +320,7 @@ <h3 id="methods">
url: string;
};

export class CommonCartridgeLtiResource implements ICommonCartridgeElement, ICommonCartridgeFile {
export class CommonCartridgeLtiResource implements CommonCartridgeElement, CommonCartridgeFile {
constructor(private readonly props: ICommonCartridgeLtiResourceProps, private readonly xmlBuilder: Builder) {}

canInline(): boolean {
Expand Down
18 changes: 9 additions & 9 deletions classes/CommonCartridgeManifestElement.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ <h3>File</h3>
<h3>Implements</h3>
</p>
<p class="comment">
<code><a href="../interfaces/ICommonCartridgeElement.html" target="_self" >ICommonCartridgeElement</a></code>
<code><a href="../interfaces/CommonCartridgeElement.html" target="_self" >CommonCartridgeElement</a></code>
</p>


Expand Down Expand Up @@ -116,7 +116,7 @@ <h3 id="constructor">Constructor</h3>
<tbody>
<tr>
<td class="col-md-4">
<code>constructor(props: <a href="../undefineds/ICommonCartridgeManifestProps.html" target="_self">ICommonCartridgeManifestProps</a>, metadataProps: <a href="../undefineds/ICommonCartridgeMetadataProps.html" target="_self">ICommonCartridgeMetadataProps</a>, organizations: <a href="../interfaces/ICommonCartridgeElement.html" target="_self">ICommonCartridgeElement[]</a>, resources: <a href="../interfaces/ICommonCartridgeElement.html" target="_self">ICommonCartridgeElement[]</a>)</code>
<code>constructor(props: <a href="../undefineds/ICommonCartridgeManifestProps.html" target="_self">ICommonCartridgeManifestProps</a>, metadataProps: <a href="../undefineds/ICommonCartridgeMetadataProps.html" target="_self">ICommonCartridgeMetadataProps</a>, organizations: <a href="../interfaces/CommonCartridgeElement.html" target="_self">CommonCartridgeElement[]</a>, resources: <a href="../interfaces/CommonCartridgeElement.html" target="_self">CommonCartridgeElement[]</a>)</code>
</td>
</tr>
<tr>
Expand Down Expand Up @@ -166,7 +166,7 @@ <h3 id="constructor">Constructor</h3>
<td>organizations</td>

<td>
<code><a href="../interfaces/ICommonCartridgeElement.html" target="_self" >ICommonCartridgeElement[]</a></code>
<code><a href="../interfaces/CommonCartridgeElement.html" target="_self" >CommonCartridgeElement[]</a></code>
</td>

<td>
Expand All @@ -178,7 +178,7 @@ <h3 id="constructor">Constructor</h3>
<td>resources</td>

<td>
<code><a href="../interfaces/ICommonCartridgeElement.html" target="_self" >ICommonCartridgeElement[]</a></code>
<code><a href="../interfaces/CommonCartridgeElement.html" target="_self" >CommonCartridgeElement[]</a></code>
</td>

<td>
Expand Down Expand Up @@ -248,22 +248,22 @@ <h3 id="methods">


<div class="tab-pane fade tab-source-code" id="source">
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { ICommonCartridgeElement } from &#x27;./common-cartridge-element.interface&#x27;;
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { CommonCartridgeElement } from &#x27;./common-cartridge-element.interface&#x27;;
import { CommonCartridgeVersion } from &#x27;./common-cartridge-enums&#x27;;
import { CommonCartridgeMetadataElement, ICommonCartridgeMetadataProps } from &#x27;./common-cartridge-metadata-element&#x27;;
import { CommonCartridgeOrganizationWrapperElement } from &#x27;./common-cartridge-organization-wrapper-element&#x27;;
import { CommonCartridgeResourceWrapperElement } from &#x27;./common-cartridge-resource-wrapper-element&#x27;;
import { CommonCartridgeVersion } from &#x27;./common-cartridge-enums&#x27;;

export type ICommonCartridgeManifestProps &#x3D; {
identifier: string;
};

export class CommonCartridgeManifestElement implements ICommonCartridgeElement {
export class CommonCartridgeManifestElement implements CommonCartridgeElement {
constructor(
private readonly props: ICommonCartridgeManifestProps,
private readonly metadataProps: ICommonCartridgeMetadataProps,
private readonly organizations: ICommonCartridgeElement[],
private readonly resources: ICommonCartridgeElement[]
private readonly organizations: CommonCartridgeElement[],
private readonly resources: CommonCartridgeElement[]
) {}

transform(): Record&lt;string, unknown&gt; {
Expand Down
6 changes: 3 additions & 3 deletions classes/CommonCartridgeMetadataElement.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ <h3>File</h3>
<h3>Implements</h3>
</p>
<p class="comment">
<code><a href="../interfaces/ICommonCartridgeElement.html" target="_self" >ICommonCartridgeElement</a></code>
<code><a href="../interfaces/CommonCartridgeElement.html" target="_self" >CommonCartridgeElement</a></code>
</p>


Expand Down Expand Up @@ -212,7 +212,7 @@ <h3 id="methods">


<div class="tab-pane fade tab-source-code" id="source">
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { ICommonCartridgeElement } from &#x27;./common-cartridge-element.interface&#x27;;
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { CommonCartridgeElement } from &#x27;./common-cartridge-element.interface&#x27;;
import { CommonCartridgeVersion } from &#x27;./common-cartridge-enums&#x27;;

export type ICommonCartridgeMetadataProps &#x3D; {
Expand All @@ -222,7 +222,7 @@ <h3 id="methods">
version: CommonCartridgeVersion;
};

export class CommonCartridgeMetadataElement implements ICommonCartridgeElement {
export class CommonCartridgeMetadataElement implements CommonCartridgeElement {
constructor(private readonly props: ICommonCartridgeMetadataProps) {}

transform(): Record&lt;string, unknown&gt; {
Expand Down
18 changes: 9 additions & 9 deletions classes/CommonCartridgeOrganizationBuilder.html
Original file line number Diff line number Diff line change
Expand Up @@ -334,19 +334,19 @@ <h3 id="accessors">
<div class="tab-pane fade tab-source-code" id="source">
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import AdmZip from &#x27;adm-zip&#x27;;
import { Builder } from &#x27;xml2js&#x27;;
import { CommonCartridgeElement } from &#x27;./common-cartridge-element.interface&#x27;;
import { CommonCartridgeVersion } from &#x27;./common-cartridge-enums&#x27;;
import { ICommonCartridgeElement } from &#x27;./common-cartridge-element.interface&#x27;;
import { CommonCartridgeManifestElement } from &#x27;./common-cartridge-manifest-element&#x27;;
import {
CommonCartridgeResourceItemElement,
ICommonCartridgeResourceProps,
} from &#x27;./common-cartridge-resource-item-element&#x27;;
import {
CommonCartridgeOrganizationItemElement,
ICommonCartridgeOrganizationProps,
} from &#x27;./common-cartridge-organization-item-element&#x27;;
import {
CommonCartridgeResourceItemElement,
ICommonCartridgeResourceProps,
} from &#x27;./common-cartridge-resource-item-element&#x27;;

export type ICommonCartridgeFileBuilderOptions &#x3D; {
export type CommonCartridgeFileBuilderOptions &#x3D; {
identifier: string;
title: string;
copyrightOwners: string;
Expand All @@ -373,11 +373,11 @@ <h3 id="accessors">
private readonly zipBuilder: AdmZip
) {}

get organization(): ICommonCartridgeElement {
get organization(): CommonCartridgeElement {
return new CommonCartridgeOrganizationItemElement(this.props);
}

get resources(): ICommonCartridgeElement[] {
get resources(): CommonCartridgeElement[] {
return this.props.resources.map(
(resourceProps) &#x3D;&gt; new CommonCartridgeResourceItemElement(resourceProps, this.xmlBuilder)
);
Expand All @@ -402,7 +402,7 @@ <h3 id="accessors">

private readonly resources &#x3D; new Array&lt;CommonCartridgeResourceItemElement&gt;();

constructor(private readonly options: ICommonCartridgeFileBuilderOptions) {}
constructor(private readonly options: CommonCartridgeFileBuilderOptions) {}

addOrganization(props: ICommonCartridgeOrganizationProps): ICommonCartridgeOrganizationBuilder {
const organizationBuilder &#x3D; new CommonCartridgeOrganizationBuilder(props, this.xmlBuilder, this.zipBuilder);
Expand Down
Loading

0 comments on commit 234ad8d

Please sign in to comment.