New Version 1.1.1

This commit is contained in:
Intevel ツ 2021-05-06 22:33:40 +02:00
parent ef75e438c2
commit e25673c2f7
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@fosscord/server-util",
"version": "1.1.0",
"version": "1.1.1",
"description": "Utility functions for the all server repositories",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@ -16,6 +16,7 @@ import {
} from "./Guild";
export interface Template extends Document {
id: string;
code: string;
name: string;
description ? : string;
@ -29,6 +30,7 @@ export interface Template extends Document {
}
export const TemplateSchema = new Schema({
id: String,
code: String,
name: String,
description: String,