Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@advertising-all/advertising-data-dict

Package Overview
Dependencies
Maintainers
2
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@advertising-all/advertising-data-dict - npm Package Compare versions

Comparing version 1.0.73 to 1.0.74

types/src/widgets/defaultAdvertisingImg.vue.d.ts

2

package.json
{
"name": "@advertising-all/advertising-data-dict",
"version": "1.0.73",
"version": "1.0.74",
"description": "系统设置",

@@ -5,0 +5,0 @@ "license": "MIT",

import { DbSchema } from '@vmm/api';
export interface IDataDict {
id: string;
name: string;
defaultAdvertisingImg: string;
}
export interface ISystemDataDict {
id: string;
name: string | null;
systemPrompt: string | null;
language: string | null;
hompicPath: string | null;
loginPicPath: string | null;
domain: string | null;
}
export interface ISysLogs {
/**
* 用户日志事件,事件简述 如 场地管理-增加场地 (一级菜单-二级菜单)
*/
action: string;
/**
* 用户操作数据库表名 如 会议表 请使用中文描述
*/
actionDbName?: string;
/**
* 用户操作数据库的内容 如 { 第五会议室 } 等,使用中文描述
*/
actionContent?: string;
/**
* 操作结果,可以为错误代码,操作失败描述等,成功则为null
*/
actErr: string | null;
/**
* 操作人员信息
*/
actorName: string;
actorId: string;
/**
* 操作IP
*/
ip: string;
createdTime: Date;
}
export declare const schemas: {
dataDict: DbSchema<{
id: string;
name: string;
}>;
systemDataDict: DbSchema<{
id: string;
name: string | null;
systemPrompt: string | null;
language: string | null;
hompicPath: string | null;
loginPicPath: string | null;
domain: string | null;
}>;
sysLogs: DbSchema<{
/**
* 用户日志事件,事件简述 如 场地管理-增加场地 (一级菜单-二级菜单)
*/
action: string;
/**
* 用户操作数据库表名 如 会议表 请使用中文描述
*/
actionDbName?: string | undefined;
/**
* 用户操作数据库的内容 如 { 第五会议室 } 等,使用中文描述
*/
actionContent?: string | undefined;
/**
* 操作结果,可以为错误代码,操作失败描述等,成功则为null
*/
actErr: string | null;
/**
* 操作人员信息
*/
actorName: string;
actorId: string;
/**
* 操作IP
*/
ip: string;
createdTime: Date;
}>;
dataDict: DbSchema<IDataDict>;
systemDataDict: DbSchema<ISystemDataDict>;
sysLogs: DbSchema<ISysLogs>;
};

@@ -1,3 +0,6 @@

import Vue from "vue";
declare const _default: import("vue/types/vue").ExtendedVue<Vue, {}, {}, unknown, Record<never, any>>;
import Vue from 'vue';
import { IDataDict } from '@advertising-all/advertising-data-dict-api/src/db/DbSchema';
declare const _default: import("vue/types/vue").ExtendedVue<Vue, {
dataDict: IDataDict;
}, {}, unknown, Record<never, any>>;
export default _default;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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