grexx-api 12.7.7 → 12.7.9
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.
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.OpenAPI = void 0;
|
|
4
4
|
exports.OpenAPI = {
|
|
5
5
|
BASE: 'https://name.grexx.today/api/v1',
|
|
6
|
-
VERSION: '12.7.
|
|
6
|
+
VERSION: '12.7.9',
|
|
7
7
|
WITH_CREDENTIALS: false,
|
|
8
8
|
CREDENTIALS: 'include',
|
|
9
9
|
TOKEN: undefined,
|
|
@@ -66,12 +66,12 @@ export declare class CaseService {
|
|
|
66
66
|
userCaseLocale?: string;
|
|
67
67
|
}>;
|
|
68
68
|
/**
|
|
69
|
-
* Retrieve the contents of a dataset
|
|
69
|
+
* Retrieve the contents of a dataset. Rights are checked via dataset rights, unless called from a Scripted System Service.
|
|
70
70
|
* @param casePath Path or Id of case
|
|
71
71
|
* @param dataset ID of dataset
|
|
72
72
|
* @param format Format of the result
|
|
73
73
|
* @param requestBody
|
|
74
|
-
* @returns DatasetResult Retrieve the contents of a dataset
|
|
74
|
+
* @returns DatasetResult Retrieve the contents of a dataset. Rights are checked via dataset rights, unless called from a Scripted System Service.
|
|
75
75
|
* @throws ApiError
|
|
76
76
|
*/
|
|
77
77
|
static datasetRetrieve(casePath: string, dataset: UnversionedReference, format?: 'simple' | 'full', requestBody?: {
|
|
@@ -91,22 +91,22 @@ export declare class CaseService {
|
|
|
91
91
|
unAggregatedSearch?: (SortConfigSearchList | SortConfigSearchCondition);
|
|
92
92
|
}): CancelablePromise<DatasetResult>;
|
|
93
93
|
/**
|
|
94
|
-
* Retrieve the contents of a form
|
|
94
|
+
* Retrieve the contents of a form. Rights are checked via form rights, unless called from a Scripted System Service.
|
|
95
95
|
* @param casePath Path or Id of case
|
|
96
96
|
* @param formId ID of form
|
|
97
97
|
* @param format Format of the result
|
|
98
|
-
* @returns any Retrieve the contents of a form
|
|
98
|
+
* @returns any Retrieve the contents of a form. Rights are checked via form rights, unless called from a Scripted System Service.
|
|
99
99
|
* @throws ApiError
|
|
100
100
|
*/
|
|
101
101
|
static formRetrieve(casePath: string, formId: UnversionedReference, format?: 'simple' | 'extended' | 'full'): CancelablePromise<any>;
|
|
102
102
|
/**
|
|
103
|
-
* Retrieve the contents of a dataset
|
|
103
|
+
* Retrieve the contents of a dataset. Rights are checked via widget rights, unless called from a Scripted System Service.
|
|
104
104
|
* @param casePath Path or Id of case
|
|
105
105
|
* @param dataset ID of dataset
|
|
106
106
|
* @param widget ID of widget
|
|
107
107
|
* @param format Format of the result
|
|
108
108
|
* @param requestBody
|
|
109
|
-
* @returns DatasetResult Retrieve the contents of a dataset
|
|
109
|
+
* @returns DatasetResult Retrieve the contents of a dataset. Rights are checked via widget rights, unless called from a Scripted System Service.
|
|
110
110
|
* @throws ApiError
|
|
111
111
|
*/
|
|
112
112
|
static datasetRetrieveViaWidget(casePath: string, dataset: UnversionedReference, widget: UnversionedReference, format?: 'simple' | 'full', requestBody?: {
|
|
@@ -306,12 +306,12 @@ export declare class CaseService {
|
|
|
306
306
|
}>;
|
|
307
307
|
/**
|
|
308
308
|
* @deprecated
|
|
309
|
-
* Retrieve the contents of a dataset
|
|
309
|
+
* Retrieve the contents of a dataset. Rights are checked via dataset rights, unless called from a Scripted System Service.
|
|
310
310
|
* @param caseId ID of case
|
|
311
311
|
* @param dataset ID of dataset
|
|
312
312
|
* @param format Format of the result
|
|
313
313
|
* @param requestBody
|
|
314
|
-
* @returns DatasetResult Retrieve the contents of a dataset
|
|
314
|
+
* @returns DatasetResult Retrieve the contents of a dataset. Rights are checked via dataset rights, unless called from a Scripted System Service.
|
|
315
315
|
* @throws ApiError
|
|
316
316
|
*/
|
|
317
317
|
static datasetGet(caseId: UnversionedReference, dataset: UnversionedReference, format?: 'simple' | 'full', requestBody?: {
|
|
@@ -332,23 +332,23 @@ export declare class CaseService {
|
|
|
332
332
|
}): CancelablePromise<DatasetResult>;
|
|
333
333
|
/**
|
|
334
334
|
* @deprecated
|
|
335
|
-
* Retrieve the contents of a form
|
|
335
|
+
* Retrieve the contents of a form. Rights are checked via form rights, unless called from a Scripted System Service.
|
|
336
336
|
* @param caseId ID of case
|
|
337
337
|
* @param formId ID of form
|
|
338
338
|
* @param format Format of the result
|
|
339
|
-
* @returns any Retrieve the contents of a form
|
|
339
|
+
* @returns any Retrieve the contents of a form. Rights are checked via form rights, unless called from a Scripted System Service.
|
|
340
340
|
* @throws ApiError
|
|
341
341
|
*/
|
|
342
342
|
static formGet(caseId: UnversionedReference, formId: UnversionedReference, format?: 'simple' | 'extended' | 'full'): CancelablePromise<any>;
|
|
343
343
|
/**
|
|
344
344
|
* @deprecated
|
|
345
|
-
* Retrieve the contents of a dataset
|
|
345
|
+
* Retrieve the contents of a dataset. Rights are checked via widget rights, unless called from a Scripted System Service.
|
|
346
346
|
* @param caseId ID of case
|
|
347
347
|
* @param dataset ID of dataset
|
|
348
348
|
* @param widget ID of widget
|
|
349
349
|
* @param format Format of the result
|
|
350
350
|
* @param requestBody
|
|
351
|
-
* @returns DatasetResult Retrieve the contents of a dataset
|
|
351
|
+
* @returns DatasetResult Retrieve the contents of a dataset. Rights are checked via widget rights, unless called from a Scripted System Service.
|
|
352
352
|
* @throws ApiError
|
|
353
353
|
*/
|
|
354
354
|
static datasetGetViaWidget(caseId: UnversionedReference, dataset: UnversionedReference, widget: UnversionedReference, format?: 'simple' | 'full', requestBody?: {
|
|
@@ -28,12 +28,12 @@ class CaseService {
|
|
|
28
28
|
});
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
* Retrieve the contents of a dataset
|
|
31
|
+
* Retrieve the contents of a dataset. Rights are checked via dataset rights, unless called from a Scripted System Service.
|
|
32
32
|
* @param casePath Path or Id of case
|
|
33
33
|
* @param dataset ID of dataset
|
|
34
34
|
* @param format Format of the result
|
|
35
35
|
* @param requestBody
|
|
36
|
-
* @returns DatasetResult Retrieve the contents of a dataset
|
|
36
|
+
* @returns DatasetResult Retrieve the contents of a dataset. Rights are checked via dataset rights, unless called from a Scripted System Service.
|
|
37
37
|
* @throws ApiError
|
|
38
38
|
*/
|
|
39
39
|
static datasetRetrieve(casePath, dataset, format = 'simple', requestBody) {
|
|
@@ -52,11 +52,11 @@ class CaseService {
|
|
|
52
52
|
});
|
|
53
53
|
}
|
|
54
54
|
/**
|
|
55
|
-
* Retrieve the contents of a form
|
|
55
|
+
* Retrieve the contents of a form. Rights are checked via form rights, unless called from a Scripted System Service.
|
|
56
56
|
* @param casePath Path or Id of case
|
|
57
57
|
* @param formId ID of form
|
|
58
58
|
* @param format Format of the result
|
|
59
|
-
* @returns any Retrieve the contents of a form
|
|
59
|
+
* @returns any Retrieve the contents of a form. Rights are checked via form rights, unless called from a Scripted System Service.
|
|
60
60
|
* @throws ApiError
|
|
61
61
|
*/
|
|
62
62
|
static formRetrieve(casePath, formId, format = 'simple') {
|
|
@@ -73,13 +73,13 @@ class CaseService {
|
|
|
73
73
|
});
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
|
-
* Retrieve the contents of a dataset
|
|
76
|
+
* Retrieve the contents of a dataset. Rights are checked via widget rights, unless called from a Scripted System Service.
|
|
77
77
|
* @param casePath Path or Id of case
|
|
78
78
|
* @param dataset ID of dataset
|
|
79
79
|
* @param widget ID of widget
|
|
80
80
|
* @param format Format of the result
|
|
81
81
|
* @param requestBody
|
|
82
|
-
* @returns DatasetResult Retrieve the contents of a dataset
|
|
82
|
+
* @returns DatasetResult Retrieve the contents of a dataset. Rights are checked via widget rights, unless called from a Scripted System Service.
|
|
83
83
|
* @throws ApiError
|
|
84
84
|
*/
|
|
85
85
|
static datasetRetrieveViaWidget(casePath, dataset, widget, format = 'full', requestBody) {
|
|
@@ -209,12 +209,12 @@ class CaseService {
|
|
|
209
209
|
}
|
|
210
210
|
/**
|
|
211
211
|
* @deprecated
|
|
212
|
-
* Retrieve the contents of a dataset
|
|
212
|
+
* Retrieve the contents of a dataset. Rights are checked via dataset rights, unless called from a Scripted System Service.
|
|
213
213
|
* @param caseId ID of case
|
|
214
214
|
* @param dataset ID of dataset
|
|
215
215
|
* @param format Format of the result
|
|
216
216
|
* @param requestBody
|
|
217
|
-
* @returns DatasetResult Retrieve the contents of a dataset
|
|
217
|
+
* @returns DatasetResult Retrieve the contents of a dataset. Rights are checked via dataset rights, unless called from a Scripted System Service.
|
|
218
218
|
* @throws ApiError
|
|
219
219
|
*/
|
|
220
220
|
static datasetGet(caseId, dataset, format = 'simple', requestBody) {
|
|
@@ -234,11 +234,11 @@ class CaseService {
|
|
|
234
234
|
}
|
|
235
235
|
/**
|
|
236
236
|
* @deprecated
|
|
237
|
-
* Retrieve the contents of a form
|
|
237
|
+
* Retrieve the contents of a form. Rights are checked via form rights, unless called from a Scripted System Service.
|
|
238
238
|
* @param caseId ID of case
|
|
239
239
|
* @param formId ID of form
|
|
240
240
|
* @param format Format of the result
|
|
241
|
-
* @returns any Retrieve the contents of a form
|
|
241
|
+
* @returns any Retrieve the contents of a form. Rights are checked via form rights, unless called from a Scripted System Service.
|
|
242
242
|
* @throws ApiError
|
|
243
243
|
*/
|
|
244
244
|
static formGet(caseId, formId, format = 'simple') {
|
|
@@ -256,13 +256,13 @@ class CaseService {
|
|
|
256
256
|
}
|
|
257
257
|
/**
|
|
258
258
|
* @deprecated
|
|
259
|
-
* Retrieve the contents of a dataset
|
|
259
|
+
* Retrieve the contents of a dataset. Rights are checked via widget rights, unless called from a Scripted System Service.
|
|
260
260
|
* @param caseId ID of case
|
|
261
261
|
* @param dataset ID of dataset
|
|
262
262
|
* @param widget ID of widget
|
|
263
263
|
* @param format Format of the result
|
|
264
264
|
* @param requestBody
|
|
265
|
-
* @returns DatasetResult Retrieve the contents of a dataset
|
|
265
|
+
* @returns DatasetResult Retrieve the contents of a dataset. Rights are checked via widget rights, unless called from a Scripted System Service.
|
|
266
266
|
* @throws ApiError
|
|
267
267
|
*/
|
|
268
268
|
static datasetGetViaWidget(caseId, dataset, widget, format = 'full', requestBody) {
|