grexx-api 12.15.34 → 12.15.36
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.15.
|
|
6
|
+
VERSION: '12.15.36',
|
|
7
7
|
WITH_CREDENTIALS: false,
|
|
8
8
|
CREDENTIALS: 'include',
|
|
9
9
|
TOKEN: undefined,
|
|
@@ -30,6 +30,7 @@ export type { DatasetResult } from './models/DatasetResult';
|
|
|
30
30
|
export type { DateProfile } from './models/DateProfile';
|
|
31
31
|
export { FieldType } from './models/FieldType';
|
|
32
32
|
export type { FileUploadProfile } from './models/FileUploadProfile';
|
|
33
|
+
export type { FilledInValue } from './models/FilledInValue';
|
|
33
34
|
export type { FormActionAi } from './models/FormActionAi';
|
|
34
35
|
export type { FormButton } from './models/FormButton';
|
|
35
36
|
export type { FormField } from './models/FormField';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type FilledInValue = {
|
|
2
|
+
locale?: Record<string, any>;
|
|
3
|
+
picklistLabel?: string;
|
|
4
|
+
picklistLabel_single?: string;
|
|
5
|
+
/**
|
|
6
|
+
* If the value is a caseid, this is the reference of that case
|
|
7
|
+
*/
|
|
8
|
+
reference?: string;
|
|
9
|
+
reference_encodehtml?: string;
|
|
10
|
+
/**
|
|
11
|
+
* The raw value
|
|
12
|
+
*/
|
|
13
|
+
value?: any;
|
|
14
|
+
};
|
|
@@ -12,6 +12,7 @@ import type { CasetypeCss } from '../models/CasetypeCss';
|
|
|
12
12
|
import type { ColumnId } from '../models/ColumnId';
|
|
13
13
|
import type { ColumnIdentifier } from '../models/ColumnIdentifier';
|
|
14
14
|
import type { DatasetResult } from '../models/DatasetResult';
|
|
15
|
+
import type { FilledInValue } from '../models/FilledInValue';
|
|
15
16
|
import type { FormFieldConditionList } from '../models/FormFieldConditionList';
|
|
16
17
|
import type { FormFieldNotCondition } from '../models/FormFieldNotCondition';
|
|
17
18
|
import type { FormFieldSimpleCondition } from '../models/FormFieldSimpleCondition';
|
|
@@ -174,15 +175,27 @@ export declare class CaseService {
|
|
|
174
175
|
autoProgress?: boolean;
|
|
175
176
|
skipCheckRights?: boolean;
|
|
176
177
|
task?: number;
|
|
177
|
-
type: 'mandatory' | 'required';
|
|
178
|
+
type: 'mandatory' | 'required' | 'optionalTask' | 'task';
|
|
178
179
|
})): CancelablePromise<{
|
|
179
180
|
activity?: Activity;
|
|
181
|
+
dateSuggested?: string;
|
|
180
182
|
form?: any;
|
|
181
183
|
formCondition?: (FormFieldConditionList | FormFieldSimpleCondition | FormFieldNotCondition);
|
|
182
184
|
name?: string;
|
|
183
185
|
parentCase?: UnversionedReference;
|
|
184
186
|
startActivity?: Activity;
|
|
185
|
-
suggested?: Array<
|
|
187
|
+
suggested?: Array<{
|
|
188
|
+
formField?: UnversionedReference;
|
|
189
|
+
value?: Array<FilledInValue>;
|
|
190
|
+
}>;
|
|
191
|
+
suggestedBy?: {
|
|
192
|
+
caseId?: CaseReference;
|
|
193
|
+
caseReference?: string;
|
|
194
|
+
casetypeCaseId?: UnversionedReference;
|
|
195
|
+
casetypeDevRef?: string;
|
|
196
|
+
casetypeName?: string;
|
|
197
|
+
hasAnyRight?: boolean;
|
|
198
|
+
};
|
|
186
199
|
task?: number;
|
|
187
200
|
}>;
|
|
188
201
|
/**
|
|
@@ -195,12 +208,24 @@ export declare class CaseService {
|
|
|
195
208
|
*/
|
|
196
209
|
static taskInfo(casePath: string, task: number, format?: 'simple' | 'full'): CancelablePromise<{
|
|
197
210
|
activity?: Activity;
|
|
211
|
+
dateSuggested?: string;
|
|
198
212
|
form?: any;
|
|
199
213
|
formCondition?: (FormFieldConditionList | FormFieldSimpleCondition | FormFieldNotCondition);
|
|
200
214
|
name?: string;
|
|
201
215
|
parentCase?: UnversionedReference;
|
|
202
216
|
startActivity?: Activity;
|
|
203
|
-
suggested?: Array<
|
|
217
|
+
suggested?: Array<{
|
|
218
|
+
formField?: UnversionedReference;
|
|
219
|
+
value?: Array<FilledInValue>;
|
|
220
|
+
}>;
|
|
221
|
+
suggestedBy?: {
|
|
222
|
+
caseId?: CaseReference;
|
|
223
|
+
caseReference?: string;
|
|
224
|
+
casetypeCaseId?: UnversionedReference;
|
|
225
|
+
casetypeDevRef?: string;
|
|
226
|
+
casetypeName?: string;
|
|
227
|
+
hasAnyRight?: boolean;
|
|
228
|
+
};
|
|
204
229
|
task?: number;
|
|
205
230
|
}>;
|
|
206
231
|
/**
|
|
@@ -420,15 +445,27 @@ export declare class CaseService {
|
|
|
420
445
|
autoProgress?: boolean;
|
|
421
446
|
skipCheckRights?: boolean;
|
|
422
447
|
task?: number;
|
|
423
|
-
type: 'mandatory' | 'required';
|
|
448
|
+
type: 'mandatory' | 'required' | 'optionalTask' | 'task';
|
|
424
449
|
})): CancelablePromise<{
|
|
425
450
|
activity?: Activity;
|
|
451
|
+
dateSuggested?: string;
|
|
426
452
|
form?: any;
|
|
427
453
|
formCondition?: (FormFieldConditionList | FormFieldSimpleCondition | FormFieldNotCondition);
|
|
428
454
|
name?: string;
|
|
429
455
|
parentCase?: UnversionedReference;
|
|
430
456
|
startActivity?: Activity;
|
|
431
|
-
suggested?: Array<
|
|
457
|
+
suggested?: Array<{
|
|
458
|
+
formField?: UnversionedReference;
|
|
459
|
+
value?: Array<FilledInValue>;
|
|
460
|
+
}>;
|
|
461
|
+
suggestedBy?: {
|
|
462
|
+
caseId?: CaseReference;
|
|
463
|
+
caseReference?: string;
|
|
464
|
+
casetypeCaseId?: UnversionedReference;
|
|
465
|
+
casetypeDevRef?: string;
|
|
466
|
+
casetypeName?: string;
|
|
467
|
+
hasAnyRight?: boolean;
|
|
468
|
+
};
|
|
432
469
|
task?: number;
|
|
433
470
|
}>;
|
|
434
471
|
/**
|
|
@@ -442,12 +479,24 @@ export declare class CaseService {
|
|
|
442
479
|
*/
|
|
443
480
|
static caseTaskGet(caseId: UnversionedReference, task: number, format?: 'simple' | 'full'): CancelablePromise<{
|
|
444
481
|
activity?: Activity;
|
|
482
|
+
dateSuggested?: string;
|
|
445
483
|
form?: any;
|
|
446
484
|
formCondition?: (FormFieldConditionList | FormFieldSimpleCondition | FormFieldNotCondition);
|
|
447
485
|
name?: string;
|
|
448
486
|
parentCase?: UnversionedReference;
|
|
449
487
|
startActivity?: Activity;
|
|
450
|
-
suggested?: Array<
|
|
488
|
+
suggested?: Array<{
|
|
489
|
+
formField?: UnversionedReference;
|
|
490
|
+
value?: Array<FilledInValue>;
|
|
491
|
+
}>;
|
|
492
|
+
suggestedBy?: {
|
|
493
|
+
caseId?: CaseReference;
|
|
494
|
+
caseReference?: string;
|
|
495
|
+
casetypeCaseId?: UnversionedReference;
|
|
496
|
+
casetypeDevRef?: string;
|
|
497
|
+
casetypeName?: string;
|
|
498
|
+
hasAnyRight?: boolean;
|
|
499
|
+
};
|
|
451
500
|
task?: number;
|
|
452
501
|
}>;
|
|
453
502
|
/**
|