New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@gtrmt/document-manager-api

Package Overview
Dependencies
Maintainers
4
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gtrmt/document-manager-api - npm Package Compare versions

Comparing version 1.0.172 to 1.0.173

2

dist/package.json
{
"name": "@gtrmt/document-manager-api",
"version": "1.0.172",
"version": "1.0.173",
"description": "稿件管理api",

@@ -5,0 +5,0 @@ "main": "dist/src/index.js",

@@ -16,3 +16,4 @@ "use strict";

satisfiedList: api_1.DB_CRUD(DbSchema_1.schemas.satisfiedList, {}, ['user'], 'admin'),
satisfiedTask: api_1.DB_CRUD(DbSchema_1.schemas.satisfiedTask, {}, ['user'], 'admin')
satisfiedTask: api_1.DB_CRUD(DbSchema_1.schemas.satisfiedTask, {}, ['user'], 'admin'),
userGood: api_1.DB_CRUD(DbSchema_1.schemas.satisfiedTask, {}, ['user'], 'admin')
};

@@ -134,2 +134,12 @@ "use strict";

}),
userGood: new api_1.DbSchema(
// 数据库创建参数:
{},
// 数据库索引:
{
created: {
fields: { created: -1 },
options: { unique: false, sparse: false, dropDups: false },
},
}),
});
{
"name": "@gtrmt/document-manager-api",
"version": "1.0.172",
"version": "1.0.173",
"description": "稿件管理api",

@@ -5,0 +5,0 @@ "main": "dist/src/index.js",

@@ -184,5 +184,5 @@ /**

findCollection: HTTP<
{startTime,endTime,skip},
{ startTime: any, endTime: any, skip: any },
{ status: number; data?: any; msg?: string }
>([], ''),
};

@@ -14,3 +14,4 @@ import { DB_CRUD, DB_R, DB_RU } from '@vmm/api';

satisfiedList: DB_CRUD(schemas.satisfiedList, {}, ['user'], 'admin'),
satisfiedTask: DB_CRUD(schemas.satisfiedTask, {}, ['user'], 'admin')
satisfiedTask: DB_CRUD(schemas.satisfiedTask, {}, ['user'], 'admin'),
userGood: DB_CRUD(schemas.satisfiedTask, {}, ['user'], 'admin')
};

@@ -45,2 +45,9 @@ import { DbSchema, createDbSchemas } from '@vmm/api';

}
export interface IUserGood {
id: string,
name: string,
img: string[],
introduce: number
}
export interface ILeaderNumber {

@@ -306,2 +313,13 @@ id: string,

),
userGood: new DbSchema<IUserGood>(
// 数据库创建参数:
{},
// 数据库索引:
{
created: {
fields: { created: -1 },
options: { unique: false, sparse: false, dropDups: false },
},
},
),
}

@@ -308,0 +326,0 @@ )

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc