@flink-app/management-api-plugin 0.11.9 → 0.12.1-alpha.0

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,297 +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
- "data": {
82
- "type": "object"
83
- },
84
- "endpoints": {
85
- "type": "array",
86
- "items": {
87
- "$ref": "#/definitions/ModuleEndpoint"
88
- }
89
- }
90
- },
91
- "required": [
92
- "id",
93
- "type",
94
- "features",
95
- "title",
96
- "ui",
97
- "data",
98
- "endpoints"
99
- ],
100
- "additionalProperties": false
101
- },
102
- "ModuleEndpoint": {
103
- "type": "object",
104
- "properties": {
105
- "method": {
106
- "type": "string"
107
- },
108
- "url": {
109
- "type": "string"
110
- }
111
- },
112
- "required": [
113
- "method",
114
- "url"
115
- ],
116
- "additionalProperties": false
117
- },
118
- "GetManagementReq": {
119
- "type": "object",
120
- "additionalProperties": false
121
- },
122
- "GetManagementRes": {
123
- "type": "object",
124
- "additionalProperties": false,
125
- "properties": {
126
- "modules": {
127
- "type": "array",
128
- "items": {
129
- "$ref": "#/definitions/Module"
130
- }
131
- }
132
- },
133
- "required": [
134
- "modules"
135
- ]
136
- },
137
- "DeleteUserByUseridReq": {
138
- "type": "object",
139
- "additionalProperties": false
140
- },
141
- "DeleteUserByUseridRes": {
142
- "type": "object",
143
- "additionalProperties": false
144
- },
145
- "GetUserByUseridReq": {
146
- "type": "object",
147
- "additionalProperties": false
148
- },
149
- "GetUserByUseridRes": {
150
- "type": "object",
151
- "additionalProperties": false,
152
- "properties": {
153
- "_id": {
154
- "type": "string"
155
- },
156
- "username": {
157
- "type": "string"
158
- }
159
- },
160
- "required": [
161
- "_id",
162
- "username"
163
- ]
164
- },
165
- "GetUserListReq": {
166
- "type": "object",
167
- "additionalProperties": false
168
- },
169
- "GetUserListRes": {
170
- "type": "object",
171
- "properties": {
172
- "users": {
173
- "type": "array",
174
- "items": {
175
- "$ref": "#/definitions/ManagementUserViewModel"
176
- }
177
- }
178
- },
179
- "required": [
180
- "users"
181
- ],
182
- "additionalProperties": false
183
- },
184
- "GetUserMeReq": {
185
- "type": "object",
186
- "additionalProperties": false
187
- },
188
- "GetUserMeRes": {
189
- "type": "object",
190
- "additionalProperties": false,
191
- "properties": {
192
- "user": {
193
- "$ref": "#/definitions/ManagementUserViewModel"
194
- },
195
- "token": {
196
- "type": "string"
197
- }
198
- },
199
- "required": [
200
- "token",
201
- "user"
202
- ]
203
- },
204
- "PostUserLoginReq": {
205
- "type": "object",
206
- "properties": {
207
- "username": {
208
- "type": "string"
209
- },
210
- "password": {
211
- "type": "string"
212
- }
213
- },
214
- "required": [
215
- "username",
216
- "password"
217
- ],
218
- "additionalProperties": false
219
- },
220
- "PostUserLoginRes": {
221
- "type": "object",
222
- "properties": {
223
- "user": {
224
- "$ref": "#/definitions/ManagementUserViewModel"
225
- },
226
- "token": {
227
- "type": "string"
228
- }
229
- },
230
- "required": [
231
- "user",
232
- "token"
233
- ],
234
- "additionalProperties": false
235
- },
236
- "PostUserReq": {
237
- "type": "object",
238
- "additionalProperties": false,
239
- "properties": {
240
- "username": {
241
- "type": "string"
242
- },
243
- "password": {
244
- "type": "string"
245
- }
246
- },
247
- "required": [
248
- "password",
249
- "username"
250
- ]
251
- },
252
- "PostUserRes": {
253
- "type": "object",
254
- "additionalProperties": false,
255
- "properties": {
256
- "_id": {
257
- "type": "string"
258
- },
259
- "username": {
260
- "type": "string"
261
- }
262
- },
263
- "required": [
264
- "_id",
265
- "username"
266
- ]
267
- },
268
- "PutUserByUseridReq": {
269
- "type": "object",
270
- "additionalProperties": false,
271
- "properties": {
272
- "username": {
273
- "type": "string"
274
- },
275
- "password": {
276
- "type": "string"
277
- }
278
- }
279
- },
280
- "PutUserByUseridRes": {
281
- "type": "object",
282
- "additionalProperties": false,
283
- "properties": {
284
- "_id": {
285
- "type": "string"
286
- },
287
- "username": {
288
- "type": "string"
289
- }
290
- },
291
- "required": [
292
- "_id",
293
- "username"
294
- ]
295
- }
296
- }
297
- }
@@ -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
- }