@nocobase/plugin-system-settings 0.12.0-alpha.5 → 0.13.0-alpha.1

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.
@@ -0,0 +1,45 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var openapi = "3.0.2";
6
+ var info = {
7
+ title: "NocoBase API - System settings plugin"
8
+ };
9
+ var tags = [];
10
+ var paths = {
11
+ "/systemSettings:get": {
12
+ get: {
13
+ description: "",
14
+ parameters: [],
15
+ responses: {
16
+ "200": {
17
+ description: "OK"
18
+ }
19
+ }
20
+ }
21
+ },
22
+ "/systemSettings:update": {
23
+ post: {
24
+ description: "",
25
+ parameters: [],
26
+ responses: {
27
+ "200": {
28
+ description: "OK"
29
+ }
30
+ }
31
+ }
32
+ }
33
+ };
34
+ var swagger_default = {
35
+ openapi,
36
+ info,
37
+ tags,
38
+ paths
39
+ };
40
+
41
+ exports.default = swagger_default;
42
+ exports.info = info;
43
+ exports.openapi = openapi;
44
+ exports.paths = paths;
45
+ exports.tags = tags;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "displayName.zh-CN": "系统设置",
5
5
  "description": "Used to adjust the system title, logo, etc",
6
6
  "description.zh-CN": "用于调整系统的标题、LOGO 等",
7
- "version": "0.12.0-alpha.5",
7
+ "version": "0.13.0-alpha.1",
8
8
  "license": "AGPL-3.0",
9
9
  "main": "./dist/server/index.js",
10
10
  "peerDependencies": {
@@ -13,5 +13,5 @@
13
13
  "@nocobase/server": "0.x",
14
14
  "@nocobase/test": "0.x"
15
15
  },
16
- "gitHead": "689cc16e83361c4d0b91907e0deac30bdb907692"
16
+ "gitHead": "0ebd4e85a1b0b0d0943768ab6cb5c3d824562239"
17
17
  }