Merge for alpha 0.0.6 #61

Merged
niggl merged 39 commits from dev into main 2020-12-30 17:58:27 +00:00
Showing only changes of commit b7cbe2a0b4 - Show all commits

View File

@ -1,4 +1,4 @@
import { IsOptional, IsString } from 'class-validator'; import { IsBoolean, IsOptional, IsString } from 'class-validator';
import crypto from "crypto"; import crypto from "crypto";
import { StatsClient } from '../entities/StatsClient'; import { StatsClient } from '../entities/StatsClient';
/** /**
@ -15,7 +15,7 @@ export class CreateStatsClient {
/** /**
* Is the new client enabled. * Is the new client enabled.
*/ */
@IsString() @IsBoolean()
@IsOptional() @IsOptional()
enabled?: boolean; enabled?: boolean;