@brimble/models 2.4.85 → 2.4.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3 -1
- package/dist/plan_configuration.js +1 -0
- package/dist/project/index.js +4 -4
- package/dist/project/preview.js +1 -1
- package/dist/server.js +2 -2
- package/dist/types/index.d.ts +1 -0
- package/dist/types/plan_configuration.d.ts +1 -0
- package/dist/types/region.js +0 -1
- package/dist/types/volume.d.ts +16 -0
- package/dist/types/volume.js +2 -0
- package/dist/volume.d.ts +56 -0
- package/dist/volume.js +36 -0
- package/enum/index.ts +2 -2
- package/env.ts +1 -1
- package/index.ts +4 -2
- package/package.json +1 -1
- package/plan_configuration.ts +1 -0
- package/project/index.ts +4 -4
- package/project/preview.ts +1 -1
- package/server.ts +2 -2
- package/types/index.ts +1 -0
- package/types/plan_configuration.ts +1 -0
- package/types/region.ts +1 -1
- package/types/volume.ts +17 -0
- package/volume.ts +41 -0
package/dist/index.d.ts
CHANGED
|
@@ -24,8 +24,9 @@ export { default as PlanConfiguration } from "./plan_configuration";
|
|
|
24
24
|
export { default as AutoScalingGroup } from "./auto-scaling";
|
|
25
25
|
export { default as ComputeChange } from "./compute";
|
|
26
26
|
export { default as Region } from "./region";
|
|
27
|
-
export {
|
|
28
|
-
export {
|
|
27
|
+
export { default as Volume } from "./volume";
|
|
28
|
+
export { IUser, IGit, IProject, IPreview, IFollowing, IIntegration, IEnv, IServer, IDomain, IToken, IMember, ITeam, IInstalledIntegration, ILog, ISubscription, ICard, IDns, IRole, IPermission, IMemberPermission, IWallet, IDbImage, IJob, ILicense, IPlanConfiguration, IAutoScalingGroup, IComputeChange, IRegion, IVolume, } from "./types";
|
|
29
|
+
export { GIT_TYPE, INTEGRATION_TYPES, INTEGRATION_PROVIDERS, OAUTH_PERMISSIONS, ENVIRONMENT, SERVER_STATUS, ROLES, SUBSCRIPTION_PLAN_TYPE, PROJECT_STATUS, SUBSCRIPTION_STATUS, CARD_TYPES, DNS_TYPE, PERMISSION_TYPE, REQUEST_TYPE, ServiceType, DatabaseEngine, JobStatus, LicenseStatus, REGION_CONTINENT, } from "./enum";
|
|
29
30
|
import mongoose from "mongoose";
|
|
30
31
|
export declare const connectToMongo: (mongoUrl: string, config?: mongoose.ConnectOptions) => Promise<void>;
|
|
31
32
|
export declare const db: mongoose.Connection;
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
12
12
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
13
|
};
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.closeMongo = exports.db = exports.connectToMongo = exports.REGION_CONTINENT = exports.LicenseStatus = exports.JobStatus = exports.DatabaseEngine = exports.ServiceType = exports.REQUEST_TYPE = exports.PERMISSION_TYPE = exports.DNS_TYPE = exports.CARD_TYPES = exports.SUBSCRIPTION_STATUS = exports.PROJECT_STATUS = exports.SUBSCRIPTION_PLAN_TYPE = exports.ROLES = exports.SERVER_STATUS = exports.ENVIRONMENT = exports.OAUTH_PERMISSIONS = exports.INTEGRATION_PROVIDERS = exports.INTEGRATION_TYPES = exports.GIT_TYPE = exports.Region = exports.ComputeChange = exports.AutoScalingGroup = exports.PlanConfiguration = exports.Liscense = exports.Job = exports.DbImage = exports.Wallet = exports.Server = exports.Card = exports.Subscription = exports.Log = exports.Role = exports.MemberPermission = exports.Permission = exports.Member = exports.Team = exports.Token = exports.Env = exports.Dns = exports.Domain = exports.Integration = exports.Following = exports.Preview = exports.DeletedProject = exports.Project = exports.User = void 0;
|
|
15
|
+
exports.closeMongo = exports.db = exports.connectToMongo = exports.REGION_CONTINENT = exports.LicenseStatus = exports.JobStatus = exports.DatabaseEngine = exports.ServiceType = exports.REQUEST_TYPE = exports.PERMISSION_TYPE = exports.DNS_TYPE = exports.CARD_TYPES = exports.SUBSCRIPTION_STATUS = exports.PROJECT_STATUS = exports.SUBSCRIPTION_PLAN_TYPE = exports.ROLES = exports.SERVER_STATUS = exports.ENVIRONMENT = exports.OAUTH_PERMISSIONS = exports.INTEGRATION_PROVIDERS = exports.INTEGRATION_TYPES = exports.GIT_TYPE = exports.Volume = exports.Region = exports.ComputeChange = exports.AutoScalingGroup = exports.PlanConfiguration = exports.Liscense = exports.Job = exports.DbImage = exports.Wallet = exports.Server = exports.Card = exports.Subscription = exports.Log = exports.Role = exports.MemberPermission = exports.Permission = exports.Member = exports.Team = exports.Token = exports.Env = exports.Dns = exports.Domain = exports.Integration = exports.Following = exports.Preview = exports.DeletedProject = exports.Project = exports.User = void 0;
|
|
16
16
|
var user_1 = require("./user");
|
|
17
17
|
Object.defineProperty(exports, "User", { enumerable: true, get: function () { return __importDefault(user_1).default; } });
|
|
18
18
|
var project_1 = require("./project");
|
|
@@ -66,6 +66,8 @@ var compute_1 = require("./compute");
|
|
|
66
66
|
Object.defineProperty(exports, "ComputeChange", { enumerable: true, get: function () { return __importDefault(compute_1).default; } });
|
|
67
67
|
var region_1 = require("./region");
|
|
68
68
|
Object.defineProperty(exports, "Region", { enumerable: true, get: function () { return __importDefault(region_1).default; } });
|
|
69
|
+
var volume_1 = require("./volume");
|
|
70
|
+
Object.defineProperty(exports, "Volume", { enumerable: true, get: function () { return __importDefault(volume_1).default; } });
|
|
69
71
|
var enum_1 = require("./enum");
|
|
70
72
|
Object.defineProperty(exports, "GIT_TYPE", { enumerable: true, get: function () { return enum_1.GIT_TYPE; } });
|
|
71
73
|
Object.defineProperty(exports, "INTEGRATION_TYPES", { enumerable: true, get: function () { return enum_1.INTEGRATION_TYPES; } });
|
|
@@ -13,6 +13,7 @@ const PlanConfigurationSchema = new mongoose_1.Schema({
|
|
|
13
13
|
build_minutes: { type: Number, required: true },
|
|
14
14
|
log_retention: { type: Number, required: true },
|
|
15
15
|
bandwidth: { type: Number, required: true },
|
|
16
|
+
price: { type: Number, required: true },
|
|
16
17
|
plan_type: {
|
|
17
18
|
type: String,
|
|
18
19
|
enum: Object.values(enum_1.SUBSCRIPTION_PLAN_TYPE),
|
package/dist/project/index.js
CHANGED
|
@@ -21,7 +21,7 @@ const projectSchema = new mongoose_1.Schema({
|
|
|
21
21
|
},
|
|
22
22
|
healthCheckPath: {
|
|
23
23
|
type: String,
|
|
24
|
-
required: false
|
|
24
|
+
required: false,
|
|
25
25
|
},
|
|
26
26
|
domains: [
|
|
27
27
|
{
|
|
@@ -80,15 +80,15 @@ const projectSchema = new mongoose_1.Schema({
|
|
|
80
80
|
},
|
|
81
81
|
passwordEnabled: {
|
|
82
82
|
type: Boolean,
|
|
83
|
-
default: false
|
|
83
|
+
default: false,
|
|
84
84
|
},
|
|
85
85
|
backupEnabled: {
|
|
86
86
|
type: Boolean,
|
|
87
|
-
default: false
|
|
87
|
+
default: false,
|
|
88
88
|
},
|
|
89
89
|
disabled: {
|
|
90
90
|
type: Boolean,
|
|
91
|
-
default: false
|
|
91
|
+
default: false,
|
|
92
92
|
},
|
|
93
93
|
password: {
|
|
94
94
|
type: String,
|
package/dist/project/preview.js
CHANGED
package/dist/server.js
CHANGED
|
@@ -21,7 +21,7 @@ const serverSchema = new mongoose_1.Schema({
|
|
|
21
21
|
},
|
|
22
22
|
domain: {
|
|
23
23
|
required: false,
|
|
24
|
-
type: String
|
|
24
|
+
type: String,
|
|
25
25
|
},
|
|
26
26
|
webhook_url: String,
|
|
27
27
|
ip_address: {
|
|
@@ -56,7 +56,7 @@ const serverSchema = new mongoose_1.Schema({
|
|
|
56
56
|
tag: String,
|
|
57
57
|
firewall_id: {
|
|
58
58
|
required: false,
|
|
59
|
-
type: String
|
|
59
|
+
type: String,
|
|
60
60
|
},
|
|
61
61
|
specifications: {
|
|
62
62
|
type: Object,
|
package/dist/types/index.d.ts
CHANGED
package/dist/types/region.js
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Document } from "mongoose";
|
|
2
|
+
import { IUser } from "./user";
|
|
3
|
+
import { ITeam } from "./team";
|
|
4
|
+
import { ISubscription } from "./subscription";
|
|
5
|
+
import { IRegion } from "./region";
|
|
6
|
+
export interface IVolume extends Document {
|
|
7
|
+
name: string;
|
|
8
|
+
user?: IUser;
|
|
9
|
+
team?: ITeam;
|
|
10
|
+
subscription: ISubscription;
|
|
11
|
+
region: IRegion;
|
|
12
|
+
size: number;
|
|
13
|
+
mount_path?: string;
|
|
14
|
+
created_at?: Date;
|
|
15
|
+
updated_at?: Date;
|
|
16
|
+
}
|
package/dist/volume.d.ts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
+
/// <reference types="mongoose/types/callback" />
|
|
3
|
+
/// <reference types="mongoose/types/collection" />
|
|
4
|
+
/// <reference types="mongoose/types/connection" />
|
|
5
|
+
/// <reference types="mongoose/types/cursor" />
|
|
6
|
+
/// <reference types="mongoose/types/document" />
|
|
7
|
+
/// <reference types="mongoose/types/error" />
|
|
8
|
+
/// <reference types="mongoose/types/expressions" />
|
|
9
|
+
/// <reference types="mongoose/types/helpers" />
|
|
10
|
+
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
+
/// <reference types="mongoose/types/indexes" />
|
|
12
|
+
/// <reference types="mongoose/types/models" />
|
|
13
|
+
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
+
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
+
/// <reference types="mongoose/types/populate" />
|
|
16
|
+
/// <reference types="mongoose/types/query" />
|
|
17
|
+
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
+
/// <reference types="mongoose/types/schematypes" />
|
|
19
|
+
/// <reference types="mongoose/types/session" />
|
|
20
|
+
/// <reference types="mongoose/types/types" />
|
|
21
|
+
/// <reference types="mongoose/types/utility" />
|
|
22
|
+
/// <reference types="mongoose/types/validation" />
|
|
23
|
+
/// <reference types="mongoose/types/virtuals" />
|
|
24
|
+
/// <reference types="mongoose" />
|
|
25
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/aggregate" />
|
|
26
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/callback" />
|
|
27
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/collection" />
|
|
28
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/connection" />
|
|
29
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/cursor" />
|
|
30
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/document" />
|
|
31
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/error" />
|
|
32
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/expressions" />
|
|
33
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/helpers" />
|
|
34
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/middlewares" />
|
|
35
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/indexes" />
|
|
36
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/models" />
|
|
37
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/mongooseoptions" />
|
|
38
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/pipelinestage" />
|
|
39
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/populate" />
|
|
40
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/query" />
|
|
41
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/schemaoptions" />
|
|
42
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/schematypes" />
|
|
43
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/session" />
|
|
44
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/types" />
|
|
45
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/utility" />
|
|
46
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/validation" />
|
|
47
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/virtuals" />
|
|
48
|
+
/// <reference types="mongoose-delete/node_modules/mongoose" />
|
|
49
|
+
/// <reference types="mongoose/types/inferschematype" />
|
|
50
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/inferschematype" />
|
|
51
|
+
/// <reference types="mongoose-delete/node_modules/mongoose/types/inferrawdoctype" />
|
|
52
|
+
import { IVolume } from "./types";
|
|
53
|
+
declare const _default: import("mongoose").Model<IVolume, {}, {}, {}, import("mongoose").Document<unknown, {}, IVolume> & IVolume & {
|
|
54
|
+
_id: import("mongoose").Types.ObjectId;
|
|
55
|
+
}, any>;
|
|
56
|
+
export default _default;
|
package/dist/volume.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const mongoose_1 = require("mongoose");
|
|
4
|
+
const volumeSchema = new mongoose_1.Schema({
|
|
5
|
+
name: String,
|
|
6
|
+
user: {
|
|
7
|
+
type: mongoose_1.Schema.Types.ObjectId,
|
|
8
|
+
required: false,
|
|
9
|
+
ref: "User",
|
|
10
|
+
default: null,
|
|
11
|
+
},
|
|
12
|
+
team: {
|
|
13
|
+
type: mongoose_1.Schema.Types.ObjectId,
|
|
14
|
+
required: false,
|
|
15
|
+
ref: "Team",
|
|
16
|
+
default: null,
|
|
17
|
+
},
|
|
18
|
+
subscription: {
|
|
19
|
+
type: mongoose_1.Schema.Types.ObjectId,
|
|
20
|
+
required: true,
|
|
21
|
+
ref: "Subscription",
|
|
22
|
+
},
|
|
23
|
+
region: {
|
|
24
|
+
type: mongoose_1.Schema.Types.ObjectId,
|
|
25
|
+
required: true,
|
|
26
|
+
ref: "Region",
|
|
27
|
+
},
|
|
28
|
+
size: { type: Number, required: true },
|
|
29
|
+
mount_path: { type: String },
|
|
30
|
+
}, {
|
|
31
|
+
timestamps: {
|
|
32
|
+
createdAt: "created_at",
|
|
33
|
+
updatedAt: "updated_at",
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
exports.default = (0, mongoose_1.model)("Volume", volumeSchema);
|
package/enum/index.ts
CHANGED
|
@@ -2,7 +2,7 @@ export enum GIT_TYPE {
|
|
|
2
2
|
GITHUB = "GITHUB",
|
|
3
3
|
GITLAB = "GITLAB",
|
|
4
4
|
BITBUCKET = "BITBUCKET",
|
|
5
|
-
DOCKER = "DOCKER"
|
|
5
|
+
DOCKER = "DOCKER",
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
export enum REQUEST_TYPE {
|
|
@@ -115,7 +115,7 @@ export enum ServiceType {
|
|
|
115
115
|
Database = "database",
|
|
116
116
|
WebService = "web-service",
|
|
117
117
|
Liscense = "liscense",
|
|
118
|
-
Worker = "worker"
|
|
118
|
+
Worker = "worker",
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
export enum DatabaseEngine {
|
package/env.ts
CHANGED
package/index.ts
CHANGED
|
@@ -24,6 +24,7 @@ export { default as PlanConfiguration } from "./plan_configuration";
|
|
|
24
24
|
export { default as AutoScalingGroup } from "./auto-scaling";
|
|
25
25
|
export { default as ComputeChange } from "./compute";
|
|
26
26
|
export { default as Region } from "./region";
|
|
27
|
+
export { default as Volume } from "./volume";
|
|
27
28
|
|
|
28
29
|
export {
|
|
29
30
|
IUser,
|
|
@@ -53,7 +54,8 @@ export {
|
|
|
53
54
|
IPlanConfiguration,
|
|
54
55
|
IAutoScalingGroup,
|
|
55
56
|
IComputeChange,
|
|
56
|
-
IRegion
|
|
57
|
+
IRegion,
|
|
58
|
+
IVolume,
|
|
57
59
|
} from "./types";
|
|
58
60
|
export {
|
|
59
61
|
GIT_TYPE,
|
|
@@ -74,7 +76,7 @@ export {
|
|
|
74
76
|
DatabaseEngine,
|
|
75
77
|
JobStatus,
|
|
76
78
|
LicenseStatus,
|
|
77
|
-
REGION_CONTINENT
|
|
79
|
+
REGION_CONTINENT,
|
|
78
80
|
} from "./enum";
|
|
79
81
|
|
|
80
82
|
import mongoose from "mongoose";
|
package/package.json
CHANGED
package/plan_configuration.ts
CHANGED
|
@@ -14,6 +14,7 @@ const PlanConfigurationSchema = new Schema<IPlanConfiguration>(
|
|
|
14
14
|
build_minutes: { type: Number, required: true },
|
|
15
15
|
log_retention: { type: Number, required: true },
|
|
16
16
|
bandwidth: { type: Number, required: true },
|
|
17
|
+
price: { type: Number, required: true },
|
|
17
18
|
plan_type: {
|
|
18
19
|
type: String,
|
|
19
20
|
enum: Object.values(SUBSCRIPTION_PLAN_TYPE),
|
package/project/index.ts
CHANGED
|
@@ -21,7 +21,7 @@ const projectSchema = new Schema(
|
|
|
21
21
|
},
|
|
22
22
|
healthCheckPath: {
|
|
23
23
|
type: String,
|
|
24
|
-
required: false
|
|
24
|
+
required: false,
|
|
25
25
|
},
|
|
26
26
|
domains: [
|
|
27
27
|
{
|
|
@@ -80,15 +80,15 @@ const projectSchema = new Schema(
|
|
|
80
80
|
},
|
|
81
81
|
passwordEnabled: {
|
|
82
82
|
type: Boolean,
|
|
83
|
-
default: false
|
|
83
|
+
default: false,
|
|
84
84
|
},
|
|
85
85
|
backupEnabled: {
|
|
86
86
|
type: Boolean,
|
|
87
|
-
default: false
|
|
87
|
+
default: false,
|
|
88
88
|
},
|
|
89
89
|
disabled: {
|
|
90
90
|
type: Boolean,
|
|
91
|
-
default: false
|
|
91
|
+
default: false,
|
|
92
92
|
},
|
|
93
93
|
password: {
|
|
94
94
|
type: String,
|
package/project/preview.ts
CHANGED
package/server.ts
CHANGED
|
@@ -22,7 +22,7 @@ const serverSchema = new Schema(
|
|
|
22
22
|
},
|
|
23
23
|
domain: {
|
|
24
24
|
required: false,
|
|
25
|
-
type: String
|
|
25
|
+
type: String,
|
|
26
26
|
},
|
|
27
27
|
webhook_url: String,
|
|
28
28
|
ip_address: {
|
|
@@ -57,7 +57,7 @@ const serverSchema = new Schema(
|
|
|
57
57
|
tag: String,
|
|
58
58
|
firewall_id: {
|
|
59
59
|
required: false,
|
|
60
|
-
type: String
|
|
60
|
+
type: String,
|
|
61
61
|
},
|
|
62
62
|
specifications: {
|
|
63
63
|
type: Object,
|
package/types/index.ts
CHANGED
package/types/region.ts
CHANGED
package/types/volume.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Document } from "mongoose";
|
|
2
|
+
import { IUser } from "./user";
|
|
3
|
+
import { ITeam } from "./team";
|
|
4
|
+
import { ISubscription } from "./subscription";
|
|
5
|
+
import { IRegion } from "./region";
|
|
6
|
+
|
|
7
|
+
export interface IVolume extends Document {
|
|
8
|
+
name: string;
|
|
9
|
+
user?: IUser;
|
|
10
|
+
team?: ITeam;
|
|
11
|
+
subscription: ISubscription;
|
|
12
|
+
region: IRegion;
|
|
13
|
+
size: number;
|
|
14
|
+
mount_path?: string;
|
|
15
|
+
created_at?: Date;
|
|
16
|
+
updated_at?: Date;
|
|
17
|
+
}
|
package/volume.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { model, Schema } from "mongoose";
|
|
2
|
+
|
|
3
|
+
import { IVolume } from "./types";
|
|
4
|
+
|
|
5
|
+
const volumeSchema: Schema = new Schema(
|
|
6
|
+
{
|
|
7
|
+
name: String,
|
|
8
|
+
user: {
|
|
9
|
+
type: Schema.Types.ObjectId,
|
|
10
|
+
required: false,
|
|
11
|
+
ref: "User",
|
|
12
|
+
default: null,
|
|
13
|
+
},
|
|
14
|
+
team: {
|
|
15
|
+
type: Schema.Types.ObjectId,
|
|
16
|
+
required: false,
|
|
17
|
+
ref: "Team",
|
|
18
|
+
default: null,
|
|
19
|
+
},
|
|
20
|
+
subscription: {
|
|
21
|
+
type: Schema.Types.ObjectId,
|
|
22
|
+
required: true,
|
|
23
|
+
ref: "Subscription",
|
|
24
|
+
},
|
|
25
|
+
region: {
|
|
26
|
+
type: Schema.Types.ObjectId,
|
|
27
|
+
required: true,
|
|
28
|
+
ref: "Region",
|
|
29
|
+
},
|
|
30
|
+
size: { type: Number, required: true },
|
|
31
|
+
mount_path: { type: String },
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
timestamps: {
|
|
35
|
+
createdAt: "created_at",
|
|
36
|
+
updatedAt: "updated_at",
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
export default model<IVolume>("Volume", volumeSchema);
|