@erp-galoper/types 1.0.1206 → 1.0.1207
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/openapi.ts +121 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -19296,6 +19296,49 @@ export interface paths {
|
|
|
19296
19296
|
patch?: never;
|
|
19297
19297
|
trace?: never;
|
|
19298
19298
|
};
|
|
19299
|
+
"/api/v1/task/status/reorder": {
|
|
19300
|
+
parameters: {
|
|
19301
|
+
query?: never;
|
|
19302
|
+
header?: never;
|
|
19303
|
+
path?: never;
|
|
19304
|
+
cookie?: never;
|
|
19305
|
+
};
|
|
19306
|
+
get?: never;
|
|
19307
|
+
/**
|
|
19308
|
+
* Reorder Statuses
|
|
19309
|
+
* @description Endpoint for reordering statuses
|
|
19310
|
+
* Requirements (Critical Validation):
|
|
19311
|
+
* - Completeness: The payload MUST include all existing status IDs.
|
|
19312
|
+
* - Sequential Order: 'order' values must be a continuous, gap-less sequence of integers starting at 1
|
|
19313
|
+
* (i.e., 1, 2, 3, ..., N, where N is the total status count)
|
|
19314
|
+
* - Uniqueness: All 'order' values must be unique within the payload
|
|
19315
|
+
*
|
|
19316
|
+
* - 200:
|
|
19317
|
+
* - List[RetrieveStatus]
|
|
19318
|
+
* - 403:
|
|
19319
|
+
* - permissionDenied
|
|
19320
|
+
* - noModuleAccess
|
|
19321
|
+
* - 400:
|
|
19322
|
+
* - ValidationError
|
|
19323
|
+
* - missingStatusIds
|
|
19324
|
+
* - orderSequenceGap
|
|
19325
|
+
* - invalidOrderRange
|
|
19326
|
+
* - 404:
|
|
19327
|
+
* - statusDoesNotExist
|
|
19328
|
+
* - 500:
|
|
19329
|
+
* - internalServerError
|
|
19330
|
+
*
|
|
19331
|
+
* Permission Key:
|
|
19332
|
+
* 'status = ['change']'
|
|
19333
|
+
*/
|
|
19334
|
+
put: operations["task_views_reorder_statuses"];
|
|
19335
|
+
post?: never;
|
|
19336
|
+
delete?: never;
|
|
19337
|
+
options?: never;
|
|
19338
|
+
head?: never;
|
|
19339
|
+
patch?: never;
|
|
19340
|
+
trace?: never;
|
|
19341
|
+
};
|
|
19299
19342
|
"/api/v1/task/status/{id}/": {
|
|
19300
19343
|
parameters: {
|
|
19301
19344
|
query?: never;
|
|
@@ -19324,7 +19367,7 @@ export interface paths {
|
|
|
19324
19367
|
get: operations["task_views_get_status"];
|
|
19325
19368
|
/**
|
|
19326
19369
|
* Edit Status
|
|
19327
|
-
* @description Endpoint for edit status
|
|
19370
|
+
* @description Endpoint for edit status name
|
|
19328
19371
|
*
|
|
19329
19372
|
* Possible Responses:
|
|
19330
19373
|
* - 200:
|
|
@@ -50895,6 +50938,14 @@ export interface components {
|
|
|
50895
50938
|
CreateUpdateStatus: {
|
|
50896
50939
|
/** Name */
|
|
50897
50940
|
name: string;
|
|
50941
|
+
};
|
|
50942
|
+
/** StatusReorder */
|
|
50943
|
+
StatusReorder: {
|
|
50944
|
+
/**
|
|
50945
|
+
* Statusid
|
|
50946
|
+
* Format: uuid
|
|
50947
|
+
*/
|
|
50948
|
+
statusId: string;
|
|
50898
50949
|
/**
|
|
50899
50950
|
* Order
|
|
50900
50951
|
* @description - Positive integer that defines the position of this status in the workflow.
|
|
@@ -90137,6 +90188,75 @@ export interface operations {
|
|
|
90137
90188
|
};
|
|
90138
90189
|
};
|
|
90139
90190
|
};
|
|
90191
|
+
task_views_reorder_statuses: {
|
|
90192
|
+
parameters: {
|
|
90193
|
+
query?: never;
|
|
90194
|
+
header?: never;
|
|
90195
|
+
path?: never;
|
|
90196
|
+
cookie?: never;
|
|
90197
|
+
};
|
|
90198
|
+
requestBody: {
|
|
90199
|
+
content: {
|
|
90200
|
+
"application/json": components["schemas"]["StatusReorder"][];
|
|
90201
|
+
};
|
|
90202
|
+
};
|
|
90203
|
+
responses: {
|
|
90204
|
+
/** @description OK */
|
|
90205
|
+
200: {
|
|
90206
|
+
headers: {
|
|
90207
|
+
[name: string]: unknown;
|
|
90208
|
+
};
|
|
90209
|
+
content: {
|
|
90210
|
+
"application/json": components["schemas"]["RetrieveStatus"][];
|
|
90211
|
+
};
|
|
90212
|
+
};
|
|
90213
|
+
/** @description Bad Request */
|
|
90214
|
+
400: {
|
|
90215
|
+
headers: {
|
|
90216
|
+
[name: string]: unknown;
|
|
90217
|
+
};
|
|
90218
|
+
content: {
|
|
90219
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
90220
|
+
};
|
|
90221
|
+
};
|
|
90222
|
+
/** @description Forbidden */
|
|
90223
|
+
403: {
|
|
90224
|
+
headers: {
|
|
90225
|
+
[name: string]: unknown;
|
|
90226
|
+
};
|
|
90227
|
+
content: {
|
|
90228
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
90229
|
+
};
|
|
90230
|
+
};
|
|
90231
|
+
/** @description Not Found */
|
|
90232
|
+
404: {
|
|
90233
|
+
headers: {
|
|
90234
|
+
[name: string]: unknown;
|
|
90235
|
+
};
|
|
90236
|
+
content: {
|
|
90237
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
90238
|
+
};
|
|
90239
|
+
};
|
|
90240
|
+
/** @description Conflict */
|
|
90241
|
+
409: {
|
|
90242
|
+
headers: {
|
|
90243
|
+
[name: string]: unknown;
|
|
90244
|
+
};
|
|
90245
|
+
content: {
|
|
90246
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
90247
|
+
};
|
|
90248
|
+
};
|
|
90249
|
+
/** @description Internal Server Error */
|
|
90250
|
+
500: {
|
|
90251
|
+
headers: {
|
|
90252
|
+
[name: string]: unknown;
|
|
90253
|
+
};
|
|
90254
|
+
content: {
|
|
90255
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
90256
|
+
};
|
|
90257
|
+
};
|
|
90258
|
+
};
|
|
90259
|
+
};
|
|
90140
90260
|
task_views_get_status: {
|
|
90141
90261
|
parameters: {
|
|
90142
90262
|
query?: never;
|