@flink-app/management-api-plugin 0.11.9 → 0.11.14

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.
@@ -1,270 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "$ref": "#/definitions/Schemas",
4
- "definitions": {
5
- "ManagementUser": {
6
- "type": "object",
7
- "properties": {
8
- "_id": {
9
- "type": "string"
10
- },
11
- "username": {
12
- "type": "string"
13
- },
14
- "password": {
15
- "type": "string"
16
- },
17
- "salt": {
18
- "type": "string"
19
- }
20
- },
21
- "required": [
22
- "_id",
23
- "username",
24
- "password",
25
- "salt"
26
- ],
27
- "additionalProperties": false
28
- },
29
- "ManagementUserViewModel": {
30
- "type": "object",
31
- "additionalProperties": false,
32
- "properties": {
33
- "_id": {
34
- "type": "string"
35
- },
36
- "username": {
37
- "type": "string"
38
- }
39
- },
40
- "required": [
41
- "_id",
42
- "username"
43
- ]
44
- },
45
- "ModuleList": {
46
- "type": "object",
47
- "properties": {
48
- "modules": {
49
- "type": "array",
50
- "items": {
51
- "$ref": "#/definitions/Module"
52
- }
53
- }
54
- },
55
- "required": [
56
- "modules"
57
- ],
58
- "additionalProperties": false
59
- },
60
- "Module": {
61
- "type": "object",
62
- "properties": {
63
- "id": {
64
- "type": "string"
65
- },
66
- "type": {
67
- "type": "string"
68
- },
69
- "features": {
70
- "type": "array",
71
- "items": {
72
- "type": "string"
73
- }
74
- },
75
- "title": {
76
- "type": "string"
77
- },
78
- "ui": {
79
- "type": "string"
80
- }
81
- },
82
- "required": [
83
- "id",
84
- "type",
85
- "features",
86
- "title",
87
- "ui"
88
- ],
89
- "additionalProperties": false
90
- },
91
- "GetManagementReq": {
92
- "type": "object",
93
- "additionalProperties": false
94
- },
95
- "GetManagementRes": {
96
- "type": "object",
97
- "additionalProperties": false,
98
- "properties": {
99
- "modules": {
100
- "type": "array",
101
- "items": {
102
- "$ref": "#/definitions/Module"
103
- }
104
- }
105
- },
106
- "required": [
107
- "modules"
108
- ]
109
- },
110
- "DeleteUserByUseridReq": {
111
- "type": "object",
112
- "additionalProperties": false
113
- },
114
- "DeleteUserByUseridRes": {
115
- "type": "object",
116
- "additionalProperties": false
117
- },
118
- "GetUserByUseridReq": {
119
- "type": "object",
120
- "additionalProperties": false
121
- },
122
- "GetUserByUseridRes": {
123
- "type": "object",
124
- "additionalProperties": false,
125
- "properties": {
126
- "_id": {
127
- "type": "string"
128
- },
129
- "username": {
130
- "type": "string"
131
- }
132
- },
133
- "required": [
134
- "_id",
135
- "username"
136
- ]
137
- },
138
- "GetUserListReq": {
139
- "type": "object",
140
- "additionalProperties": false
141
- },
142
- "GetUserListRes": {
143
- "type": "object",
144
- "properties": {
145
- "users": {
146
- "type": "array",
147
- "items": {
148
- "$ref": "#/definitions/ManagementUserViewModel"
149
- }
150
- }
151
- },
152
- "required": [
153
- "users"
154
- ],
155
- "additionalProperties": false
156
- },
157
- "GetUserMeReq": {
158
- "type": "object",
159
- "additionalProperties": false
160
- },
161
- "GetUserMeRes": {
162
- "type": "object",
163
- "additionalProperties": false,
164
- "properties": {
165
- "user": {
166
- "$ref": "#/definitions/ManagementUserViewModel"
167
- },
168
- "token": {
169
- "type": "string"
170
- }
171
- },
172
- "required": [
173
- "token",
174
- "user"
175
- ]
176
- },
177
- "PostUserLoginReq": {
178
- "type": "object",
179
- "properties": {
180
- "username": {
181
- "type": "string"
182
- },
183
- "password": {
184
- "type": "string"
185
- }
186
- },
187
- "required": [
188
- "username",
189
- "password"
190
- ],
191
- "additionalProperties": false
192
- },
193
- "PostUserLoginRes": {
194
- "type": "object",
195
- "properties": {
196
- "user": {
197
- "$ref": "#/definitions/ManagementUserViewModel"
198
- },
199
- "token": {
200
- "type": "string"
201
- }
202
- },
203
- "required": [
204
- "user",
205
- "token"
206
- ],
207
- "additionalProperties": false
208
- },
209
- "PostUserReq": {
210
- "type": "object",
211
- "additionalProperties": false,
212
- "properties": {
213
- "username": {
214
- "type": "string"
215
- },
216
- "password": {
217
- "type": "string"
218
- }
219
- },
220
- "required": [
221
- "password",
222
- "username"
223
- ]
224
- },
225
- "PostUserRes": {
226
- "type": "object",
227
- "additionalProperties": false,
228
- "properties": {
229
- "_id": {
230
- "type": "string"
231
- },
232
- "username": {
233
- "type": "string"
234
- }
235
- },
236
- "required": [
237
- "_id",
238
- "username"
239
- ]
240
- },
241
- "PutUserByUseridReq": {
242
- "type": "object",
243
- "additionalProperties": false,
244
- "properties": {
245
- "username": {
246
- "type": "string"
247
- },
248
- "password": {
249
- "type": "string"
250
- }
251
- }
252
- },
253
- "PutUserByUseridRes": {
254
- "type": "object",
255
- "additionalProperties": false,
256
- "properties": {
257
- "_id": {
258
- "type": "string"
259
- },
260
- "username": {
261
- "type": "string"
262
- }
263
- },
264
- "required": [
265
- "_id",
266
- "username"
267
- ]
268
- }
269
- }
270
- }