@product-live/api-sdk 3.1.2 → 3.1.4
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/README.md +36 -0
- package/dist/index.d.mts +637 -609
- package/dist/index.d.ts +637 -609
- package/dist/index.js +689 -641
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +695 -647
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,96 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Builds and executes requests for operations under /feature-flag/refresh
|
|
5
|
-
*/
|
|
6
|
-
interface RefreshRequestBuilder extends BaseRequestBuilder<RefreshRequestBuilder> {
|
|
7
|
-
/**
|
|
8
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
|
-
* @returns {Promise<ArrayBuffer>}
|
|
10
|
-
*/
|
|
11
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
12
|
-
/**
|
|
13
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
14
|
-
* @returns {RequestInformation}
|
|
15
|
-
*/
|
|
16
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* Builds and executes requests for operations under /feature-flag
|
|
21
|
-
*/
|
|
22
|
-
interface FeatureFlagRequestBuilder extends BaseRequestBuilder<FeatureFlagRequestBuilder> {
|
|
23
|
-
/**
|
|
24
|
-
* The refresh property
|
|
25
|
-
*/
|
|
26
|
-
get refresh(): RefreshRequestBuilder;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Builds and executes requests for operations under /probe/liveness
|
|
31
|
-
*/
|
|
32
|
-
interface LivenessRequestBuilder extends BaseRequestBuilder<LivenessRequestBuilder> {
|
|
33
|
-
/**
|
|
34
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
35
|
-
* @returns {Promise<ArrayBuffer>}
|
|
36
|
-
*/
|
|
37
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
38
|
-
/**
|
|
39
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
40
|
-
* @returns {RequestInformation}
|
|
41
|
-
*/
|
|
42
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* Builds and executes requests for operations under /probe/readiness
|
|
47
|
-
*/
|
|
48
|
-
interface ReadinessRequestBuilder extends BaseRequestBuilder<ReadinessRequestBuilder> {
|
|
49
|
-
/**
|
|
50
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
|
-
* @returns {Promise<ArrayBuffer>}
|
|
52
|
-
*/
|
|
53
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
54
|
-
/**
|
|
55
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
56
|
-
* @returns {RequestInformation}
|
|
57
|
-
*/
|
|
58
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/**
|
|
62
|
-
* Builds and executes requests for operations under /probe/status
|
|
63
|
-
*/
|
|
64
|
-
interface StatusRequestBuilder extends BaseRequestBuilder<StatusRequestBuilder> {
|
|
65
|
-
/**
|
|
66
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
67
|
-
* @returns {Promise<ArrayBuffer>}
|
|
68
|
-
*/
|
|
69
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
70
|
-
/**
|
|
71
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
72
|
-
* @returns {RequestInformation}
|
|
73
|
-
*/
|
|
74
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
/**
|
|
78
|
-
* Builds and executes requests for operations under /probe
|
|
79
|
-
*/
|
|
80
|
-
interface ProbeRequestBuilder extends BaseRequestBuilder<ProbeRequestBuilder> {
|
|
81
|
-
/**
|
|
82
|
-
* The liveness property
|
|
83
|
-
*/
|
|
84
|
-
get liveness(): LivenessRequestBuilder;
|
|
85
|
-
/**
|
|
86
|
-
* The readiness property
|
|
87
|
-
*/
|
|
88
|
-
get readiness(): ReadinessRequestBuilder;
|
|
89
|
-
/**
|
|
90
|
-
* The status property
|
|
91
|
-
*/
|
|
92
|
-
get status(): StatusRequestBuilder;
|
|
93
|
-
}
|
|
1
|
+
import { AdditionalDataHolder, Parsable, UntypedNode, ParseNode, SerializationWriter, BaseRequestBuilder, RequestConfiguration, RequestInformation, MultipartBody, RequestAdapter, KeysToExcludeForNavigationMetadata, NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
94
2
|
|
|
95
3
|
interface AccountDto extends AdditionalDataHolder, Parsable {
|
|
96
4
|
/**
|
|
@@ -211,6 +119,10 @@ interface CommentThreadCommentDTO extends AdditionalDataHolder, Parsable {
|
|
|
211
119
|
* The message property
|
|
212
120
|
*/
|
|
213
121
|
message?: string | null;
|
|
122
|
+
/**
|
|
123
|
+
* The object property
|
|
124
|
+
*/
|
|
125
|
+
object?: CommentThreadCommentDTO_object | null;
|
|
214
126
|
/**
|
|
215
127
|
* The type property
|
|
216
128
|
*/
|
|
@@ -220,6 +132,7 @@ interface CommentThreadCommentDTO extends AdditionalDataHolder, Parsable {
|
|
|
220
132
|
*/
|
|
221
133
|
userId?: string | null;
|
|
222
134
|
}
|
|
135
|
+
type CommentThreadCommentDTO_object = (typeof CommentThreadCommentDTO_objectObject)[keyof typeof CommentThreadCommentDTO_objectObject];
|
|
223
136
|
type CommentThreadCommentDTO_type = (typeof CommentThreadCommentDTO_typeObject)[keyof typeof CommentThreadCommentDTO_typeObject];
|
|
224
137
|
interface CommentThreadCreateDto extends AdditionalDataHolder, Parsable {
|
|
225
138
|
/**
|
|
@@ -230,10 +143,6 @@ interface CommentThreadCreateDto extends AdditionalDataHolder, Parsable {
|
|
|
230
143
|
* The comments property
|
|
231
144
|
*/
|
|
232
145
|
comments?: CommentThreadCommentCreateDto[] | null;
|
|
233
|
-
/**
|
|
234
|
-
* The object property
|
|
235
|
-
*/
|
|
236
|
-
object?: CommentThreadCreateDto_object | null;
|
|
237
146
|
/**
|
|
238
147
|
* The targetId property
|
|
239
148
|
*/
|
|
@@ -243,7 +152,6 @@ interface CommentThreadCreateDto extends AdditionalDataHolder, Parsable {
|
|
|
243
152
|
*/
|
|
244
153
|
targetType?: CommentThreadCreateDto_targetType | null;
|
|
245
154
|
}
|
|
246
|
-
type CommentThreadCreateDto_object = (typeof CommentThreadCreateDto_objectObject)[keyof typeof CommentThreadCreateDto_objectObject];
|
|
247
155
|
type CommentThreadCreateDto_targetType = (typeof CommentThreadCreateDto_targetTypeObject)[keyof typeof CommentThreadCreateDto_targetTypeObject];
|
|
248
156
|
interface CommentThreadDto extends AdditionalDataHolder, Parsable {
|
|
249
157
|
/**
|
|
@@ -358,12 +266,7 @@ interface CommentThreadUpdateDto extends AdditionalDataHolder, Parsable {
|
|
|
358
266
|
* The message property
|
|
359
267
|
*/
|
|
360
268
|
message?: string | null;
|
|
361
|
-
/**
|
|
362
|
-
* The object property
|
|
363
|
-
*/
|
|
364
|
-
object?: CommentThreadUpdateDto_object | null;
|
|
365
269
|
}
|
|
366
|
-
type CommentThreadUpdateDto_object = (typeof CommentThreadUpdateDto_objectObject)[keyof typeof CommentThreadUpdateDto_objectObject];
|
|
367
270
|
/**
|
|
368
271
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
369
272
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -848,9 +751,9 @@ declare function createJobPeriodicityDtoFromDiscriminatorValue(parseNode: ParseN
|
|
|
848
751
|
/**
|
|
849
752
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
850
753
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
851
|
-
* @returns {
|
|
754
|
+
* @returns {JobTaskDto_inputParameters}
|
|
852
755
|
*/
|
|
853
|
-
declare function
|
|
756
|
+
declare function createJobTaskDto_inputParametersFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
854
757
|
/**
|
|
855
758
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
856
759
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -905,6 +808,12 @@ declare function createPatchPublicationDtoFromDiscriminatorValue(parseNode: Pars
|
|
|
905
808
|
* @returns {PatchTaskExecutionDto}
|
|
906
809
|
*/
|
|
907
810
|
declare function createPatchTaskExecutionDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
811
|
+
/**
|
|
812
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
813
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
814
|
+
* @returns {PipelineDto}
|
|
815
|
+
*/
|
|
816
|
+
declare function createPipelineDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
908
817
|
interface CreateProjectDto extends AdditionalDataHolder, Parsable {
|
|
909
818
|
/**
|
|
910
819
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -1533,7 +1442,7 @@ declare function deserializeIntoJobTaskDto(jobTaskDto?: Partial<JobTaskDto> | un
|
|
|
1533
1442
|
* The deserialization information for the current model
|
|
1534
1443
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1535
1444
|
*/
|
|
1536
|
-
declare function
|
|
1445
|
+
declare function deserializeIntoJobTaskDto_inputParameters(jobTaskDto_inputParameters?: Partial<JobTaskDto_inputParameters> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1537
1446
|
/**
|
|
1538
1447
|
* The deserialization information for the current model
|
|
1539
1448
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1574,6 +1483,11 @@ declare function deserializeIntoPatchPublicationDto(patchPublicationDto?: Partia
|
|
|
1574
1483
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1575
1484
|
*/
|
|
1576
1485
|
declare function deserializeIntoPatchTaskExecutionDto(patchTaskExecutionDto?: Partial<PatchTaskExecutionDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1486
|
+
/**
|
|
1487
|
+
* The deserialization information for the current model
|
|
1488
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1489
|
+
*/
|
|
1490
|
+
declare function deserializeIntoPipelineDto(pipelineDto?: Partial<PipelineDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1577
1491
|
/**
|
|
1578
1492
|
* The deserialization information for the current model
|
|
1579
1493
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1848,10 +1762,6 @@ interface FieldUpdateDto extends AdditionalDataHolder, Parsable {
|
|
|
1848
1762
|
* The metadata property
|
|
1849
1763
|
*/
|
|
1850
1764
|
metadata?: FieldUpdateDto_metadata | null;
|
|
1851
|
-
/**
|
|
1852
|
-
* The object property
|
|
1853
|
-
*/
|
|
1854
|
-
object?: FieldUpdateDto_object | null;
|
|
1855
1765
|
/**
|
|
1856
1766
|
* The title property
|
|
1857
1767
|
*/
|
|
@@ -1867,7 +1777,6 @@ interface FieldUpdateDto_metadata extends AdditionalDataHolder, Parsable {
|
|
|
1867
1777
|
*/
|
|
1868
1778
|
additionalData?: Record<string, unknown>;
|
|
1869
1779
|
}
|
|
1870
|
-
type FieldUpdateDto_object = (typeof FieldUpdateDto_objectObject)[keyof typeof FieldUpdateDto_objectObject];
|
|
1871
1780
|
interface FieldValueDto extends AdditionalDataHolder, Parsable {
|
|
1872
1781
|
/**
|
|
1873
1782
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -2436,16 +2345,11 @@ interface ItemLinkCreateDto extends AdditionalDataHolder, Parsable {
|
|
|
2436
2345
|
* The fromItemId property
|
|
2437
2346
|
*/
|
|
2438
2347
|
fromItemId?: string | null;
|
|
2439
|
-
/**
|
|
2440
|
-
* The object property
|
|
2441
|
-
*/
|
|
2442
|
-
object?: ItemLinkCreateDto_object | null;
|
|
2443
2348
|
/**
|
|
2444
2349
|
* The toItemId property
|
|
2445
2350
|
*/
|
|
2446
2351
|
toItemId?: string | null;
|
|
2447
2352
|
}
|
|
2448
|
-
type ItemLinkCreateDto_object = (typeof ItemLinkCreateDto_objectObject)[keyof typeof ItemLinkCreateDto_objectObject];
|
|
2449
2353
|
interface ItemLinkDto extends AdditionalDataHolder, Parsable {
|
|
2450
2354
|
/**
|
|
2451
2355
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -2761,9 +2665,9 @@ interface JobTaskDto extends AdditionalDataHolder, Parsable {
|
|
|
2761
2665
|
*/
|
|
2762
2666
|
description?: string | null;
|
|
2763
2667
|
/**
|
|
2764
|
-
* The
|
|
2668
|
+
* The inputParameters property
|
|
2765
2669
|
*/
|
|
2766
|
-
|
|
2670
|
+
inputParameters?: JobTaskDto_inputParameters | null;
|
|
2767
2671
|
/**
|
|
2768
2672
|
* The isOptional property
|
|
2769
2673
|
*/
|
|
@@ -2781,7 +2685,7 @@ interface JobTaskDto extends AdditionalDataHolder, Parsable {
|
|
|
2781
2685
|
*/
|
|
2782
2686
|
type?: string | null;
|
|
2783
2687
|
}
|
|
2784
|
-
interface
|
|
2688
|
+
interface JobTaskDto_inputParameters extends AdditionalDataHolder, Parsable {
|
|
2785
2689
|
/**
|
|
2786
2690
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2787
2691
|
*/
|
|
@@ -3054,6 +2958,45 @@ interface PatchTaskExecutionDto extends AdditionalDataHolder, Parsable {
|
|
|
3054
2958
|
status?: PatchTaskExecutionDto_status | null;
|
|
3055
2959
|
}
|
|
3056
2960
|
type PatchTaskExecutionDto_status = (typeof PatchTaskExecutionDto_statusObject)[keyof typeof PatchTaskExecutionDto_statusObject];
|
|
2961
|
+
interface PipelineDto extends AdditionalDataHolder, Parsable {
|
|
2962
|
+
/**
|
|
2963
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2964
|
+
*/
|
|
2965
|
+
additionalData?: Record<string, unknown>;
|
|
2966
|
+
/**
|
|
2967
|
+
* The createdAt property
|
|
2968
|
+
*/
|
|
2969
|
+
createdAt?: string | null;
|
|
2970
|
+
/**
|
|
2971
|
+
* The id property
|
|
2972
|
+
*/
|
|
2973
|
+
id?: string | null;
|
|
2974
|
+
/**
|
|
2975
|
+
* The key property
|
|
2976
|
+
*/
|
|
2977
|
+
key?: string | null;
|
|
2978
|
+
/**
|
|
2979
|
+
* The name property
|
|
2980
|
+
*/
|
|
2981
|
+
name?: string | null;
|
|
2982
|
+
/**
|
|
2983
|
+
* The object property
|
|
2984
|
+
*/
|
|
2985
|
+
object?: PipelineDto_object | null;
|
|
2986
|
+
/**
|
|
2987
|
+
* The size property
|
|
2988
|
+
*/
|
|
2989
|
+
size?: number | null;
|
|
2990
|
+
/**
|
|
2991
|
+
* The status property
|
|
2992
|
+
*/
|
|
2993
|
+
status?: string | null;
|
|
2994
|
+
/**
|
|
2995
|
+
* The updatedAt property
|
|
2996
|
+
*/
|
|
2997
|
+
updatedAt?: string | null;
|
|
2998
|
+
}
|
|
2999
|
+
type PipelineDto_object = (typeof PipelineDto_objectObject)[keyof typeof PipelineDto_objectObject];
|
|
3057
3000
|
interface ProjectDto extends AdditionalDataHolder, Parsable {
|
|
3058
3001
|
/**
|
|
3059
3002
|
* The accessKey property
|
|
@@ -3163,6 +3106,10 @@ interface ScreenColumnDto extends AdditionalDataHolder, Parsable {
|
|
|
3163
3106
|
* The createdAt property
|
|
3164
3107
|
*/
|
|
3165
3108
|
createdAt?: string | null;
|
|
3109
|
+
/**
|
|
3110
|
+
* The display property
|
|
3111
|
+
*/
|
|
3112
|
+
display?: ScreenColumnDto_display | null;
|
|
3166
3113
|
/**
|
|
3167
3114
|
* The fieldId property
|
|
3168
3115
|
*/
|
|
@@ -3204,6 +3151,7 @@ interface ScreenColumnDto extends AdditionalDataHolder, Parsable {
|
|
|
3204
3151
|
*/
|
|
3205
3152
|
width?: ScreenColumnDto_width | null;
|
|
3206
3153
|
}
|
|
3154
|
+
type ScreenColumnDto_display = (typeof ScreenColumnDto_displayObject)[keyof typeof ScreenColumnDto_displayObject];
|
|
3207
3155
|
type ScreenColumnDto_object = (typeof ScreenColumnDto_objectObject)[keyof typeof ScreenColumnDto_objectObject];
|
|
3208
3156
|
type ScreenColumnDto_width = (typeof ScreenColumnDto_widthObject)[keyof typeof ScreenColumnDto_widthObject];
|
|
3209
3157
|
interface ScreenDto extends AdditionalDataHolder, Parsable {
|
|
@@ -3696,7 +3644,7 @@ declare function serializeJobTaskDto(writer: SerializationWriter, jobTaskDto?: P
|
|
|
3696
3644
|
* Serializes information the current object
|
|
3697
3645
|
* @param writer Serialization writer to use to serialize this model
|
|
3698
3646
|
*/
|
|
3699
|
-
declare function
|
|
3647
|
+
declare function serializeJobTaskDto_inputParameters(writer: SerializationWriter, jobTaskDto_inputParameters?: Partial<JobTaskDto_inputParameters> | undefined | null): void;
|
|
3700
3648
|
/**
|
|
3701
3649
|
* Serializes information the current object
|
|
3702
3650
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3737,6 +3685,11 @@ declare function serializePatchPublicationDto(writer: SerializationWriter, patch
|
|
|
3737
3685
|
* @param writer Serialization writer to use to serialize this model
|
|
3738
3686
|
*/
|
|
3739
3687
|
declare function serializePatchTaskExecutionDto(writer: SerializationWriter, patchTaskExecutionDto?: Partial<PatchTaskExecutionDto> | undefined | null): void;
|
|
3688
|
+
/**
|
|
3689
|
+
* Serializes information the current object
|
|
3690
|
+
* @param writer Serialization writer to use to serialize this model
|
|
3691
|
+
*/
|
|
3692
|
+
declare function serializePipelineDto(writer: SerializationWriter, pipelineDto?: Partial<PipelineDto> | undefined | null): void;
|
|
3740
3693
|
/**
|
|
3741
3694
|
* Serializes information the current object
|
|
3742
3695
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -4445,14 +4398,14 @@ declare const AccountDto_objectObject: {
|
|
|
4445
4398
|
declare const AuditLogDto_objectObject: {
|
|
4446
4399
|
readonly Audit_log: "audit_log";
|
|
4447
4400
|
};
|
|
4401
|
+
declare const CommentThreadCommentDTO_objectObject: {
|
|
4402
|
+
readonly Comment_thread_comment: "comment_thread_comment";
|
|
4403
|
+
};
|
|
4448
4404
|
declare const CommentThreadCommentDTO_typeObject: {
|
|
4449
4405
|
readonly TEXT: "TEXT";
|
|
4450
4406
|
readonly SYSTEM: "SYSTEM";
|
|
4451
4407
|
readonly SYSTEM_ERROR: "SYSTEM_ERROR";
|
|
4452
4408
|
};
|
|
4453
|
-
declare const CommentThreadCreateDto_objectObject: {
|
|
4454
|
-
readonly Comment_thread: "comment_thread";
|
|
4455
|
-
};
|
|
4456
4409
|
declare const CommentThreadCreateDto_targetTypeObject: {
|
|
4457
4410
|
readonly Suggestion: "suggestion";
|
|
4458
4411
|
};
|
|
@@ -4498,6 +4451,7 @@ declare const CommentThreadDto_targetTypeObject: {
|
|
|
4498
4451
|
readonly Partition: "partition";
|
|
4499
4452
|
readonly Level: "level";
|
|
4500
4453
|
readonly Item: "item";
|
|
4454
|
+
readonly Item_cache: "item_cache";
|
|
4501
4455
|
readonly Item_link: "item_link";
|
|
4502
4456
|
readonly Permission: "permission";
|
|
4503
4457
|
readonly ConditionalFormatting: "conditionalFormatting";
|
|
@@ -4537,6 +4491,7 @@ declare const CommentThreadDto_targetTypeObject: {
|
|
|
4537
4491
|
readonly Generic_mock_data: "generic_mock_data";
|
|
4538
4492
|
readonly Dashboard: "dashboard";
|
|
4539
4493
|
readonly Http_request: "http_request";
|
|
4494
|
+
readonly User_activity: "user_activity";
|
|
4540
4495
|
};
|
|
4541
4496
|
declare const CommentThreadDto_typeObject: {
|
|
4542
4497
|
readonly DEFAULTEscaped: "DEFAULT";
|
|
@@ -4545,9 +4500,6 @@ declare const CommentThreadDto_typeObject: {
|
|
|
4545
4500
|
declare const CommentThreadSubscriberDto_objectObject: {
|
|
4546
4501
|
readonly Comment_thread_subscriber: "comment_thread_subscriber";
|
|
4547
4502
|
};
|
|
4548
|
-
declare const CommentThreadUpdateDto_objectObject: {
|
|
4549
|
-
readonly Comment_thread: "comment_thread";
|
|
4550
|
-
};
|
|
4551
4503
|
declare const CreateJobDto_statusObject: {
|
|
4552
4504
|
readonly DRAFT: "DRAFT";
|
|
4553
4505
|
readonly PRODUCTION: "PRODUCTION";
|
|
@@ -4596,9 +4548,6 @@ declare const FieldSuffixDto_statusObject: {
|
|
|
4596
4548
|
readonly ARCHIVED: "ARCHIVED";
|
|
4597
4549
|
readonly DELETED: "DELETED";
|
|
4598
4550
|
};
|
|
4599
|
-
declare const FieldUpdateDto_objectObject: {
|
|
4600
|
-
readonly Field: "field";
|
|
4601
|
-
};
|
|
4602
4551
|
declare const FieldValueDto_colorObject: {
|
|
4603
4552
|
readonly NONE: "NONE";
|
|
4604
4553
|
readonly BLACK: "BLACK";
|
|
@@ -4689,9 +4638,6 @@ declare const ItemFindDTO_orderObject: {
|
|
|
4689
4638
|
readonly ASC: "ASC";
|
|
4690
4639
|
readonly DESC: "DESC";
|
|
4691
4640
|
};
|
|
4692
|
-
declare const ItemLinkCreateDto_objectObject: {
|
|
4693
|
-
readonly Item_link_create: "item_link_create";
|
|
4694
|
-
};
|
|
4695
4641
|
declare const ItemLinkDto_objectObject: {
|
|
4696
4642
|
readonly Item_link: "item_link";
|
|
4697
4643
|
};
|
|
@@ -4765,6 +4711,9 @@ declare const PatchTaskExecutionDto_statusObject: {
|
|
|
4765
4711
|
readonly FAILED: "FAILED";
|
|
4766
4712
|
readonly COMPLETED: "COMPLETED";
|
|
4767
4713
|
};
|
|
4714
|
+
declare const PipelineDto_objectObject: {
|
|
4715
|
+
readonly Pipeline: "pipeline";
|
|
4716
|
+
};
|
|
4768
4717
|
declare const ProjectDto_objectObject: {
|
|
4769
4718
|
readonly Project: "project";
|
|
4770
4719
|
};
|
|
@@ -4776,6 +4725,9 @@ declare const PublicationDto_statusObject: {
|
|
|
4776
4725
|
readonly RECEIVED: "RECEIVED";
|
|
4777
4726
|
readonly REJECTED: "REJECTED";
|
|
4778
4727
|
};
|
|
4728
|
+
declare const ScreenColumnDto_displayObject: {
|
|
4729
|
+
readonly MARKDOWN: "MARKDOWN";
|
|
4730
|
+
};
|
|
4779
4731
|
declare const ScreenColumnDto_objectObject: {
|
|
4780
4732
|
readonly Screen_column: "screen_column";
|
|
4781
4733
|
};
|
|
@@ -5021,13 +4973,13 @@ interface AccountsRequestBuilderGetQueryParameters {
|
|
|
5021
4973
|
page?: number;
|
|
5022
4974
|
size?: number;
|
|
5023
4975
|
sort?: string;
|
|
5024
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
4976
|
+
sortOrder?: GetSortOrderQueryParameterType$q;
|
|
5025
4977
|
}
|
|
5026
|
-
type GetSortOrderQueryParameterType$
|
|
4978
|
+
type GetSortOrderQueryParameterType$q = (typeof GetSortOrderQueryParameterTypeObject$q)[keyof typeof GetSortOrderQueryParameterTypeObject$q];
|
|
5027
4979
|
declare const AccountsGetResponse_objectObject: {
|
|
5028
4980
|
readonly List: "list";
|
|
5029
4981
|
};
|
|
5030
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
4982
|
+
declare const GetSortOrderQueryParameterTypeObject$q: {
|
|
5031
4983
|
readonly DESC: "DESC";
|
|
5032
4984
|
readonly ASC: "ASC";
|
|
5033
4985
|
};
|
|
@@ -5052,7 +5004,7 @@ interface FindPostResponse$m extends AdditionalDataHolder, Parsable {
|
|
|
5052
5004
|
}
|
|
5053
5005
|
type FindPostResponse_object$m = (typeof FindPostResponse_objectObject$m)[keyof typeof FindPostResponse_objectObject$m];
|
|
5054
5006
|
/**
|
|
5055
|
-
* Builds and executes requests for operations under /v1/
|
|
5007
|
+
* Builds and executes requests for operations under /v1/audit-logs/find
|
|
5056
5008
|
*/
|
|
5057
5009
|
interface FindRequestBuilder$m extends BaseRequestBuilder<FindRequestBuilder$m> {
|
|
5058
5010
|
/**
|
|
@@ -5089,7 +5041,7 @@ declare const PostSortOrderQueryParameterTypeObject$n: {
|
|
|
5089
5041
|
readonly ASC: "ASC";
|
|
5090
5042
|
};
|
|
5091
5043
|
|
|
5092
|
-
interface
|
|
5044
|
+
interface AuditLogsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5093
5045
|
/**
|
|
5094
5046
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5095
5047
|
*/
|
|
@@ -5101,17 +5053,17 @@ interface Audit_logsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
5101
5053
|
/**
|
|
5102
5054
|
* The object property
|
|
5103
5055
|
*/
|
|
5104
|
-
object?:
|
|
5056
|
+
object?: AuditLogsGetResponse_object | null;
|
|
5105
5057
|
/**
|
|
5106
5058
|
* The totalElements property
|
|
5107
5059
|
*/
|
|
5108
5060
|
totalElements?: number | null;
|
|
5109
5061
|
}
|
|
5110
|
-
type
|
|
5062
|
+
type AuditLogsGetResponse_object = (typeof AuditLogsGetResponse_objectObject)[keyof typeof AuditLogsGetResponse_objectObject];
|
|
5111
5063
|
/**
|
|
5112
|
-
* Builds and executes requests for operations under /v1/
|
|
5064
|
+
* Builds and executes requests for operations under /v1/audit-logs
|
|
5113
5065
|
*/
|
|
5114
|
-
interface
|
|
5066
|
+
interface AuditLogsRequestBuilder extends BaseRequestBuilder<AuditLogsRequestBuilder> {
|
|
5115
5067
|
/**
|
|
5116
5068
|
* The find property
|
|
5117
5069
|
*/
|
|
@@ -5119,31 +5071,31 @@ interface Audit_logsRequestBuilder extends BaseRequestBuilder<Audit_logsRequestB
|
|
|
5119
5071
|
/**
|
|
5120
5072
|
* Get a list of Audit Log
|
|
5121
5073
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5122
|
-
* @returns {Promise<
|
|
5123
|
-
* @throws {
|
|
5074
|
+
* @returns {Promise<AuditLogsGetResponse>}
|
|
5075
|
+
* @throws {AuditLogs400Error} error when the service returns a 400 status code
|
|
5124
5076
|
*/
|
|
5125
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
5077
|
+
get(requestConfiguration?: RequestConfiguration<AuditLogsRequestBuilderGetQueryParameters> | undefined): Promise<AuditLogsGetResponse | undefined>;
|
|
5126
5078
|
/**
|
|
5127
5079
|
* Get a list of Audit Log
|
|
5128
5080
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5129
5081
|
* @returns {RequestInformation}
|
|
5130
5082
|
*/
|
|
5131
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
5083
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AuditLogsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
5132
5084
|
}
|
|
5133
5085
|
/**
|
|
5134
5086
|
* Get a list of Audit Log
|
|
5135
5087
|
*/
|
|
5136
|
-
interface
|
|
5088
|
+
interface AuditLogsRequestBuilderGetQueryParameters {
|
|
5137
5089
|
page?: number;
|
|
5138
5090
|
size?: number;
|
|
5139
5091
|
sort?: string;
|
|
5140
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5092
|
+
sortOrder?: GetSortOrderQueryParameterType$p;
|
|
5141
5093
|
}
|
|
5142
|
-
type GetSortOrderQueryParameterType$
|
|
5143
|
-
declare const
|
|
5094
|
+
type GetSortOrderQueryParameterType$p = (typeof GetSortOrderQueryParameterTypeObject$p)[keyof typeof GetSortOrderQueryParameterTypeObject$p];
|
|
5095
|
+
declare const AuditLogsGetResponse_objectObject: {
|
|
5144
5096
|
readonly List: "list";
|
|
5145
5097
|
};
|
|
5146
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5098
|
+
declare const GetSortOrderQueryParameterTypeObject$p: {
|
|
5147
5099
|
readonly DESC: "DESC";
|
|
5148
5100
|
readonly ASC: "ASC";
|
|
5149
5101
|
};
|
|
@@ -5156,7 +5108,7 @@ interface FindPostResponse$l extends AdditionalDataHolder, Parsable {
|
|
|
5156
5108
|
/**
|
|
5157
5109
|
* The data property
|
|
5158
5110
|
*/
|
|
5159
|
-
data?:
|
|
5111
|
+
data?: CommentThreadDto[] | null;
|
|
5160
5112
|
/**
|
|
5161
5113
|
* The object property
|
|
5162
5114
|
*/
|
|
@@ -5168,11 +5120,11 @@ interface FindPostResponse$l extends AdditionalDataHolder, Parsable {
|
|
|
5168
5120
|
}
|
|
5169
5121
|
type FindPostResponse_object$l = (typeof FindPostResponse_objectObject$l)[keyof typeof FindPostResponse_objectObject$l];
|
|
5170
5122
|
/**
|
|
5171
|
-
* Builds and executes requests for operations under /v1/
|
|
5123
|
+
* Builds and executes requests for operations under /v1/comment-threads/find
|
|
5172
5124
|
*/
|
|
5173
5125
|
interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l> {
|
|
5174
5126
|
/**
|
|
5175
|
-
* Find a list of Comment Thread
|
|
5127
|
+
* Find a list of Comment Thread
|
|
5176
5128
|
* @param body The request body
|
|
5177
5129
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5178
5130
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -5180,7 +5132,7 @@ interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l>
|
|
|
5180
5132
|
*/
|
|
5181
5133
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$l> | undefined): Promise<FindPostResponse$l | undefined>;
|
|
5182
5134
|
/**
|
|
5183
|
-
* Find a list of Comment Thread
|
|
5135
|
+
* Find a list of Comment Thread
|
|
5184
5136
|
* @param body The request body
|
|
5185
5137
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5186
5138
|
* @returns {RequestInformation}
|
|
@@ -5188,7 +5140,7 @@ interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l>
|
|
|
5188
5140
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$l> | undefined): RequestInformation;
|
|
5189
5141
|
}
|
|
5190
5142
|
/**
|
|
5191
|
-
* Find a list of Comment Thread
|
|
5143
|
+
* Find a list of Comment Thread
|
|
5192
5144
|
*/
|
|
5193
5145
|
interface FindRequestBuilderPostQueryParameters$l {
|
|
5194
5146
|
page?: number;
|
|
@@ -5206,25 +5158,64 @@ declare const PostSortOrderQueryParameterTypeObject$m: {
|
|
|
5206
5158
|
};
|
|
5207
5159
|
|
|
5208
5160
|
/**
|
|
5209
|
-
* Builds and executes requests for operations under /v1/
|
|
5161
|
+
* Builds and executes requests for operations under /v1/comment-threads/{id}/add-comment
|
|
5210
5162
|
*/
|
|
5211
|
-
interface
|
|
5163
|
+
interface AddCommentRequestBuilder extends BaseRequestBuilder<AddCommentRequestBuilder> {
|
|
5212
5164
|
/**
|
|
5213
|
-
*
|
|
5165
|
+
* Add a comment to a comment thread
|
|
5166
|
+
* @param body The request body
|
|
5214
5167
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5215
|
-
* @returns {Promise<
|
|
5216
|
-
* @throws {CommentThreadSubscriberDto400Error} error when the service returns a 400 status code
|
|
5168
|
+
* @returns {Promise<CommentThreadDto>}
|
|
5217
5169
|
*/
|
|
5218
|
-
|
|
5170
|
+
post(body: CommentThreadCommentCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
5219
5171
|
/**
|
|
5220
|
-
*
|
|
5172
|
+
* Add a comment to a comment thread
|
|
5173
|
+
* @param body The request body
|
|
5174
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5175
|
+
* @returns {RequestInformation}
|
|
5176
|
+
*/
|
|
5177
|
+
toPostRequestInformation(body: CommentThreadCommentCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5178
|
+
}
|
|
5179
|
+
|
|
5180
|
+
/**
|
|
5181
|
+
* Builds and executes requests for operations under /v1/comment-threads/{id}
|
|
5182
|
+
*/
|
|
5183
|
+
interface CommentThreadsItemRequestBuilder extends BaseRequestBuilder<CommentThreadsItemRequestBuilder> {
|
|
5184
|
+
/**
|
|
5185
|
+
* The addComment property
|
|
5186
|
+
*/
|
|
5187
|
+
get addComment(): AddCommentRequestBuilder;
|
|
5188
|
+
/**
|
|
5189
|
+
* Get a Comment Thread by id
|
|
5190
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5191
|
+
* @returns {Promise<CommentThreadDto>}
|
|
5192
|
+
* @throws {CommentThreadDto400Error} error when the service returns a 400 status code
|
|
5193
|
+
*/
|
|
5194
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
5195
|
+
/**
|
|
5196
|
+
* Patch a Comment Thread
|
|
5197
|
+
* @param body The request body
|
|
5198
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5199
|
+
* @returns {Promise<CommentThreadDto>}
|
|
5200
|
+
* @throws {CommentThreadDto400Error} error when the service returns a 400 status code
|
|
5201
|
+
*/
|
|
5202
|
+
patch(body: CommentThreadUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
5203
|
+
/**
|
|
5204
|
+
* Get a Comment Thread by id
|
|
5221
5205
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5222
5206
|
* @returns {RequestInformation}
|
|
5223
5207
|
*/
|
|
5224
5208
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5209
|
+
/**
|
|
5210
|
+
* Patch a Comment Thread
|
|
5211
|
+
* @param body The request body
|
|
5212
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5213
|
+
* @returns {RequestInformation}
|
|
5214
|
+
*/
|
|
5215
|
+
toPatchRequestInformation(body: CommentThreadUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5225
5216
|
}
|
|
5226
5217
|
|
|
5227
|
-
interface
|
|
5218
|
+
interface CommentThreadsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5228
5219
|
/**
|
|
5229
5220
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5230
5221
|
*/
|
|
@@ -5232,59 +5223,74 @@ interface Comment_thread_subscribersGetResponse extends AdditionalDataHolder, Pa
|
|
|
5232
5223
|
/**
|
|
5233
5224
|
* The data property
|
|
5234
5225
|
*/
|
|
5235
|
-
data?:
|
|
5226
|
+
data?: CommentThreadDto[] | null;
|
|
5236
5227
|
/**
|
|
5237
5228
|
* The object property
|
|
5238
5229
|
*/
|
|
5239
|
-
object?:
|
|
5230
|
+
object?: CommentThreadsGetResponse_object | null;
|
|
5240
5231
|
/**
|
|
5241
5232
|
* The totalElements property
|
|
5242
5233
|
*/
|
|
5243
5234
|
totalElements?: number | null;
|
|
5244
5235
|
}
|
|
5245
|
-
type
|
|
5236
|
+
type CommentThreadsGetResponse_object = (typeof CommentThreadsGetResponse_objectObject)[keyof typeof CommentThreadsGetResponse_objectObject];
|
|
5246
5237
|
/**
|
|
5247
|
-
* Builds and executes requests for operations under /v1/
|
|
5238
|
+
* Builds and executes requests for operations under /v1/comment-threads
|
|
5248
5239
|
*/
|
|
5249
|
-
interface
|
|
5240
|
+
interface CommentThreadsRequestBuilder extends BaseRequestBuilder<CommentThreadsRequestBuilder> {
|
|
5250
5241
|
/**
|
|
5251
5242
|
* The find property
|
|
5252
5243
|
*/
|
|
5253
5244
|
get find(): FindRequestBuilder$l;
|
|
5254
5245
|
/**
|
|
5255
|
-
* Gets an item from the ApiSdk.v1.
|
|
5246
|
+
* Gets an item from the ApiSdk.v1.commentThreads.item collection
|
|
5256
5247
|
* @param id Unique identifier of the item
|
|
5257
|
-
* @returns {
|
|
5248
|
+
* @returns {CommentThreadsItemRequestBuilder}
|
|
5258
5249
|
*/
|
|
5259
|
-
byId(id: string):
|
|
5250
|
+
byId(id: string): CommentThreadsItemRequestBuilder;
|
|
5260
5251
|
/**
|
|
5261
|
-
* Get a list of Comment Thread
|
|
5252
|
+
* Get a list of Comment Thread
|
|
5262
5253
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5263
|
-
* @returns {Promise<
|
|
5264
|
-
* @throws {
|
|
5254
|
+
* @returns {Promise<CommentThreadsGetResponse>}
|
|
5255
|
+
* @throws {CommentThreads400Error} error when the service returns a 400 status code
|
|
5265
5256
|
*/
|
|
5266
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
5257
|
+
get(requestConfiguration?: RequestConfiguration<CommentThreadsRequestBuilderGetQueryParameters> | undefined): Promise<CommentThreadsGetResponse | undefined>;
|
|
5267
5258
|
/**
|
|
5268
|
-
*
|
|
5259
|
+
* Create a Comment Thread
|
|
5260
|
+
* @param body The request body
|
|
5261
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5262
|
+
* @returns {Promise<CommentThreadDto>}
|
|
5263
|
+
* @throws {CommentThreadDto400Error} error when the service returns a 400 status code
|
|
5264
|
+
*/
|
|
5265
|
+
post(body: CommentThreadCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
5266
|
+
/**
|
|
5267
|
+
* Get a list of Comment Thread
|
|
5268
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5269
|
+
* @returns {RequestInformation}
|
|
5270
|
+
*/
|
|
5271
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CommentThreadsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
5272
|
+
/**
|
|
5273
|
+
* Create a Comment Thread
|
|
5274
|
+
* @param body The request body
|
|
5269
5275
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5270
5276
|
* @returns {RequestInformation}
|
|
5271
5277
|
*/
|
|
5272
|
-
|
|
5278
|
+
toPostRequestInformation(body: CommentThreadCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5273
5279
|
}
|
|
5274
5280
|
/**
|
|
5275
|
-
* Get a list of Comment Thread
|
|
5281
|
+
* Get a list of Comment Thread
|
|
5276
5282
|
*/
|
|
5277
|
-
interface
|
|
5283
|
+
interface CommentThreadsRequestBuilderGetQueryParameters {
|
|
5278
5284
|
page?: number;
|
|
5279
5285
|
size?: number;
|
|
5280
5286
|
sort?: string;
|
|
5281
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5287
|
+
sortOrder?: GetSortOrderQueryParameterType$o;
|
|
5282
5288
|
}
|
|
5283
|
-
type GetSortOrderQueryParameterType$
|
|
5284
|
-
declare const
|
|
5289
|
+
type GetSortOrderQueryParameterType$o = (typeof GetSortOrderQueryParameterTypeObject$o)[keyof typeof GetSortOrderQueryParameterTypeObject$o];
|
|
5290
|
+
declare const CommentThreadsGetResponse_objectObject: {
|
|
5285
5291
|
readonly List: "list";
|
|
5286
5292
|
};
|
|
5287
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5293
|
+
declare const GetSortOrderQueryParameterTypeObject$o: {
|
|
5288
5294
|
readonly DESC: "DESC";
|
|
5289
5295
|
readonly ASC: "ASC";
|
|
5290
5296
|
};
|
|
@@ -5297,7 +5303,7 @@ interface FindPostResponse$k extends AdditionalDataHolder, Parsable {
|
|
|
5297
5303
|
/**
|
|
5298
5304
|
* The data property
|
|
5299
5305
|
*/
|
|
5300
|
-
data?:
|
|
5306
|
+
data?: CommentThreadSubscriberDto[] | null;
|
|
5301
5307
|
/**
|
|
5302
5308
|
* The object property
|
|
5303
5309
|
*/
|
|
@@ -5309,11 +5315,11 @@ interface FindPostResponse$k extends AdditionalDataHolder, Parsable {
|
|
|
5309
5315
|
}
|
|
5310
5316
|
type FindPostResponse_object$k = (typeof FindPostResponse_objectObject$k)[keyof typeof FindPostResponse_objectObject$k];
|
|
5311
5317
|
/**
|
|
5312
|
-
* Builds and executes requests for operations under /v1/
|
|
5318
|
+
* Builds and executes requests for operations under /v1/comment-thread-subscribers/find
|
|
5313
5319
|
*/
|
|
5314
5320
|
interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k> {
|
|
5315
5321
|
/**
|
|
5316
|
-
* Find a list of Comment Thread
|
|
5322
|
+
* Find a list of Comment Thread Subscriber
|
|
5317
5323
|
* @param body The request body
|
|
5318
5324
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5319
5325
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -5321,7 +5327,7 @@ interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k>
|
|
|
5321
5327
|
*/
|
|
5322
5328
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$k> | undefined): Promise<FindPostResponse$k | undefined>;
|
|
5323
5329
|
/**
|
|
5324
|
-
* Find a list of Comment Thread
|
|
5330
|
+
* Find a list of Comment Thread Subscriber
|
|
5325
5331
|
* @param body The request body
|
|
5326
5332
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5327
5333
|
* @returns {RequestInformation}
|
|
@@ -5329,7 +5335,7 @@ interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k>
|
|
|
5329
5335
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$k> | undefined): RequestInformation;
|
|
5330
5336
|
}
|
|
5331
5337
|
/**
|
|
5332
|
-
* Find a list of Comment Thread
|
|
5338
|
+
* Find a list of Comment Thread Subscriber
|
|
5333
5339
|
*/
|
|
5334
5340
|
interface FindRequestBuilderPostQueryParameters$k {
|
|
5335
5341
|
page?: number;
|
|
@@ -5347,64 +5353,25 @@ declare const PostSortOrderQueryParameterTypeObject$l: {
|
|
|
5347
5353
|
};
|
|
5348
5354
|
|
|
5349
5355
|
/**
|
|
5350
|
-
* Builds and executes requests for operations under /v1/
|
|
5356
|
+
* Builds and executes requests for operations under /v1/comment-thread-subscribers/{id}
|
|
5351
5357
|
*/
|
|
5352
|
-
interface
|
|
5358
|
+
interface CommentThreadSubscribersItemRequestBuilder extends BaseRequestBuilder<CommentThreadSubscribersItemRequestBuilder> {
|
|
5353
5359
|
/**
|
|
5354
|
-
*
|
|
5355
|
-
* @param body The request body
|
|
5360
|
+
* Get a Comment Thread Subscriber by id
|
|
5356
5361
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5357
|
-
* @returns {Promise<
|
|
5362
|
+
* @returns {Promise<CommentThreadSubscriberDto>}
|
|
5363
|
+
* @throws {CommentThreadSubscriberDto400Error} error when the service returns a 400 status code
|
|
5358
5364
|
*/
|
|
5359
|
-
|
|
5360
|
-
/**
|
|
5361
|
-
* Add a comment to a comment thread
|
|
5362
|
-
* @param body The request body
|
|
5363
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5364
|
-
* @returns {RequestInformation}
|
|
5365
|
-
*/
|
|
5366
|
-
toPostRequestInformation(body: CommentThreadCommentCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5367
|
-
}
|
|
5368
|
-
|
|
5369
|
-
/**
|
|
5370
|
-
* Builds and executes requests for operations under /v1/comment_threads/{id}
|
|
5371
|
-
*/
|
|
5372
|
-
interface Comment_threadsItemRequestBuilder extends BaseRequestBuilder<Comment_threadsItemRequestBuilder> {
|
|
5373
|
-
/**
|
|
5374
|
-
* The addComment property
|
|
5375
|
-
*/
|
|
5376
|
-
get addComment(): AddCommentRequestBuilder;
|
|
5377
|
-
/**
|
|
5378
|
-
* Get a Comment Thread by id
|
|
5379
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5380
|
-
* @returns {Promise<CommentThreadDto>}
|
|
5381
|
-
* @throws {CommentThreadDto400Error} error when the service returns a 400 status code
|
|
5382
|
-
*/
|
|
5383
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
5384
|
-
/**
|
|
5385
|
-
* Patch a Comment Thread
|
|
5386
|
-
* @param body The request body
|
|
5387
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5388
|
-
* @returns {Promise<CommentThreadDto>}
|
|
5389
|
-
* @throws {CommentThreadDto400Error} error when the service returns a 400 status code
|
|
5390
|
-
*/
|
|
5391
|
-
patch(body: CommentThreadUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
5365
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadSubscriberDto | undefined>;
|
|
5392
5366
|
/**
|
|
5393
|
-
* Get a Comment Thread by id
|
|
5367
|
+
* Get a Comment Thread Subscriber by id
|
|
5394
5368
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5395
5369
|
* @returns {RequestInformation}
|
|
5396
5370
|
*/
|
|
5397
5371
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5398
|
-
/**
|
|
5399
|
-
* Patch a Comment Thread
|
|
5400
|
-
* @param body The request body
|
|
5401
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5402
|
-
* @returns {RequestInformation}
|
|
5403
|
-
*/
|
|
5404
|
-
toPatchRequestInformation(body: CommentThreadUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5405
5372
|
}
|
|
5406
5373
|
|
|
5407
|
-
interface
|
|
5374
|
+
interface CommentThreadSubscribersGetResponse extends AdditionalDataHolder, Parsable {
|
|
5408
5375
|
/**
|
|
5409
5376
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5410
5377
|
*/
|
|
@@ -5412,80 +5379,65 @@ interface Comment_threadsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
5412
5379
|
/**
|
|
5413
5380
|
* The data property
|
|
5414
5381
|
*/
|
|
5415
|
-
data?:
|
|
5382
|
+
data?: CommentThreadSubscriberDto[] | null;
|
|
5416
5383
|
/**
|
|
5417
5384
|
* The object property
|
|
5418
5385
|
*/
|
|
5419
|
-
object?:
|
|
5386
|
+
object?: CommentThreadSubscribersGetResponse_object | null;
|
|
5420
5387
|
/**
|
|
5421
5388
|
* The totalElements property
|
|
5422
5389
|
*/
|
|
5423
5390
|
totalElements?: number | null;
|
|
5424
5391
|
}
|
|
5425
|
-
type
|
|
5392
|
+
type CommentThreadSubscribersGetResponse_object = (typeof CommentThreadSubscribersGetResponse_objectObject)[keyof typeof CommentThreadSubscribersGetResponse_objectObject];
|
|
5426
5393
|
/**
|
|
5427
|
-
* Builds and executes requests for operations under /v1/
|
|
5394
|
+
* Builds and executes requests for operations under /v1/comment-thread-subscribers
|
|
5428
5395
|
*/
|
|
5429
|
-
interface
|
|
5396
|
+
interface CommentThreadSubscribersRequestBuilder extends BaseRequestBuilder<CommentThreadSubscribersRequestBuilder> {
|
|
5430
5397
|
/**
|
|
5431
5398
|
* The find property
|
|
5432
5399
|
*/
|
|
5433
5400
|
get find(): FindRequestBuilder$k;
|
|
5434
5401
|
/**
|
|
5435
|
-
* Gets an item from the ApiSdk.v1.
|
|
5402
|
+
* Gets an item from the ApiSdk.v1.commentThreadSubscribers.item collection
|
|
5436
5403
|
* @param id Unique identifier of the item
|
|
5437
|
-
* @returns {
|
|
5438
|
-
*/
|
|
5439
|
-
byId(id: string): Comment_threadsItemRequestBuilder;
|
|
5440
|
-
/**
|
|
5441
|
-
* Get a list of Comment Thread
|
|
5442
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5443
|
-
* @returns {Promise<Comment_threadsGetResponse>}
|
|
5444
|
-
* @throws {Comment_threads400Error} error when the service returns a 400 status code
|
|
5404
|
+
* @returns {CommentThreadSubscribersItemRequestBuilder}
|
|
5445
5405
|
*/
|
|
5446
|
-
|
|
5406
|
+
byId(id: string): CommentThreadSubscribersItemRequestBuilder;
|
|
5447
5407
|
/**
|
|
5448
|
-
*
|
|
5449
|
-
* @param body The request body
|
|
5450
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5451
|
-
* @returns {Promise<CommentThreadDto>}
|
|
5452
|
-
* @throws {CommentThreadDto400Error} error when the service returns a 400 status code
|
|
5453
|
-
*/
|
|
5454
|
-
post(body: CommentThreadCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
5455
|
-
/**
|
|
5456
|
-
* Get a list of Comment Thread
|
|
5408
|
+
* Get a list of Comment Thread Subscriber
|
|
5457
5409
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5458
|
-
* @returns {
|
|
5410
|
+
* @returns {Promise<CommentThreadSubscribersGetResponse>}
|
|
5411
|
+
* @throws {CommentThreadSubscribers400Error} error when the service returns a 400 status code
|
|
5459
5412
|
*/
|
|
5460
|
-
|
|
5413
|
+
get(requestConfiguration?: RequestConfiguration<CommentThreadSubscribersRequestBuilderGetQueryParameters> | undefined): Promise<CommentThreadSubscribersGetResponse | undefined>;
|
|
5461
5414
|
/**
|
|
5462
|
-
*
|
|
5463
|
-
* @param body The request body
|
|
5415
|
+
* Get a list of Comment Thread Subscriber
|
|
5464
5416
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5465
5417
|
* @returns {RequestInformation}
|
|
5466
5418
|
*/
|
|
5467
|
-
|
|
5419
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CommentThreadSubscribersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
5468
5420
|
}
|
|
5469
5421
|
/**
|
|
5470
|
-
* Get a list of Comment Thread
|
|
5422
|
+
* Get a list of Comment Thread Subscriber
|
|
5471
5423
|
*/
|
|
5472
|
-
interface
|
|
5424
|
+
interface CommentThreadSubscribersRequestBuilderGetQueryParameters {
|
|
5473
5425
|
page?: number;
|
|
5474
5426
|
size?: number;
|
|
5475
5427
|
sort?: string;
|
|
5476
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5428
|
+
sortOrder?: GetSortOrderQueryParameterType$n;
|
|
5477
5429
|
}
|
|
5478
|
-
type GetSortOrderQueryParameterType$
|
|
5479
|
-
declare const
|
|
5430
|
+
type GetSortOrderQueryParameterType$n = (typeof GetSortOrderQueryParameterTypeObject$n)[keyof typeof GetSortOrderQueryParameterTypeObject$n];
|
|
5431
|
+
declare const CommentThreadSubscribersGetResponse_objectObject: {
|
|
5480
5432
|
readonly List: "list";
|
|
5481
5433
|
};
|
|
5482
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5434
|
+
declare const GetSortOrderQueryParameterTypeObject$n: {
|
|
5483
5435
|
readonly DESC: "DESC";
|
|
5484
5436
|
readonly ASC: "ASC";
|
|
5485
5437
|
};
|
|
5486
5438
|
|
|
5487
5439
|
/**
|
|
5488
|
-
* Builds and executes requests for operations under /v1/
|
|
5440
|
+
* Builds and executes requests for operations under /v1/data-factory/files/{id}
|
|
5489
5441
|
*/
|
|
5490
5442
|
interface FilesItemRequestBuilder extends BaseRequestBuilder<FilesItemRequestBuilder> {
|
|
5491
5443
|
/**
|
|
@@ -5523,11 +5475,11 @@ interface FilesGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
5523
5475
|
}
|
|
5524
5476
|
type FilesGetResponse_object = (typeof FilesGetResponse_objectObject)[keyof typeof FilesGetResponse_objectObject];
|
|
5525
5477
|
/**
|
|
5526
|
-
* Builds and executes requests for operations under /v1/
|
|
5478
|
+
* Builds and executes requests for operations under /v1/data-factory/files
|
|
5527
5479
|
*/
|
|
5528
5480
|
interface FilesRequestBuilder extends BaseRequestBuilder<FilesRequestBuilder> {
|
|
5529
5481
|
/**
|
|
5530
|
-
* Gets an item from the ApiSdk.v1.
|
|
5482
|
+
* Gets an item from the ApiSdk.v1.dataFactory.files.item collection
|
|
5531
5483
|
* @param id Unique identifier of the item
|
|
5532
5484
|
* @returns {FilesItemRequestBuilder}
|
|
5533
5485
|
*/
|
|
@@ -5568,13 +5520,13 @@ interface FilesRequestBuilderGetQueryParameters {
|
|
|
5568
5520
|
page?: number;
|
|
5569
5521
|
size?: number;
|
|
5570
5522
|
sort?: string;
|
|
5571
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5523
|
+
sortOrder?: GetSortOrderQueryParameterType$m;
|
|
5572
5524
|
}
|
|
5573
|
-
type GetSortOrderQueryParameterType$
|
|
5525
|
+
type GetSortOrderQueryParameterType$m = (typeof GetSortOrderQueryParameterTypeObject$m)[keyof typeof GetSortOrderQueryParameterTypeObject$m];
|
|
5574
5526
|
declare const FilesGetResponse_objectObject: {
|
|
5575
5527
|
readonly List: "list";
|
|
5576
5528
|
};
|
|
5577
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5529
|
+
declare const GetSortOrderQueryParameterTypeObject$m: {
|
|
5578
5530
|
readonly DESC: "DESC";
|
|
5579
5531
|
readonly ASC: "ASC";
|
|
5580
5532
|
};
|
|
@@ -5599,7 +5551,7 @@ interface FindPostResponse$j extends AdditionalDataHolder, Parsable {
|
|
|
5599
5551
|
}
|
|
5600
5552
|
type FindPostResponse_object$j = (typeof FindPostResponse_objectObject$j)[keyof typeof FindPostResponse_objectObject$j];
|
|
5601
5553
|
/**
|
|
5602
|
-
* Builds and executes requests for operations under /v1/
|
|
5554
|
+
* Builds and executes requests for operations under /v1/data-factory/job-executions/find
|
|
5603
5555
|
*/
|
|
5604
5556
|
interface FindRequestBuilder$j extends BaseRequestBuilder<FindRequestBuilder$j> {
|
|
5605
5557
|
/**
|
|
@@ -5637,9 +5589,9 @@ declare const PostSortOrderQueryParameterTypeObject$k: {
|
|
|
5637
5589
|
};
|
|
5638
5590
|
|
|
5639
5591
|
/**
|
|
5640
|
-
* Builds and executes requests for operations under /v1/
|
|
5592
|
+
* Builds and executes requests for operations under /v1/data-factory/job-executions/{id}
|
|
5641
5593
|
*/
|
|
5642
|
-
interface
|
|
5594
|
+
interface JobExecutionsItemRequestBuilder extends BaseRequestBuilder<JobExecutionsItemRequestBuilder> {
|
|
5643
5595
|
/**
|
|
5644
5596
|
* Get a Job Execution by id
|
|
5645
5597
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -5655,8 +5607,8 @@ interface Job_executionsItemRequestBuilder extends BaseRequestBuilder<Job_execut
|
|
|
5655
5607
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5656
5608
|
}
|
|
5657
5609
|
|
|
5658
|
-
type GetSortOrderQueryParameterType$
|
|
5659
|
-
interface
|
|
5610
|
+
type GetSortOrderQueryParameterType$l = (typeof GetSortOrderQueryParameterTypeObject$l)[keyof typeof GetSortOrderQueryParameterTypeObject$l];
|
|
5611
|
+
interface JobExecutionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5660
5612
|
/**
|
|
5661
5613
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5662
5614
|
*/
|
|
@@ -5668,34 +5620,34 @@ interface Job_executionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
5668
5620
|
/**
|
|
5669
5621
|
* The object property
|
|
5670
5622
|
*/
|
|
5671
|
-
object?:
|
|
5623
|
+
object?: JobExecutionsGetResponse_object | null;
|
|
5672
5624
|
/**
|
|
5673
5625
|
* The totalElements property
|
|
5674
5626
|
*/
|
|
5675
5627
|
totalElements?: number | null;
|
|
5676
5628
|
}
|
|
5677
|
-
type
|
|
5629
|
+
type JobExecutionsGetResponse_object = (typeof JobExecutionsGetResponse_objectObject)[keyof typeof JobExecutionsGetResponse_objectObject];
|
|
5678
5630
|
/**
|
|
5679
|
-
* Builds and executes requests for operations under /v1/
|
|
5631
|
+
* Builds and executes requests for operations under /v1/data-factory/job-executions
|
|
5680
5632
|
*/
|
|
5681
|
-
interface
|
|
5633
|
+
interface JobExecutionsRequestBuilder extends BaseRequestBuilder<JobExecutionsRequestBuilder> {
|
|
5682
5634
|
/**
|
|
5683
5635
|
* The find property
|
|
5684
5636
|
*/
|
|
5685
5637
|
get find(): FindRequestBuilder$j;
|
|
5686
5638
|
/**
|
|
5687
|
-
* Gets an item from the ApiSdk.v1.
|
|
5639
|
+
* Gets an item from the ApiSdk.v1.dataFactory.jobExecutions.item collection
|
|
5688
5640
|
* @param id Unique identifier of the item
|
|
5689
|
-
* @returns {
|
|
5641
|
+
* @returns {JobExecutionsItemRequestBuilder}
|
|
5690
5642
|
*/
|
|
5691
|
-
byId(id: string):
|
|
5643
|
+
byId(id: string): JobExecutionsItemRequestBuilder;
|
|
5692
5644
|
/**
|
|
5693
5645
|
* Get a list of Job Execution
|
|
5694
5646
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5695
|
-
* @returns {Promise<
|
|
5696
|
-
* @throws {
|
|
5647
|
+
* @returns {Promise<JobExecutionsGetResponse>}
|
|
5648
|
+
* @throws {JobExecutions400Error} error when the service returns a 400 status code
|
|
5697
5649
|
*/
|
|
5698
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
5650
|
+
get(requestConfiguration?: RequestConfiguration<JobExecutionsRequestBuilderGetQueryParameters> | undefined): Promise<JobExecutionsGetResponse | undefined>;
|
|
5699
5651
|
/**
|
|
5700
5652
|
* Create a Job Execution
|
|
5701
5653
|
* @param body The request body
|
|
@@ -5709,7 +5661,7 @@ interface Job_executionsRequestBuilder extends BaseRequestBuilder<Job_executions
|
|
|
5709
5661
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5710
5662
|
* @returns {RequestInformation}
|
|
5711
5663
|
*/
|
|
5712
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
5664
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<JobExecutionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
5713
5665
|
/**
|
|
5714
5666
|
* Create a Job Execution
|
|
5715
5667
|
* @param body The request body
|
|
@@ -5721,17 +5673,17 @@ interface Job_executionsRequestBuilder extends BaseRequestBuilder<Job_executions
|
|
|
5721
5673
|
/**
|
|
5722
5674
|
* Get a list of Job Execution
|
|
5723
5675
|
*/
|
|
5724
|
-
interface
|
|
5676
|
+
interface JobExecutionsRequestBuilderGetQueryParameters {
|
|
5725
5677
|
page?: number;
|
|
5726
5678
|
size?: number;
|
|
5727
5679
|
sort?: string;
|
|
5728
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5680
|
+
sortOrder?: GetSortOrderQueryParameterType$l;
|
|
5729
5681
|
}
|
|
5730
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5682
|
+
declare const GetSortOrderQueryParameterTypeObject$l: {
|
|
5731
5683
|
readonly DESC: "DESC";
|
|
5732
5684
|
readonly ASC: "ASC";
|
|
5733
5685
|
};
|
|
5734
|
-
declare const
|
|
5686
|
+
declare const JobExecutionsGetResponse_objectObject: {
|
|
5735
5687
|
readonly List: "list";
|
|
5736
5688
|
};
|
|
5737
5689
|
|
|
@@ -5755,7 +5707,7 @@ interface FindPostResponse$i extends AdditionalDataHolder, Parsable {
|
|
|
5755
5707
|
}
|
|
5756
5708
|
type FindPostResponse_object$i = (typeof FindPostResponse_objectObject$i)[keyof typeof FindPostResponse_objectObject$i];
|
|
5757
5709
|
/**
|
|
5758
|
-
* Builds and executes requests for operations under /v1/
|
|
5710
|
+
* Builds and executes requests for operations under /v1/data-factory/jobs/find
|
|
5759
5711
|
*/
|
|
5760
5712
|
interface FindRequestBuilder$i extends BaseRequestBuilder<FindRequestBuilder$i> {
|
|
5761
5713
|
/**
|
|
@@ -5793,7 +5745,7 @@ declare const PostSortOrderQueryParameterTypeObject$j: {
|
|
|
5793
5745
|
};
|
|
5794
5746
|
|
|
5795
5747
|
/**
|
|
5796
|
-
* Builds and executes requests for operations under /v1/
|
|
5748
|
+
* Builds and executes requests for operations under /v1/data-factory/jobs/{id}/zip
|
|
5797
5749
|
*/
|
|
5798
5750
|
interface ZipRequestBuilder extends BaseRequestBuilder<ZipRequestBuilder> {
|
|
5799
5751
|
/**
|
|
@@ -5814,7 +5766,7 @@ interface ZipRequestBuilder extends BaseRequestBuilder<ZipRequestBuilder> {
|
|
|
5814
5766
|
}
|
|
5815
5767
|
|
|
5816
5768
|
/**
|
|
5817
|
-
* Builds and executes requests for operations under /v1/
|
|
5769
|
+
* Builds and executes requests for operations under /v1/data-factory/jobs/{id}
|
|
5818
5770
|
*/
|
|
5819
5771
|
interface JobsItemRequestBuilder extends BaseRequestBuilder<JobsItemRequestBuilder> {
|
|
5820
5772
|
/**
|
|
@@ -5851,7 +5803,7 @@ interface JobsItemRequestBuilder extends BaseRequestBuilder<JobsItemRequestBuild
|
|
|
5851
5803
|
toPutRequestInformation(body: UpdateJobDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5852
5804
|
}
|
|
5853
5805
|
|
|
5854
|
-
type GetSortOrderQueryParameterType$
|
|
5806
|
+
type GetSortOrderQueryParameterType$k = (typeof GetSortOrderQueryParameterTypeObject$k)[keyof typeof GetSortOrderQueryParameterTypeObject$k];
|
|
5855
5807
|
interface JobsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5856
5808
|
/**
|
|
5857
5809
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -5872,7 +5824,7 @@ interface JobsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
5872
5824
|
}
|
|
5873
5825
|
type JobsGetResponse_object = (typeof JobsGetResponse_objectObject)[keyof typeof JobsGetResponse_objectObject];
|
|
5874
5826
|
/**
|
|
5875
|
-
* Builds and executes requests for operations under /v1/
|
|
5827
|
+
* Builds and executes requests for operations under /v1/data-factory/jobs
|
|
5876
5828
|
*/
|
|
5877
5829
|
interface JobsRequestBuilder extends BaseRequestBuilder<JobsRequestBuilder> {
|
|
5878
5830
|
/**
|
|
@@ -5880,7 +5832,7 @@ interface JobsRequestBuilder extends BaseRequestBuilder<JobsRequestBuilder> {
|
|
|
5880
5832
|
*/
|
|
5881
5833
|
get find(): FindRequestBuilder$i;
|
|
5882
5834
|
/**
|
|
5883
|
-
* Gets an item from the ApiSdk.v1.
|
|
5835
|
+
* Gets an item from the ApiSdk.v1.dataFactory.jobs.item collection
|
|
5884
5836
|
* @param id Unique identifier of the item
|
|
5885
5837
|
* @returns {JobsItemRequestBuilder}
|
|
5886
5838
|
*/
|
|
@@ -5918,6 +5870,86 @@ interface JobsRequestBuilder extends BaseRequestBuilder<JobsRequestBuilder> {
|
|
|
5918
5870
|
* Get a list of Job
|
|
5919
5871
|
*/
|
|
5920
5872
|
interface JobsRequestBuilderGetQueryParameters {
|
|
5873
|
+
page?: number;
|
|
5874
|
+
size?: number;
|
|
5875
|
+
sort?: string;
|
|
5876
|
+
sortOrder?: GetSortOrderQueryParameterType$k;
|
|
5877
|
+
}
|
|
5878
|
+
declare const GetSortOrderQueryParameterTypeObject$k: {
|
|
5879
|
+
readonly DESC: "DESC";
|
|
5880
|
+
readonly ASC: "ASC";
|
|
5881
|
+
};
|
|
5882
|
+
declare const JobsGetResponse_objectObject: {
|
|
5883
|
+
readonly List: "list";
|
|
5884
|
+
};
|
|
5885
|
+
|
|
5886
|
+
/**
|
|
5887
|
+
* Builds and executes requests for operations under /v1/data-factory/pipelines/{id}
|
|
5888
|
+
*/
|
|
5889
|
+
interface PipelinesItemRequestBuilder extends BaseRequestBuilder<PipelinesItemRequestBuilder> {
|
|
5890
|
+
/**
|
|
5891
|
+
* Get a Pipeline by id
|
|
5892
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5893
|
+
* @returns {Promise<PipelineDto>}
|
|
5894
|
+
* @throws {PipelineDto400Error} error when the service returns a 400 status code
|
|
5895
|
+
*/
|
|
5896
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PipelineDto | undefined>;
|
|
5897
|
+
/**
|
|
5898
|
+
* Get a Pipeline by id
|
|
5899
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5900
|
+
* @returns {RequestInformation}
|
|
5901
|
+
*/
|
|
5902
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5903
|
+
}
|
|
5904
|
+
|
|
5905
|
+
type GetSortOrderQueryParameterType$j = (typeof GetSortOrderQueryParameterTypeObject$j)[keyof typeof GetSortOrderQueryParameterTypeObject$j];
|
|
5906
|
+
interface PipelinesGetResponse extends AdditionalDataHolder, Parsable {
|
|
5907
|
+
/**
|
|
5908
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5909
|
+
*/
|
|
5910
|
+
additionalData?: Record<string, unknown>;
|
|
5911
|
+
/**
|
|
5912
|
+
* The data property
|
|
5913
|
+
*/
|
|
5914
|
+
data?: PipelineDto[] | null;
|
|
5915
|
+
/**
|
|
5916
|
+
* The object property
|
|
5917
|
+
*/
|
|
5918
|
+
object?: PipelinesGetResponse_object | null;
|
|
5919
|
+
/**
|
|
5920
|
+
* The totalElements property
|
|
5921
|
+
*/
|
|
5922
|
+
totalElements?: number | null;
|
|
5923
|
+
}
|
|
5924
|
+
type PipelinesGetResponse_object = (typeof PipelinesGetResponse_objectObject)[keyof typeof PipelinesGetResponse_objectObject];
|
|
5925
|
+
/**
|
|
5926
|
+
* Builds and executes requests for operations under /v1/data-factory/pipelines
|
|
5927
|
+
*/
|
|
5928
|
+
interface PipelinesRequestBuilder extends BaseRequestBuilder<PipelinesRequestBuilder> {
|
|
5929
|
+
/**
|
|
5930
|
+
* Gets an item from the ApiSdk.v1.dataFactory.pipelines.item collection
|
|
5931
|
+
* @param id Unique identifier of the item
|
|
5932
|
+
* @returns {PipelinesItemRequestBuilder}
|
|
5933
|
+
*/
|
|
5934
|
+
byId(id: string): PipelinesItemRequestBuilder;
|
|
5935
|
+
/**
|
|
5936
|
+
* Get a list of Pipeline
|
|
5937
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5938
|
+
* @returns {Promise<PipelinesGetResponse>}
|
|
5939
|
+
* @throws {Pipelines400Error} error when the service returns a 400 status code
|
|
5940
|
+
*/
|
|
5941
|
+
get(requestConfiguration?: RequestConfiguration<PipelinesRequestBuilderGetQueryParameters> | undefined): Promise<PipelinesGetResponse | undefined>;
|
|
5942
|
+
/**
|
|
5943
|
+
* Get a list of Pipeline
|
|
5944
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5945
|
+
* @returns {RequestInformation}
|
|
5946
|
+
*/
|
|
5947
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PipelinesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
5948
|
+
}
|
|
5949
|
+
/**
|
|
5950
|
+
* Get a list of Pipeline
|
|
5951
|
+
*/
|
|
5952
|
+
interface PipelinesRequestBuilderGetQueryParameters {
|
|
5921
5953
|
page?: number;
|
|
5922
5954
|
size?: number;
|
|
5923
5955
|
sort?: string;
|
|
@@ -5927,7 +5959,7 @@ declare const GetSortOrderQueryParameterTypeObject$j: {
|
|
|
5927
5959
|
readonly DESC: "DESC";
|
|
5928
5960
|
readonly ASC: "ASC";
|
|
5929
5961
|
};
|
|
5930
|
-
declare const
|
|
5962
|
+
declare const PipelinesGetResponse_objectObject: {
|
|
5931
5963
|
readonly List: "list";
|
|
5932
5964
|
};
|
|
5933
5965
|
|
|
@@ -5951,7 +5983,7 @@ interface FindPostResponse$h extends AdditionalDataHolder, Parsable {
|
|
|
5951
5983
|
}
|
|
5952
5984
|
type FindPostResponse_object$h = (typeof FindPostResponse_objectObject$h)[keyof typeof FindPostResponse_objectObject$h];
|
|
5953
5985
|
/**
|
|
5954
|
-
* Builds and executes requests for operations under /v1/
|
|
5986
|
+
* Builds and executes requests for operations under /v1/data-factory/projects/find
|
|
5955
5987
|
*/
|
|
5956
5988
|
interface FindRequestBuilder$h extends BaseRequestBuilder<FindRequestBuilder$h> {
|
|
5957
5989
|
/**
|
|
@@ -5989,7 +6021,7 @@ declare const PostSortOrderQueryParameterTypeObject$i: {
|
|
|
5989
6021
|
};
|
|
5990
6022
|
|
|
5991
6023
|
/**
|
|
5992
|
-
* Builds and executes requests for operations under /v1/
|
|
6024
|
+
* Builds and executes requests for operations under /v1/data-factory/projects/{id}
|
|
5993
6025
|
*/
|
|
5994
6026
|
interface ProjectsItemRequestBuilder extends BaseRequestBuilder<ProjectsItemRequestBuilder> {
|
|
5995
6027
|
/**
|
|
@@ -6070,7 +6102,7 @@ interface ProjectsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6070
6102
|
}
|
|
6071
6103
|
type ProjectsGetResponse_object = (typeof ProjectsGetResponse_objectObject)[keyof typeof ProjectsGetResponse_objectObject];
|
|
6072
6104
|
/**
|
|
6073
|
-
* Builds and executes requests for operations under /v1/
|
|
6105
|
+
* Builds and executes requests for operations under /v1/data-factory/projects
|
|
6074
6106
|
*/
|
|
6075
6107
|
interface ProjectsRequestBuilder extends BaseRequestBuilder<ProjectsRequestBuilder> {
|
|
6076
6108
|
/**
|
|
@@ -6078,7 +6110,7 @@ interface ProjectsRequestBuilder extends BaseRequestBuilder<ProjectsRequestBuild
|
|
|
6078
6110
|
*/
|
|
6079
6111
|
get find(): FindRequestBuilder$h;
|
|
6080
6112
|
/**
|
|
6081
|
-
* Gets an item from the ApiSdk.v1.
|
|
6113
|
+
* Gets an item from the ApiSdk.v1.dataFactory.projects.item collection
|
|
6082
6114
|
* @param id Unique identifier of the item
|
|
6083
6115
|
* @returns {ProjectsItemRequestBuilder}
|
|
6084
6116
|
*/
|
|
@@ -6130,9 +6162,9 @@ declare const ProjectsGetResponse_objectObject: {
|
|
|
6130
6162
|
};
|
|
6131
6163
|
|
|
6132
6164
|
/**
|
|
6133
|
-
* Builds and executes requests for operations under /v1/
|
|
6165
|
+
* Builds and executes requests for operations under /v1/data-factory/task-executions/{id}
|
|
6134
6166
|
*/
|
|
6135
|
-
interface
|
|
6167
|
+
interface TaskExecutionsItemRequestBuilder extends BaseRequestBuilder<TaskExecutionsItemRequestBuilder> {
|
|
6136
6168
|
/**
|
|
6137
6169
|
* Get a Task Execution by id
|
|
6138
6170
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -6164,19 +6196,19 @@ interface Task_executionsItemRequestBuilder extends BaseRequestBuilder<Task_exec
|
|
|
6164
6196
|
}
|
|
6165
6197
|
|
|
6166
6198
|
/**
|
|
6167
|
-
* Builds and executes requests for operations under /v1/
|
|
6199
|
+
* Builds and executes requests for operations under /v1/data-factory/task-executions
|
|
6168
6200
|
*/
|
|
6169
|
-
interface
|
|
6201
|
+
interface TaskExecutionsRequestBuilder extends BaseRequestBuilder<TaskExecutionsRequestBuilder> {
|
|
6170
6202
|
/**
|
|
6171
|
-
* Gets an item from the ApiSdk.v1.
|
|
6203
|
+
* Gets an item from the ApiSdk.v1.dataFactory.taskExecutions.item collection
|
|
6172
6204
|
* @param id Unique identifier of the item
|
|
6173
|
-
* @returns {
|
|
6205
|
+
* @returns {TaskExecutionsItemRequestBuilder}
|
|
6174
6206
|
*/
|
|
6175
|
-
byId(id: string):
|
|
6207
|
+
byId(id: string): TaskExecutionsItemRequestBuilder;
|
|
6176
6208
|
}
|
|
6177
6209
|
|
|
6178
6210
|
/**
|
|
6179
|
-
* Builds and executes requests for operations under /v1/
|
|
6211
|
+
* Builds and executes requests for operations under /v1/data-factory/tasks/{id}/poll
|
|
6180
6212
|
*/
|
|
6181
6213
|
interface PollRequestBuilder extends BaseRequestBuilder<PollRequestBuilder> {
|
|
6182
6214
|
/**
|
|
@@ -6195,7 +6227,7 @@ interface PollRequestBuilder extends BaseRequestBuilder<PollRequestBuilder> {
|
|
|
6195
6227
|
}
|
|
6196
6228
|
|
|
6197
6229
|
/**
|
|
6198
|
-
* Builds and executes requests for operations under /v1/
|
|
6230
|
+
* Builds and executes requests for operations under /v1/data-factory/tasks/{id}
|
|
6199
6231
|
*/
|
|
6200
6232
|
interface TasksItemRequestBuilder extends BaseRequestBuilder<TasksItemRequestBuilder> {
|
|
6201
6233
|
/**
|
|
@@ -6265,11 +6297,11 @@ interface TasksGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6265
6297
|
}
|
|
6266
6298
|
type TasksGetResponse_object = (typeof TasksGetResponse_objectObject)[keyof typeof TasksGetResponse_objectObject];
|
|
6267
6299
|
/**
|
|
6268
|
-
* Builds and executes requests for operations under /v1/
|
|
6300
|
+
* Builds and executes requests for operations under /v1/data-factory/tasks
|
|
6269
6301
|
*/
|
|
6270
6302
|
interface TasksRequestBuilder extends BaseRequestBuilder<TasksRequestBuilder> {
|
|
6271
6303
|
/**
|
|
6272
|
-
* Gets an item from the ApiSdk.v1.
|
|
6304
|
+
* Gets an item from the ApiSdk.v1.dataFactory.tasks.item collection
|
|
6273
6305
|
* @param id Unique identifier of the item
|
|
6274
6306
|
* @returns {TasksItemRequestBuilder}
|
|
6275
6307
|
*/
|
|
@@ -6340,7 +6372,7 @@ interface FindPostResponse$g extends AdditionalDataHolder, Parsable {
|
|
|
6340
6372
|
}
|
|
6341
6373
|
type FindPostResponse_object$g = (typeof FindPostResponse_objectObject$g)[keyof typeof FindPostResponse_objectObject$g];
|
|
6342
6374
|
/**
|
|
6343
|
-
* Builds and executes requests for operations under /v1/
|
|
6375
|
+
* Builds and executes requests for operations under /v1/data-factory/variables/find
|
|
6344
6376
|
*/
|
|
6345
6377
|
interface FindRequestBuilder$g extends BaseRequestBuilder<FindRequestBuilder$g> {
|
|
6346
6378
|
/**
|
|
@@ -6378,7 +6410,7 @@ declare const PostSortOrderQueryParameterTypeObject$h: {
|
|
|
6378
6410
|
};
|
|
6379
6411
|
|
|
6380
6412
|
/**
|
|
6381
|
-
* Builds and executes requests for operations under /v1/
|
|
6413
|
+
* Builds and executes requests for operations under /v1/data-factory/variables/{id}
|
|
6382
6414
|
*/
|
|
6383
6415
|
interface VariablesItemRequestBuilder extends BaseRequestBuilder<VariablesItemRequestBuilder> {
|
|
6384
6416
|
/**
|
|
@@ -6432,7 +6464,7 @@ interface VariablesGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6432
6464
|
}
|
|
6433
6465
|
type VariablesGetResponse_object = (typeof VariablesGetResponse_objectObject)[keyof typeof VariablesGetResponse_objectObject];
|
|
6434
6466
|
/**
|
|
6435
|
-
* Builds and executes requests for operations under /v1/
|
|
6467
|
+
* Builds and executes requests for operations under /v1/data-factory/variables
|
|
6436
6468
|
*/
|
|
6437
6469
|
interface VariablesRequestBuilder extends BaseRequestBuilder<VariablesRequestBuilder> {
|
|
6438
6470
|
/**
|
|
@@ -6440,7 +6472,7 @@ interface VariablesRequestBuilder extends BaseRequestBuilder<VariablesRequestBui
|
|
|
6440
6472
|
*/
|
|
6441
6473
|
get find(): FindRequestBuilder$g;
|
|
6442
6474
|
/**
|
|
6443
|
-
* Gets an item from the ApiSdk.v1.
|
|
6475
|
+
* Gets an item from the ApiSdk.v1.dataFactory.variables.item collection
|
|
6444
6476
|
* @param id Unique identifier of the item
|
|
6445
6477
|
* @returns {VariablesItemRequestBuilder}
|
|
6446
6478
|
*/
|
|
@@ -6492,29 +6524,33 @@ declare const VariablesGetResponse_objectObject: {
|
|
|
6492
6524
|
};
|
|
6493
6525
|
|
|
6494
6526
|
/**
|
|
6495
|
-
* Builds and executes requests for operations under /v1/
|
|
6527
|
+
* Builds and executes requests for operations under /v1/data-factory
|
|
6496
6528
|
*/
|
|
6497
|
-
interface
|
|
6529
|
+
interface DataFactoryRequestBuilder extends BaseRequestBuilder<DataFactoryRequestBuilder> {
|
|
6498
6530
|
/**
|
|
6499
6531
|
* The files property
|
|
6500
6532
|
*/
|
|
6501
6533
|
get files(): FilesRequestBuilder;
|
|
6502
6534
|
/**
|
|
6503
|
-
* The
|
|
6535
|
+
* The jobExecutions property
|
|
6504
6536
|
*/
|
|
6505
|
-
get
|
|
6537
|
+
get jobExecutions(): JobExecutionsRequestBuilder;
|
|
6506
6538
|
/**
|
|
6507
6539
|
* The jobs property
|
|
6508
6540
|
*/
|
|
6509
6541
|
get jobs(): JobsRequestBuilder;
|
|
6542
|
+
/**
|
|
6543
|
+
* The pipelines property
|
|
6544
|
+
*/
|
|
6545
|
+
get pipelines(): PipelinesRequestBuilder;
|
|
6510
6546
|
/**
|
|
6511
6547
|
* The projects property
|
|
6512
6548
|
*/
|
|
6513
6549
|
get projects(): ProjectsRequestBuilder;
|
|
6514
6550
|
/**
|
|
6515
|
-
* The
|
|
6551
|
+
* The taskExecutions property
|
|
6516
6552
|
*/
|
|
6517
|
-
get
|
|
6553
|
+
get taskExecutions(): TaskExecutionsRequestBuilder;
|
|
6518
6554
|
/**
|
|
6519
6555
|
* The tasks property
|
|
6520
6556
|
*/
|
|
@@ -6533,7 +6569,7 @@ interface FindPostResponse$f extends AdditionalDataHolder, Parsable {
|
|
|
6533
6569
|
/**
|
|
6534
6570
|
* The data property
|
|
6535
6571
|
*/
|
|
6536
|
-
data?:
|
|
6572
|
+
data?: FieldDto[] | null;
|
|
6537
6573
|
/**
|
|
6538
6574
|
* The object property
|
|
6539
6575
|
*/
|
|
@@ -6545,11 +6581,11 @@ interface FindPostResponse$f extends AdditionalDataHolder, Parsable {
|
|
|
6545
6581
|
}
|
|
6546
6582
|
type FindPostResponse_object$f = (typeof FindPostResponse_objectObject$f)[keyof typeof FindPostResponse_objectObject$f];
|
|
6547
6583
|
/**
|
|
6548
|
-
* Builds and executes requests for operations under /v1/
|
|
6584
|
+
* Builds and executes requests for operations under /v1/fields/find
|
|
6549
6585
|
*/
|
|
6550
6586
|
interface FindRequestBuilder$f extends BaseRequestBuilder<FindRequestBuilder$f> {
|
|
6551
6587
|
/**
|
|
6552
|
-
* Find a list of Field
|
|
6588
|
+
* Find a list of Field
|
|
6553
6589
|
* @param body The request body
|
|
6554
6590
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6555
6591
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -6557,7 +6593,7 @@ interface FindRequestBuilder$f extends BaseRequestBuilder<FindRequestBuilder$f>
|
|
|
6557
6593
|
*/
|
|
6558
6594
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$f> | undefined): Promise<FindPostResponse$f | undefined>;
|
|
6559
6595
|
/**
|
|
6560
|
-
* Find a list of Field
|
|
6596
|
+
* Find a list of Field
|
|
6561
6597
|
* @param body The request body
|
|
6562
6598
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6563
6599
|
* @returns {RequestInformation}
|
|
@@ -6565,14 +6601,15 @@ interface FindRequestBuilder$f extends BaseRequestBuilder<FindRequestBuilder$f>
|
|
|
6565
6601
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$f> | undefined): RequestInformation;
|
|
6566
6602
|
}
|
|
6567
6603
|
/**
|
|
6568
|
-
* Find a list of Field
|
|
6604
|
+
* Find a list of Field
|
|
6569
6605
|
*/
|
|
6570
6606
|
interface FindRequestBuilderPostQueryParameters$f {
|
|
6571
|
-
fieldId?: string;
|
|
6572
6607
|
page?: number;
|
|
6608
|
+
parentId?: string;
|
|
6573
6609
|
size?: number;
|
|
6574
6610
|
sort?: string;
|
|
6575
6611
|
sortOrder?: PostSortOrderQueryParameterType$g;
|
|
6612
|
+
tableId?: string;
|
|
6576
6613
|
}
|
|
6577
6614
|
type PostSortOrderQueryParameterType$g = (typeof PostSortOrderQueryParameterTypeObject$g)[keyof typeof PostSortOrderQueryParameterTypeObject$g];
|
|
6578
6615
|
declare const FindPostResponse_objectObject$f: {
|
|
@@ -6584,25 +6621,40 @@ declare const PostSortOrderQueryParameterTypeObject$g: {
|
|
|
6584
6621
|
};
|
|
6585
6622
|
|
|
6586
6623
|
/**
|
|
6587
|
-
* Builds and executes requests for operations under /v1/
|
|
6624
|
+
* Builds and executes requests for operations under /v1/fields/{id}
|
|
6588
6625
|
*/
|
|
6589
|
-
interface
|
|
6626
|
+
interface FieldsItemRequestBuilder extends BaseRequestBuilder<FieldsItemRequestBuilder> {
|
|
6590
6627
|
/**
|
|
6591
|
-
* Get a Field
|
|
6628
|
+
* Get a Field by id
|
|
6592
6629
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6593
|
-
* @returns {Promise<
|
|
6594
|
-
* @throws {
|
|
6630
|
+
* @returns {Promise<FieldDto>}
|
|
6631
|
+
* @throws {FieldDto400Error} error when the service returns a 400 status code
|
|
6595
6632
|
*/
|
|
6596
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<
|
|
6633
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<FieldDto | undefined>;
|
|
6597
6634
|
/**
|
|
6598
|
-
*
|
|
6635
|
+
* Patch a Field
|
|
6636
|
+
* @param body The request body
|
|
6637
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6638
|
+
* @returns {Promise<FieldDto>}
|
|
6639
|
+
* @throws {FieldDto400Error} error when the service returns a 400 status code
|
|
6640
|
+
*/
|
|
6641
|
+
patch(body: FieldUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<FieldDto | undefined>;
|
|
6642
|
+
/**
|
|
6643
|
+
* Get a Field by id
|
|
6599
6644
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6600
6645
|
* @returns {RequestInformation}
|
|
6601
6646
|
*/
|
|
6602
6647
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6648
|
+
/**
|
|
6649
|
+
* Patch a Field
|
|
6650
|
+
* @param body The request body
|
|
6651
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6652
|
+
* @returns {RequestInformation}
|
|
6653
|
+
*/
|
|
6654
|
+
toPatchRequestInformation(body: FieldUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6603
6655
|
}
|
|
6604
6656
|
|
|
6605
|
-
interface
|
|
6657
|
+
interface FieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
6606
6658
|
/**
|
|
6607
6659
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6608
6660
|
*/
|
|
@@ -6610,57 +6662,58 @@ interface Field_valuesGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6610
6662
|
/**
|
|
6611
6663
|
* The data property
|
|
6612
6664
|
*/
|
|
6613
|
-
data?:
|
|
6665
|
+
data?: FieldDto[] | null;
|
|
6614
6666
|
/**
|
|
6615
6667
|
* The object property
|
|
6616
6668
|
*/
|
|
6617
|
-
object?:
|
|
6669
|
+
object?: FieldsGetResponse_object | null;
|
|
6618
6670
|
/**
|
|
6619
6671
|
* The totalElements property
|
|
6620
6672
|
*/
|
|
6621
6673
|
totalElements?: number | null;
|
|
6622
6674
|
}
|
|
6623
|
-
type
|
|
6675
|
+
type FieldsGetResponse_object = (typeof FieldsGetResponse_objectObject)[keyof typeof FieldsGetResponse_objectObject];
|
|
6624
6676
|
/**
|
|
6625
|
-
* Builds and executes requests for operations under /v1/
|
|
6677
|
+
* Builds and executes requests for operations under /v1/fields
|
|
6626
6678
|
*/
|
|
6627
|
-
interface
|
|
6679
|
+
interface FieldsRequestBuilder extends BaseRequestBuilder<FieldsRequestBuilder> {
|
|
6628
6680
|
/**
|
|
6629
6681
|
* The find property
|
|
6630
6682
|
*/
|
|
6631
6683
|
get find(): FindRequestBuilder$f;
|
|
6632
6684
|
/**
|
|
6633
|
-
* Gets an item from the ApiSdk.v1.
|
|
6685
|
+
* Gets an item from the ApiSdk.v1.fields.item collection
|
|
6634
6686
|
* @param id Unique identifier of the item
|
|
6635
|
-
* @returns {
|
|
6687
|
+
* @returns {FieldsItemRequestBuilder}
|
|
6636
6688
|
*/
|
|
6637
|
-
byId(id: string):
|
|
6689
|
+
byId(id: string): FieldsItemRequestBuilder;
|
|
6638
6690
|
/**
|
|
6639
|
-
* Get a list of Field
|
|
6691
|
+
* Get a list of Field
|
|
6640
6692
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6641
|
-
* @returns {Promise<
|
|
6642
|
-
* @throws {
|
|
6693
|
+
* @returns {Promise<FieldsGetResponse>}
|
|
6694
|
+
* @throws {Fields400Error} error when the service returns a 400 status code
|
|
6643
6695
|
*/
|
|
6644
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
6696
|
+
get(requestConfiguration?: RequestConfiguration<FieldsRequestBuilderGetQueryParameters> | undefined): Promise<FieldsGetResponse | undefined>;
|
|
6645
6697
|
/**
|
|
6646
|
-
* Get a list of Field
|
|
6698
|
+
* Get a list of Field
|
|
6647
6699
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6648
6700
|
* @returns {RequestInformation}
|
|
6649
6701
|
*/
|
|
6650
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
6702
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<FieldsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
6651
6703
|
}
|
|
6652
6704
|
/**
|
|
6653
|
-
* Get a list of Field
|
|
6705
|
+
* Get a list of Field
|
|
6654
6706
|
*/
|
|
6655
|
-
interface
|
|
6656
|
-
fieldId?: string;
|
|
6707
|
+
interface FieldsRequestBuilderGetQueryParameters {
|
|
6657
6708
|
page?: number;
|
|
6709
|
+
parentId?: string;
|
|
6658
6710
|
size?: number;
|
|
6659
6711
|
sort?: string;
|
|
6660
6712
|
sortOrder?: GetSortOrderQueryParameterType$f;
|
|
6713
|
+
tableId?: string;
|
|
6661
6714
|
}
|
|
6662
6715
|
type GetSortOrderQueryParameterType$f = (typeof GetSortOrderQueryParameterTypeObject$f)[keyof typeof GetSortOrderQueryParameterTypeObject$f];
|
|
6663
|
-
declare const
|
|
6716
|
+
declare const FieldsGetResponse_objectObject: {
|
|
6664
6717
|
readonly List: "list";
|
|
6665
6718
|
};
|
|
6666
6719
|
declare const GetSortOrderQueryParameterTypeObject$f: {
|
|
@@ -6676,7 +6729,7 @@ interface FindPostResponse$e extends AdditionalDataHolder, Parsable {
|
|
|
6676
6729
|
/**
|
|
6677
6730
|
* The data property
|
|
6678
6731
|
*/
|
|
6679
|
-
data?:
|
|
6732
|
+
data?: FieldValueDto[] | null;
|
|
6680
6733
|
/**
|
|
6681
6734
|
* The object property
|
|
6682
6735
|
*/
|
|
@@ -6688,11 +6741,11 @@ interface FindPostResponse$e extends AdditionalDataHolder, Parsable {
|
|
|
6688
6741
|
}
|
|
6689
6742
|
type FindPostResponse_object$e = (typeof FindPostResponse_objectObject$e)[keyof typeof FindPostResponse_objectObject$e];
|
|
6690
6743
|
/**
|
|
6691
|
-
* Builds and executes requests for operations under /v1/
|
|
6744
|
+
* Builds and executes requests for operations under /v1/field-values/find
|
|
6692
6745
|
*/
|
|
6693
6746
|
interface FindRequestBuilder$e extends BaseRequestBuilder<FindRequestBuilder$e> {
|
|
6694
6747
|
/**
|
|
6695
|
-
* Find a list of Field
|
|
6748
|
+
* Find a list of Field Value
|
|
6696
6749
|
* @param body The request body
|
|
6697
6750
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6698
6751
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -6700,7 +6753,7 @@ interface FindRequestBuilder$e extends BaseRequestBuilder<FindRequestBuilder$e>
|
|
|
6700
6753
|
*/
|
|
6701
6754
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$e> | undefined): Promise<FindPostResponse$e | undefined>;
|
|
6702
6755
|
/**
|
|
6703
|
-
* Find a list of Field
|
|
6756
|
+
* Find a list of Field Value
|
|
6704
6757
|
* @param body The request body
|
|
6705
6758
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6706
6759
|
* @returns {RequestInformation}
|
|
@@ -6708,15 +6761,14 @@ interface FindRequestBuilder$e extends BaseRequestBuilder<FindRequestBuilder$e>
|
|
|
6708
6761
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$e> | undefined): RequestInformation;
|
|
6709
6762
|
}
|
|
6710
6763
|
/**
|
|
6711
|
-
* Find a list of Field
|
|
6764
|
+
* Find a list of Field Value
|
|
6712
6765
|
*/
|
|
6713
6766
|
interface FindRequestBuilderPostQueryParameters$e {
|
|
6767
|
+
fieldId?: string;
|
|
6714
6768
|
page?: number;
|
|
6715
|
-
parentId?: string;
|
|
6716
6769
|
size?: number;
|
|
6717
6770
|
sort?: string;
|
|
6718
6771
|
sortOrder?: PostSortOrderQueryParameterType$f;
|
|
6719
|
-
tableId?: string;
|
|
6720
6772
|
}
|
|
6721
6773
|
type PostSortOrderQueryParameterType$f = (typeof PostSortOrderQueryParameterTypeObject$f)[keyof typeof PostSortOrderQueryParameterTypeObject$f];
|
|
6722
6774
|
declare const FindPostResponse_objectObject$e: {
|
|
@@ -6728,40 +6780,25 @@ declare const PostSortOrderQueryParameterTypeObject$f: {
|
|
|
6728
6780
|
};
|
|
6729
6781
|
|
|
6730
6782
|
/**
|
|
6731
|
-
* Builds and executes requests for operations under /v1/
|
|
6783
|
+
* Builds and executes requests for operations under /v1/field-values/{id}
|
|
6732
6784
|
*/
|
|
6733
|
-
interface
|
|
6785
|
+
interface FieldValuesItemRequestBuilder extends BaseRequestBuilder<FieldValuesItemRequestBuilder> {
|
|
6734
6786
|
/**
|
|
6735
|
-
* Get a Field by id
|
|
6736
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6737
|
-
* @returns {Promise<FieldDto>}
|
|
6738
|
-
* @throws {FieldDto400Error} error when the service returns a 400 status code
|
|
6739
|
-
*/
|
|
6740
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<FieldDto | undefined>;
|
|
6741
|
-
/**
|
|
6742
|
-
* Patch a Field
|
|
6743
|
-
* @param body The request body
|
|
6787
|
+
* Get a Field Value by id
|
|
6744
6788
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6745
|
-
* @returns {Promise<
|
|
6746
|
-
* @throws {
|
|
6789
|
+
* @returns {Promise<FieldValueDto>}
|
|
6790
|
+
* @throws {FieldValueDto400Error} error when the service returns a 400 status code
|
|
6747
6791
|
*/
|
|
6748
|
-
|
|
6792
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<FieldValueDto | undefined>;
|
|
6749
6793
|
/**
|
|
6750
|
-
* Get a Field by id
|
|
6794
|
+
* Get a Field Value by id
|
|
6751
6795
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6752
6796
|
* @returns {RequestInformation}
|
|
6753
6797
|
*/
|
|
6754
6798
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6755
|
-
/**
|
|
6756
|
-
* Patch a Field
|
|
6757
|
-
* @param body The request body
|
|
6758
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6759
|
-
* @returns {RequestInformation}
|
|
6760
|
-
*/
|
|
6761
|
-
toPatchRequestInformation(body: FieldUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6762
6799
|
}
|
|
6763
6800
|
|
|
6764
|
-
interface
|
|
6801
|
+
interface FieldValuesGetResponse extends AdditionalDataHolder, Parsable {
|
|
6765
6802
|
/**
|
|
6766
6803
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6767
6804
|
*/
|
|
@@ -6769,58 +6806,57 @@ interface FieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6769
6806
|
/**
|
|
6770
6807
|
* The data property
|
|
6771
6808
|
*/
|
|
6772
|
-
data?:
|
|
6809
|
+
data?: FieldValueDto[] | null;
|
|
6773
6810
|
/**
|
|
6774
6811
|
* The object property
|
|
6775
6812
|
*/
|
|
6776
|
-
object?:
|
|
6813
|
+
object?: FieldValuesGetResponse_object | null;
|
|
6777
6814
|
/**
|
|
6778
6815
|
* The totalElements property
|
|
6779
6816
|
*/
|
|
6780
6817
|
totalElements?: number | null;
|
|
6781
6818
|
}
|
|
6782
|
-
type
|
|
6819
|
+
type FieldValuesGetResponse_object = (typeof FieldValuesGetResponse_objectObject)[keyof typeof FieldValuesGetResponse_objectObject];
|
|
6783
6820
|
/**
|
|
6784
|
-
* Builds and executes requests for operations under /v1/
|
|
6821
|
+
* Builds and executes requests for operations under /v1/field-values
|
|
6785
6822
|
*/
|
|
6786
|
-
interface
|
|
6823
|
+
interface FieldValuesRequestBuilder extends BaseRequestBuilder<FieldValuesRequestBuilder> {
|
|
6787
6824
|
/**
|
|
6788
6825
|
* The find property
|
|
6789
6826
|
*/
|
|
6790
6827
|
get find(): FindRequestBuilder$e;
|
|
6791
6828
|
/**
|
|
6792
|
-
* Gets an item from the ApiSdk.v1.
|
|
6829
|
+
* Gets an item from the ApiSdk.v1.fieldValues.item collection
|
|
6793
6830
|
* @param id Unique identifier of the item
|
|
6794
|
-
* @returns {
|
|
6831
|
+
* @returns {FieldValuesItemRequestBuilder}
|
|
6795
6832
|
*/
|
|
6796
|
-
byId(id: string):
|
|
6833
|
+
byId(id: string): FieldValuesItemRequestBuilder;
|
|
6797
6834
|
/**
|
|
6798
|
-
* Get a list of Field
|
|
6835
|
+
* Get a list of Field Value
|
|
6799
6836
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6800
|
-
* @returns {Promise<
|
|
6801
|
-
* @throws {
|
|
6837
|
+
* @returns {Promise<FieldValuesGetResponse>}
|
|
6838
|
+
* @throws {FieldValues400Error} error when the service returns a 400 status code
|
|
6802
6839
|
*/
|
|
6803
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
6840
|
+
get(requestConfiguration?: RequestConfiguration<FieldValuesRequestBuilderGetQueryParameters> | undefined): Promise<FieldValuesGetResponse | undefined>;
|
|
6804
6841
|
/**
|
|
6805
|
-
* Get a list of Field
|
|
6842
|
+
* Get a list of Field Value
|
|
6806
6843
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6807
6844
|
* @returns {RequestInformation}
|
|
6808
6845
|
*/
|
|
6809
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
6846
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<FieldValuesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
6810
6847
|
}
|
|
6811
6848
|
/**
|
|
6812
|
-
* Get a list of Field
|
|
6849
|
+
* Get a list of Field Value
|
|
6813
6850
|
*/
|
|
6814
|
-
interface
|
|
6851
|
+
interface FieldValuesRequestBuilderGetQueryParameters {
|
|
6852
|
+
fieldId?: string;
|
|
6815
6853
|
page?: number;
|
|
6816
|
-
parentId?: string;
|
|
6817
6854
|
size?: number;
|
|
6818
6855
|
sort?: string;
|
|
6819
6856
|
sortOrder?: GetSortOrderQueryParameterType$e;
|
|
6820
|
-
tableId?: string;
|
|
6821
6857
|
}
|
|
6822
6858
|
type GetSortOrderQueryParameterType$e = (typeof GetSortOrderQueryParameterTypeObject$e)[keyof typeof GetSortOrderQueryParameterTypeObject$e];
|
|
6823
|
-
declare const
|
|
6859
|
+
declare const FieldValuesGetResponse_objectObject: {
|
|
6824
6860
|
readonly List: "list";
|
|
6825
6861
|
};
|
|
6826
6862
|
declare const GetSortOrderQueryParameterTypeObject$e: {
|
|
@@ -6848,11 +6884,11 @@ interface FindPostResponse$d extends AdditionalDataHolder, Parsable {
|
|
|
6848
6884
|
}
|
|
6849
6885
|
type FindPostResponse_object$d = (typeof FindPostResponse_objectObject$d)[keyof typeof FindPostResponse_objectObject$d];
|
|
6850
6886
|
/**
|
|
6851
|
-
* Builds and executes requests for operations under /v1/
|
|
6887
|
+
* Builds and executes requests for operations under /v1/item-links/find
|
|
6852
6888
|
*/
|
|
6853
6889
|
interface FindRequestBuilder$d extends BaseRequestBuilder<FindRequestBuilder$d> {
|
|
6854
6890
|
/**
|
|
6855
|
-
* Find a list of Item
|
|
6891
|
+
* Find a list of Item Link
|
|
6856
6892
|
* @param body The request body
|
|
6857
6893
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6858
6894
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -6860,7 +6896,7 @@ interface FindRequestBuilder$d extends BaseRequestBuilder<FindRequestBuilder$d>
|
|
|
6860
6896
|
*/
|
|
6861
6897
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$d> | undefined): Promise<FindPostResponse$d | undefined>;
|
|
6862
6898
|
/**
|
|
6863
|
-
* Find a list of Item
|
|
6899
|
+
* Find a list of Item Link
|
|
6864
6900
|
* @param body The request body
|
|
6865
6901
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6866
6902
|
* @returns {RequestInformation}
|
|
@@ -6868,7 +6904,7 @@ interface FindRequestBuilder$d extends BaseRequestBuilder<FindRequestBuilder$d>
|
|
|
6868
6904
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$d> | undefined): RequestInformation;
|
|
6869
6905
|
}
|
|
6870
6906
|
/**
|
|
6871
|
-
* Find a list of Item
|
|
6907
|
+
* Find a list of Item Link
|
|
6872
6908
|
*/
|
|
6873
6909
|
interface FindRequestBuilderPostQueryParameters$d {
|
|
6874
6910
|
page?: number;
|
|
@@ -6887,30 +6923,30 @@ declare const PostSortOrderQueryParameterTypeObject$e: {
|
|
|
6887
6923
|
};
|
|
6888
6924
|
|
|
6889
6925
|
/**
|
|
6890
|
-
* Builds and executes requests for operations under /v1/
|
|
6926
|
+
* Builds and executes requests for operations under /v1/item-links/{id}
|
|
6891
6927
|
*/
|
|
6892
|
-
interface
|
|
6928
|
+
interface ItemLinksItemRequestBuilder extends BaseRequestBuilder<ItemLinksItemRequestBuilder> {
|
|
6893
6929
|
/**
|
|
6894
|
-
* Delete a Item
|
|
6930
|
+
* Delete a Item Link by id
|
|
6895
6931
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6896
|
-
* @throws {
|
|
6932
|
+
* @throws {ItemLinks400Error} error when the service returns a 400 status code
|
|
6897
6933
|
*/
|
|
6898
6934
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
6899
6935
|
/**
|
|
6900
|
-
* Get a Item
|
|
6936
|
+
* Get a Item Link by id
|
|
6901
6937
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6902
6938
|
* @returns {Promise<ItemLinkDto>}
|
|
6903
6939
|
* @throws {ItemLinkDto400Error} error when the service returns a 400 status code
|
|
6904
6940
|
*/
|
|
6905
6941
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ItemLinkDto | undefined>;
|
|
6906
6942
|
/**
|
|
6907
|
-
* Delete a Item
|
|
6943
|
+
* Delete a Item Link by id
|
|
6908
6944
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6909
6945
|
* @returns {RequestInformation}
|
|
6910
6946
|
*/
|
|
6911
6947
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6912
6948
|
/**
|
|
6913
|
-
* Get a Item
|
|
6949
|
+
* Get a Item Link by id
|
|
6914
6950
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6915
6951
|
* @returns {RequestInformation}
|
|
6916
6952
|
*/
|
|
@@ -6918,7 +6954,7 @@ interface Item_linksItemRequestBuilder extends BaseRequestBuilder<Item_linksItem
|
|
|
6918
6954
|
}
|
|
6919
6955
|
|
|
6920
6956
|
type GetSortOrderQueryParameterType$d = (typeof GetSortOrderQueryParameterTypeObject$d)[keyof typeof GetSortOrderQueryParameterTypeObject$d];
|
|
6921
|
-
interface
|
|
6957
|
+
interface ItemLinksGetResponse extends AdditionalDataHolder, Parsable {
|
|
6922
6958
|
/**
|
|
6923
6959
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6924
6960
|
*/
|
|
@@ -6930,36 +6966,36 @@ interface Item_linksGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6930
6966
|
/**
|
|
6931
6967
|
* The object property
|
|
6932
6968
|
*/
|
|
6933
|
-
object?:
|
|
6969
|
+
object?: ItemLinksGetResponse_object | null;
|
|
6934
6970
|
/**
|
|
6935
6971
|
* The totalElements property
|
|
6936
6972
|
*/
|
|
6937
6973
|
totalElements?: number | null;
|
|
6938
6974
|
}
|
|
6939
|
-
type
|
|
6975
|
+
type ItemLinksGetResponse_object = (typeof ItemLinksGetResponse_objectObject)[keyof typeof ItemLinksGetResponse_objectObject];
|
|
6940
6976
|
/**
|
|
6941
|
-
* Builds and executes requests for operations under /v1/
|
|
6977
|
+
* Builds and executes requests for operations under /v1/item-links
|
|
6942
6978
|
*/
|
|
6943
|
-
interface
|
|
6979
|
+
interface ItemLinksRequestBuilder extends BaseRequestBuilder<ItemLinksRequestBuilder> {
|
|
6944
6980
|
/**
|
|
6945
6981
|
* The find property
|
|
6946
6982
|
*/
|
|
6947
6983
|
get find(): FindRequestBuilder$d;
|
|
6948
6984
|
/**
|
|
6949
|
-
* Gets an item from the ApiSdk.v1.
|
|
6985
|
+
* Gets an item from the ApiSdk.v1.itemLinks.item collection
|
|
6950
6986
|
* @param id Unique identifier of the item
|
|
6951
|
-
* @returns {
|
|
6987
|
+
* @returns {ItemLinksItemRequestBuilder}
|
|
6952
6988
|
*/
|
|
6953
|
-
byId(id: string):
|
|
6989
|
+
byId(id: string): ItemLinksItemRequestBuilder;
|
|
6954
6990
|
/**
|
|
6955
|
-
* Get a list of Item
|
|
6991
|
+
* Get a list of Item Link
|
|
6956
6992
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6957
|
-
* @returns {Promise<
|
|
6958
|
-
* @throws {
|
|
6993
|
+
* @returns {Promise<ItemLinksGetResponse>}
|
|
6994
|
+
* @throws {ItemLinks400Error} error when the service returns a 400 status code
|
|
6959
6995
|
*/
|
|
6960
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
6996
|
+
get(requestConfiguration?: RequestConfiguration<ItemLinksRequestBuilderGetQueryParameters> | undefined): Promise<ItemLinksGetResponse | undefined>;
|
|
6961
6997
|
/**
|
|
6962
|
-
* Create a Item
|
|
6998
|
+
* Create a Item Link
|
|
6963
6999
|
* @param body The request body
|
|
6964
7000
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6965
7001
|
* @returns {Promise<ItemLinkDto>}
|
|
@@ -6967,13 +7003,13 @@ interface Item_linksRequestBuilder extends BaseRequestBuilder<Item_linksRequestB
|
|
|
6967
7003
|
*/
|
|
6968
7004
|
post(body: ItemLinkCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ItemLinkDto | undefined>;
|
|
6969
7005
|
/**
|
|
6970
|
-
* Get a list of Item
|
|
7006
|
+
* Get a list of Item Link
|
|
6971
7007
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6972
7008
|
* @returns {RequestInformation}
|
|
6973
7009
|
*/
|
|
6974
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
7010
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ItemLinksRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
6975
7011
|
/**
|
|
6976
|
-
* Create a Item
|
|
7012
|
+
* Create a Item Link
|
|
6977
7013
|
* @param body The request body
|
|
6978
7014
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6979
7015
|
* @returns {RequestInformation}
|
|
@@ -6981,9 +7017,9 @@ interface Item_linksRequestBuilder extends BaseRequestBuilder<Item_linksRequestB
|
|
|
6981
7017
|
toPostRequestInformation(body: ItemLinkCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6982
7018
|
}
|
|
6983
7019
|
/**
|
|
6984
|
-
* Get a list of Item
|
|
7020
|
+
* Get a list of Item Link
|
|
6985
7021
|
*/
|
|
6986
|
-
interface
|
|
7022
|
+
interface ItemLinksRequestBuilderGetQueryParameters {
|
|
6987
7023
|
page?: number;
|
|
6988
7024
|
size?: number;
|
|
6989
7025
|
sort?: string;
|
|
@@ -6994,7 +7030,7 @@ declare const GetSortOrderQueryParameterTypeObject$d: {
|
|
|
6994
7030
|
readonly DESC: "DESC";
|
|
6995
7031
|
readonly ASC: "ASC";
|
|
6996
7032
|
};
|
|
6997
|
-
declare const
|
|
7033
|
+
declare const ItemLinksGetResponse_objectObject: {
|
|
6998
7034
|
readonly List: "list";
|
|
6999
7035
|
};
|
|
7000
7036
|
|
|
@@ -7427,7 +7463,7 @@ interface FindPostResponse$a extends AdditionalDataHolder, Parsable {
|
|
|
7427
7463
|
}
|
|
7428
7464
|
type FindPostResponse_object$a = (typeof FindPostResponse_objectObject$a)[keyof typeof FindPostResponse_objectObject$a];
|
|
7429
7465
|
/**
|
|
7430
|
-
* Builds and executes requests for operations under /v1/
|
|
7466
|
+
* Builds and executes requests for operations under /v1/matrix-fields/find
|
|
7431
7467
|
*/
|
|
7432
7468
|
interface FindRequestBuilder$a extends BaseRequestBuilder<FindRequestBuilder$a> {
|
|
7433
7469
|
/**
|
|
@@ -7466,9 +7502,9 @@ declare const PostSortOrderQueryParameterTypeObject$a: {
|
|
|
7466
7502
|
};
|
|
7467
7503
|
|
|
7468
7504
|
/**
|
|
7469
|
-
* Builds and executes requests for operations under /v1/
|
|
7505
|
+
* Builds and executes requests for operations under /v1/matrix-fields/{id}
|
|
7470
7506
|
*/
|
|
7471
|
-
interface
|
|
7507
|
+
interface MatrixFieldsItemRequestBuilder extends BaseRequestBuilder<MatrixFieldsItemRequestBuilder> {
|
|
7472
7508
|
/**
|
|
7473
7509
|
* Get a Matrix Field by id
|
|
7474
7510
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -7485,7 +7521,7 @@ interface Matrix_fieldsItemRequestBuilder extends BaseRequestBuilder<Matrix_fiel
|
|
|
7485
7521
|
}
|
|
7486
7522
|
|
|
7487
7523
|
type GetSortOrderQueryParameterType$a = (typeof GetSortOrderQueryParameterTypeObject$a)[keyof typeof GetSortOrderQueryParameterTypeObject$a];
|
|
7488
|
-
interface
|
|
7524
|
+
interface MatrixFieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7489
7525
|
/**
|
|
7490
7526
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7491
7527
|
*/
|
|
@@ -7497,45 +7533,45 @@ interface Matrix_fieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
7497
7533
|
/**
|
|
7498
7534
|
* The object property
|
|
7499
7535
|
*/
|
|
7500
|
-
object?:
|
|
7536
|
+
object?: MatrixFieldsGetResponse_object | null;
|
|
7501
7537
|
/**
|
|
7502
7538
|
* The totalElements property
|
|
7503
7539
|
*/
|
|
7504
7540
|
totalElements?: number | null;
|
|
7505
7541
|
}
|
|
7506
|
-
type
|
|
7542
|
+
type MatrixFieldsGetResponse_object = (typeof MatrixFieldsGetResponse_objectObject)[keyof typeof MatrixFieldsGetResponse_objectObject];
|
|
7507
7543
|
/**
|
|
7508
|
-
* Builds and executes requests for operations under /v1/
|
|
7544
|
+
* Builds and executes requests for operations under /v1/matrix-fields
|
|
7509
7545
|
*/
|
|
7510
|
-
interface
|
|
7546
|
+
interface MatrixFieldsRequestBuilder extends BaseRequestBuilder<MatrixFieldsRequestBuilder> {
|
|
7511
7547
|
/**
|
|
7512
7548
|
* The find property
|
|
7513
7549
|
*/
|
|
7514
7550
|
get find(): FindRequestBuilder$a;
|
|
7515
7551
|
/**
|
|
7516
|
-
* Gets an item from the ApiSdk.v1.
|
|
7552
|
+
* Gets an item from the ApiSdk.v1.matrixFields.item collection
|
|
7517
7553
|
* @param id Unique identifier of the item
|
|
7518
|
-
* @returns {
|
|
7554
|
+
* @returns {MatrixFieldsItemRequestBuilder}
|
|
7519
7555
|
*/
|
|
7520
|
-
byId(id: string):
|
|
7556
|
+
byId(id: string): MatrixFieldsItemRequestBuilder;
|
|
7521
7557
|
/**
|
|
7522
7558
|
* Get a list of Matrix Field
|
|
7523
7559
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7524
|
-
* @returns {Promise<
|
|
7525
|
-
* @throws {
|
|
7560
|
+
* @returns {Promise<MatrixFieldsGetResponse>}
|
|
7561
|
+
* @throws {MatrixFields400Error} error when the service returns a 400 status code
|
|
7526
7562
|
*/
|
|
7527
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
7563
|
+
get(requestConfiguration?: RequestConfiguration<MatrixFieldsRequestBuilderGetQueryParameters> | undefined): Promise<MatrixFieldsGetResponse | undefined>;
|
|
7528
7564
|
/**
|
|
7529
7565
|
* Get a list of Matrix Field
|
|
7530
7566
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7531
7567
|
* @returns {RequestInformation}
|
|
7532
7568
|
*/
|
|
7533
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
7569
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MatrixFieldsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
7534
7570
|
}
|
|
7535
7571
|
/**
|
|
7536
7572
|
* Get a list of Matrix Field
|
|
7537
7573
|
*/
|
|
7538
|
-
interface
|
|
7574
|
+
interface MatrixFieldsRequestBuilderGetQueryParameters {
|
|
7539
7575
|
page?: number;
|
|
7540
7576
|
size?: number;
|
|
7541
7577
|
sort?: string;
|
|
@@ -7546,7 +7582,7 @@ declare const GetSortOrderQueryParameterTypeObject$a: {
|
|
|
7546
7582
|
readonly DESC: "DESC";
|
|
7547
7583
|
readonly ASC: "ASC";
|
|
7548
7584
|
};
|
|
7549
|
-
declare const
|
|
7585
|
+
declare const MatrixFieldsGetResponse_objectObject: {
|
|
7550
7586
|
readonly List: "list";
|
|
7551
7587
|
};
|
|
7552
7588
|
|
|
@@ -7884,7 +7920,7 @@ interface FindPostResponse$7 extends AdditionalDataHolder, Parsable {
|
|
|
7884
7920
|
}
|
|
7885
7921
|
type FindPostResponse_object$7 = (typeof FindPostResponse_objectObject$7)[keyof typeof FindPostResponse_objectObject$7];
|
|
7886
7922
|
/**
|
|
7887
|
-
* Builds and executes requests for operations under /v1/
|
|
7923
|
+
* Builds and executes requests for operations under /v1/screen-columns/find
|
|
7888
7924
|
*/
|
|
7889
7925
|
interface FindRequestBuilder$7 extends BaseRequestBuilder<FindRequestBuilder$7> {
|
|
7890
7926
|
/**
|
|
@@ -7924,9 +7960,9 @@ declare const PostSortOrderQueryParameterTypeObject$7: {
|
|
|
7924
7960
|
};
|
|
7925
7961
|
|
|
7926
7962
|
/**
|
|
7927
|
-
* Builds and executes requests for operations under /v1/
|
|
7963
|
+
* Builds and executes requests for operations under /v1/screen-columns/{id}
|
|
7928
7964
|
*/
|
|
7929
|
-
interface
|
|
7965
|
+
interface ScreenColumnsItemRequestBuilder extends BaseRequestBuilder<ScreenColumnsItemRequestBuilder> {
|
|
7930
7966
|
/**
|
|
7931
7967
|
* (Experimental) - Get a Screen Column by id
|
|
7932
7968
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -7943,7 +7979,7 @@ interface Screen_columnsItemRequestBuilder extends BaseRequestBuilder<Screen_col
|
|
|
7943
7979
|
}
|
|
7944
7980
|
|
|
7945
7981
|
type GetSortOrderQueryParameterType$7 = (typeof GetSortOrderQueryParameterTypeObject$7)[keyof typeof GetSortOrderQueryParameterTypeObject$7];
|
|
7946
|
-
interface
|
|
7982
|
+
interface ScreenColumnsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7947
7983
|
/**
|
|
7948
7984
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7949
7985
|
*/
|
|
@@ -7955,45 +7991,45 @@ interface Screen_columnsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
7955
7991
|
/**
|
|
7956
7992
|
* The object property
|
|
7957
7993
|
*/
|
|
7958
|
-
object?:
|
|
7994
|
+
object?: ScreenColumnsGetResponse_object | null;
|
|
7959
7995
|
/**
|
|
7960
7996
|
* The totalElements property
|
|
7961
7997
|
*/
|
|
7962
7998
|
totalElements?: number | null;
|
|
7963
7999
|
}
|
|
7964
|
-
type
|
|
8000
|
+
type ScreenColumnsGetResponse_object = (typeof ScreenColumnsGetResponse_objectObject)[keyof typeof ScreenColumnsGetResponse_objectObject];
|
|
7965
8001
|
/**
|
|
7966
|
-
* Builds and executes requests for operations under /v1/
|
|
8002
|
+
* Builds and executes requests for operations under /v1/screen-columns
|
|
7967
8003
|
*/
|
|
7968
|
-
interface
|
|
8004
|
+
interface ScreenColumnsRequestBuilder extends BaseRequestBuilder<ScreenColumnsRequestBuilder> {
|
|
7969
8005
|
/**
|
|
7970
8006
|
* The find property
|
|
7971
8007
|
*/
|
|
7972
8008
|
get find(): FindRequestBuilder$7;
|
|
7973
8009
|
/**
|
|
7974
|
-
* Gets an item from the ApiSdk.v1.
|
|
8010
|
+
* Gets an item from the ApiSdk.v1.screenColumns.item collection
|
|
7975
8011
|
* @param id Unique identifier of the item
|
|
7976
|
-
* @returns {
|
|
8012
|
+
* @returns {ScreenColumnsItemRequestBuilder}
|
|
7977
8013
|
*/
|
|
7978
|
-
byId(id: string):
|
|
8014
|
+
byId(id: string): ScreenColumnsItemRequestBuilder;
|
|
7979
8015
|
/**
|
|
7980
8016
|
* (Experimental) - Get a list of Screen Column
|
|
7981
8017
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7982
|
-
* @returns {Promise<
|
|
7983
|
-
* @throws {
|
|
8018
|
+
* @returns {Promise<ScreenColumnsGetResponse>}
|
|
8019
|
+
* @throws {ScreenColumns400Error} error when the service returns a 400 status code
|
|
7984
8020
|
*/
|
|
7985
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8021
|
+
get(requestConfiguration?: RequestConfiguration<ScreenColumnsRequestBuilderGetQueryParameters> | undefined): Promise<ScreenColumnsGetResponse | undefined>;
|
|
7986
8022
|
/**
|
|
7987
8023
|
* (Experimental) - Get a list of Screen Column
|
|
7988
8024
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7989
8025
|
* @returns {RequestInformation}
|
|
7990
8026
|
*/
|
|
7991
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
8027
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ScreenColumnsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
7992
8028
|
}
|
|
7993
8029
|
/**
|
|
7994
8030
|
* (Experimental) - Get a list of Screen Column
|
|
7995
8031
|
*/
|
|
7996
|
-
interface
|
|
8032
|
+
interface ScreenColumnsRequestBuilderGetQueryParameters {
|
|
7997
8033
|
page?: number;
|
|
7998
8034
|
parentId?: string;
|
|
7999
8035
|
screenSectionId?: string;
|
|
@@ -8005,7 +8041,7 @@ declare const GetSortOrderQueryParameterTypeObject$7: {
|
|
|
8005
8041
|
readonly DESC: "DESC";
|
|
8006
8042
|
readonly ASC: "ASC";
|
|
8007
8043
|
};
|
|
8008
|
-
declare const
|
|
8044
|
+
declare const ScreenColumnsGetResponse_objectObject: {
|
|
8009
8045
|
readonly List: "list";
|
|
8010
8046
|
};
|
|
8011
8047
|
|
|
@@ -8017,7 +8053,7 @@ interface FindPostResponse$6 extends AdditionalDataHolder, Parsable {
|
|
|
8017
8053
|
/**
|
|
8018
8054
|
* The data property
|
|
8019
8055
|
*/
|
|
8020
|
-
data?:
|
|
8056
|
+
data?: ScreenDto[] | null;
|
|
8021
8057
|
/**
|
|
8022
8058
|
* The object property
|
|
8023
8059
|
*/
|
|
@@ -8029,11 +8065,11 @@ interface FindPostResponse$6 extends AdditionalDataHolder, Parsable {
|
|
|
8029
8065
|
}
|
|
8030
8066
|
type FindPostResponse_object$6 = (typeof FindPostResponse_objectObject$6)[keyof typeof FindPostResponse_objectObject$6];
|
|
8031
8067
|
/**
|
|
8032
|
-
* Builds and executes requests for operations under /v1/
|
|
8068
|
+
* Builds and executes requests for operations under /v1/screens/find
|
|
8033
8069
|
*/
|
|
8034
8070
|
interface FindRequestBuilder$6 extends BaseRequestBuilder<FindRequestBuilder$6> {
|
|
8035
8071
|
/**
|
|
8036
|
-
* Find a list of Screen
|
|
8072
|
+
* Find a list of Screen
|
|
8037
8073
|
* @param body The request body
|
|
8038
8074
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8039
8075
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -8041,7 +8077,7 @@ interface FindRequestBuilder$6 extends BaseRequestBuilder<FindRequestBuilder$6>
|
|
|
8041
8077
|
*/
|
|
8042
8078
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$6> | undefined): Promise<FindPostResponse$6 | undefined>;
|
|
8043
8079
|
/**
|
|
8044
|
-
* Find a list of Screen
|
|
8080
|
+
* Find a list of Screen
|
|
8045
8081
|
* @param body The request body
|
|
8046
8082
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8047
8083
|
* @returns {RequestInformation}
|
|
@@ -8049,14 +8085,14 @@ interface FindRequestBuilder$6 extends BaseRequestBuilder<FindRequestBuilder$6>
|
|
|
8049
8085
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$6> | undefined): RequestInformation;
|
|
8050
8086
|
}
|
|
8051
8087
|
/**
|
|
8052
|
-
* Find a list of Screen
|
|
8088
|
+
* Find a list of Screen
|
|
8053
8089
|
*/
|
|
8054
8090
|
interface FindRequestBuilderPostQueryParameters$6 {
|
|
8055
8091
|
page?: number;
|
|
8056
|
-
screenId?: string;
|
|
8057
8092
|
size?: number;
|
|
8058
8093
|
sort?: string;
|
|
8059
8094
|
sortOrder?: PostSortOrderQueryParameterType$6;
|
|
8095
|
+
tableId?: string;
|
|
8060
8096
|
}
|
|
8061
8097
|
type PostSortOrderQueryParameterType$6 = (typeof PostSortOrderQueryParameterTypeObject$6)[keyof typeof PostSortOrderQueryParameterTypeObject$6];
|
|
8062
8098
|
declare const FindPostResponse_objectObject$6: {
|
|
@@ -8068,18 +8104,18 @@ declare const PostSortOrderQueryParameterTypeObject$6: {
|
|
|
8068
8104
|
};
|
|
8069
8105
|
|
|
8070
8106
|
/**
|
|
8071
|
-
* Builds and executes requests for operations under /v1/
|
|
8107
|
+
* Builds and executes requests for operations under /v1/screens/{id}
|
|
8072
8108
|
*/
|
|
8073
|
-
interface
|
|
8109
|
+
interface ScreensItemRequestBuilder extends BaseRequestBuilder<ScreensItemRequestBuilder> {
|
|
8074
8110
|
/**
|
|
8075
|
-
* (Experimental) - Get a Screen
|
|
8111
|
+
* (Experimental) - Get a Screen by id
|
|
8076
8112
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8077
|
-
* @returns {Promise<
|
|
8078
|
-
* @throws {
|
|
8113
|
+
* @returns {Promise<ScreenDto>}
|
|
8114
|
+
* @throws {ScreenDto400Error} error when the service returns a 400 status code
|
|
8079
8115
|
*/
|
|
8080
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<
|
|
8116
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ScreenDto | undefined>;
|
|
8081
8117
|
/**
|
|
8082
|
-
* (Experimental) - Get a Screen
|
|
8118
|
+
* (Experimental) - Get a Screen by id
|
|
8083
8119
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8084
8120
|
* @returns {RequestInformation}
|
|
8085
8121
|
*/
|
|
@@ -8087,7 +8123,7 @@ interface Screen_sectionsItemRequestBuilder extends BaseRequestBuilder<Screen_se
|
|
|
8087
8123
|
}
|
|
8088
8124
|
|
|
8089
8125
|
type GetSortOrderQueryParameterType$6 = (typeof GetSortOrderQueryParameterTypeObject$6)[keyof typeof GetSortOrderQueryParameterTypeObject$6];
|
|
8090
|
-
interface
|
|
8126
|
+
interface ScreensGetResponse extends AdditionalDataHolder, Parsable {
|
|
8091
8127
|
/**
|
|
8092
8128
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8093
8129
|
*/
|
|
@@ -8095,60 +8131,60 @@ interface Screen_sectionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
8095
8131
|
/**
|
|
8096
8132
|
* The data property
|
|
8097
8133
|
*/
|
|
8098
|
-
data?:
|
|
8134
|
+
data?: ScreenDto[] | null;
|
|
8099
8135
|
/**
|
|
8100
8136
|
* The object property
|
|
8101
8137
|
*/
|
|
8102
|
-
object?:
|
|
8138
|
+
object?: ScreensGetResponse_object | null;
|
|
8103
8139
|
/**
|
|
8104
8140
|
* The totalElements property
|
|
8105
8141
|
*/
|
|
8106
8142
|
totalElements?: number | null;
|
|
8107
8143
|
}
|
|
8108
|
-
type
|
|
8144
|
+
type ScreensGetResponse_object = (typeof ScreensGetResponse_objectObject)[keyof typeof ScreensGetResponse_objectObject];
|
|
8109
8145
|
/**
|
|
8110
|
-
* Builds and executes requests for operations under /v1/
|
|
8146
|
+
* Builds and executes requests for operations under /v1/screens
|
|
8111
8147
|
*/
|
|
8112
|
-
interface
|
|
8148
|
+
interface ScreensRequestBuilder extends BaseRequestBuilder<ScreensRequestBuilder> {
|
|
8113
8149
|
/**
|
|
8114
8150
|
* The find property
|
|
8115
8151
|
*/
|
|
8116
8152
|
get find(): FindRequestBuilder$6;
|
|
8117
8153
|
/**
|
|
8118
|
-
* Gets an item from the ApiSdk.v1.
|
|
8154
|
+
* Gets an item from the ApiSdk.v1.screens.item collection
|
|
8119
8155
|
* @param id Unique identifier of the item
|
|
8120
|
-
* @returns {
|
|
8156
|
+
* @returns {ScreensItemRequestBuilder}
|
|
8121
8157
|
*/
|
|
8122
|
-
byId(id: string):
|
|
8158
|
+
byId(id: string): ScreensItemRequestBuilder;
|
|
8123
8159
|
/**
|
|
8124
|
-
* (Experimental) - Get a list of Screen
|
|
8160
|
+
* (Experimental) - Get a list of Screen
|
|
8125
8161
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8126
|
-
* @returns {Promise<
|
|
8127
|
-
* @throws {
|
|
8162
|
+
* @returns {Promise<ScreensGetResponse>}
|
|
8163
|
+
* @throws {Screens400Error} error when the service returns a 400 status code
|
|
8128
8164
|
*/
|
|
8129
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8165
|
+
get(requestConfiguration?: RequestConfiguration<ScreensRequestBuilderGetQueryParameters> | undefined): Promise<ScreensGetResponse | undefined>;
|
|
8130
8166
|
/**
|
|
8131
|
-
* (Experimental) - Get a list of Screen
|
|
8167
|
+
* (Experimental) - Get a list of Screen
|
|
8132
8168
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8133
8169
|
* @returns {RequestInformation}
|
|
8134
8170
|
*/
|
|
8135
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
8171
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ScreensRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
8136
8172
|
}
|
|
8137
8173
|
/**
|
|
8138
|
-
* (Experimental) - Get a list of Screen
|
|
8174
|
+
* (Experimental) - Get a list of Screen
|
|
8139
8175
|
*/
|
|
8140
|
-
interface
|
|
8176
|
+
interface ScreensRequestBuilderGetQueryParameters {
|
|
8141
8177
|
page?: number;
|
|
8142
|
-
screenId?: string;
|
|
8143
8178
|
size?: number;
|
|
8144
8179
|
sort?: string;
|
|
8145
8180
|
sortOrder?: GetSortOrderQueryParameterType$6;
|
|
8181
|
+
tableId?: string;
|
|
8146
8182
|
}
|
|
8147
8183
|
declare const GetSortOrderQueryParameterTypeObject$6: {
|
|
8148
8184
|
readonly DESC: "DESC";
|
|
8149
8185
|
readonly ASC: "ASC";
|
|
8150
8186
|
};
|
|
8151
|
-
declare const
|
|
8187
|
+
declare const ScreensGetResponse_objectObject: {
|
|
8152
8188
|
readonly List: "list";
|
|
8153
8189
|
};
|
|
8154
8190
|
|
|
@@ -8160,7 +8196,7 @@ interface FindPostResponse$5 extends AdditionalDataHolder, Parsable {
|
|
|
8160
8196
|
/**
|
|
8161
8197
|
* The data property
|
|
8162
8198
|
*/
|
|
8163
|
-
data?:
|
|
8199
|
+
data?: ScreenSectionDto[] | null;
|
|
8164
8200
|
/**
|
|
8165
8201
|
* The object property
|
|
8166
8202
|
*/
|
|
@@ -8172,11 +8208,11 @@ interface FindPostResponse$5 extends AdditionalDataHolder, Parsable {
|
|
|
8172
8208
|
}
|
|
8173
8209
|
type FindPostResponse_object$5 = (typeof FindPostResponse_objectObject$5)[keyof typeof FindPostResponse_objectObject$5];
|
|
8174
8210
|
/**
|
|
8175
|
-
* Builds and executes requests for operations under /v1/
|
|
8211
|
+
* Builds and executes requests for operations under /v1/screen-sections/find
|
|
8176
8212
|
*/
|
|
8177
8213
|
interface FindRequestBuilder$5 extends BaseRequestBuilder<FindRequestBuilder$5> {
|
|
8178
8214
|
/**
|
|
8179
|
-
* Find a list of Screen
|
|
8215
|
+
* Find a list of Screen Section
|
|
8180
8216
|
* @param body The request body
|
|
8181
8217
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8182
8218
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -8184,7 +8220,7 @@ interface FindRequestBuilder$5 extends BaseRequestBuilder<FindRequestBuilder$5>
|
|
|
8184
8220
|
*/
|
|
8185
8221
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$5> | undefined): Promise<FindPostResponse$5 | undefined>;
|
|
8186
8222
|
/**
|
|
8187
|
-
* Find a list of Screen
|
|
8223
|
+
* Find a list of Screen Section
|
|
8188
8224
|
* @param body The request body
|
|
8189
8225
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8190
8226
|
* @returns {RequestInformation}
|
|
@@ -8192,14 +8228,14 @@ interface FindRequestBuilder$5 extends BaseRequestBuilder<FindRequestBuilder$5>
|
|
|
8192
8228
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$5> | undefined): RequestInformation;
|
|
8193
8229
|
}
|
|
8194
8230
|
/**
|
|
8195
|
-
* Find a list of Screen
|
|
8231
|
+
* Find a list of Screen Section
|
|
8196
8232
|
*/
|
|
8197
8233
|
interface FindRequestBuilderPostQueryParameters$5 {
|
|
8198
8234
|
page?: number;
|
|
8235
|
+
screenId?: string;
|
|
8199
8236
|
size?: number;
|
|
8200
8237
|
sort?: string;
|
|
8201
8238
|
sortOrder?: PostSortOrderQueryParameterType$5;
|
|
8202
|
-
tableId?: string;
|
|
8203
8239
|
}
|
|
8204
8240
|
type PostSortOrderQueryParameterType$5 = (typeof PostSortOrderQueryParameterTypeObject$5)[keyof typeof PostSortOrderQueryParameterTypeObject$5];
|
|
8205
8241
|
declare const FindPostResponse_objectObject$5: {
|
|
@@ -8211,18 +8247,18 @@ declare const PostSortOrderQueryParameterTypeObject$5: {
|
|
|
8211
8247
|
};
|
|
8212
8248
|
|
|
8213
8249
|
/**
|
|
8214
|
-
* Builds and executes requests for operations under /v1/
|
|
8250
|
+
* Builds and executes requests for operations under /v1/screen-sections/{id}
|
|
8215
8251
|
*/
|
|
8216
|
-
interface
|
|
8252
|
+
interface ScreenSectionsItemRequestBuilder extends BaseRequestBuilder<ScreenSectionsItemRequestBuilder> {
|
|
8217
8253
|
/**
|
|
8218
|
-
* (Experimental) - Get a Screen by id
|
|
8254
|
+
* (Experimental) - Get a Screen Section by id
|
|
8219
8255
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8220
|
-
* @returns {Promise<
|
|
8221
|
-
* @throws {
|
|
8256
|
+
* @returns {Promise<ScreenSectionDto>}
|
|
8257
|
+
* @throws {ScreenSectionDto400Error} error when the service returns a 400 status code
|
|
8222
8258
|
*/
|
|
8223
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<
|
|
8259
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ScreenSectionDto | undefined>;
|
|
8224
8260
|
/**
|
|
8225
|
-
* (Experimental) - Get a Screen by id
|
|
8261
|
+
* (Experimental) - Get a Screen Section by id
|
|
8226
8262
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8227
8263
|
* @returns {RequestInformation}
|
|
8228
8264
|
*/
|
|
@@ -8230,7 +8266,7 @@ interface ScreensItemRequestBuilder extends BaseRequestBuilder<ScreensItemReques
|
|
|
8230
8266
|
}
|
|
8231
8267
|
|
|
8232
8268
|
type GetSortOrderQueryParameterType$5 = (typeof GetSortOrderQueryParameterTypeObject$5)[keyof typeof GetSortOrderQueryParameterTypeObject$5];
|
|
8233
|
-
interface
|
|
8269
|
+
interface ScreenSectionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
8234
8270
|
/**
|
|
8235
8271
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8236
8272
|
*/
|
|
@@ -8238,60 +8274,60 @@ interface ScreensGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
8238
8274
|
/**
|
|
8239
8275
|
* The data property
|
|
8240
8276
|
*/
|
|
8241
|
-
data?:
|
|
8277
|
+
data?: ScreenSectionDto[] | null;
|
|
8242
8278
|
/**
|
|
8243
8279
|
* The object property
|
|
8244
8280
|
*/
|
|
8245
|
-
object?:
|
|
8281
|
+
object?: ScreenSectionsGetResponse_object | null;
|
|
8246
8282
|
/**
|
|
8247
8283
|
* The totalElements property
|
|
8248
8284
|
*/
|
|
8249
8285
|
totalElements?: number | null;
|
|
8250
8286
|
}
|
|
8251
|
-
type
|
|
8287
|
+
type ScreenSectionsGetResponse_object = (typeof ScreenSectionsGetResponse_objectObject)[keyof typeof ScreenSectionsGetResponse_objectObject];
|
|
8252
8288
|
/**
|
|
8253
|
-
* Builds and executes requests for operations under /v1/
|
|
8289
|
+
* Builds and executes requests for operations under /v1/screen-sections
|
|
8254
8290
|
*/
|
|
8255
|
-
interface
|
|
8291
|
+
interface ScreenSectionsRequestBuilder extends BaseRequestBuilder<ScreenSectionsRequestBuilder> {
|
|
8256
8292
|
/**
|
|
8257
8293
|
* The find property
|
|
8258
8294
|
*/
|
|
8259
8295
|
get find(): FindRequestBuilder$5;
|
|
8260
8296
|
/**
|
|
8261
|
-
* Gets an item from the ApiSdk.v1.
|
|
8297
|
+
* Gets an item from the ApiSdk.v1.screenSections.item collection
|
|
8262
8298
|
* @param id Unique identifier of the item
|
|
8263
|
-
* @returns {
|
|
8299
|
+
* @returns {ScreenSectionsItemRequestBuilder}
|
|
8264
8300
|
*/
|
|
8265
|
-
byId(id: string):
|
|
8301
|
+
byId(id: string): ScreenSectionsItemRequestBuilder;
|
|
8266
8302
|
/**
|
|
8267
|
-
* (Experimental) - Get a list of Screen
|
|
8303
|
+
* (Experimental) - Get a list of Screen Section
|
|
8268
8304
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8269
|
-
* @returns {Promise<
|
|
8270
|
-
* @throws {
|
|
8305
|
+
* @returns {Promise<ScreenSectionsGetResponse>}
|
|
8306
|
+
* @throws {ScreenSections400Error} error when the service returns a 400 status code
|
|
8271
8307
|
*/
|
|
8272
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8308
|
+
get(requestConfiguration?: RequestConfiguration<ScreenSectionsRequestBuilderGetQueryParameters> | undefined): Promise<ScreenSectionsGetResponse | undefined>;
|
|
8273
8309
|
/**
|
|
8274
|
-
* (Experimental) - Get a list of Screen
|
|
8310
|
+
* (Experimental) - Get a list of Screen Section
|
|
8275
8311
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8276
8312
|
* @returns {RequestInformation}
|
|
8277
8313
|
*/
|
|
8278
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
8314
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ScreenSectionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
8279
8315
|
}
|
|
8280
8316
|
/**
|
|
8281
|
-
* (Experimental) - Get a list of Screen
|
|
8317
|
+
* (Experimental) - Get a list of Screen Section
|
|
8282
8318
|
*/
|
|
8283
|
-
interface
|
|
8319
|
+
interface ScreenSectionsRequestBuilderGetQueryParameters {
|
|
8284
8320
|
page?: number;
|
|
8321
|
+
screenId?: string;
|
|
8285
8322
|
size?: number;
|
|
8286
8323
|
sort?: string;
|
|
8287
8324
|
sortOrder?: GetSortOrderQueryParameterType$5;
|
|
8288
|
-
tableId?: string;
|
|
8289
8325
|
}
|
|
8290
8326
|
declare const GetSortOrderQueryParameterTypeObject$5: {
|
|
8291
8327
|
readonly DESC: "DESC";
|
|
8292
8328
|
readonly ASC: "ASC";
|
|
8293
8329
|
};
|
|
8294
|
-
declare const
|
|
8330
|
+
declare const ScreenSectionsGetResponse_objectObject: {
|
|
8295
8331
|
readonly List: "list";
|
|
8296
8332
|
};
|
|
8297
8333
|
|
|
@@ -8788,11 +8824,11 @@ interface FindPostResponse$1 extends AdditionalDataHolder, Parsable {
|
|
|
8788
8824
|
}
|
|
8789
8825
|
type FindPostResponse_object$1 = (typeof FindPostResponse_objectObject$1)[keyof typeof FindPostResponse_objectObject$1];
|
|
8790
8826
|
/**
|
|
8791
|
-
* Builds and executes requests for operations under /v1/
|
|
8827
|
+
* Builds and executes requests for operations under /v1/user-groups/find
|
|
8792
8828
|
*/
|
|
8793
8829
|
interface FindRequestBuilder$1 extends BaseRequestBuilder<FindRequestBuilder$1> {
|
|
8794
8830
|
/**
|
|
8795
|
-
* Find a list of
|
|
8831
|
+
* Find a list of User Group
|
|
8796
8832
|
* @param body The request body
|
|
8797
8833
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8798
8834
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -8800,7 +8836,7 @@ interface FindRequestBuilder$1 extends BaseRequestBuilder<FindRequestBuilder$1>
|
|
|
8800
8836
|
*/
|
|
8801
8837
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$1> | undefined): Promise<FindPostResponse$1 | undefined>;
|
|
8802
8838
|
/**
|
|
8803
|
-
* Find a list of
|
|
8839
|
+
* Find a list of User Group
|
|
8804
8840
|
* @param body The request body
|
|
8805
8841
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8806
8842
|
* @returns {RequestInformation}
|
|
@@ -8808,7 +8844,7 @@ interface FindRequestBuilder$1 extends BaseRequestBuilder<FindRequestBuilder$1>
|
|
|
8808
8844
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$1> | undefined): RequestInformation;
|
|
8809
8845
|
}
|
|
8810
8846
|
/**
|
|
8811
|
-
* Find a list of
|
|
8847
|
+
* Find a list of User Group
|
|
8812
8848
|
*/
|
|
8813
8849
|
interface FindRequestBuilderPostQueryParameters$1 {
|
|
8814
8850
|
page?: number;
|
|
@@ -8826,9 +8862,9 @@ declare const PostSortOrderQueryParameterTypeObject$1: {
|
|
|
8826
8862
|
};
|
|
8827
8863
|
|
|
8828
8864
|
/**
|
|
8829
|
-
* Builds and executes requests for operations under /v1/
|
|
8865
|
+
* Builds and executes requests for operations under /v1/user-groups/{id}/add-members
|
|
8830
8866
|
*/
|
|
8831
|
-
interface
|
|
8867
|
+
interface AddMembersRequestBuilder extends BaseRequestBuilder<AddMembersRequestBuilder> {
|
|
8832
8868
|
/**
|
|
8833
8869
|
* Add members to a user group
|
|
8834
8870
|
* @param body The request body
|
|
@@ -8846,9 +8882,9 @@ interface Add_membersRequestBuilder extends BaseRequestBuilder<Add_membersReques
|
|
|
8846
8882
|
}
|
|
8847
8883
|
|
|
8848
8884
|
/**
|
|
8849
|
-
* Builds and executes requests for operations under /v1/
|
|
8885
|
+
* Builds and executes requests for operations under /v1/user-groups/{id}/remove-members
|
|
8850
8886
|
*/
|
|
8851
|
-
interface
|
|
8887
|
+
interface RemoveMembersRequestBuilder extends BaseRequestBuilder<RemoveMembersRequestBuilder> {
|
|
8852
8888
|
/**
|
|
8853
8889
|
* Remove members from a user group
|
|
8854
8890
|
* @param body The request body
|
|
@@ -8866,33 +8902,33 @@ interface Remove_membersRequestBuilder extends BaseRequestBuilder<Remove_members
|
|
|
8866
8902
|
}
|
|
8867
8903
|
|
|
8868
8904
|
/**
|
|
8869
|
-
* Builds and executes requests for operations under /v1/
|
|
8905
|
+
* Builds and executes requests for operations under /v1/user-groups/{id}
|
|
8870
8906
|
*/
|
|
8871
|
-
interface
|
|
8907
|
+
interface UserGroupsItemRequestBuilder extends BaseRequestBuilder<UserGroupsItemRequestBuilder> {
|
|
8872
8908
|
/**
|
|
8873
|
-
* The
|
|
8909
|
+
* The addMembers property
|
|
8874
8910
|
*/
|
|
8875
|
-
get
|
|
8911
|
+
get addMembers(): AddMembersRequestBuilder;
|
|
8876
8912
|
/**
|
|
8877
|
-
* The
|
|
8913
|
+
* The removeMembers property
|
|
8878
8914
|
*/
|
|
8879
|
-
get
|
|
8915
|
+
get removeMembers(): RemoveMembersRequestBuilder;
|
|
8880
8916
|
/**
|
|
8881
|
-
* Delete a
|
|
8917
|
+
* Delete a User Group by id
|
|
8882
8918
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8883
8919
|
* @returns {Promise<UserGroupDto>}
|
|
8884
8920
|
* @throws {UserGroupDto400Error} error when the service returns a 400 status code
|
|
8885
8921
|
*/
|
|
8886
8922
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserGroupDto | undefined>;
|
|
8887
8923
|
/**
|
|
8888
|
-
* Get a
|
|
8924
|
+
* Get a User Group by id
|
|
8889
8925
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8890
8926
|
* @returns {Promise<UserGroupDto>}
|
|
8891
8927
|
* @throws {UserGroupDto400Error} error when the service returns a 400 status code
|
|
8892
8928
|
*/
|
|
8893
8929
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserGroupDto | undefined>;
|
|
8894
8930
|
/**
|
|
8895
|
-
* Patch a
|
|
8931
|
+
* Patch a User Group
|
|
8896
8932
|
* @param body The request body
|
|
8897
8933
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8898
8934
|
* @returns {Promise<UserGroupDto>}
|
|
@@ -8900,19 +8936,19 @@ interface User_groupsItemRequestBuilder extends BaseRequestBuilder<User_groupsIt
|
|
|
8900
8936
|
*/
|
|
8901
8937
|
patch(body: UpdateUserGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserGroupDto | undefined>;
|
|
8902
8938
|
/**
|
|
8903
|
-
* Delete a
|
|
8939
|
+
* Delete a User Group by id
|
|
8904
8940
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8905
8941
|
* @returns {RequestInformation}
|
|
8906
8942
|
*/
|
|
8907
8943
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8908
8944
|
/**
|
|
8909
|
-
* Get a
|
|
8945
|
+
* Get a User Group by id
|
|
8910
8946
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8911
8947
|
* @returns {RequestInformation}
|
|
8912
8948
|
*/
|
|
8913
8949
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8914
8950
|
/**
|
|
8915
|
-
* Patch a
|
|
8951
|
+
* Patch a User Group
|
|
8916
8952
|
* @param body The request body
|
|
8917
8953
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8918
8954
|
* @returns {RequestInformation}
|
|
@@ -8921,7 +8957,7 @@ interface User_groupsItemRequestBuilder extends BaseRequestBuilder<User_groupsIt
|
|
|
8921
8957
|
}
|
|
8922
8958
|
|
|
8923
8959
|
type GetSortOrderQueryParameterType$1 = (typeof GetSortOrderQueryParameterTypeObject$1)[keyof typeof GetSortOrderQueryParameterTypeObject$1];
|
|
8924
|
-
interface
|
|
8960
|
+
interface UserGroupsGetResponse extends AdditionalDataHolder, Parsable {
|
|
8925
8961
|
/**
|
|
8926
8962
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8927
8963
|
*/
|
|
@@ -8933,36 +8969,36 @@ interface User_groupsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
8933
8969
|
/**
|
|
8934
8970
|
* The object property
|
|
8935
8971
|
*/
|
|
8936
|
-
object?:
|
|
8972
|
+
object?: UserGroupsGetResponse_object | null;
|
|
8937
8973
|
/**
|
|
8938
8974
|
* The totalElements property
|
|
8939
8975
|
*/
|
|
8940
8976
|
totalElements?: number | null;
|
|
8941
8977
|
}
|
|
8942
|
-
type
|
|
8978
|
+
type UserGroupsGetResponse_object = (typeof UserGroupsGetResponse_objectObject)[keyof typeof UserGroupsGetResponse_objectObject];
|
|
8943
8979
|
/**
|
|
8944
|
-
* Builds and executes requests for operations under /v1/
|
|
8980
|
+
* Builds and executes requests for operations under /v1/user-groups
|
|
8945
8981
|
*/
|
|
8946
|
-
interface
|
|
8982
|
+
interface UserGroupsRequestBuilder extends BaseRequestBuilder<UserGroupsRequestBuilder> {
|
|
8947
8983
|
/**
|
|
8948
8984
|
* The find property
|
|
8949
8985
|
*/
|
|
8950
8986
|
get find(): FindRequestBuilder$1;
|
|
8951
8987
|
/**
|
|
8952
|
-
* Gets an item from the ApiSdk.v1.
|
|
8988
|
+
* Gets an item from the ApiSdk.v1.userGroups.item collection
|
|
8953
8989
|
* @param id Unique identifier of the item
|
|
8954
|
-
* @returns {
|
|
8990
|
+
* @returns {UserGroupsItemRequestBuilder}
|
|
8955
8991
|
*/
|
|
8956
|
-
byId(id: string):
|
|
8992
|
+
byId(id: string): UserGroupsItemRequestBuilder;
|
|
8957
8993
|
/**
|
|
8958
|
-
* Get a list of
|
|
8994
|
+
* Get a list of User Group
|
|
8959
8995
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8960
|
-
* @returns {Promise<
|
|
8961
|
-
* @throws {
|
|
8996
|
+
* @returns {Promise<UserGroupsGetResponse>}
|
|
8997
|
+
* @throws {UserGroups400Error} error when the service returns a 400 status code
|
|
8962
8998
|
*/
|
|
8963
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8999
|
+
get(requestConfiguration?: RequestConfiguration<UserGroupsRequestBuilderGetQueryParameters> | undefined): Promise<UserGroupsGetResponse | undefined>;
|
|
8964
9000
|
/**
|
|
8965
|
-
* Create a
|
|
9001
|
+
* Create a User Group
|
|
8966
9002
|
* @param body The request body
|
|
8967
9003
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8968
9004
|
* @returns {Promise<UserGroupDto>}
|
|
@@ -8970,13 +9006,13 @@ interface User_groupsRequestBuilder extends BaseRequestBuilder<User_groupsReques
|
|
|
8970
9006
|
*/
|
|
8971
9007
|
post(body: CreateUserGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserGroupDto | undefined>;
|
|
8972
9008
|
/**
|
|
8973
|
-
* Get a list of
|
|
9009
|
+
* Get a list of User Group
|
|
8974
9010
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8975
9011
|
* @returns {RequestInformation}
|
|
8976
9012
|
*/
|
|
8977
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
9013
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<UserGroupsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
8978
9014
|
/**
|
|
8979
|
-
* Create a
|
|
9015
|
+
* Create a User Group
|
|
8980
9016
|
* @param body The request body
|
|
8981
9017
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8982
9018
|
* @returns {RequestInformation}
|
|
@@ -8984,9 +9020,9 @@ interface User_groupsRequestBuilder extends BaseRequestBuilder<User_groupsReques
|
|
|
8984
9020
|
toPostRequestInformation(body: CreateUserGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8985
9021
|
}
|
|
8986
9022
|
/**
|
|
8987
|
-
* Get a list of
|
|
9023
|
+
* Get a list of User Group
|
|
8988
9024
|
*/
|
|
8989
|
-
interface
|
|
9025
|
+
interface UserGroupsRequestBuilderGetQueryParameters {
|
|
8990
9026
|
page?: number;
|
|
8991
9027
|
size?: number;
|
|
8992
9028
|
sort?: string;
|
|
@@ -8996,7 +9032,7 @@ declare const GetSortOrderQueryParameterTypeObject$1: {
|
|
|
8996
9032
|
readonly DESC: "DESC";
|
|
8997
9033
|
readonly ASC: "ASC";
|
|
8998
9034
|
};
|
|
8999
|
-
declare const
|
|
9035
|
+
declare const UserGroupsGetResponse_objectObject: {
|
|
9000
9036
|
readonly List: "list";
|
|
9001
9037
|
};
|
|
9002
9038
|
|
|
@@ -9170,33 +9206,33 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9170
9206
|
*/
|
|
9171
9207
|
get accounts(): AccountsRequestBuilder;
|
|
9172
9208
|
/**
|
|
9173
|
-
* The
|
|
9209
|
+
* The auditLogs property
|
|
9174
9210
|
*/
|
|
9175
|
-
get
|
|
9211
|
+
get auditLogs(): AuditLogsRequestBuilder;
|
|
9176
9212
|
/**
|
|
9177
|
-
* The
|
|
9213
|
+
* The commentThreads property
|
|
9178
9214
|
*/
|
|
9179
|
-
get
|
|
9215
|
+
get commentThreads(): CommentThreadsRequestBuilder;
|
|
9180
9216
|
/**
|
|
9181
|
-
* The
|
|
9217
|
+
* The commentThreadSubscribers property
|
|
9182
9218
|
*/
|
|
9183
|
-
get
|
|
9219
|
+
get commentThreadSubscribers(): CommentThreadSubscribersRequestBuilder;
|
|
9184
9220
|
/**
|
|
9185
|
-
* The
|
|
9221
|
+
* The dataFactory property
|
|
9186
9222
|
*/
|
|
9187
|
-
get
|
|
9188
|
-
/**
|
|
9189
|
-
* The field_values property
|
|
9190
|
-
*/
|
|
9191
|
-
get field_values(): Field_valuesRequestBuilder;
|
|
9223
|
+
get dataFactory(): DataFactoryRequestBuilder;
|
|
9192
9224
|
/**
|
|
9193
9225
|
* The fields property
|
|
9194
9226
|
*/
|
|
9195
9227
|
get fields(): FieldsRequestBuilder;
|
|
9196
9228
|
/**
|
|
9197
|
-
* The
|
|
9229
|
+
* The fieldValues property
|
|
9230
|
+
*/
|
|
9231
|
+
get fieldValues(): FieldValuesRequestBuilder;
|
|
9232
|
+
/**
|
|
9233
|
+
* The itemLinks property
|
|
9198
9234
|
*/
|
|
9199
|
-
get
|
|
9235
|
+
get itemLinks(): ItemLinksRequestBuilder;
|
|
9200
9236
|
/**
|
|
9201
9237
|
* The items property
|
|
9202
9238
|
*/
|
|
@@ -9206,9 +9242,9 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9206
9242
|
*/
|
|
9207
9243
|
get levels(): LevelsRequestBuilder;
|
|
9208
9244
|
/**
|
|
9209
|
-
* The
|
|
9245
|
+
* The matrixFields property
|
|
9210
9246
|
*/
|
|
9211
|
-
get
|
|
9247
|
+
get matrixFields(): MatrixFieldsRequestBuilder;
|
|
9212
9248
|
/**
|
|
9213
9249
|
* The partitions property
|
|
9214
9250
|
*/
|
|
@@ -9218,17 +9254,17 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9218
9254
|
*/
|
|
9219
9255
|
get publications(): PublicationsRequestBuilder;
|
|
9220
9256
|
/**
|
|
9221
|
-
* The
|
|
9257
|
+
* The screenColumns property
|
|
9222
9258
|
*/
|
|
9223
|
-
get
|
|
9224
|
-
/**
|
|
9225
|
-
* The screen_sections property
|
|
9226
|
-
*/
|
|
9227
|
-
get screen_sections(): Screen_sectionsRequestBuilder;
|
|
9259
|
+
get screenColumns(): ScreenColumnsRequestBuilder;
|
|
9228
9260
|
/**
|
|
9229
9261
|
* The screens property
|
|
9230
9262
|
*/
|
|
9231
9263
|
get screens(): ScreensRequestBuilder;
|
|
9264
|
+
/**
|
|
9265
|
+
* The screenSections property
|
|
9266
|
+
*/
|
|
9267
|
+
get screenSections(): ScreenSectionsRequestBuilder;
|
|
9232
9268
|
/**
|
|
9233
9269
|
* The sections property
|
|
9234
9270
|
*/
|
|
@@ -9242,9 +9278,9 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9242
9278
|
*/
|
|
9243
9279
|
get tables(): TablesRequestBuilder;
|
|
9244
9280
|
/**
|
|
9245
|
-
* The
|
|
9281
|
+
* The userGroups property
|
|
9246
9282
|
*/
|
|
9247
|
-
get
|
|
9283
|
+
get userGroups(): UserGroupsRequestBuilder;
|
|
9248
9284
|
/**
|
|
9249
9285
|
* The users property
|
|
9250
9286
|
*/
|
|
@@ -9255,14 +9291,6 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9255
9291
|
* The main entry point of the SDK, exposes the configuration and the fluent API.
|
|
9256
9292
|
*/
|
|
9257
9293
|
interface ApiClient extends BaseRequestBuilder<ApiClient> {
|
|
9258
|
-
/**
|
|
9259
|
-
* The featureFlag property
|
|
9260
|
-
*/
|
|
9261
|
-
get featureFlag(): FeatureFlagRequestBuilder;
|
|
9262
|
-
/**
|
|
9263
|
-
* The probe property
|
|
9264
|
-
*/
|
|
9265
|
-
get probe(): ProbeRequestBuilder;
|
|
9266
9294
|
/**
|
|
9267
9295
|
* The v1 property
|
|
9268
9296
|
*/
|
|
@@ -9284,4 +9312,4 @@ declare const ApiClientNavigationMetadata: Record<Exclude<keyof ApiClient, KeysT
|
|
|
9284
9312
|
|
|
9285
9313
|
declare function setup(key: string, url: string): ApiClient;
|
|
9286
9314
|
|
|
9287
|
-
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 CreateUserGroupDto, 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 ItemFieldCompositeDTO, type ItemFieldCompositeDTO_type, ItemFieldCompositeDTO_typeObject, type ItemFieldCompositeValueDTO, type ItemFieldCompositeValueDTO_data, 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 PartitionDto_status, PartitionDto_statusObject, 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 UpdateUserGroupDto, 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 UserGroupDto, type UserGroupDto_object, UserGroupDto_objectObject, type UserGroupMembersDto, 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, createCreateUserGroupDtoFromDiscriminatorValue, 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, createItemFieldCompositeDTOFromDiscriminatorValue, createItemFieldCompositeValueDTOFromDiscriminatorValue, createItemFieldCompositeValueDTO_dataFromDiscriminatorValue, 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, createUpdateUserGroupDtoFromDiscriminatorValue, createUpdateVariableDtoFromDiscriminatorValue, createUserDtoFromDiscriminatorValue, createUserGroupDtoFromDiscriminatorValue, createUserGroupMembersDtoFromDiscriminatorValue, createVariableDtoFromDiscriminatorValue, deserializeIntoAccountDto, deserializeIntoApplyAllSuggestionDto, deserializeIntoApplySuggestionDto, deserializeIntoAuditLogDto, deserializeIntoAuditLogDto_details, deserializeIntoCommentThreadCommentCreateDto, deserializeIntoCommentThreadCommentDTO, deserializeIntoCommentThreadCreateDto, deserializeIntoCommentThreadDto, deserializeIntoCommentThreadSubscriberDto, deserializeIntoCommentThreadUpdateDto, deserializeIntoCreateJobDto, deserializeIntoCreateJobDto_output, deserializeIntoCreateJobExecutionDto, deserializeIntoCreateJobExecutionDto_input, deserializeIntoCreateProjectDto, deserializeIntoCreatePublicationDto, deserializeIntoCreateTaskDto, deserializeIntoCreateUserGroupDto, 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, deserializeIntoItemFieldCompositeDTO, deserializeIntoItemFieldCompositeValueDTO, deserializeIntoItemFieldCompositeValueDTO_data, 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, deserializeIntoUpdateUserGroupDto, deserializeIntoUpdateVariableDto, deserializeIntoUserDto, deserializeIntoUserGroupDto, deserializeIntoUserGroupMembersDto, deserializeIntoVariableDto, serializeAccountDto, serializeApplyAllSuggestionDto, serializeApplySuggestionDto, serializeAuditLogDto, serializeAuditLogDto_details, serializeCommentThreadCommentCreateDto, serializeCommentThreadCommentDTO, serializeCommentThreadCreateDto, serializeCommentThreadDto, serializeCommentThreadSubscriberDto, serializeCommentThreadUpdateDto, serializeCreateJobDto, serializeCreateJobDto_output, serializeCreateJobExecutionDto, serializeCreateJobExecutionDto_input, serializeCreateProjectDto, serializeCreatePublicationDto, serializeCreateTaskDto, serializeCreateUserGroupDto, 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, serializeItemFieldCompositeDTO, serializeItemFieldCompositeValueDTO, serializeItemFieldCompositeValueDTO_data, 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, serializeUpdateUserGroupDto, serializeUpdateVariableDto, serializeUserDto, serializeUserGroupDto, serializeUserGroupMembersDto, serializeVariableDto, setup };
|
|
9315
|
+
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_object, CommentThreadCommentDTO_objectObject, type CommentThreadCommentDTO_type, CommentThreadCommentDTO_typeObject, type CommentThreadCreateDto, 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 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 CreateUserGroupDto, 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 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 ItemFieldCompositeDTO, type ItemFieldCompositeDTO_type, ItemFieldCompositeDTO_typeObject, type ItemFieldCompositeValueDTO, type ItemFieldCompositeValueDTO_data, 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 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_inputParameters, 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 PartitionDto_status, PartitionDto_statusObject, type PatchPublicationDto, type PatchPublicationDto_status, PatchPublicationDto_statusObject, type PatchTaskExecutionDto, type PatchTaskExecutionDto_status, PatchTaskExecutionDto_statusObject, type PipelineDto, type PipelineDto_object, PipelineDto_objectObject, 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_display, ScreenColumnDto_displayObject, 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 UpdateUserGroupDto, 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 UserGroupDto, type UserGroupDto_object, UserGroupDto_objectObject, type UserGroupMembersDto, 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, createCreateUserGroupDtoFromDiscriminatorValue, 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, createItemFieldCompositeDTOFromDiscriminatorValue, createItemFieldCompositeValueDTOFromDiscriminatorValue, createItemFieldCompositeValueDTO_dataFromDiscriminatorValue, 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_inputParametersFromDiscriminatorValue, createJobVisibilityDtoFromDiscriminatorValue, createLevelDtoFromDiscriminatorValue, createLocalizedStringDtoFromDiscriminatorValue, createLowOrderQueryDTOFromDiscriminatorValue, createMatrixFieldDtoFromDiscriminatorValue, createPartitionDtoFromDiscriminatorValue, createPatchPublicationDtoFromDiscriminatorValue, createPatchTaskExecutionDtoFromDiscriminatorValue, createPipelineDtoFromDiscriminatorValue, 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, createUpdateUserGroupDtoFromDiscriminatorValue, createUpdateVariableDtoFromDiscriminatorValue, createUserDtoFromDiscriminatorValue, createUserGroupDtoFromDiscriminatorValue, createUserGroupMembersDtoFromDiscriminatorValue, createVariableDtoFromDiscriminatorValue, deserializeIntoAccountDto, deserializeIntoApplyAllSuggestionDto, deserializeIntoApplySuggestionDto, deserializeIntoAuditLogDto, deserializeIntoAuditLogDto_details, deserializeIntoCommentThreadCommentCreateDto, deserializeIntoCommentThreadCommentDTO, deserializeIntoCommentThreadCreateDto, deserializeIntoCommentThreadDto, deserializeIntoCommentThreadSubscriberDto, deserializeIntoCommentThreadUpdateDto, deserializeIntoCreateJobDto, deserializeIntoCreateJobDto_output, deserializeIntoCreateJobExecutionDto, deserializeIntoCreateJobExecutionDto_input, deserializeIntoCreateProjectDto, deserializeIntoCreatePublicationDto, deserializeIntoCreateTaskDto, deserializeIntoCreateUserGroupDto, 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, deserializeIntoItemFieldCompositeDTO, deserializeIntoItemFieldCompositeValueDTO, deserializeIntoItemFieldCompositeValueDTO_data, 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_inputParameters, deserializeIntoJobVisibilityDto, deserializeIntoLevelDto, deserializeIntoLocalizedStringDto, deserializeIntoLowOrderQueryDTO, deserializeIntoMatrixFieldDto, deserializeIntoPartitionDto, deserializeIntoPatchPublicationDto, deserializeIntoPatchTaskExecutionDto, deserializeIntoPipelineDto, 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, deserializeIntoUpdateUserGroupDto, deserializeIntoUpdateVariableDto, deserializeIntoUserDto, deserializeIntoUserGroupDto, deserializeIntoUserGroupMembersDto, deserializeIntoVariableDto, serializeAccountDto, serializeApplyAllSuggestionDto, serializeApplySuggestionDto, serializeAuditLogDto, serializeAuditLogDto_details, serializeCommentThreadCommentCreateDto, serializeCommentThreadCommentDTO, serializeCommentThreadCreateDto, serializeCommentThreadDto, serializeCommentThreadSubscriberDto, serializeCommentThreadUpdateDto, serializeCreateJobDto, serializeCreateJobDto_output, serializeCreateJobExecutionDto, serializeCreateJobExecutionDto_input, serializeCreateProjectDto, serializeCreatePublicationDto, serializeCreateTaskDto, serializeCreateUserGroupDto, 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, serializeItemFieldCompositeDTO, serializeItemFieldCompositeValueDTO, serializeItemFieldCompositeValueDTO_data, 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_inputParameters, serializeJobVisibilityDto, serializeLevelDto, serializeLocalizedStringDto, serializeLowOrderQueryDTO, serializeMatrixFieldDto, serializePartitionDto, serializePatchPublicationDto, serializePatchTaskExecutionDto, serializePipelineDto, 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, serializeUpdateUserGroupDto, serializeUpdateVariableDto, serializeUserDto, serializeUserGroupDto, serializeUserGroupMembersDto, serializeVariableDto, setup };
|