@product-live/api-sdk 3.1.3 → 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 +602 -583
- package/dist/index.d.ts +602 -583
- package/dist/index.js +680 -641
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +686 -647
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
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
|
|
@@ -3701,7 +3644,7 @@ declare function serializeJobTaskDto(writer: SerializationWriter, jobTaskDto?: P
|
|
|
3701
3644
|
* Serializes information the current object
|
|
3702
3645
|
* @param writer Serialization writer to use to serialize this model
|
|
3703
3646
|
*/
|
|
3704
|
-
declare function
|
|
3647
|
+
declare function serializeJobTaskDto_inputParameters(writer: SerializationWriter, jobTaskDto_inputParameters?: Partial<JobTaskDto_inputParameters> | undefined | null): void;
|
|
3705
3648
|
/**
|
|
3706
3649
|
* Serializes information the current object
|
|
3707
3650
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3742,6 +3685,11 @@ declare function serializePatchPublicationDto(writer: SerializationWriter, patch
|
|
|
3742
3685
|
* @param writer Serialization writer to use to serialize this model
|
|
3743
3686
|
*/
|
|
3744
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;
|
|
3745
3693
|
/**
|
|
3746
3694
|
* Serializes information the current object
|
|
3747
3695
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -4450,14 +4398,14 @@ declare const AccountDto_objectObject: {
|
|
|
4450
4398
|
declare const AuditLogDto_objectObject: {
|
|
4451
4399
|
readonly Audit_log: "audit_log";
|
|
4452
4400
|
};
|
|
4401
|
+
declare const CommentThreadCommentDTO_objectObject: {
|
|
4402
|
+
readonly Comment_thread_comment: "comment_thread_comment";
|
|
4403
|
+
};
|
|
4453
4404
|
declare const CommentThreadCommentDTO_typeObject: {
|
|
4454
4405
|
readonly TEXT: "TEXT";
|
|
4455
4406
|
readonly SYSTEM: "SYSTEM";
|
|
4456
4407
|
readonly SYSTEM_ERROR: "SYSTEM_ERROR";
|
|
4457
4408
|
};
|
|
4458
|
-
declare const CommentThreadCreateDto_objectObject: {
|
|
4459
|
-
readonly Comment_thread: "comment_thread";
|
|
4460
|
-
};
|
|
4461
4409
|
declare const CommentThreadCreateDto_targetTypeObject: {
|
|
4462
4410
|
readonly Suggestion: "suggestion";
|
|
4463
4411
|
};
|
|
@@ -4543,6 +4491,7 @@ declare const CommentThreadDto_targetTypeObject: {
|
|
|
4543
4491
|
readonly Generic_mock_data: "generic_mock_data";
|
|
4544
4492
|
readonly Dashboard: "dashboard";
|
|
4545
4493
|
readonly Http_request: "http_request";
|
|
4494
|
+
readonly User_activity: "user_activity";
|
|
4546
4495
|
};
|
|
4547
4496
|
declare const CommentThreadDto_typeObject: {
|
|
4548
4497
|
readonly DEFAULTEscaped: "DEFAULT";
|
|
@@ -4551,9 +4500,6 @@ declare const CommentThreadDto_typeObject: {
|
|
|
4551
4500
|
declare const CommentThreadSubscriberDto_objectObject: {
|
|
4552
4501
|
readonly Comment_thread_subscriber: "comment_thread_subscriber";
|
|
4553
4502
|
};
|
|
4554
|
-
declare const CommentThreadUpdateDto_objectObject: {
|
|
4555
|
-
readonly Comment_thread: "comment_thread";
|
|
4556
|
-
};
|
|
4557
4503
|
declare const CreateJobDto_statusObject: {
|
|
4558
4504
|
readonly DRAFT: "DRAFT";
|
|
4559
4505
|
readonly PRODUCTION: "PRODUCTION";
|
|
@@ -4602,9 +4548,6 @@ declare const FieldSuffixDto_statusObject: {
|
|
|
4602
4548
|
readonly ARCHIVED: "ARCHIVED";
|
|
4603
4549
|
readonly DELETED: "DELETED";
|
|
4604
4550
|
};
|
|
4605
|
-
declare const FieldUpdateDto_objectObject: {
|
|
4606
|
-
readonly Field: "field";
|
|
4607
|
-
};
|
|
4608
4551
|
declare const FieldValueDto_colorObject: {
|
|
4609
4552
|
readonly NONE: "NONE";
|
|
4610
4553
|
readonly BLACK: "BLACK";
|
|
@@ -4695,9 +4638,6 @@ declare const ItemFindDTO_orderObject: {
|
|
|
4695
4638
|
readonly ASC: "ASC";
|
|
4696
4639
|
readonly DESC: "DESC";
|
|
4697
4640
|
};
|
|
4698
|
-
declare const ItemLinkCreateDto_objectObject: {
|
|
4699
|
-
readonly Item_link_create: "item_link_create";
|
|
4700
|
-
};
|
|
4701
4641
|
declare const ItemLinkDto_objectObject: {
|
|
4702
4642
|
readonly Item_link: "item_link";
|
|
4703
4643
|
};
|
|
@@ -4771,6 +4711,9 @@ declare const PatchTaskExecutionDto_statusObject: {
|
|
|
4771
4711
|
readonly FAILED: "FAILED";
|
|
4772
4712
|
readonly COMPLETED: "COMPLETED";
|
|
4773
4713
|
};
|
|
4714
|
+
declare const PipelineDto_objectObject: {
|
|
4715
|
+
readonly Pipeline: "pipeline";
|
|
4716
|
+
};
|
|
4774
4717
|
declare const ProjectDto_objectObject: {
|
|
4775
4718
|
readonly Project: "project";
|
|
4776
4719
|
};
|
|
@@ -5030,13 +4973,13 @@ interface AccountsRequestBuilderGetQueryParameters {
|
|
|
5030
4973
|
page?: number;
|
|
5031
4974
|
size?: number;
|
|
5032
4975
|
sort?: string;
|
|
5033
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
4976
|
+
sortOrder?: GetSortOrderQueryParameterType$q;
|
|
5034
4977
|
}
|
|
5035
|
-
type GetSortOrderQueryParameterType$
|
|
4978
|
+
type GetSortOrderQueryParameterType$q = (typeof GetSortOrderQueryParameterTypeObject$q)[keyof typeof GetSortOrderQueryParameterTypeObject$q];
|
|
5036
4979
|
declare const AccountsGetResponse_objectObject: {
|
|
5037
4980
|
readonly List: "list";
|
|
5038
4981
|
};
|
|
5039
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
4982
|
+
declare const GetSortOrderQueryParameterTypeObject$q: {
|
|
5040
4983
|
readonly DESC: "DESC";
|
|
5041
4984
|
readonly ASC: "ASC";
|
|
5042
4985
|
};
|
|
@@ -5061,7 +5004,7 @@ interface FindPostResponse$m extends AdditionalDataHolder, Parsable {
|
|
|
5061
5004
|
}
|
|
5062
5005
|
type FindPostResponse_object$m = (typeof FindPostResponse_objectObject$m)[keyof typeof FindPostResponse_objectObject$m];
|
|
5063
5006
|
/**
|
|
5064
|
-
* Builds and executes requests for operations under /v1/
|
|
5007
|
+
* Builds and executes requests for operations under /v1/audit-logs/find
|
|
5065
5008
|
*/
|
|
5066
5009
|
interface FindRequestBuilder$m extends BaseRequestBuilder<FindRequestBuilder$m> {
|
|
5067
5010
|
/**
|
|
@@ -5098,7 +5041,7 @@ declare const PostSortOrderQueryParameterTypeObject$n: {
|
|
|
5098
5041
|
readonly ASC: "ASC";
|
|
5099
5042
|
};
|
|
5100
5043
|
|
|
5101
|
-
interface
|
|
5044
|
+
interface AuditLogsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5102
5045
|
/**
|
|
5103
5046
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5104
5047
|
*/
|
|
@@ -5110,17 +5053,17 @@ interface Audit_logsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
5110
5053
|
/**
|
|
5111
5054
|
* The object property
|
|
5112
5055
|
*/
|
|
5113
|
-
object?:
|
|
5056
|
+
object?: AuditLogsGetResponse_object | null;
|
|
5114
5057
|
/**
|
|
5115
5058
|
* The totalElements property
|
|
5116
5059
|
*/
|
|
5117
5060
|
totalElements?: number | null;
|
|
5118
5061
|
}
|
|
5119
|
-
type
|
|
5062
|
+
type AuditLogsGetResponse_object = (typeof AuditLogsGetResponse_objectObject)[keyof typeof AuditLogsGetResponse_objectObject];
|
|
5120
5063
|
/**
|
|
5121
|
-
* Builds and executes requests for operations under /v1/
|
|
5064
|
+
* Builds and executes requests for operations under /v1/audit-logs
|
|
5122
5065
|
*/
|
|
5123
|
-
interface
|
|
5066
|
+
interface AuditLogsRequestBuilder extends BaseRequestBuilder<AuditLogsRequestBuilder> {
|
|
5124
5067
|
/**
|
|
5125
5068
|
* The find property
|
|
5126
5069
|
*/
|
|
@@ -5128,31 +5071,31 @@ interface Audit_logsRequestBuilder extends BaseRequestBuilder<Audit_logsRequestB
|
|
|
5128
5071
|
/**
|
|
5129
5072
|
* Get a list of Audit Log
|
|
5130
5073
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5131
|
-
* @returns {Promise<
|
|
5132
|
-
* @throws {
|
|
5074
|
+
* @returns {Promise<AuditLogsGetResponse>}
|
|
5075
|
+
* @throws {AuditLogs400Error} error when the service returns a 400 status code
|
|
5133
5076
|
*/
|
|
5134
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
5077
|
+
get(requestConfiguration?: RequestConfiguration<AuditLogsRequestBuilderGetQueryParameters> | undefined): Promise<AuditLogsGetResponse | undefined>;
|
|
5135
5078
|
/**
|
|
5136
5079
|
* Get a list of Audit Log
|
|
5137
5080
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5138
5081
|
* @returns {RequestInformation}
|
|
5139
5082
|
*/
|
|
5140
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
5083
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AuditLogsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
5141
5084
|
}
|
|
5142
5085
|
/**
|
|
5143
5086
|
* Get a list of Audit Log
|
|
5144
5087
|
*/
|
|
5145
|
-
interface
|
|
5088
|
+
interface AuditLogsRequestBuilderGetQueryParameters {
|
|
5146
5089
|
page?: number;
|
|
5147
5090
|
size?: number;
|
|
5148
5091
|
sort?: string;
|
|
5149
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5092
|
+
sortOrder?: GetSortOrderQueryParameterType$p;
|
|
5150
5093
|
}
|
|
5151
|
-
type GetSortOrderQueryParameterType$
|
|
5152
|
-
declare const
|
|
5094
|
+
type GetSortOrderQueryParameterType$p = (typeof GetSortOrderQueryParameterTypeObject$p)[keyof typeof GetSortOrderQueryParameterTypeObject$p];
|
|
5095
|
+
declare const AuditLogsGetResponse_objectObject: {
|
|
5153
5096
|
readonly List: "list";
|
|
5154
5097
|
};
|
|
5155
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5098
|
+
declare const GetSortOrderQueryParameterTypeObject$p: {
|
|
5156
5099
|
readonly DESC: "DESC";
|
|
5157
5100
|
readonly ASC: "ASC";
|
|
5158
5101
|
};
|
|
@@ -5165,7 +5108,7 @@ interface FindPostResponse$l extends AdditionalDataHolder, Parsable {
|
|
|
5165
5108
|
/**
|
|
5166
5109
|
* The data property
|
|
5167
5110
|
*/
|
|
5168
|
-
data?:
|
|
5111
|
+
data?: CommentThreadDto[] | null;
|
|
5169
5112
|
/**
|
|
5170
5113
|
* The object property
|
|
5171
5114
|
*/
|
|
@@ -5177,11 +5120,11 @@ interface FindPostResponse$l extends AdditionalDataHolder, Parsable {
|
|
|
5177
5120
|
}
|
|
5178
5121
|
type FindPostResponse_object$l = (typeof FindPostResponse_objectObject$l)[keyof typeof FindPostResponse_objectObject$l];
|
|
5179
5122
|
/**
|
|
5180
|
-
* Builds and executes requests for operations under /v1/
|
|
5123
|
+
* Builds and executes requests for operations under /v1/comment-threads/find
|
|
5181
5124
|
*/
|
|
5182
5125
|
interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l> {
|
|
5183
5126
|
/**
|
|
5184
|
-
* Find a list of Comment Thread
|
|
5127
|
+
* Find a list of Comment Thread
|
|
5185
5128
|
* @param body The request body
|
|
5186
5129
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5187
5130
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -5189,7 +5132,7 @@ interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l>
|
|
|
5189
5132
|
*/
|
|
5190
5133
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$l> | undefined): Promise<FindPostResponse$l | undefined>;
|
|
5191
5134
|
/**
|
|
5192
|
-
* Find a list of Comment Thread
|
|
5135
|
+
* Find a list of Comment Thread
|
|
5193
5136
|
* @param body The request body
|
|
5194
5137
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5195
5138
|
* @returns {RequestInformation}
|
|
@@ -5197,7 +5140,7 @@ interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l>
|
|
|
5197
5140
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$l> | undefined): RequestInformation;
|
|
5198
5141
|
}
|
|
5199
5142
|
/**
|
|
5200
|
-
* Find a list of Comment Thread
|
|
5143
|
+
* Find a list of Comment Thread
|
|
5201
5144
|
*/
|
|
5202
5145
|
interface FindRequestBuilderPostQueryParameters$l {
|
|
5203
5146
|
page?: number;
|
|
@@ -5215,25 +5158,64 @@ declare const PostSortOrderQueryParameterTypeObject$m: {
|
|
|
5215
5158
|
};
|
|
5216
5159
|
|
|
5217
5160
|
/**
|
|
5218
|
-
* Builds and executes requests for operations under /v1/
|
|
5161
|
+
* Builds and executes requests for operations under /v1/comment-threads/{id}/add-comment
|
|
5219
5162
|
*/
|
|
5220
|
-
interface
|
|
5163
|
+
interface AddCommentRequestBuilder extends BaseRequestBuilder<AddCommentRequestBuilder> {
|
|
5221
5164
|
/**
|
|
5222
|
-
*
|
|
5165
|
+
* Add a comment to a comment thread
|
|
5166
|
+
* @param body The request body
|
|
5223
5167
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5224
|
-
* @returns {Promise<
|
|
5225
|
-
* @throws {CommentThreadSubscriberDto400Error} error when the service returns a 400 status code
|
|
5168
|
+
* @returns {Promise<CommentThreadDto>}
|
|
5226
5169
|
*/
|
|
5227
|
-
|
|
5170
|
+
post(body: CommentThreadCommentCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
5228
5171
|
/**
|
|
5229
|
-
*
|
|
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
|
|
5230
5205
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5231
5206
|
* @returns {RequestInformation}
|
|
5232
5207
|
*/
|
|
5233
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;
|
|
5234
5216
|
}
|
|
5235
5217
|
|
|
5236
|
-
interface
|
|
5218
|
+
interface CommentThreadsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5237
5219
|
/**
|
|
5238
5220
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5239
5221
|
*/
|
|
@@ -5241,59 +5223,74 @@ interface Comment_thread_subscribersGetResponse extends AdditionalDataHolder, Pa
|
|
|
5241
5223
|
/**
|
|
5242
5224
|
* The data property
|
|
5243
5225
|
*/
|
|
5244
|
-
data?:
|
|
5226
|
+
data?: CommentThreadDto[] | null;
|
|
5245
5227
|
/**
|
|
5246
5228
|
* The object property
|
|
5247
5229
|
*/
|
|
5248
|
-
object?:
|
|
5230
|
+
object?: CommentThreadsGetResponse_object | null;
|
|
5249
5231
|
/**
|
|
5250
5232
|
* The totalElements property
|
|
5251
5233
|
*/
|
|
5252
5234
|
totalElements?: number | null;
|
|
5253
5235
|
}
|
|
5254
|
-
type
|
|
5236
|
+
type CommentThreadsGetResponse_object = (typeof CommentThreadsGetResponse_objectObject)[keyof typeof CommentThreadsGetResponse_objectObject];
|
|
5255
5237
|
/**
|
|
5256
|
-
* Builds and executes requests for operations under /v1/
|
|
5238
|
+
* Builds and executes requests for operations under /v1/comment-threads
|
|
5257
5239
|
*/
|
|
5258
|
-
interface
|
|
5240
|
+
interface CommentThreadsRequestBuilder extends BaseRequestBuilder<CommentThreadsRequestBuilder> {
|
|
5259
5241
|
/**
|
|
5260
5242
|
* The find property
|
|
5261
5243
|
*/
|
|
5262
5244
|
get find(): FindRequestBuilder$l;
|
|
5263
5245
|
/**
|
|
5264
|
-
* Gets an item from the ApiSdk.v1.
|
|
5246
|
+
* Gets an item from the ApiSdk.v1.commentThreads.item collection
|
|
5265
5247
|
* @param id Unique identifier of the item
|
|
5266
|
-
* @returns {
|
|
5248
|
+
* @returns {CommentThreadsItemRequestBuilder}
|
|
5267
5249
|
*/
|
|
5268
|
-
byId(id: string):
|
|
5250
|
+
byId(id: string): CommentThreadsItemRequestBuilder;
|
|
5269
5251
|
/**
|
|
5270
|
-
* Get a list of Comment Thread
|
|
5252
|
+
* Get a list of Comment Thread
|
|
5271
5253
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5272
|
-
* @returns {Promise<
|
|
5273
|
-
* @throws {
|
|
5254
|
+
* @returns {Promise<CommentThreadsGetResponse>}
|
|
5255
|
+
* @throws {CommentThreads400Error} error when the service returns a 400 status code
|
|
5274
5256
|
*/
|
|
5275
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
5257
|
+
get(requestConfiguration?: RequestConfiguration<CommentThreadsRequestBuilderGetQueryParameters> | undefined): Promise<CommentThreadsGetResponse | undefined>;
|
|
5276
5258
|
/**
|
|
5277
|
-
*
|
|
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
|
|
5278
5275
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5279
5276
|
* @returns {RequestInformation}
|
|
5280
5277
|
*/
|
|
5281
|
-
|
|
5278
|
+
toPostRequestInformation(body: CommentThreadCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5282
5279
|
}
|
|
5283
5280
|
/**
|
|
5284
|
-
* Get a list of Comment Thread
|
|
5281
|
+
* Get a list of Comment Thread
|
|
5285
5282
|
*/
|
|
5286
|
-
interface
|
|
5283
|
+
interface CommentThreadsRequestBuilderGetQueryParameters {
|
|
5287
5284
|
page?: number;
|
|
5288
5285
|
size?: number;
|
|
5289
5286
|
sort?: string;
|
|
5290
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5287
|
+
sortOrder?: GetSortOrderQueryParameterType$o;
|
|
5291
5288
|
}
|
|
5292
|
-
type GetSortOrderQueryParameterType$
|
|
5293
|
-
declare const
|
|
5289
|
+
type GetSortOrderQueryParameterType$o = (typeof GetSortOrderQueryParameterTypeObject$o)[keyof typeof GetSortOrderQueryParameterTypeObject$o];
|
|
5290
|
+
declare const CommentThreadsGetResponse_objectObject: {
|
|
5294
5291
|
readonly List: "list";
|
|
5295
5292
|
};
|
|
5296
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5293
|
+
declare const GetSortOrderQueryParameterTypeObject$o: {
|
|
5297
5294
|
readonly DESC: "DESC";
|
|
5298
5295
|
readonly ASC: "ASC";
|
|
5299
5296
|
};
|
|
@@ -5306,7 +5303,7 @@ interface FindPostResponse$k extends AdditionalDataHolder, Parsable {
|
|
|
5306
5303
|
/**
|
|
5307
5304
|
* The data property
|
|
5308
5305
|
*/
|
|
5309
|
-
data?:
|
|
5306
|
+
data?: CommentThreadSubscriberDto[] | null;
|
|
5310
5307
|
/**
|
|
5311
5308
|
* The object property
|
|
5312
5309
|
*/
|
|
@@ -5318,11 +5315,11 @@ interface FindPostResponse$k extends AdditionalDataHolder, Parsable {
|
|
|
5318
5315
|
}
|
|
5319
5316
|
type FindPostResponse_object$k = (typeof FindPostResponse_objectObject$k)[keyof typeof FindPostResponse_objectObject$k];
|
|
5320
5317
|
/**
|
|
5321
|
-
* Builds and executes requests for operations under /v1/
|
|
5318
|
+
* Builds and executes requests for operations under /v1/comment-thread-subscribers/find
|
|
5322
5319
|
*/
|
|
5323
5320
|
interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k> {
|
|
5324
5321
|
/**
|
|
5325
|
-
* Find a list of Comment Thread
|
|
5322
|
+
* Find a list of Comment Thread Subscriber
|
|
5326
5323
|
* @param body The request body
|
|
5327
5324
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5328
5325
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -5330,7 +5327,7 @@ interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k>
|
|
|
5330
5327
|
*/
|
|
5331
5328
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$k> | undefined): Promise<FindPostResponse$k | undefined>;
|
|
5332
5329
|
/**
|
|
5333
|
-
* Find a list of Comment Thread
|
|
5330
|
+
* Find a list of Comment Thread Subscriber
|
|
5334
5331
|
* @param body The request body
|
|
5335
5332
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5336
5333
|
* @returns {RequestInformation}
|
|
@@ -5338,7 +5335,7 @@ interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k>
|
|
|
5338
5335
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$k> | undefined): RequestInformation;
|
|
5339
5336
|
}
|
|
5340
5337
|
/**
|
|
5341
|
-
* Find a list of Comment Thread
|
|
5338
|
+
* Find a list of Comment Thread Subscriber
|
|
5342
5339
|
*/
|
|
5343
5340
|
interface FindRequestBuilderPostQueryParameters$k {
|
|
5344
5341
|
page?: number;
|
|
@@ -5356,64 +5353,25 @@ declare const PostSortOrderQueryParameterTypeObject$l: {
|
|
|
5356
5353
|
};
|
|
5357
5354
|
|
|
5358
5355
|
/**
|
|
5359
|
-
* Builds and executes requests for operations under /v1/
|
|
5356
|
+
* Builds and executes requests for operations under /v1/comment-thread-subscribers/{id}
|
|
5360
5357
|
*/
|
|
5361
|
-
interface
|
|
5358
|
+
interface CommentThreadSubscribersItemRequestBuilder extends BaseRequestBuilder<CommentThreadSubscribersItemRequestBuilder> {
|
|
5362
5359
|
/**
|
|
5363
|
-
*
|
|
5364
|
-
* @param body The request body
|
|
5360
|
+
* Get a Comment Thread Subscriber by id
|
|
5365
5361
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5366
|
-
* @returns {Promise<
|
|
5362
|
+
* @returns {Promise<CommentThreadSubscriberDto>}
|
|
5363
|
+
* @throws {CommentThreadSubscriberDto400Error} error when the service returns a 400 status code
|
|
5367
5364
|
*/
|
|
5368
|
-
|
|
5365
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadSubscriberDto | undefined>;
|
|
5369
5366
|
/**
|
|
5370
|
-
*
|
|
5371
|
-
* @param body The request body
|
|
5372
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5373
|
-
* @returns {RequestInformation}
|
|
5374
|
-
*/
|
|
5375
|
-
toPostRequestInformation(body: CommentThreadCommentCreateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5376
|
-
}
|
|
5377
|
-
|
|
5378
|
-
/**
|
|
5379
|
-
* Builds and executes requests for operations under /v1/comment_threads/{id}
|
|
5380
|
-
*/
|
|
5381
|
-
interface Comment_threadsItemRequestBuilder extends BaseRequestBuilder<Comment_threadsItemRequestBuilder> {
|
|
5382
|
-
/**
|
|
5383
|
-
* The addComment property
|
|
5384
|
-
*/
|
|
5385
|
-
get addComment(): AddCommentRequestBuilder;
|
|
5386
|
-
/**
|
|
5387
|
-
* Get a Comment Thread by id
|
|
5388
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5389
|
-
* @returns {Promise<CommentThreadDto>}
|
|
5390
|
-
* @throws {CommentThreadDto400Error} error when the service returns a 400 status code
|
|
5391
|
-
*/
|
|
5392
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
5393
|
-
/**
|
|
5394
|
-
* Patch a Comment Thread
|
|
5395
|
-
* @param body The request body
|
|
5396
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5397
|
-
* @returns {Promise<CommentThreadDto>}
|
|
5398
|
-
* @throws {CommentThreadDto400Error} error when the service returns a 400 status code
|
|
5399
|
-
*/
|
|
5400
|
-
patch(body: CommentThreadUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CommentThreadDto | undefined>;
|
|
5401
|
-
/**
|
|
5402
|
-
* Get a Comment Thread by id
|
|
5367
|
+
* Get a Comment Thread Subscriber by id
|
|
5403
5368
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5404
5369
|
* @returns {RequestInformation}
|
|
5405
5370
|
*/
|
|
5406
5371
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5407
|
-
/**
|
|
5408
|
-
* Patch a Comment Thread
|
|
5409
|
-
* @param body The request body
|
|
5410
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5411
|
-
* @returns {RequestInformation}
|
|
5412
|
-
*/
|
|
5413
|
-
toPatchRequestInformation(body: CommentThreadUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5414
5372
|
}
|
|
5415
5373
|
|
|
5416
|
-
interface
|
|
5374
|
+
interface CommentThreadSubscribersGetResponse extends AdditionalDataHolder, Parsable {
|
|
5417
5375
|
/**
|
|
5418
5376
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5419
5377
|
*/
|
|
@@ -5421,80 +5379,65 @@ interface Comment_threadsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
5421
5379
|
/**
|
|
5422
5380
|
* The data property
|
|
5423
5381
|
*/
|
|
5424
|
-
data?:
|
|
5382
|
+
data?: CommentThreadSubscriberDto[] | null;
|
|
5425
5383
|
/**
|
|
5426
5384
|
* The object property
|
|
5427
5385
|
*/
|
|
5428
|
-
object?:
|
|
5386
|
+
object?: CommentThreadSubscribersGetResponse_object | null;
|
|
5429
5387
|
/**
|
|
5430
5388
|
* The totalElements property
|
|
5431
5389
|
*/
|
|
5432
5390
|
totalElements?: number | null;
|
|
5433
5391
|
}
|
|
5434
|
-
type
|
|
5392
|
+
type CommentThreadSubscribersGetResponse_object = (typeof CommentThreadSubscribersGetResponse_objectObject)[keyof typeof CommentThreadSubscribersGetResponse_objectObject];
|
|
5435
5393
|
/**
|
|
5436
|
-
* Builds and executes requests for operations under /v1/
|
|
5394
|
+
* Builds and executes requests for operations under /v1/comment-thread-subscribers
|
|
5437
5395
|
*/
|
|
5438
|
-
interface
|
|
5396
|
+
interface CommentThreadSubscribersRequestBuilder extends BaseRequestBuilder<CommentThreadSubscribersRequestBuilder> {
|
|
5439
5397
|
/**
|
|
5440
5398
|
* The find property
|
|
5441
5399
|
*/
|
|
5442
5400
|
get find(): FindRequestBuilder$k;
|
|
5443
5401
|
/**
|
|
5444
|
-
* Gets an item from the ApiSdk.v1.
|
|
5402
|
+
* Gets an item from the ApiSdk.v1.commentThreadSubscribers.item collection
|
|
5445
5403
|
* @param id Unique identifier of the item
|
|
5446
|
-
* @returns {
|
|
5447
|
-
*/
|
|
5448
|
-
byId(id: string): Comment_threadsItemRequestBuilder;
|
|
5449
|
-
/**
|
|
5450
|
-
* Get a list of Comment Thread
|
|
5451
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5452
|
-
* @returns {Promise<Comment_threadsGetResponse>}
|
|
5453
|
-
* @throws {Comment_threads400Error} error when the service returns a 400 status code
|
|
5454
|
-
*/
|
|
5455
|
-
get(requestConfiguration?: RequestConfiguration<Comment_threadsRequestBuilderGetQueryParameters> | undefined): Promise<Comment_threadsGetResponse | undefined>;
|
|
5456
|
-
/**
|
|
5457
|
-
* Create a Comment Thread
|
|
5458
|
-
* @param body The request body
|
|
5459
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5460
|
-
* @returns {Promise<CommentThreadDto>}
|
|
5461
|
-
* @throws {CommentThreadDto400Error} error when the service returns a 400 status code
|
|
5404
|
+
* @returns {CommentThreadSubscribersItemRequestBuilder}
|
|
5462
5405
|
*/
|
|
5463
|
-
|
|
5406
|
+
byId(id: string): CommentThreadSubscribersItemRequestBuilder;
|
|
5464
5407
|
/**
|
|
5465
|
-
* Get a list of Comment Thread
|
|
5408
|
+
* Get a list of Comment Thread Subscriber
|
|
5466
5409
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5467
|
-
* @returns {
|
|
5410
|
+
* @returns {Promise<CommentThreadSubscribersGetResponse>}
|
|
5411
|
+
* @throws {CommentThreadSubscribers400Error} error when the service returns a 400 status code
|
|
5468
5412
|
*/
|
|
5469
|
-
|
|
5413
|
+
get(requestConfiguration?: RequestConfiguration<CommentThreadSubscribersRequestBuilderGetQueryParameters> | undefined): Promise<CommentThreadSubscribersGetResponse | undefined>;
|
|
5470
5414
|
/**
|
|
5471
|
-
*
|
|
5472
|
-
* @param body The request body
|
|
5415
|
+
* Get a list of Comment Thread Subscriber
|
|
5473
5416
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5474
5417
|
* @returns {RequestInformation}
|
|
5475
5418
|
*/
|
|
5476
|
-
|
|
5419
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CommentThreadSubscribersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
5477
5420
|
}
|
|
5478
5421
|
/**
|
|
5479
|
-
* Get a list of Comment Thread
|
|
5422
|
+
* Get a list of Comment Thread Subscriber
|
|
5480
5423
|
*/
|
|
5481
|
-
interface
|
|
5424
|
+
interface CommentThreadSubscribersRequestBuilderGetQueryParameters {
|
|
5482
5425
|
page?: number;
|
|
5483
5426
|
size?: number;
|
|
5484
5427
|
sort?: string;
|
|
5485
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5428
|
+
sortOrder?: GetSortOrderQueryParameterType$n;
|
|
5486
5429
|
}
|
|
5487
|
-
type GetSortOrderQueryParameterType$
|
|
5488
|
-
declare const
|
|
5430
|
+
type GetSortOrderQueryParameterType$n = (typeof GetSortOrderQueryParameterTypeObject$n)[keyof typeof GetSortOrderQueryParameterTypeObject$n];
|
|
5431
|
+
declare const CommentThreadSubscribersGetResponse_objectObject: {
|
|
5489
5432
|
readonly List: "list";
|
|
5490
5433
|
};
|
|
5491
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5434
|
+
declare const GetSortOrderQueryParameterTypeObject$n: {
|
|
5492
5435
|
readonly DESC: "DESC";
|
|
5493
5436
|
readonly ASC: "ASC";
|
|
5494
5437
|
};
|
|
5495
5438
|
|
|
5496
5439
|
/**
|
|
5497
|
-
* Builds and executes requests for operations under /v1/
|
|
5440
|
+
* Builds and executes requests for operations under /v1/data-factory/files/{id}
|
|
5498
5441
|
*/
|
|
5499
5442
|
interface FilesItemRequestBuilder extends BaseRequestBuilder<FilesItemRequestBuilder> {
|
|
5500
5443
|
/**
|
|
@@ -5532,11 +5475,11 @@ interface FilesGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
5532
5475
|
}
|
|
5533
5476
|
type FilesGetResponse_object = (typeof FilesGetResponse_objectObject)[keyof typeof FilesGetResponse_objectObject];
|
|
5534
5477
|
/**
|
|
5535
|
-
* Builds and executes requests for operations under /v1/
|
|
5478
|
+
* Builds and executes requests for operations under /v1/data-factory/files
|
|
5536
5479
|
*/
|
|
5537
5480
|
interface FilesRequestBuilder extends BaseRequestBuilder<FilesRequestBuilder> {
|
|
5538
5481
|
/**
|
|
5539
|
-
* Gets an item from the ApiSdk.v1.
|
|
5482
|
+
* Gets an item from the ApiSdk.v1.dataFactory.files.item collection
|
|
5540
5483
|
* @param id Unique identifier of the item
|
|
5541
5484
|
* @returns {FilesItemRequestBuilder}
|
|
5542
5485
|
*/
|
|
@@ -5577,13 +5520,13 @@ interface FilesRequestBuilderGetQueryParameters {
|
|
|
5577
5520
|
page?: number;
|
|
5578
5521
|
size?: number;
|
|
5579
5522
|
sort?: string;
|
|
5580
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5523
|
+
sortOrder?: GetSortOrderQueryParameterType$m;
|
|
5581
5524
|
}
|
|
5582
|
-
type GetSortOrderQueryParameterType$
|
|
5525
|
+
type GetSortOrderQueryParameterType$m = (typeof GetSortOrderQueryParameterTypeObject$m)[keyof typeof GetSortOrderQueryParameterTypeObject$m];
|
|
5583
5526
|
declare const FilesGetResponse_objectObject: {
|
|
5584
5527
|
readonly List: "list";
|
|
5585
5528
|
};
|
|
5586
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5529
|
+
declare const GetSortOrderQueryParameterTypeObject$m: {
|
|
5587
5530
|
readonly DESC: "DESC";
|
|
5588
5531
|
readonly ASC: "ASC";
|
|
5589
5532
|
};
|
|
@@ -5608,7 +5551,7 @@ interface FindPostResponse$j extends AdditionalDataHolder, Parsable {
|
|
|
5608
5551
|
}
|
|
5609
5552
|
type FindPostResponse_object$j = (typeof FindPostResponse_objectObject$j)[keyof typeof FindPostResponse_objectObject$j];
|
|
5610
5553
|
/**
|
|
5611
|
-
* Builds and executes requests for operations under /v1/
|
|
5554
|
+
* Builds and executes requests for operations under /v1/data-factory/job-executions/find
|
|
5612
5555
|
*/
|
|
5613
5556
|
interface FindRequestBuilder$j extends BaseRequestBuilder<FindRequestBuilder$j> {
|
|
5614
5557
|
/**
|
|
@@ -5646,9 +5589,9 @@ declare const PostSortOrderQueryParameterTypeObject$k: {
|
|
|
5646
5589
|
};
|
|
5647
5590
|
|
|
5648
5591
|
/**
|
|
5649
|
-
* Builds and executes requests for operations under /v1/
|
|
5592
|
+
* Builds and executes requests for operations under /v1/data-factory/job-executions/{id}
|
|
5650
5593
|
*/
|
|
5651
|
-
interface
|
|
5594
|
+
interface JobExecutionsItemRequestBuilder extends BaseRequestBuilder<JobExecutionsItemRequestBuilder> {
|
|
5652
5595
|
/**
|
|
5653
5596
|
* Get a Job Execution by id
|
|
5654
5597
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -5664,8 +5607,8 @@ interface Job_executionsItemRequestBuilder extends BaseRequestBuilder<Job_execut
|
|
|
5664
5607
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5665
5608
|
}
|
|
5666
5609
|
|
|
5667
|
-
type GetSortOrderQueryParameterType$
|
|
5668
|
-
interface
|
|
5610
|
+
type GetSortOrderQueryParameterType$l = (typeof GetSortOrderQueryParameterTypeObject$l)[keyof typeof GetSortOrderQueryParameterTypeObject$l];
|
|
5611
|
+
interface JobExecutionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5669
5612
|
/**
|
|
5670
5613
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5671
5614
|
*/
|
|
@@ -5677,34 +5620,34 @@ interface Job_executionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
5677
5620
|
/**
|
|
5678
5621
|
* The object property
|
|
5679
5622
|
*/
|
|
5680
|
-
object?:
|
|
5623
|
+
object?: JobExecutionsGetResponse_object | null;
|
|
5681
5624
|
/**
|
|
5682
5625
|
* The totalElements property
|
|
5683
5626
|
*/
|
|
5684
5627
|
totalElements?: number | null;
|
|
5685
5628
|
}
|
|
5686
|
-
type
|
|
5629
|
+
type JobExecutionsGetResponse_object = (typeof JobExecutionsGetResponse_objectObject)[keyof typeof JobExecutionsGetResponse_objectObject];
|
|
5687
5630
|
/**
|
|
5688
|
-
* Builds and executes requests for operations under /v1/
|
|
5631
|
+
* Builds and executes requests for operations under /v1/data-factory/job-executions
|
|
5689
5632
|
*/
|
|
5690
|
-
interface
|
|
5633
|
+
interface JobExecutionsRequestBuilder extends BaseRequestBuilder<JobExecutionsRequestBuilder> {
|
|
5691
5634
|
/**
|
|
5692
5635
|
* The find property
|
|
5693
5636
|
*/
|
|
5694
5637
|
get find(): FindRequestBuilder$j;
|
|
5695
5638
|
/**
|
|
5696
|
-
* Gets an item from the ApiSdk.v1.
|
|
5639
|
+
* Gets an item from the ApiSdk.v1.dataFactory.jobExecutions.item collection
|
|
5697
5640
|
* @param id Unique identifier of the item
|
|
5698
|
-
* @returns {
|
|
5641
|
+
* @returns {JobExecutionsItemRequestBuilder}
|
|
5699
5642
|
*/
|
|
5700
|
-
byId(id: string):
|
|
5643
|
+
byId(id: string): JobExecutionsItemRequestBuilder;
|
|
5701
5644
|
/**
|
|
5702
5645
|
* Get a list of Job Execution
|
|
5703
5646
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5704
|
-
* @returns {Promise<
|
|
5705
|
-
* @throws {
|
|
5647
|
+
* @returns {Promise<JobExecutionsGetResponse>}
|
|
5648
|
+
* @throws {JobExecutions400Error} error when the service returns a 400 status code
|
|
5706
5649
|
*/
|
|
5707
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
5650
|
+
get(requestConfiguration?: RequestConfiguration<JobExecutionsRequestBuilderGetQueryParameters> | undefined): Promise<JobExecutionsGetResponse | undefined>;
|
|
5708
5651
|
/**
|
|
5709
5652
|
* Create a Job Execution
|
|
5710
5653
|
* @param body The request body
|
|
@@ -5718,7 +5661,7 @@ interface Job_executionsRequestBuilder extends BaseRequestBuilder<Job_executions
|
|
|
5718
5661
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5719
5662
|
* @returns {RequestInformation}
|
|
5720
5663
|
*/
|
|
5721
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
5664
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<JobExecutionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
5722
5665
|
/**
|
|
5723
5666
|
* Create a Job Execution
|
|
5724
5667
|
* @param body The request body
|
|
@@ -5730,17 +5673,17 @@ interface Job_executionsRequestBuilder extends BaseRequestBuilder<Job_executions
|
|
|
5730
5673
|
/**
|
|
5731
5674
|
* Get a list of Job Execution
|
|
5732
5675
|
*/
|
|
5733
|
-
interface
|
|
5676
|
+
interface JobExecutionsRequestBuilderGetQueryParameters {
|
|
5734
5677
|
page?: number;
|
|
5735
5678
|
size?: number;
|
|
5736
5679
|
sort?: string;
|
|
5737
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5680
|
+
sortOrder?: GetSortOrderQueryParameterType$l;
|
|
5738
5681
|
}
|
|
5739
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5682
|
+
declare const GetSortOrderQueryParameterTypeObject$l: {
|
|
5740
5683
|
readonly DESC: "DESC";
|
|
5741
5684
|
readonly ASC: "ASC";
|
|
5742
5685
|
};
|
|
5743
|
-
declare const
|
|
5686
|
+
declare const JobExecutionsGetResponse_objectObject: {
|
|
5744
5687
|
readonly List: "list";
|
|
5745
5688
|
};
|
|
5746
5689
|
|
|
@@ -5764,7 +5707,7 @@ interface FindPostResponse$i extends AdditionalDataHolder, Parsable {
|
|
|
5764
5707
|
}
|
|
5765
5708
|
type FindPostResponse_object$i = (typeof FindPostResponse_objectObject$i)[keyof typeof FindPostResponse_objectObject$i];
|
|
5766
5709
|
/**
|
|
5767
|
-
* Builds and executes requests for operations under /v1/
|
|
5710
|
+
* Builds and executes requests for operations under /v1/data-factory/jobs/find
|
|
5768
5711
|
*/
|
|
5769
5712
|
interface FindRequestBuilder$i extends BaseRequestBuilder<FindRequestBuilder$i> {
|
|
5770
5713
|
/**
|
|
@@ -5802,7 +5745,7 @@ declare const PostSortOrderQueryParameterTypeObject$j: {
|
|
|
5802
5745
|
};
|
|
5803
5746
|
|
|
5804
5747
|
/**
|
|
5805
|
-
* Builds and executes requests for operations under /v1/
|
|
5748
|
+
* Builds and executes requests for operations under /v1/data-factory/jobs/{id}/zip
|
|
5806
5749
|
*/
|
|
5807
5750
|
interface ZipRequestBuilder extends BaseRequestBuilder<ZipRequestBuilder> {
|
|
5808
5751
|
/**
|
|
@@ -5823,7 +5766,7 @@ interface ZipRequestBuilder extends BaseRequestBuilder<ZipRequestBuilder> {
|
|
|
5823
5766
|
}
|
|
5824
5767
|
|
|
5825
5768
|
/**
|
|
5826
|
-
* Builds and executes requests for operations under /v1/
|
|
5769
|
+
* Builds and executes requests for operations under /v1/data-factory/jobs/{id}
|
|
5827
5770
|
*/
|
|
5828
5771
|
interface JobsItemRequestBuilder extends BaseRequestBuilder<JobsItemRequestBuilder> {
|
|
5829
5772
|
/**
|
|
@@ -5860,7 +5803,7 @@ interface JobsItemRequestBuilder extends BaseRequestBuilder<JobsItemRequestBuild
|
|
|
5860
5803
|
toPutRequestInformation(body: UpdateJobDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5861
5804
|
}
|
|
5862
5805
|
|
|
5863
|
-
type GetSortOrderQueryParameterType$
|
|
5806
|
+
type GetSortOrderQueryParameterType$k = (typeof GetSortOrderQueryParameterTypeObject$k)[keyof typeof GetSortOrderQueryParameterTypeObject$k];
|
|
5864
5807
|
interface JobsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5865
5808
|
/**
|
|
5866
5809
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -5881,7 +5824,7 @@ interface JobsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
5881
5824
|
}
|
|
5882
5825
|
type JobsGetResponse_object = (typeof JobsGetResponse_objectObject)[keyof typeof JobsGetResponse_objectObject];
|
|
5883
5826
|
/**
|
|
5884
|
-
* Builds and executes requests for operations under /v1/
|
|
5827
|
+
* Builds and executes requests for operations under /v1/data-factory/jobs
|
|
5885
5828
|
*/
|
|
5886
5829
|
interface JobsRequestBuilder extends BaseRequestBuilder<JobsRequestBuilder> {
|
|
5887
5830
|
/**
|
|
@@ -5889,7 +5832,7 @@ interface JobsRequestBuilder extends BaseRequestBuilder<JobsRequestBuilder> {
|
|
|
5889
5832
|
*/
|
|
5890
5833
|
get find(): FindRequestBuilder$i;
|
|
5891
5834
|
/**
|
|
5892
|
-
* Gets an item from the ApiSdk.v1.
|
|
5835
|
+
* Gets an item from the ApiSdk.v1.dataFactory.jobs.item collection
|
|
5893
5836
|
* @param id Unique identifier of the item
|
|
5894
5837
|
* @returns {JobsItemRequestBuilder}
|
|
5895
5838
|
*/
|
|
@@ -5927,6 +5870,86 @@ interface JobsRequestBuilder extends BaseRequestBuilder<JobsRequestBuilder> {
|
|
|
5927
5870
|
* Get a list of Job
|
|
5928
5871
|
*/
|
|
5929
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 {
|
|
5930
5953
|
page?: number;
|
|
5931
5954
|
size?: number;
|
|
5932
5955
|
sort?: string;
|
|
@@ -5936,7 +5959,7 @@ declare const GetSortOrderQueryParameterTypeObject$j: {
|
|
|
5936
5959
|
readonly DESC: "DESC";
|
|
5937
5960
|
readonly ASC: "ASC";
|
|
5938
5961
|
};
|
|
5939
|
-
declare const
|
|
5962
|
+
declare const PipelinesGetResponse_objectObject: {
|
|
5940
5963
|
readonly List: "list";
|
|
5941
5964
|
};
|
|
5942
5965
|
|
|
@@ -5960,7 +5983,7 @@ interface FindPostResponse$h extends AdditionalDataHolder, Parsable {
|
|
|
5960
5983
|
}
|
|
5961
5984
|
type FindPostResponse_object$h = (typeof FindPostResponse_objectObject$h)[keyof typeof FindPostResponse_objectObject$h];
|
|
5962
5985
|
/**
|
|
5963
|
-
* Builds and executes requests for operations under /v1/
|
|
5986
|
+
* Builds and executes requests for operations under /v1/data-factory/projects/find
|
|
5964
5987
|
*/
|
|
5965
5988
|
interface FindRequestBuilder$h extends BaseRequestBuilder<FindRequestBuilder$h> {
|
|
5966
5989
|
/**
|
|
@@ -5998,7 +6021,7 @@ declare const PostSortOrderQueryParameterTypeObject$i: {
|
|
|
5998
6021
|
};
|
|
5999
6022
|
|
|
6000
6023
|
/**
|
|
6001
|
-
* Builds and executes requests for operations under /v1/
|
|
6024
|
+
* Builds and executes requests for operations under /v1/data-factory/projects/{id}
|
|
6002
6025
|
*/
|
|
6003
6026
|
interface ProjectsItemRequestBuilder extends BaseRequestBuilder<ProjectsItemRequestBuilder> {
|
|
6004
6027
|
/**
|
|
@@ -6079,7 +6102,7 @@ interface ProjectsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6079
6102
|
}
|
|
6080
6103
|
type ProjectsGetResponse_object = (typeof ProjectsGetResponse_objectObject)[keyof typeof ProjectsGetResponse_objectObject];
|
|
6081
6104
|
/**
|
|
6082
|
-
* Builds and executes requests for operations under /v1/
|
|
6105
|
+
* Builds and executes requests for operations under /v1/data-factory/projects
|
|
6083
6106
|
*/
|
|
6084
6107
|
interface ProjectsRequestBuilder extends BaseRequestBuilder<ProjectsRequestBuilder> {
|
|
6085
6108
|
/**
|
|
@@ -6087,7 +6110,7 @@ interface ProjectsRequestBuilder extends BaseRequestBuilder<ProjectsRequestBuild
|
|
|
6087
6110
|
*/
|
|
6088
6111
|
get find(): FindRequestBuilder$h;
|
|
6089
6112
|
/**
|
|
6090
|
-
* Gets an item from the ApiSdk.v1.
|
|
6113
|
+
* Gets an item from the ApiSdk.v1.dataFactory.projects.item collection
|
|
6091
6114
|
* @param id Unique identifier of the item
|
|
6092
6115
|
* @returns {ProjectsItemRequestBuilder}
|
|
6093
6116
|
*/
|
|
@@ -6139,9 +6162,9 @@ declare const ProjectsGetResponse_objectObject: {
|
|
|
6139
6162
|
};
|
|
6140
6163
|
|
|
6141
6164
|
/**
|
|
6142
|
-
* Builds and executes requests for operations under /v1/
|
|
6165
|
+
* Builds and executes requests for operations under /v1/data-factory/task-executions/{id}
|
|
6143
6166
|
*/
|
|
6144
|
-
interface
|
|
6167
|
+
interface TaskExecutionsItemRequestBuilder extends BaseRequestBuilder<TaskExecutionsItemRequestBuilder> {
|
|
6145
6168
|
/**
|
|
6146
6169
|
* Get a Task Execution by id
|
|
6147
6170
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -6173,19 +6196,19 @@ interface Task_executionsItemRequestBuilder extends BaseRequestBuilder<Task_exec
|
|
|
6173
6196
|
}
|
|
6174
6197
|
|
|
6175
6198
|
/**
|
|
6176
|
-
* Builds and executes requests for operations under /v1/
|
|
6199
|
+
* Builds and executes requests for operations under /v1/data-factory/task-executions
|
|
6177
6200
|
*/
|
|
6178
|
-
interface
|
|
6201
|
+
interface TaskExecutionsRequestBuilder extends BaseRequestBuilder<TaskExecutionsRequestBuilder> {
|
|
6179
6202
|
/**
|
|
6180
|
-
* Gets an item from the ApiSdk.v1.
|
|
6203
|
+
* Gets an item from the ApiSdk.v1.dataFactory.taskExecutions.item collection
|
|
6181
6204
|
* @param id Unique identifier of the item
|
|
6182
|
-
* @returns {
|
|
6205
|
+
* @returns {TaskExecutionsItemRequestBuilder}
|
|
6183
6206
|
*/
|
|
6184
|
-
byId(id: string):
|
|
6207
|
+
byId(id: string): TaskExecutionsItemRequestBuilder;
|
|
6185
6208
|
}
|
|
6186
6209
|
|
|
6187
6210
|
/**
|
|
6188
|
-
* Builds and executes requests for operations under /v1/
|
|
6211
|
+
* Builds and executes requests for operations under /v1/data-factory/tasks/{id}/poll
|
|
6189
6212
|
*/
|
|
6190
6213
|
interface PollRequestBuilder extends BaseRequestBuilder<PollRequestBuilder> {
|
|
6191
6214
|
/**
|
|
@@ -6204,7 +6227,7 @@ interface PollRequestBuilder extends BaseRequestBuilder<PollRequestBuilder> {
|
|
|
6204
6227
|
}
|
|
6205
6228
|
|
|
6206
6229
|
/**
|
|
6207
|
-
* Builds and executes requests for operations under /v1/
|
|
6230
|
+
* Builds and executes requests for operations under /v1/data-factory/tasks/{id}
|
|
6208
6231
|
*/
|
|
6209
6232
|
interface TasksItemRequestBuilder extends BaseRequestBuilder<TasksItemRequestBuilder> {
|
|
6210
6233
|
/**
|
|
@@ -6274,11 +6297,11 @@ interface TasksGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6274
6297
|
}
|
|
6275
6298
|
type TasksGetResponse_object = (typeof TasksGetResponse_objectObject)[keyof typeof TasksGetResponse_objectObject];
|
|
6276
6299
|
/**
|
|
6277
|
-
* Builds and executes requests for operations under /v1/
|
|
6300
|
+
* Builds and executes requests for operations under /v1/data-factory/tasks
|
|
6278
6301
|
*/
|
|
6279
6302
|
interface TasksRequestBuilder extends BaseRequestBuilder<TasksRequestBuilder> {
|
|
6280
6303
|
/**
|
|
6281
|
-
* Gets an item from the ApiSdk.v1.
|
|
6304
|
+
* Gets an item from the ApiSdk.v1.dataFactory.tasks.item collection
|
|
6282
6305
|
* @param id Unique identifier of the item
|
|
6283
6306
|
* @returns {TasksItemRequestBuilder}
|
|
6284
6307
|
*/
|
|
@@ -6349,7 +6372,7 @@ interface FindPostResponse$g extends AdditionalDataHolder, Parsable {
|
|
|
6349
6372
|
}
|
|
6350
6373
|
type FindPostResponse_object$g = (typeof FindPostResponse_objectObject$g)[keyof typeof FindPostResponse_objectObject$g];
|
|
6351
6374
|
/**
|
|
6352
|
-
* Builds and executes requests for operations under /v1/
|
|
6375
|
+
* Builds and executes requests for operations under /v1/data-factory/variables/find
|
|
6353
6376
|
*/
|
|
6354
6377
|
interface FindRequestBuilder$g extends BaseRequestBuilder<FindRequestBuilder$g> {
|
|
6355
6378
|
/**
|
|
@@ -6387,7 +6410,7 @@ declare const PostSortOrderQueryParameterTypeObject$h: {
|
|
|
6387
6410
|
};
|
|
6388
6411
|
|
|
6389
6412
|
/**
|
|
6390
|
-
* Builds and executes requests for operations under /v1/
|
|
6413
|
+
* Builds and executes requests for operations under /v1/data-factory/variables/{id}
|
|
6391
6414
|
*/
|
|
6392
6415
|
interface VariablesItemRequestBuilder extends BaseRequestBuilder<VariablesItemRequestBuilder> {
|
|
6393
6416
|
/**
|
|
@@ -6441,7 +6464,7 @@ interface VariablesGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6441
6464
|
}
|
|
6442
6465
|
type VariablesGetResponse_object = (typeof VariablesGetResponse_objectObject)[keyof typeof VariablesGetResponse_objectObject];
|
|
6443
6466
|
/**
|
|
6444
|
-
* Builds and executes requests for operations under /v1/
|
|
6467
|
+
* Builds and executes requests for operations under /v1/data-factory/variables
|
|
6445
6468
|
*/
|
|
6446
6469
|
interface VariablesRequestBuilder extends BaseRequestBuilder<VariablesRequestBuilder> {
|
|
6447
6470
|
/**
|
|
@@ -6449,7 +6472,7 @@ interface VariablesRequestBuilder extends BaseRequestBuilder<VariablesRequestBui
|
|
|
6449
6472
|
*/
|
|
6450
6473
|
get find(): FindRequestBuilder$g;
|
|
6451
6474
|
/**
|
|
6452
|
-
* Gets an item from the ApiSdk.v1.
|
|
6475
|
+
* Gets an item from the ApiSdk.v1.dataFactory.variables.item collection
|
|
6453
6476
|
* @param id Unique identifier of the item
|
|
6454
6477
|
* @returns {VariablesItemRequestBuilder}
|
|
6455
6478
|
*/
|
|
@@ -6501,29 +6524,33 @@ declare const VariablesGetResponse_objectObject: {
|
|
|
6501
6524
|
};
|
|
6502
6525
|
|
|
6503
6526
|
/**
|
|
6504
|
-
* Builds and executes requests for operations under /v1/
|
|
6527
|
+
* Builds and executes requests for operations under /v1/data-factory
|
|
6505
6528
|
*/
|
|
6506
|
-
interface
|
|
6529
|
+
interface DataFactoryRequestBuilder extends BaseRequestBuilder<DataFactoryRequestBuilder> {
|
|
6507
6530
|
/**
|
|
6508
6531
|
* The files property
|
|
6509
6532
|
*/
|
|
6510
6533
|
get files(): FilesRequestBuilder;
|
|
6511
6534
|
/**
|
|
6512
|
-
* The
|
|
6535
|
+
* The jobExecutions property
|
|
6513
6536
|
*/
|
|
6514
|
-
get
|
|
6537
|
+
get jobExecutions(): JobExecutionsRequestBuilder;
|
|
6515
6538
|
/**
|
|
6516
6539
|
* The jobs property
|
|
6517
6540
|
*/
|
|
6518
6541
|
get jobs(): JobsRequestBuilder;
|
|
6542
|
+
/**
|
|
6543
|
+
* The pipelines property
|
|
6544
|
+
*/
|
|
6545
|
+
get pipelines(): PipelinesRequestBuilder;
|
|
6519
6546
|
/**
|
|
6520
6547
|
* The projects property
|
|
6521
6548
|
*/
|
|
6522
6549
|
get projects(): ProjectsRequestBuilder;
|
|
6523
6550
|
/**
|
|
6524
|
-
* The
|
|
6551
|
+
* The taskExecutions property
|
|
6525
6552
|
*/
|
|
6526
|
-
get
|
|
6553
|
+
get taskExecutions(): TaskExecutionsRequestBuilder;
|
|
6527
6554
|
/**
|
|
6528
6555
|
* The tasks property
|
|
6529
6556
|
*/
|
|
@@ -6542,7 +6569,7 @@ interface FindPostResponse$f extends AdditionalDataHolder, Parsable {
|
|
|
6542
6569
|
/**
|
|
6543
6570
|
* The data property
|
|
6544
6571
|
*/
|
|
6545
|
-
data?:
|
|
6572
|
+
data?: FieldDto[] | null;
|
|
6546
6573
|
/**
|
|
6547
6574
|
* The object property
|
|
6548
6575
|
*/
|
|
@@ -6554,11 +6581,11 @@ interface FindPostResponse$f extends AdditionalDataHolder, Parsable {
|
|
|
6554
6581
|
}
|
|
6555
6582
|
type FindPostResponse_object$f = (typeof FindPostResponse_objectObject$f)[keyof typeof FindPostResponse_objectObject$f];
|
|
6556
6583
|
/**
|
|
6557
|
-
* Builds and executes requests for operations under /v1/
|
|
6584
|
+
* Builds and executes requests for operations under /v1/fields/find
|
|
6558
6585
|
*/
|
|
6559
6586
|
interface FindRequestBuilder$f extends BaseRequestBuilder<FindRequestBuilder$f> {
|
|
6560
6587
|
/**
|
|
6561
|
-
* Find a list of Field
|
|
6588
|
+
* Find a list of Field
|
|
6562
6589
|
* @param body The request body
|
|
6563
6590
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6564
6591
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -6566,7 +6593,7 @@ interface FindRequestBuilder$f extends BaseRequestBuilder<FindRequestBuilder$f>
|
|
|
6566
6593
|
*/
|
|
6567
6594
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$f> | undefined): Promise<FindPostResponse$f | undefined>;
|
|
6568
6595
|
/**
|
|
6569
|
-
* Find a list of Field
|
|
6596
|
+
* Find a list of Field
|
|
6570
6597
|
* @param body The request body
|
|
6571
6598
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6572
6599
|
* @returns {RequestInformation}
|
|
@@ -6574,14 +6601,15 @@ interface FindRequestBuilder$f extends BaseRequestBuilder<FindRequestBuilder$f>
|
|
|
6574
6601
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$f> | undefined): RequestInformation;
|
|
6575
6602
|
}
|
|
6576
6603
|
/**
|
|
6577
|
-
* Find a list of Field
|
|
6604
|
+
* Find a list of Field
|
|
6578
6605
|
*/
|
|
6579
6606
|
interface FindRequestBuilderPostQueryParameters$f {
|
|
6580
|
-
fieldId?: string;
|
|
6581
6607
|
page?: number;
|
|
6608
|
+
parentId?: string;
|
|
6582
6609
|
size?: number;
|
|
6583
6610
|
sort?: string;
|
|
6584
6611
|
sortOrder?: PostSortOrderQueryParameterType$g;
|
|
6612
|
+
tableId?: string;
|
|
6585
6613
|
}
|
|
6586
6614
|
type PostSortOrderQueryParameterType$g = (typeof PostSortOrderQueryParameterTypeObject$g)[keyof typeof PostSortOrderQueryParameterTypeObject$g];
|
|
6587
6615
|
declare const FindPostResponse_objectObject$f: {
|
|
@@ -6593,25 +6621,40 @@ declare const PostSortOrderQueryParameterTypeObject$g: {
|
|
|
6593
6621
|
};
|
|
6594
6622
|
|
|
6595
6623
|
/**
|
|
6596
|
-
* Builds and executes requests for operations under /v1/
|
|
6624
|
+
* Builds and executes requests for operations under /v1/fields/{id}
|
|
6597
6625
|
*/
|
|
6598
|
-
interface
|
|
6626
|
+
interface FieldsItemRequestBuilder extends BaseRequestBuilder<FieldsItemRequestBuilder> {
|
|
6599
6627
|
/**
|
|
6600
|
-
* Get a Field
|
|
6628
|
+
* Get a Field by id
|
|
6601
6629
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6602
|
-
* @returns {Promise<
|
|
6603
|
-
* @throws {
|
|
6630
|
+
* @returns {Promise<FieldDto>}
|
|
6631
|
+
* @throws {FieldDto400Error} error when the service returns a 400 status code
|
|
6604
6632
|
*/
|
|
6605
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<
|
|
6633
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<FieldDto | undefined>;
|
|
6606
6634
|
/**
|
|
6607
|
-
*
|
|
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
|
|
6608
6644
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6609
6645
|
* @returns {RequestInformation}
|
|
6610
6646
|
*/
|
|
6611
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;
|
|
6612
6655
|
}
|
|
6613
6656
|
|
|
6614
|
-
interface
|
|
6657
|
+
interface FieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
6615
6658
|
/**
|
|
6616
6659
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6617
6660
|
*/
|
|
@@ -6619,57 +6662,58 @@ interface Field_valuesGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6619
6662
|
/**
|
|
6620
6663
|
* The data property
|
|
6621
6664
|
*/
|
|
6622
|
-
data?:
|
|
6665
|
+
data?: FieldDto[] | null;
|
|
6623
6666
|
/**
|
|
6624
6667
|
* The object property
|
|
6625
6668
|
*/
|
|
6626
|
-
object?:
|
|
6669
|
+
object?: FieldsGetResponse_object | null;
|
|
6627
6670
|
/**
|
|
6628
6671
|
* The totalElements property
|
|
6629
6672
|
*/
|
|
6630
6673
|
totalElements?: number | null;
|
|
6631
6674
|
}
|
|
6632
|
-
type
|
|
6675
|
+
type FieldsGetResponse_object = (typeof FieldsGetResponse_objectObject)[keyof typeof FieldsGetResponse_objectObject];
|
|
6633
6676
|
/**
|
|
6634
|
-
* Builds and executes requests for operations under /v1/
|
|
6677
|
+
* Builds and executes requests for operations under /v1/fields
|
|
6635
6678
|
*/
|
|
6636
|
-
interface
|
|
6679
|
+
interface FieldsRequestBuilder extends BaseRequestBuilder<FieldsRequestBuilder> {
|
|
6637
6680
|
/**
|
|
6638
6681
|
* The find property
|
|
6639
6682
|
*/
|
|
6640
6683
|
get find(): FindRequestBuilder$f;
|
|
6641
6684
|
/**
|
|
6642
|
-
* Gets an item from the ApiSdk.v1.
|
|
6685
|
+
* Gets an item from the ApiSdk.v1.fields.item collection
|
|
6643
6686
|
* @param id Unique identifier of the item
|
|
6644
|
-
* @returns {
|
|
6687
|
+
* @returns {FieldsItemRequestBuilder}
|
|
6645
6688
|
*/
|
|
6646
|
-
byId(id: string):
|
|
6689
|
+
byId(id: string): FieldsItemRequestBuilder;
|
|
6647
6690
|
/**
|
|
6648
|
-
* Get a list of Field
|
|
6691
|
+
* Get a list of Field
|
|
6649
6692
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6650
|
-
* @returns {Promise<
|
|
6651
|
-
* @throws {
|
|
6693
|
+
* @returns {Promise<FieldsGetResponse>}
|
|
6694
|
+
* @throws {Fields400Error} error when the service returns a 400 status code
|
|
6652
6695
|
*/
|
|
6653
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
6696
|
+
get(requestConfiguration?: RequestConfiguration<FieldsRequestBuilderGetQueryParameters> | undefined): Promise<FieldsGetResponse | undefined>;
|
|
6654
6697
|
/**
|
|
6655
|
-
* Get a list of Field
|
|
6698
|
+
* Get a list of Field
|
|
6656
6699
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6657
6700
|
* @returns {RequestInformation}
|
|
6658
6701
|
*/
|
|
6659
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
6702
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<FieldsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
6660
6703
|
}
|
|
6661
6704
|
/**
|
|
6662
|
-
* Get a list of Field
|
|
6705
|
+
* Get a list of Field
|
|
6663
6706
|
*/
|
|
6664
|
-
interface
|
|
6665
|
-
fieldId?: string;
|
|
6707
|
+
interface FieldsRequestBuilderGetQueryParameters {
|
|
6666
6708
|
page?: number;
|
|
6709
|
+
parentId?: string;
|
|
6667
6710
|
size?: number;
|
|
6668
6711
|
sort?: string;
|
|
6669
6712
|
sortOrder?: GetSortOrderQueryParameterType$f;
|
|
6713
|
+
tableId?: string;
|
|
6670
6714
|
}
|
|
6671
6715
|
type GetSortOrderQueryParameterType$f = (typeof GetSortOrderQueryParameterTypeObject$f)[keyof typeof GetSortOrderQueryParameterTypeObject$f];
|
|
6672
|
-
declare const
|
|
6716
|
+
declare const FieldsGetResponse_objectObject: {
|
|
6673
6717
|
readonly List: "list";
|
|
6674
6718
|
};
|
|
6675
6719
|
declare const GetSortOrderQueryParameterTypeObject$f: {
|
|
@@ -6685,7 +6729,7 @@ interface FindPostResponse$e extends AdditionalDataHolder, Parsable {
|
|
|
6685
6729
|
/**
|
|
6686
6730
|
* The data property
|
|
6687
6731
|
*/
|
|
6688
|
-
data?:
|
|
6732
|
+
data?: FieldValueDto[] | null;
|
|
6689
6733
|
/**
|
|
6690
6734
|
* The object property
|
|
6691
6735
|
*/
|
|
@@ -6697,11 +6741,11 @@ interface FindPostResponse$e extends AdditionalDataHolder, Parsable {
|
|
|
6697
6741
|
}
|
|
6698
6742
|
type FindPostResponse_object$e = (typeof FindPostResponse_objectObject$e)[keyof typeof FindPostResponse_objectObject$e];
|
|
6699
6743
|
/**
|
|
6700
|
-
* Builds and executes requests for operations under /v1/
|
|
6744
|
+
* Builds and executes requests for operations under /v1/field-values/find
|
|
6701
6745
|
*/
|
|
6702
6746
|
interface FindRequestBuilder$e extends BaseRequestBuilder<FindRequestBuilder$e> {
|
|
6703
6747
|
/**
|
|
6704
|
-
* Find a list of Field
|
|
6748
|
+
* Find a list of Field Value
|
|
6705
6749
|
* @param body The request body
|
|
6706
6750
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6707
6751
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -6709,7 +6753,7 @@ interface FindRequestBuilder$e extends BaseRequestBuilder<FindRequestBuilder$e>
|
|
|
6709
6753
|
*/
|
|
6710
6754
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$e> | undefined): Promise<FindPostResponse$e | undefined>;
|
|
6711
6755
|
/**
|
|
6712
|
-
* Find a list of Field
|
|
6756
|
+
* Find a list of Field Value
|
|
6713
6757
|
* @param body The request body
|
|
6714
6758
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6715
6759
|
* @returns {RequestInformation}
|
|
@@ -6717,15 +6761,14 @@ interface FindRequestBuilder$e extends BaseRequestBuilder<FindRequestBuilder$e>
|
|
|
6717
6761
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$e> | undefined): RequestInformation;
|
|
6718
6762
|
}
|
|
6719
6763
|
/**
|
|
6720
|
-
* Find a list of Field
|
|
6764
|
+
* Find a list of Field Value
|
|
6721
6765
|
*/
|
|
6722
6766
|
interface FindRequestBuilderPostQueryParameters$e {
|
|
6767
|
+
fieldId?: string;
|
|
6723
6768
|
page?: number;
|
|
6724
|
-
parentId?: string;
|
|
6725
6769
|
size?: number;
|
|
6726
6770
|
sort?: string;
|
|
6727
6771
|
sortOrder?: PostSortOrderQueryParameterType$f;
|
|
6728
|
-
tableId?: string;
|
|
6729
6772
|
}
|
|
6730
6773
|
type PostSortOrderQueryParameterType$f = (typeof PostSortOrderQueryParameterTypeObject$f)[keyof typeof PostSortOrderQueryParameterTypeObject$f];
|
|
6731
6774
|
declare const FindPostResponse_objectObject$e: {
|
|
@@ -6737,40 +6780,25 @@ declare const PostSortOrderQueryParameterTypeObject$f: {
|
|
|
6737
6780
|
};
|
|
6738
6781
|
|
|
6739
6782
|
/**
|
|
6740
|
-
* Builds and executes requests for operations under /v1/
|
|
6783
|
+
* Builds and executes requests for operations under /v1/field-values/{id}
|
|
6741
6784
|
*/
|
|
6742
|
-
interface
|
|
6785
|
+
interface FieldValuesItemRequestBuilder extends BaseRequestBuilder<FieldValuesItemRequestBuilder> {
|
|
6743
6786
|
/**
|
|
6744
|
-
* Get a Field by id
|
|
6745
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6746
|
-
* @returns {Promise<FieldDto>}
|
|
6747
|
-
* @throws {FieldDto400Error} error when the service returns a 400 status code
|
|
6748
|
-
*/
|
|
6749
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<FieldDto | undefined>;
|
|
6750
|
-
/**
|
|
6751
|
-
* Patch a Field
|
|
6752
|
-
* @param body The request body
|
|
6787
|
+
* Get a Field Value by id
|
|
6753
6788
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6754
|
-
* @returns {Promise<
|
|
6755
|
-
* @throws {
|
|
6789
|
+
* @returns {Promise<FieldValueDto>}
|
|
6790
|
+
* @throws {FieldValueDto400Error} error when the service returns a 400 status code
|
|
6756
6791
|
*/
|
|
6757
|
-
|
|
6792
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<FieldValueDto | undefined>;
|
|
6758
6793
|
/**
|
|
6759
|
-
* Get a Field by id
|
|
6794
|
+
* Get a Field Value by id
|
|
6760
6795
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6761
6796
|
* @returns {RequestInformation}
|
|
6762
6797
|
*/
|
|
6763
6798
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6764
|
-
/**
|
|
6765
|
-
* Patch a Field
|
|
6766
|
-
* @param body The request body
|
|
6767
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6768
|
-
* @returns {RequestInformation}
|
|
6769
|
-
*/
|
|
6770
|
-
toPatchRequestInformation(body: FieldUpdateDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6771
6799
|
}
|
|
6772
6800
|
|
|
6773
|
-
interface
|
|
6801
|
+
interface FieldValuesGetResponse extends AdditionalDataHolder, Parsable {
|
|
6774
6802
|
/**
|
|
6775
6803
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6776
6804
|
*/
|
|
@@ -6778,58 +6806,57 @@ interface FieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6778
6806
|
/**
|
|
6779
6807
|
* The data property
|
|
6780
6808
|
*/
|
|
6781
|
-
data?:
|
|
6809
|
+
data?: FieldValueDto[] | null;
|
|
6782
6810
|
/**
|
|
6783
6811
|
* The object property
|
|
6784
6812
|
*/
|
|
6785
|
-
object?:
|
|
6813
|
+
object?: FieldValuesGetResponse_object | null;
|
|
6786
6814
|
/**
|
|
6787
6815
|
* The totalElements property
|
|
6788
6816
|
*/
|
|
6789
6817
|
totalElements?: number | null;
|
|
6790
6818
|
}
|
|
6791
|
-
type
|
|
6819
|
+
type FieldValuesGetResponse_object = (typeof FieldValuesGetResponse_objectObject)[keyof typeof FieldValuesGetResponse_objectObject];
|
|
6792
6820
|
/**
|
|
6793
|
-
* Builds and executes requests for operations under /v1/
|
|
6821
|
+
* Builds and executes requests for operations under /v1/field-values
|
|
6794
6822
|
*/
|
|
6795
|
-
interface
|
|
6823
|
+
interface FieldValuesRequestBuilder extends BaseRequestBuilder<FieldValuesRequestBuilder> {
|
|
6796
6824
|
/**
|
|
6797
6825
|
* The find property
|
|
6798
6826
|
*/
|
|
6799
6827
|
get find(): FindRequestBuilder$e;
|
|
6800
6828
|
/**
|
|
6801
|
-
* Gets an item from the ApiSdk.v1.
|
|
6829
|
+
* Gets an item from the ApiSdk.v1.fieldValues.item collection
|
|
6802
6830
|
* @param id Unique identifier of the item
|
|
6803
|
-
* @returns {
|
|
6831
|
+
* @returns {FieldValuesItemRequestBuilder}
|
|
6804
6832
|
*/
|
|
6805
|
-
byId(id: string):
|
|
6833
|
+
byId(id: string): FieldValuesItemRequestBuilder;
|
|
6806
6834
|
/**
|
|
6807
|
-
* Get a list of Field
|
|
6835
|
+
* Get a list of Field Value
|
|
6808
6836
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6809
|
-
* @returns {Promise<
|
|
6810
|
-
* @throws {
|
|
6837
|
+
* @returns {Promise<FieldValuesGetResponse>}
|
|
6838
|
+
* @throws {FieldValues400Error} error when the service returns a 400 status code
|
|
6811
6839
|
*/
|
|
6812
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
6840
|
+
get(requestConfiguration?: RequestConfiguration<FieldValuesRequestBuilderGetQueryParameters> | undefined): Promise<FieldValuesGetResponse | undefined>;
|
|
6813
6841
|
/**
|
|
6814
|
-
* Get a list of Field
|
|
6842
|
+
* Get a list of Field Value
|
|
6815
6843
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6816
6844
|
* @returns {RequestInformation}
|
|
6817
6845
|
*/
|
|
6818
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
6846
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<FieldValuesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
6819
6847
|
}
|
|
6820
6848
|
/**
|
|
6821
|
-
* Get a list of Field
|
|
6849
|
+
* Get a list of Field Value
|
|
6822
6850
|
*/
|
|
6823
|
-
interface
|
|
6851
|
+
interface FieldValuesRequestBuilderGetQueryParameters {
|
|
6852
|
+
fieldId?: string;
|
|
6824
6853
|
page?: number;
|
|
6825
|
-
parentId?: string;
|
|
6826
6854
|
size?: number;
|
|
6827
6855
|
sort?: string;
|
|
6828
6856
|
sortOrder?: GetSortOrderQueryParameterType$e;
|
|
6829
|
-
tableId?: string;
|
|
6830
6857
|
}
|
|
6831
6858
|
type GetSortOrderQueryParameterType$e = (typeof GetSortOrderQueryParameterTypeObject$e)[keyof typeof GetSortOrderQueryParameterTypeObject$e];
|
|
6832
|
-
declare const
|
|
6859
|
+
declare const FieldValuesGetResponse_objectObject: {
|
|
6833
6860
|
readonly List: "list";
|
|
6834
6861
|
};
|
|
6835
6862
|
declare const GetSortOrderQueryParameterTypeObject$e: {
|
|
@@ -6857,7 +6884,7 @@ interface FindPostResponse$d extends AdditionalDataHolder, Parsable {
|
|
|
6857
6884
|
}
|
|
6858
6885
|
type FindPostResponse_object$d = (typeof FindPostResponse_objectObject$d)[keyof typeof FindPostResponse_objectObject$d];
|
|
6859
6886
|
/**
|
|
6860
|
-
* Builds and executes requests for operations under /v1/
|
|
6887
|
+
* Builds and executes requests for operations under /v1/item-links/find
|
|
6861
6888
|
*/
|
|
6862
6889
|
interface FindRequestBuilder$d extends BaseRequestBuilder<FindRequestBuilder$d> {
|
|
6863
6890
|
/**
|
|
@@ -6896,13 +6923,13 @@ declare const PostSortOrderQueryParameterTypeObject$e: {
|
|
|
6896
6923
|
};
|
|
6897
6924
|
|
|
6898
6925
|
/**
|
|
6899
|
-
* Builds and executes requests for operations under /v1/
|
|
6926
|
+
* Builds and executes requests for operations under /v1/item-links/{id}
|
|
6900
6927
|
*/
|
|
6901
|
-
interface
|
|
6928
|
+
interface ItemLinksItemRequestBuilder extends BaseRequestBuilder<ItemLinksItemRequestBuilder> {
|
|
6902
6929
|
/**
|
|
6903
6930
|
* Delete a Item Link by id
|
|
6904
6931
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6905
|
-
* @throws {
|
|
6932
|
+
* @throws {ItemLinks400Error} error when the service returns a 400 status code
|
|
6906
6933
|
*/
|
|
6907
6934
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
6908
6935
|
/**
|
|
@@ -6927,7 +6954,7 @@ interface Item_linksItemRequestBuilder extends BaseRequestBuilder<Item_linksItem
|
|
|
6927
6954
|
}
|
|
6928
6955
|
|
|
6929
6956
|
type GetSortOrderQueryParameterType$d = (typeof GetSortOrderQueryParameterTypeObject$d)[keyof typeof GetSortOrderQueryParameterTypeObject$d];
|
|
6930
|
-
interface
|
|
6957
|
+
interface ItemLinksGetResponse extends AdditionalDataHolder, Parsable {
|
|
6931
6958
|
/**
|
|
6932
6959
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6933
6960
|
*/
|
|
@@ -6939,34 +6966,34 @@ interface Item_linksGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
6939
6966
|
/**
|
|
6940
6967
|
* The object property
|
|
6941
6968
|
*/
|
|
6942
|
-
object?:
|
|
6969
|
+
object?: ItemLinksGetResponse_object | null;
|
|
6943
6970
|
/**
|
|
6944
6971
|
* The totalElements property
|
|
6945
6972
|
*/
|
|
6946
6973
|
totalElements?: number | null;
|
|
6947
6974
|
}
|
|
6948
|
-
type
|
|
6975
|
+
type ItemLinksGetResponse_object = (typeof ItemLinksGetResponse_objectObject)[keyof typeof ItemLinksGetResponse_objectObject];
|
|
6949
6976
|
/**
|
|
6950
|
-
* Builds and executes requests for operations under /v1/
|
|
6977
|
+
* Builds and executes requests for operations under /v1/item-links
|
|
6951
6978
|
*/
|
|
6952
|
-
interface
|
|
6979
|
+
interface ItemLinksRequestBuilder extends BaseRequestBuilder<ItemLinksRequestBuilder> {
|
|
6953
6980
|
/**
|
|
6954
6981
|
* The find property
|
|
6955
6982
|
*/
|
|
6956
6983
|
get find(): FindRequestBuilder$d;
|
|
6957
6984
|
/**
|
|
6958
|
-
* Gets an item from the ApiSdk.v1.
|
|
6985
|
+
* Gets an item from the ApiSdk.v1.itemLinks.item collection
|
|
6959
6986
|
* @param id Unique identifier of the item
|
|
6960
|
-
* @returns {
|
|
6987
|
+
* @returns {ItemLinksItemRequestBuilder}
|
|
6961
6988
|
*/
|
|
6962
|
-
byId(id: string):
|
|
6989
|
+
byId(id: string): ItemLinksItemRequestBuilder;
|
|
6963
6990
|
/**
|
|
6964
6991
|
* Get a list of Item Link
|
|
6965
6992
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6966
|
-
* @returns {Promise<
|
|
6967
|
-
* @throws {
|
|
6993
|
+
* @returns {Promise<ItemLinksGetResponse>}
|
|
6994
|
+
* @throws {ItemLinks400Error} error when the service returns a 400 status code
|
|
6968
6995
|
*/
|
|
6969
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
6996
|
+
get(requestConfiguration?: RequestConfiguration<ItemLinksRequestBuilderGetQueryParameters> | undefined): Promise<ItemLinksGetResponse | undefined>;
|
|
6970
6997
|
/**
|
|
6971
6998
|
* Create a Item Link
|
|
6972
6999
|
* @param body The request body
|
|
@@ -6980,7 +7007,7 @@ interface Item_linksRequestBuilder extends BaseRequestBuilder<Item_linksRequestB
|
|
|
6980
7007
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6981
7008
|
* @returns {RequestInformation}
|
|
6982
7009
|
*/
|
|
6983
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
7010
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ItemLinksRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
6984
7011
|
/**
|
|
6985
7012
|
* Create a Item Link
|
|
6986
7013
|
* @param body The request body
|
|
@@ -6992,7 +7019,7 @@ interface Item_linksRequestBuilder extends BaseRequestBuilder<Item_linksRequestB
|
|
|
6992
7019
|
/**
|
|
6993
7020
|
* Get a list of Item Link
|
|
6994
7021
|
*/
|
|
6995
|
-
interface
|
|
7022
|
+
interface ItemLinksRequestBuilderGetQueryParameters {
|
|
6996
7023
|
page?: number;
|
|
6997
7024
|
size?: number;
|
|
6998
7025
|
sort?: string;
|
|
@@ -7003,7 +7030,7 @@ declare const GetSortOrderQueryParameterTypeObject$d: {
|
|
|
7003
7030
|
readonly DESC: "DESC";
|
|
7004
7031
|
readonly ASC: "ASC";
|
|
7005
7032
|
};
|
|
7006
|
-
declare const
|
|
7033
|
+
declare const ItemLinksGetResponse_objectObject: {
|
|
7007
7034
|
readonly List: "list";
|
|
7008
7035
|
};
|
|
7009
7036
|
|
|
@@ -7436,7 +7463,7 @@ interface FindPostResponse$a extends AdditionalDataHolder, Parsable {
|
|
|
7436
7463
|
}
|
|
7437
7464
|
type FindPostResponse_object$a = (typeof FindPostResponse_objectObject$a)[keyof typeof FindPostResponse_objectObject$a];
|
|
7438
7465
|
/**
|
|
7439
|
-
* Builds and executes requests for operations under /v1/
|
|
7466
|
+
* Builds and executes requests for operations under /v1/matrix-fields/find
|
|
7440
7467
|
*/
|
|
7441
7468
|
interface FindRequestBuilder$a extends BaseRequestBuilder<FindRequestBuilder$a> {
|
|
7442
7469
|
/**
|
|
@@ -7475,9 +7502,9 @@ declare const PostSortOrderQueryParameterTypeObject$a: {
|
|
|
7475
7502
|
};
|
|
7476
7503
|
|
|
7477
7504
|
/**
|
|
7478
|
-
* Builds and executes requests for operations under /v1/
|
|
7505
|
+
* Builds and executes requests for operations under /v1/matrix-fields/{id}
|
|
7479
7506
|
*/
|
|
7480
|
-
interface
|
|
7507
|
+
interface MatrixFieldsItemRequestBuilder extends BaseRequestBuilder<MatrixFieldsItemRequestBuilder> {
|
|
7481
7508
|
/**
|
|
7482
7509
|
* Get a Matrix Field by id
|
|
7483
7510
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -7494,7 +7521,7 @@ interface Matrix_fieldsItemRequestBuilder extends BaseRequestBuilder<Matrix_fiel
|
|
|
7494
7521
|
}
|
|
7495
7522
|
|
|
7496
7523
|
type GetSortOrderQueryParameterType$a = (typeof GetSortOrderQueryParameterTypeObject$a)[keyof typeof GetSortOrderQueryParameterTypeObject$a];
|
|
7497
|
-
interface
|
|
7524
|
+
interface MatrixFieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7498
7525
|
/**
|
|
7499
7526
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7500
7527
|
*/
|
|
@@ -7506,45 +7533,45 @@ interface Matrix_fieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
7506
7533
|
/**
|
|
7507
7534
|
* The object property
|
|
7508
7535
|
*/
|
|
7509
|
-
object?:
|
|
7536
|
+
object?: MatrixFieldsGetResponse_object | null;
|
|
7510
7537
|
/**
|
|
7511
7538
|
* The totalElements property
|
|
7512
7539
|
*/
|
|
7513
7540
|
totalElements?: number | null;
|
|
7514
7541
|
}
|
|
7515
|
-
type
|
|
7542
|
+
type MatrixFieldsGetResponse_object = (typeof MatrixFieldsGetResponse_objectObject)[keyof typeof MatrixFieldsGetResponse_objectObject];
|
|
7516
7543
|
/**
|
|
7517
|
-
* Builds and executes requests for operations under /v1/
|
|
7544
|
+
* Builds and executes requests for operations under /v1/matrix-fields
|
|
7518
7545
|
*/
|
|
7519
|
-
interface
|
|
7546
|
+
interface MatrixFieldsRequestBuilder extends BaseRequestBuilder<MatrixFieldsRequestBuilder> {
|
|
7520
7547
|
/**
|
|
7521
7548
|
* The find property
|
|
7522
7549
|
*/
|
|
7523
7550
|
get find(): FindRequestBuilder$a;
|
|
7524
7551
|
/**
|
|
7525
|
-
* Gets an item from the ApiSdk.v1.
|
|
7552
|
+
* Gets an item from the ApiSdk.v1.matrixFields.item collection
|
|
7526
7553
|
* @param id Unique identifier of the item
|
|
7527
|
-
* @returns {
|
|
7554
|
+
* @returns {MatrixFieldsItemRequestBuilder}
|
|
7528
7555
|
*/
|
|
7529
|
-
byId(id: string):
|
|
7556
|
+
byId(id: string): MatrixFieldsItemRequestBuilder;
|
|
7530
7557
|
/**
|
|
7531
7558
|
* Get a list of Matrix Field
|
|
7532
7559
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7533
|
-
* @returns {Promise<
|
|
7534
|
-
* @throws {
|
|
7560
|
+
* @returns {Promise<MatrixFieldsGetResponse>}
|
|
7561
|
+
* @throws {MatrixFields400Error} error when the service returns a 400 status code
|
|
7535
7562
|
*/
|
|
7536
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
7563
|
+
get(requestConfiguration?: RequestConfiguration<MatrixFieldsRequestBuilderGetQueryParameters> | undefined): Promise<MatrixFieldsGetResponse | undefined>;
|
|
7537
7564
|
/**
|
|
7538
7565
|
* Get a list of Matrix Field
|
|
7539
7566
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7540
7567
|
* @returns {RequestInformation}
|
|
7541
7568
|
*/
|
|
7542
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
7569
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MatrixFieldsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
7543
7570
|
}
|
|
7544
7571
|
/**
|
|
7545
7572
|
* Get a list of Matrix Field
|
|
7546
7573
|
*/
|
|
7547
|
-
interface
|
|
7574
|
+
interface MatrixFieldsRequestBuilderGetQueryParameters {
|
|
7548
7575
|
page?: number;
|
|
7549
7576
|
size?: number;
|
|
7550
7577
|
sort?: string;
|
|
@@ -7555,7 +7582,7 @@ declare const GetSortOrderQueryParameterTypeObject$a: {
|
|
|
7555
7582
|
readonly DESC: "DESC";
|
|
7556
7583
|
readonly ASC: "ASC";
|
|
7557
7584
|
};
|
|
7558
|
-
declare const
|
|
7585
|
+
declare const MatrixFieldsGetResponse_objectObject: {
|
|
7559
7586
|
readonly List: "list";
|
|
7560
7587
|
};
|
|
7561
7588
|
|
|
@@ -7893,7 +7920,7 @@ interface FindPostResponse$7 extends AdditionalDataHolder, Parsable {
|
|
|
7893
7920
|
}
|
|
7894
7921
|
type FindPostResponse_object$7 = (typeof FindPostResponse_objectObject$7)[keyof typeof FindPostResponse_objectObject$7];
|
|
7895
7922
|
/**
|
|
7896
|
-
* Builds and executes requests for operations under /v1/
|
|
7923
|
+
* Builds and executes requests for operations under /v1/screen-columns/find
|
|
7897
7924
|
*/
|
|
7898
7925
|
interface FindRequestBuilder$7 extends BaseRequestBuilder<FindRequestBuilder$7> {
|
|
7899
7926
|
/**
|
|
@@ -7933,9 +7960,9 @@ declare const PostSortOrderQueryParameterTypeObject$7: {
|
|
|
7933
7960
|
};
|
|
7934
7961
|
|
|
7935
7962
|
/**
|
|
7936
|
-
* Builds and executes requests for operations under /v1/
|
|
7963
|
+
* Builds and executes requests for operations under /v1/screen-columns/{id}
|
|
7937
7964
|
*/
|
|
7938
|
-
interface
|
|
7965
|
+
interface ScreenColumnsItemRequestBuilder extends BaseRequestBuilder<ScreenColumnsItemRequestBuilder> {
|
|
7939
7966
|
/**
|
|
7940
7967
|
* (Experimental) - Get a Screen Column by id
|
|
7941
7968
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -7952,7 +7979,7 @@ interface Screen_columnsItemRequestBuilder extends BaseRequestBuilder<Screen_col
|
|
|
7952
7979
|
}
|
|
7953
7980
|
|
|
7954
7981
|
type GetSortOrderQueryParameterType$7 = (typeof GetSortOrderQueryParameterTypeObject$7)[keyof typeof GetSortOrderQueryParameterTypeObject$7];
|
|
7955
|
-
interface
|
|
7982
|
+
interface ScreenColumnsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7956
7983
|
/**
|
|
7957
7984
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7958
7985
|
*/
|
|
@@ -7964,45 +7991,45 @@ interface Screen_columnsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
7964
7991
|
/**
|
|
7965
7992
|
* The object property
|
|
7966
7993
|
*/
|
|
7967
|
-
object?:
|
|
7994
|
+
object?: ScreenColumnsGetResponse_object | null;
|
|
7968
7995
|
/**
|
|
7969
7996
|
* The totalElements property
|
|
7970
7997
|
*/
|
|
7971
7998
|
totalElements?: number | null;
|
|
7972
7999
|
}
|
|
7973
|
-
type
|
|
8000
|
+
type ScreenColumnsGetResponse_object = (typeof ScreenColumnsGetResponse_objectObject)[keyof typeof ScreenColumnsGetResponse_objectObject];
|
|
7974
8001
|
/**
|
|
7975
|
-
* Builds and executes requests for operations under /v1/
|
|
8002
|
+
* Builds and executes requests for operations under /v1/screen-columns
|
|
7976
8003
|
*/
|
|
7977
|
-
interface
|
|
8004
|
+
interface ScreenColumnsRequestBuilder extends BaseRequestBuilder<ScreenColumnsRequestBuilder> {
|
|
7978
8005
|
/**
|
|
7979
8006
|
* The find property
|
|
7980
8007
|
*/
|
|
7981
8008
|
get find(): FindRequestBuilder$7;
|
|
7982
8009
|
/**
|
|
7983
|
-
* Gets an item from the ApiSdk.v1.
|
|
8010
|
+
* Gets an item from the ApiSdk.v1.screenColumns.item collection
|
|
7984
8011
|
* @param id Unique identifier of the item
|
|
7985
|
-
* @returns {
|
|
8012
|
+
* @returns {ScreenColumnsItemRequestBuilder}
|
|
7986
8013
|
*/
|
|
7987
|
-
byId(id: string):
|
|
8014
|
+
byId(id: string): ScreenColumnsItemRequestBuilder;
|
|
7988
8015
|
/**
|
|
7989
8016
|
* (Experimental) - Get a list of Screen Column
|
|
7990
8017
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7991
|
-
* @returns {Promise<
|
|
7992
|
-
* @throws {
|
|
8018
|
+
* @returns {Promise<ScreenColumnsGetResponse>}
|
|
8019
|
+
* @throws {ScreenColumns400Error} error when the service returns a 400 status code
|
|
7993
8020
|
*/
|
|
7994
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8021
|
+
get(requestConfiguration?: RequestConfiguration<ScreenColumnsRequestBuilderGetQueryParameters> | undefined): Promise<ScreenColumnsGetResponse | undefined>;
|
|
7995
8022
|
/**
|
|
7996
8023
|
* (Experimental) - Get a list of Screen Column
|
|
7997
8024
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7998
8025
|
* @returns {RequestInformation}
|
|
7999
8026
|
*/
|
|
8000
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
8027
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ScreenColumnsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
8001
8028
|
}
|
|
8002
8029
|
/**
|
|
8003
8030
|
* (Experimental) - Get a list of Screen Column
|
|
8004
8031
|
*/
|
|
8005
|
-
interface
|
|
8032
|
+
interface ScreenColumnsRequestBuilderGetQueryParameters {
|
|
8006
8033
|
page?: number;
|
|
8007
8034
|
parentId?: string;
|
|
8008
8035
|
screenSectionId?: string;
|
|
@@ -8014,7 +8041,7 @@ declare const GetSortOrderQueryParameterTypeObject$7: {
|
|
|
8014
8041
|
readonly DESC: "DESC";
|
|
8015
8042
|
readonly ASC: "ASC";
|
|
8016
8043
|
};
|
|
8017
|
-
declare const
|
|
8044
|
+
declare const ScreenColumnsGetResponse_objectObject: {
|
|
8018
8045
|
readonly List: "list";
|
|
8019
8046
|
};
|
|
8020
8047
|
|
|
@@ -8026,7 +8053,7 @@ interface FindPostResponse$6 extends AdditionalDataHolder, Parsable {
|
|
|
8026
8053
|
/**
|
|
8027
8054
|
* The data property
|
|
8028
8055
|
*/
|
|
8029
|
-
data?:
|
|
8056
|
+
data?: ScreenDto[] | null;
|
|
8030
8057
|
/**
|
|
8031
8058
|
* The object property
|
|
8032
8059
|
*/
|
|
@@ -8038,11 +8065,11 @@ interface FindPostResponse$6 extends AdditionalDataHolder, Parsable {
|
|
|
8038
8065
|
}
|
|
8039
8066
|
type FindPostResponse_object$6 = (typeof FindPostResponse_objectObject$6)[keyof typeof FindPostResponse_objectObject$6];
|
|
8040
8067
|
/**
|
|
8041
|
-
* Builds and executes requests for operations under /v1/
|
|
8068
|
+
* Builds and executes requests for operations under /v1/screens/find
|
|
8042
8069
|
*/
|
|
8043
8070
|
interface FindRequestBuilder$6 extends BaseRequestBuilder<FindRequestBuilder$6> {
|
|
8044
8071
|
/**
|
|
8045
|
-
* Find a list of Screen
|
|
8072
|
+
* Find a list of Screen
|
|
8046
8073
|
* @param body The request body
|
|
8047
8074
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8048
8075
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -8050,7 +8077,7 @@ interface FindRequestBuilder$6 extends BaseRequestBuilder<FindRequestBuilder$6>
|
|
|
8050
8077
|
*/
|
|
8051
8078
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$6> | undefined): Promise<FindPostResponse$6 | undefined>;
|
|
8052
8079
|
/**
|
|
8053
|
-
* Find a list of Screen
|
|
8080
|
+
* Find a list of Screen
|
|
8054
8081
|
* @param body The request body
|
|
8055
8082
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8056
8083
|
* @returns {RequestInformation}
|
|
@@ -8058,14 +8085,14 @@ interface FindRequestBuilder$6 extends BaseRequestBuilder<FindRequestBuilder$6>
|
|
|
8058
8085
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$6> | undefined): RequestInformation;
|
|
8059
8086
|
}
|
|
8060
8087
|
/**
|
|
8061
|
-
* Find a list of Screen
|
|
8088
|
+
* Find a list of Screen
|
|
8062
8089
|
*/
|
|
8063
8090
|
interface FindRequestBuilderPostQueryParameters$6 {
|
|
8064
8091
|
page?: number;
|
|
8065
|
-
screenId?: string;
|
|
8066
8092
|
size?: number;
|
|
8067
8093
|
sort?: string;
|
|
8068
8094
|
sortOrder?: PostSortOrderQueryParameterType$6;
|
|
8095
|
+
tableId?: string;
|
|
8069
8096
|
}
|
|
8070
8097
|
type PostSortOrderQueryParameterType$6 = (typeof PostSortOrderQueryParameterTypeObject$6)[keyof typeof PostSortOrderQueryParameterTypeObject$6];
|
|
8071
8098
|
declare const FindPostResponse_objectObject$6: {
|
|
@@ -8077,18 +8104,18 @@ declare const PostSortOrderQueryParameterTypeObject$6: {
|
|
|
8077
8104
|
};
|
|
8078
8105
|
|
|
8079
8106
|
/**
|
|
8080
|
-
* Builds and executes requests for operations under /v1/
|
|
8107
|
+
* Builds and executes requests for operations under /v1/screens/{id}
|
|
8081
8108
|
*/
|
|
8082
|
-
interface
|
|
8109
|
+
interface ScreensItemRequestBuilder extends BaseRequestBuilder<ScreensItemRequestBuilder> {
|
|
8083
8110
|
/**
|
|
8084
|
-
* (Experimental) - Get a Screen
|
|
8111
|
+
* (Experimental) - Get a Screen by id
|
|
8085
8112
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8086
|
-
* @returns {Promise<
|
|
8087
|
-
* @throws {
|
|
8113
|
+
* @returns {Promise<ScreenDto>}
|
|
8114
|
+
* @throws {ScreenDto400Error} error when the service returns a 400 status code
|
|
8088
8115
|
*/
|
|
8089
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<
|
|
8116
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ScreenDto | undefined>;
|
|
8090
8117
|
/**
|
|
8091
|
-
* (Experimental) - Get a Screen
|
|
8118
|
+
* (Experimental) - Get a Screen by id
|
|
8092
8119
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8093
8120
|
* @returns {RequestInformation}
|
|
8094
8121
|
*/
|
|
@@ -8096,7 +8123,7 @@ interface Screen_sectionsItemRequestBuilder extends BaseRequestBuilder<Screen_se
|
|
|
8096
8123
|
}
|
|
8097
8124
|
|
|
8098
8125
|
type GetSortOrderQueryParameterType$6 = (typeof GetSortOrderQueryParameterTypeObject$6)[keyof typeof GetSortOrderQueryParameterTypeObject$6];
|
|
8099
|
-
interface
|
|
8126
|
+
interface ScreensGetResponse extends AdditionalDataHolder, Parsable {
|
|
8100
8127
|
/**
|
|
8101
8128
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8102
8129
|
*/
|
|
@@ -8104,60 +8131,60 @@ interface Screen_sectionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
8104
8131
|
/**
|
|
8105
8132
|
* The data property
|
|
8106
8133
|
*/
|
|
8107
|
-
data?:
|
|
8134
|
+
data?: ScreenDto[] | null;
|
|
8108
8135
|
/**
|
|
8109
8136
|
* The object property
|
|
8110
8137
|
*/
|
|
8111
|
-
object?:
|
|
8138
|
+
object?: ScreensGetResponse_object | null;
|
|
8112
8139
|
/**
|
|
8113
8140
|
* The totalElements property
|
|
8114
8141
|
*/
|
|
8115
8142
|
totalElements?: number | null;
|
|
8116
8143
|
}
|
|
8117
|
-
type
|
|
8144
|
+
type ScreensGetResponse_object = (typeof ScreensGetResponse_objectObject)[keyof typeof ScreensGetResponse_objectObject];
|
|
8118
8145
|
/**
|
|
8119
|
-
* Builds and executes requests for operations under /v1/
|
|
8146
|
+
* Builds and executes requests for operations under /v1/screens
|
|
8120
8147
|
*/
|
|
8121
|
-
interface
|
|
8148
|
+
interface ScreensRequestBuilder extends BaseRequestBuilder<ScreensRequestBuilder> {
|
|
8122
8149
|
/**
|
|
8123
8150
|
* The find property
|
|
8124
8151
|
*/
|
|
8125
8152
|
get find(): FindRequestBuilder$6;
|
|
8126
8153
|
/**
|
|
8127
|
-
* Gets an item from the ApiSdk.v1.
|
|
8154
|
+
* Gets an item from the ApiSdk.v1.screens.item collection
|
|
8128
8155
|
* @param id Unique identifier of the item
|
|
8129
|
-
* @returns {
|
|
8156
|
+
* @returns {ScreensItemRequestBuilder}
|
|
8130
8157
|
*/
|
|
8131
|
-
byId(id: string):
|
|
8158
|
+
byId(id: string): ScreensItemRequestBuilder;
|
|
8132
8159
|
/**
|
|
8133
|
-
* (Experimental) - Get a list of Screen
|
|
8160
|
+
* (Experimental) - Get a list of Screen
|
|
8134
8161
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8135
|
-
* @returns {Promise<
|
|
8136
|
-
* @throws {
|
|
8162
|
+
* @returns {Promise<ScreensGetResponse>}
|
|
8163
|
+
* @throws {Screens400Error} error when the service returns a 400 status code
|
|
8137
8164
|
*/
|
|
8138
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8165
|
+
get(requestConfiguration?: RequestConfiguration<ScreensRequestBuilderGetQueryParameters> | undefined): Promise<ScreensGetResponse | undefined>;
|
|
8139
8166
|
/**
|
|
8140
|
-
* (Experimental) - Get a list of Screen
|
|
8167
|
+
* (Experimental) - Get a list of Screen
|
|
8141
8168
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8142
8169
|
* @returns {RequestInformation}
|
|
8143
8170
|
*/
|
|
8144
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
8171
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ScreensRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
8145
8172
|
}
|
|
8146
8173
|
/**
|
|
8147
|
-
* (Experimental) - Get a list of Screen
|
|
8174
|
+
* (Experimental) - Get a list of Screen
|
|
8148
8175
|
*/
|
|
8149
|
-
interface
|
|
8176
|
+
interface ScreensRequestBuilderGetQueryParameters {
|
|
8150
8177
|
page?: number;
|
|
8151
|
-
screenId?: string;
|
|
8152
8178
|
size?: number;
|
|
8153
8179
|
sort?: string;
|
|
8154
8180
|
sortOrder?: GetSortOrderQueryParameterType$6;
|
|
8181
|
+
tableId?: string;
|
|
8155
8182
|
}
|
|
8156
8183
|
declare const GetSortOrderQueryParameterTypeObject$6: {
|
|
8157
8184
|
readonly DESC: "DESC";
|
|
8158
8185
|
readonly ASC: "ASC";
|
|
8159
8186
|
};
|
|
8160
|
-
declare const
|
|
8187
|
+
declare const ScreensGetResponse_objectObject: {
|
|
8161
8188
|
readonly List: "list";
|
|
8162
8189
|
};
|
|
8163
8190
|
|
|
@@ -8169,7 +8196,7 @@ interface FindPostResponse$5 extends AdditionalDataHolder, Parsable {
|
|
|
8169
8196
|
/**
|
|
8170
8197
|
* The data property
|
|
8171
8198
|
*/
|
|
8172
|
-
data?:
|
|
8199
|
+
data?: ScreenSectionDto[] | null;
|
|
8173
8200
|
/**
|
|
8174
8201
|
* The object property
|
|
8175
8202
|
*/
|
|
@@ -8181,11 +8208,11 @@ interface FindPostResponse$5 extends AdditionalDataHolder, Parsable {
|
|
|
8181
8208
|
}
|
|
8182
8209
|
type FindPostResponse_object$5 = (typeof FindPostResponse_objectObject$5)[keyof typeof FindPostResponse_objectObject$5];
|
|
8183
8210
|
/**
|
|
8184
|
-
* Builds and executes requests for operations under /v1/
|
|
8211
|
+
* Builds and executes requests for operations under /v1/screen-sections/find
|
|
8185
8212
|
*/
|
|
8186
8213
|
interface FindRequestBuilder$5 extends BaseRequestBuilder<FindRequestBuilder$5> {
|
|
8187
8214
|
/**
|
|
8188
|
-
* Find a list of Screen
|
|
8215
|
+
* Find a list of Screen Section
|
|
8189
8216
|
* @param body The request body
|
|
8190
8217
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8191
8218
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -8193,7 +8220,7 @@ interface FindRequestBuilder$5 extends BaseRequestBuilder<FindRequestBuilder$5>
|
|
|
8193
8220
|
*/
|
|
8194
8221
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$5> | undefined): Promise<FindPostResponse$5 | undefined>;
|
|
8195
8222
|
/**
|
|
8196
|
-
* Find a list of Screen
|
|
8223
|
+
* Find a list of Screen Section
|
|
8197
8224
|
* @param body The request body
|
|
8198
8225
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8199
8226
|
* @returns {RequestInformation}
|
|
@@ -8201,14 +8228,14 @@ interface FindRequestBuilder$5 extends BaseRequestBuilder<FindRequestBuilder$5>
|
|
|
8201
8228
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$5> | undefined): RequestInformation;
|
|
8202
8229
|
}
|
|
8203
8230
|
/**
|
|
8204
|
-
* Find a list of Screen
|
|
8231
|
+
* Find a list of Screen Section
|
|
8205
8232
|
*/
|
|
8206
8233
|
interface FindRequestBuilderPostQueryParameters$5 {
|
|
8207
8234
|
page?: number;
|
|
8235
|
+
screenId?: string;
|
|
8208
8236
|
size?: number;
|
|
8209
8237
|
sort?: string;
|
|
8210
8238
|
sortOrder?: PostSortOrderQueryParameterType$5;
|
|
8211
|
-
tableId?: string;
|
|
8212
8239
|
}
|
|
8213
8240
|
type PostSortOrderQueryParameterType$5 = (typeof PostSortOrderQueryParameterTypeObject$5)[keyof typeof PostSortOrderQueryParameterTypeObject$5];
|
|
8214
8241
|
declare const FindPostResponse_objectObject$5: {
|
|
@@ -8220,18 +8247,18 @@ declare const PostSortOrderQueryParameterTypeObject$5: {
|
|
|
8220
8247
|
};
|
|
8221
8248
|
|
|
8222
8249
|
/**
|
|
8223
|
-
* Builds and executes requests for operations under /v1/
|
|
8250
|
+
* Builds and executes requests for operations under /v1/screen-sections/{id}
|
|
8224
8251
|
*/
|
|
8225
|
-
interface
|
|
8252
|
+
interface ScreenSectionsItemRequestBuilder extends BaseRequestBuilder<ScreenSectionsItemRequestBuilder> {
|
|
8226
8253
|
/**
|
|
8227
|
-
* (Experimental) - Get a Screen by id
|
|
8254
|
+
* (Experimental) - Get a Screen Section by id
|
|
8228
8255
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8229
|
-
* @returns {Promise<
|
|
8230
|
-
* @throws {
|
|
8256
|
+
* @returns {Promise<ScreenSectionDto>}
|
|
8257
|
+
* @throws {ScreenSectionDto400Error} error when the service returns a 400 status code
|
|
8231
8258
|
*/
|
|
8232
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<
|
|
8259
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ScreenSectionDto | undefined>;
|
|
8233
8260
|
/**
|
|
8234
|
-
* (Experimental) - Get a Screen by id
|
|
8261
|
+
* (Experimental) - Get a Screen Section by id
|
|
8235
8262
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8236
8263
|
* @returns {RequestInformation}
|
|
8237
8264
|
*/
|
|
@@ -8239,7 +8266,7 @@ interface ScreensItemRequestBuilder extends BaseRequestBuilder<ScreensItemReques
|
|
|
8239
8266
|
}
|
|
8240
8267
|
|
|
8241
8268
|
type GetSortOrderQueryParameterType$5 = (typeof GetSortOrderQueryParameterTypeObject$5)[keyof typeof GetSortOrderQueryParameterTypeObject$5];
|
|
8242
|
-
interface
|
|
8269
|
+
interface ScreenSectionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
8243
8270
|
/**
|
|
8244
8271
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8245
8272
|
*/
|
|
@@ -8247,60 +8274,60 @@ interface ScreensGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
8247
8274
|
/**
|
|
8248
8275
|
* The data property
|
|
8249
8276
|
*/
|
|
8250
|
-
data?:
|
|
8277
|
+
data?: ScreenSectionDto[] | null;
|
|
8251
8278
|
/**
|
|
8252
8279
|
* The object property
|
|
8253
8280
|
*/
|
|
8254
|
-
object?:
|
|
8281
|
+
object?: ScreenSectionsGetResponse_object | null;
|
|
8255
8282
|
/**
|
|
8256
8283
|
* The totalElements property
|
|
8257
8284
|
*/
|
|
8258
8285
|
totalElements?: number | null;
|
|
8259
8286
|
}
|
|
8260
|
-
type
|
|
8287
|
+
type ScreenSectionsGetResponse_object = (typeof ScreenSectionsGetResponse_objectObject)[keyof typeof ScreenSectionsGetResponse_objectObject];
|
|
8261
8288
|
/**
|
|
8262
|
-
* Builds and executes requests for operations under /v1/
|
|
8289
|
+
* Builds and executes requests for operations under /v1/screen-sections
|
|
8263
8290
|
*/
|
|
8264
|
-
interface
|
|
8291
|
+
interface ScreenSectionsRequestBuilder extends BaseRequestBuilder<ScreenSectionsRequestBuilder> {
|
|
8265
8292
|
/**
|
|
8266
8293
|
* The find property
|
|
8267
8294
|
*/
|
|
8268
8295
|
get find(): FindRequestBuilder$5;
|
|
8269
8296
|
/**
|
|
8270
|
-
* Gets an item from the ApiSdk.v1.
|
|
8297
|
+
* Gets an item from the ApiSdk.v1.screenSections.item collection
|
|
8271
8298
|
* @param id Unique identifier of the item
|
|
8272
|
-
* @returns {
|
|
8299
|
+
* @returns {ScreenSectionsItemRequestBuilder}
|
|
8273
8300
|
*/
|
|
8274
|
-
byId(id: string):
|
|
8301
|
+
byId(id: string): ScreenSectionsItemRequestBuilder;
|
|
8275
8302
|
/**
|
|
8276
|
-
* (Experimental) - Get a list of Screen
|
|
8303
|
+
* (Experimental) - Get a list of Screen Section
|
|
8277
8304
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8278
|
-
* @returns {Promise<
|
|
8279
|
-
* @throws {
|
|
8305
|
+
* @returns {Promise<ScreenSectionsGetResponse>}
|
|
8306
|
+
* @throws {ScreenSections400Error} error when the service returns a 400 status code
|
|
8280
8307
|
*/
|
|
8281
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8308
|
+
get(requestConfiguration?: RequestConfiguration<ScreenSectionsRequestBuilderGetQueryParameters> | undefined): Promise<ScreenSectionsGetResponse | undefined>;
|
|
8282
8309
|
/**
|
|
8283
|
-
* (Experimental) - Get a list of Screen
|
|
8310
|
+
* (Experimental) - Get a list of Screen Section
|
|
8284
8311
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8285
8312
|
* @returns {RequestInformation}
|
|
8286
8313
|
*/
|
|
8287
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
8314
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ScreenSectionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
8288
8315
|
}
|
|
8289
8316
|
/**
|
|
8290
|
-
* (Experimental) - Get a list of Screen
|
|
8317
|
+
* (Experimental) - Get a list of Screen Section
|
|
8291
8318
|
*/
|
|
8292
|
-
interface
|
|
8319
|
+
interface ScreenSectionsRequestBuilderGetQueryParameters {
|
|
8293
8320
|
page?: number;
|
|
8321
|
+
screenId?: string;
|
|
8294
8322
|
size?: number;
|
|
8295
8323
|
sort?: string;
|
|
8296
8324
|
sortOrder?: GetSortOrderQueryParameterType$5;
|
|
8297
|
-
tableId?: string;
|
|
8298
8325
|
}
|
|
8299
8326
|
declare const GetSortOrderQueryParameterTypeObject$5: {
|
|
8300
8327
|
readonly DESC: "DESC";
|
|
8301
8328
|
readonly ASC: "ASC";
|
|
8302
8329
|
};
|
|
8303
|
-
declare const
|
|
8330
|
+
declare const ScreenSectionsGetResponse_objectObject: {
|
|
8304
8331
|
readonly List: "list";
|
|
8305
8332
|
};
|
|
8306
8333
|
|
|
@@ -8797,7 +8824,7 @@ interface FindPostResponse$1 extends AdditionalDataHolder, Parsable {
|
|
|
8797
8824
|
}
|
|
8798
8825
|
type FindPostResponse_object$1 = (typeof FindPostResponse_objectObject$1)[keyof typeof FindPostResponse_objectObject$1];
|
|
8799
8826
|
/**
|
|
8800
|
-
* Builds and executes requests for operations under /v1/
|
|
8827
|
+
* Builds and executes requests for operations under /v1/user-groups/find
|
|
8801
8828
|
*/
|
|
8802
8829
|
interface FindRequestBuilder$1 extends BaseRequestBuilder<FindRequestBuilder$1> {
|
|
8803
8830
|
/**
|
|
@@ -8835,9 +8862,9 @@ declare const PostSortOrderQueryParameterTypeObject$1: {
|
|
|
8835
8862
|
};
|
|
8836
8863
|
|
|
8837
8864
|
/**
|
|
8838
|
-
* Builds and executes requests for operations under /v1/
|
|
8865
|
+
* Builds and executes requests for operations under /v1/user-groups/{id}/add-members
|
|
8839
8866
|
*/
|
|
8840
|
-
interface
|
|
8867
|
+
interface AddMembersRequestBuilder extends BaseRequestBuilder<AddMembersRequestBuilder> {
|
|
8841
8868
|
/**
|
|
8842
8869
|
* Add members to a user group
|
|
8843
8870
|
* @param body The request body
|
|
@@ -8855,9 +8882,9 @@ interface Add_membersRequestBuilder extends BaseRequestBuilder<Add_membersReques
|
|
|
8855
8882
|
}
|
|
8856
8883
|
|
|
8857
8884
|
/**
|
|
8858
|
-
* Builds and executes requests for operations under /v1/
|
|
8885
|
+
* Builds and executes requests for operations under /v1/user-groups/{id}/remove-members
|
|
8859
8886
|
*/
|
|
8860
|
-
interface
|
|
8887
|
+
interface RemoveMembersRequestBuilder extends BaseRequestBuilder<RemoveMembersRequestBuilder> {
|
|
8861
8888
|
/**
|
|
8862
8889
|
* Remove members from a user group
|
|
8863
8890
|
* @param body The request body
|
|
@@ -8875,17 +8902,17 @@ interface Remove_membersRequestBuilder extends BaseRequestBuilder<Remove_members
|
|
|
8875
8902
|
}
|
|
8876
8903
|
|
|
8877
8904
|
/**
|
|
8878
|
-
* Builds and executes requests for operations under /v1/
|
|
8905
|
+
* Builds and executes requests for operations under /v1/user-groups/{id}
|
|
8879
8906
|
*/
|
|
8880
|
-
interface
|
|
8907
|
+
interface UserGroupsItemRequestBuilder extends BaseRequestBuilder<UserGroupsItemRequestBuilder> {
|
|
8881
8908
|
/**
|
|
8882
|
-
* The
|
|
8909
|
+
* The addMembers property
|
|
8883
8910
|
*/
|
|
8884
|
-
get
|
|
8911
|
+
get addMembers(): AddMembersRequestBuilder;
|
|
8885
8912
|
/**
|
|
8886
|
-
* The
|
|
8913
|
+
* The removeMembers property
|
|
8887
8914
|
*/
|
|
8888
|
-
get
|
|
8915
|
+
get removeMembers(): RemoveMembersRequestBuilder;
|
|
8889
8916
|
/**
|
|
8890
8917
|
* Delete a User Group by id
|
|
8891
8918
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -8930,7 +8957,7 @@ interface User_groupsItemRequestBuilder extends BaseRequestBuilder<User_groupsIt
|
|
|
8930
8957
|
}
|
|
8931
8958
|
|
|
8932
8959
|
type GetSortOrderQueryParameterType$1 = (typeof GetSortOrderQueryParameterTypeObject$1)[keyof typeof GetSortOrderQueryParameterTypeObject$1];
|
|
8933
|
-
interface
|
|
8960
|
+
interface UserGroupsGetResponse extends AdditionalDataHolder, Parsable {
|
|
8934
8961
|
/**
|
|
8935
8962
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8936
8963
|
*/
|
|
@@ -8942,34 +8969,34 @@ interface User_groupsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
8942
8969
|
/**
|
|
8943
8970
|
* The object property
|
|
8944
8971
|
*/
|
|
8945
|
-
object?:
|
|
8972
|
+
object?: UserGroupsGetResponse_object | null;
|
|
8946
8973
|
/**
|
|
8947
8974
|
* The totalElements property
|
|
8948
8975
|
*/
|
|
8949
8976
|
totalElements?: number | null;
|
|
8950
8977
|
}
|
|
8951
|
-
type
|
|
8978
|
+
type UserGroupsGetResponse_object = (typeof UserGroupsGetResponse_objectObject)[keyof typeof UserGroupsGetResponse_objectObject];
|
|
8952
8979
|
/**
|
|
8953
|
-
* Builds and executes requests for operations under /v1/
|
|
8980
|
+
* Builds and executes requests for operations under /v1/user-groups
|
|
8954
8981
|
*/
|
|
8955
|
-
interface
|
|
8982
|
+
interface UserGroupsRequestBuilder extends BaseRequestBuilder<UserGroupsRequestBuilder> {
|
|
8956
8983
|
/**
|
|
8957
8984
|
* The find property
|
|
8958
8985
|
*/
|
|
8959
8986
|
get find(): FindRequestBuilder$1;
|
|
8960
8987
|
/**
|
|
8961
|
-
* Gets an item from the ApiSdk.v1.
|
|
8988
|
+
* Gets an item from the ApiSdk.v1.userGroups.item collection
|
|
8962
8989
|
* @param id Unique identifier of the item
|
|
8963
|
-
* @returns {
|
|
8990
|
+
* @returns {UserGroupsItemRequestBuilder}
|
|
8964
8991
|
*/
|
|
8965
|
-
byId(id: string):
|
|
8992
|
+
byId(id: string): UserGroupsItemRequestBuilder;
|
|
8966
8993
|
/**
|
|
8967
8994
|
* Get a list of User Group
|
|
8968
8995
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8969
|
-
* @returns {Promise<
|
|
8970
|
-
* @throws {
|
|
8996
|
+
* @returns {Promise<UserGroupsGetResponse>}
|
|
8997
|
+
* @throws {UserGroups400Error} error when the service returns a 400 status code
|
|
8971
8998
|
*/
|
|
8972
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8999
|
+
get(requestConfiguration?: RequestConfiguration<UserGroupsRequestBuilderGetQueryParameters> | undefined): Promise<UserGroupsGetResponse | undefined>;
|
|
8973
9000
|
/**
|
|
8974
9001
|
* Create a User Group
|
|
8975
9002
|
* @param body The request body
|
|
@@ -8983,7 +9010,7 @@ interface User_groupsRequestBuilder extends BaseRequestBuilder<User_groupsReques
|
|
|
8983
9010
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8984
9011
|
* @returns {RequestInformation}
|
|
8985
9012
|
*/
|
|
8986
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
9013
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<UserGroupsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
8987
9014
|
/**
|
|
8988
9015
|
* Create a User Group
|
|
8989
9016
|
* @param body The request body
|
|
@@ -8995,7 +9022,7 @@ interface User_groupsRequestBuilder extends BaseRequestBuilder<User_groupsReques
|
|
|
8995
9022
|
/**
|
|
8996
9023
|
* Get a list of User Group
|
|
8997
9024
|
*/
|
|
8998
|
-
interface
|
|
9025
|
+
interface UserGroupsRequestBuilderGetQueryParameters {
|
|
8999
9026
|
page?: number;
|
|
9000
9027
|
size?: number;
|
|
9001
9028
|
sort?: string;
|
|
@@ -9005,7 +9032,7 @@ declare const GetSortOrderQueryParameterTypeObject$1: {
|
|
|
9005
9032
|
readonly DESC: "DESC";
|
|
9006
9033
|
readonly ASC: "ASC";
|
|
9007
9034
|
};
|
|
9008
|
-
declare const
|
|
9035
|
+
declare const UserGroupsGetResponse_objectObject: {
|
|
9009
9036
|
readonly List: "list";
|
|
9010
9037
|
};
|
|
9011
9038
|
|
|
@@ -9179,33 +9206,33 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9179
9206
|
*/
|
|
9180
9207
|
get accounts(): AccountsRequestBuilder;
|
|
9181
9208
|
/**
|
|
9182
|
-
* The
|
|
9209
|
+
* The auditLogs property
|
|
9183
9210
|
*/
|
|
9184
|
-
get
|
|
9211
|
+
get auditLogs(): AuditLogsRequestBuilder;
|
|
9185
9212
|
/**
|
|
9186
|
-
* The
|
|
9213
|
+
* The commentThreads property
|
|
9187
9214
|
*/
|
|
9188
|
-
get
|
|
9215
|
+
get commentThreads(): CommentThreadsRequestBuilder;
|
|
9189
9216
|
/**
|
|
9190
|
-
* The
|
|
9217
|
+
* The commentThreadSubscribers property
|
|
9191
9218
|
*/
|
|
9192
|
-
get
|
|
9219
|
+
get commentThreadSubscribers(): CommentThreadSubscribersRequestBuilder;
|
|
9193
9220
|
/**
|
|
9194
|
-
* The
|
|
9221
|
+
* The dataFactory property
|
|
9195
9222
|
*/
|
|
9196
|
-
get
|
|
9197
|
-
/**
|
|
9198
|
-
* The field_values property
|
|
9199
|
-
*/
|
|
9200
|
-
get field_values(): Field_valuesRequestBuilder;
|
|
9223
|
+
get dataFactory(): DataFactoryRequestBuilder;
|
|
9201
9224
|
/**
|
|
9202
9225
|
* The fields property
|
|
9203
9226
|
*/
|
|
9204
9227
|
get fields(): FieldsRequestBuilder;
|
|
9205
9228
|
/**
|
|
9206
|
-
* The
|
|
9229
|
+
* The fieldValues property
|
|
9230
|
+
*/
|
|
9231
|
+
get fieldValues(): FieldValuesRequestBuilder;
|
|
9232
|
+
/**
|
|
9233
|
+
* The itemLinks property
|
|
9207
9234
|
*/
|
|
9208
|
-
get
|
|
9235
|
+
get itemLinks(): ItemLinksRequestBuilder;
|
|
9209
9236
|
/**
|
|
9210
9237
|
* The items property
|
|
9211
9238
|
*/
|
|
@@ -9215,9 +9242,9 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9215
9242
|
*/
|
|
9216
9243
|
get levels(): LevelsRequestBuilder;
|
|
9217
9244
|
/**
|
|
9218
|
-
* The
|
|
9245
|
+
* The matrixFields property
|
|
9219
9246
|
*/
|
|
9220
|
-
get
|
|
9247
|
+
get matrixFields(): MatrixFieldsRequestBuilder;
|
|
9221
9248
|
/**
|
|
9222
9249
|
* The partitions property
|
|
9223
9250
|
*/
|
|
@@ -9227,17 +9254,17 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9227
9254
|
*/
|
|
9228
9255
|
get publications(): PublicationsRequestBuilder;
|
|
9229
9256
|
/**
|
|
9230
|
-
* The
|
|
9257
|
+
* The screenColumns property
|
|
9231
9258
|
*/
|
|
9232
|
-
get
|
|
9233
|
-
/**
|
|
9234
|
-
* The screen_sections property
|
|
9235
|
-
*/
|
|
9236
|
-
get screen_sections(): Screen_sectionsRequestBuilder;
|
|
9259
|
+
get screenColumns(): ScreenColumnsRequestBuilder;
|
|
9237
9260
|
/**
|
|
9238
9261
|
* The screens property
|
|
9239
9262
|
*/
|
|
9240
9263
|
get screens(): ScreensRequestBuilder;
|
|
9264
|
+
/**
|
|
9265
|
+
* The screenSections property
|
|
9266
|
+
*/
|
|
9267
|
+
get screenSections(): ScreenSectionsRequestBuilder;
|
|
9241
9268
|
/**
|
|
9242
9269
|
* The sections property
|
|
9243
9270
|
*/
|
|
@@ -9251,9 +9278,9 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9251
9278
|
*/
|
|
9252
9279
|
get tables(): TablesRequestBuilder;
|
|
9253
9280
|
/**
|
|
9254
|
-
* The
|
|
9281
|
+
* The userGroups property
|
|
9255
9282
|
*/
|
|
9256
|
-
get
|
|
9283
|
+
get userGroups(): UserGroupsRequestBuilder;
|
|
9257
9284
|
/**
|
|
9258
9285
|
* The users property
|
|
9259
9286
|
*/
|
|
@@ -9264,14 +9291,6 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9264
9291
|
* The main entry point of the SDK, exposes the configuration and the fluent API.
|
|
9265
9292
|
*/
|
|
9266
9293
|
interface ApiClient extends BaseRequestBuilder<ApiClient> {
|
|
9267
|
-
/**
|
|
9268
|
-
* The featureFlag property
|
|
9269
|
-
*/
|
|
9270
|
-
get featureFlag(): FeatureFlagRequestBuilder;
|
|
9271
|
-
/**
|
|
9272
|
-
* The probe property
|
|
9273
|
-
*/
|
|
9274
|
-
get probe(): ProbeRequestBuilder;
|
|
9275
9294
|
/**
|
|
9276
9295
|
* The v1 property
|
|
9277
9296
|
*/
|
|
@@ -9293,4 +9312,4 @@ declare const ApiClientNavigationMetadata: Record<Exclude<keyof ApiClient, KeysT
|
|
|
9293
9312
|
|
|
9294
9313
|
declare function setup(key: string, url: string): ApiClient;
|
|
9295
9314
|
|
|
9296
|
-
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_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_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 };
|