@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.
- package/dist/index.d.mts +2317 -817
- package/dist/index.d.ts +2317 -817
- package/dist/index.js +1628 -508
- package/dist/index.mjs +1548 -508
- package/openapi/dist/user-api.yaml +185 -75
- package/openapi/src/paths/actions.yaml +18 -3
- package/openapi/src/paths/activities.yaml +56 -16
- package/openapi/src/paths/health.yaml +18 -3
- package/openapi/src/paths/pages.yaml +18 -3
- package/openapi/src/paths/queries.yaml +21 -6
- package/openapi/src/paths/tenant.yaml +12 -2
- package/package.json +1 -1
|
@@ -80,7 +80,12 @@ resolve:
|
|
|
80
80
|
content:
|
|
81
81
|
application/json:
|
|
82
82
|
schema:
|
|
83
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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':
|