@product-live/api-sdk 3.0.0-preview.0 → 3.0.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.
- package/dist/index.d.mts +1101 -663
- package/dist/index.d.ts +1101 -663
- package/dist/index.js +791 -927
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +732 -868
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseRequestBuilder, RequestConfiguration, RequestInformation, Parsable, UntypedNode, ParseNode, SerializationWriter, MultipartBody, RequestAdapter, KeysToExcludeForNavigationMetadata, NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
1
|
+
import { BaseRequestBuilder, RequestConfiguration, RequestInformation, AdditionalDataHolder, Parsable, UntypedNode, ParseNode, SerializationWriter, MultipartBody, RequestAdapter, KeysToExcludeForNavigationMetadata, NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Builds and executes requests for operations under /probe/error
|
|
@@ -66,7 +66,11 @@ interface ProbeRequestBuilder extends BaseRequestBuilder<ProbeRequestBuilder> {
|
|
|
66
66
|
get readiness(): ReadinessRequestBuilder;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
-
interface AccountDto extends Parsable {
|
|
69
|
+
interface AccountDto extends AdditionalDataHolder, Parsable {
|
|
70
|
+
/**
|
|
71
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
72
|
+
*/
|
|
73
|
+
additionalData?: Record<string, unknown>;
|
|
70
74
|
/**
|
|
71
75
|
* The createdAt property
|
|
72
76
|
*/
|
|
@@ -93,13 +97,21 @@ interface AccountDto extends Parsable {
|
|
|
93
97
|
updatedAt?: string | null;
|
|
94
98
|
}
|
|
95
99
|
type AccountDto_object = (typeof AccountDto_objectObject)[keyof typeof AccountDto_objectObject];
|
|
96
|
-
interface ApplyAllSuggestionDto extends Parsable {
|
|
100
|
+
interface ApplyAllSuggestionDto extends AdditionalDataHolder, Parsable {
|
|
101
|
+
/**
|
|
102
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
103
|
+
*/
|
|
104
|
+
additionalData?: Record<string, unknown>;
|
|
97
105
|
/**
|
|
98
106
|
* The isAcknowledged property
|
|
99
107
|
*/
|
|
100
108
|
isAcknowledged?: boolean | null;
|
|
101
109
|
}
|
|
102
|
-
interface ApplySuggestionDto extends Parsable {
|
|
110
|
+
interface ApplySuggestionDto extends AdditionalDataHolder, Parsable {
|
|
111
|
+
/**
|
|
112
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
113
|
+
*/
|
|
114
|
+
additionalData?: Record<string, unknown>;
|
|
103
115
|
/**
|
|
104
116
|
* The fieldsKey property
|
|
105
117
|
*/
|
|
@@ -109,7 +121,11 @@ interface ApplySuggestionDto extends Parsable {
|
|
|
109
121
|
*/
|
|
110
122
|
isAcknowledged?: boolean | null;
|
|
111
123
|
}
|
|
112
|
-
interface AuditLogDto extends Parsable {
|
|
124
|
+
interface AuditLogDto extends AdditionalDataHolder, Parsable {
|
|
125
|
+
/**
|
|
126
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
127
|
+
*/
|
|
128
|
+
additionalData?: Record<string, unknown>;
|
|
113
129
|
/**
|
|
114
130
|
* The details property
|
|
115
131
|
*/
|
|
@@ -135,14 +151,59 @@ interface AuditLogDto extends Parsable {
|
|
|
135
151
|
*/
|
|
136
152
|
version?: string | null;
|
|
137
153
|
}
|
|
138
|
-
interface AuditLogDto_details extends Parsable {
|
|
154
|
+
interface AuditLogDto_details extends AdditionalDataHolder, Parsable {
|
|
155
|
+
/**
|
|
156
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
157
|
+
*/
|
|
158
|
+
additionalData?: Record<string, unknown>;
|
|
139
159
|
}
|
|
140
160
|
type AuditLogDto_object = (typeof AuditLogDto_objectObject)[keyof typeof AuditLogDto_objectObject];
|
|
141
|
-
interface
|
|
161
|
+
interface CommentThreadCommentCreateDto extends AdditionalDataHolder, Parsable {
|
|
162
|
+
/**
|
|
163
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
164
|
+
*/
|
|
165
|
+
additionalData?: Record<string, unknown>;
|
|
166
|
+
/**
|
|
167
|
+
* The message property
|
|
168
|
+
*/
|
|
169
|
+
message?: string | null;
|
|
170
|
+
}
|
|
171
|
+
interface CommentThreadCommentDTO extends AdditionalDataHolder, Parsable {
|
|
172
|
+
/**
|
|
173
|
+
* The accountId property
|
|
174
|
+
*/
|
|
175
|
+
accountId?: string | null;
|
|
176
|
+
/**
|
|
177
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
178
|
+
*/
|
|
179
|
+
additionalData?: Record<string, unknown>;
|
|
180
|
+
/**
|
|
181
|
+
* The id property
|
|
182
|
+
*/
|
|
183
|
+
id?: string | null;
|
|
184
|
+
/**
|
|
185
|
+
* The message property
|
|
186
|
+
*/
|
|
187
|
+
message?: string | null;
|
|
188
|
+
/**
|
|
189
|
+
* The type property
|
|
190
|
+
*/
|
|
191
|
+
type?: CommentThreadCommentDTO_type | null;
|
|
192
|
+
/**
|
|
193
|
+
* The userId property
|
|
194
|
+
*/
|
|
195
|
+
userId?: string | null;
|
|
196
|
+
}
|
|
197
|
+
type CommentThreadCommentDTO_type = (typeof CommentThreadCommentDTO_typeObject)[keyof typeof CommentThreadCommentDTO_typeObject];
|
|
198
|
+
interface CommentThreadCreateDto extends AdditionalDataHolder, Parsable {
|
|
199
|
+
/**
|
|
200
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
201
|
+
*/
|
|
202
|
+
additionalData?: Record<string, unknown>;
|
|
142
203
|
/**
|
|
143
204
|
* The comments property
|
|
144
205
|
*/
|
|
145
|
-
comments?:
|
|
206
|
+
comments?: CommentThreadCommentCreateDto[] | null;
|
|
146
207
|
/**
|
|
147
208
|
* The object property
|
|
148
209
|
*/
|
|
@@ -158,7 +219,7 @@ interface CommentThreadCreateDto extends Parsable {
|
|
|
158
219
|
}
|
|
159
220
|
type CommentThreadCreateDto_object = (typeof CommentThreadCreateDto_objectObject)[keyof typeof CommentThreadCreateDto_objectObject];
|
|
160
221
|
type CommentThreadCreateDto_targetType = (typeof CommentThreadCreateDto_targetTypeObject)[keyof typeof CommentThreadCreateDto_targetTypeObject];
|
|
161
|
-
interface CommentThreadDto extends Parsable {
|
|
222
|
+
interface CommentThreadDto extends AdditionalDataHolder, Parsable {
|
|
162
223
|
/**
|
|
163
224
|
* The accountAssigneesId property
|
|
164
225
|
*/
|
|
@@ -167,10 +228,14 @@ interface CommentThreadDto extends Parsable {
|
|
|
167
228
|
* The accountId property
|
|
168
229
|
*/
|
|
169
230
|
accountId?: string | null;
|
|
231
|
+
/**
|
|
232
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
233
|
+
*/
|
|
234
|
+
additionalData?: Record<string, unknown>;
|
|
170
235
|
/**
|
|
171
236
|
* The comments property
|
|
172
237
|
*/
|
|
173
|
-
comments?:
|
|
238
|
+
comments?: CommentThreadCommentDTO[] | null;
|
|
174
239
|
/**
|
|
175
240
|
* The createdAt property
|
|
176
241
|
*/
|
|
@@ -215,39 +280,15 @@ interface CommentThreadDto extends Parsable {
|
|
|
215
280
|
type CommentThreadDto_object = (typeof CommentThreadDto_objectObject)[keyof typeof CommentThreadDto_objectObject];
|
|
216
281
|
type CommentThreadDto_targetType = (typeof CommentThreadDto_targetTypeObject)[keyof typeof CommentThreadDto_targetTypeObject];
|
|
217
282
|
type CommentThreadDto_type = (typeof CommentThreadDto_typeObject)[keyof typeof CommentThreadDto_typeObject];
|
|
218
|
-
interface
|
|
219
|
-
/**
|
|
220
|
-
* The message property
|
|
221
|
-
*/
|
|
222
|
-
message?: string | null;
|
|
223
|
-
}
|
|
224
|
-
interface CommentThreadReplyDTO extends Parsable {
|
|
283
|
+
interface CommentThreadSubscriberDto extends AdditionalDataHolder, Parsable {
|
|
225
284
|
/**
|
|
226
285
|
* The accountId property
|
|
227
286
|
*/
|
|
228
287
|
accountId?: string | null;
|
|
229
288
|
/**
|
|
230
|
-
*
|
|
231
|
-
*/
|
|
232
|
-
id?: string | null;
|
|
233
|
-
/**
|
|
234
|
-
* The message property
|
|
235
|
-
*/
|
|
236
|
-
message?: string | null;
|
|
237
|
-
/**
|
|
238
|
-
* The type property
|
|
239
|
-
*/
|
|
240
|
-
type?: string | null;
|
|
241
|
-
/**
|
|
242
|
-
* The userId property
|
|
243
|
-
*/
|
|
244
|
-
userId?: string | null;
|
|
245
|
-
}
|
|
246
|
-
interface CommentThreadSubscriberDto extends Parsable {
|
|
247
|
-
/**
|
|
248
|
-
* The accountId property
|
|
289
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
249
290
|
*/
|
|
250
|
-
|
|
291
|
+
additionalData?: Record<string, unknown>;
|
|
251
292
|
/**
|
|
252
293
|
* The commentThreadId property
|
|
253
294
|
*/
|
|
@@ -274,11 +315,15 @@ interface CommentThreadSubscriberDto extends Parsable {
|
|
|
274
315
|
userId?: string | null;
|
|
275
316
|
}
|
|
276
317
|
type CommentThreadSubscriberDto_object = (typeof CommentThreadSubscriberDto_objectObject)[keyof typeof CommentThreadSubscriberDto_objectObject];
|
|
277
|
-
interface CommentThreadUpdateDto extends Parsable {
|
|
318
|
+
interface CommentThreadUpdateDto extends AdditionalDataHolder, Parsable {
|
|
278
319
|
/**
|
|
279
320
|
* The accountAssigneesId property
|
|
280
321
|
*/
|
|
281
322
|
accountAssigneesId?: string[] | null;
|
|
323
|
+
/**
|
|
324
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
325
|
+
*/
|
|
326
|
+
additionalData?: Record<string, unknown>;
|
|
282
327
|
/**
|
|
283
328
|
* The isClosed property
|
|
284
329
|
*/
|
|
@@ -326,27 +371,27 @@ declare function createAuditLogDtoFromDiscriminatorValue(parseNode: ParseNode |
|
|
|
326
371
|
/**
|
|
327
372
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
328
373
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
329
|
-
* @returns {
|
|
374
|
+
* @returns {CommentThreadCommentCreateDto}
|
|
330
375
|
*/
|
|
331
|
-
declare function
|
|
376
|
+
declare function createCommentThreadCommentCreateDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
332
377
|
/**
|
|
333
378
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
334
379
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
335
|
-
* @returns {
|
|
380
|
+
* @returns {CommentThreadCommentDTO}
|
|
336
381
|
*/
|
|
337
|
-
declare function
|
|
382
|
+
declare function createCommentThreadCommentDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
338
383
|
/**
|
|
339
384
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
340
385
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
341
|
-
* @returns {
|
|
386
|
+
* @returns {CommentThreadCreateDto}
|
|
342
387
|
*/
|
|
343
|
-
declare function
|
|
388
|
+
declare function createCommentThreadCreateDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
344
389
|
/**
|
|
345
390
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
346
391
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
347
|
-
* @returns {
|
|
392
|
+
* @returns {CommentThreadDto}
|
|
348
393
|
*/
|
|
349
|
-
declare function
|
|
394
|
+
declare function createCommentThreadDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
350
395
|
/**
|
|
351
396
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
352
397
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -386,39 +431,9 @@ declare function createCreateJobExecutionDtoFromDiscriminatorValue(parseNode: Pa
|
|
|
386
431
|
/**
|
|
387
432
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
388
433
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
389
|
-
* @returns {
|
|
390
|
-
*/
|
|
391
|
-
declare function createCreateOrUpdateItemFieldFileDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
392
|
-
/**
|
|
393
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
394
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
395
|
-
* @returns {CreateOrUpdateItemFieldFileValueDTO}
|
|
396
|
-
*/
|
|
397
|
-
declare function createCreateOrUpdateItemFieldFileValueDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
398
|
-
/**
|
|
399
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
400
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
401
|
-
* @returns {CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto}
|
|
402
|
-
*/
|
|
403
|
-
declare function createCreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
404
|
-
/**
|
|
405
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
406
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
407
|
-
* @returns {CreateOrUpdateItemFieldNumberDto}
|
|
408
|
-
*/
|
|
409
|
-
declare function createCreateOrUpdateItemFieldNumberDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
410
|
-
/**
|
|
411
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
412
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
413
|
-
* @returns {CreateOrUpdateItemFieldStringArrayDto}
|
|
434
|
+
* @returns {CreateProjectDto}
|
|
414
435
|
*/
|
|
415
|
-
declare function
|
|
416
|
-
/**
|
|
417
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
418
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
419
|
-
* @returns {CreateOrUpdateItemFieldStringDto}
|
|
420
|
-
*/
|
|
421
|
-
declare function createCreateOrUpdateItemFieldStringDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
436
|
+
declare function createCreateProjectDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
422
437
|
/**
|
|
423
438
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
424
439
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -527,18 +542,6 @@ declare function createHighOrderQueryDTO_queriesFromDiscriminatorValue(parseNode
|
|
|
527
542
|
* @returns {HighOrderQueryDTO}
|
|
528
543
|
*/
|
|
529
544
|
declare function createHighOrderQueryDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
530
|
-
/**
|
|
531
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
532
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
533
|
-
* @returns {CreateOrUpdateItemFieldFileDto | CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto | CreateOrUpdateItemFieldNumberDto | CreateOrUpdateItemFieldStringArrayDto | CreateOrUpdateItemFieldStringDto}
|
|
534
|
-
*/
|
|
535
|
-
declare function createItemCreateOrUpdateDto_fieldsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
536
|
-
/**
|
|
537
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
538
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
539
|
-
* @returns {ItemCreateOrUpdateDto}
|
|
540
|
-
*/
|
|
541
|
-
declare function createItemCreateOrUpdateDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
542
545
|
/**
|
|
543
546
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
544
547
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -653,19 +656,17 @@ declare function createItemLinkCreateDtoFromDiscriminatorValue(parseNode: ParseN
|
|
|
653
656
|
* @returns {ItemLinkDto}
|
|
654
657
|
*/
|
|
655
658
|
declare function createItemLinkDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
656
|
-
/**
|
|
657
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
658
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
659
|
-
* @returns {ItemMetadataCreateOrUpdateDTO}
|
|
660
|
-
*/
|
|
661
|
-
declare function createItemMetadataCreateOrUpdateDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
662
659
|
/**
|
|
663
660
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
664
661
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
665
662
|
* @returns {ItemMetadataDTO}
|
|
666
663
|
*/
|
|
667
664
|
declare function createItemMetadataDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
668
|
-
interface CreateJobDto extends Parsable {
|
|
665
|
+
interface CreateJobDto extends AdditionalDataHolder, Parsable {
|
|
666
|
+
/**
|
|
667
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
668
|
+
*/
|
|
669
|
+
additionalData?: Record<string, unknown>;
|
|
669
670
|
/**
|
|
670
671
|
* The description property
|
|
671
672
|
*/
|
|
@@ -715,7 +716,11 @@ interface CreateJobDto extends Parsable {
|
|
|
715
716
|
*/
|
|
716
717
|
visibility?: JobVisibilityDto | null;
|
|
717
718
|
}
|
|
718
|
-
interface CreateJobDto_output extends Parsable {
|
|
719
|
+
interface CreateJobDto_output extends AdditionalDataHolder, Parsable {
|
|
720
|
+
/**
|
|
721
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
722
|
+
*/
|
|
723
|
+
additionalData?: Record<string, unknown>;
|
|
719
724
|
}
|
|
720
725
|
/**
|
|
721
726
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
@@ -730,7 +735,11 @@ type CreateJobDto_status = (typeof CreateJobDto_statusObject)[keyof typeof Creat
|
|
|
730
735
|
* @returns {JobDto}
|
|
731
736
|
*/
|
|
732
737
|
declare function createJobDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
733
|
-
interface CreateJobExecutionDto extends Parsable {
|
|
738
|
+
interface CreateJobExecutionDto extends AdditionalDataHolder, Parsable {
|
|
739
|
+
/**
|
|
740
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
741
|
+
*/
|
|
742
|
+
additionalData?: Record<string, unknown>;
|
|
734
743
|
/**
|
|
735
744
|
* The info property
|
|
736
745
|
*/
|
|
@@ -744,7 +753,11 @@ interface CreateJobExecutionDto extends Parsable {
|
|
|
744
753
|
*/
|
|
745
754
|
jobId?: string | null;
|
|
746
755
|
}
|
|
747
|
-
interface CreateJobExecutionDto_input extends Parsable {
|
|
756
|
+
interface CreateJobExecutionDto_input extends AdditionalDataHolder, Parsable {
|
|
757
|
+
/**
|
|
758
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
759
|
+
*/
|
|
760
|
+
additionalData?: Record<string, unknown>;
|
|
748
761
|
}
|
|
749
762
|
/**
|
|
750
763
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
@@ -824,87 +837,6 @@ declare function createLowOrderQueryDTOFromDiscriminatorValue(parseNode: ParseNo
|
|
|
824
837
|
* @returns {MatrixFieldDto}
|
|
825
838
|
*/
|
|
826
839
|
declare function createMatrixFieldDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
827
|
-
interface CreateOrUpdateItemFieldFileDto extends Parsable {
|
|
828
|
-
/**
|
|
829
|
-
* The key property
|
|
830
|
-
*/
|
|
831
|
-
key?: string | null;
|
|
832
|
-
/**
|
|
833
|
-
* The type property
|
|
834
|
-
*/
|
|
835
|
-
type?: CreateOrUpdateItemFieldFileDto_type | null;
|
|
836
|
-
/**
|
|
837
|
-
* The value property
|
|
838
|
-
*/
|
|
839
|
-
value?: CreateOrUpdateItemFieldFileValueDTO | null;
|
|
840
|
-
}
|
|
841
|
-
type CreateOrUpdateItemFieldFileDto_type = (typeof CreateOrUpdateItemFieldFileDto_typeObject)[keyof typeof CreateOrUpdateItemFieldFileDto_typeObject];
|
|
842
|
-
interface CreateOrUpdateItemFieldFileValueDTO extends Parsable {
|
|
843
|
-
/**
|
|
844
|
-
* The data property
|
|
845
|
-
*/
|
|
846
|
-
data?: ItemFieldFileData | null;
|
|
847
|
-
}
|
|
848
|
-
interface CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto extends Parsable {
|
|
849
|
-
/**
|
|
850
|
-
* The key property
|
|
851
|
-
*/
|
|
852
|
-
key?: string | null;
|
|
853
|
-
/**
|
|
854
|
-
* The type property
|
|
855
|
-
*/
|
|
856
|
-
type?: CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto_type | null;
|
|
857
|
-
/**
|
|
858
|
-
* The value property
|
|
859
|
-
*/
|
|
860
|
-
value?: ItemFieldMultipleSelectWithCommentAndQuantityValueDTO | null;
|
|
861
|
-
}
|
|
862
|
-
type CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto_type = (typeof CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto_typeObject)[keyof typeof CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto_typeObject];
|
|
863
|
-
interface CreateOrUpdateItemFieldNumberDto extends Parsable {
|
|
864
|
-
/**
|
|
865
|
-
* The key property
|
|
866
|
-
*/
|
|
867
|
-
key?: string | null;
|
|
868
|
-
/**
|
|
869
|
-
* The type property
|
|
870
|
-
*/
|
|
871
|
-
type?: CreateOrUpdateItemFieldNumberDto_type | null;
|
|
872
|
-
/**
|
|
873
|
-
* The value property
|
|
874
|
-
*/
|
|
875
|
-
value?: ItemFieldSimpleNumberValueDTO | null;
|
|
876
|
-
}
|
|
877
|
-
type CreateOrUpdateItemFieldNumberDto_type = (typeof CreateOrUpdateItemFieldNumberDto_typeObject)[keyof typeof CreateOrUpdateItemFieldNumberDto_typeObject];
|
|
878
|
-
interface CreateOrUpdateItemFieldStringArrayDto extends Parsable {
|
|
879
|
-
/**
|
|
880
|
-
* The key property
|
|
881
|
-
*/
|
|
882
|
-
key?: string | null;
|
|
883
|
-
/**
|
|
884
|
-
* The type property
|
|
885
|
-
*/
|
|
886
|
-
type?: CreateOrUpdateItemFieldStringArrayDto_type | null;
|
|
887
|
-
/**
|
|
888
|
-
* The value property
|
|
889
|
-
*/
|
|
890
|
-
value?: ItemFieldSimpleStringArrayValueDTO | null;
|
|
891
|
-
}
|
|
892
|
-
type CreateOrUpdateItemFieldStringArrayDto_type = (typeof CreateOrUpdateItemFieldStringArrayDto_typeObject)[keyof typeof CreateOrUpdateItemFieldStringArrayDto_typeObject];
|
|
893
|
-
interface CreateOrUpdateItemFieldStringDto extends Parsable {
|
|
894
|
-
/**
|
|
895
|
-
* The key property
|
|
896
|
-
*/
|
|
897
|
-
key?: string | null;
|
|
898
|
-
/**
|
|
899
|
-
* The type property
|
|
900
|
-
*/
|
|
901
|
-
type?: CreateOrUpdateItemFieldStringDto_type | null;
|
|
902
|
-
/**
|
|
903
|
-
* The value property
|
|
904
|
-
*/
|
|
905
|
-
value?: ItemFieldSimpleStringValueDTO | null;
|
|
906
|
-
}
|
|
907
|
-
type CreateOrUpdateItemFieldStringDto_type = (typeof CreateOrUpdateItemFieldStringDto_typeObject)[keyof typeof CreateOrUpdateItemFieldStringDto_typeObject];
|
|
908
840
|
/**
|
|
909
841
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
910
842
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -923,7 +855,31 @@ declare function createPatchPublicationDtoFromDiscriminatorValue(parseNode: Pars
|
|
|
923
855
|
* @returns {PatchTaskExecutionDto}
|
|
924
856
|
*/
|
|
925
857
|
declare function createPatchTaskExecutionDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
926
|
-
interface
|
|
858
|
+
interface CreateProjectDto extends AdditionalDataHolder, Parsable {
|
|
859
|
+
/**
|
|
860
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
861
|
+
*/
|
|
862
|
+
additionalData?: Record<string, unknown>;
|
|
863
|
+
/**
|
|
864
|
+
* The displayName property
|
|
865
|
+
*/
|
|
866
|
+
displayName?: string | null;
|
|
867
|
+
/**
|
|
868
|
+
* The parentId property
|
|
869
|
+
*/
|
|
870
|
+
parentId?: string | null;
|
|
871
|
+
}
|
|
872
|
+
/**
|
|
873
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
874
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
875
|
+
* @returns {ProjectDto}
|
|
876
|
+
*/
|
|
877
|
+
declare function createProjectDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
878
|
+
interface CreatePublicationDto extends AdditionalDataHolder, Parsable {
|
|
879
|
+
/**
|
|
880
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
881
|
+
*/
|
|
882
|
+
additionalData?: Record<string, unknown>;
|
|
927
883
|
/**
|
|
928
884
|
* The fromItemId property
|
|
929
885
|
*/
|
|
@@ -979,18 +935,6 @@ declare function createSectionDto_metadataFromDiscriminatorValue(parseNode: Pars
|
|
|
979
935
|
* @returns {SectionDto}
|
|
980
936
|
*/
|
|
981
937
|
declare function createSectionDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
982
|
-
/**
|
|
983
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
984
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
985
|
-
* @returns {CreateOrUpdateItemFieldFileDto | CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto | CreateOrUpdateItemFieldNumberDto | CreateOrUpdateItemFieldStringArrayDto | CreateOrUpdateItemFieldStringDto}
|
|
986
|
-
*/
|
|
987
|
-
declare function createSuggestionCreateDto_fieldsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
988
|
-
/**
|
|
989
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
990
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
991
|
-
* @returns {SuggestionCreateDto}
|
|
992
|
-
*/
|
|
993
|
-
declare function createSuggestionCreateDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
994
938
|
/**
|
|
995
939
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
996
940
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1015,7 +959,11 @@ declare function createSuggestionDtoFromDiscriminatorValue(parseNode: ParseNode
|
|
|
1015
959
|
* @returns {TableDto}
|
|
1016
960
|
*/
|
|
1017
961
|
declare function createTableDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1018
|
-
interface CreateTaskDto extends Parsable {
|
|
962
|
+
interface CreateTaskDto extends AdditionalDataHolder, Parsable {
|
|
963
|
+
/**
|
|
964
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
965
|
+
*/
|
|
966
|
+
additionalData?: Record<string, unknown>;
|
|
1019
967
|
/**
|
|
1020
968
|
* The backoffScaleFactor property
|
|
1021
969
|
*/
|
|
@@ -1131,7 +1079,11 @@ declare function createUpdateVariableDtoFromDiscriminatorValue(parseNode: ParseN
|
|
|
1131
1079
|
* @returns {UserDto}
|
|
1132
1080
|
*/
|
|
1133
1081
|
declare function createUserDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1134
|
-
interface CreateVariableDto extends Parsable {
|
|
1082
|
+
interface CreateVariableDto extends AdditionalDataHolder, Parsable {
|
|
1083
|
+
/**
|
|
1084
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1085
|
+
*/
|
|
1086
|
+
additionalData?: Record<string, unknown>;
|
|
1135
1087
|
/**
|
|
1136
1088
|
* The isSecret property
|
|
1137
1089
|
*/
|
|
@@ -1189,22 +1141,22 @@ declare function deserializeIntoAuditLogDto_details(auditLogDto_details?: Partia
|
|
|
1189
1141
|
* The deserialization information for the current model
|
|
1190
1142
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1191
1143
|
*/
|
|
1192
|
-
declare function
|
|
1144
|
+
declare function deserializeIntoCommentThreadCommentCreateDto(commentThreadCommentCreateDto?: Partial<CommentThreadCommentCreateDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1193
1145
|
/**
|
|
1194
1146
|
* The deserialization information for the current model
|
|
1195
1147
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1196
1148
|
*/
|
|
1197
|
-
declare function
|
|
1149
|
+
declare function deserializeIntoCommentThreadCommentDTO(commentThreadCommentDTO?: Partial<CommentThreadCommentDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1198
1150
|
/**
|
|
1199
1151
|
* The deserialization information for the current model
|
|
1200
1152
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1201
1153
|
*/
|
|
1202
|
-
declare function
|
|
1154
|
+
declare function deserializeIntoCommentThreadCreateDto(commentThreadCreateDto?: Partial<CommentThreadCreateDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1203
1155
|
/**
|
|
1204
1156
|
* The deserialization information for the current model
|
|
1205
1157
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1206
1158
|
*/
|
|
1207
|
-
declare function
|
|
1159
|
+
declare function deserializeIntoCommentThreadDto(commentThreadDto?: Partial<CommentThreadDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1208
1160
|
/**
|
|
1209
1161
|
* The deserialization information for the current model
|
|
1210
1162
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1239,32 +1191,7 @@ declare function deserializeIntoCreateJobExecutionDto_input(createJobExecutionDt
|
|
|
1239
1191
|
* The deserialization information for the current model
|
|
1240
1192
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1241
1193
|
*/
|
|
1242
|
-
declare function
|
|
1243
|
-
/**
|
|
1244
|
-
* The deserialization information for the current model
|
|
1245
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1246
|
-
*/
|
|
1247
|
-
declare function deserializeIntoCreateOrUpdateItemFieldFileValueDTO(createOrUpdateItemFieldFileValueDTO?: Partial<CreateOrUpdateItemFieldFileValueDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1248
|
-
/**
|
|
1249
|
-
* The deserialization information for the current model
|
|
1250
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1251
|
-
*/
|
|
1252
|
-
declare function deserializeIntoCreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto(createOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto?: Partial<CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1253
|
-
/**
|
|
1254
|
-
* The deserialization information for the current model
|
|
1255
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1256
|
-
*/
|
|
1257
|
-
declare function deserializeIntoCreateOrUpdateItemFieldNumberDto(createOrUpdateItemFieldNumberDto?: Partial<CreateOrUpdateItemFieldNumberDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1258
|
-
/**
|
|
1259
|
-
* The deserialization information for the current model
|
|
1260
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1261
|
-
*/
|
|
1262
|
-
declare function deserializeIntoCreateOrUpdateItemFieldStringArrayDto(createOrUpdateItemFieldStringArrayDto?: Partial<CreateOrUpdateItemFieldStringArrayDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1263
|
-
/**
|
|
1264
|
-
* The deserialization information for the current model
|
|
1265
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1266
|
-
*/
|
|
1267
|
-
declare function deserializeIntoCreateOrUpdateItemFieldStringDto(createOrUpdateItemFieldStringDto?: Partial<CreateOrUpdateItemFieldStringDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1194
|
+
declare function deserializeIntoCreateProjectDto(createProjectDto?: Partial<CreateProjectDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1268
1195
|
/**
|
|
1269
1196
|
* The deserialization information for the current model
|
|
1270
1197
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1355,16 +1282,6 @@ declare function deserializeIntoHighOrderQueryDTO(highOrderQueryDTO?: Partial<Hi
|
|
|
1355
1282
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1356
1283
|
*/
|
|
1357
1284
|
declare function deserializeIntoHighOrderQueryDTO_queries(highOrderQueryDTO_queries?: Partial<HighOrderQueryDTO | LowOrderQueryDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1358
|
-
/**
|
|
1359
|
-
* The deserialization information for the current model
|
|
1360
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1361
|
-
*/
|
|
1362
|
-
declare function deserializeIntoItemCreateOrUpdateDto(itemCreateOrUpdateDto?: Partial<ItemCreateOrUpdateDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1363
|
-
/**
|
|
1364
|
-
* The deserialization information for the current model
|
|
1365
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1366
|
-
*/
|
|
1367
|
-
declare function deserializeIntoItemCreateOrUpdateDto_fields(itemCreateOrUpdateDto_fields?: Partial<CreateOrUpdateItemFieldFileDto | CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto | CreateOrUpdateItemFieldNumberDto | CreateOrUpdateItemFieldStringArrayDto | CreateOrUpdateItemFieldStringDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1368
1285
|
/**
|
|
1369
1286
|
* The deserialization information for the current model
|
|
1370
1287
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1460,11 +1377,6 @@ declare function deserializeIntoItemLinkCreateDto(itemLinkCreateDto?: Partial<It
|
|
|
1460
1377
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1461
1378
|
*/
|
|
1462
1379
|
declare function deserializeIntoItemLinkDto(itemLinkDto?: Partial<ItemLinkDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1463
|
-
/**
|
|
1464
|
-
* The deserialization information for the current model
|
|
1465
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1466
|
-
*/
|
|
1467
|
-
declare function deserializeIntoItemMetadataCreateOrUpdateDTO(itemMetadataCreateOrUpdateDTO?: Partial<ItemMetadataCreateOrUpdateDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1468
1380
|
/**
|
|
1469
1381
|
* The deserialization information for the current model
|
|
1470
1382
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1560,6 +1472,11 @@ declare function deserializeIntoPatchPublicationDto(patchPublicationDto?: Partia
|
|
|
1560
1472
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1561
1473
|
*/
|
|
1562
1474
|
declare function deserializeIntoPatchTaskExecutionDto(patchTaskExecutionDto?: Partial<PatchTaskExecutionDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1475
|
+
/**
|
|
1476
|
+
* The deserialization information for the current model
|
|
1477
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1478
|
+
*/
|
|
1479
|
+
declare function deserializeIntoProjectDto(projectDto?: Partial<ProjectDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1563
1480
|
/**
|
|
1564
1481
|
* The deserialization information for the current model
|
|
1565
1482
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1595,16 +1512,6 @@ declare function deserializeIntoSectionDto(sectionDto?: Partial<SectionDto> | un
|
|
|
1595
1512
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1596
1513
|
*/
|
|
1597
1514
|
declare function deserializeIntoSectionDto_metadata(sectionDto_metadata?: Partial<SectionDto_metadata> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1598
|
-
/**
|
|
1599
|
-
* The deserialization information for the current model
|
|
1600
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1601
|
-
*/
|
|
1602
|
-
declare function deserializeIntoSuggestionCreateDto(suggestionCreateDto?: Partial<SuggestionCreateDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1603
|
-
/**
|
|
1604
|
-
* The deserialization information for the current model
|
|
1605
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1606
|
-
*/
|
|
1607
|
-
declare function deserializeIntoSuggestionCreateDto_fields(suggestionCreateDto_fields?: Partial<CreateOrUpdateItemFieldFileDto | CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto | CreateOrUpdateItemFieldNumberDto | CreateOrUpdateItemFieldStringArrayDto | CreateOrUpdateItemFieldStringDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1608
1515
|
/**
|
|
1609
1516
|
* The deserialization information for the current model
|
|
1610
1517
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1680,7 +1587,11 @@ declare function deserializeIntoUserDto(userDto?: Partial<UserDto> | undefined):
|
|
|
1680
1587
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1681
1588
|
*/
|
|
1682
1589
|
declare function deserializeIntoVariableDto(variableDto?: Partial<VariableDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1683
|
-
interface DisplayInfoDto extends Parsable {
|
|
1590
|
+
interface DisplayInfoDto extends AdditionalDataHolder, Parsable {
|
|
1591
|
+
/**
|
|
1592
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1593
|
+
*/
|
|
1594
|
+
additionalData?: Record<string, unknown>;
|
|
1684
1595
|
/**
|
|
1685
1596
|
* The precision property
|
|
1686
1597
|
*/
|
|
@@ -1694,7 +1605,11 @@ interface DisplayInfoDto extends Parsable {
|
|
|
1694
1605
|
*/
|
|
1695
1606
|
suffix?: string | null;
|
|
1696
1607
|
}
|
|
1697
|
-
interface FieldDto extends Parsable {
|
|
1608
|
+
interface FieldDto extends AdditionalDataHolder, Parsable {
|
|
1609
|
+
/**
|
|
1610
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1611
|
+
*/
|
|
1612
|
+
additionalData?: Record<string, unknown>;
|
|
1698
1613
|
/**
|
|
1699
1614
|
* The createdAt property
|
|
1700
1615
|
*/
|
|
@@ -1756,11 +1671,19 @@ interface FieldDto extends Parsable {
|
|
|
1756
1671
|
*/
|
|
1757
1672
|
updatedAt?: string | null;
|
|
1758
1673
|
}
|
|
1759
|
-
interface FieldDto_metadata extends Parsable {
|
|
1674
|
+
interface FieldDto_metadata extends AdditionalDataHolder, Parsable {
|
|
1675
|
+
/**
|
|
1676
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1677
|
+
*/
|
|
1678
|
+
additionalData?: Record<string, unknown>;
|
|
1760
1679
|
}
|
|
1761
1680
|
type FieldDto_object = (typeof FieldDto_objectObject)[keyof typeof FieldDto_objectObject];
|
|
1762
1681
|
type FieldDto_type = (typeof FieldDto_typeObject)[keyof typeof FieldDto_typeObject];
|
|
1763
|
-
interface FieldSuffixDto extends Parsable {
|
|
1682
|
+
interface FieldSuffixDto extends AdditionalDataHolder, Parsable {
|
|
1683
|
+
/**
|
|
1684
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1685
|
+
*/
|
|
1686
|
+
additionalData?: Record<string, unknown>;
|
|
1764
1687
|
/**
|
|
1765
1688
|
* The isDefault property
|
|
1766
1689
|
*/
|
|
@@ -1779,7 +1702,11 @@ interface FieldSuffixDto extends Parsable {
|
|
|
1779
1702
|
title?: string | null;
|
|
1780
1703
|
}
|
|
1781
1704
|
type FieldSuffixDto_status = (typeof FieldSuffixDto_statusObject)[keyof typeof FieldSuffixDto_statusObject];
|
|
1782
|
-
interface FieldUpdateDto extends Parsable {
|
|
1705
|
+
interface FieldUpdateDto extends AdditionalDataHolder, Parsable {
|
|
1706
|
+
/**
|
|
1707
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1708
|
+
*/
|
|
1709
|
+
additionalData?: Record<string, unknown>;
|
|
1783
1710
|
/**
|
|
1784
1711
|
* The description property
|
|
1785
1712
|
*/
|
|
@@ -1809,10 +1736,18 @@ interface FieldUpdateDto extends Parsable {
|
|
|
1809
1736
|
*/
|
|
1810
1737
|
titleLocal?: LocalizedStringDto | null;
|
|
1811
1738
|
}
|
|
1812
|
-
interface FieldUpdateDto_metadata extends Parsable {
|
|
1739
|
+
interface FieldUpdateDto_metadata extends AdditionalDataHolder, Parsable {
|
|
1740
|
+
/**
|
|
1741
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1742
|
+
*/
|
|
1743
|
+
additionalData?: Record<string, unknown>;
|
|
1813
1744
|
}
|
|
1814
1745
|
type FieldUpdateDto_object = (typeof FieldUpdateDto_objectObject)[keyof typeof FieldUpdateDto_objectObject];
|
|
1815
|
-
interface FieldValueDto extends Parsable {
|
|
1746
|
+
interface FieldValueDto extends AdditionalDataHolder, Parsable {
|
|
1747
|
+
/**
|
|
1748
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1749
|
+
*/
|
|
1750
|
+
additionalData?: Record<string, unknown>;
|
|
1816
1751
|
/**
|
|
1817
1752
|
* The color property
|
|
1818
1753
|
*/
|
|
@@ -1867,11 +1802,19 @@ interface FieldValueDto extends Parsable {
|
|
|
1867
1802
|
updatedAt?: string | null;
|
|
1868
1803
|
}
|
|
1869
1804
|
type FieldValueDto_color = (typeof FieldValueDto_colorObject)[keyof typeof FieldValueDto_colorObject];
|
|
1870
|
-
interface FieldValueDto_metadata extends Parsable {
|
|
1805
|
+
interface FieldValueDto_metadata extends AdditionalDataHolder, Parsable {
|
|
1806
|
+
/**
|
|
1807
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1808
|
+
*/
|
|
1809
|
+
additionalData?: Record<string, unknown>;
|
|
1871
1810
|
}
|
|
1872
1811
|
type FieldValueDto_object = (typeof FieldValueDto_objectObject)[keyof typeof FieldValueDto_objectObject];
|
|
1873
1812
|
type FieldValueDto_status = (typeof FieldValueDto_statusObject)[keyof typeof FieldValueDto_statusObject];
|
|
1874
|
-
interface FileDto extends Parsable {
|
|
1813
|
+
interface FileDto extends AdditionalDataHolder, Parsable {
|
|
1814
|
+
/**
|
|
1815
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1816
|
+
*/
|
|
1817
|
+
additionalData?: Record<string, unknown>;
|
|
1875
1818
|
/**
|
|
1876
1819
|
* The createdAt property
|
|
1877
1820
|
*/
|
|
@@ -1898,7 +1841,11 @@ interface FileDto extends Parsable {
|
|
|
1898
1841
|
url?: string | null;
|
|
1899
1842
|
}
|
|
1900
1843
|
type FileDto_object = (typeof FileDto_objectObject)[keyof typeof FileDto_objectObject];
|
|
1901
|
-
interface FindItemCustomField extends Parsable {
|
|
1844
|
+
interface FindItemCustomField extends AdditionalDataHolder, Parsable {
|
|
1845
|
+
/**
|
|
1846
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1847
|
+
*/
|
|
1848
|
+
additionalData?: Record<string, unknown>;
|
|
1902
1849
|
/**
|
|
1903
1850
|
* The key property
|
|
1904
1851
|
*/
|
|
@@ -1909,7 +1856,11 @@ interface FindItemCustomField extends Parsable {
|
|
|
1909
1856
|
target?: FindItemCustomField_target | null;
|
|
1910
1857
|
}
|
|
1911
1858
|
type FindItemCustomField_target = (typeof FindItemCustomField_targetObject)[keyof typeof FindItemCustomField_targetObject];
|
|
1912
|
-
interface FindItemHighOrderQueryDTO extends Parsable {
|
|
1859
|
+
interface FindItemHighOrderQueryDTO extends AdditionalDataHolder, Parsable {
|
|
1860
|
+
/**
|
|
1861
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1862
|
+
*/
|
|
1863
|
+
additionalData?: Record<string, unknown>;
|
|
1913
1864
|
/**
|
|
1914
1865
|
* The queries property
|
|
1915
1866
|
*/
|
|
@@ -1921,7 +1872,11 @@ interface FindItemHighOrderQueryDTO extends Parsable {
|
|
|
1921
1872
|
}
|
|
1922
1873
|
type FindItemHighOrderQueryDTO_queries = FindItemHighOrderQueryDTO | FindItemLowOrderQueryDTO | LowOrderQueryDTO;
|
|
1923
1874
|
type FindItemHighOrderQueryDTO_type = (typeof FindItemHighOrderQueryDTO_typeObject)[keyof typeof FindItemHighOrderQueryDTO_typeObject];
|
|
1924
|
-
interface FindItemLowOrderQueryDTO extends Parsable {
|
|
1875
|
+
interface FindItemLowOrderQueryDTO extends AdditionalDataHolder, Parsable {
|
|
1876
|
+
/**
|
|
1877
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1878
|
+
*/
|
|
1879
|
+
additionalData?: Record<string, unknown>;
|
|
1925
1880
|
/**
|
|
1926
1881
|
* The caseSensitive property
|
|
1927
1882
|
*/
|
|
@@ -1940,7 +1895,11 @@ interface FindItemLowOrderQueryDTO extends Parsable {
|
|
|
1940
1895
|
value?: UntypedNode | null;
|
|
1941
1896
|
}
|
|
1942
1897
|
type FindItemLowOrderQueryDTO_type = (typeof FindItemLowOrderQueryDTO_typeObject)[keyof typeof FindItemLowOrderQueryDTO_typeObject];
|
|
1943
|
-
interface HighOrderQueryDTO extends Parsable {
|
|
1898
|
+
interface HighOrderQueryDTO extends AdditionalDataHolder, Parsable {
|
|
1899
|
+
/**
|
|
1900
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1901
|
+
*/
|
|
1902
|
+
additionalData?: Record<string, unknown>;
|
|
1944
1903
|
/**
|
|
1945
1904
|
* The queries property
|
|
1946
1905
|
*/
|
|
@@ -1952,27 +1911,11 @@ interface HighOrderQueryDTO extends Parsable {
|
|
|
1952
1911
|
}
|
|
1953
1912
|
type HighOrderQueryDTO_queries = HighOrderQueryDTO | LowOrderQueryDTO;
|
|
1954
1913
|
type HighOrderQueryDTO_type = (typeof HighOrderQueryDTO_typeObject)[keyof typeof HighOrderQueryDTO_typeObject];
|
|
1955
|
-
interface
|
|
1956
|
-
/**
|
|
1957
|
-
* The fields property
|
|
1958
|
-
*/
|
|
1959
|
-
fields?: (CreateOrUpdateItemFieldFileDto | CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto | CreateOrUpdateItemFieldNumberDto | CreateOrUpdateItemFieldStringArrayDto | CreateOrUpdateItemFieldStringDto)[] | null;
|
|
1960
|
-
/**
|
|
1961
|
-
* The itemMetadata property
|
|
1962
|
-
*/
|
|
1963
|
-
itemMetadata?: ItemMetadataCreateOrUpdateDTO | null;
|
|
1914
|
+
interface ItemDto extends AdditionalDataHolder, Parsable {
|
|
1964
1915
|
/**
|
|
1965
|
-
*
|
|
1916
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1966
1917
|
*/
|
|
1967
|
-
|
|
1968
|
-
/**
|
|
1969
|
-
* The parentId property
|
|
1970
|
-
*/
|
|
1971
|
-
parentId?: string | null;
|
|
1972
|
-
}
|
|
1973
|
-
type ItemCreateOrUpdateDto_fields = CreateOrUpdateItemFieldFileDto | CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto | CreateOrUpdateItemFieldNumberDto | CreateOrUpdateItemFieldStringArrayDto | CreateOrUpdateItemFieldStringDto;
|
|
1974
|
-
type ItemCreateOrUpdateDto_object = (typeof ItemCreateOrUpdateDto_objectObject)[keyof typeof ItemCreateOrUpdateDto_objectObject];
|
|
1975
|
-
interface ItemDto extends Parsable {
|
|
1918
|
+
additionalData?: Record<string, unknown>;
|
|
1976
1919
|
/**
|
|
1977
1920
|
* The children property
|
|
1978
1921
|
*/
|
|
@@ -2012,7 +1955,11 @@ interface ItemDto extends Parsable {
|
|
|
2012
1955
|
}
|
|
2013
1956
|
type ItemDto_fields = ItemFieldCfDto | ItemFieldFileDTO | ItemFieldMultipleSelectWithCommentAndQuantityDTO | ItemFieldNumberDTO | ItemFieldStringArrayDTO | ItemFieldStringDTO;
|
|
2014
1957
|
type ItemDto_object = (typeof ItemDto_objectObject)[keyof typeof ItemDto_objectObject];
|
|
2015
|
-
interface ItemFieldCfDto extends Parsable {
|
|
1958
|
+
interface ItemFieldCfDto extends AdditionalDataHolder, Parsable {
|
|
1959
|
+
/**
|
|
1960
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1961
|
+
*/
|
|
1962
|
+
additionalData?: Record<string, unknown>;
|
|
2016
1963
|
/**
|
|
2017
1964
|
* The key property
|
|
2018
1965
|
*/
|
|
@@ -2027,7 +1974,11 @@ interface ItemFieldCfDto extends Parsable {
|
|
|
2027
1974
|
value?: ItemFieldCfValueDTO | null;
|
|
2028
1975
|
}
|
|
2029
1976
|
type ItemFieldCfDto_type = (typeof ItemFieldCfDto_typeObject)[keyof typeof ItemFieldCfDto_typeObject];
|
|
2030
|
-
interface ItemFieldCfValueDTO extends Parsable {
|
|
1977
|
+
interface ItemFieldCfValueDTO extends AdditionalDataHolder, Parsable {
|
|
1978
|
+
/**
|
|
1979
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1980
|
+
*/
|
|
1981
|
+
additionalData?: Record<string, unknown>;
|
|
2031
1982
|
/**
|
|
2032
1983
|
* The data property
|
|
2033
1984
|
*/
|
|
@@ -2041,7 +1992,11 @@ interface ItemFieldCfValueDTO extends Parsable {
|
|
|
2041
1992
|
*/
|
|
2042
1993
|
isProcessing?: boolean | null;
|
|
2043
1994
|
}
|
|
2044
|
-
interface ItemFieldFileData extends Parsable {
|
|
1995
|
+
interface ItemFieldFileData extends AdditionalDataHolder, Parsable {
|
|
1996
|
+
/**
|
|
1997
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1998
|
+
*/
|
|
1999
|
+
additionalData?: Record<string, unknown>;
|
|
2045
2000
|
/**
|
|
2046
2001
|
* The filename property
|
|
2047
2002
|
*/
|
|
@@ -2051,7 +2006,11 @@ interface ItemFieldFileData extends Parsable {
|
|
|
2051
2006
|
*/
|
|
2052
2007
|
hash?: string | null;
|
|
2053
2008
|
}
|
|
2054
|
-
interface ItemFieldFileDTO extends Parsable {
|
|
2009
|
+
interface ItemFieldFileDTO extends AdditionalDataHolder, Parsable {
|
|
2010
|
+
/**
|
|
2011
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2012
|
+
*/
|
|
2013
|
+
additionalData?: Record<string, unknown>;
|
|
2055
2014
|
/**
|
|
2056
2015
|
* The key property
|
|
2057
2016
|
*/
|
|
@@ -2066,13 +2025,21 @@ interface ItemFieldFileDTO extends Parsable {
|
|
|
2066
2025
|
value?: ItemFieldFileValueDTO | null;
|
|
2067
2026
|
}
|
|
2068
2027
|
type ItemFieldFileDTO_type = (typeof ItemFieldFileDTO_typeObject)[keyof typeof ItemFieldFileDTO_typeObject];
|
|
2069
|
-
interface ItemFieldFileValueDTO extends Parsable {
|
|
2028
|
+
interface ItemFieldFileValueDTO extends AdditionalDataHolder, Parsable {
|
|
2029
|
+
/**
|
|
2030
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2031
|
+
*/
|
|
2032
|
+
additionalData?: Record<string, unknown>;
|
|
2070
2033
|
/**
|
|
2071
2034
|
* The data property
|
|
2072
2035
|
*/
|
|
2073
2036
|
data?: ItemFieldFileData | null;
|
|
2074
2037
|
}
|
|
2075
|
-
interface ItemFieldMultipleSelectWithCommentAndQuantityData extends Parsable {
|
|
2038
|
+
interface ItemFieldMultipleSelectWithCommentAndQuantityData extends AdditionalDataHolder, Parsable {
|
|
2039
|
+
/**
|
|
2040
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2041
|
+
*/
|
|
2042
|
+
additionalData?: Record<string, unknown>;
|
|
2076
2043
|
/**
|
|
2077
2044
|
* The comment property
|
|
2078
2045
|
*/
|
|
@@ -2086,7 +2053,11 @@ interface ItemFieldMultipleSelectWithCommentAndQuantityData extends Parsable {
|
|
|
2086
2053
|
*/
|
|
2087
2054
|
quantity?: number | null;
|
|
2088
2055
|
}
|
|
2089
|
-
interface ItemFieldMultipleSelectWithCommentAndQuantityDTO extends Parsable {
|
|
2056
|
+
interface ItemFieldMultipleSelectWithCommentAndQuantityDTO extends AdditionalDataHolder, Parsable {
|
|
2057
|
+
/**
|
|
2058
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2059
|
+
*/
|
|
2060
|
+
additionalData?: Record<string, unknown>;
|
|
2090
2061
|
/**
|
|
2091
2062
|
* The key property
|
|
2092
2063
|
*/
|
|
@@ -2101,13 +2072,21 @@ interface ItemFieldMultipleSelectWithCommentAndQuantityDTO extends Parsable {
|
|
|
2101
2072
|
value?: ItemFieldMultipleSelectWithCommentAndQuantityValueDTO[] | null;
|
|
2102
2073
|
}
|
|
2103
2074
|
type ItemFieldMultipleSelectWithCommentAndQuantityDTO_type = (typeof ItemFieldMultipleSelectWithCommentAndQuantityDTO_typeObject)[keyof typeof ItemFieldMultipleSelectWithCommentAndQuantityDTO_typeObject];
|
|
2104
|
-
interface ItemFieldMultipleSelectWithCommentAndQuantityValueDTO extends Parsable {
|
|
2075
|
+
interface ItemFieldMultipleSelectWithCommentAndQuantityValueDTO extends AdditionalDataHolder, Parsable {
|
|
2076
|
+
/**
|
|
2077
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2078
|
+
*/
|
|
2079
|
+
additionalData?: Record<string, unknown>;
|
|
2105
2080
|
/**
|
|
2106
2081
|
* The data property
|
|
2107
2082
|
*/
|
|
2108
2083
|
data?: ItemFieldMultipleSelectWithCommentAndQuantityData[] | null;
|
|
2109
2084
|
}
|
|
2110
|
-
interface ItemFieldNumberDTO extends Parsable {
|
|
2085
|
+
interface ItemFieldNumberDTO extends AdditionalDataHolder, Parsable {
|
|
2086
|
+
/**
|
|
2087
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2088
|
+
*/
|
|
2089
|
+
additionalData?: Record<string, unknown>;
|
|
2111
2090
|
/**
|
|
2112
2091
|
* The key property
|
|
2113
2092
|
*/
|
|
@@ -2122,7 +2101,11 @@ interface ItemFieldNumberDTO extends Parsable {
|
|
|
2122
2101
|
value?: ItemFieldSimpleNumberValueDTO | null;
|
|
2123
2102
|
}
|
|
2124
2103
|
type ItemFieldNumberDTO_type = (typeof ItemFieldNumberDTO_typeObject)[keyof typeof ItemFieldNumberDTO_typeObject];
|
|
2125
|
-
interface ItemFieldSimpleNumberValueDTO extends Parsable {
|
|
2104
|
+
interface ItemFieldSimpleNumberValueDTO extends AdditionalDataHolder, Parsable {
|
|
2105
|
+
/**
|
|
2106
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2107
|
+
*/
|
|
2108
|
+
additionalData?: Record<string, unknown>;
|
|
2126
2109
|
/**
|
|
2127
2110
|
* The data property
|
|
2128
2111
|
*/
|
|
@@ -2132,19 +2115,31 @@ interface ItemFieldSimpleNumberValueDTO extends Parsable {
|
|
|
2132
2115
|
*/
|
|
2133
2116
|
suffix?: string | null;
|
|
2134
2117
|
}
|
|
2135
|
-
interface ItemFieldSimpleStringArrayValueDTO extends Parsable {
|
|
2118
|
+
interface ItemFieldSimpleStringArrayValueDTO extends AdditionalDataHolder, Parsable {
|
|
2119
|
+
/**
|
|
2120
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2121
|
+
*/
|
|
2122
|
+
additionalData?: Record<string, unknown>;
|
|
2136
2123
|
/**
|
|
2137
2124
|
* The data property
|
|
2138
2125
|
*/
|
|
2139
2126
|
data?: string[] | null;
|
|
2140
2127
|
}
|
|
2141
|
-
interface ItemFieldSimpleStringValueDTO extends Parsable {
|
|
2128
|
+
interface ItemFieldSimpleStringValueDTO extends AdditionalDataHolder, Parsable {
|
|
2129
|
+
/**
|
|
2130
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2131
|
+
*/
|
|
2132
|
+
additionalData?: Record<string, unknown>;
|
|
2142
2133
|
/**
|
|
2143
2134
|
* The data property
|
|
2144
2135
|
*/
|
|
2145
2136
|
data?: string | null;
|
|
2146
2137
|
}
|
|
2147
|
-
interface ItemFieldStringArrayDTO extends Parsable {
|
|
2138
|
+
interface ItemFieldStringArrayDTO extends AdditionalDataHolder, Parsable {
|
|
2139
|
+
/**
|
|
2140
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2141
|
+
*/
|
|
2142
|
+
additionalData?: Record<string, unknown>;
|
|
2148
2143
|
/**
|
|
2149
2144
|
* The key property
|
|
2150
2145
|
*/
|
|
@@ -2159,7 +2154,11 @@ interface ItemFieldStringArrayDTO extends Parsable {
|
|
|
2159
2154
|
value?: ItemFieldSimpleStringArrayValueDTO | null;
|
|
2160
2155
|
}
|
|
2161
2156
|
type ItemFieldStringArrayDTO_type = (typeof ItemFieldStringArrayDTO_typeObject)[keyof typeof ItemFieldStringArrayDTO_typeObject];
|
|
2162
|
-
interface ItemFieldStringDTO extends Parsable {
|
|
2157
|
+
interface ItemFieldStringDTO extends AdditionalDataHolder, Parsable {
|
|
2158
|
+
/**
|
|
2159
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2160
|
+
*/
|
|
2161
|
+
additionalData?: Record<string, unknown>;
|
|
2163
2162
|
/**
|
|
2164
2163
|
* The key property
|
|
2165
2164
|
*/
|
|
@@ -2174,7 +2173,11 @@ interface ItemFieldStringDTO extends Parsable {
|
|
|
2174
2173
|
value?: ItemFieldSimpleStringValueDTO | null;
|
|
2175
2174
|
}
|
|
2176
2175
|
type ItemFieldStringDTO_type = (typeof ItemFieldStringDTO_typeObject)[keyof typeof ItemFieldStringDTO_typeObject];
|
|
2177
|
-
interface ItemFindDTO extends Parsable {
|
|
2176
|
+
interface ItemFindDTO extends AdditionalDataHolder, Parsable {
|
|
2177
|
+
/**
|
|
2178
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2179
|
+
*/
|
|
2180
|
+
additionalData?: Record<string, unknown>;
|
|
2178
2181
|
/**
|
|
2179
2182
|
* Check that item field is an attachment with this extension
|
|
2180
2183
|
*/
|
|
@@ -2269,7 +2272,11 @@ interface ItemFindDTO extends Parsable {
|
|
|
2269
2272
|
stringStartsWith?: string[] | null;
|
|
2270
2273
|
}
|
|
2271
2274
|
type ItemFindDTO_order = (typeof ItemFindDTO_orderObject)[keyof typeof ItemFindDTO_orderObject];
|
|
2272
|
-
interface ItemLinkCreateDto extends Parsable {
|
|
2275
|
+
interface ItemLinkCreateDto extends AdditionalDataHolder, Parsable {
|
|
2276
|
+
/**
|
|
2277
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2278
|
+
*/
|
|
2279
|
+
additionalData?: Record<string, unknown>;
|
|
2273
2280
|
/**
|
|
2274
2281
|
* The fromItemId property
|
|
2275
2282
|
*/
|
|
@@ -2284,7 +2291,11 @@ interface ItemLinkCreateDto extends Parsable {
|
|
|
2284
2291
|
toItemId?: string | null;
|
|
2285
2292
|
}
|
|
2286
2293
|
type ItemLinkCreateDto_object = (typeof ItemLinkCreateDto_objectObject)[keyof typeof ItemLinkCreateDto_objectObject];
|
|
2287
|
-
interface ItemLinkDto extends Parsable {
|
|
2294
|
+
interface ItemLinkDto extends AdditionalDataHolder, Parsable {
|
|
2295
|
+
/**
|
|
2296
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2297
|
+
*/
|
|
2298
|
+
additionalData?: Record<string, unknown>;
|
|
2288
2299
|
/**
|
|
2289
2300
|
* The createdAt property
|
|
2290
2301
|
*/
|
|
@@ -2315,13 +2326,11 @@ interface ItemLinkDto extends Parsable {
|
|
|
2315
2326
|
updatedAt?: string | null;
|
|
2316
2327
|
}
|
|
2317
2328
|
type ItemLinkDto_object = (typeof ItemLinkDto_objectObject)[keyof typeof ItemLinkDto_objectObject];
|
|
2318
|
-
interface
|
|
2329
|
+
interface ItemMetadataDTO extends AdditionalDataHolder, Parsable {
|
|
2319
2330
|
/**
|
|
2320
|
-
*
|
|
2331
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2321
2332
|
*/
|
|
2322
|
-
|
|
2323
|
-
}
|
|
2324
|
-
interface ItemMetadataDTO extends Parsable {
|
|
2333
|
+
additionalData?: Record<string, unknown>;
|
|
2325
2334
|
/**
|
|
2326
2335
|
* The createdAt property
|
|
2327
2336
|
*/
|
|
@@ -2355,7 +2364,11 @@ interface ItemMetadataDTO extends Parsable {
|
|
|
2355
2364
|
*/
|
|
2356
2365
|
updatedAt?: string | null;
|
|
2357
2366
|
}
|
|
2358
|
-
interface JobDto extends Parsable {
|
|
2367
|
+
interface JobDto extends AdditionalDataHolder, Parsable {
|
|
2368
|
+
/**
|
|
2369
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2370
|
+
*/
|
|
2371
|
+
additionalData?: Record<string, unknown>;
|
|
2359
2372
|
/**
|
|
2360
2373
|
* The createdAt property
|
|
2361
2374
|
*/
|
|
@@ -2426,10 +2439,18 @@ interface JobDto extends Parsable {
|
|
|
2426
2439
|
visibility?: JobVisibilityDto | null;
|
|
2427
2440
|
}
|
|
2428
2441
|
type JobDto_object = (typeof JobDto_objectObject)[keyof typeof JobDto_objectObject];
|
|
2429
|
-
interface JobDto_output extends Parsable {
|
|
2442
|
+
interface JobDto_output extends AdditionalDataHolder, Parsable {
|
|
2443
|
+
/**
|
|
2444
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2445
|
+
*/
|
|
2446
|
+
additionalData?: Record<string, unknown>;
|
|
2430
2447
|
}
|
|
2431
2448
|
type JobDto_status = (typeof JobDto_statusObject)[keyof typeof JobDto_statusObject];
|
|
2432
|
-
interface JobExecutionDto extends Parsable {
|
|
2449
|
+
interface JobExecutionDto extends AdditionalDataHolder, Parsable {
|
|
2450
|
+
/**
|
|
2451
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2452
|
+
*/
|
|
2453
|
+
additionalData?: Record<string, unknown>;
|
|
2433
2454
|
/**
|
|
2434
2455
|
* The createdAt property
|
|
2435
2456
|
*/
|
|
@@ -2479,19 +2500,35 @@ interface JobExecutionDto extends Parsable {
|
|
|
2479
2500
|
*/
|
|
2480
2501
|
updatedAt?: string | null;
|
|
2481
2502
|
}
|
|
2482
|
-
interface JobExecutionDto_input extends Parsable {
|
|
2503
|
+
interface JobExecutionDto_input extends AdditionalDataHolder, Parsable {
|
|
2504
|
+
/**
|
|
2505
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2506
|
+
*/
|
|
2507
|
+
additionalData?: Record<string, unknown>;
|
|
2483
2508
|
}
|
|
2484
2509
|
type JobExecutionDto_object = (typeof JobExecutionDto_objectObject)[keyof typeof JobExecutionDto_objectObject];
|
|
2485
|
-
interface JobExecutionDto_output extends Parsable {
|
|
2510
|
+
interface JobExecutionDto_output extends AdditionalDataHolder, Parsable {
|
|
2511
|
+
/**
|
|
2512
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2513
|
+
*/
|
|
2514
|
+
additionalData?: Record<string, unknown>;
|
|
2486
2515
|
}
|
|
2487
2516
|
type JobExecutionDto_status = (typeof JobExecutionDto_statusObject)[keyof typeof JobExecutionDto_statusObject];
|
|
2488
|
-
interface JobExecutionInfoDto extends Parsable {
|
|
2517
|
+
interface JobExecutionInfoDto extends AdditionalDataHolder, Parsable {
|
|
2518
|
+
/**
|
|
2519
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2520
|
+
*/
|
|
2521
|
+
additionalData?: Record<string, unknown>;
|
|
2489
2522
|
/**
|
|
2490
2523
|
* The title property
|
|
2491
2524
|
*/
|
|
2492
2525
|
title?: string | null;
|
|
2493
2526
|
}
|
|
2494
|
-
interface JobLocalDto extends Parsable {
|
|
2527
|
+
interface JobLocalDto extends AdditionalDataHolder, Parsable {
|
|
2528
|
+
/**
|
|
2529
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2530
|
+
*/
|
|
2531
|
+
additionalData?: Record<string, unknown>;
|
|
2495
2532
|
/**
|
|
2496
2533
|
* The ara property
|
|
2497
2534
|
*/
|
|
@@ -2545,7 +2582,11 @@ interface JobLocalDto extends Parsable {
|
|
|
2545
2582
|
*/
|
|
2546
2583
|
zho?: string | null;
|
|
2547
2584
|
}
|
|
2548
|
-
interface JobPeriodicityDto extends Parsable {
|
|
2585
|
+
interface JobPeriodicityDto extends AdditionalDataHolder, Parsable {
|
|
2586
|
+
/**
|
|
2587
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2588
|
+
*/
|
|
2589
|
+
additionalData?: Record<string, unknown>;
|
|
2549
2590
|
/**
|
|
2550
2591
|
* The cronExpression property
|
|
2551
2592
|
*/
|
|
@@ -2555,7 +2596,11 @@ interface JobPeriodicityDto extends Parsable {
|
|
|
2555
2596
|
*/
|
|
2556
2597
|
isEnabled?: boolean | null;
|
|
2557
2598
|
}
|
|
2558
|
-
interface JobTaskDto extends Parsable {
|
|
2599
|
+
interface JobTaskDto extends AdditionalDataHolder, Parsable {
|
|
2600
|
+
/**
|
|
2601
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2602
|
+
*/
|
|
2603
|
+
additionalData?: Record<string, unknown>;
|
|
2559
2604
|
/**
|
|
2560
2605
|
* The description property
|
|
2561
2606
|
*/
|
|
@@ -2581,9 +2626,17 @@ interface JobTaskDto extends Parsable {
|
|
|
2581
2626
|
*/
|
|
2582
2627
|
type?: string | null;
|
|
2583
2628
|
}
|
|
2584
|
-
interface JobTaskDto_input extends Parsable {
|
|
2629
|
+
interface JobTaskDto_input extends AdditionalDataHolder, Parsable {
|
|
2630
|
+
/**
|
|
2631
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2632
|
+
*/
|
|
2633
|
+
additionalData?: Record<string, unknown>;
|
|
2585
2634
|
}
|
|
2586
|
-
interface JobVisibilityDto extends Parsable {
|
|
2635
|
+
interface JobVisibilityDto extends AdditionalDataHolder, Parsable {
|
|
2636
|
+
/**
|
|
2637
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2638
|
+
*/
|
|
2639
|
+
additionalData?: Record<string, unknown>;
|
|
2587
2640
|
/**
|
|
2588
2641
|
* The mode property
|
|
2589
2642
|
*/
|
|
@@ -2594,7 +2647,11 @@ interface JobVisibilityDto extends Parsable {
|
|
|
2594
2647
|
tablesId?: string[] | null;
|
|
2595
2648
|
}
|
|
2596
2649
|
type JobVisibilityDto_mode = (typeof JobVisibilityDto_modeObject)[keyof typeof JobVisibilityDto_modeObject];
|
|
2597
|
-
interface LevelDto extends Parsable {
|
|
2650
|
+
interface LevelDto extends AdditionalDataHolder, Parsable {
|
|
2651
|
+
/**
|
|
2652
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2653
|
+
*/
|
|
2654
|
+
additionalData?: Record<string, unknown>;
|
|
2598
2655
|
/**
|
|
2599
2656
|
* The createdAt property
|
|
2600
2657
|
*/
|
|
@@ -2636,7 +2693,11 @@ interface LevelDto extends Parsable {
|
|
|
2636
2693
|
*/
|
|
2637
2694
|
updatedAt?: string | null;
|
|
2638
2695
|
}
|
|
2639
|
-
interface LocalizedStringDto extends Parsable {
|
|
2696
|
+
interface LocalizedStringDto extends AdditionalDataHolder, Parsable {
|
|
2697
|
+
/**
|
|
2698
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2699
|
+
*/
|
|
2700
|
+
additionalData?: Record<string, unknown>;
|
|
2640
2701
|
/**
|
|
2641
2702
|
* The ara property
|
|
2642
2703
|
*/
|
|
@@ -2690,7 +2751,11 @@ interface LocalizedStringDto extends Parsable {
|
|
|
2690
2751
|
*/
|
|
2691
2752
|
zho?: string | null;
|
|
2692
2753
|
}
|
|
2693
|
-
interface LowOrderQueryDTO extends Parsable {
|
|
2754
|
+
interface LowOrderQueryDTO extends AdditionalDataHolder, Parsable {
|
|
2755
|
+
/**
|
|
2756
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2757
|
+
*/
|
|
2758
|
+
additionalData?: Record<string, unknown>;
|
|
2694
2759
|
/**
|
|
2695
2760
|
* The caseSensitive property
|
|
2696
2761
|
*/
|
|
@@ -2709,7 +2774,11 @@ interface LowOrderQueryDTO extends Parsable {
|
|
|
2709
2774
|
value?: UntypedNode | null;
|
|
2710
2775
|
}
|
|
2711
2776
|
type LowOrderQueryDTO_type = (typeof LowOrderQueryDTO_typeObject)[keyof typeof LowOrderQueryDTO_typeObject];
|
|
2712
|
-
interface MatrixFieldDto extends Parsable {
|
|
2777
|
+
interface MatrixFieldDto extends AdditionalDataHolder, Parsable {
|
|
2778
|
+
/**
|
|
2779
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2780
|
+
*/
|
|
2781
|
+
additionalData?: Record<string, unknown>;
|
|
2713
2782
|
/**
|
|
2714
2783
|
* The createdAt property
|
|
2715
2784
|
*/
|
|
@@ -2745,7 +2814,11 @@ interface MatrixFieldDto extends Parsable {
|
|
|
2745
2814
|
}
|
|
2746
2815
|
type MatrixFieldDto_object = (typeof MatrixFieldDto_objectObject)[keyof typeof MatrixFieldDto_objectObject];
|
|
2747
2816
|
type MatrixFieldDto_status = (typeof MatrixFieldDto_statusObject)[keyof typeof MatrixFieldDto_statusObject];
|
|
2748
|
-
interface PartitionDto extends Parsable {
|
|
2817
|
+
interface PartitionDto extends AdditionalDataHolder, Parsable {
|
|
2818
|
+
/**
|
|
2819
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2820
|
+
*/
|
|
2821
|
+
additionalData?: Record<string, unknown>;
|
|
2749
2822
|
/**
|
|
2750
2823
|
* The createdAt property
|
|
2751
2824
|
*/
|
|
@@ -2787,14 +2860,22 @@ interface PartitionDto extends Parsable {
|
|
|
2787
2860
|
*/
|
|
2788
2861
|
updatedAt?: string | null;
|
|
2789
2862
|
}
|
|
2790
|
-
interface PatchPublicationDto extends Parsable {
|
|
2863
|
+
interface PatchPublicationDto extends AdditionalDataHolder, Parsable {
|
|
2864
|
+
/**
|
|
2865
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2866
|
+
*/
|
|
2867
|
+
additionalData?: Record<string, unknown>;
|
|
2791
2868
|
/**
|
|
2792
2869
|
* The status property
|
|
2793
2870
|
*/
|
|
2794
2871
|
status?: PatchPublicationDto_status | null;
|
|
2795
2872
|
}
|
|
2796
2873
|
type PatchPublicationDto_status = (typeof PatchPublicationDto_statusObject)[keyof typeof PatchPublicationDto_statusObject];
|
|
2797
|
-
interface PatchTaskExecutionDto extends Parsable {
|
|
2874
|
+
interface PatchTaskExecutionDto extends AdditionalDataHolder, Parsable {
|
|
2875
|
+
/**
|
|
2876
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2877
|
+
*/
|
|
2878
|
+
additionalData?: Record<string, unknown>;
|
|
2798
2879
|
/**
|
|
2799
2880
|
* The id property
|
|
2800
2881
|
*/
|
|
@@ -2813,7 +2894,54 @@ interface PatchTaskExecutionDto extends Parsable {
|
|
|
2813
2894
|
status?: PatchTaskExecutionDto_status | null;
|
|
2814
2895
|
}
|
|
2815
2896
|
type PatchTaskExecutionDto_status = (typeof PatchTaskExecutionDto_statusObject)[keyof typeof PatchTaskExecutionDto_statusObject];
|
|
2816
|
-
interface
|
|
2897
|
+
interface ProjectDto extends AdditionalDataHolder, Parsable {
|
|
2898
|
+
/**
|
|
2899
|
+
* The accessKey property
|
|
2900
|
+
*/
|
|
2901
|
+
accessKey?: string | null;
|
|
2902
|
+
/**
|
|
2903
|
+
* The accountId property
|
|
2904
|
+
*/
|
|
2905
|
+
accountId?: string | null;
|
|
2906
|
+
/**
|
|
2907
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2908
|
+
*/
|
|
2909
|
+
additionalData?: Record<string, unknown>;
|
|
2910
|
+
/**
|
|
2911
|
+
* The createdAt property
|
|
2912
|
+
*/
|
|
2913
|
+
createdAt?: string | null;
|
|
2914
|
+
/**
|
|
2915
|
+
* The depth property
|
|
2916
|
+
*/
|
|
2917
|
+
depth?: number | null;
|
|
2918
|
+
/**
|
|
2919
|
+
* The displayName property
|
|
2920
|
+
*/
|
|
2921
|
+
displayName?: string | null;
|
|
2922
|
+
/**
|
|
2923
|
+
* The id property
|
|
2924
|
+
*/
|
|
2925
|
+
id?: string | null;
|
|
2926
|
+
/**
|
|
2927
|
+
* The object property
|
|
2928
|
+
*/
|
|
2929
|
+
object?: ProjectDto_object | null;
|
|
2930
|
+
/**
|
|
2931
|
+
* The parentId property
|
|
2932
|
+
*/
|
|
2933
|
+
parentId?: string | null;
|
|
2934
|
+
/**
|
|
2935
|
+
* The updatedAt property
|
|
2936
|
+
*/
|
|
2937
|
+
updatedAt?: string | null;
|
|
2938
|
+
}
|
|
2939
|
+
type ProjectDto_object = (typeof ProjectDto_objectObject)[keyof typeof ProjectDto_objectObject];
|
|
2940
|
+
interface PublicationDto extends AdditionalDataHolder, Parsable {
|
|
2941
|
+
/**
|
|
2942
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2943
|
+
*/
|
|
2944
|
+
additionalData?: Record<string, unknown>;
|
|
2817
2945
|
/**
|
|
2818
2946
|
* The createdAt property
|
|
2819
2947
|
*/
|
|
@@ -2866,7 +2994,11 @@ interface PublicationDto extends Parsable {
|
|
|
2866
2994
|
type PublicationDto_fields = ItemFieldCfDto | ItemFieldFileDTO | ItemFieldMultipleSelectWithCommentAndQuantityDTO | ItemFieldNumberDTO | ItemFieldStringArrayDTO | ItemFieldStringDTO;
|
|
2867
2995
|
type PublicationDto_object = (typeof PublicationDto_objectObject)[keyof typeof PublicationDto_objectObject];
|
|
2868
2996
|
type PublicationDto_status = (typeof PublicationDto_statusObject)[keyof typeof PublicationDto_statusObject];
|
|
2869
|
-
interface ScreenColumnDto extends Parsable {
|
|
2997
|
+
interface ScreenColumnDto extends AdditionalDataHolder, Parsable {
|
|
2998
|
+
/**
|
|
2999
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3000
|
+
*/
|
|
3001
|
+
additionalData?: Record<string, unknown>;
|
|
2870
3002
|
/**
|
|
2871
3003
|
* The createdAt property
|
|
2872
3004
|
*/
|
|
@@ -2910,7 +3042,11 @@ interface ScreenColumnDto extends Parsable {
|
|
|
2910
3042
|
}
|
|
2911
3043
|
type ScreenColumnDto_object = (typeof ScreenColumnDto_objectObject)[keyof typeof ScreenColumnDto_objectObject];
|
|
2912
3044
|
type ScreenColumnDto_width = (typeof ScreenColumnDto_widthObject)[keyof typeof ScreenColumnDto_widthObject];
|
|
2913
|
-
interface ScreenDto extends Parsable {
|
|
3045
|
+
interface ScreenDto extends AdditionalDataHolder, Parsable {
|
|
3046
|
+
/**
|
|
3047
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3048
|
+
*/
|
|
3049
|
+
additionalData?: Record<string, unknown>;
|
|
2914
3050
|
/**
|
|
2915
3051
|
* The createdAt property
|
|
2916
3052
|
*/
|
|
@@ -2966,7 +3102,11 @@ interface ScreenDto extends Parsable {
|
|
|
2966
3102
|
}
|
|
2967
3103
|
type ScreenDto_lineHeight = (typeof ScreenDto_lineHeightObject)[keyof typeof ScreenDto_lineHeightObject];
|
|
2968
3104
|
type ScreenDto_status = (typeof ScreenDto_statusObject)[keyof typeof ScreenDto_statusObject];
|
|
2969
|
-
interface ScreenSectionDto extends Parsable {
|
|
3105
|
+
interface ScreenSectionDto extends AdditionalDataHolder, Parsable {
|
|
3106
|
+
/**
|
|
3107
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3108
|
+
*/
|
|
3109
|
+
additionalData?: Record<string, unknown>;
|
|
2970
3110
|
/**
|
|
2971
3111
|
* The createdAt property
|
|
2972
3112
|
*/
|
|
@@ -3001,7 +3141,11 @@ interface ScreenSectionDto extends Parsable {
|
|
|
3001
3141
|
updatedAt?: string | null;
|
|
3002
3142
|
}
|
|
3003
3143
|
type ScreenSectionDto_object = (typeof ScreenSectionDto_objectObject)[keyof typeof ScreenSectionDto_objectObject];
|
|
3004
|
-
interface SectionDto extends Parsable {
|
|
3144
|
+
interface SectionDto extends AdditionalDataHolder, Parsable {
|
|
3145
|
+
/**
|
|
3146
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3147
|
+
*/
|
|
3148
|
+
additionalData?: Record<string, unknown>;
|
|
3005
3149
|
/**
|
|
3006
3150
|
* The createdAt property
|
|
3007
3151
|
*/
|
|
@@ -3043,7 +3187,11 @@ interface SectionDto extends Parsable {
|
|
|
3043
3187
|
*/
|
|
3044
3188
|
updatedAt?: string | null;
|
|
3045
3189
|
}
|
|
3046
|
-
interface SectionDto_metadata extends Parsable {
|
|
3190
|
+
interface SectionDto_metadata extends AdditionalDataHolder, Parsable {
|
|
3191
|
+
/**
|
|
3192
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3193
|
+
*/
|
|
3194
|
+
additionalData?: Record<string, unknown>;
|
|
3047
3195
|
}
|
|
3048
3196
|
/**
|
|
3049
3197
|
* Serializes information the current object
|
|
@@ -3074,22 +3222,22 @@ declare function serializeAuditLogDto_details(writer: SerializationWriter, audit
|
|
|
3074
3222
|
* Serializes information the current object
|
|
3075
3223
|
* @param writer Serialization writer to use to serialize this model
|
|
3076
3224
|
*/
|
|
3077
|
-
declare function
|
|
3225
|
+
declare function serializeCommentThreadCommentCreateDto(writer: SerializationWriter, commentThreadCommentCreateDto?: Partial<CommentThreadCommentCreateDto> | undefined | null): void;
|
|
3078
3226
|
/**
|
|
3079
3227
|
* Serializes information the current object
|
|
3080
3228
|
* @param writer Serialization writer to use to serialize this model
|
|
3081
3229
|
*/
|
|
3082
|
-
declare function
|
|
3230
|
+
declare function serializeCommentThreadCommentDTO(writer: SerializationWriter, commentThreadCommentDTO?: Partial<CommentThreadCommentDTO> | undefined | null): void;
|
|
3083
3231
|
/**
|
|
3084
3232
|
* Serializes information the current object
|
|
3085
3233
|
* @param writer Serialization writer to use to serialize this model
|
|
3086
3234
|
*/
|
|
3087
|
-
declare function
|
|
3235
|
+
declare function serializeCommentThreadCreateDto(writer: SerializationWriter, commentThreadCreateDto?: Partial<CommentThreadCreateDto> | undefined | null): void;
|
|
3088
3236
|
/**
|
|
3089
3237
|
* Serializes information the current object
|
|
3090
3238
|
* @param writer Serialization writer to use to serialize this model
|
|
3091
3239
|
*/
|
|
3092
|
-
declare function
|
|
3240
|
+
declare function serializeCommentThreadDto(writer: SerializationWriter, commentThreadDto?: Partial<CommentThreadDto> | undefined | null): void;
|
|
3093
3241
|
/**
|
|
3094
3242
|
* Serializes information the current object
|
|
3095
3243
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3124,32 +3272,7 @@ declare function serializeCreateJobExecutionDto_input(writer: SerializationWrite
|
|
|
3124
3272
|
* Serializes information the current object
|
|
3125
3273
|
* @param writer Serialization writer to use to serialize this model
|
|
3126
3274
|
*/
|
|
3127
|
-
declare function
|
|
3128
|
-
/**
|
|
3129
|
-
* Serializes information the current object
|
|
3130
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3131
|
-
*/
|
|
3132
|
-
declare function serializeCreateOrUpdateItemFieldFileValueDTO(writer: SerializationWriter, createOrUpdateItemFieldFileValueDTO?: Partial<CreateOrUpdateItemFieldFileValueDTO> | undefined | null): void;
|
|
3133
|
-
/**
|
|
3134
|
-
* Serializes information the current object
|
|
3135
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3136
|
-
*/
|
|
3137
|
-
declare function serializeCreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto(writer: SerializationWriter, createOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto?: Partial<CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto> | undefined | null): void;
|
|
3138
|
-
/**
|
|
3139
|
-
* Serializes information the current object
|
|
3140
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3141
|
-
*/
|
|
3142
|
-
declare function serializeCreateOrUpdateItemFieldNumberDto(writer: SerializationWriter, createOrUpdateItemFieldNumberDto?: Partial<CreateOrUpdateItemFieldNumberDto> | undefined | null): void;
|
|
3143
|
-
/**
|
|
3144
|
-
* Serializes information the current object
|
|
3145
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3146
|
-
*/
|
|
3147
|
-
declare function serializeCreateOrUpdateItemFieldStringArrayDto(writer: SerializationWriter, createOrUpdateItemFieldStringArrayDto?: Partial<CreateOrUpdateItemFieldStringArrayDto> | undefined | null): void;
|
|
3148
|
-
/**
|
|
3149
|
-
* Serializes information the current object
|
|
3150
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3151
|
-
*/
|
|
3152
|
-
declare function serializeCreateOrUpdateItemFieldStringDto(writer: SerializationWriter, createOrUpdateItemFieldStringDto?: Partial<CreateOrUpdateItemFieldStringDto> | undefined | null): void;
|
|
3275
|
+
declare function serializeCreateProjectDto(writer: SerializationWriter, createProjectDto?: Partial<CreateProjectDto> | undefined | null): void;
|
|
3153
3276
|
/**
|
|
3154
3277
|
* Serializes information the current object
|
|
3155
3278
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3224,32 +3347,22 @@ declare function serializeFindItemHighOrderQueryDTO(writer: SerializationWriter,
|
|
|
3224
3347
|
* Serializes information the current object
|
|
3225
3348
|
* @param writer Serialization writer to use to serialize this model
|
|
3226
3349
|
*/
|
|
3227
|
-
declare function serializeFindItemHighOrderQueryDTO_queries(writer: SerializationWriter, findItemHighOrderQueryDTO_queries?: Partial<FindItemHighOrderQueryDTO | FindItemLowOrderQueryDTO | LowOrderQueryDTO> | undefined | null): void;
|
|
3228
|
-
/**
|
|
3229
|
-
* Serializes information the current object
|
|
3230
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3231
|
-
*/
|
|
3232
|
-
declare function serializeFindItemLowOrderQueryDTO(writer: SerializationWriter, findItemLowOrderQueryDTO?: Partial<FindItemLowOrderQueryDTO> | undefined | null): void;
|
|
3233
|
-
/**
|
|
3234
|
-
* Serializes information the current object
|
|
3235
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3236
|
-
*/
|
|
3237
|
-
declare function serializeHighOrderQueryDTO(writer: SerializationWriter, highOrderQueryDTO?: Partial<HighOrderQueryDTO> | undefined | null): void;
|
|
3350
|
+
declare function serializeFindItemHighOrderQueryDTO_queries(writer: SerializationWriter, findItemHighOrderQueryDTO_queries?: Partial<FindItemHighOrderQueryDTO | FindItemLowOrderQueryDTO | LowOrderQueryDTO> | undefined | null): void;
|
|
3238
3351
|
/**
|
|
3239
3352
|
* Serializes information the current object
|
|
3240
3353
|
* @param writer Serialization writer to use to serialize this model
|
|
3241
3354
|
*/
|
|
3242
|
-
declare function
|
|
3355
|
+
declare function serializeFindItemLowOrderQueryDTO(writer: SerializationWriter, findItemLowOrderQueryDTO?: Partial<FindItemLowOrderQueryDTO> | undefined | null): void;
|
|
3243
3356
|
/**
|
|
3244
3357
|
* Serializes information the current object
|
|
3245
3358
|
* @param writer Serialization writer to use to serialize this model
|
|
3246
3359
|
*/
|
|
3247
|
-
declare function
|
|
3360
|
+
declare function serializeHighOrderQueryDTO(writer: SerializationWriter, highOrderQueryDTO?: Partial<HighOrderQueryDTO> | undefined | null): void;
|
|
3248
3361
|
/**
|
|
3249
3362
|
* Serializes information the current object
|
|
3250
3363
|
* @param writer Serialization writer to use to serialize this model
|
|
3251
3364
|
*/
|
|
3252
|
-
declare function
|
|
3365
|
+
declare function serializeHighOrderQueryDTO_queries(writer: SerializationWriter, highOrderQueryDTO_queries?: Partial<HighOrderQueryDTO | LowOrderQueryDTO> | undefined | null): void;
|
|
3253
3366
|
/**
|
|
3254
3367
|
* Serializes information the current object
|
|
3255
3368
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3345,11 +3458,6 @@ declare function serializeItemLinkCreateDto(writer: SerializationWriter, itemLin
|
|
|
3345
3458
|
* @param writer Serialization writer to use to serialize this model
|
|
3346
3459
|
*/
|
|
3347
3460
|
declare function serializeItemLinkDto(writer: SerializationWriter, itemLinkDto?: Partial<ItemLinkDto> | undefined | null): void;
|
|
3348
|
-
/**
|
|
3349
|
-
* Serializes information the current object
|
|
3350
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3351
|
-
*/
|
|
3352
|
-
declare function serializeItemMetadataCreateOrUpdateDTO(writer: SerializationWriter, itemMetadataCreateOrUpdateDTO?: Partial<ItemMetadataCreateOrUpdateDTO> | undefined | null): void;
|
|
3353
3461
|
/**
|
|
3354
3462
|
* Serializes information the current object
|
|
3355
3463
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3445,6 +3553,11 @@ declare function serializePatchPublicationDto(writer: SerializationWriter, patch
|
|
|
3445
3553
|
* @param writer Serialization writer to use to serialize this model
|
|
3446
3554
|
*/
|
|
3447
3555
|
declare function serializePatchTaskExecutionDto(writer: SerializationWriter, patchTaskExecutionDto?: Partial<PatchTaskExecutionDto> | undefined | null): void;
|
|
3556
|
+
/**
|
|
3557
|
+
* Serializes information the current object
|
|
3558
|
+
* @param writer Serialization writer to use to serialize this model
|
|
3559
|
+
*/
|
|
3560
|
+
declare function serializeProjectDto(writer: SerializationWriter, projectDto?: Partial<ProjectDto> | undefined | null): void;
|
|
3448
3561
|
/**
|
|
3449
3562
|
* Serializes information the current object
|
|
3450
3563
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3480,16 +3593,6 @@ declare function serializeSectionDto(writer: SerializationWriter, sectionDto?: P
|
|
|
3480
3593
|
* @param writer Serialization writer to use to serialize this model
|
|
3481
3594
|
*/
|
|
3482
3595
|
declare function serializeSectionDto_metadata(writer: SerializationWriter, sectionDto_metadata?: Partial<SectionDto_metadata> | undefined | null): void;
|
|
3483
|
-
/**
|
|
3484
|
-
* Serializes information the current object
|
|
3485
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3486
|
-
*/
|
|
3487
|
-
declare function serializeSuggestionCreateDto(writer: SerializationWriter, suggestionCreateDto?: Partial<SuggestionCreateDto> | undefined | null): void;
|
|
3488
|
-
/**
|
|
3489
|
-
* Serializes information the current object
|
|
3490
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3491
|
-
*/
|
|
3492
|
-
declare function serializeSuggestionCreateDto_fields(writer: SerializationWriter, suggestionCreateDto_fields?: Partial<CreateOrUpdateItemFieldFileDto | CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto | CreateOrUpdateItemFieldNumberDto | CreateOrUpdateItemFieldStringArrayDto | CreateOrUpdateItemFieldStringDto> | undefined | null): void;
|
|
3493
3596
|
/**
|
|
3494
3597
|
* Serializes information the current object
|
|
3495
3598
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3565,51 +3668,11 @@ declare function serializeUserDto(writer: SerializationWriter, userDto?: Partial
|
|
|
3565
3668
|
* @param writer Serialization writer to use to serialize this model
|
|
3566
3669
|
*/
|
|
3567
3670
|
declare function serializeVariableDto(writer: SerializationWriter, variableDto?: Partial<VariableDto> | undefined | null): void;
|
|
3568
|
-
interface
|
|
3569
|
-
/**
|
|
3570
|
-
* The deletedFields property
|
|
3571
|
-
*/
|
|
3572
|
-
deletedFields?: string[] | null;
|
|
3573
|
-
/**
|
|
3574
|
-
* The emitterName property
|
|
3575
|
-
*/
|
|
3576
|
-
emitterName?: string | null;
|
|
3577
|
-
/**
|
|
3578
|
-
* The excludedFields property
|
|
3579
|
-
*/
|
|
3580
|
-
excludedFields?: string[] | null;
|
|
3581
|
-
/**
|
|
3582
|
-
* The fields property
|
|
3583
|
-
*/
|
|
3584
|
-
fields?: (CreateOrUpdateItemFieldFileDto | CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto | CreateOrUpdateItemFieldNumberDto | CreateOrUpdateItemFieldStringArrayDto | CreateOrUpdateItemFieldStringDto)[] | null;
|
|
3585
|
-
/**
|
|
3586
|
-
* The hasCreatedItem property
|
|
3587
|
-
*/
|
|
3588
|
-
hasCreatedItem?: boolean | null;
|
|
3589
|
-
/**
|
|
3590
|
-
* The includedFields property
|
|
3591
|
-
*/
|
|
3592
|
-
includedFields?: string[] | null;
|
|
3671
|
+
interface SuggestionDeletedFieldDTO extends AdditionalDataHolder, Parsable {
|
|
3593
3672
|
/**
|
|
3594
|
-
*
|
|
3595
|
-
*/
|
|
3596
|
-
itemId?: string | null;
|
|
3597
|
-
/**
|
|
3598
|
-
* The object property
|
|
3599
|
-
*/
|
|
3600
|
-
object?: SuggestionCreateDto_object | null;
|
|
3601
|
-
/**
|
|
3602
|
-
* The publicationId property
|
|
3603
|
-
*/
|
|
3604
|
-
publicationId?: string | null;
|
|
3605
|
-
/**
|
|
3606
|
-
* The screenId property
|
|
3673
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3607
3674
|
*/
|
|
3608
|
-
|
|
3609
|
-
}
|
|
3610
|
-
type SuggestionCreateDto_fields = CreateOrUpdateItemFieldFileDto | CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto | CreateOrUpdateItemFieldNumberDto | CreateOrUpdateItemFieldStringArrayDto | CreateOrUpdateItemFieldStringDto;
|
|
3611
|
-
type SuggestionCreateDto_object = (typeof SuggestionCreateDto_objectObject)[keyof typeof SuggestionCreateDto_objectObject];
|
|
3612
|
-
interface SuggestionDeletedFieldDTO extends Parsable {
|
|
3675
|
+
additionalData?: Record<string, unknown>;
|
|
3613
3676
|
/**
|
|
3614
3677
|
* The key property
|
|
3615
3678
|
*/
|
|
@@ -3620,7 +3683,11 @@ interface SuggestionDeletedFieldDTO extends Parsable {
|
|
|
3620
3683
|
type?: SuggestionDeletedFieldDTO_type | null;
|
|
3621
3684
|
}
|
|
3622
3685
|
type SuggestionDeletedFieldDTO_type = (typeof SuggestionDeletedFieldDTO_typeObject)[keyof typeof SuggestionDeletedFieldDTO_typeObject];
|
|
3623
|
-
interface SuggestionDto extends Parsable {
|
|
3686
|
+
interface SuggestionDto extends AdditionalDataHolder, Parsable {
|
|
3687
|
+
/**
|
|
3688
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3689
|
+
*/
|
|
3690
|
+
additionalData?: Record<string, unknown>;
|
|
3624
3691
|
/**
|
|
3625
3692
|
* The createdAt property
|
|
3626
3693
|
*/
|
|
@@ -3676,11 +3743,15 @@ interface SuggestionDto extends Parsable {
|
|
|
3676
3743
|
}
|
|
3677
3744
|
type SuggestionDto_fields = ItemFieldCfDto | ItemFieldFileDTO | ItemFieldMultipleSelectWithCommentAndQuantityDTO | ItemFieldNumberDTO | ItemFieldStringArrayDTO | ItemFieldStringDTO;
|
|
3678
3745
|
type SuggestionDto_object = (typeof SuggestionDto_objectObject)[keyof typeof SuggestionDto_objectObject];
|
|
3679
|
-
interface TableDto extends Parsable {
|
|
3746
|
+
interface TableDto extends AdditionalDataHolder, Parsable {
|
|
3680
3747
|
/**
|
|
3681
3748
|
* The accountId property
|
|
3682
3749
|
*/
|
|
3683
3750
|
accountId?: string | null;
|
|
3751
|
+
/**
|
|
3752
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3753
|
+
*/
|
|
3754
|
+
additionalData?: Record<string, unknown>;
|
|
3684
3755
|
/**
|
|
3685
3756
|
* The createdAt property
|
|
3686
3757
|
*/
|
|
@@ -3714,7 +3785,11 @@ interface TableDto extends Parsable {
|
|
|
3714
3785
|
*/
|
|
3715
3786
|
updatedAt?: string | null;
|
|
3716
3787
|
}
|
|
3717
|
-
interface TaskDto extends Parsable {
|
|
3788
|
+
interface TaskDto extends AdditionalDataHolder, Parsable {
|
|
3789
|
+
/**
|
|
3790
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3791
|
+
*/
|
|
3792
|
+
additionalData?: Record<string, unknown>;
|
|
3718
3793
|
/**
|
|
3719
3794
|
* The backoffScaleFactor property
|
|
3720
3795
|
*/
|
|
@@ -3787,7 +3862,11 @@ interface TaskDto extends Parsable {
|
|
|
3787
3862
|
type TaskDto_object = (typeof TaskDto_objectObject)[keyof typeof TaskDto_objectObject];
|
|
3788
3863
|
type TaskDto_retryLogic = (typeof TaskDto_retryLogicObject)[keyof typeof TaskDto_retryLogicObject];
|
|
3789
3864
|
type TaskDto_timeoutPolicy = (typeof TaskDto_timeoutPolicyObject)[keyof typeof TaskDto_timeoutPolicyObject];
|
|
3790
|
-
interface TaskDtoKey extends Parsable {
|
|
3865
|
+
interface TaskDtoKey extends AdditionalDataHolder, Parsable {
|
|
3866
|
+
/**
|
|
3867
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3868
|
+
*/
|
|
3869
|
+
additionalData?: Record<string, unknown>;
|
|
3791
3870
|
/**
|
|
3792
3871
|
* The description property
|
|
3793
3872
|
*/
|
|
@@ -3797,7 +3876,11 @@ interface TaskDtoKey extends Parsable {
|
|
|
3797
3876
|
*/
|
|
3798
3877
|
key?: string | null;
|
|
3799
3878
|
}
|
|
3800
|
-
interface TaskExecutionDto extends Parsable {
|
|
3879
|
+
interface TaskExecutionDto extends AdditionalDataHolder, Parsable {
|
|
3880
|
+
/**
|
|
3881
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3882
|
+
*/
|
|
3883
|
+
additionalData?: Record<string, unknown>;
|
|
3801
3884
|
/**
|
|
3802
3885
|
* The createdAt property
|
|
3803
3886
|
*/
|
|
@@ -3831,13 +3914,25 @@ interface TaskExecutionDto extends Parsable {
|
|
|
3831
3914
|
*/
|
|
3832
3915
|
updatedAt?: string | null;
|
|
3833
3916
|
}
|
|
3834
|
-
interface TaskExecutionDto_input extends Parsable {
|
|
3917
|
+
interface TaskExecutionDto_input extends AdditionalDataHolder, Parsable {
|
|
3918
|
+
/**
|
|
3919
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3920
|
+
*/
|
|
3921
|
+
additionalData?: Record<string, unknown>;
|
|
3835
3922
|
}
|
|
3836
3923
|
type TaskExecutionDto_object = (typeof TaskExecutionDto_objectObject)[keyof typeof TaskExecutionDto_objectObject];
|
|
3837
|
-
interface TaskExecutionDto_output extends Parsable {
|
|
3924
|
+
interface TaskExecutionDto_output extends AdditionalDataHolder, Parsable {
|
|
3925
|
+
/**
|
|
3926
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3927
|
+
*/
|
|
3928
|
+
additionalData?: Record<string, unknown>;
|
|
3838
3929
|
}
|
|
3839
3930
|
type TaskExecutionDto_status = (typeof TaskExecutionDto_statusObject)[keyof typeof TaskExecutionDto_statusObject];
|
|
3840
|
-
interface UpdateJobDto extends Parsable {
|
|
3931
|
+
interface UpdateJobDto extends AdditionalDataHolder, Parsable {
|
|
3932
|
+
/**
|
|
3933
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3934
|
+
*/
|
|
3935
|
+
additionalData?: Record<string, unknown>;
|
|
3841
3936
|
/**
|
|
3842
3937
|
* The description property
|
|
3843
3938
|
*/
|
|
@@ -3891,10 +3986,18 @@ interface UpdateJobDto extends Parsable {
|
|
|
3891
3986
|
*/
|
|
3892
3987
|
visibility?: JobVisibilityDto | null;
|
|
3893
3988
|
}
|
|
3894
|
-
interface UpdateJobDto_output extends Parsable {
|
|
3989
|
+
interface UpdateJobDto_output extends AdditionalDataHolder, Parsable {
|
|
3990
|
+
/**
|
|
3991
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3992
|
+
*/
|
|
3993
|
+
additionalData?: Record<string, unknown>;
|
|
3895
3994
|
}
|
|
3896
3995
|
type UpdateJobDto_status = (typeof UpdateJobDto_statusObject)[keyof typeof UpdateJobDto_statusObject];
|
|
3897
|
-
interface UpdateTaskDto extends Parsable {
|
|
3996
|
+
interface UpdateTaskDto extends AdditionalDataHolder, Parsable {
|
|
3997
|
+
/**
|
|
3998
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3999
|
+
*/
|
|
4000
|
+
additionalData?: Record<string, unknown>;
|
|
3898
4001
|
/**
|
|
3899
4002
|
* The backoffScaleFactor property
|
|
3900
4003
|
*/
|
|
@@ -3954,7 +4057,11 @@ interface UpdateTaskDto extends Parsable {
|
|
|
3954
4057
|
}
|
|
3955
4058
|
type UpdateTaskDto_retryLogic = (typeof UpdateTaskDto_retryLogicObject)[keyof typeof UpdateTaskDto_retryLogicObject];
|
|
3956
4059
|
type UpdateTaskDto_timeoutPolicy = (typeof UpdateTaskDto_timeoutPolicyObject)[keyof typeof UpdateTaskDto_timeoutPolicyObject];
|
|
3957
|
-
interface UpdateVariableDto extends Parsable {
|
|
4060
|
+
interface UpdateVariableDto extends AdditionalDataHolder, Parsable {
|
|
4061
|
+
/**
|
|
4062
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4063
|
+
*/
|
|
4064
|
+
additionalData?: Record<string, unknown>;
|
|
3958
4065
|
/**
|
|
3959
4066
|
* The id property
|
|
3960
4067
|
*/
|
|
@@ -3981,7 +4088,11 @@ interface UpdateVariableDto extends Parsable {
|
|
|
3981
4088
|
value?: string | null;
|
|
3982
4089
|
}
|
|
3983
4090
|
type UpdateVariableDto_status = (typeof UpdateVariableDto_statusObject)[keyof typeof UpdateVariableDto_statusObject];
|
|
3984
|
-
interface UserDto extends Parsable {
|
|
4091
|
+
interface UserDto extends AdditionalDataHolder, Parsable {
|
|
4092
|
+
/**
|
|
4093
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4094
|
+
*/
|
|
4095
|
+
additionalData?: Record<string, unknown>;
|
|
3985
4096
|
/**
|
|
3986
4097
|
* The createdAt property
|
|
3987
4098
|
*/
|
|
@@ -4022,7 +4133,11 @@ interface UserDto extends Parsable {
|
|
|
4022
4133
|
type UserDto_object = (typeof UserDto_objectObject)[keyof typeof UserDto_objectObject];
|
|
4023
4134
|
type UserDto_role = (typeof UserDto_roleObject)[keyof typeof UserDto_roleObject];
|
|
4024
4135
|
type UserDto_status = (typeof UserDto_statusObject)[keyof typeof UserDto_statusObject];
|
|
4025
|
-
interface VariableDto extends Parsable {
|
|
4136
|
+
interface VariableDto extends AdditionalDataHolder, Parsable {
|
|
4137
|
+
/**
|
|
4138
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4139
|
+
*/
|
|
4140
|
+
additionalData?: Record<string, unknown>;
|
|
4026
4141
|
/**
|
|
4027
4142
|
* The createdAt property
|
|
4028
4143
|
*/
|
|
@@ -4068,6 +4183,11 @@ declare const AccountDto_objectObject: {
|
|
|
4068
4183
|
declare const AuditLogDto_objectObject: {
|
|
4069
4184
|
readonly Audit_log: "audit_log";
|
|
4070
4185
|
};
|
|
4186
|
+
declare const CommentThreadCommentDTO_typeObject: {
|
|
4187
|
+
readonly TEXT: "TEXT";
|
|
4188
|
+
readonly SYSTEM: "SYSTEM";
|
|
4189
|
+
readonly SYSTEM_ERROR: "SYSTEM_ERROR";
|
|
4190
|
+
};
|
|
4071
4191
|
declare const CommentThreadCreateDto_objectObject: {
|
|
4072
4192
|
readonly Comment_thread: "comment_thread";
|
|
4073
4193
|
};
|
|
@@ -4173,31 +4293,6 @@ declare const CreateJobDto_statusObject: {
|
|
|
4173
4293
|
readonly ARCHIVED: "ARCHIVED";
|
|
4174
4294
|
readonly REMOVED: "REMOVED";
|
|
4175
4295
|
};
|
|
4176
|
-
declare const CreateOrUpdateItemFieldFileDto_typeObject: {
|
|
4177
|
-
readonly IMAGE: "IMAGE";
|
|
4178
|
-
readonly ATTACHMENT: "ATTACHMENT";
|
|
4179
|
-
};
|
|
4180
|
-
declare const CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto_typeObject: {
|
|
4181
|
-
readonly MULTIPLESELECTQUANTIFIEDWITHCOMMENTS: "MULTIPLE-SELECT-QUANTIFIED-WITH-COMMENTS";
|
|
4182
|
-
readonly MULTIPLESELECTQUANTIFIED: "MULTIPLE-SELECT-QUANTIFIED";
|
|
4183
|
-
readonly MULTIPLESELECTWITHCOMMENTS: "MULTIPLE-SELECT-WITH-COMMENTS";
|
|
4184
|
-
};
|
|
4185
|
-
declare const CreateOrUpdateItemFieldNumberDto_typeObject: {
|
|
4186
|
-
readonly NUMBER: "NUMBER";
|
|
4187
|
-
};
|
|
4188
|
-
declare const CreateOrUpdateItemFieldStringArrayDto_typeObject: {
|
|
4189
|
-
readonly MULTIPLESELECT: "MULTIPLE-SELECT";
|
|
4190
|
-
};
|
|
4191
|
-
declare const CreateOrUpdateItemFieldStringDto_typeObject: {
|
|
4192
|
-
readonly IDENTIFIER: "IDENTIFIER";
|
|
4193
|
-
readonly CLASSIFICATION: "CLASSIFICATION";
|
|
4194
|
-
readonly SINGLELINETEXT: "SINGLE-LINE-TEXT";
|
|
4195
|
-
readonly LONGTEXT: "LONG-TEXT";
|
|
4196
|
-
readonly DATE: "DATE";
|
|
4197
|
-
readonly DATETIME: "DATE-TIME";
|
|
4198
|
-
readonly HTMLTEXT: "HTML-TEXT";
|
|
4199
|
-
readonly SINGLESELECT: "SINGLE-SELECT";
|
|
4200
|
-
};
|
|
4201
4296
|
declare const CreateTaskDto_retryLogicObject: {
|
|
4202
4297
|
readonly FIXED: "FIXED";
|
|
4203
4298
|
readonly EXPONENTIAL_BACKOFF: "EXPONENTIAL_BACKOFF";
|
|
@@ -4218,19 +4313,20 @@ declare const FieldDto_objectObject: {
|
|
|
4218
4313
|
declare const FieldDto_typeObject: {
|
|
4219
4314
|
readonly IDENTIFIER: "IDENTIFIER";
|
|
4220
4315
|
readonly CLASSIFICATION: "CLASSIFICATION";
|
|
4221
|
-
readonly
|
|
4222
|
-
readonly
|
|
4316
|
+
readonly SINGLELINETEXT: "SINGLE-LINE-TEXT";
|
|
4317
|
+
readonly LONGTEXT: "LONG-TEXT";
|
|
4223
4318
|
readonly NUMBER: "NUMBER";
|
|
4224
4319
|
readonly DATE: "DATE";
|
|
4225
|
-
readonly
|
|
4226
|
-
readonly
|
|
4320
|
+
readonly DATETIME: "DATE-TIME";
|
|
4321
|
+
readonly HTMLTEXT: "HTML-TEXT";
|
|
4227
4322
|
readonly IMAGE: "IMAGE";
|
|
4228
4323
|
readonly ATTACHMENT: "ATTACHMENT";
|
|
4229
|
-
readonly
|
|
4230
|
-
readonly
|
|
4231
|
-
readonly
|
|
4232
|
-
readonly
|
|
4233
|
-
readonly
|
|
4324
|
+
readonly SINGLESELECT: "SINGLE-SELECT";
|
|
4325
|
+
readonly MULTIPLESELECT: "MULTIPLE-SELECT";
|
|
4326
|
+
readonly MULTIPLESELECTQUANTIFIED: "MULTIPLE-SELECT-QUANTIFIED";
|
|
4327
|
+
readonly MULTIPLESELECTQUANTIFIEDWITHCOMMENTS: "MULTIPLE-SELECT-QUANTIFIED-WITH-COMMENTS";
|
|
4328
|
+
readonly MULTIPLESELECTWITHCOMMENTS: "MULTIPLE-SELECT-WITH-COMMENTS";
|
|
4329
|
+
readonly CONDITIONALFORMATTING: "CONDITIONAL-FORMATTING";
|
|
4234
4330
|
};
|
|
4235
4331
|
declare const FieldSuffixDto_statusObject: {
|
|
4236
4332
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -4289,9 +4385,6 @@ declare const HighOrderQueryDTO_typeObject: {
|
|
|
4289
4385
|
readonly And: "and";
|
|
4290
4386
|
readonly Or: "or";
|
|
4291
4387
|
};
|
|
4292
|
-
declare const ItemCreateOrUpdateDto_objectObject: {
|
|
4293
|
-
readonly Item_create: "item_create";
|
|
4294
|
-
};
|
|
4295
4388
|
declare const ItemDto_objectObject: {
|
|
4296
4389
|
readonly Item: "item";
|
|
4297
4390
|
};
|
|
@@ -4401,6 +4494,9 @@ declare const PatchTaskExecutionDto_statusObject: {
|
|
|
4401
4494
|
readonly FAILED: "FAILED";
|
|
4402
4495
|
readonly COMPLETED: "COMPLETED";
|
|
4403
4496
|
};
|
|
4497
|
+
declare const ProjectDto_objectObject: {
|
|
4498
|
+
readonly Project: "project";
|
|
4499
|
+
};
|
|
4404
4500
|
declare const PublicationDto_objectObject: {
|
|
4405
4501
|
readonly Publication: "publication";
|
|
4406
4502
|
};
|
|
@@ -4433,9 +4529,6 @@ declare const ScreenDto_statusObject: {
|
|
|
4433
4529
|
declare const ScreenSectionDto_objectObject: {
|
|
4434
4530
|
readonly Screen_section: "screen_section";
|
|
4435
4531
|
};
|
|
4436
|
-
declare const SuggestionCreateDto_objectObject: {
|
|
4437
|
-
readonly SuggestionCreate: "suggestion-create";
|
|
4438
|
-
};
|
|
4439
4532
|
declare const SuggestionDeletedFieldDTO_typeObject: {
|
|
4440
4533
|
readonly IDENTIFIER: "IDENTIFIER";
|
|
4441
4534
|
readonly CLASSIFICATION: "CLASSIFICATION";
|
|
@@ -4523,7 +4616,11 @@ declare const VariableDto_statusObject: {
|
|
|
4523
4616
|
readonly DELETED: "DELETED";
|
|
4524
4617
|
};
|
|
4525
4618
|
|
|
4526
|
-
interface FindPostResponse$
|
|
4619
|
+
interface FindPostResponse$l extends AdditionalDataHolder, Parsable {
|
|
4620
|
+
/**
|
|
4621
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4622
|
+
*/
|
|
4623
|
+
additionalData?: Record<string, unknown>;
|
|
4527
4624
|
/**
|
|
4528
4625
|
* The data property
|
|
4529
4626
|
*/
|
|
@@ -4531,17 +4628,17 @@ interface FindPostResponse$k extends Parsable {
|
|
|
4531
4628
|
/**
|
|
4532
4629
|
* The object property
|
|
4533
4630
|
*/
|
|
4534
|
-
object?: FindPostResponse_object$
|
|
4631
|
+
object?: FindPostResponse_object$l | null;
|
|
4535
4632
|
/**
|
|
4536
4633
|
* The totalElements property
|
|
4537
4634
|
*/
|
|
4538
4635
|
totalElements?: number | null;
|
|
4539
4636
|
}
|
|
4540
|
-
type FindPostResponse_object$
|
|
4637
|
+
type FindPostResponse_object$l = (typeof FindPostResponse_objectObject$l)[keyof typeof FindPostResponse_objectObject$l];
|
|
4541
4638
|
/**
|
|
4542
4639
|
* Builds and executes requests for operations under /v1/accounts/find
|
|
4543
4640
|
*/
|
|
4544
|
-
interface FindRequestBuilder$
|
|
4641
|
+
interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l> {
|
|
4545
4642
|
/**
|
|
4546
4643
|
* Find a list of Account
|
|
4547
4644
|
* @param body The request body
|
|
@@ -4549,29 +4646,29 @@ interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k>
|
|
|
4549
4646
|
* @returns {Promise<FindPostResponse>}
|
|
4550
4647
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
4551
4648
|
*/
|
|
4552
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
4649
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$l> | undefined): Promise<FindPostResponse$l | undefined>;
|
|
4553
4650
|
/**
|
|
4554
4651
|
* Find a list of Account
|
|
4555
4652
|
* @param body The request body
|
|
4556
4653
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4557
4654
|
* @returns {RequestInformation}
|
|
4558
4655
|
*/
|
|
4559
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
4656
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$l> | undefined): RequestInformation;
|
|
4560
4657
|
}
|
|
4561
4658
|
/**
|
|
4562
4659
|
* Find a list of Account
|
|
4563
4660
|
*/
|
|
4564
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
4661
|
+
interface FindRequestBuilderPostQueryParameters$l {
|
|
4565
4662
|
page?: number;
|
|
4566
4663
|
size?: number;
|
|
4567
4664
|
sort?: string;
|
|
4568
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
4665
|
+
sortOrder?: PostSortOrderQueryParameterType$m;
|
|
4569
4666
|
}
|
|
4570
|
-
type PostSortOrderQueryParameterType$
|
|
4571
|
-
declare const FindPostResponse_objectObject$
|
|
4667
|
+
type PostSortOrderQueryParameterType$m = (typeof PostSortOrderQueryParameterTypeObject$m)[keyof typeof PostSortOrderQueryParameterTypeObject$m];
|
|
4668
|
+
declare const FindPostResponse_objectObject$l: {
|
|
4572
4669
|
readonly List: "list";
|
|
4573
4670
|
};
|
|
4574
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
4671
|
+
declare const PostSortOrderQueryParameterTypeObject$m: {
|
|
4575
4672
|
readonly DESC: "DESC";
|
|
4576
4673
|
readonly ASC: "ASC";
|
|
4577
4674
|
};
|
|
@@ -4595,7 +4692,11 @@ interface AccountsItemRequestBuilder extends BaseRequestBuilder<AccountsItemRequ
|
|
|
4595
4692
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
4596
4693
|
}
|
|
4597
4694
|
|
|
4598
|
-
interface AccountsGetResponse extends Parsable {
|
|
4695
|
+
interface AccountsGetResponse extends AdditionalDataHolder, Parsable {
|
|
4696
|
+
/**
|
|
4697
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4698
|
+
*/
|
|
4699
|
+
additionalData?: Record<string, unknown>;
|
|
4599
4700
|
/**
|
|
4600
4701
|
* The data property
|
|
4601
4702
|
*/
|
|
@@ -4617,7 +4718,7 @@ interface AccountsRequestBuilder extends BaseRequestBuilder<AccountsRequestBuild
|
|
|
4617
4718
|
/**
|
|
4618
4719
|
* The find property
|
|
4619
4720
|
*/
|
|
4620
|
-
get find(): FindRequestBuilder$
|
|
4721
|
+
get find(): FindRequestBuilder$l;
|
|
4621
4722
|
/**
|
|
4622
4723
|
* Gets an item from the ApiSdk.v1.accounts.item collection
|
|
4623
4724
|
* @param id Unique identifier of the item
|
|
@@ -4645,18 +4746,22 @@ interface AccountsRequestBuilderGetQueryParameters {
|
|
|
4645
4746
|
page?: number;
|
|
4646
4747
|
size?: number;
|
|
4647
4748
|
sort?: string;
|
|
4648
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
4749
|
+
sortOrder?: GetSortOrderQueryParameterType$o;
|
|
4649
4750
|
}
|
|
4650
|
-
type GetSortOrderQueryParameterType$
|
|
4751
|
+
type GetSortOrderQueryParameterType$o = (typeof GetSortOrderQueryParameterTypeObject$o)[keyof typeof GetSortOrderQueryParameterTypeObject$o];
|
|
4651
4752
|
declare const AccountsGetResponse_objectObject: {
|
|
4652
4753
|
readonly List: "list";
|
|
4653
4754
|
};
|
|
4654
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
4755
|
+
declare const GetSortOrderQueryParameterTypeObject$o: {
|
|
4655
4756
|
readonly DESC: "DESC";
|
|
4656
4757
|
readonly ASC: "ASC";
|
|
4657
4758
|
};
|
|
4658
4759
|
|
|
4659
|
-
interface FindPostResponse$
|
|
4760
|
+
interface FindPostResponse$k extends AdditionalDataHolder, Parsable {
|
|
4761
|
+
/**
|
|
4762
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4763
|
+
*/
|
|
4764
|
+
additionalData?: Record<string, unknown>;
|
|
4660
4765
|
/**
|
|
4661
4766
|
* The data property
|
|
4662
4767
|
*/
|
|
@@ -4664,17 +4769,17 @@ interface FindPostResponse$j extends Parsable {
|
|
|
4664
4769
|
/**
|
|
4665
4770
|
* The object property
|
|
4666
4771
|
*/
|
|
4667
|
-
object?: FindPostResponse_object$
|
|
4772
|
+
object?: FindPostResponse_object$k | null;
|
|
4668
4773
|
/**
|
|
4669
4774
|
* The totalElements property
|
|
4670
4775
|
*/
|
|
4671
4776
|
totalElements?: number | null;
|
|
4672
4777
|
}
|
|
4673
|
-
type FindPostResponse_object$
|
|
4778
|
+
type FindPostResponse_object$k = (typeof FindPostResponse_objectObject$k)[keyof typeof FindPostResponse_objectObject$k];
|
|
4674
4779
|
/**
|
|
4675
4780
|
* Builds and executes requests for operations under /v1/audit_logs/find
|
|
4676
4781
|
*/
|
|
4677
|
-
interface FindRequestBuilder$
|
|
4782
|
+
interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k> {
|
|
4678
4783
|
/**
|
|
4679
4784
|
* Find a list of Audit Log
|
|
4680
4785
|
* @param body The request body
|
|
@@ -4682,34 +4787,38 @@ interface FindRequestBuilder$j extends BaseRequestBuilder<FindRequestBuilder$j>
|
|
|
4682
4787
|
* @returns {Promise<FindPostResponse>}
|
|
4683
4788
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
4684
4789
|
*/
|
|
4685
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
4790
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$k> | undefined): Promise<FindPostResponse$k | undefined>;
|
|
4686
4791
|
/**
|
|
4687
4792
|
* Find a list of Audit Log
|
|
4688
4793
|
* @param body The request body
|
|
4689
4794
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4690
4795
|
* @returns {RequestInformation}
|
|
4691
4796
|
*/
|
|
4692
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
4797
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$k> | undefined): RequestInformation;
|
|
4693
4798
|
}
|
|
4694
4799
|
/**
|
|
4695
4800
|
* Find a list of Audit Log
|
|
4696
4801
|
*/
|
|
4697
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
4802
|
+
interface FindRequestBuilderPostQueryParameters$k {
|
|
4698
4803
|
page?: number;
|
|
4699
4804
|
size?: number;
|
|
4700
4805
|
sort?: string;
|
|
4701
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
4806
|
+
sortOrder?: PostSortOrderQueryParameterType$l;
|
|
4702
4807
|
}
|
|
4703
|
-
type PostSortOrderQueryParameterType$
|
|
4704
|
-
declare const FindPostResponse_objectObject$
|
|
4808
|
+
type PostSortOrderQueryParameterType$l = (typeof PostSortOrderQueryParameterTypeObject$l)[keyof typeof PostSortOrderQueryParameterTypeObject$l];
|
|
4809
|
+
declare const FindPostResponse_objectObject$k: {
|
|
4705
4810
|
readonly List: "list";
|
|
4706
4811
|
};
|
|
4707
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
4812
|
+
declare const PostSortOrderQueryParameterTypeObject$l: {
|
|
4708
4813
|
readonly DESC: "DESC";
|
|
4709
4814
|
readonly ASC: "ASC";
|
|
4710
4815
|
};
|
|
4711
4816
|
|
|
4712
|
-
interface Audit_logsGetResponse extends Parsable {
|
|
4817
|
+
interface Audit_logsGetResponse extends AdditionalDataHolder, Parsable {
|
|
4818
|
+
/**
|
|
4819
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4820
|
+
*/
|
|
4821
|
+
additionalData?: Record<string, unknown>;
|
|
4713
4822
|
/**
|
|
4714
4823
|
* The data property
|
|
4715
4824
|
*/
|
|
@@ -4731,7 +4840,7 @@ interface Audit_logsRequestBuilder extends BaseRequestBuilder<Audit_logsRequestB
|
|
|
4731
4840
|
/**
|
|
4732
4841
|
* The find property
|
|
4733
4842
|
*/
|
|
4734
|
-
get find(): FindRequestBuilder$
|
|
4843
|
+
get find(): FindRequestBuilder$k;
|
|
4735
4844
|
/**
|
|
4736
4845
|
* Get a list of Audit Log
|
|
4737
4846
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -4753,18 +4862,22 @@ interface Audit_logsRequestBuilderGetQueryParameters {
|
|
|
4753
4862
|
page?: number;
|
|
4754
4863
|
size?: number;
|
|
4755
4864
|
sort?: string;
|
|
4756
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
4865
|
+
sortOrder?: GetSortOrderQueryParameterType$n;
|
|
4757
4866
|
}
|
|
4758
|
-
type GetSortOrderQueryParameterType$
|
|
4867
|
+
type GetSortOrderQueryParameterType$n = (typeof GetSortOrderQueryParameterTypeObject$n)[keyof typeof GetSortOrderQueryParameterTypeObject$n];
|
|
4759
4868
|
declare const Audit_logsGetResponse_objectObject: {
|
|
4760
4869
|
readonly List: "list";
|
|
4761
4870
|
};
|
|
4762
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
4871
|
+
declare const GetSortOrderQueryParameterTypeObject$n: {
|
|
4763
4872
|
readonly DESC: "DESC";
|
|
4764
4873
|
readonly ASC: "ASC";
|
|
4765
4874
|
};
|
|
4766
4875
|
|
|
4767
|
-
interface FindPostResponse$
|
|
4876
|
+
interface FindPostResponse$j extends AdditionalDataHolder, Parsable {
|
|
4877
|
+
/**
|
|
4878
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4879
|
+
*/
|
|
4880
|
+
additionalData?: Record<string, unknown>;
|
|
4768
4881
|
/**
|
|
4769
4882
|
* The data property
|
|
4770
4883
|
*/
|
|
@@ -4772,17 +4885,17 @@ interface FindPostResponse$i extends Parsable {
|
|
|
4772
4885
|
/**
|
|
4773
4886
|
* The object property
|
|
4774
4887
|
*/
|
|
4775
|
-
object?: FindPostResponse_object$
|
|
4888
|
+
object?: FindPostResponse_object$j | null;
|
|
4776
4889
|
/**
|
|
4777
4890
|
* The totalElements property
|
|
4778
4891
|
*/
|
|
4779
4892
|
totalElements?: number | null;
|
|
4780
4893
|
}
|
|
4781
|
-
type FindPostResponse_object$
|
|
4894
|
+
type FindPostResponse_object$j = (typeof FindPostResponse_objectObject$j)[keyof typeof FindPostResponse_objectObject$j];
|
|
4782
4895
|
/**
|
|
4783
4896
|
* Builds and executes requests for operations under /v1/comment_thread_subscribers/find
|
|
4784
4897
|
*/
|
|
4785
|
-
interface FindRequestBuilder$
|
|
4898
|
+
interface FindRequestBuilder$j extends BaseRequestBuilder<FindRequestBuilder$j> {
|
|
4786
4899
|
/**
|
|
4787
4900
|
* Find a list of Comment Thread Subscriber
|
|
4788
4901
|
* @param body The request body
|
|
@@ -4790,29 +4903,29 @@ interface FindRequestBuilder$i extends BaseRequestBuilder<FindRequestBuilder$i>
|
|
|
4790
4903
|
* @returns {Promise<FindPostResponse>}
|
|
4791
4904
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
4792
4905
|
*/
|
|
4793
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
4906
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$j> | undefined): Promise<FindPostResponse$j | undefined>;
|
|
4794
4907
|
/**
|
|
4795
4908
|
* Find a list of Comment Thread Subscriber
|
|
4796
4909
|
* @param body The request body
|
|
4797
4910
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4798
4911
|
* @returns {RequestInformation}
|
|
4799
4912
|
*/
|
|
4800
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
4913
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$j> | undefined): RequestInformation;
|
|
4801
4914
|
}
|
|
4802
4915
|
/**
|
|
4803
4916
|
* Find a list of Comment Thread Subscriber
|
|
4804
4917
|
*/
|
|
4805
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
4918
|
+
interface FindRequestBuilderPostQueryParameters$j {
|
|
4806
4919
|
page?: number;
|
|
4807
4920
|
size?: number;
|
|
4808
4921
|
sort?: string;
|
|
4809
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
4922
|
+
sortOrder?: PostSortOrderQueryParameterType$k;
|
|
4810
4923
|
}
|
|
4811
|
-
type PostSortOrderQueryParameterType$
|
|
4812
|
-
declare const FindPostResponse_objectObject$
|
|
4924
|
+
type PostSortOrderQueryParameterType$k = (typeof PostSortOrderQueryParameterTypeObject$k)[keyof typeof PostSortOrderQueryParameterTypeObject$k];
|
|
4925
|
+
declare const FindPostResponse_objectObject$j: {
|
|
4813
4926
|
readonly List: "list";
|
|
4814
4927
|
};
|
|
4815
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
4928
|
+
declare const PostSortOrderQueryParameterTypeObject$k: {
|
|
4816
4929
|
readonly DESC: "DESC";
|
|
4817
4930
|
readonly ASC: "ASC";
|
|
4818
4931
|
};
|
|
@@ -4836,7 +4949,11 @@ interface Comment_thread_subscribersItemRequestBuilder extends BaseRequestBuilde
|
|
|
4836
4949
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
4837
4950
|
}
|
|
4838
4951
|
|
|
4839
|
-
interface Comment_thread_subscribersGetResponse extends Parsable {
|
|
4952
|
+
interface Comment_thread_subscribersGetResponse extends AdditionalDataHolder, Parsable {
|
|
4953
|
+
/**
|
|
4954
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4955
|
+
*/
|
|
4956
|
+
additionalData?: Record<string, unknown>;
|
|
4840
4957
|
/**
|
|
4841
4958
|
* The data property
|
|
4842
4959
|
*/
|
|
@@ -4858,7 +4975,7 @@ interface Comment_thread_subscribersRequestBuilder extends BaseRequestBuilder<Co
|
|
|
4858
4975
|
/**
|
|
4859
4976
|
* The find property
|
|
4860
4977
|
*/
|
|
4861
|
-
get find(): FindRequestBuilder$
|
|
4978
|
+
get find(): FindRequestBuilder$j;
|
|
4862
4979
|
/**
|
|
4863
4980
|
* Gets an item from the ApiSdk.v1.comment_thread_subscribers.item collection
|
|
4864
4981
|
* @param id Unique identifier of the item
|
|
@@ -4886,18 +5003,22 @@ interface Comment_thread_subscribersRequestBuilderGetQueryParameters {
|
|
|
4886
5003
|
page?: number;
|
|
4887
5004
|
size?: number;
|
|
4888
5005
|
sort?: string;
|
|
4889
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5006
|
+
sortOrder?: GetSortOrderQueryParameterType$m;
|
|
4890
5007
|
}
|
|
4891
|
-
type GetSortOrderQueryParameterType$
|
|
5008
|
+
type GetSortOrderQueryParameterType$m = (typeof GetSortOrderQueryParameterTypeObject$m)[keyof typeof GetSortOrderQueryParameterTypeObject$m];
|
|
4892
5009
|
declare const Comment_thread_subscribersGetResponse_objectObject: {
|
|
4893
5010
|
readonly List: "list";
|
|
4894
5011
|
};
|
|
4895
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5012
|
+
declare const GetSortOrderQueryParameterTypeObject$m: {
|
|
4896
5013
|
readonly DESC: "DESC";
|
|
4897
5014
|
readonly ASC: "ASC";
|
|
4898
5015
|
};
|
|
4899
5016
|
|
|
4900
|
-
interface FindPostResponse$
|
|
5017
|
+
interface FindPostResponse$i extends AdditionalDataHolder, Parsable {
|
|
5018
|
+
/**
|
|
5019
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5020
|
+
*/
|
|
5021
|
+
additionalData?: Record<string, unknown>;
|
|
4901
5022
|
/**
|
|
4902
5023
|
* The data property
|
|
4903
5024
|
*/
|
|
@@ -4905,17 +5026,17 @@ interface FindPostResponse$h extends Parsable {
|
|
|
4905
5026
|
/**
|
|
4906
5027
|
* The object property
|
|
4907
5028
|
*/
|
|
4908
|
-
object?: FindPostResponse_object$
|
|
5029
|
+
object?: FindPostResponse_object$i | null;
|
|
4909
5030
|
/**
|
|
4910
5031
|
* The totalElements property
|
|
4911
5032
|
*/
|
|
4912
5033
|
totalElements?: number | null;
|
|
4913
5034
|
}
|
|
4914
|
-
type FindPostResponse_object$
|
|
5035
|
+
type FindPostResponse_object$i = (typeof FindPostResponse_objectObject$i)[keyof typeof FindPostResponse_objectObject$i];
|
|
4915
5036
|
/**
|
|
4916
5037
|
* Builds and executes requests for operations under /v1/comment_threads/find
|
|
4917
5038
|
*/
|
|
4918
|
-
interface FindRequestBuilder$
|
|
5039
|
+
interface FindRequestBuilder$i extends BaseRequestBuilder<FindRequestBuilder$i> {
|
|
4919
5040
|
/**
|
|
4920
5041
|
* Find a list of Comment Thread
|
|
4921
5042
|
* @param body The request body
|
|
@@ -4923,51 +5044,51 @@ interface FindRequestBuilder$h extends BaseRequestBuilder<FindRequestBuilder$h>
|
|
|
4923
5044
|
* @returns {Promise<FindPostResponse>}
|
|
4924
5045
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
4925
5046
|
*/
|
|
4926
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5047
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$i> | undefined): Promise<FindPostResponse$i | undefined>;
|
|
4927
5048
|
/**
|
|
4928
5049
|
* Find a list of Comment Thread
|
|
4929
5050
|
* @param body The request body
|
|
4930
5051
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4931
5052
|
* @returns {RequestInformation}
|
|
4932
5053
|
*/
|
|
4933
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5054
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$i> | undefined): RequestInformation;
|
|
4934
5055
|
}
|
|
4935
5056
|
/**
|
|
4936
5057
|
* Find a list of Comment Thread
|
|
4937
5058
|
*/
|
|
4938
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
5059
|
+
interface FindRequestBuilderPostQueryParameters$i {
|
|
4939
5060
|
page?: number;
|
|
4940
5061
|
size?: number;
|
|
4941
5062
|
sort?: string;
|
|
4942
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
5063
|
+
sortOrder?: PostSortOrderQueryParameterType$j;
|
|
4943
5064
|
}
|
|
4944
|
-
type PostSortOrderQueryParameterType$
|
|
4945
|
-
declare const FindPostResponse_objectObject$
|
|
5065
|
+
type PostSortOrderQueryParameterType$j = (typeof PostSortOrderQueryParameterTypeObject$j)[keyof typeof PostSortOrderQueryParameterTypeObject$j];
|
|
5066
|
+
declare const FindPostResponse_objectObject$i: {
|
|
4946
5067
|
readonly List: "list";
|
|
4947
5068
|
};
|
|
4948
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5069
|
+
declare const PostSortOrderQueryParameterTypeObject$j: {
|
|
4949
5070
|
readonly DESC: "DESC";
|
|
4950
5071
|
readonly ASC: "ASC";
|
|
4951
5072
|
};
|
|
4952
5073
|
|
|
4953
5074
|
/**
|
|
4954
|
-
* Builds and executes requests for operations under /v1/comment_threads/{id}/add-
|
|
5075
|
+
* Builds and executes requests for operations under /v1/comment_threads/{id}/add-comment
|
|
4955
5076
|
*/
|
|
4956
|
-
interface
|
|
5077
|
+
interface AddCommentRequestBuilder extends BaseRequestBuilder<AddCommentRequestBuilder> {
|
|
4957
5078
|
/**
|
|
4958
|
-
* Add a
|
|
5079
|
+
* Add a comment to a comment thread
|
|
4959
5080
|
* @param body The request body
|
|
4960
5081
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4961
5082
|
* @returns {Promise<CommentThreadDto>}
|
|
4962
5083
|
*/
|
|
4963
|
-
post(body:
|
|
5084
|
+
post(body: CommentThreadCommentCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
4964
5085
|
/**
|
|
4965
|
-
* Add a
|
|
5086
|
+
* Add a comment to a comment thread
|
|
4966
5087
|
* @param body The request body
|
|
4967
5088
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4968
5089
|
* @returns {RequestInformation}
|
|
4969
5090
|
*/
|
|
4970
|
-
toPostRequestInformation(body:
|
|
5091
|
+
toPostRequestInformation(body: CommentThreadCommentCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
4971
5092
|
}
|
|
4972
5093
|
|
|
4973
5094
|
/**
|
|
@@ -4975,9 +5096,9 @@ interface AddReplyRequestBuilder extends BaseRequestBuilder<AddReplyRequestBuild
|
|
|
4975
5096
|
*/
|
|
4976
5097
|
interface Comment_threadsItemRequestBuilder extends BaseRequestBuilder<Comment_threadsItemRequestBuilder> {
|
|
4977
5098
|
/**
|
|
4978
|
-
* The
|
|
5099
|
+
* The addComment property
|
|
4979
5100
|
*/
|
|
4980
|
-
get
|
|
5101
|
+
get addComment(): AddCommentRequestBuilder;
|
|
4981
5102
|
/**
|
|
4982
5103
|
* Get a Comment Thread by id
|
|
4983
5104
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -5008,7 +5129,11 @@ interface Comment_threadsItemRequestBuilder extends BaseRequestBuilder<Comment_t
|
|
|
5008
5129
|
toPatchRequestInformation(body: CommentThreadUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5009
5130
|
}
|
|
5010
5131
|
|
|
5011
|
-
interface Comment_threadsGetResponse extends Parsable {
|
|
5132
|
+
interface Comment_threadsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5133
|
+
/**
|
|
5134
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5135
|
+
*/
|
|
5136
|
+
additionalData?: Record<string, unknown>;
|
|
5012
5137
|
/**
|
|
5013
5138
|
* The data property
|
|
5014
5139
|
*/
|
|
@@ -5030,7 +5155,7 @@ interface Comment_threadsRequestBuilder extends BaseRequestBuilder<Comment_threa
|
|
|
5030
5155
|
/**
|
|
5031
5156
|
* The find property
|
|
5032
5157
|
*/
|
|
5033
|
-
get find(): FindRequestBuilder$
|
|
5158
|
+
get find(): FindRequestBuilder$i;
|
|
5034
5159
|
/**
|
|
5035
5160
|
* Gets an item from the ApiSdk.v1.comment_threads.item collection
|
|
5036
5161
|
* @param id Unique identifier of the item
|
|
@@ -5073,13 +5198,13 @@ interface Comment_threadsRequestBuilderGetQueryParameters {
|
|
|
5073
5198
|
page?: number;
|
|
5074
5199
|
size?: number;
|
|
5075
5200
|
sort?: string;
|
|
5076
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5201
|
+
sortOrder?: GetSortOrderQueryParameterType$l;
|
|
5077
5202
|
}
|
|
5078
|
-
type GetSortOrderQueryParameterType$
|
|
5203
|
+
type GetSortOrderQueryParameterType$l = (typeof GetSortOrderQueryParameterTypeObject$l)[keyof typeof GetSortOrderQueryParameterTypeObject$l];
|
|
5079
5204
|
declare const Comment_threadsGetResponse_objectObject: {
|
|
5080
5205
|
readonly List: "list";
|
|
5081
5206
|
};
|
|
5082
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5207
|
+
declare const GetSortOrderQueryParameterTypeObject$l: {
|
|
5083
5208
|
readonly DESC: "DESC";
|
|
5084
5209
|
readonly ASC: "ASC";
|
|
5085
5210
|
};
|
|
@@ -5103,7 +5228,11 @@ interface FilesItemRequestBuilder extends BaseRequestBuilder<FilesItemRequestBui
|
|
|
5103
5228
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5104
5229
|
}
|
|
5105
5230
|
|
|
5106
|
-
interface FilesGetResponse extends Parsable {
|
|
5231
|
+
interface FilesGetResponse extends AdditionalDataHolder, Parsable {
|
|
5232
|
+
/**
|
|
5233
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5234
|
+
*/
|
|
5235
|
+
additionalData?: Record<string, unknown>;
|
|
5107
5236
|
/**
|
|
5108
5237
|
* The data property
|
|
5109
5238
|
*/
|
|
@@ -5164,18 +5293,22 @@ interface FilesRequestBuilderGetQueryParameters {
|
|
|
5164
5293
|
page?: number;
|
|
5165
5294
|
size?: number;
|
|
5166
5295
|
sort?: string;
|
|
5167
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5296
|
+
sortOrder?: GetSortOrderQueryParameterType$k;
|
|
5168
5297
|
}
|
|
5169
|
-
type GetSortOrderQueryParameterType$
|
|
5298
|
+
type GetSortOrderQueryParameterType$k = (typeof GetSortOrderQueryParameterTypeObject$k)[keyof typeof GetSortOrderQueryParameterTypeObject$k];
|
|
5170
5299
|
declare const FilesGetResponse_objectObject: {
|
|
5171
5300
|
readonly List: "list";
|
|
5172
5301
|
};
|
|
5173
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5302
|
+
declare const GetSortOrderQueryParameterTypeObject$k: {
|
|
5174
5303
|
readonly DESC: "DESC";
|
|
5175
5304
|
readonly ASC: "ASC";
|
|
5176
5305
|
};
|
|
5177
5306
|
|
|
5178
|
-
interface FindPostResponse$
|
|
5307
|
+
interface FindPostResponse$h extends AdditionalDataHolder, Parsable {
|
|
5308
|
+
/**
|
|
5309
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5310
|
+
*/
|
|
5311
|
+
additionalData?: Record<string, unknown>;
|
|
5179
5312
|
/**
|
|
5180
5313
|
* The data property
|
|
5181
5314
|
*/
|
|
@@ -5183,17 +5316,17 @@ interface FindPostResponse$g extends Parsable {
|
|
|
5183
5316
|
/**
|
|
5184
5317
|
* The object property
|
|
5185
5318
|
*/
|
|
5186
|
-
object?: FindPostResponse_object$
|
|
5319
|
+
object?: FindPostResponse_object$h | null;
|
|
5187
5320
|
/**
|
|
5188
5321
|
* The totalElements property
|
|
5189
5322
|
*/
|
|
5190
5323
|
totalElements?: number | null;
|
|
5191
5324
|
}
|
|
5192
|
-
type FindPostResponse_object$
|
|
5325
|
+
type FindPostResponse_object$h = (typeof FindPostResponse_objectObject$h)[keyof typeof FindPostResponse_objectObject$h];
|
|
5193
5326
|
/**
|
|
5194
5327
|
* Builds and executes requests for operations under /v1/data_factory/job_executions/find
|
|
5195
5328
|
*/
|
|
5196
|
-
interface FindRequestBuilder$
|
|
5329
|
+
interface FindRequestBuilder$h extends BaseRequestBuilder<FindRequestBuilder$h> {
|
|
5197
5330
|
/**
|
|
5198
5331
|
* (Not implemented) - Find a list of Job Execution
|
|
5199
5332
|
* @param body The request body
|
|
@@ -5201,29 +5334,29 @@ interface FindRequestBuilder$g extends BaseRequestBuilder<FindRequestBuilder$g>
|
|
|
5201
5334
|
* @returns {Promise<FindPostResponse>}
|
|
5202
5335
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5203
5336
|
*/
|
|
5204
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5337
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$h> | undefined): Promise<FindPostResponse$h | undefined>;
|
|
5205
5338
|
/**
|
|
5206
5339
|
* (Not implemented) - Find a list of Job Execution
|
|
5207
5340
|
* @param body The request body
|
|
5208
5341
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5209
5342
|
* @returns {RequestInformation}
|
|
5210
5343
|
*/
|
|
5211
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5344
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$h> | undefined): RequestInformation;
|
|
5212
5345
|
}
|
|
5213
5346
|
/**
|
|
5214
5347
|
* (Not implemented) - Find a list of Job Execution
|
|
5215
5348
|
*/
|
|
5216
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
5349
|
+
interface FindRequestBuilderPostQueryParameters$h {
|
|
5217
5350
|
page?: number;
|
|
5218
5351
|
size?: number;
|
|
5219
5352
|
sort?: string;
|
|
5220
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
5353
|
+
sortOrder?: PostSortOrderQueryParameterType$i;
|
|
5221
5354
|
}
|
|
5222
|
-
type PostSortOrderQueryParameterType$
|
|
5223
|
-
declare const FindPostResponse_objectObject$
|
|
5355
|
+
type PostSortOrderQueryParameterType$i = (typeof PostSortOrderQueryParameterTypeObject$i)[keyof typeof PostSortOrderQueryParameterTypeObject$i];
|
|
5356
|
+
declare const FindPostResponse_objectObject$h: {
|
|
5224
5357
|
readonly List: "list";
|
|
5225
5358
|
};
|
|
5226
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5359
|
+
declare const PostSortOrderQueryParameterTypeObject$i: {
|
|
5227
5360
|
readonly DESC: "DESC";
|
|
5228
5361
|
readonly ASC: "ASC";
|
|
5229
5362
|
};
|
|
@@ -5247,8 +5380,12 @@ interface Job_executionsItemRequestBuilder extends BaseRequestBuilder<Job_execut
|
|
|
5247
5380
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5248
5381
|
}
|
|
5249
5382
|
|
|
5250
|
-
type GetSortOrderQueryParameterType$
|
|
5251
|
-
interface Job_executionsGetResponse extends Parsable {
|
|
5383
|
+
type GetSortOrderQueryParameterType$j = (typeof GetSortOrderQueryParameterTypeObject$j)[keyof typeof GetSortOrderQueryParameterTypeObject$j];
|
|
5384
|
+
interface Job_executionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5385
|
+
/**
|
|
5386
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5387
|
+
*/
|
|
5388
|
+
additionalData?: Record<string, unknown>;
|
|
5252
5389
|
/**
|
|
5253
5390
|
* The data property
|
|
5254
5391
|
*/
|
|
@@ -5270,7 +5407,7 @@ interface Job_executionsRequestBuilder extends BaseRequestBuilder<Job_executions
|
|
|
5270
5407
|
/**
|
|
5271
5408
|
* The find property
|
|
5272
5409
|
*/
|
|
5273
|
-
get find(): FindRequestBuilder$
|
|
5410
|
+
get find(): FindRequestBuilder$h;
|
|
5274
5411
|
/**
|
|
5275
5412
|
* Gets an item from the ApiSdk.v1.data_factory.job_executions.item collection
|
|
5276
5413
|
* @param id Unique identifier of the item
|
|
@@ -5313,9 +5450,9 @@ interface Job_executionsRequestBuilderGetQueryParameters {
|
|
|
5313
5450
|
page?: number;
|
|
5314
5451
|
size?: number;
|
|
5315
5452
|
sort?: string;
|
|
5316
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5453
|
+
sortOrder?: GetSortOrderQueryParameterType$j;
|
|
5317
5454
|
}
|
|
5318
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5455
|
+
declare const GetSortOrderQueryParameterTypeObject$j: {
|
|
5319
5456
|
readonly DESC: "DESC";
|
|
5320
5457
|
readonly ASC: "ASC";
|
|
5321
5458
|
};
|
|
@@ -5382,8 +5519,12 @@ interface JobsItemRequestBuilder extends BaseRequestBuilder<JobsItemRequestBuild
|
|
|
5382
5519
|
toPutRequestInformation(body: UpdateJobDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5383
5520
|
}
|
|
5384
5521
|
|
|
5385
|
-
type GetSortOrderQueryParameterType$
|
|
5386
|
-
interface JobsGetResponse extends Parsable {
|
|
5522
|
+
type GetSortOrderQueryParameterType$i = (typeof GetSortOrderQueryParameterTypeObject$i)[keyof typeof GetSortOrderQueryParameterTypeObject$i];
|
|
5523
|
+
interface JobsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5524
|
+
/**
|
|
5525
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5526
|
+
*/
|
|
5527
|
+
additionalData?: Record<string, unknown>;
|
|
5387
5528
|
/**
|
|
5388
5529
|
* The data property
|
|
5389
5530
|
*/
|
|
@@ -5441,6 +5582,204 @@ interface JobsRequestBuilder extends BaseRequestBuilder<JobsRequestBuilder> {
|
|
|
5441
5582
|
* Get a list of Job
|
|
5442
5583
|
*/
|
|
5443
5584
|
interface JobsRequestBuilderGetQueryParameters {
|
|
5585
|
+
page?: number;
|
|
5586
|
+
size?: number;
|
|
5587
|
+
sort?: string;
|
|
5588
|
+
sortOrder?: GetSortOrderQueryParameterType$i;
|
|
5589
|
+
}
|
|
5590
|
+
declare const GetSortOrderQueryParameterTypeObject$i: {
|
|
5591
|
+
readonly DESC: "DESC";
|
|
5592
|
+
readonly ASC: "ASC";
|
|
5593
|
+
};
|
|
5594
|
+
declare const JobsGetResponse_objectObject: {
|
|
5595
|
+
readonly List: "list";
|
|
5596
|
+
};
|
|
5597
|
+
|
|
5598
|
+
interface FindPostResponse$g extends AdditionalDataHolder, Parsable {
|
|
5599
|
+
/**
|
|
5600
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5601
|
+
*/
|
|
5602
|
+
additionalData?: Record<string, unknown>;
|
|
5603
|
+
/**
|
|
5604
|
+
* The data property
|
|
5605
|
+
*/
|
|
5606
|
+
data?: ProjectDto[] | null;
|
|
5607
|
+
/**
|
|
5608
|
+
* The object property
|
|
5609
|
+
*/
|
|
5610
|
+
object?: FindPostResponse_object$g | null;
|
|
5611
|
+
/**
|
|
5612
|
+
* The totalElements property
|
|
5613
|
+
*/
|
|
5614
|
+
totalElements?: number | null;
|
|
5615
|
+
}
|
|
5616
|
+
type FindPostResponse_object$g = (typeof FindPostResponse_objectObject$g)[keyof typeof FindPostResponse_objectObject$g];
|
|
5617
|
+
/**
|
|
5618
|
+
* Builds and executes requests for operations under /v1/data_factory/projects/find
|
|
5619
|
+
*/
|
|
5620
|
+
interface FindRequestBuilder$g extends BaseRequestBuilder<FindRequestBuilder$g> {
|
|
5621
|
+
/**
|
|
5622
|
+
* Find a list of Project
|
|
5623
|
+
* @param body The request body
|
|
5624
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5625
|
+
* @returns {Promise<FindPostResponse>}
|
|
5626
|
+
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5627
|
+
*/
|
|
5628
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$g> | undefined): Promise<FindPostResponse$g | undefined>;
|
|
5629
|
+
/**
|
|
5630
|
+
* Find a list of Project
|
|
5631
|
+
* @param body The request body
|
|
5632
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5633
|
+
* @returns {RequestInformation}
|
|
5634
|
+
*/
|
|
5635
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$g> | undefined): RequestInformation;
|
|
5636
|
+
}
|
|
5637
|
+
/**
|
|
5638
|
+
* Find a list of Project
|
|
5639
|
+
*/
|
|
5640
|
+
interface FindRequestBuilderPostQueryParameters$g {
|
|
5641
|
+
page?: number;
|
|
5642
|
+
size?: number;
|
|
5643
|
+
sort?: string;
|
|
5644
|
+
sortOrder?: PostSortOrderQueryParameterType$h;
|
|
5645
|
+
}
|
|
5646
|
+
type PostSortOrderQueryParameterType$h = (typeof PostSortOrderQueryParameterTypeObject$h)[keyof typeof PostSortOrderQueryParameterTypeObject$h];
|
|
5647
|
+
declare const FindPostResponse_objectObject$g: {
|
|
5648
|
+
readonly List: "list";
|
|
5649
|
+
};
|
|
5650
|
+
declare const PostSortOrderQueryParameterTypeObject$h: {
|
|
5651
|
+
readonly DESC: "DESC";
|
|
5652
|
+
readonly ASC: "ASC";
|
|
5653
|
+
};
|
|
5654
|
+
|
|
5655
|
+
/**
|
|
5656
|
+
* Builds and executes requests for operations under /v1/data_factory/projects/{id}
|
|
5657
|
+
*/
|
|
5658
|
+
interface ProjectsItemRequestBuilder extends BaseRequestBuilder<ProjectsItemRequestBuilder> {
|
|
5659
|
+
/**
|
|
5660
|
+
* Delete a Project by id
|
|
5661
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5662
|
+
* @throws {Projects400Error} error when the service returns a 400 status code
|
|
5663
|
+
*/
|
|
5664
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
5665
|
+
/**
|
|
5666
|
+
* Get a Project by id
|
|
5667
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5668
|
+
* @returns {Promise<ProjectDto>}
|
|
5669
|
+
* @throws {ProjectDto400Error} error when the service returns a 400 status code
|
|
5670
|
+
*/
|
|
5671
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ProjectDto | undefined>;
|
|
5672
|
+
/**
|
|
5673
|
+
* Patch a Project
|
|
5674
|
+
* @param body The request body
|
|
5675
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5676
|
+
* @returns {Promise<ProjectDto>}
|
|
5677
|
+
* @throws {ProjectDto400Error} error when the service returns a 400 status code
|
|
5678
|
+
*/
|
|
5679
|
+
patch(body: ProjectDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ProjectDto | undefined>;
|
|
5680
|
+
/**
|
|
5681
|
+
* Update a Project
|
|
5682
|
+
* @param body The request body
|
|
5683
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5684
|
+
* @returns {Promise<ProjectDto>}
|
|
5685
|
+
* @throws {ProjectDto400Error} error when the service returns a 400 status code
|
|
5686
|
+
*/
|
|
5687
|
+
put(body: ProjectDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ProjectDto | undefined>;
|
|
5688
|
+
/**
|
|
5689
|
+
* Delete a Project by id
|
|
5690
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5691
|
+
* @returns {RequestInformation}
|
|
5692
|
+
*/
|
|
5693
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5694
|
+
/**
|
|
5695
|
+
* Get a Project by id
|
|
5696
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5697
|
+
* @returns {RequestInformation}
|
|
5698
|
+
*/
|
|
5699
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5700
|
+
/**
|
|
5701
|
+
* Patch a Project
|
|
5702
|
+
* @param body The request body
|
|
5703
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5704
|
+
* @returns {RequestInformation}
|
|
5705
|
+
*/
|
|
5706
|
+
toPatchRequestInformation(body: ProjectDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5707
|
+
/**
|
|
5708
|
+
* Update a Project
|
|
5709
|
+
* @param body The request body
|
|
5710
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5711
|
+
* @returns {RequestInformation}
|
|
5712
|
+
*/
|
|
5713
|
+
toPutRequestInformation(body: ProjectDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5714
|
+
}
|
|
5715
|
+
|
|
5716
|
+
type GetSortOrderQueryParameterType$h = (typeof GetSortOrderQueryParameterTypeObject$h)[keyof typeof GetSortOrderQueryParameterTypeObject$h];
|
|
5717
|
+
interface ProjectsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5718
|
+
/**
|
|
5719
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5720
|
+
*/
|
|
5721
|
+
additionalData?: Record<string, unknown>;
|
|
5722
|
+
/**
|
|
5723
|
+
* The data property
|
|
5724
|
+
*/
|
|
5725
|
+
data?: ProjectDto[] | null;
|
|
5726
|
+
/**
|
|
5727
|
+
* The object property
|
|
5728
|
+
*/
|
|
5729
|
+
object?: ProjectsGetResponse_object | null;
|
|
5730
|
+
/**
|
|
5731
|
+
* The totalElements property
|
|
5732
|
+
*/
|
|
5733
|
+
totalElements?: number | null;
|
|
5734
|
+
}
|
|
5735
|
+
type ProjectsGetResponse_object = (typeof ProjectsGetResponse_objectObject)[keyof typeof ProjectsGetResponse_objectObject];
|
|
5736
|
+
/**
|
|
5737
|
+
* Builds and executes requests for operations under /v1/data_factory/projects
|
|
5738
|
+
*/
|
|
5739
|
+
interface ProjectsRequestBuilder extends BaseRequestBuilder<ProjectsRequestBuilder> {
|
|
5740
|
+
/**
|
|
5741
|
+
* The find property
|
|
5742
|
+
*/
|
|
5743
|
+
get find(): FindRequestBuilder$g;
|
|
5744
|
+
/**
|
|
5745
|
+
* Gets an item from the ApiSdk.v1.data_factory.projects.item collection
|
|
5746
|
+
* @param id Unique identifier of the item
|
|
5747
|
+
* @returns {ProjectsItemRequestBuilder}
|
|
5748
|
+
*/
|
|
5749
|
+
byId(id: string): ProjectsItemRequestBuilder;
|
|
5750
|
+
/**
|
|
5751
|
+
* Get a list of Project
|
|
5752
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5753
|
+
* @returns {Promise<ProjectsGetResponse>}
|
|
5754
|
+
* @throws {Projects400Error} error when the service returns a 400 status code
|
|
5755
|
+
*/
|
|
5756
|
+
get(requestConfiguration?: RequestConfiguration<ProjectsRequestBuilderGetQueryParameters> | undefined): Promise<ProjectsGetResponse | undefined>;
|
|
5757
|
+
/**
|
|
5758
|
+
* Create a Project
|
|
5759
|
+
* @param body The request body
|
|
5760
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5761
|
+
* @returns {Promise<ProjectDto>}
|
|
5762
|
+
* @throws {ProjectDto400Error} error when the service returns a 400 status code
|
|
5763
|
+
*/
|
|
5764
|
+
post(body: CreateProjectDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ProjectDto | undefined>;
|
|
5765
|
+
/**
|
|
5766
|
+
* Get a list of Project
|
|
5767
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5768
|
+
* @returns {RequestInformation}
|
|
5769
|
+
*/
|
|
5770
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ProjectsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
5771
|
+
/**
|
|
5772
|
+
* Create a Project
|
|
5773
|
+
* @param body The request body
|
|
5774
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5775
|
+
* @returns {RequestInformation}
|
|
5776
|
+
*/
|
|
5777
|
+
toPostRequestInformation(body: CreateProjectDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5778
|
+
}
|
|
5779
|
+
/**
|
|
5780
|
+
* Get a list of Project
|
|
5781
|
+
*/
|
|
5782
|
+
interface ProjectsRequestBuilderGetQueryParameters {
|
|
5444
5783
|
page?: number;
|
|
5445
5784
|
size?: number;
|
|
5446
5785
|
sort?: string;
|
|
@@ -5450,7 +5789,7 @@ declare const GetSortOrderQueryParameterTypeObject$h: {
|
|
|
5450
5789
|
readonly DESC: "DESC";
|
|
5451
5790
|
readonly ASC: "ASC";
|
|
5452
5791
|
};
|
|
5453
|
-
declare const
|
|
5792
|
+
declare const ProjectsGetResponse_objectObject: {
|
|
5454
5793
|
readonly List: "list";
|
|
5455
5794
|
};
|
|
5456
5795
|
|
|
@@ -5570,7 +5909,11 @@ interface TasksItemRequestBuilder extends BaseRequestBuilder<TasksItemRequestBui
|
|
|
5570
5909
|
}
|
|
5571
5910
|
|
|
5572
5911
|
type GetSortOrderQueryParameterType$g = (typeof GetSortOrderQueryParameterTypeObject$g)[keyof typeof GetSortOrderQueryParameterTypeObject$g];
|
|
5573
|
-
interface TasksGetResponse extends Parsable {
|
|
5912
|
+
interface TasksGetResponse extends AdditionalDataHolder, Parsable {
|
|
5913
|
+
/**
|
|
5914
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5915
|
+
*/
|
|
5916
|
+
additionalData?: Record<string, unknown>;
|
|
5574
5917
|
/**
|
|
5575
5918
|
* The data property
|
|
5576
5919
|
*/
|
|
@@ -5641,7 +5984,11 @@ declare const TasksGetResponse_objectObject: {
|
|
|
5641
5984
|
readonly List: "list";
|
|
5642
5985
|
};
|
|
5643
5986
|
|
|
5644
|
-
interface FindPostResponse$f extends Parsable {
|
|
5987
|
+
interface FindPostResponse$f extends AdditionalDataHolder, Parsable {
|
|
5988
|
+
/**
|
|
5989
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5990
|
+
*/
|
|
5991
|
+
additionalData?: Record<string, unknown>;
|
|
5645
5992
|
/**
|
|
5646
5993
|
* The data property
|
|
5647
5994
|
*/
|
|
@@ -5729,7 +6076,11 @@ interface VariablesItemRequestBuilder extends BaseRequestBuilder<VariablesItemRe
|
|
|
5729
6076
|
}
|
|
5730
6077
|
|
|
5731
6078
|
type GetSortOrderQueryParameterType$f = (typeof GetSortOrderQueryParameterTypeObject$f)[keyof typeof GetSortOrderQueryParameterTypeObject$f];
|
|
5732
|
-
interface VariablesGetResponse extends Parsable {
|
|
6079
|
+
interface VariablesGetResponse extends AdditionalDataHolder, Parsable {
|
|
6080
|
+
/**
|
|
6081
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6082
|
+
*/
|
|
6083
|
+
additionalData?: Record<string, unknown>;
|
|
5733
6084
|
/**
|
|
5734
6085
|
* The data property
|
|
5735
6086
|
*/
|
|
@@ -5820,6 +6171,10 @@ interface Data_factoryRequestBuilder extends BaseRequestBuilder<Data_factoryRequ
|
|
|
5820
6171
|
* The jobs property
|
|
5821
6172
|
*/
|
|
5822
6173
|
get jobs(): JobsRequestBuilder;
|
|
6174
|
+
/**
|
|
6175
|
+
* The projects property
|
|
6176
|
+
*/
|
|
6177
|
+
get projects(): ProjectsRequestBuilder;
|
|
5823
6178
|
/**
|
|
5824
6179
|
* The task_executions property
|
|
5825
6180
|
*/
|
|
@@ -5834,7 +6189,11 @@ interface Data_factoryRequestBuilder extends BaseRequestBuilder<Data_factoryRequ
|
|
|
5834
6189
|
get variables(): VariablesRequestBuilder;
|
|
5835
6190
|
}
|
|
5836
6191
|
|
|
5837
|
-
interface FindPostResponse$e extends Parsable {
|
|
6192
|
+
interface FindPostResponse$e extends AdditionalDataHolder, Parsable {
|
|
6193
|
+
/**
|
|
6194
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6195
|
+
*/
|
|
6196
|
+
additionalData?: Record<string, unknown>;
|
|
5838
6197
|
/**
|
|
5839
6198
|
* The data property
|
|
5840
6199
|
*/
|
|
@@ -5907,7 +6266,11 @@ interface Field_valuesItemRequestBuilder extends BaseRequestBuilder<Field_values
|
|
|
5907
6266
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5908
6267
|
}
|
|
5909
6268
|
|
|
5910
|
-
interface Field_valuesGetResponse extends Parsable {
|
|
6269
|
+
interface Field_valuesGetResponse extends AdditionalDataHolder, Parsable {
|
|
6270
|
+
/**
|
|
6271
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6272
|
+
*/
|
|
6273
|
+
additionalData?: Record<string, unknown>;
|
|
5911
6274
|
/**
|
|
5912
6275
|
* The data property
|
|
5913
6276
|
*/
|
|
@@ -5969,7 +6332,11 @@ declare const GetSortOrderQueryParameterTypeObject$e: {
|
|
|
5969
6332
|
readonly ASC: "ASC";
|
|
5970
6333
|
};
|
|
5971
6334
|
|
|
5972
|
-
interface FindPostResponse$d extends Parsable {
|
|
6335
|
+
interface FindPostResponse$d extends AdditionalDataHolder, Parsable {
|
|
6336
|
+
/**
|
|
6337
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6338
|
+
*/
|
|
6339
|
+
additionalData?: Record<string, unknown>;
|
|
5973
6340
|
/**
|
|
5974
6341
|
* The data property
|
|
5975
6342
|
*/
|
|
@@ -6057,7 +6424,11 @@ interface FieldsItemRequestBuilder extends BaseRequestBuilder<FieldsItemRequestB
|
|
|
6057
6424
|
toPatchRequestInformation(body: FieldUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6058
6425
|
}
|
|
6059
6426
|
|
|
6060
|
-
interface FieldsGetResponse extends Parsable {
|
|
6427
|
+
interface FieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
6428
|
+
/**
|
|
6429
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6430
|
+
*/
|
|
6431
|
+
additionalData?: Record<string, unknown>;
|
|
6061
6432
|
/**
|
|
6062
6433
|
* The data property
|
|
6063
6434
|
*/
|
|
@@ -6119,7 +6490,11 @@ declare const GetSortOrderQueryParameterTypeObject$d: {
|
|
|
6119
6490
|
readonly ASC: "ASC";
|
|
6120
6491
|
};
|
|
6121
6492
|
|
|
6122
|
-
interface FindPostResponse$c extends Parsable {
|
|
6493
|
+
interface FindPostResponse$c extends AdditionalDataHolder, Parsable {
|
|
6494
|
+
/**
|
|
6495
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6496
|
+
*/
|
|
6497
|
+
additionalData?: Record<string, unknown>;
|
|
6123
6498
|
/**
|
|
6124
6499
|
* The data property
|
|
6125
6500
|
*/
|
|
@@ -6205,7 +6580,11 @@ interface Item_linksItemRequestBuilder extends BaseRequestBuilder<Item_linksItem
|
|
|
6205
6580
|
}
|
|
6206
6581
|
|
|
6207
6582
|
type GetSortOrderQueryParameterType$c = (typeof GetSortOrderQueryParameterTypeObject$c)[keyof typeof GetSortOrderQueryParameterTypeObject$c];
|
|
6208
|
-
interface Item_linksGetResponse extends Parsable {
|
|
6583
|
+
interface Item_linksGetResponse extends AdditionalDataHolder, Parsable {
|
|
6584
|
+
/**
|
|
6585
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6586
|
+
*/
|
|
6587
|
+
additionalData?: Record<string, unknown>;
|
|
6209
6588
|
/**
|
|
6210
6589
|
* The data property
|
|
6211
6590
|
*/
|
|
@@ -6281,27 +6660,6 @@ declare const Item_linksGetResponse_objectObject: {
|
|
|
6281
6660
|
readonly List: "list";
|
|
6282
6661
|
};
|
|
6283
6662
|
|
|
6284
|
-
/**
|
|
6285
|
-
* Builds and executes requests for operations under /v1/items/create-or-update
|
|
6286
|
-
*/
|
|
6287
|
-
interface CreateOrUpdateRequestBuilder extends BaseRequestBuilder<CreateOrUpdateRequestBuilder> {
|
|
6288
|
-
/**
|
|
6289
|
-
* Create or update a Item
|
|
6290
|
-
* @param body The request body
|
|
6291
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6292
|
-
* @returns {Promise<ItemDto>}
|
|
6293
|
-
* @throws {ItemDto400Error} error when the service returns a 400 status code
|
|
6294
|
-
*/
|
|
6295
|
-
post(body: ItemCreateOrUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ItemDto | undefined>;
|
|
6296
|
-
/**
|
|
6297
|
-
* Create or update a Item
|
|
6298
|
-
* @param body The request body
|
|
6299
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6300
|
-
* @returns {RequestInformation}
|
|
6301
|
-
*/
|
|
6302
|
-
toPostRequestInformation(body: ItemCreateOrUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6303
|
-
}
|
|
6304
|
-
|
|
6305
6663
|
type PostSortOrderQueryParameterType$c = (typeof PostSortOrderQueryParameterTypeObject$c)[keyof typeof PostSortOrderQueryParameterTypeObject$c];
|
|
6306
6664
|
/**
|
|
6307
6665
|
* Builds and executes requests for operations under /v1/items/find/table/{tableId}/partition/{partitionId}/level/{levelId}
|
|
@@ -6334,7 +6692,11 @@ interface WithLevelItemRequestBuilderPostQueryParameters {
|
|
|
6334
6692
|
sort?: string;
|
|
6335
6693
|
sortOrder?: PostSortOrderQueryParameterType$c;
|
|
6336
6694
|
}
|
|
6337
|
-
interface WithLevelPostResponse extends Parsable {
|
|
6695
|
+
interface WithLevelPostResponse extends AdditionalDataHolder, Parsable {
|
|
6696
|
+
/**
|
|
6697
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6698
|
+
*/
|
|
6699
|
+
additionalData?: Record<string, unknown>;
|
|
6338
6700
|
/**
|
|
6339
6701
|
* The data property
|
|
6340
6702
|
*/
|
|
@@ -6414,7 +6776,11 @@ interface TableRequestBuilder extends BaseRequestBuilder<TableRequestBuilder> {
|
|
|
6414
6776
|
byTableId(tableId: string): WithTableItemRequestBuilder;
|
|
6415
6777
|
}
|
|
6416
6778
|
|
|
6417
|
-
interface FindPostResponse$b extends Parsable {
|
|
6779
|
+
interface FindPostResponse$b extends AdditionalDataHolder, Parsable {
|
|
6780
|
+
/**
|
|
6781
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6782
|
+
*/
|
|
6783
|
+
additionalData?: Record<string, unknown>;
|
|
6418
6784
|
/**
|
|
6419
6785
|
* The data property
|
|
6420
6786
|
*/
|
|
@@ -6496,7 +6862,11 @@ interface ItemsItemRequestBuilder extends BaseRequestBuilder<ItemsItemRequestBui
|
|
|
6496
6862
|
}
|
|
6497
6863
|
|
|
6498
6864
|
type GetSortOrderQueryParameterType$b = (typeof GetSortOrderQueryParameterTypeObject$b)[keyof typeof GetSortOrderQueryParameterTypeObject$b];
|
|
6499
|
-
interface ItemsGetResponse extends Parsable {
|
|
6865
|
+
interface ItemsGetResponse extends AdditionalDataHolder, Parsable {
|
|
6866
|
+
/**
|
|
6867
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6868
|
+
*/
|
|
6869
|
+
additionalData?: Record<string, unknown>;
|
|
6500
6870
|
/**
|
|
6501
6871
|
* The data property
|
|
6502
6872
|
*/
|
|
@@ -6515,11 +6885,6 @@ type ItemsGetResponse_object = (typeof ItemsGetResponse_objectObject)[keyof type
|
|
|
6515
6885
|
* Builds and executes requests for operations under /v1/items
|
|
6516
6886
|
*/
|
|
6517
6887
|
interface ItemsRequestBuilder extends BaseRequestBuilder<ItemsRequestBuilder> {
|
|
6518
|
-
/**
|
|
6519
|
-
* The createOrUpdate property
|
|
6520
|
-
* @deprecated
|
|
6521
|
-
*/
|
|
6522
|
-
get createOrUpdate(): CreateOrUpdateRequestBuilder;
|
|
6523
6888
|
/**
|
|
6524
6889
|
* The find property
|
|
6525
6890
|
* @deprecated
|
|
@@ -6564,7 +6929,11 @@ declare const ItemsGetResponse_objectObject: {
|
|
|
6564
6929
|
readonly List: "list";
|
|
6565
6930
|
};
|
|
6566
6931
|
|
|
6567
|
-
interface FindPostResponse$a extends Parsable {
|
|
6932
|
+
interface FindPostResponse$a extends AdditionalDataHolder, Parsable {
|
|
6933
|
+
/**
|
|
6934
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6935
|
+
*/
|
|
6936
|
+
additionalData?: Record<string, unknown>;
|
|
6568
6937
|
/**
|
|
6569
6938
|
* The data property
|
|
6570
6939
|
*/
|
|
@@ -6638,7 +7007,11 @@ interface LevelsItemRequestBuilder extends BaseRequestBuilder<LevelsItemRequestB
|
|
|
6638
7007
|
}
|
|
6639
7008
|
|
|
6640
7009
|
type GetSortOrderQueryParameterType$a = (typeof GetSortOrderQueryParameterTypeObject$a)[keyof typeof GetSortOrderQueryParameterTypeObject$a];
|
|
6641
|
-
interface LevelsGetResponse extends Parsable {
|
|
7010
|
+
interface LevelsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7011
|
+
/**
|
|
7012
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7013
|
+
*/
|
|
7014
|
+
additionalData?: Record<string, unknown>;
|
|
6642
7015
|
/**
|
|
6643
7016
|
* The data property
|
|
6644
7017
|
*/
|
|
@@ -6699,7 +7072,11 @@ declare const LevelsGetResponse_objectObject: {
|
|
|
6699
7072
|
readonly List: "list";
|
|
6700
7073
|
};
|
|
6701
7074
|
|
|
6702
|
-
interface FindPostResponse$9 extends Parsable {
|
|
7075
|
+
interface FindPostResponse$9 extends AdditionalDataHolder, Parsable {
|
|
7076
|
+
/**
|
|
7077
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7078
|
+
*/
|
|
7079
|
+
additionalData?: Record<string, unknown>;
|
|
6703
7080
|
/**
|
|
6704
7081
|
* The data property
|
|
6705
7082
|
*/
|
|
@@ -6719,7 +7096,7 @@ type FindPostResponse_object$9 = (typeof FindPostResponse_objectObject$9)[keyof
|
|
|
6719
7096
|
*/
|
|
6720
7097
|
interface FindRequestBuilder$9 extends BaseRequestBuilder<FindRequestBuilder$9> {
|
|
6721
7098
|
/**
|
|
6722
|
-
* Find a list of
|
|
7099
|
+
* Find a list of Matrix Field
|
|
6723
7100
|
* @param body The request body
|
|
6724
7101
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6725
7102
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -6727,7 +7104,7 @@ interface FindRequestBuilder$9 extends BaseRequestBuilder<FindRequestBuilder$9>
|
|
|
6727
7104
|
*/
|
|
6728
7105
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$9> | undefined): Promise<FindPostResponse$9 | undefined>;
|
|
6729
7106
|
/**
|
|
6730
|
-
* Find a list of
|
|
7107
|
+
* Find a list of Matrix Field
|
|
6731
7108
|
* @param body The request body
|
|
6732
7109
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6733
7110
|
* @returns {RequestInformation}
|
|
@@ -6735,7 +7112,7 @@ interface FindRequestBuilder$9 extends BaseRequestBuilder<FindRequestBuilder$9>
|
|
|
6735
7112
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$9> | undefined): RequestInformation;
|
|
6736
7113
|
}
|
|
6737
7114
|
/**
|
|
6738
|
-
* Find a list of
|
|
7115
|
+
* Find a list of Matrix Field
|
|
6739
7116
|
*/
|
|
6740
7117
|
interface FindRequestBuilderPostQueryParameters$9 {
|
|
6741
7118
|
page?: number;
|
|
@@ -6758,14 +7135,14 @@ declare const PostSortOrderQueryParameterTypeObject$9: {
|
|
|
6758
7135
|
*/
|
|
6759
7136
|
interface Matrix_fieldsItemRequestBuilder extends BaseRequestBuilder<Matrix_fieldsItemRequestBuilder> {
|
|
6760
7137
|
/**
|
|
6761
|
-
* Get a
|
|
7138
|
+
* Get a Matrix Field by id
|
|
6762
7139
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6763
7140
|
* @returns {Promise<MatrixFieldDto>}
|
|
6764
7141
|
* @throws {MatrixFieldDto400Error} error when the service returns a 400 status code
|
|
6765
7142
|
*/
|
|
6766
7143
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MatrixFieldDto | undefined>;
|
|
6767
7144
|
/**
|
|
6768
|
-
* Get a
|
|
7145
|
+
* Get a Matrix Field by id
|
|
6769
7146
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6770
7147
|
* @returns {RequestInformation}
|
|
6771
7148
|
*/
|
|
@@ -6773,7 +7150,11 @@ interface Matrix_fieldsItemRequestBuilder extends BaseRequestBuilder<Matrix_fiel
|
|
|
6773
7150
|
}
|
|
6774
7151
|
|
|
6775
7152
|
type GetSortOrderQueryParameterType$9 = (typeof GetSortOrderQueryParameterTypeObject$9)[keyof typeof GetSortOrderQueryParameterTypeObject$9];
|
|
6776
|
-
interface Matrix_fieldsGetResponse extends Parsable {
|
|
7153
|
+
interface Matrix_fieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7154
|
+
/**
|
|
7155
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7156
|
+
*/
|
|
7157
|
+
additionalData?: Record<string, unknown>;
|
|
6777
7158
|
/**
|
|
6778
7159
|
* The data property
|
|
6779
7160
|
*/
|
|
@@ -6803,21 +7184,21 @@ interface Matrix_fieldsRequestBuilder extends BaseRequestBuilder<Matrix_fieldsRe
|
|
|
6803
7184
|
*/
|
|
6804
7185
|
byId(id: string): Matrix_fieldsItemRequestBuilder;
|
|
6805
7186
|
/**
|
|
6806
|
-
* Get a list of
|
|
7187
|
+
* Get a list of Matrix Field
|
|
6807
7188
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6808
7189
|
* @returns {Promise<Matrix_fieldsGetResponse>}
|
|
6809
7190
|
* @throws {Matrix_fields400Error} error when the service returns a 400 status code
|
|
6810
7191
|
*/
|
|
6811
7192
|
get(requestConfiguration?: RequestConfiguration<Matrix_fieldsRequestBuilderGetQueryParameters> | undefined): Promise<Matrix_fieldsGetResponse | undefined>;
|
|
6812
7193
|
/**
|
|
6813
|
-
* Get a list of
|
|
7194
|
+
* Get a list of Matrix Field
|
|
6814
7195
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6815
7196
|
* @returns {RequestInformation}
|
|
6816
7197
|
*/
|
|
6817
7198
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<Matrix_fieldsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
6818
7199
|
}
|
|
6819
7200
|
/**
|
|
6820
|
-
* Get a list of
|
|
7201
|
+
* Get a list of Matrix Field
|
|
6821
7202
|
*/
|
|
6822
7203
|
interface Matrix_fieldsRequestBuilderGetQueryParameters {
|
|
6823
7204
|
page?: number;
|
|
@@ -6834,7 +7215,11 @@ declare const Matrix_fieldsGetResponse_objectObject: {
|
|
|
6834
7215
|
readonly List: "list";
|
|
6835
7216
|
};
|
|
6836
7217
|
|
|
6837
|
-
interface FindPostResponse$8 extends Parsable {
|
|
7218
|
+
interface FindPostResponse$8 extends AdditionalDataHolder, Parsable {
|
|
7219
|
+
/**
|
|
7220
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7221
|
+
*/
|
|
7222
|
+
additionalData?: Record<string, unknown>;
|
|
6838
7223
|
/**
|
|
6839
7224
|
* The data property
|
|
6840
7225
|
*/
|
|
@@ -6908,7 +7293,11 @@ interface PartitionsItemRequestBuilder extends BaseRequestBuilder<PartitionsItem
|
|
|
6908
7293
|
}
|
|
6909
7294
|
|
|
6910
7295
|
type GetSortOrderQueryParameterType$8 = (typeof GetSortOrderQueryParameterTypeObject$8)[keyof typeof GetSortOrderQueryParameterTypeObject$8];
|
|
6911
|
-
interface PartitionsGetResponse extends Parsable {
|
|
7296
|
+
interface PartitionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7297
|
+
/**
|
|
7298
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7299
|
+
*/
|
|
7300
|
+
additionalData?: Record<string, unknown>;
|
|
6912
7301
|
/**
|
|
6913
7302
|
* The data property
|
|
6914
7303
|
*/
|
|
@@ -6969,7 +7358,11 @@ declare const PartitionsGetResponse_objectObject: {
|
|
|
6969
7358
|
readonly List: "list";
|
|
6970
7359
|
};
|
|
6971
7360
|
|
|
6972
|
-
interface FindPostResponse$7 extends Parsable {
|
|
7361
|
+
interface FindPostResponse$7 extends AdditionalDataHolder, Parsable {
|
|
7362
|
+
/**
|
|
7363
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7364
|
+
*/
|
|
7365
|
+
additionalData?: Record<string, unknown>;
|
|
6973
7366
|
/**
|
|
6974
7367
|
* The data property
|
|
6975
7368
|
*/
|
|
@@ -7057,7 +7450,11 @@ interface PublicationsItemRequestBuilder extends BaseRequestBuilder<Publications
|
|
|
7057
7450
|
}
|
|
7058
7451
|
|
|
7059
7452
|
type GetSortOrderQueryParameterType$7 = (typeof GetSortOrderQueryParameterTypeObject$7)[keyof typeof GetSortOrderQueryParameterTypeObject$7];
|
|
7060
|
-
interface PublicationsGetResponse extends Parsable {
|
|
7453
|
+
interface PublicationsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7454
|
+
/**
|
|
7455
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7456
|
+
*/
|
|
7457
|
+
additionalData?: Record<string, unknown>;
|
|
7061
7458
|
/**
|
|
7062
7459
|
* The data property
|
|
7063
7460
|
*/
|
|
@@ -7132,7 +7529,11 @@ declare const PublicationsGetResponse_objectObject: {
|
|
|
7132
7529
|
readonly List: "list";
|
|
7133
7530
|
};
|
|
7134
7531
|
|
|
7135
|
-
interface FindPostResponse$6 extends Parsable {
|
|
7532
|
+
interface FindPostResponse$6 extends AdditionalDataHolder, Parsable {
|
|
7533
|
+
/**
|
|
7534
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7535
|
+
*/
|
|
7536
|
+
additionalData?: Record<string, unknown>;
|
|
7136
7537
|
/**
|
|
7137
7538
|
* The data property
|
|
7138
7539
|
*/
|
|
@@ -7206,7 +7607,11 @@ interface Screen_columnsItemRequestBuilder extends BaseRequestBuilder<Screen_col
|
|
|
7206
7607
|
}
|
|
7207
7608
|
|
|
7208
7609
|
type GetSortOrderQueryParameterType$6 = (typeof GetSortOrderQueryParameterTypeObject$6)[keyof typeof GetSortOrderQueryParameterTypeObject$6];
|
|
7209
|
-
interface Screen_columnsGetResponse extends Parsable {
|
|
7610
|
+
interface Screen_columnsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7611
|
+
/**
|
|
7612
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7613
|
+
*/
|
|
7614
|
+
additionalData?: Record<string, unknown>;
|
|
7210
7615
|
/**
|
|
7211
7616
|
* The data property
|
|
7212
7617
|
*/
|
|
@@ -7267,7 +7672,11 @@ declare const Screen_columnsGetResponse_objectObject: {
|
|
|
7267
7672
|
readonly List: "list";
|
|
7268
7673
|
};
|
|
7269
7674
|
|
|
7270
|
-
interface FindPostResponse$5 extends Parsable {
|
|
7675
|
+
interface FindPostResponse$5 extends AdditionalDataHolder, Parsable {
|
|
7676
|
+
/**
|
|
7677
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7678
|
+
*/
|
|
7679
|
+
additionalData?: Record<string, unknown>;
|
|
7271
7680
|
/**
|
|
7272
7681
|
* The data property
|
|
7273
7682
|
*/
|
|
@@ -7341,7 +7750,11 @@ interface Screen_sectionsItemRequestBuilder extends BaseRequestBuilder<Screen_se
|
|
|
7341
7750
|
}
|
|
7342
7751
|
|
|
7343
7752
|
type GetSortOrderQueryParameterType$5 = (typeof GetSortOrderQueryParameterTypeObject$5)[keyof typeof GetSortOrderQueryParameterTypeObject$5];
|
|
7344
|
-
interface Screen_sectionsGetResponse extends Parsable {
|
|
7753
|
+
interface Screen_sectionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7754
|
+
/**
|
|
7755
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7756
|
+
*/
|
|
7757
|
+
additionalData?: Record<string, unknown>;
|
|
7345
7758
|
/**
|
|
7346
7759
|
* The data property
|
|
7347
7760
|
*/
|
|
@@ -7402,7 +7815,11 @@ declare const Screen_sectionsGetResponse_objectObject: {
|
|
|
7402
7815
|
readonly List: "list";
|
|
7403
7816
|
};
|
|
7404
7817
|
|
|
7405
|
-
interface FindPostResponse$4 extends Parsable {
|
|
7818
|
+
interface FindPostResponse$4 extends AdditionalDataHolder, Parsable {
|
|
7819
|
+
/**
|
|
7820
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7821
|
+
*/
|
|
7822
|
+
additionalData?: Record<string, unknown>;
|
|
7406
7823
|
/**
|
|
7407
7824
|
* The data property
|
|
7408
7825
|
*/
|
|
@@ -7476,7 +7893,11 @@ interface ScreensItemRequestBuilder extends BaseRequestBuilder<ScreensItemReques
|
|
|
7476
7893
|
}
|
|
7477
7894
|
|
|
7478
7895
|
type GetSortOrderQueryParameterType$4 = (typeof GetSortOrderQueryParameterTypeObject$4)[keyof typeof GetSortOrderQueryParameterTypeObject$4];
|
|
7479
|
-
interface ScreensGetResponse extends Parsable {
|
|
7896
|
+
interface ScreensGetResponse extends AdditionalDataHolder, Parsable {
|
|
7897
|
+
/**
|
|
7898
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7899
|
+
*/
|
|
7900
|
+
additionalData?: Record<string, unknown>;
|
|
7480
7901
|
/**
|
|
7481
7902
|
* The data property
|
|
7482
7903
|
*/
|
|
@@ -7537,7 +7958,11 @@ declare const ScreensGetResponse_objectObject: {
|
|
|
7537
7958
|
readonly List: "list";
|
|
7538
7959
|
};
|
|
7539
7960
|
|
|
7540
|
-
interface FindPostResponse$3 extends Parsable {
|
|
7961
|
+
interface FindPostResponse$3 extends AdditionalDataHolder, Parsable {
|
|
7962
|
+
/**
|
|
7963
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7964
|
+
*/
|
|
7965
|
+
additionalData?: Record<string, unknown>;
|
|
7541
7966
|
/**
|
|
7542
7967
|
* The data property
|
|
7543
7968
|
*/
|
|
@@ -7611,7 +8036,11 @@ interface SectionsItemRequestBuilder extends BaseRequestBuilder<SectionsItemRequ
|
|
|
7611
8036
|
}
|
|
7612
8037
|
|
|
7613
8038
|
type GetSortOrderQueryParameterType$3 = (typeof GetSortOrderQueryParameterTypeObject$3)[keyof typeof GetSortOrderQueryParameterTypeObject$3];
|
|
7614
|
-
interface SectionsGetResponse extends Parsable {
|
|
8039
|
+
interface SectionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
8040
|
+
/**
|
|
8041
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8042
|
+
*/
|
|
8043
|
+
additionalData?: Record<string, unknown>;
|
|
7615
8044
|
/**
|
|
7616
8045
|
* The data property
|
|
7617
8046
|
*/
|
|
@@ -7672,7 +8101,11 @@ declare const SectionsGetResponse_objectObject: {
|
|
|
7672
8101
|
readonly List: "list";
|
|
7673
8102
|
};
|
|
7674
8103
|
|
|
7675
|
-
interface FindPostResponse$2 extends Parsable {
|
|
8104
|
+
interface FindPostResponse$2 extends AdditionalDataHolder, Parsable {
|
|
8105
|
+
/**
|
|
8106
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8107
|
+
*/
|
|
8108
|
+
additionalData?: Record<string, unknown>;
|
|
7676
8109
|
/**
|
|
7677
8110
|
* The data property
|
|
7678
8111
|
*/
|
|
@@ -7793,7 +8226,11 @@ interface SuggestionsItemRequestBuilder extends BaseRequestBuilder<SuggestionsIt
|
|
|
7793
8226
|
}
|
|
7794
8227
|
|
|
7795
8228
|
type GetSortOrderQueryParameterType$2 = (typeof GetSortOrderQueryParameterTypeObject$2)[keyof typeof GetSortOrderQueryParameterTypeObject$2];
|
|
7796
|
-
interface SuggestionsGetResponse extends Parsable {
|
|
8229
|
+
interface SuggestionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
8230
|
+
/**
|
|
8231
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8232
|
+
*/
|
|
8233
|
+
additionalData?: Record<string, unknown>;
|
|
7797
8234
|
/**
|
|
7798
8235
|
* The data property
|
|
7799
8236
|
*/
|
|
@@ -7829,27 +8266,12 @@ interface SuggestionsRequestBuilder extends BaseRequestBuilder<SuggestionsReques
|
|
|
7829
8266
|
* @throws {Suggestions400Error} error when the service returns a 400 status code
|
|
7830
8267
|
*/
|
|
7831
8268
|
get(requestConfiguration?: RequestConfiguration<SuggestionsRequestBuilderGetQueryParameters> | undefined): Promise<SuggestionsGetResponse | undefined>;
|
|
7832
|
-
/**
|
|
7833
|
-
* Create a Suggestion
|
|
7834
|
-
* @param body The request body
|
|
7835
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7836
|
-
* @returns {Promise<SuggestionDto>}
|
|
7837
|
-
* @throws {SuggestionDto400Error} error when the service returns a 400 status code
|
|
7838
|
-
*/
|
|
7839
|
-
post(body: SuggestionCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<SuggestionDto | undefined>;
|
|
7840
8269
|
/**
|
|
7841
8270
|
* Get a list of Suggestion
|
|
7842
8271
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7843
8272
|
* @returns {RequestInformation}
|
|
7844
8273
|
*/
|
|
7845
8274
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<SuggestionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
7846
|
-
/**
|
|
7847
|
-
* Create a Suggestion
|
|
7848
|
-
* @param body The request body
|
|
7849
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7850
|
-
* @returns {RequestInformation}
|
|
7851
|
-
*/
|
|
7852
|
-
toPostRequestInformation(body: SuggestionCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7853
8275
|
}
|
|
7854
8276
|
/**
|
|
7855
8277
|
* Get a list of Suggestion
|
|
@@ -7868,7 +8290,11 @@ declare const SuggestionsGetResponse_objectObject: {
|
|
|
7868
8290
|
readonly List: "list";
|
|
7869
8291
|
};
|
|
7870
8292
|
|
|
7871
|
-
interface FindPostResponse$1 extends Parsable {
|
|
8293
|
+
interface FindPostResponse$1 extends AdditionalDataHolder, Parsable {
|
|
8294
|
+
/**
|
|
8295
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8296
|
+
*/
|
|
8297
|
+
additionalData?: Record<string, unknown>;
|
|
7872
8298
|
/**
|
|
7873
8299
|
* The data property
|
|
7874
8300
|
*/
|
|
@@ -7941,7 +8367,11 @@ interface TablesItemRequestBuilder extends BaseRequestBuilder<TablesItemRequestB
|
|
|
7941
8367
|
}
|
|
7942
8368
|
|
|
7943
8369
|
type GetSortOrderQueryParameterType$1 = (typeof GetSortOrderQueryParameterTypeObject$1)[keyof typeof GetSortOrderQueryParameterTypeObject$1];
|
|
7944
|
-
interface TablesGetResponse extends Parsable {
|
|
8370
|
+
interface TablesGetResponse extends AdditionalDataHolder, Parsable {
|
|
8371
|
+
/**
|
|
8372
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8373
|
+
*/
|
|
8374
|
+
additionalData?: Record<string, unknown>;
|
|
7945
8375
|
/**
|
|
7946
8376
|
* The data property
|
|
7947
8377
|
*/
|
|
@@ -8001,7 +8431,11 @@ declare const TablesGetResponse_objectObject: {
|
|
|
8001
8431
|
readonly List: "list";
|
|
8002
8432
|
};
|
|
8003
8433
|
|
|
8004
|
-
interface FindPostResponse extends Parsable {
|
|
8434
|
+
interface FindPostResponse extends AdditionalDataHolder, Parsable {
|
|
8435
|
+
/**
|
|
8436
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8437
|
+
*/
|
|
8438
|
+
additionalData?: Record<string, unknown>;
|
|
8005
8439
|
/**
|
|
8006
8440
|
* The data property
|
|
8007
8441
|
*/
|
|
@@ -8090,7 +8524,11 @@ interface WhoamiRequestBuilder extends BaseRequestBuilder<WhoamiRequestBuilder>
|
|
|
8090
8524
|
}
|
|
8091
8525
|
|
|
8092
8526
|
type GetSortOrderQueryParameterType = (typeof GetSortOrderQueryParameterTypeObject)[keyof typeof GetSortOrderQueryParameterTypeObject];
|
|
8093
|
-
interface UsersGetResponse extends Parsable {
|
|
8527
|
+
interface UsersGetResponse extends AdditionalDataHolder, Parsable {
|
|
8528
|
+
/**
|
|
8529
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8530
|
+
*/
|
|
8531
|
+
additionalData?: Record<string, unknown>;
|
|
8094
8532
|
/**
|
|
8095
8533
|
* The data property
|
|
8096
8534
|
*/
|
|
@@ -8269,4 +8707,4 @@ declare const ApiClientNavigationMetadata: Record<Exclude<keyof ApiClient, KeysT
|
|
|
8269
8707
|
|
|
8270
8708
|
declare function setup(key: string, url: string): ApiClient;
|
|
8271
8709
|
|
|
8272
|
-
export { type AccountDto, type AccountDto_object, AccountDto_objectObject, type ApiClient, ApiClientNavigationMetadata, ApiClientUriTemplate, type ApplyAllSuggestionDto, type ApplySuggestionDto, type AuditLogDto, type AuditLogDto_details, type AuditLogDto_object, AuditLogDto_objectObject, type CommentThreadCreateDto, type CommentThreadCreateDto_object, CommentThreadCreateDto_objectObject, type CommentThreadCreateDto_targetType, CommentThreadCreateDto_targetTypeObject, type CommentThreadDto, type CommentThreadDto_object, CommentThreadDto_objectObject, type CommentThreadDto_targetType, CommentThreadDto_targetTypeObject, type CommentThreadDto_type, CommentThreadDto_typeObject, type CommentThreadReplyCreateDto, type CommentThreadReplyDTO, type CommentThreadSubscriberDto, type CommentThreadSubscriberDto_object, CommentThreadSubscriberDto_objectObject, type CommentThreadUpdateDto, type CommentThreadUpdateDto_object, CommentThreadUpdateDto_objectObject, type CreateJobDto, type CreateJobDto_output, type CreateJobDto_status, CreateJobDto_statusObject, type CreateJobExecutionDto, type CreateJobExecutionDto_input, type CreateOrUpdateItemFieldFileDto, type CreateOrUpdateItemFieldFileDto_type, CreateOrUpdateItemFieldFileDto_typeObject, type CreateOrUpdateItemFieldFileValueDTO, type CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto, type CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto_type, CreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto_typeObject, type CreateOrUpdateItemFieldNumberDto, type CreateOrUpdateItemFieldNumberDto_type, CreateOrUpdateItemFieldNumberDto_typeObject, type CreateOrUpdateItemFieldStringArrayDto, type CreateOrUpdateItemFieldStringArrayDto_type, CreateOrUpdateItemFieldStringArrayDto_typeObject, type CreateOrUpdateItemFieldStringDto, type CreateOrUpdateItemFieldStringDto_type, CreateOrUpdateItemFieldStringDto_typeObject, type CreatePublicationDto, type CreateTaskDto, type CreateTaskDto_retryLogic, CreateTaskDto_retryLogicObject, type CreateTaskDto_timeoutPolicy, CreateTaskDto_timeoutPolicyObject, type CreateVariableDto, type CreateVariableDto_status, CreateVariableDto_statusObject, type DisplayInfoDto, type FieldDto, type FieldDto_metadata, type FieldDto_object, FieldDto_objectObject, type FieldDto_type, FieldDto_typeObject, type FieldSuffixDto, type FieldSuffixDto_status, FieldSuffixDto_statusObject, type FieldUpdateDto, type FieldUpdateDto_metadata, type FieldUpdateDto_object, FieldUpdateDto_objectObject, type FieldValueDto, type FieldValueDto_color, FieldValueDto_colorObject, type FieldValueDto_metadata, type FieldValueDto_object, FieldValueDto_objectObject, type FieldValueDto_status, FieldValueDto_statusObject, type FileDto, type FileDto_object, FileDto_objectObject, type FindItemCustomField, type FindItemCustomField_target, FindItemCustomField_targetObject, type FindItemHighOrderQueryDTO, type FindItemHighOrderQueryDTO_queries, type FindItemHighOrderQueryDTO_type, FindItemHighOrderQueryDTO_typeObject, type FindItemLowOrderQueryDTO, type FindItemLowOrderQueryDTO_type, FindItemLowOrderQueryDTO_typeObject, type HighOrderQueryDTO, type HighOrderQueryDTO_queries, type HighOrderQueryDTO_type, HighOrderQueryDTO_typeObject, type ItemCreateOrUpdateDto, type ItemCreateOrUpdateDto_fields, type ItemCreateOrUpdateDto_object, ItemCreateOrUpdateDto_objectObject, type ItemDto, type ItemDto_fields, type ItemDto_object, ItemDto_objectObject, type ItemFieldCfDto, type ItemFieldCfDto_type, ItemFieldCfDto_typeObject, type ItemFieldCfValueDTO, type ItemFieldFileDTO, type ItemFieldFileDTO_type, ItemFieldFileDTO_typeObject, type ItemFieldFileData, type ItemFieldFileValueDTO, type ItemFieldMultipleSelectWithCommentAndQuantityDTO, type ItemFieldMultipleSelectWithCommentAndQuantityDTO_type, ItemFieldMultipleSelectWithCommentAndQuantityDTO_typeObject, type ItemFieldMultipleSelectWithCommentAndQuantityData, type ItemFieldMultipleSelectWithCommentAndQuantityValueDTO, type ItemFieldNumberDTO, type ItemFieldNumberDTO_type, ItemFieldNumberDTO_typeObject, type ItemFieldSimpleNumberValueDTO, type ItemFieldSimpleStringArrayValueDTO, type ItemFieldSimpleStringValueDTO, type ItemFieldStringArrayDTO, type ItemFieldStringArrayDTO_type, ItemFieldStringArrayDTO_typeObject, type ItemFieldStringDTO, type ItemFieldStringDTO_type, ItemFieldStringDTO_typeObject, type ItemFindDTO, type ItemFindDTO_order, ItemFindDTO_orderObject, type ItemLinkCreateDto, type ItemLinkCreateDto_object, ItemLinkCreateDto_objectObject, type ItemLinkDto, type ItemLinkDto_object, ItemLinkDto_objectObject, type ItemMetadataCreateOrUpdateDTO, type ItemMetadataDTO, type JobDto, type JobDto_object, JobDto_objectObject, type JobDto_output, type JobDto_status, JobDto_statusObject, type JobExecutionDto, type JobExecutionDto_input, type JobExecutionDto_object, JobExecutionDto_objectObject, type JobExecutionDto_output, type JobExecutionDto_status, JobExecutionDto_statusObject, type JobExecutionInfoDto, type JobLocalDto, type JobPeriodicityDto, type JobTaskDto, type JobTaskDto_input, type JobVisibilityDto, type JobVisibilityDto_mode, JobVisibilityDto_modeObject, type LevelDto, type LocalizedStringDto, type LowOrderQueryDTO, type LowOrderQueryDTO_type, LowOrderQueryDTO_typeObject, type MatrixFieldDto, type MatrixFieldDto_object, MatrixFieldDto_objectObject, type MatrixFieldDto_status, MatrixFieldDto_statusObject, type PartitionDto, type PatchPublicationDto, type PatchPublicationDto_status, PatchPublicationDto_statusObject, type PatchTaskExecutionDto, type PatchTaskExecutionDto_status, PatchTaskExecutionDto_statusObject, type PublicationDto, type PublicationDto_fields, type PublicationDto_object, PublicationDto_objectObject, type PublicationDto_status, PublicationDto_statusObject, type ScreenColumnDto, type ScreenColumnDto_object, ScreenColumnDto_objectObject, type ScreenColumnDto_width, ScreenColumnDto_widthObject, type ScreenDto, type ScreenDto_lineHeight, ScreenDto_lineHeightObject, type ScreenDto_status, ScreenDto_statusObject, type ScreenSectionDto, type ScreenSectionDto_object, ScreenSectionDto_objectObject, type SectionDto, type SectionDto_metadata, type SuggestionCreateDto, type SuggestionCreateDto_fields, type SuggestionCreateDto_object, SuggestionCreateDto_objectObject, type SuggestionDeletedFieldDTO, type SuggestionDeletedFieldDTO_type, SuggestionDeletedFieldDTO_typeObject, type SuggestionDto, type SuggestionDto_fields, type SuggestionDto_object, SuggestionDto_objectObject, type TableDto, type TaskDto, type TaskDtoKey, type TaskDto_object, TaskDto_objectObject, type TaskDto_retryLogic, TaskDto_retryLogicObject, type TaskDto_timeoutPolicy, TaskDto_timeoutPolicyObject, type TaskExecutionDto, type TaskExecutionDto_input, type TaskExecutionDto_object, TaskExecutionDto_objectObject, type TaskExecutionDto_output, type TaskExecutionDto_status, TaskExecutionDto_statusObject, type UpdateJobDto, type UpdateJobDto_output, type UpdateJobDto_status, UpdateJobDto_statusObject, type UpdateTaskDto, type UpdateTaskDto_retryLogic, UpdateTaskDto_retryLogicObject, type UpdateTaskDto_timeoutPolicy, UpdateTaskDto_timeoutPolicyObject, type UpdateVariableDto, type UpdateVariableDto_status, UpdateVariableDto_statusObject, type UserDto, type UserDto_object, UserDto_objectObject, type UserDto_role, UserDto_roleObject, type UserDto_status, UserDto_statusObject, type VariableDto, type VariableDto_object, VariableDto_objectObject, type VariableDto_status, VariableDto_statusObject, createAccountDtoFromDiscriminatorValue, createApiClient, createApplyAllSuggestionDtoFromDiscriminatorValue, createApplySuggestionDtoFromDiscriminatorValue, createAuditLogDtoFromDiscriminatorValue, createAuditLogDto_detailsFromDiscriminatorValue, createCommentThreadCreateDtoFromDiscriminatorValue, createCommentThreadDtoFromDiscriminatorValue, createCommentThreadReplyCreateDtoFromDiscriminatorValue, createCommentThreadReplyDTOFromDiscriminatorValue, createCommentThreadSubscriberDtoFromDiscriminatorValue, createCommentThreadUpdateDtoFromDiscriminatorValue, createCreateJobDtoFromDiscriminatorValue, createCreateJobDto_outputFromDiscriminatorValue, createCreateJobExecutionDtoFromDiscriminatorValue, createCreateJobExecutionDto_inputFromDiscriminatorValue, createCreateOrUpdateItemFieldFileDtoFromDiscriminatorValue, createCreateOrUpdateItemFieldFileValueDTOFromDiscriminatorValue, createCreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDtoFromDiscriminatorValue, createCreateOrUpdateItemFieldNumberDtoFromDiscriminatorValue, createCreateOrUpdateItemFieldStringArrayDtoFromDiscriminatorValue, createCreateOrUpdateItemFieldStringDtoFromDiscriminatorValue, createCreatePublicationDtoFromDiscriminatorValue, createCreateTaskDtoFromDiscriminatorValue, createCreateVariableDtoFromDiscriminatorValue, createDisplayInfoDtoFromDiscriminatorValue, createFieldDtoFromDiscriminatorValue, createFieldDto_metadataFromDiscriminatorValue, createFieldSuffixDtoFromDiscriminatorValue, createFieldUpdateDtoFromDiscriminatorValue, createFieldUpdateDto_metadataFromDiscriminatorValue, createFieldValueDtoFromDiscriminatorValue, createFieldValueDto_metadataFromDiscriminatorValue, createFileDtoFromDiscriminatorValue, createFindItemCustomFieldFromDiscriminatorValue, createFindItemHighOrderQueryDTOFromDiscriminatorValue, createFindItemHighOrderQueryDTO_queriesFromDiscriminatorValue, createFindItemLowOrderQueryDTOFromDiscriminatorValue, createHighOrderQueryDTOFromDiscriminatorValue, createHighOrderQueryDTO_queriesFromDiscriminatorValue, createItemCreateOrUpdateDtoFromDiscriminatorValue, createItemCreateOrUpdateDto_fieldsFromDiscriminatorValue, createItemDtoFromDiscriminatorValue, createItemDto_fieldsFromDiscriminatorValue, createItemFieldCfDtoFromDiscriminatorValue, createItemFieldCfValueDTOFromDiscriminatorValue, createItemFieldFileDTOFromDiscriminatorValue, createItemFieldFileDataFromDiscriminatorValue, createItemFieldFileValueDTOFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityDTOFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityDataFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityValueDTOFromDiscriminatorValue, createItemFieldNumberDTOFromDiscriminatorValue, createItemFieldSimpleNumberValueDTOFromDiscriminatorValue, createItemFieldSimpleStringArrayValueDTOFromDiscriminatorValue, createItemFieldSimpleStringValueDTOFromDiscriminatorValue, createItemFieldStringArrayDTOFromDiscriminatorValue, createItemFieldStringDTOFromDiscriminatorValue, createItemFindDTOFromDiscriminatorValue, createItemLinkCreateDtoFromDiscriminatorValue, createItemLinkDtoFromDiscriminatorValue, createItemMetadataCreateOrUpdateDTOFromDiscriminatorValue, createItemMetadataDTOFromDiscriminatorValue, createJobDtoFromDiscriminatorValue, createJobDto_outputFromDiscriminatorValue, createJobExecutionDtoFromDiscriminatorValue, createJobExecutionDto_inputFromDiscriminatorValue, createJobExecutionDto_outputFromDiscriminatorValue, createJobExecutionInfoDtoFromDiscriminatorValue, createJobLocalDtoFromDiscriminatorValue, createJobPeriodicityDtoFromDiscriminatorValue, createJobTaskDtoFromDiscriminatorValue, createJobTaskDto_inputFromDiscriminatorValue, createJobVisibilityDtoFromDiscriminatorValue, createLevelDtoFromDiscriminatorValue, createLocalizedStringDtoFromDiscriminatorValue, createLowOrderQueryDTOFromDiscriminatorValue, createMatrixFieldDtoFromDiscriminatorValue, createPartitionDtoFromDiscriminatorValue, createPatchPublicationDtoFromDiscriminatorValue, createPatchTaskExecutionDtoFromDiscriminatorValue, createPublicationDtoFromDiscriminatorValue, createPublicationDto_fieldsFromDiscriminatorValue, createScreenColumnDtoFromDiscriminatorValue, createScreenDtoFromDiscriminatorValue, createScreenSectionDtoFromDiscriminatorValue, createSectionDtoFromDiscriminatorValue, createSectionDto_metadataFromDiscriminatorValue, createSuggestionCreateDtoFromDiscriminatorValue, createSuggestionCreateDto_fieldsFromDiscriminatorValue, createSuggestionDeletedFieldDTOFromDiscriminatorValue, createSuggestionDtoFromDiscriminatorValue, createSuggestionDto_fieldsFromDiscriminatorValue, createTableDtoFromDiscriminatorValue, createTaskDtoFromDiscriminatorValue, createTaskDtoKeyFromDiscriminatorValue, createTaskExecutionDtoFromDiscriminatorValue, createTaskExecutionDto_inputFromDiscriminatorValue, createTaskExecutionDto_outputFromDiscriminatorValue, createUpdateJobDtoFromDiscriminatorValue, createUpdateJobDto_outputFromDiscriminatorValue, createUpdateTaskDtoFromDiscriminatorValue, createUpdateVariableDtoFromDiscriminatorValue, createUserDtoFromDiscriminatorValue, createVariableDtoFromDiscriminatorValue, deserializeIntoAccountDto, deserializeIntoApplyAllSuggestionDto, deserializeIntoApplySuggestionDto, deserializeIntoAuditLogDto, deserializeIntoAuditLogDto_details, deserializeIntoCommentThreadCreateDto, deserializeIntoCommentThreadDto, deserializeIntoCommentThreadReplyCreateDto, deserializeIntoCommentThreadReplyDTO, deserializeIntoCommentThreadSubscriberDto, deserializeIntoCommentThreadUpdateDto, deserializeIntoCreateJobDto, deserializeIntoCreateJobDto_output, deserializeIntoCreateJobExecutionDto, deserializeIntoCreateJobExecutionDto_input, deserializeIntoCreateOrUpdateItemFieldFileDto, deserializeIntoCreateOrUpdateItemFieldFileValueDTO, deserializeIntoCreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto, deserializeIntoCreateOrUpdateItemFieldNumberDto, deserializeIntoCreateOrUpdateItemFieldStringArrayDto, deserializeIntoCreateOrUpdateItemFieldStringDto, deserializeIntoCreatePublicationDto, deserializeIntoCreateTaskDto, deserializeIntoCreateVariableDto, deserializeIntoDisplayInfoDto, deserializeIntoFieldDto, deserializeIntoFieldDto_metadata, deserializeIntoFieldSuffixDto, deserializeIntoFieldUpdateDto, deserializeIntoFieldUpdateDto_metadata, deserializeIntoFieldValueDto, deserializeIntoFieldValueDto_metadata, deserializeIntoFileDto, deserializeIntoFindItemCustomField, deserializeIntoFindItemHighOrderQueryDTO, deserializeIntoFindItemHighOrderQueryDTO_queries, deserializeIntoFindItemLowOrderQueryDTO, deserializeIntoHighOrderQueryDTO, deserializeIntoHighOrderQueryDTO_queries, deserializeIntoItemCreateOrUpdateDto, deserializeIntoItemCreateOrUpdateDto_fields, deserializeIntoItemDto, deserializeIntoItemDto_fields, deserializeIntoItemFieldCfDto, deserializeIntoItemFieldCfValueDTO, deserializeIntoItemFieldFileDTO, deserializeIntoItemFieldFileData, deserializeIntoItemFieldFileValueDTO, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityDTO, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityData, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityValueDTO, deserializeIntoItemFieldNumberDTO, deserializeIntoItemFieldSimpleNumberValueDTO, deserializeIntoItemFieldSimpleStringArrayValueDTO, deserializeIntoItemFieldSimpleStringValueDTO, deserializeIntoItemFieldStringArrayDTO, deserializeIntoItemFieldStringDTO, deserializeIntoItemFindDTO, deserializeIntoItemLinkCreateDto, deserializeIntoItemLinkDto, deserializeIntoItemMetadataCreateOrUpdateDTO, deserializeIntoItemMetadataDTO, deserializeIntoJobDto, deserializeIntoJobDto_output, deserializeIntoJobExecutionDto, deserializeIntoJobExecutionDto_input, deserializeIntoJobExecutionDto_output, deserializeIntoJobExecutionInfoDto, deserializeIntoJobLocalDto, deserializeIntoJobPeriodicityDto, deserializeIntoJobTaskDto, deserializeIntoJobTaskDto_input, deserializeIntoJobVisibilityDto, deserializeIntoLevelDto, deserializeIntoLocalizedStringDto, deserializeIntoLowOrderQueryDTO, deserializeIntoMatrixFieldDto, deserializeIntoPartitionDto, deserializeIntoPatchPublicationDto, deserializeIntoPatchTaskExecutionDto, deserializeIntoPublicationDto, deserializeIntoPublicationDto_fields, deserializeIntoScreenColumnDto, deserializeIntoScreenDto, deserializeIntoScreenSectionDto, deserializeIntoSectionDto, deserializeIntoSectionDto_metadata, deserializeIntoSuggestionCreateDto, deserializeIntoSuggestionCreateDto_fields, deserializeIntoSuggestionDeletedFieldDTO, deserializeIntoSuggestionDto, deserializeIntoSuggestionDto_fields, deserializeIntoTableDto, deserializeIntoTaskDto, deserializeIntoTaskDtoKey, deserializeIntoTaskExecutionDto, deserializeIntoTaskExecutionDto_input, deserializeIntoTaskExecutionDto_output, deserializeIntoUpdateJobDto, deserializeIntoUpdateJobDto_output, deserializeIntoUpdateTaskDto, deserializeIntoUpdateVariableDto, deserializeIntoUserDto, deserializeIntoVariableDto, serializeAccountDto, serializeApplyAllSuggestionDto, serializeApplySuggestionDto, serializeAuditLogDto, serializeAuditLogDto_details, serializeCommentThreadCreateDto, serializeCommentThreadDto, serializeCommentThreadReplyCreateDto, serializeCommentThreadReplyDTO, serializeCommentThreadSubscriberDto, serializeCommentThreadUpdateDto, serializeCreateJobDto, serializeCreateJobDto_output, serializeCreateJobExecutionDto, serializeCreateJobExecutionDto_input, serializeCreateOrUpdateItemFieldFileDto, serializeCreateOrUpdateItemFieldFileValueDTO, serializeCreateOrUpdateItemFieldMultipleSelectWithCommentAndQuantityDto, serializeCreateOrUpdateItemFieldNumberDto, serializeCreateOrUpdateItemFieldStringArrayDto, serializeCreateOrUpdateItemFieldStringDto, serializeCreatePublicationDto, serializeCreateTaskDto, serializeCreateVariableDto, serializeDisplayInfoDto, serializeFieldDto, serializeFieldDto_metadata, serializeFieldSuffixDto, serializeFieldUpdateDto, serializeFieldUpdateDto_metadata, serializeFieldValueDto, serializeFieldValueDto_metadata, serializeFileDto, serializeFindItemCustomField, serializeFindItemHighOrderQueryDTO, serializeFindItemHighOrderQueryDTO_queries, serializeFindItemLowOrderQueryDTO, serializeHighOrderQueryDTO, serializeHighOrderQueryDTO_queries, serializeItemCreateOrUpdateDto, serializeItemCreateOrUpdateDto_fields, serializeItemDto, serializeItemDto_fields, serializeItemFieldCfDto, serializeItemFieldCfValueDTO, serializeItemFieldFileDTO, serializeItemFieldFileData, serializeItemFieldFileValueDTO, serializeItemFieldMultipleSelectWithCommentAndQuantityDTO, serializeItemFieldMultipleSelectWithCommentAndQuantityData, serializeItemFieldMultipleSelectWithCommentAndQuantityValueDTO, serializeItemFieldNumberDTO, serializeItemFieldSimpleNumberValueDTO, serializeItemFieldSimpleStringArrayValueDTO, serializeItemFieldSimpleStringValueDTO, serializeItemFieldStringArrayDTO, serializeItemFieldStringDTO, serializeItemFindDTO, serializeItemLinkCreateDto, serializeItemLinkDto, serializeItemMetadataCreateOrUpdateDTO, serializeItemMetadataDTO, serializeJobDto, serializeJobDto_output, serializeJobExecutionDto, serializeJobExecutionDto_input, serializeJobExecutionDto_output, serializeJobExecutionInfoDto, serializeJobLocalDto, serializeJobPeriodicityDto, serializeJobTaskDto, serializeJobTaskDto_input, serializeJobVisibilityDto, serializeLevelDto, serializeLocalizedStringDto, serializeLowOrderQueryDTO, serializeMatrixFieldDto, serializePartitionDto, serializePatchPublicationDto, serializePatchTaskExecutionDto, serializePublicationDto, serializePublicationDto_fields, serializeScreenColumnDto, serializeScreenDto, serializeScreenSectionDto, serializeSectionDto, serializeSectionDto_metadata, serializeSuggestionCreateDto, serializeSuggestionCreateDto_fields, serializeSuggestionDeletedFieldDTO, serializeSuggestionDto, serializeSuggestionDto_fields, serializeTableDto, serializeTaskDto, serializeTaskDtoKey, serializeTaskExecutionDto, serializeTaskExecutionDto_input, serializeTaskExecutionDto_output, serializeUpdateJobDto, serializeUpdateJobDto_output, serializeUpdateTaskDto, serializeUpdateVariableDto, serializeUserDto, serializeVariableDto, setup };
|
|
8710
|
+
export { type AccountDto, type AccountDto_object, AccountDto_objectObject, type ApiClient, ApiClientNavigationMetadata, ApiClientUriTemplate, type ApplyAllSuggestionDto, type ApplySuggestionDto, type AuditLogDto, type AuditLogDto_details, type AuditLogDto_object, AuditLogDto_objectObject, type CommentThreadCommentCreateDto, type CommentThreadCommentDTO, type CommentThreadCommentDTO_type, CommentThreadCommentDTO_typeObject, type CommentThreadCreateDto, type CommentThreadCreateDto_object, CommentThreadCreateDto_objectObject, type CommentThreadCreateDto_targetType, CommentThreadCreateDto_targetTypeObject, type CommentThreadDto, type CommentThreadDto_object, CommentThreadDto_objectObject, type CommentThreadDto_targetType, CommentThreadDto_targetTypeObject, type CommentThreadDto_type, CommentThreadDto_typeObject, type CommentThreadSubscriberDto, type CommentThreadSubscriberDto_object, CommentThreadSubscriberDto_objectObject, type CommentThreadUpdateDto, type CommentThreadUpdateDto_object, CommentThreadUpdateDto_objectObject, type CreateJobDto, type CreateJobDto_output, type CreateJobDto_status, CreateJobDto_statusObject, type CreateJobExecutionDto, type CreateJobExecutionDto_input, type CreateProjectDto, type CreatePublicationDto, type CreateTaskDto, type CreateTaskDto_retryLogic, CreateTaskDto_retryLogicObject, type CreateTaskDto_timeoutPolicy, CreateTaskDto_timeoutPolicyObject, type CreateVariableDto, type CreateVariableDto_status, CreateVariableDto_statusObject, type DisplayInfoDto, type FieldDto, type FieldDto_metadata, type FieldDto_object, FieldDto_objectObject, type FieldDto_type, FieldDto_typeObject, type FieldSuffixDto, type FieldSuffixDto_status, FieldSuffixDto_statusObject, type FieldUpdateDto, type FieldUpdateDto_metadata, type FieldUpdateDto_object, FieldUpdateDto_objectObject, type FieldValueDto, type FieldValueDto_color, FieldValueDto_colorObject, type FieldValueDto_metadata, type FieldValueDto_object, FieldValueDto_objectObject, type FieldValueDto_status, FieldValueDto_statusObject, type FileDto, type FileDto_object, FileDto_objectObject, type FindItemCustomField, type FindItemCustomField_target, FindItemCustomField_targetObject, type FindItemHighOrderQueryDTO, type FindItemHighOrderQueryDTO_queries, type FindItemHighOrderQueryDTO_type, FindItemHighOrderQueryDTO_typeObject, type FindItemLowOrderQueryDTO, type FindItemLowOrderQueryDTO_type, FindItemLowOrderQueryDTO_typeObject, type HighOrderQueryDTO, type HighOrderQueryDTO_queries, type HighOrderQueryDTO_type, HighOrderQueryDTO_typeObject, type ItemDto, type ItemDto_fields, type ItemDto_object, ItemDto_objectObject, type ItemFieldCfDto, type ItemFieldCfDto_type, ItemFieldCfDto_typeObject, type ItemFieldCfValueDTO, type ItemFieldFileDTO, type ItemFieldFileDTO_type, ItemFieldFileDTO_typeObject, type ItemFieldFileData, type ItemFieldFileValueDTO, type ItemFieldMultipleSelectWithCommentAndQuantityDTO, type ItemFieldMultipleSelectWithCommentAndQuantityDTO_type, ItemFieldMultipleSelectWithCommentAndQuantityDTO_typeObject, type ItemFieldMultipleSelectWithCommentAndQuantityData, type ItemFieldMultipleSelectWithCommentAndQuantityValueDTO, type ItemFieldNumberDTO, type ItemFieldNumberDTO_type, ItemFieldNumberDTO_typeObject, type ItemFieldSimpleNumberValueDTO, type ItemFieldSimpleStringArrayValueDTO, type ItemFieldSimpleStringValueDTO, type ItemFieldStringArrayDTO, type ItemFieldStringArrayDTO_type, ItemFieldStringArrayDTO_typeObject, type ItemFieldStringDTO, type ItemFieldStringDTO_type, ItemFieldStringDTO_typeObject, type ItemFindDTO, type ItemFindDTO_order, ItemFindDTO_orderObject, type ItemLinkCreateDto, type ItemLinkCreateDto_object, ItemLinkCreateDto_objectObject, type ItemLinkDto, type ItemLinkDto_object, ItemLinkDto_objectObject, type ItemMetadataDTO, type JobDto, type JobDto_object, JobDto_objectObject, type JobDto_output, type JobDto_status, JobDto_statusObject, type JobExecutionDto, type JobExecutionDto_input, type JobExecutionDto_object, JobExecutionDto_objectObject, type JobExecutionDto_output, type JobExecutionDto_status, JobExecutionDto_statusObject, type JobExecutionInfoDto, type JobLocalDto, type JobPeriodicityDto, type JobTaskDto, type JobTaskDto_input, type JobVisibilityDto, type JobVisibilityDto_mode, JobVisibilityDto_modeObject, type LevelDto, type LocalizedStringDto, type LowOrderQueryDTO, type LowOrderQueryDTO_type, LowOrderQueryDTO_typeObject, type MatrixFieldDto, type MatrixFieldDto_object, MatrixFieldDto_objectObject, type MatrixFieldDto_status, MatrixFieldDto_statusObject, type PartitionDto, type PatchPublicationDto, type PatchPublicationDto_status, PatchPublicationDto_statusObject, type PatchTaskExecutionDto, type PatchTaskExecutionDto_status, PatchTaskExecutionDto_statusObject, type ProjectDto, type ProjectDto_object, ProjectDto_objectObject, type PublicationDto, type PublicationDto_fields, type PublicationDto_object, PublicationDto_objectObject, type PublicationDto_status, PublicationDto_statusObject, type ScreenColumnDto, type ScreenColumnDto_object, ScreenColumnDto_objectObject, type ScreenColumnDto_width, ScreenColumnDto_widthObject, type ScreenDto, type ScreenDto_lineHeight, ScreenDto_lineHeightObject, type ScreenDto_status, ScreenDto_statusObject, type ScreenSectionDto, type ScreenSectionDto_object, ScreenSectionDto_objectObject, type SectionDto, type SectionDto_metadata, type SuggestionDeletedFieldDTO, type SuggestionDeletedFieldDTO_type, SuggestionDeletedFieldDTO_typeObject, type SuggestionDto, type SuggestionDto_fields, type SuggestionDto_object, SuggestionDto_objectObject, type TableDto, type TaskDto, type TaskDtoKey, type TaskDto_object, TaskDto_objectObject, type TaskDto_retryLogic, TaskDto_retryLogicObject, type TaskDto_timeoutPolicy, TaskDto_timeoutPolicyObject, type TaskExecutionDto, type TaskExecutionDto_input, type TaskExecutionDto_object, TaskExecutionDto_objectObject, type TaskExecutionDto_output, type TaskExecutionDto_status, TaskExecutionDto_statusObject, type UpdateJobDto, type UpdateJobDto_output, type UpdateJobDto_status, UpdateJobDto_statusObject, type UpdateTaskDto, type UpdateTaskDto_retryLogic, UpdateTaskDto_retryLogicObject, type UpdateTaskDto_timeoutPolicy, UpdateTaskDto_timeoutPolicyObject, type UpdateVariableDto, type UpdateVariableDto_status, UpdateVariableDto_statusObject, type UserDto, type UserDto_object, UserDto_objectObject, type UserDto_role, UserDto_roleObject, type UserDto_status, UserDto_statusObject, type VariableDto, type VariableDto_object, VariableDto_objectObject, type VariableDto_status, VariableDto_statusObject, createAccountDtoFromDiscriminatorValue, createApiClient, createApplyAllSuggestionDtoFromDiscriminatorValue, createApplySuggestionDtoFromDiscriminatorValue, createAuditLogDtoFromDiscriminatorValue, createAuditLogDto_detailsFromDiscriminatorValue, createCommentThreadCommentCreateDtoFromDiscriminatorValue, createCommentThreadCommentDTOFromDiscriminatorValue, createCommentThreadCreateDtoFromDiscriminatorValue, createCommentThreadDtoFromDiscriminatorValue, createCommentThreadSubscriberDtoFromDiscriminatorValue, createCommentThreadUpdateDtoFromDiscriminatorValue, createCreateJobDtoFromDiscriminatorValue, createCreateJobDto_outputFromDiscriminatorValue, createCreateJobExecutionDtoFromDiscriminatorValue, createCreateJobExecutionDto_inputFromDiscriminatorValue, createCreateProjectDtoFromDiscriminatorValue, createCreatePublicationDtoFromDiscriminatorValue, createCreateTaskDtoFromDiscriminatorValue, createCreateVariableDtoFromDiscriminatorValue, createDisplayInfoDtoFromDiscriminatorValue, createFieldDtoFromDiscriminatorValue, createFieldDto_metadataFromDiscriminatorValue, createFieldSuffixDtoFromDiscriminatorValue, createFieldUpdateDtoFromDiscriminatorValue, createFieldUpdateDto_metadataFromDiscriminatorValue, createFieldValueDtoFromDiscriminatorValue, createFieldValueDto_metadataFromDiscriminatorValue, createFileDtoFromDiscriminatorValue, createFindItemCustomFieldFromDiscriminatorValue, createFindItemHighOrderQueryDTOFromDiscriminatorValue, createFindItemHighOrderQueryDTO_queriesFromDiscriminatorValue, createFindItemLowOrderQueryDTOFromDiscriminatorValue, createHighOrderQueryDTOFromDiscriminatorValue, createHighOrderQueryDTO_queriesFromDiscriminatorValue, createItemDtoFromDiscriminatorValue, createItemDto_fieldsFromDiscriminatorValue, createItemFieldCfDtoFromDiscriminatorValue, createItemFieldCfValueDTOFromDiscriminatorValue, createItemFieldFileDTOFromDiscriminatorValue, createItemFieldFileDataFromDiscriminatorValue, createItemFieldFileValueDTOFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityDTOFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityDataFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityValueDTOFromDiscriminatorValue, createItemFieldNumberDTOFromDiscriminatorValue, createItemFieldSimpleNumberValueDTOFromDiscriminatorValue, createItemFieldSimpleStringArrayValueDTOFromDiscriminatorValue, createItemFieldSimpleStringValueDTOFromDiscriminatorValue, createItemFieldStringArrayDTOFromDiscriminatorValue, createItemFieldStringDTOFromDiscriminatorValue, createItemFindDTOFromDiscriminatorValue, createItemLinkCreateDtoFromDiscriminatorValue, createItemLinkDtoFromDiscriminatorValue, createItemMetadataDTOFromDiscriminatorValue, createJobDtoFromDiscriminatorValue, createJobDto_outputFromDiscriminatorValue, createJobExecutionDtoFromDiscriminatorValue, createJobExecutionDto_inputFromDiscriminatorValue, createJobExecutionDto_outputFromDiscriminatorValue, createJobExecutionInfoDtoFromDiscriminatorValue, createJobLocalDtoFromDiscriminatorValue, createJobPeriodicityDtoFromDiscriminatorValue, createJobTaskDtoFromDiscriminatorValue, createJobTaskDto_inputFromDiscriminatorValue, createJobVisibilityDtoFromDiscriminatorValue, createLevelDtoFromDiscriminatorValue, createLocalizedStringDtoFromDiscriminatorValue, createLowOrderQueryDTOFromDiscriminatorValue, createMatrixFieldDtoFromDiscriminatorValue, createPartitionDtoFromDiscriminatorValue, createPatchPublicationDtoFromDiscriminatorValue, createPatchTaskExecutionDtoFromDiscriminatorValue, createProjectDtoFromDiscriminatorValue, createPublicationDtoFromDiscriminatorValue, createPublicationDto_fieldsFromDiscriminatorValue, createScreenColumnDtoFromDiscriminatorValue, createScreenDtoFromDiscriminatorValue, createScreenSectionDtoFromDiscriminatorValue, createSectionDtoFromDiscriminatorValue, createSectionDto_metadataFromDiscriminatorValue, createSuggestionDeletedFieldDTOFromDiscriminatorValue, createSuggestionDtoFromDiscriminatorValue, createSuggestionDto_fieldsFromDiscriminatorValue, createTableDtoFromDiscriminatorValue, createTaskDtoFromDiscriminatorValue, createTaskDtoKeyFromDiscriminatorValue, createTaskExecutionDtoFromDiscriminatorValue, createTaskExecutionDto_inputFromDiscriminatorValue, createTaskExecutionDto_outputFromDiscriminatorValue, createUpdateJobDtoFromDiscriminatorValue, createUpdateJobDto_outputFromDiscriminatorValue, createUpdateTaskDtoFromDiscriminatorValue, createUpdateVariableDtoFromDiscriminatorValue, createUserDtoFromDiscriminatorValue, createVariableDtoFromDiscriminatorValue, deserializeIntoAccountDto, deserializeIntoApplyAllSuggestionDto, deserializeIntoApplySuggestionDto, deserializeIntoAuditLogDto, deserializeIntoAuditLogDto_details, deserializeIntoCommentThreadCommentCreateDto, deserializeIntoCommentThreadCommentDTO, deserializeIntoCommentThreadCreateDto, deserializeIntoCommentThreadDto, deserializeIntoCommentThreadSubscriberDto, deserializeIntoCommentThreadUpdateDto, deserializeIntoCreateJobDto, deserializeIntoCreateJobDto_output, deserializeIntoCreateJobExecutionDto, deserializeIntoCreateJobExecutionDto_input, deserializeIntoCreateProjectDto, deserializeIntoCreatePublicationDto, deserializeIntoCreateTaskDto, deserializeIntoCreateVariableDto, deserializeIntoDisplayInfoDto, deserializeIntoFieldDto, deserializeIntoFieldDto_metadata, deserializeIntoFieldSuffixDto, deserializeIntoFieldUpdateDto, deserializeIntoFieldUpdateDto_metadata, deserializeIntoFieldValueDto, deserializeIntoFieldValueDto_metadata, deserializeIntoFileDto, deserializeIntoFindItemCustomField, deserializeIntoFindItemHighOrderQueryDTO, deserializeIntoFindItemHighOrderQueryDTO_queries, deserializeIntoFindItemLowOrderQueryDTO, deserializeIntoHighOrderQueryDTO, deserializeIntoHighOrderQueryDTO_queries, deserializeIntoItemDto, deserializeIntoItemDto_fields, deserializeIntoItemFieldCfDto, deserializeIntoItemFieldCfValueDTO, deserializeIntoItemFieldFileDTO, deserializeIntoItemFieldFileData, deserializeIntoItemFieldFileValueDTO, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityDTO, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityData, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityValueDTO, deserializeIntoItemFieldNumberDTO, deserializeIntoItemFieldSimpleNumberValueDTO, deserializeIntoItemFieldSimpleStringArrayValueDTO, deserializeIntoItemFieldSimpleStringValueDTO, deserializeIntoItemFieldStringArrayDTO, deserializeIntoItemFieldStringDTO, deserializeIntoItemFindDTO, deserializeIntoItemLinkCreateDto, deserializeIntoItemLinkDto, deserializeIntoItemMetadataDTO, deserializeIntoJobDto, deserializeIntoJobDto_output, deserializeIntoJobExecutionDto, deserializeIntoJobExecutionDto_input, deserializeIntoJobExecutionDto_output, deserializeIntoJobExecutionInfoDto, deserializeIntoJobLocalDto, deserializeIntoJobPeriodicityDto, deserializeIntoJobTaskDto, deserializeIntoJobTaskDto_input, deserializeIntoJobVisibilityDto, deserializeIntoLevelDto, deserializeIntoLocalizedStringDto, deserializeIntoLowOrderQueryDTO, deserializeIntoMatrixFieldDto, deserializeIntoPartitionDto, deserializeIntoPatchPublicationDto, deserializeIntoPatchTaskExecutionDto, deserializeIntoProjectDto, deserializeIntoPublicationDto, deserializeIntoPublicationDto_fields, deserializeIntoScreenColumnDto, deserializeIntoScreenDto, deserializeIntoScreenSectionDto, deserializeIntoSectionDto, deserializeIntoSectionDto_metadata, deserializeIntoSuggestionDeletedFieldDTO, deserializeIntoSuggestionDto, deserializeIntoSuggestionDto_fields, deserializeIntoTableDto, deserializeIntoTaskDto, deserializeIntoTaskDtoKey, deserializeIntoTaskExecutionDto, deserializeIntoTaskExecutionDto_input, deserializeIntoTaskExecutionDto_output, deserializeIntoUpdateJobDto, deserializeIntoUpdateJobDto_output, deserializeIntoUpdateTaskDto, deserializeIntoUpdateVariableDto, deserializeIntoUserDto, deserializeIntoVariableDto, serializeAccountDto, serializeApplyAllSuggestionDto, serializeApplySuggestionDto, serializeAuditLogDto, serializeAuditLogDto_details, serializeCommentThreadCommentCreateDto, serializeCommentThreadCommentDTO, serializeCommentThreadCreateDto, serializeCommentThreadDto, serializeCommentThreadSubscriberDto, serializeCommentThreadUpdateDto, serializeCreateJobDto, serializeCreateJobDto_output, serializeCreateJobExecutionDto, serializeCreateJobExecutionDto_input, serializeCreateProjectDto, serializeCreatePublicationDto, serializeCreateTaskDto, serializeCreateVariableDto, serializeDisplayInfoDto, serializeFieldDto, serializeFieldDto_metadata, serializeFieldSuffixDto, serializeFieldUpdateDto, serializeFieldUpdateDto_metadata, serializeFieldValueDto, serializeFieldValueDto_metadata, serializeFileDto, serializeFindItemCustomField, serializeFindItemHighOrderQueryDTO, serializeFindItemHighOrderQueryDTO_queries, serializeFindItemLowOrderQueryDTO, serializeHighOrderQueryDTO, serializeHighOrderQueryDTO_queries, serializeItemDto, serializeItemDto_fields, serializeItemFieldCfDto, serializeItemFieldCfValueDTO, serializeItemFieldFileDTO, serializeItemFieldFileData, serializeItemFieldFileValueDTO, serializeItemFieldMultipleSelectWithCommentAndQuantityDTO, serializeItemFieldMultipleSelectWithCommentAndQuantityData, serializeItemFieldMultipleSelectWithCommentAndQuantityValueDTO, serializeItemFieldNumberDTO, serializeItemFieldSimpleNumberValueDTO, serializeItemFieldSimpleStringArrayValueDTO, serializeItemFieldSimpleStringValueDTO, serializeItemFieldStringArrayDTO, serializeItemFieldStringDTO, serializeItemFindDTO, serializeItemLinkCreateDto, serializeItemLinkDto, serializeItemMetadataDTO, serializeJobDto, serializeJobDto_output, serializeJobExecutionDto, serializeJobExecutionDto_input, serializeJobExecutionDto_output, serializeJobExecutionInfoDto, serializeJobLocalDto, serializeJobPeriodicityDto, serializeJobTaskDto, serializeJobTaskDto_input, serializeJobVisibilityDto, serializeLevelDto, serializeLocalizedStringDto, serializeLowOrderQueryDTO, serializeMatrixFieldDto, serializePartitionDto, serializePatchPublicationDto, serializePatchTaskExecutionDto, serializeProjectDto, serializePublicationDto, serializePublicationDto_fields, serializeScreenColumnDto, serializeScreenDto, serializeScreenSectionDto, serializeSectionDto, serializeSectionDto_metadata, serializeSuggestionDeletedFieldDTO, serializeSuggestionDto, serializeSuggestionDto_fields, serializeTableDto, serializeTaskDto, serializeTaskDtoKey, serializeTaskExecutionDto, serializeTaskExecutionDto_input, serializeTaskExecutionDto_output, serializeUpdateJobDto, serializeUpdateJobDto_output, serializeUpdateTaskDto, serializeUpdateVariableDto, serializeUserDto, serializeVariableDto, setup };
|