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", "name": "@fosscord/server-util",
"version": "1.1.0", "version": "1.1.1",
"description": "Utility functions for the all server repositories", "description": "Utility functions for the all server repositories",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View File

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