@djvlc/openapi-user-client 1.8.1 → 1.8.2

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.
@@ -80,7 +80,12 @@ resolve:
80
80
  content:
81
81
  application/json:
82
82
  schema:
83
- $ref: '../components/schemas/_index.yaml#/ResolvePageResponse'
83
+ allOf:
84
+ - $ref: '../components/schemas/_index.yaml#/SuccessResponse'
85
+ - type: object
86
+ properties:
87
+ data:
88
+ $ref: '../components/schemas/_index.yaml#/ResolvePageResponse'
84
89
  '400':
85
90
  $ref: '../components/responses/_index.yaml#/BadRequest'
86
91
  '404':
@@ -117,7 +122,12 @@ manifest:
117
122
  content:
118
123
  application/json:
119
124
  schema:
120
- $ref: '../components/schemas/_index.yaml#/ManifestResponse'
125
+ allOf:
126
+ - $ref: '../components/schemas/_index.yaml#/SuccessResponse'
127
+ - type: object
128
+ properties:
129
+ data:
130
+ $ref: '../components/schemas/_index.yaml#/ManifestResponse'
121
131
  '400':
122
132
  $ref: '../components/responses/_index.yaml#/BadRequest'
123
133
  '404':
@@ -145,6 +155,11 @@ config:
145
155
  content:
146
156
  application/json:
147
157
  schema:
148
- $ref: '../components/schemas/_index.yaml#/OpsConfig'
158
+ allOf:
159
+ - $ref: '../components/schemas/_index.yaml#/SuccessResponse'
160
+ - type: object
161
+ properties:
162
+ data:
163
+ $ref: '../components/schemas/_index.yaml#/OpsConfig'
149
164
  '503':
150
165
  $ref: '../components/responses/_index.yaml#/ServiceUnavailable'
@@ -14,11 +14,16 @@ query:
14
14
  $ref: '../components/schemas/_index.yaml#/QueryDataRequest'
15
15
  responses:
16
16
  '200':
17
- description: 成功
17
+ description: 查询成功
18
18
  content:
19
19
  application/json:
20
20
  schema:
21
- $ref: '../components/schemas/_index.yaml#/QueryDataResponse'
21
+ allOf:
22
+ - $ref: '../components/schemas/_index.yaml#/SuccessResponse'
23
+ - type: object
24
+ properties:
25
+ data:
26
+ $ref: '../components/schemas/_index.yaml#/QueryDataResponse'
22
27
  '400':
23
28
  $ref: '../components/responses/_index.yaml#/BadRequest'
24
29
  '401':
@@ -42,11 +47,16 @@ batch:
42
47
  $ref: '../components/schemas/_index.yaml#/BatchQueryRequest'
43
48
  responses:
44
49
  '200':
45
- description: 批量查询结果
50
+ description: 批量查询成功
46
51
  content:
47
52
  application/json:
48
53
  schema:
49
- $ref: '../components/schemas/_index.yaml#/BatchQueryResponse'
54
+ allOf:
55
+ - $ref: '../components/schemas/_index.yaml#/SuccessResponse'
56
+ - type: object
57
+ properties:
58
+ data:
59
+ $ref: '../components/schemas/_index.yaml#/BatchQueryResponse'
50
60
  '400':
51
61
  $ref: '../components/responses/_index.yaml#/BadRequest'
52
62
  security:
@@ -66,11 +76,16 @@ definitions:
66
76
  type: string
67
77
  responses:
68
78
  '200':
69
- description: 查询定义
79
+ description: 获取查询定义成功
70
80
  content:
71
81
  application/json:
72
82
  schema:
73
- $ref: '../components/schemas/_index.yaml#/QueryDefinitionResponse'
83
+ allOf:
84
+ - $ref: '../components/schemas/_index.yaml#/SuccessResponse'
85
+ - type: object
86
+ properties:
87
+ data:
88
+ $ref: '../components/schemas/_index.yaml#/QueryDefinitionResponse'
74
89
  '404':
75
90
  $ref: '../components/responses/_index.yaml#/NotFound'
76
91
  security:
@@ -18,7 +18,12 @@ resolve:
18
18
  content:
19
19
  application/json:
20
20
  schema:
21
- $ref: '../components/schemas/_index.yaml#/ResolveTenantResponse'
21
+ allOf:
22
+ - $ref: '../components/schemas/_index.yaml#/SuccessResponse'
23
+ - type: object
24
+ properties:
25
+ data:
26
+ $ref: '../components/schemas/_index.yaml#/ResolveTenantResponse'
22
27
  '400':
23
28
  $ref: '../components/responses/_index.yaml#/BadRequest'
24
29
  '404':
@@ -52,7 +57,12 @@ config:
52
57
  content:
53
58
  application/json:
54
59
  schema:
55
- $ref: '../components/schemas/_index.yaml#/TenantConfigResponse'
60
+ allOf:
61
+ - $ref: '../components/schemas/_index.yaml#/SuccessResponse'
62
+ - type: object
63
+ properties:
64
+ data:
65
+ $ref: '../components/schemas/_index.yaml#/TenantConfigResponse'
56
66
  '401':
57
67
  $ref: '../components/responses/_index.yaml#/Unauthorized'
58
68
  '404':
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djvlc/openapi-user-client",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "DJV Low-code Platform - User API 客户端(自动生成)",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",