@product-live/api-sdk 3.1.4 → 3.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1830 -759
- package/dist/index.d.ts +1830 -759
- package/dist/index.js +1648 -597
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1634 -583
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -31,30 +31,37 @@ interface AccountDto extends AdditionalDataHolder, Parsable {
|
|
|
31
31
|
updatedAt?: string | null;
|
|
32
32
|
}
|
|
33
33
|
type AccountDto_object = (typeof AccountDto_objectObject)[keyof typeof AccountDto_objectObject];
|
|
34
|
-
interface
|
|
34
|
+
interface ApplySuggestionOnCompositeDto extends AdditionalDataHolder, Parsable {
|
|
35
35
|
/**
|
|
36
36
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
37
37
|
*/
|
|
38
38
|
additionalData?: Record<string, unknown>;
|
|
39
39
|
/**
|
|
40
|
-
* The
|
|
40
|
+
* The compositeFieldKey property
|
|
41
41
|
*/
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
interface ApplySuggestionDto extends AdditionalDataHolder, Parsable {
|
|
42
|
+
compositeFieldKey?: string | null;
|
|
45
43
|
/**
|
|
46
|
-
*
|
|
44
|
+
* The compositeFields property
|
|
47
45
|
*/
|
|
48
|
-
|
|
46
|
+
compositeFields?: ApplySuggestionOnCompositeDto[] | null;
|
|
49
47
|
/**
|
|
50
48
|
* The fieldsKey property
|
|
51
49
|
*/
|
|
52
50
|
fieldsKey?: string[] | null;
|
|
53
51
|
/**
|
|
54
|
-
* The
|
|
52
|
+
* The fromSuggestionRowId property
|
|
55
53
|
*/
|
|
56
|
-
|
|
54
|
+
fromSuggestionRowId?: string | null;
|
|
55
|
+
/**
|
|
56
|
+
* The toItemRowId property
|
|
57
|
+
*/
|
|
58
|
+
toItemRowId?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* The type property
|
|
61
|
+
*/
|
|
62
|
+
type?: ApplySuggestionOnCompositeDto_type | null;
|
|
57
63
|
}
|
|
64
|
+
type ApplySuggestionOnCompositeDto_type = (typeof ApplySuggestionOnCompositeDto_typeObject)[keyof typeof ApplySuggestionOnCompositeDto_typeObject];
|
|
58
65
|
interface AuditLogDto extends AdditionalDataHolder, Parsable {
|
|
59
66
|
/**
|
|
60
67
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -267,6 +274,25 @@ interface CommentThreadUpdateDto extends AdditionalDataHolder, Parsable {
|
|
|
267
274
|
*/
|
|
268
275
|
message?: string | null;
|
|
269
276
|
}
|
|
277
|
+
interface CompositeCollectStrategyDto extends AdditionalDataHolder, Parsable {
|
|
278
|
+
/**
|
|
279
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
280
|
+
*/
|
|
281
|
+
additionalData?: Record<string, unknown>;
|
|
282
|
+
/**
|
|
283
|
+
* The fieldsKey property
|
|
284
|
+
*/
|
|
285
|
+
fieldsKey?: string[] | null;
|
|
286
|
+
/**
|
|
287
|
+
* The priority property
|
|
288
|
+
*/
|
|
289
|
+
priority?: number | null;
|
|
290
|
+
/**
|
|
291
|
+
* The type property
|
|
292
|
+
*/
|
|
293
|
+
type?: CompositeCollectStrategyDto_type | null;
|
|
294
|
+
}
|
|
295
|
+
type CompositeCollectStrategyDto_type = (typeof CompositeCollectStrategyDto_typeObject)[keyof typeof CompositeCollectStrategyDto_typeObject];
|
|
270
296
|
/**
|
|
271
297
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
272
298
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -276,15 +302,9 @@ declare function createAccountDtoFromDiscriminatorValue(parseNode: ParseNode | u
|
|
|
276
302
|
/**
|
|
277
303
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
278
304
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
279
|
-
* @returns {
|
|
280
|
-
*/
|
|
281
|
-
declare function createApplyAllSuggestionDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
282
|
-
/**
|
|
283
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
284
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
285
|
-
* @returns {ApplySuggestionDto}
|
|
305
|
+
* @returns {ApplySuggestionOnCompositeDto}
|
|
286
306
|
*/
|
|
287
|
-
declare function
|
|
307
|
+
declare function createApplySuggestionOnCompositeDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
288
308
|
/**
|
|
289
309
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
290
310
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -333,6 +353,12 @@ declare function createCommentThreadSubscriberDtoFromDiscriminatorValue(parseNod
|
|
|
333
353
|
* @returns {CommentThreadUpdateDto}
|
|
334
354
|
*/
|
|
335
355
|
declare function createCommentThreadUpdateDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
356
|
+
/**
|
|
357
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
358
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
359
|
+
* @returns {CompositeCollectStrategyDto}
|
|
360
|
+
*/
|
|
361
|
+
declare function createCompositeCollectStrategyDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
336
362
|
/**
|
|
337
363
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
338
364
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -357,6 +383,12 @@ declare function createCreateJobExecutionDto_inputFromDiscriminatorValue(parseNo
|
|
|
357
383
|
* @returns {CreateJobExecutionDto}
|
|
358
384
|
*/
|
|
359
385
|
declare function createCreateJobExecutionDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
386
|
+
/**
|
|
387
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
388
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
389
|
+
* @returns {CreatePartnerGroupDto}
|
|
390
|
+
*/
|
|
391
|
+
declare function createCreatePartnerGroupDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
360
392
|
/**
|
|
361
393
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
362
394
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -519,6 +551,12 @@ declare function createItemFieldCompositeValueDTO_dataFromDiscriminatorValue(par
|
|
|
519
551
|
* @returns {ItemFieldCompositeValueDTO}
|
|
520
552
|
*/
|
|
521
553
|
declare function createItemFieldCompositeValueDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
554
|
+
/**
|
|
555
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
556
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
557
|
+
* @returns {ItemFieldCompositeValuesDTO}
|
|
558
|
+
*/
|
|
559
|
+
declare function createItemFieldCompositeValuesDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
522
560
|
/**
|
|
523
561
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
524
562
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -591,12 +629,6 @@ declare function createItemFieldStringArrayDTOFromDiscriminatorValue(parseNode:
|
|
|
591
629
|
* @returns {ItemFieldStringDTO}
|
|
592
630
|
*/
|
|
593
631
|
declare function createItemFieldStringDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
594
|
-
/**
|
|
595
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
596
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
597
|
-
* @returns {ItemFindDTO}
|
|
598
|
-
*/
|
|
599
|
-
declare function createItemFindDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
600
632
|
/**
|
|
601
633
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
602
634
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -784,18 +816,74 @@ declare function createLocalizedStringDtoFromDiscriminatorValue(parseNode: Parse
|
|
|
784
816
|
* @returns {LowOrderQueryDTO}
|
|
785
817
|
*/
|
|
786
818
|
declare function createLowOrderQueryDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
819
|
+
/**
|
|
820
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
821
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
822
|
+
* @returns {MatchingPathFromRootDTO}
|
|
823
|
+
*/
|
|
824
|
+
declare function createMatchingPathFromRootDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
787
825
|
/**
|
|
788
826
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
789
827
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
790
828
|
* @returns {MatrixFieldDto}
|
|
791
829
|
*/
|
|
792
830
|
declare function createMatrixFieldDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
831
|
+
/**
|
|
832
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
833
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
834
|
+
* @returns {MeAccountDto}
|
|
835
|
+
*/
|
|
836
|
+
declare function createMeAccountDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
837
|
+
/**
|
|
838
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
839
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
840
|
+
* @returns {MeDto}
|
|
841
|
+
*/
|
|
842
|
+
declare function createMeDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
793
843
|
/**
|
|
794
844
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
795
845
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
796
846
|
* @returns {PartitionDto}
|
|
797
847
|
*/
|
|
798
848
|
declare function createPartitionDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
849
|
+
/**
|
|
850
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
851
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
852
|
+
* @returns {PartnerDto}
|
|
853
|
+
*/
|
|
854
|
+
declare function createPartnerDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
855
|
+
interface CreatePartnerGroupDto extends AdditionalDataHolder, Parsable {
|
|
856
|
+
/**
|
|
857
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
858
|
+
*/
|
|
859
|
+
additionalData?: Record<string, unknown>;
|
|
860
|
+
/**
|
|
861
|
+
* The description property
|
|
862
|
+
*/
|
|
863
|
+
description?: string | null;
|
|
864
|
+
/**
|
|
865
|
+
* The title property
|
|
866
|
+
*/
|
|
867
|
+
title?: string | null;
|
|
868
|
+
}
|
|
869
|
+
/**
|
|
870
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
871
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
872
|
+
* @returns {PartnerGroupDto}
|
|
873
|
+
*/
|
|
874
|
+
declare function createPartnerGroupDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
875
|
+
/**
|
|
876
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
877
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
878
|
+
* @returns {PartnerGroupMembersDto}
|
|
879
|
+
*/
|
|
880
|
+
declare function createPartnerGroupMembersDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
881
|
+
/**
|
|
882
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
883
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
884
|
+
* @returns {PartnerInvitationDto}
|
|
885
|
+
*/
|
|
886
|
+
declare function createPartnerInvitationDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
799
887
|
/**
|
|
800
888
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
801
889
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -808,6 +896,12 @@ declare function createPatchPublicationDtoFromDiscriminatorValue(parseNode: Pars
|
|
|
808
896
|
* @returns {PatchTaskExecutionDto}
|
|
809
897
|
*/
|
|
810
898
|
declare function createPatchTaskExecutionDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
899
|
+
/**
|
|
900
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
901
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
902
|
+
* @returns {PathFromRootDTO}
|
|
903
|
+
*/
|
|
904
|
+
declare function createPathFromRootDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
811
905
|
/**
|
|
812
906
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
813
907
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -864,6 +958,30 @@ declare function createPublicationDto_fieldsFromDiscriminatorValue(parseNode: Pa
|
|
|
864
958
|
* @returns {PublicationDto}
|
|
865
959
|
*/
|
|
866
960
|
declare function createPublicationDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
961
|
+
/**
|
|
962
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
963
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
964
|
+
* @returns {RecommendedCompositeExistingItemRowDTO}
|
|
965
|
+
*/
|
|
966
|
+
declare function createRecommendedCompositeExistingItemRowDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
967
|
+
/**
|
|
968
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
969
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
970
|
+
* @returns {RecommendedCompositeNewItemRowDTO}
|
|
971
|
+
*/
|
|
972
|
+
declare function createRecommendedCompositeNewItemRowDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
973
|
+
/**
|
|
974
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
975
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
976
|
+
* @returns {RecommendedCompositeRowsDTO}
|
|
977
|
+
*/
|
|
978
|
+
declare function createRecommendedCompositeRowsDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
979
|
+
/**
|
|
980
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
981
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
982
|
+
* @returns {RecommendedCompositeRowStrategyDTO}
|
|
983
|
+
*/
|
|
984
|
+
declare function createRecommendedCompositeRowStrategyDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
867
985
|
/**
|
|
868
986
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
869
987
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -894,6 +1012,12 @@ declare function createSectionDto_metadataFromDiscriminatorValue(parseNode: Pars
|
|
|
894
1012
|
* @returns {SectionDto}
|
|
895
1013
|
*/
|
|
896
1014
|
declare function createSectionDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1015
|
+
/**
|
|
1016
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1017
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1018
|
+
* @returns {SuggestionDeletedCompositeRowDTO}
|
|
1019
|
+
*/
|
|
1020
|
+
declare function createSuggestionDeletedCompositeRowDTOFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
897
1021
|
/**
|
|
898
1022
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
899
1023
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1020,6 +1144,12 @@ declare function createUpdateJobDto_outputFromDiscriminatorValue(parseNode: Pars
|
|
|
1020
1144
|
* @returns {UpdateJobDto}
|
|
1021
1145
|
*/
|
|
1022
1146
|
declare function createUpdateJobDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1147
|
+
/**
|
|
1148
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1149
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1150
|
+
* @returns {UpdatePartnerGroupDto}
|
|
1151
|
+
*/
|
|
1152
|
+
declare function createUpdatePartnerGroupDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1023
1153
|
/**
|
|
1024
1154
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1025
1155
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1112,12 +1242,7 @@ declare function deserializeIntoAccountDto(accountDto?: Partial<AccountDto> | un
|
|
|
1112
1242
|
* The deserialization information for the current model
|
|
1113
1243
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1114
1244
|
*/
|
|
1115
|
-
declare function
|
|
1116
|
-
/**
|
|
1117
|
-
* The deserialization information for the current model
|
|
1118
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1119
|
-
*/
|
|
1120
|
-
declare function deserializeIntoApplySuggestionDto(applySuggestionDto?: Partial<ApplySuggestionDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1245
|
+
declare function deserializeIntoApplySuggestionOnCompositeDto(applySuggestionOnCompositeDto?: Partial<ApplySuggestionOnCompositeDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1121
1246
|
/**
|
|
1122
1247
|
* The deserialization information for the current model
|
|
1123
1248
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1158,6 +1283,11 @@ declare function deserializeIntoCommentThreadSubscriberDto(commentThreadSubscrib
|
|
|
1158
1283
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1159
1284
|
*/
|
|
1160
1285
|
declare function deserializeIntoCommentThreadUpdateDto(commentThreadUpdateDto?: Partial<CommentThreadUpdateDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1286
|
+
/**
|
|
1287
|
+
* The deserialization information for the current model
|
|
1288
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1289
|
+
*/
|
|
1290
|
+
declare function deserializeIntoCompositeCollectStrategyDto(compositeCollectStrategyDto?: Partial<CompositeCollectStrategyDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1161
1291
|
/**
|
|
1162
1292
|
* The deserialization information for the current model
|
|
1163
1293
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1178,6 +1308,11 @@ declare function deserializeIntoCreateJobExecutionDto(createJobExecutionDto?: Pa
|
|
|
1178
1308
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1179
1309
|
*/
|
|
1180
1310
|
declare function deserializeIntoCreateJobExecutionDto_input(createJobExecutionDto_input?: Partial<CreateJobExecutionDto_input> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1311
|
+
/**
|
|
1312
|
+
* The deserialization information for the current model
|
|
1313
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1314
|
+
*/
|
|
1315
|
+
declare function deserializeIntoCreatePartnerGroupDto(createPartnerGroupDto?: Partial<CreatePartnerGroupDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1181
1316
|
/**
|
|
1182
1317
|
* The deserialization information for the current model
|
|
1183
1318
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1313,6 +1448,11 @@ declare function deserializeIntoItemFieldCompositeValueDTO(itemFieldCompositeVal
|
|
|
1313
1448
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1314
1449
|
*/
|
|
1315
1450
|
declare function deserializeIntoItemFieldCompositeValueDTO_data(itemFieldCompositeValueDTO_data?: Partial<ItemFieldCompositeDTO | ItemFieldFileDTO | ItemFieldMultipleSelectWithCommentAndQuantityDTO | ItemFieldNumberDTO | ItemFieldStringArrayDTO | ItemFieldStringDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1451
|
+
/**
|
|
1452
|
+
* The deserialization information for the current model
|
|
1453
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1454
|
+
*/
|
|
1455
|
+
declare function deserializeIntoItemFieldCompositeValuesDTO(itemFieldCompositeValuesDTO?: Partial<ItemFieldCompositeValuesDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1316
1456
|
/**
|
|
1317
1457
|
* The deserialization information for the current model
|
|
1318
1458
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1373,11 +1513,6 @@ declare function deserializeIntoItemFieldStringArrayDTO(itemFieldStringArrayDTO?
|
|
|
1373
1513
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1374
1514
|
*/
|
|
1375
1515
|
declare function deserializeIntoItemFieldStringDTO(itemFieldStringDTO?: Partial<ItemFieldStringDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1376
|
-
/**
|
|
1377
|
-
* The deserialization information for the current model
|
|
1378
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1379
|
-
*/
|
|
1380
|
-
declare function deserializeIntoItemFindDTO(itemFindDTO?: Partial<ItemFindDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1381
1516
|
/**
|
|
1382
1517
|
* The deserialization information for the current model
|
|
1383
1518
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1463,16 +1598,51 @@ declare function deserializeIntoLocalizedStringDto(localizedStringDto?: Partial<
|
|
|
1463
1598
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1464
1599
|
*/
|
|
1465
1600
|
declare function deserializeIntoLowOrderQueryDTO(lowOrderQueryDTO?: Partial<LowOrderQueryDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1601
|
+
/**
|
|
1602
|
+
* The deserialization information for the current model
|
|
1603
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1604
|
+
*/
|
|
1605
|
+
declare function deserializeIntoMatchingPathFromRootDTO(matchingPathFromRootDTO?: Partial<MatchingPathFromRootDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1466
1606
|
/**
|
|
1467
1607
|
* The deserialization information for the current model
|
|
1468
1608
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1469
1609
|
*/
|
|
1470
1610
|
declare function deserializeIntoMatrixFieldDto(matrixFieldDto?: Partial<MatrixFieldDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1611
|
+
/**
|
|
1612
|
+
* The deserialization information for the current model
|
|
1613
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1614
|
+
*/
|
|
1615
|
+
declare function deserializeIntoMeAccountDto(meAccountDto?: Partial<MeAccountDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1616
|
+
/**
|
|
1617
|
+
* The deserialization information for the current model
|
|
1618
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1619
|
+
*/
|
|
1620
|
+
declare function deserializeIntoMeDto(meDto?: Partial<MeDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1471
1621
|
/**
|
|
1472
1622
|
* The deserialization information for the current model
|
|
1473
1623
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1474
1624
|
*/
|
|
1475
1625
|
declare function deserializeIntoPartitionDto(partitionDto?: Partial<PartitionDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1626
|
+
/**
|
|
1627
|
+
* The deserialization information for the current model
|
|
1628
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1629
|
+
*/
|
|
1630
|
+
declare function deserializeIntoPartnerDto(partnerDto?: Partial<PartnerDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1631
|
+
/**
|
|
1632
|
+
* The deserialization information for the current model
|
|
1633
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1634
|
+
*/
|
|
1635
|
+
declare function deserializeIntoPartnerGroupDto(partnerGroupDto?: Partial<PartnerGroupDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1636
|
+
/**
|
|
1637
|
+
* The deserialization information for the current model
|
|
1638
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1639
|
+
*/
|
|
1640
|
+
declare function deserializeIntoPartnerGroupMembersDto(partnerGroupMembersDto?: Partial<PartnerGroupMembersDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1641
|
+
/**
|
|
1642
|
+
* The deserialization information for the current model
|
|
1643
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1644
|
+
*/
|
|
1645
|
+
declare function deserializeIntoPartnerInvitationDto(partnerInvitationDto?: Partial<PartnerInvitationDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1476
1646
|
/**
|
|
1477
1647
|
* The deserialization information for the current model
|
|
1478
1648
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1483,6 +1653,11 @@ declare function deserializeIntoPatchPublicationDto(patchPublicationDto?: Partia
|
|
|
1483
1653
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1484
1654
|
*/
|
|
1485
1655
|
declare function deserializeIntoPatchTaskExecutionDto(patchTaskExecutionDto?: Partial<PatchTaskExecutionDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1656
|
+
/**
|
|
1657
|
+
* The deserialization information for the current model
|
|
1658
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1659
|
+
*/
|
|
1660
|
+
declare function deserializeIntoPathFromRootDTO(pathFromRootDTO?: Partial<PathFromRootDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1486
1661
|
/**
|
|
1487
1662
|
* The deserialization information for the current model
|
|
1488
1663
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1503,6 +1678,26 @@ declare function deserializeIntoPublicationDto(publicationDto?: Partial<Publicat
|
|
|
1503
1678
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1504
1679
|
*/
|
|
1505
1680
|
declare function deserializeIntoPublicationDto_fields(publicationDto_fields?: Partial<ItemFieldCfDto | ItemFieldCompositeDTO | ItemFieldFileDTO | ItemFieldMultipleSelectWithCommentAndQuantityDTO | ItemFieldNumberDTO | ItemFieldStringArrayDTO | ItemFieldStringDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1681
|
+
/**
|
|
1682
|
+
* The deserialization information for the current model
|
|
1683
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1684
|
+
*/
|
|
1685
|
+
declare function deserializeIntoRecommendedCompositeExistingItemRowDTO(recommendedCompositeExistingItemRowDTO?: Partial<RecommendedCompositeExistingItemRowDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1686
|
+
/**
|
|
1687
|
+
* The deserialization information for the current model
|
|
1688
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1689
|
+
*/
|
|
1690
|
+
declare function deserializeIntoRecommendedCompositeNewItemRowDTO(recommendedCompositeNewItemRowDTO?: Partial<RecommendedCompositeNewItemRowDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1691
|
+
/**
|
|
1692
|
+
* The deserialization information for the current model
|
|
1693
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1694
|
+
*/
|
|
1695
|
+
declare function deserializeIntoRecommendedCompositeRowsDTO(recommendedCompositeRowsDTO?: Partial<RecommendedCompositeRowsDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1696
|
+
/**
|
|
1697
|
+
* The deserialization information for the current model
|
|
1698
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1699
|
+
*/
|
|
1700
|
+
declare function deserializeIntoRecommendedCompositeRowStrategyDTO(recommendedCompositeRowStrategyDTO?: Partial<RecommendedCompositeRowStrategyDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1506
1701
|
/**
|
|
1507
1702
|
* The deserialization information for the current model
|
|
1508
1703
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1528,6 +1723,11 @@ declare function deserializeIntoSectionDto(sectionDto?: Partial<SectionDto> | un
|
|
|
1528
1723
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1529
1724
|
*/
|
|
1530
1725
|
declare function deserializeIntoSectionDto_metadata(sectionDto_metadata?: Partial<SectionDto_metadata> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1726
|
+
/**
|
|
1727
|
+
* The deserialization information for the current model
|
|
1728
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1729
|
+
*/
|
|
1730
|
+
declare function deserializeIntoSuggestionDeletedCompositeRowDTO(suggestionDeletedCompositeRowDTO?: Partial<SuggestionDeletedCompositeRowDTO> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1531
1731
|
/**
|
|
1532
1732
|
* The deserialization information for the current model
|
|
1533
1733
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1583,6 +1783,11 @@ declare function deserializeIntoUpdateJobDto(updateJobDto?: Partial<UpdateJobDto
|
|
|
1583
1783
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1584
1784
|
*/
|
|
1585
1785
|
declare function deserializeIntoUpdateJobDto_output(updateJobDto_output?: Partial<UpdateJobDto_output> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1786
|
+
/**
|
|
1787
|
+
* The deserialization information for the current model
|
|
1788
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1789
|
+
*/
|
|
1790
|
+
declare function deserializeIntoUpdatePartnerGroupDto(updatePartnerGroupDto?: Partial<UpdatePartnerGroupDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1586
1791
|
/**
|
|
1587
1792
|
* The deserialization information for the current model
|
|
1588
1793
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1641,6 +1846,10 @@ interface FieldDto extends AdditionalDataHolder, Parsable {
|
|
|
1641
1846
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1642
1847
|
*/
|
|
1643
1848
|
additionalData?: Record<string, unknown>;
|
|
1849
|
+
/**
|
|
1850
|
+
* The compositeCollectStrategies property
|
|
1851
|
+
*/
|
|
1852
|
+
compositeCollectStrategies?: CompositeCollectStrategyDto[] | null;
|
|
1644
1853
|
/**
|
|
1645
1854
|
* The createdAt property
|
|
1646
1855
|
*/
|
|
@@ -1661,6 +1870,10 @@ interface FieldDto extends AdditionalDataHolder, Parsable {
|
|
|
1661
1870
|
* The id property
|
|
1662
1871
|
*/
|
|
1663
1872
|
id?: string | null;
|
|
1873
|
+
/**
|
|
1874
|
+
* The isUnique property
|
|
1875
|
+
*/
|
|
1876
|
+
isUnique?: boolean | null;
|
|
1664
1877
|
/**
|
|
1665
1878
|
* The key property
|
|
1666
1879
|
*/
|
|
@@ -2035,6 +2248,10 @@ interface ItemFieldCompositeDTO extends AdditionalDataHolder, Parsable {
|
|
|
2035
2248
|
* The key property
|
|
2036
2249
|
*/
|
|
2037
2250
|
key?: string | null;
|
|
2251
|
+
/**
|
|
2252
|
+
* The multiValued property
|
|
2253
|
+
*/
|
|
2254
|
+
multiValued?: boolean | null;
|
|
2038
2255
|
/**
|
|
2039
2256
|
* The type property
|
|
2040
2257
|
*/
|
|
@@ -2042,7 +2259,7 @@ interface ItemFieldCompositeDTO extends AdditionalDataHolder, Parsable {
|
|
|
2042
2259
|
/**
|
|
2043
2260
|
* The value property
|
|
2044
2261
|
*/
|
|
2045
|
-
value?:
|
|
2262
|
+
value?: ItemFieldCompositeValuesDTO | null;
|
|
2046
2263
|
}
|
|
2047
2264
|
type ItemFieldCompositeDTO_type = (typeof ItemFieldCompositeDTO_typeObject)[keyof typeof ItemFieldCompositeDTO_typeObject];
|
|
2048
2265
|
interface ItemFieldCompositeValueDTO extends AdditionalDataHolder, Parsable {
|
|
@@ -2054,8 +2271,26 @@ interface ItemFieldCompositeValueDTO extends AdditionalDataHolder, Parsable {
|
|
|
2054
2271
|
* The data property
|
|
2055
2272
|
*/
|
|
2056
2273
|
data?: (ItemFieldCompositeDTO | ItemFieldFileDTO | ItemFieldMultipleSelectWithCommentAndQuantityDTO | ItemFieldNumberDTO | ItemFieldStringArrayDTO | ItemFieldStringDTO)[] | null;
|
|
2274
|
+
/**
|
|
2275
|
+
* The id property
|
|
2276
|
+
*/
|
|
2277
|
+
id?: string | null;
|
|
2278
|
+
/**
|
|
2279
|
+
* The position property
|
|
2280
|
+
*/
|
|
2281
|
+
position?: number | null;
|
|
2057
2282
|
}
|
|
2058
2283
|
type ItemFieldCompositeValueDTO_data = ItemFieldCompositeDTO | ItemFieldFileDTO | ItemFieldMultipleSelectWithCommentAndQuantityDTO | ItemFieldNumberDTO | ItemFieldStringArrayDTO | ItemFieldStringDTO;
|
|
2284
|
+
interface ItemFieldCompositeValuesDTO extends AdditionalDataHolder, Parsable {
|
|
2285
|
+
/**
|
|
2286
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2287
|
+
*/
|
|
2288
|
+
additionalData?: Record<string, unknown>;
|
|
2289
|
+
/**
|
|
2290
|
+
* The data property
|
|
2291
|
+
*/
|
|
2292
|
+
data?: ItemFieldCompositeValueDTO[] | null;
|
|
2293
|
+
}
|
|
2059
2294
|
interface ItemFieldFileData extends AdditionalDataHolder, Parsable {
|
|
2060
2295
|
/**
|
|
2061
2296
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -2237,185 +2472,86 @@ interface ItemFieldStringDTO extends AdditionalDataHolder, Parsable {
|
|
|
2237
2472
|
value?: ItemFieldSimpleStringValueDTO | null;
|
|
2238
2473
|
}
|
|
2239
2474
|
type ItemFieldStringDTO_type = (typeof ItemFieldStringDTO_typeObject)[keyof typeof ItemFieldStringDTO_typeObject];
|
|
2240
|
-
interface
|
|
2475
|
+
interface ItemLinkCreateDto extends AdditionalDataHolder, Parsable {
|
|
2241
2476
|
/**
|
|
2242
2477
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2243
2478
|
*/
|
|
2244
2479
|
additionalData?: Record<string, unknown>;
|
|
2245
2480
|
/**
|
|
2246
|
-
*
|
|
2481
|
+
* The fromItemId property
|
|
2247
2482
|
*/
|
|
2248
|
-
|
|
2483
|
+
fromItemId?: string | null;
|
|
2249
2484
|
/**
|
|
2250
|
-
*
|
|
2485
|
+
* The toItemId property
|
|
2251
2486
|
*/
|
|
2252
|
-
|
|
2487
|
+
toItemId?: string | null;
|
|
2488
|
+
}
|
|
2489
|
+
interface ItemLinkDto extends AdditionalDataHolder, Parsable {
|
|
2253
2490
|
/**
|
|
2254
|
-
*
|
|
2491
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2255
2492
|
*/
|
|
2256
|
-
|
|
2493
|
+
additionalData?: Record<string, unknown>;
|
|
2257
2494
|
/**
|
|
2258
|
-
*
|
|
2495
|
+
* The createdAt property
|
|
2259
2496
|
*/
|
|
2260
|
-
|
|
2497
|
+
createdAt?: string | null;
|
|
2261
2498
|
/**
|
|
2262
|
-
*
|
|
2499
|
+
* The fromItemId property
|
|
2263
2500
|
*/
|
|
2264
|
-
|
|
2501
|
+
fromItemId?: string | null;
|
|
2265
2502
|
/**
|
|
2266
|
-
*
|
|
2503
|
+
* The id property
|
|
2267
2504
|
*/
|
|
2268
|
-
|
|
2505
|
+
id?: string | null;
|
|
2269
2506
|
/**
|
|
2270
|
-
*
|
|
2507
|
+
* The object property
|
|
2271
2508
|
*/
|
|
2272
|
-
|
|
2509
|
+
object?: ItemLinkDto_object | null;
|
|
2273
2510
|
/**
|
|
2274
|
-
*
|
|
2511
|
+
* The tableId property
|
|
2275
2512
|
*/
|
|
2276
|
-
|
|
2513
|
+
tableId?: string | null;
|
|
2277
2514
|
/**
|
|
2278
|
-
*
|
|
2515
|
+
* The toItemId property
|
|
2279
2516
|
*/
|
|
2280
|
-
|
|
2517
|
+
toItemId?: string | null;
|
|
2281
2518
|
/**
|
|
2282
|
-
*
|
|
2519
|
+
* The updatedAt property
|
|
2283
2520
|
*/
|
|
2284
|
-
|
|
2521
|
+
updatedAt?: string | null;
|
|
2522
|
+
}
|
|
2523
|
+
type ItemLinkDto_object = (typeof ItemLinkDto_objectObject)[keyof typeof ItemLinkDto_objectObject];
|
|
2524
|
+
interface ItemMetadataDTO extends AdditionalDataHolder, Parsable {
|
|
2285
2525
|
/**
|
|
2286
|
-
*
|
|
2526
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2287
2527
|
*/
|
|
2288
|
-
|
|
2528
|
+
additionalData?: Record<string, unknown>;
|
|
2289
2529
|
/**
|
|
2290
|
-
* The
|
|
2530
|
+
* The createdAt property
|
|
2291
2531
|
*/
|
|
2292
|
-
|
|
2532
|
+
createdAt?: string | null;
|
|
2293
2533
|
/**
|
|
2294
|
-
*
|
|
2534
|
+
* The levelId property
|
|
2295
2535
|
*/
|
|
2296
|
-
|
|
2536
|
+
levelId?: string | null;
|
|
2297
2537
|
/**
|
|
2298
|
-
*
|
|
2538
|
+
* The levelKey property
|
|
2299
2539
|
*/
|
|
2300
|
-
|
|
2540
|
+
levelKey?: string | null;
|
|
2301
2541
|
/**
|
|
2302
|
-
*
|
|
2542
|
+
* The partitionId property
|
|
2303
2543
|
*/
|
|
2304
|
-
|
|
2544
|
+
partitionId?: string | null;
|
|
2305
2545
|
/**
|
|
2306
|
-
*
|
|
2546
|
+
* The tableId property
|
|
2307
2547
|
*/
|
|
2308
|
-
|
|
2548
|
+
tableId?: string | null;
|
|
2309
2549
|
/**
|
|
2310
|
-
*
|
|
2550
|
+
* The tableKey property
|
|
2311
2551
|
*/
|
|
2312
|
-
|
|
2552
|
+
tableKey?: string | null;
|
|
2313
2553
|
/**
|
|
2314
|
-
*
|
|
2315
|
-
*/
|
|
2316
|
-
rangeMin?: string | null;
|
|
2317
|
-
/**
|
|
2318
|
-
* Check that item field is a select with one of these options keys
|
|
2319
|
-
*/
|
|
2320
|
-
selectOptions?: string[] | null;
|
|
2321
|
-
/**
|
|
2322
|
-
* Check that item field contains one of these values
|
|
2323
|
-
*/
|
|
2324
|
-
stringContains?: string[] | null;
|
|
2325
|
-
/**
|
|
2326
|
-
* Check that item field ends with one of these values
|
|
2327
|
-
*/
|
|
2328
|
-
stringEndsWith?: string[] | null;
|
|
2329
|
-
/**
|
|
2330
|
-
* Check that item field equals one of these values
|
|
2331
|
-
*/
|
|
2332
|
-
stringEquals?: string[] | null;
|
|
2333
|
-
/**
|
|
2334
|
-
* Check that item field starts with one of these values
|
|
2335
|
-
*/
|
|
2336
|
-
stringStartsWith?: string[] | null;
|
|
2337
|
-
}
|
|
2338
|
-
type ItemFindDTO_order = (typeof ItemFindDTO_orderObject)[keyof typeof ItemFindDTO_orderObject];
|
|
2339
|
-
interface ItemLinkCreateDto extends AdditionalDataHolder, Parsable {
|
|
2340
|
-
/**
|
|
2341
|
-
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2342
|
-
*/
|
|
2343
|
-
additionalData?: Record<string, unknown>;
|
|
2344
|
-
/**
|
|
2345
|
-
* The fromItemId property
|
|
2346
|
-
*/
|
|
2347
|
-
fromItemId?: string | null;
|
|
2348
|
-
/**
|
|
2349
|
-
* The toItemId property
|
|
2350
|
-
*/
|
|
2351
|
-
toItemId?: string | null;
|
|
2352
|
-
}
|
|
2353
|
-
interface ItemLinkDto extends AdditionalDataHolder, Parsable {
|
|
2354
|
-
/**
|
|
2355
|
-
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2356
|
-
*/
|
|
2357
|
-
additionalData?: Record<string, unknown>;
|
|
2358
|
-
/**
|
|
2359
|
-
* The createdAt property
|
|
2360
|
-
*/
|
|
2361
|
-
createdAt?: string | null;
|
|
2362
|
-
/**
|
|
2363
|
-
* The fromItemId property
|
|
2364
|
-
*/
|
|
2365
|
-
fromItemId?: string | null;
|
|
2366
|
-
/**
|
|
2367
|
-
* The id property
|
|
2368
|
-
*/
|
|
2369
|
-
id?: string | null;
|
|
2370
|
-
/**
|
|
2371
|
-
* The object property
|
|
2372
|
-
*/
|
|
2373
|
-
object?: ItemLinkDto_object | null;
|
|
2374
|
-
/**
|
|
2375
|
-
* The tableId property
|
|
2376
|
-
*/
|
|
2377
|
-
tableId?: string | null;
|
|
2378
|
-
/**
|
|
2379
|
-
* The toItemId property
|
|
2380
|
-
*/
|
|
2381
|
-
toItemId?: string | null;
|
|
2382
|
-
/**
|
|
2383
|
-
* The updatedAt property
|
|
2384
|
-
*/
|
|
2385
|
-
updatedAt?: string | null;
|
|
2386
|
-
}
|
|
2387
|
-
type ItemLinkDto_object = (typeof ItemLinkDto_objectObject)[keyof typeof ItemLinkDto_objectObject];
|
|
2388
|
-
interface ItemMetadataDTO extends AdditionalDataHolder, Parsable {
|
|
2389
|
-
/**
|
|
2390
|
-
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2391
|
-
*/
|
|
2392
|
-
additionalData?: Record<string, unknown>;
|
|
2393
|
-
/**
|
|
2394
|
-
* The createdAt property
|
|
2395
|
-
*/
|
|
2396
|
-
createdAt?: string | null;
|
|
2397
|
-
/**
|
|
2398
|
-
* The levelId property
|
|
2399
|
-
*/
|
|
2400
|
-
levelId?: string | null;
|
|
2401
|
-
/**
|
|
2402
|
-
* The levelKey property
|
|
2403
|
-
*/
|
|
2404
|
-
levelKey?: string | null;
|
|
2405
|
-
/**
|
|
2406
|
-
* The partitionId property
|
|
2407
|
-
*/
|
|
2408
|
-
partitionId?: string | null;
|
|
2409
|
-
/**
|
|
2410
|
-
* The tableId property
|
|
2411
|
-
*/
|
|
2412
|
-
tableId?: string | null;
|
|
2413
|
-
/**
|
|
2414
|
-
* The tableKey property
|
|
2415
|
-
*/
|
|
2416
|
-
tableKey?: string | null;
|
|
2417
|
-
/**
|
|
2418
|
-
* The tableOwnerAccountId property
|
|
2554
|
+
* The tableOwnerAccountId property
|
|
2419
2555
|
*/
|
|
2420
2556
|
tableOwnerAccountId?: string | null;
|
|
2421
2557
|
/**
|
|
@@ -2833,6 +2969,24 @@ interface LowOrderQueryDTO extends AdditionalDataHolder, Parsable {
|
|
|
2833
2969
|
value?: UntypedNode | null;
|
|
2834
2970
|
}
|
|
2835
2971
|
type LowOrderQueryDTO_type = (typeof LowOrderQueryDTO_typeObject)[keyof typeof LowOrderQueryDTO_typeObject];
|
|
2972
|
+
interface MatchingPathFromRootDTO extends AdditionalDataHolder, Parsable {
|
|
2973
|
+
/**
|
|
2974
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2975
|
+
*/
|
|
2976
|
+
additionalData?: Record<string, unknown>;
|
|
2977
|
+
/**
|
|
2978
|
+
* The fieldKey property
|
|
2979
|
+
*/
|
|
2980
|
+
fieldKey?: string | null;
|
|
2981
|
+
/**
|
|
2982
|
+
* The itemRowId property
|
|
2983
|
+
*/
|
|
2984
|
+
itemRowId?: string | null;
|
|
2985
|
+
/**
|
|
2986
|
+
* The suggestionRowId property
|
|
2987
|
+
*/
|
|
2988
|
+
suggestionRowId?: string | null;
|
|
2989
|
+
}
|
|
2836
2990
|
interface MatrixFieldDto extends AdditionalDataHolder, Parsable {
|
|
2837
2991
|
/**
|
|
2838
2992
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -2873,6 +3027,53 @@ interface MatrixFieldDto extends AdditionalDataHolder, Parsable {
|
|
|
2873
3027
|
}
|
|
2874
3028
|
type MatrixFieldDto_object = (typeof MatrixFieldDto_objectObject)[keyof typeof MatrixFieldDto_objectObject];
|
|
2875
3029
|
type MatrixFieldDto_status = (typeof MatrixFieldDto_statusObject)[keyof typeof MatrixFieldDto_statusObject];
|
|
3030
|
+
interface MeAccountDto extends AdditionalDataHolder, Parsable {
|
|
3031
|
+
/**
|
|
3032
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3033
|
+
*/
|
|
3034
|
+
additionalData?: Record<string, unknown>;
|
|
3035
|
+
/**
|
|
3036
|
+
* The createdAt property
|
|
3037
|
+
*/
|
|
3038
|
+
createdAt?: string | null;
|
|
3039
|
+
/**
|
|
3040
|
+
* The id property
|
|
3041
|
+
*/
|
|
3042
|
+
id?: string | null;
|
|
3043
|
+
/**
|
|
3044
|
+
* The key property
|
|
3045
|
+
*/
|
|
3046
|
+
key?: string | null;
|
|
3047
|
+
/**
|
|
3048
|
+
* The memberStatus property
|
|
3049
|
+
*/
|
|
3050
|
+
memberStatus?: MeAccountDto_memberStatus | null;
|
|
3051
|
+
/**
|
|
3052
|
+
* The name property
|
|
3053
|
+
*/
|
|
3054
|
+
name?: string | null;
|
|
3055
|
+
/**
|
|
3056
|
+
* The object property
|
|
3057
|
+
*/
|
|
3058
|
+
object?: MeAccountDto_object | null;
|
|
3059
|
+
/**
|
|
3060
|
+
* The role property
|
|
3061
|
+
*/
|
|
3062
|
+
role?: MeAccountDto_role | null;
|
|
3063
|
+
/**
|
|
3064
|
+
* The updatedAt property
|
|
3065
|
+
*/
|
|
3066
|
+
updatedAt?: string | null;
|
|
3067
|
+
}
|
|
3068
|
+
type MeAccountDto_memberStatus = (typeof MeAccountDto_memberStatusObject)[keyof typeof MeAccountDto_memberStatusObject];
|
|
3069
|
+
type MeAccountDto_object = (typeof MeAccountDto_objectObject)[keyof typeof MeAccountDto_objectObject];
|
|
3070
|
+
type MeAccountDto_role = (typeof MeAccountDto_roleObject)[keyof typeof MeAccountDto_roleObject];
|
|
3071
|
+
interface MeDto extends AdditionalDataHolder, Parsable {
|
|
3072
|
+
/**
|
|
3073
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3074
|
+
*/
|
|
3075
|
+
additionalData?: Record<string, unknown>;
|
|
3076
|
+
}
|
|
2876
3077
|
interface PartitionDto extends AdditionalDataHolder, Parsable {
|
|
2877
3078
|
/**
|
|
2878
3079
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -2924,6 +3125,131 @@ interface PartitionDto extends AdditionalDataHolder, Parsable {
|
|
|
2924
3125
|
updatedAt?: string | null;
|
|
2925
3126
|
}
|
|
2926
3127
|
type PartitionDto_status = (typeof PartitionDto_statusObject)[keyof typeof PartitionDto_statusObject];
|
|
3128
|
+
interface PartnerDto extends AdditionalDataHolder, Parsable {
|
|
3129
|
+
/**
|
|
3130
|
+
* The accountId property
|
|
3131
|
+
*/
|
|
3132
|
+
accountId?: string | null;
|
|
3133
|
+
/**
|
|
3134
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3135
|
+
*/
|
|
3136
|
+
additionalData?: Record<string, unknown>;
|
|
3137
|
+
/**
|
|
3138
|
+
* The createdAt property
|
|
3139
|
+
*/
|
|
3140
|
+
createdAt?: string | null;
|
|
3141
|
+
/**
|
|
3142
|
+
* The id property
|
|
3143
|
+
*/
|
|
3144
|
+
id?: string | null;
|
|
3145
|
+
/**
|
|
3146
|
+
* The object property
|
|
3147
|
+
*/
|
|
3148
|
+
object?: PartnerDto_object | null;
|
|
3149
|
+
/**
|
|
3150
|
+
* The status property
|
|
3151
|
+
*/
|
|
3152
|
+
status?: PartnerDto_status | null;
|
|
3153
|
+
/**
|
|
3154
|
+
* The updatedAt property
|
|
3155
|
+
*/
|
|
3156
|
+
updatedAt?: string | null;
|
|
3157
|
+
}
|
|
3158
|
+
type PartnerDto_object = (typeof PartnerDto_objectObject)[keyof typeof PartnerDto_objectObject];
|
|
3159
|
+
type PartnerDto_status = (typeof PartnerDto_statusObject)[keyof typeof PartnerDto_statusObject];
|
|
3160
|
+
interface PartnerGroupDto extends AdditionalDataHolder, Parsable {
|
|
3161
|
+
/**
|
|
3162
|
+
* The accountId property
|
|
3163
|
+
*/
|
|
3164
|
+
accountId?: string | null;
|
|
3165
|
+
/**
|
|
3166
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3167
|
+
*/
|
|
3168
|
+
additionalData?: Record<string, unknown>;
|
|
3169
|
+
/**
|
|
3170
|
+
* The createdAt property
|
|
3171
|
+
*/
|
|
3172
|
+
createdAt?: string | null;
|
|
3173
|
+
/**
|
|
3174
|
+
* The description property
|
|
3175
|
+
*/
|
|
3176
|
+
description?: string | null;
|
|
3177
|
+
/**
|
|
3178
|
+
* The id property
|
|
3179
|
+
*/
|
|
3180
|
+
id?: string | null;
|
|
3181
|
+
/**
|
|
3182
|
+
* The members property
|
|
3183
|
+
*/
|
|
3184
|
+
members?: string[] | null;
|
|
3185
|
+
/**
|
|
3186
|
+
* The object property
|
|
3187
|
+
*/
|
|
3188
|
+
object?: PartnerGroupDto_object | null;
|
|
3189
|
+
/**
|
|
3190
|
+
* The title property
|
|
3191
|
+
*/
|
|
3192
|
+
title?: string | null;
|
|
3193
|
+
/**
|
|
3194
|
+
* The updatedAt property
|
|
3195
|
+
*/
|
|
3196
|
+
updatedAt?: string | null;
|
|
3197
|
+
}
|
|
3198
|
+
type PartnerGroupDto_object = (typeof PartnerGroupDto_objectObject)[keyof typeof PartnerGroupDto_objectObject];
|
|
3199
|
+
interface PartnerGroupMembersDto extends AdditionalDataHolder, Parsable {
|
|
3200
|
+
/**
|
|
3201
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3202
|
+
*/
|
|
3203
|
+
additionalData?: Record<string, unknown>;
|
|
3204
|
+
/**
|
|
3205
|
+
* The membersId property
|
|
3206
|
+
*/
|
|
3207
|
+
membersId?: string[] | null;
|
|
3208
|
+
}
|
|
3209
|
+
interface PartnerInvitationDto extends AdditionalDataHolder, Parsable {
|
|
3210
|
+
/**
|
|
3211
|
+
* The accountId property
|
|
3212
|
+
*/
|
|
3213
|
+
accountId?: string | null;
|
|
3214
|
+
/**
|
|
3215
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3216
|
+
*/
|
|
3217
|
+
additionalData?: Record<string, unknown>;
|
|
3218
|
+
/**
|
|
3219
|
+
* The createdAt property
|
|
3220
|
+
*/
|
|
3221
|
+
createdAt?: string | null;
|
|
3222
|
+
/**
|
|
3223
|
+
* The fromUserId property
|
|
3224
|
+
*/
|
|
3225
|
+
fromUserId?: string | null;
|
|
3226
|
+
/**
|
|
3227
|
+
* The id property
|
|
3228
|
+
*/
|
|
3229
|
+
id?: string | null;
|
|
3230
|
+
/**
|
|
3231
|
+
* The object property
|
|
3232
|
+
*/
|
|
3233
|
+
object?: PartnerInvitationDto_object | null;
|
|
3234
|
+
/**
|
|
3235
|
+
* The status property
|
|
3236
|
+
*/
|
|
3237
|
+
status?: PartnerInvitationDto_status | null;
|
|
3238
|
+
/**
|
|
3239
|
+
* The toAccountName property
|
|
3240
|
+
*/
|
|
3241
|
+
toAccountName?: string | null;
|
|
3242
|
+
/**
|
|
3243
|
+
* The toUserEmail property
|
|
3244
|
+
*/
|
|
3245
|
+
toUserEmail?: string | null;
|
|
3246
|
+
/**
|
|
3247
|
+
* The updatedAt property
|
|
3248
|
+
*/
|
|
3249
|
+
updatedAt?: string | null;
|
|
3250
|
+
}
|
|
3251
|
+
type PartnerInvitationDto_object = (typeof PartnerInvitationDto_objectObject)[keyof typeof PartnerInvitationDto_objectObject];
|
|
3252
|
+
type PartnerInvitationDto_status = (typeof PartnerInvitationDto_statusObject)[keyof typeof PartnerInvitationDto_statusObject];
|
|
2927
3253
|
interface PatchPublicationDto extends AdditionalDataHolder, Parsable {
|
|
2928
3254
|
/**
|
|
2929
3255
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -2958,6 +3284,20 @@ interface PatchTaskExecutionDto extends AdditionalDataHolder, Parsable {
|
|
|
2958
3284
|
status?: PatchTaskExecutionDto_status | null;
|
|
2959
3285
|
}
|
|
2960
3286
|
type PatchTaskExecutionDto_status = (typeof PatchTaskExecutionDto_statusObject)[keyof typeof PatchTaskExecutionDto_statusObject];
|
|
3287
|
+
interface PathFromRootDTO extends AdditionalDataHolder, Parsable {
|
|
3288
|
+
/**
|
|
3289
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3290
|
+
*/
|
|
3291
|
+
additionalData?: Record<string, unknown>;
|
|
3292
|
+
/**
|
|
3293
|
+
* The fieldKey property
|
|
3294
|
+
*/
|
|
3295
|
+
fieldKey?: string | null;
|
|
3296
|
+
/**
|
|
3297
|
+
* The id property
|
|
3298
|
+
*/
|
|
3299
|
+
id?: string | null;
|
|
3300
|
+
}
|
|
2961
3301
|
interface PipelineDto extends AdditionalDataHolder, Parsable {
|
|
2962
3302
|
/**
|
|
2963
3303
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -3097,7 +3437,86 @@ interface PublicationDto extends AdditionalDataHolder, Parsable {
|
|
|
3097
3437
|
type PublicationDto_fields = ItemFieldCfDto | ItemFieldCompositeDTO | ItemFieldFileDTO | ItemFieldMultipleSelectWithCommentAndQuantityDTO | ItemFieldNumberDTO | ItemFieldStringArrayDTO | ItemFieldStringDTO;
|
|
3098
3438
|
type PublicationDto_object = (typeof PublicationDto_objectObject)[keyof typeof PublicationDto_objectObject];
|
|
3099
3439
|
type PublicationDto_status = (typeof PublicationDto_statusObject)[keyof typeof PublicationDto_statusObject];
|
|
3100
|
-
interface
|
|
3440
|
+
interface RecommendedCompositeExistingItemRowDTO extends AdditionalDataHolder, Parsable {
|
|
3441
|
+
/**
|
|
3442
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3443
|
+
*/
|
|
3444
|
+
additionalData?: Record<string, unknown>;
|
|
3445
|
+
/**
|
|
3446
|
+
* The compositeFieldKey property
|
|
3447
|
+
*/
|
|
3448
|
+
compositeFieldKey?: string | null;
|
|
3449
|
+
/**
|
|
3450
|
+
* The itemRowId property
|
|
3451
|
+
*/
|
|
3452
|
+
itemRowId?: string | null;
|
|
3453
|
+
/**
|
|
3454
|
+
* The strategyUsed property
|
|
3455
|
+
*/
|
|
3456
|
+
strategyUsed?: RecommendedCompositeRowStrategyDTO | null;
|
|
3457
|
+
/**
|
|
3458
|
+
* The suggestionRowId property
|
|
3459
|
+
*/
|
|
3460
|
+
suggestionRowId?: string | null;
|
|
3461
|
+
/**
|
|
3462
|
+
* The type property
|
|
3463
|
+
*/
|
|
3464
|
+
type?: RecommendedCompositeExistingItemRowDTO_type | null;
|
|
3465
|
+
}
|
|
3466
|
+
type RecommendedCompositeExistingItemRowDTO_type = (typeof RecommendedCompositeExistingItemRowDTO_typeObject)[keyof typeof RecommendedCompositeExistingItemRowDTO_typeObject];
|
|
3467
|
+
interface RecommendedCompositeNewItemRowDTO extends AdditionalDataHolder, Parsable {
|
|
3468
|
+
/**
|
|
3469
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3470
|
+
*/
|
|
3471
|
+
additionalData?: Record<string, unknown>;
|
|
3472
|
+
/**
|
|
3473
|
+
* The compositeFieldKey property
|
|
3474
|
+
*/
|
|
3475
|
+
compositeFieldKey?: string | null;
|
|
3476
|
+
/**
|
|
3477
|
+
* The pathFromRoot property
|
|
3478
|
+
*/
|
|
3479
|
+
pathFromRoot?: MatchingPathFromRootDTO[] | null;
|
|
3480
|
+
/**
|
|
3481
|
+
* The suggestionRowId property
|
|
3482
|
+
*/
|
|
3483
|
+
suggestionRowId?: string | null;
|
|
3484
|
+
/**
|
|
3485
|
+
* The type property
|
|
3486
|
+
*/
|
|
3487
|
+
type?: RecommendedCompositeNewItemRowDTO_type | null;
|
|
3488
|
+
}
|
|
3489
|
+
type RecommendedCompositeNewItemRowDTO_type = (typeof RecommendedCompositeNewItemRowDTO_typeObject)[keyof typeof RecommendedCompositeNewItemRowDTO_typeObject];
|
|
3490
|
+
interface RecommendedCompositeRowsDTO extends AdditionalDataHolder, Parsable {
|
|
3491
|
+
/**
|
|
3492
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3493
|
+
*/
|
|
3494
|
+
additionalData?: Record<string, unknown>;
|
|
3495
|
+
/**
|
|
3496
|
+
* The existingItemRows property
|
|
3497
|
+
*/
|
|
3498
|
+
existingItemRows?: RecommendedCompositeExistingItemRowDTO[] | null;
|
|
3499
|
+
/**
|
|
3500
|
+
* The newItemRows property
|
|
3501
|
+
*/
|
|
3502
|
+
newItemRows?: RecommendedCompositeNewItemRowDTO[] | null;
|
|
3503
|
+
}
|
|
3504
|
+
interface RecommendedCompositeRowStrategyDTO extends AdditionalDataHolder, Parsable {
|
|
3505
|
+
/**
|
|
3506
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3507
|
+
*/
|
|
3508
|
+
additionalData?: Record<string, unknown>;
|
|
3509
|
+
/**
|
|
3510
|
+
* The priority property
|
|
3511
|
+
*/
|
|
3512
|
+
priority?: number | null;
|
|
3513
|
+
/**
|
|
3514
|
+
* The type property
|
|
3515
|
+
*/
|
|
3516
|
+
type?: RecommendedCompositeRowStrategyDTO_type | null;
|
|
3517
|
+
}
|
|
3518
|
+
type RecommendedCompositeRowStrategyDTO_type = (typeof RecommendedCompositeRowStrategyDTO_typeObject)[keyof typeof RecommendedCompositeRowStrategyDTO_typeObject];
|
|
3519
|
+
interface ScreenColumnDto extends AdditionalDataHolder, Parsable {
|
|
3101
3520
|
/**
|
|
3102
3521
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3103
3522
|
*/
|
|
@@ -3314,12 +3733,7 @@ declare function serializeAccountDto(writer: SerializationWriter, accountDto?: P
|
|
|
3314
3733
|
* Serializes information the current object
|
|
3315
3734
|
* @param writer Serialization writer to use to serialize this model
|
|
3316
3735
|
*/
|
|
3317
|
-
declare function
|
|
3318
|
-
/**
|
|
3319
|
-
* Serializes information the current object
|
|
3320
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3321
|
-
*/
|
|
3322
|
-
declare function serializeApplySuggestionDto(writer: SerializationWriter, applySuggestionDto?: Partial<ApplySuggestionDto> | undefined | null): void;
|
|
3736
|
+
declare function serializeApplySuggestionOnCompositeDto(writer: SerializationWriter, applySuggestionOnCompositeDto?: Partial<ApplySuggestionOnCompositeDto> | undefined | null): void;
|
|
3323
3737
|
/**
|
|
3324
3738
|
* Serializes information the current object
|
|
3325
3739
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3360,6 +3774,11 @@ declare function serializeCommentThreadSubscriberDto(writer: SerializationWriter
|
|
|
3360
3774
|
* @param writer Serialization writer to use to serialize this model
|
|
3361
3775
|
*/
|
|
3362
3776
|
declare function serializeCommentThreadUpdateDto(writer: SerializationWriter, commentThreadUpdateDto?: Partial<CommentThreadUpdateDto> | undefined | null): void;
|
|
3777
|
+
/**
|
|
3778
|
+
* Serializes information the current object
|
|
3779
|
+
* @param writer Serialization writer to use to serialize this model
|
|
3780
|
+
*/
|
|
3781
|
+
declare function serializeCompositeCollectStrategyDto(writer: SerializationWriter, compositeCollectStrategyDto?: Partial<CompositeCollectStrategyDto> | undefined | null): void;
|
|
3363
3782
|
/**
|
|
3364
3783
|
* Serializes information the current object
|
|
3365
3784
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3380,6 +3799,11 @@ declare function serializeCreateJobExecutionDto(writer: SerializationWriter, cre
|
|
|
3380
3799
|
* @param writer Serialization writer to use to serialize this model
|
|
3381
3800
|
*/
|
|
3382
3801
|
declare function serializeCreateJobExecutionDto_input(writer: SerializationWriter, createJobExecutionDto_input?: Partial<CreateJobExecutionDto_input> | undefined | null): void;
|
|
3802
|
+
/**
|
|
3803
|
+
* Serializes information the current object
|
|
3804
|
+
* @param writer Serialization writer to use to serialize this model
|
|
3805
|
+
*/
|
|
3806
|
+
declare function serializeCreatePartnerGroupDto(writer: SerializationWriter, createPartnerGroupDto?: Partial<CreatePartnerGroupDto> | undefined | null): void;
|
|
3383
3807
|
/**
|
|
3384
3808
|
* Serializes information the current object
|
|
3385
3809
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3515,6 +3939,11 @@ declare function serializeItemFieldCompositeValueDTO(writer: SerializationWriter
|
|
|
3515
3939
|
* @param writer Serialization writer to use to serialize this model
|
|
3516
3940
|
*/
|
|
3517
3941
|
declare function serializeItemFieldCompositeValueDTO_data(writer: SerializationWriter, itemFieldCompositeValueDTO_data?: Partial<ItemFieldCompositeDTO | ItemFieldFileDTO | ItemFieldMultipleSelectWithCommentAndQuantityDTO | ItemFieldNumberDTO | ItemFieldStringArrayDTO | ItemFieldStringDTO> | undefined | null): void;
|
|
3942
|
+
/**
|
|
3943
|
+
* Serializes information the current object
|
|
3944
|
+
* @param writer Serialization writer to use to serialize this model
|
|
3945
|
+
*/
|
|
3946
|
+
declare function serializeItemFieldCompositeValuesDTO(writer: SerializationWriter, itemFieldCompositeValuesDTO?: Partial<ItemFieldCompositeValuesDTO> | undefined | null): void;
|
|
3518
3947
|
/**
|
|
3519
3948
|
* Serializes information the current object
|
|
3520
3949
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3575,11 +4004,6 @@ declare function serializeItemFieldStringArrayDTO(writer: SerializationWriter, i
|
|
|
3575
4004
|
* @param writer Serialization writer to use to serialize this model
|
|
3576
4005
|
*/
|
|
3577
4006
|
declare function serializeItemFieldStringDTO(writer: SerializationWriter, itemFieldStringDTO?: Partial<ItemFieldStringDTO> | undefined | null): void;
|
|
3578
|
-
/**
|
|
3579
|
-
* Serializes information the current object
|
|
3580
|
-
* @param writer Serialization writer to use to serialize this model
|
|
3581
|
-
*/
|
|
3582
|
-
declare function serializeItemFindDTO(writer: SerializationWriter, itemFindDTO?: Partial<ItemFindDTO> | undefined | null): void;
|
|
3583
4007
|
/**
|
|
3584
4008
|
* Serializes information the current object
|
|
3585
4009
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3665,16 +4089,51 @@ declare function serializeLocalizedStringDto(writer: SerializationWriter, locali
|
|
|
3665
4089
|
* @param writer Serialization writer to use to serialize this model
|
|
3666
4090
|
*/
|
|
3667
4091
|
declare function serializeLowOrderQueryDTO(writer: SerializationWriter, lowOrderQueryDTO?: Partial<LowOrderQueryDTO> | undefined | null): void;
|
|
4092
|
+
/**
|
|
4093
|
+
* Serializes information the current object
|
|
4094
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4095
|
+
*/
|
|
4096
|
+
declare function serializeMatchingPathFromRootDTO(writer: SerializationWriter, matchingPathFromRootDTO?: Partial<MatchingPathFromRootDTO> | undefined | null): void;
|
|
3668
4097
|
/**
|
|
3669
4098
|
* Serializes information the current object
|
|
3670
4099
|
* @param writer Serialization writer to use to serialize this model
|
|
3671
4100
|
*/
|
|
3672
4101
|
declare function serializeMatrixFieldDto(writer: SerializationWriter, matrixFieldDto?: Partial<MatrixFieldDto> | undefined | null): void;
|
|
4102
|
+
/**
|
|
4103
|
+
* Serializes information the current object
|
|
4104
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4105
|
+
*/
|
|
4106
|
+
declare function serializeMeAccountDto(writer: SerializationWriter, meAccountDto?: Partial<MeAccountDto> | undefined | null): void;
|
|
4107
|
+
/**
|
|
4108
|
+
* Serializes information the current object
|
|
4109
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4110
|
+
*/
|
|
4111
|
+
declare function serializeMeDto(writer: SerializationWriter, meDto?: Partial<MeDto> | undefined | null): void;
|
|
3673
4112
|
/**
|
|
3674
4113
|
* Serializes information the current object
|
|
3675
4114
|
* @param writer Serialization writer to use to serialize this model
|
|
3676
4115
|
*/
|
|
3677
4116
|
declare function serializePartitionDto(writer: SerializationWriter, partitionDto?: Partial<PartitionDto> | undefined | null): void;
|
|
4117
|
+
/**
|
|
4118
|
+
* Serializes information the current object
|
|
4119
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4120
|
+
*/
|
|
4121
|
+
declare function serializePartnerDto(writer: SerializationWriter, partnerDto?: Partial<PartnerDto> | undefined | null): void;
|
|
4122
|
+
/**
|
|
4123
|
+
* Serializes information the current object
|
|
4124
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4125
|
+
*/
|
|
4126
|
+
declare function serializePartnerGroupDto(writer: SerializationWriter, partnerGroupDto?: Partial<PartnerGroupDto> | undefined | null): void;
|
|
4127
|
+
/**
|
|
4128
|
+
* Serializes information the current object
|
|
4129
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4130
|
+
*/
|
|
4131
|
+
declare function serializePartnerGroupMembersDto(writer: SerializationWriter, partnerGroupMembersDto?: Partial<PartnerGroupMembersDto> | undefined | null): void;
|
|
4132
|
+
/**
|
|
4133
|
+
* Serializes information the current object
|
|
4134
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4135
|
+
*/
|
|
4136
|
+
declare function serializePartnerInvitationDto(writer: SerializationWriter, partnerInvitationDto?: Partial<PartnerInvitationDto> | undefined | null): void;
|
|
3678
4137
|
/**
|
|
3679
4138
|
* Serializes information the current object
|
|
3680
4139
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3685,6 +4144,11 @@ declare function serializePatchPublicationDto(writer: SerializationWriter, patch
|
|
|
3685
4144
|
* @param writer Serialization writer to use to serialize this model
|
|
3686
4145
|
*/
|
|
3687
4146
|
declare function serializePatchTaskExecutionDto(writer: SerializationWriter, patchTaskExecutionDto?: Partial<PatchTaskExecutionDto> | undefined | null): void;
|
|
4147
|
+
/**
|
|
4148
|
+
* Serializes information the current object
|
|
4149
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4150
|
+
*/
|
|
4151
|
+
declare function serializePathFromRootDTO(writer: SerializationWriter, pathFromRootDTO?: Partial<PathFromRootDTO> | undefined | null): void;
|
|
3688
4152
|
/**
|
|
3689
4153
|
* Serializes information the current object
|
|
3690
4154
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3705,6 +4169,26 @@ declare function serializePublicationDto(writer: SerializationWriter, publicatio
|
|
|
3705
4169
|
* @param writer Serialization writer to use to serialize this model
|
|
3706
4170
|
*/
|
|
3707
4171
|
declare function serializePublicationDto_fields(writer: SerializationWriter, publicationDto_fields?: Partial<ItemFieldCfDto | ItemFieldCompositeDTO | ItemFieldFileDTO | ItemFieldMultipleSelectWithCommentAndQuantityDTO | ItemFieldNumberDTO | ItemFieldStringArrayDTO | ItemFieldStringDTO> | undefined | null): void;
|
|
4172
|
+
/**
|
|
4173
|
+
* Serializes information the current object
|
|
4174
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4175
|
+
*/
|
|
4176
|
+
declare function serializeRecommendedCompositeExistingItemRowDTO(writer: SerializationWriter, recommendedCompositeExistingItemRowDTO?: Partial<RecommendedCompositeExistingItemRowDTO> | undefined | null): void;
|
|
4177
|
+
/**
|
|
4178
|
+
* Serializes information the current object
|
|
4179
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4180
|
+
*/
|
|
4181
|
+
declare function serializeRecommendedCompositeNewItemRowDTO(writer: SerializationWriter, recommendedCompositeNewItemRowDTO?: Partial<RecommendedCompositeNewItemRowDTO> | undefined | null): void;
|
|
4182
|
+
/**
|
|
4183
|
+
* Serializes information the current object
|
|
4184
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4185
|
+
*/
|
|
4186
|
+
declare function serializeRecommendedCompositeRowsDTO(writer: SerializationWriter, recommendedCompositeRowsDTO?: Partial<RecommendedCompositeRowsDTO> | undefined | null): void;
|
|
4187
|
+
/**
|
|
4188
|
+
* Serializes information the current object
|
|
4189
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4190
|
+
*/
|
|
4191
|
+
declare function serializeRecommendedCompositeRowStrategyDTO(writer: SerializationWriter, recommendedCompositeRowStrategyDTO?: Partial<RecommendedCompositeRowStrategyDTO> | undefined | null): void;
|
|
3708
4192
|
/**
|
|
3709
4193
|
* Serializes information the current object
|
|
3710
4194
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3730,6 +4214,11 @@ declare function serializeSectionDto(writer: SerializationWriter, sectionDto?: P
|
|
|
3730
4214
|
* @param writer Serialization writer to use to serialize this model
|
|
3731
4215
|
*/
|
|
3732
4216
|
declare function serializeSectionDto_metadata(writer: SerializationWriter, sectionDto_metadata?: Partial<SectionDto_metadata> | undefined | null): void;
|
|
4217
|
+
/**
|
|
4218
|
+
* Serializes information the current object
|
|
4219
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4220
|
+
*/
|
|
4221
|
+
declare function serializeSuggestionDeletedCompositeRowDTO(writer: SerializationWriter, suggestionDeletedCompositeRowDTO?: Partial<SuggestionDeletedCompositeRowDTO> | undefined | null): void;
|
|
3733
4222
|
/**
|
|
3734
4223
|
* Serializes information the current object
|
|
3735
4224
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3785,6 +4274,11 @@ declare function serializeUpdateJobDto(writer: SerializationWriter, updateJobDto
|
|
|
3785
4274
|
* @param writer Serialization writer to use to serialize this model
|
|
3786
4275
|
*/
|
|
3787
4276
|
declare function serializeUpdateJobDto_output(writer: SerializationWriter, updateJobDto_output?: Partial<UpdateJobDto_output> | undefined | null): void;
|
|
4277
|
+
/**
|
|
4278
|
+
* Serializes information the current object
|
|
4279
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4280
|
+
*/
|
|
4281
|
+
declare function serializeUpdatePartnerGroupDto(writer: SerializationWriter, updatePartnerGroupDto?: Partial<UpdatePartnerGroupDto> | undefined | null): void;
|
|
3788
4282
|
/**
|
|
3789
4283
|
* Serializes information the current object
|
|
3790
4284
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3820,6 +4314,24 @@ declare function serializeUserGroupMembersDto(writer: SerializationWriter, userG
|
|
|
3820
4314
|
* @param writer Serialization writer to use to serialize this model
|
|
3821
4315
|
*/
|
|
3822
4316
|
declare function serializeVariableDto(writer: SerializationWriter, variableDto?: Partial<VariableDto> | undefined | null): void;
|
|
4317
|
+
interface SuggestionDeletedCompositeRowDTO extends AdditionalDataHolder, Parsable {
|
|
4318
|
+
/**
|
|
4319
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4320
|
+
*/
|
|
4321
|
+
additionalData?: Record<string, unknown>;
|
|
4322
|
+
/**
|
|
4323
|
+
* The fieldKey property
|
|
4324
|
+
*/
|
|
4325
|
+
fieldKey?: string | null;
|
|
4326
|
+
/**
|
|
4327
|
+
* The pathFromRoot property
|
|
4328
|
+
*/
|
|
4329
|
+
pathFromRoot?: PathFromRootDTO[] | null;
|
|
4330
|
+
/**
|
|
4331
|
+
* The row property
|
|
4332
|
+
*/
|
|
4333
|
+
row?: ItemFieldCompositeValueDTO | null;
|
|
4334
|
+
}
|
|
3823
4335
|
interface SuggestionDeletedFieldDTO extends AdditionalDataHolder, Parsable {
|
|
3824
4336
|
/**
|
|
3825
4337
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -3844,6 +4356,10 @@ interface SuggestionDto extends AdditionalDataHolder, Parsable {
|
|
|
3844
4356
|
* The createdAt property
|
|
3845
4357
|
*/
|
|
3846
4358
|
createdAt?: string | null;
|
|
4359
|
+
/**
|
|
4360
|
+
* The deletedCompositeRows property
|
|
4361
|
+
*/
|
|
4362
|
+
deletedCompositeRows?: SuggestionDeletedCompositeRowDTO[] | null;
|
|
3847
4363
|
/**
|
|
3848
4364
|
* The deletedFields property
|
|
3849
4365
|
*/
|
|
@@ -3880,6 +4396,10 @@ interface SuggestionDto extends AdditionalDataHolder, Parsable {
|
|
|
3880
4396
|
* The object property
|
|
3881
4397
|
*/
|
|
3882
4398
|
object?: SuggestionDto_object | null;
|
|
4399
|
+
/**
|
|
4400
|
+
* The recommendedCompositeRows property
|
|
4401
|
+
*/
|
|
4402
|
+
recommendedCompositeRows?: RecommendedCompositeRowsDTO | null;
|
|
3883
4403
|
/**
|
|
3884
4404
|
* The screenId property
|
|
3885
4405
|
*/
|
|
@@ -4145,6 +4665,20 @@ interface UpdateJobDto_output extends AdditionalDataHolder, Parsable {
|
|
|
4145
4665
|
additionalData?: Record<string, unknown>;
|
|
4146
4666
|
}
|
|
4147
4667
|
type UpdateJobDto_status = (typeof UpdateJobDto_statusObject)[keyof typeof UpdateJobDto_statusObject];
|
|
4668
|
+
interface UpdatePartnerGroupDto extends AdditionalDataHolder, Parsable {
|
|
4669
|
+
/**
|
|
4670
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4671
|
+
*/
|
|
4672
|
+
additionalData?: Record<string, unknown>;
|
|
4673
|
+
/**
|
|
4674
|
+
* The description property
|
|
4675
|
+
*/
|
|
4676
|
+
description?: string | null;
|
|
4677
|
+
/**
|
|
4678
|
+
* The title property
|
|
4679
|
+
*/
|
|
4680
|
+
title?: string | null;
|
|
4681
|
+
}
|
|
4148
4682
|
interface UpdateTaskDto extends AdditionalDataHolder, Parsable {
|
|
4149
4683
|
/**
|
|
4150
4684
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -4389,12 +4923,21 @@ interface VariableDto extends AdditionalDataHolder, Parsable {
|
|
|
4389
4923
|
* The value property
|
|
4390
4924
|
*/
|
|
4391
4925
|
value?: string | null;
|
|
4926
|
+
/**
|
|
4927
|
+
* The version property
|
|
4928
|
+
*/
|
|
4929
|
+
version?: string | null;
|
|
4392
4930
|
}
|
|
4393
4931
|
type VariableDto_object = (typeof VariableDto_objectObject)[keyof typeof VariableDto_objectObject];
|
|
4394
4932
|
type VariableDto_status = (typeof VariableDto_statusObject)[keyof typeof VariableDto_statusObject];
|
|
4395
4933
|
declare const AccountDto_objectObject: {
|
|
4396
4934
|
readonly Account: "account";
|
|
4397
4935
|
};
|
|
4936
|
+
declare const ApplySuggestionOnCompositeDto_typeObject: {
|
|
4937
|
+
readonly DELETE_ENTRY: "DELETE_ENTRY";
|
|
4938
|
+
readonly LINK: "LINK";
|
|
4939
|
+
readonly NEW_ENTRY: "NEW_ENTRY";
|
|
4940
|
+
};
|
|
4398
4941
|
declare const AuditLogDto_objectObject: {
|
|
4399
4942
|
readonly Audit_log: "audit_log";
|
|
4400
4943
|
};
|
|
@@ -4402,9 +4945,9 @@ declare const CommentThreadCommentDTO_objectObject: {
|
|
|
4402
4945
|
readonly Comment_thread_comment: "comment_thread_comment";
|
|
4403
4946
|
};
|
|
4404
4947
|
declare const CommentThreadCommentDTO_typeObject: {
|
|
4405
|
-
readonly TEXT: "TEXT";
|
|
4406
4948
|
readonly SYSTEM: "SYSTEM";
|
|
4407
4949
|
readonly SYSTEM_ERROR: "SYSTEM_ERROR";
|
|
4950
|
+
readonly TEXT: "TEXT";
|
|
4408
4951
|
};
|
|
4409
4952
|
declare const CommentThreadCreateDto_targetTypeObject: {
|
|
4410
4953
|
readonly Suggestion: "suggestion";
|
|
@@ -4413,85 +4956,86 @@ declare const CommentThreadDto_objectObject: {
|
|
|
4413
4956
|
readonly Comment_thread: "comment_thread";
|
|
4414
4957
|
};
|
|
4415
4958
|
declare const CommentThreadDto_targetTypeObject: {
|
|
4416
|
-
readonly Schedule: "schedule";
|
|
4417
|
-
readonly Plan_execution: "plan_execution";
|
|
4418
|
-
readonly Execution: "execution";
|
|
4419
4959
|
readonly Account: "account";
|
|
4960
|
+
readonly Account_has_table: "account_has_table";
|
|
4961
|
+
readonly Account_api_client_info: "account_api_client_info";
|
|
4962
|
+
readonly Account_contact_group: "account_contact_group";
|
|
4963
|
+
readonly Account_invitation: "account_invitation";
|
|
4420
4964
|
readonly Account_plan: "account_plan";
|
|
4421
4965
|
readonly Account_plan_feature: "account_plan_feature";
|
|
4422
|
-
readonly
|
|
4423
|
-
readonly
|
|
4424
|
-
readonly
|
|
4425
|
-
readonly
|
|
4426
|
-
readonly
|
|
4966
|
+
readonly Account_relation: "account_relation";
|
|
4967
|
+
readonly Activity: "activity";
|
|
4968
|
+
readonly Audit_log: "audit_log";
|
|
4969
|
+
readonly Comment_thread: "comment_thread";
|
|
4970
|
+
readonly Comment_thread_assignee: "comment_thread_assignee";
|
|
4971
|
+
readonly Comment_thread_dto: "comment_thread_dto";
|
|
4972
|
+
readonly Comment_thread_subscriber: "comment_thread_subscriber";
|
|
4973
|
+
readonly Composite_collect_strategy: "composite_collect_strategy";
|
|
4974
|
+
readonly ConditionalFormatting: "conditionalFormatting";
|
|
4975
|
+
readonly ConditionalFormattingRule: "conditionalFormattingRule";
|
|
4976
|
+
readonly ConditionalFormattingStatus: "conditionalFormattingStatus";
|
|
4427
4977
|
readonly Container_link_entity: "container_link_entity";
|
|
4978
|
+
readonly Dashboard: "dashboard";
|
|
4979
|
+
readonly Data_factory_variable: "data_factory_variable";
|
|
4980
|
+
readonly Data_factory_variable_overload: "data_factory_variable_overload";
|
|
4981
|
+
readonly Execution: "execution";
|
|
4982
|
+
readonly Feature_flag: "feature_flag";
|
|
4983
|
+
readonly Field: "field";
|
|
4984
|
+
readonly FieldValue: "fieldValue";
|
|
4985
|
+
readonly Field_value_by_formula_rule: "field_value_by_formula_rule";
|
|
4986
|
+
readonly Field_value_whitelist: "field_value_whitelist";
|
|
4987
|
+
readonly File_ref: "file_ref";
|
|
4988
|
+
readonly Formula_rule: "formula_rule";
|
|
4989
|
+
readonly Generic_mock_data: "generic_mock_data";
|
|
4428
4990
|
readonly Global_message: "global_message";
|
|
4991
|
+
readonly Grid_column: "grid_column";
|
|
4429
4992
|
readonly Group: "group";
|
|
4430
|
-
readonly
|
|
4431
|
-
readonly Screen_section: "screen_section";
|
|
4432
|
-
readonly Screen_column: "screen_column";
|
|
4433
|
-
readonly Screen_detail: "screen_detail";
|
|
4434
|
-
readonly Pl_employee: "pl_employee";
|
|
4435
|
-
readonly Project_category: "project_category";
|
|
4436
|
-
readonly Activity: "activity";
|
|
4437
|
-
readonly Pipeline: "pipeline";
|
|
4438
|
-
readonly Job_instance: "job_instance";
|
|
4439
|
-
readonly Job: "job";
|
|
4440
|
-
readonly Task_external: "task_external";
|
|
4441
|
-
readonly Workflow_definition: "workflow_definition";
|
|
4442
|
-
readonly File_ref: "file_ref";
|
|
4443
|
-
readonly Account_invitation: "account_invitation";
|
|
4444
|
-
readonly Account_relation: "account_relation";
|
|
4445
|
-
readonly Account_contact_group: "account_contact_group";
|
|
4446
|
-
readonly Row_data: "row_data";
|
|
4447
|
-
readonly Suggestion: "suggestion";
|
|
4448
|
-
readonly Suggestion_creation: "suggestion_creation";
|
|
4449
|
-
readonly Item_suggestion: "item_suggestion";
|
|
4450
|
-
readonly Item_publication: "item_publication";
|
|
4451
|
-
readonly Partition: "partition";
|
|
4452
|
-
readonly Level: "level";
|
|
4993
|
+
readonly Http_request: "http_request";
|
|
4453
4994
|
readonly Item: "item";
|
|
4454
4995
|
readonly Item_cache: "item_cache";
|
|
4996
|
+
readonly Item_conditional_formatting_rule: "item_conditional_formatting_rule";
|
|
4997
|
+
readonly Item_import_report: "item_import_report";
|
|
4455
4998
|
readonly Item_link: "item_link";
|
|
4999
|
+
readonly Item_publication: "item_publication";
|
|
5000
|
+
readonly Item_suggestion: "item_suggestion";
|
|
5001
|
+
readonly Job: "job";
|
|
5002
|
+
readonly Job_instance: "job_instance";
|
|
5003
|
+
readonly Level: "level";
|
|
5004
|
+
readonly Mapping_field: "mapping_field";
|
|
5005
|
+
readonly Mapping_rule: "mapping_rule";
|
|
5006
|
+
readonly Matrix_field: "matrix_field";
|
|
5007
|
+
readonly Member: "member";
|
|
5008
|
+
readonly Partition: "partition";
|
|
4456
5009
|
readonly Permission: "permission";
|
|
4457
|
-
readonly
|
|
4458
|
-
readonly
|
|
4459
|
-
readonly
|
|
4460
|
-
readonly
|
|
4461
|
-
readonly
|
|
4462
|
-
readonly
|
|
5010
|
+
readonly Pipeline: "pipeline";
|
|
5011
|
+
readonly Plan_execution: "plan_execution";
|
|
5012
|
+
readonly Pl_employee: "pl_employee";
|
|
5013
|
+
readonly Project_category: "project_category";
|
|
5014
|
+
readonly Reset_password: "reset_password";
|
|
5015
|
+
readonly Row_data: "row_data";
|
|
5016
|
+
readonly Schedule: "schedule";
|
|
5017
|
+
readonly Screen: "screen";
|
|
5018
|
+
readonly Screen_column: "screen_column";
|
|
5019
|
+
readonly Screen_section: "screen_section";
|
|
5020
|
+
readonly Screen_detail: "screen_detail";
|
|
4463
5021
|
readonly Section: "section";
|
|
4464
|
-
readonly
|
|
5022
|
+
readonly Suffix: "suffix";
|
|
5023
|
+
readonly Suggestion: "suggestion";
|
|
5024
|
+
readonly Suggestion_creation: "suggestion_creation";
|
|
5025
|
+
readonly Table: "table";
|
|
4465
5026
|
readonly Table_conditional_field: "table_conditional_field";
|
|
4466
5027
|
readonly Table_conditional_field_value: "table_conditional_field_value";
|
|
4467
|
-
readonly Item_conditional_formatting_rule: "item_conditional_formatting_rule";
|
|
4468
|
-
readonly Account_has_table: "account_has_table";
|
|
4469
5028
|
readonly Table_link: "table_link";
|
|
4470
|
-
readonly Mapping_rule: "mapping_rule";
|
|
4471
|
-
readonly Mapping_field: "mapping_field";
|
|
4472
|
-
readonly Matrix_field: "matrix_field";
|
|
4473
|
-
readonly Feature_flag: "feature_flag";
|
|
4474
5029
|
readonly Table_quick_import_settings: "table_quick_import_settings";
|
|
4475
|
-
readonly
|
|
4476
|
-
readonly Formula_rule: "formula_rule";
|
|
4477
|
-
readonly Data_factory_variable: "data_factory_variable";
|
|
4478
|
-
readonly Data_factory_variable_overload: "data_factory_variable_overload";
|
|
4479
|
-
readonly Field_value_by_formula_rule: "field_value_by_formula_rule";
|
|
4480
|
-
readonly Field_value_whitelist: "field_value_whitelist";
|
|
4481
|
-
readonly Comment_thread: "comment_thread";
|
|
4482
|
-
readonly Comment_thread_dto: "comment_thread_dto";
|
|
4483
|
-
readonly Comment_thread_assignee: "comment_thread_assignee";
|
|
4484
|
-
readonly Comment_thread_subscriber: "comment_thread_subscriber";
|
|
4485
|
-
readonly Yuba_log: "yuba_log";
|
|
4486
|
-
readonly Yuba_log_group_metadata: "yuba_log_group_metadata";
|
|
4487
|
-
readonly Audit_log: "audit_log";
|
|
4488
|
-
readonly Suffix: "suffix";
|
|
4489
|
-
readonly Reset_password: "reset_password";
|
|
5030
|
+
readonly Task_external: "task_external";
|
|
4490
5031
|
readonly Test_type: "test_type";
|
|
4491
|
-
readonly
|
|
4492
|
-
readonly Dashboard: "dashboard";
|
|
4493
|
-
readonly Http_request: "http_request";
|
|
5032
|
+
readonly User: "user";
|
|
4494
5033
|
readonly User_activity: "user_activity";
|
|
5034
|
+
readonly User_has_account: "user_has_account";
|
|
5035
|
+
readonly User_table_saved_search: "user_table_saved_search";
|
|
5036
|
+
readonly Workflow_definition: "workflow_definition";
|
|
5037
|
+
readonly Yuba_log: "yuba_log";
|
|
5038
|
+
readonly Yuba_log_group_metadata: "yuba_log_group_metadata";
|
|
4495
5039
|
};
|
|
4496
5040
|
declare const CommentThreadDto_typeObject: {
|
|
4497
5041
|
readonly DEFAULTEscaped: "DEFAULT";
|
|
@@ -4500,21 +5044,26 @@ declare const CommentThreadDto_typeObject: {
|
|
|
4500
5044
|
declare const CommentThreadSubscriberDto_objectObject: {
|
|
4501
5045
|
readonly Comment_thread_subscriber: "comment_thread_subscriber";
|
|
4502
5046
|
};
|
|
5047
|
+
declare const CompositeCollectStrategyDto_typeObject: {
|
|
5048
|
+
readonly BY_FIELDS: "BY_FIELDS";
|
|
5049
|
+
readonly BY_ID: "BY_ID";
|
|
5050
|
+
readonly BY_POSITION: "BY_POSITION";
|
|
5051
|
+
};
|
|
4503
5052
|
declare const CreateJobDto_statusObject: {
|
|
5053
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
5054
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
4504
5055
|
readonly DRAFT: "DRAFT";
|
|
4505
5056
|
readonly PRODUCTION: "PRODUCTION";
|
|
4506
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
4507
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
4508
5057
|
readonly REMOVED: "REMOVED";
|
|
4509
5058
|
};
|
|
4510
5059
|
declare const CreateTaskDto_retryLogicObject: {
|
|
4511
|
-
readonly FIXED: "FIXED";
|
|
4512
5060
|
readonly EXPONENTIAL_BACKOFF: "EXPONENTIAL_BACKOFF";
|
|
5061
|
+
readonly FIXED: "FIXED";
|
|
4513
5062
|
};
|
|
4514
5063
|
declare const CreateTaskDto_timeoutPolicyObject: {
|
|
5064
|
+
readonly ALERT_ONLY: "ALERT_ONLY";
|
|
4515
5065
|
readonly RETRY: "RETRY";
|
|
4516
5066
|
readonly TIME_OUT_WF: "TIME_OUT_WF";
|
|
4517
|
-
readonly ALERT_ONLY: "ALERT_ONLY";
|
|
4518
5067
|
};
|
|
4519
5068
|
declare const CreateVariableDto_statusObject: {
|
|
4520
5069
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -4525,23 +5074,23 @@ declare const FieldDto_objectObject: {
|
|
|
4525
5074
|
readonly Field: "field";
|
|
4526
5075
|
};
|
|
4527
5076
|
declare const FieldDto_typeObject: {
|
|
4528
|
-
readonly
|
|
5077
|
+
readonly ATTACHMENT: "ATTACHMENT";
|
|
4529
5078
|
readonly CLASSIFICATION: "CLASSIFICATION";
|
|
4530
|
-
readonly
|
|
4531
|
-
readonly
|
|
4532
|
-
readonly NUMBER: "NUMBER";
|
|
5079
|
+
readonly COMPOSITE: "COMPOSITE";
|
|
5080
|
+
readonly CONDITIONALFORMATTING: "CONDITIONAL-FORMATTING";
|
|
4533
5081
|
readonly DATE: "DATE";
|
|
4534
5082
|
readonly DATETIME: "DATE-TIME";
|
|
4535
5083
|
readonly HTMLTEXT: "HTML-TEXT";
|
|
5084
|
+
readonly IDENTIFIER: "IDENTIFIER";
|
|
4536
5085
|
readonly IMAGE: "IMAGE";
|
|
4537
|
-
readonly
|
|
4538
|
-
readonly SINGLESELECT: "SINGLE-SELECT";
|
|
5086
|
+
readonly LONGTEXT: "LONG-TEXT";
|
|
4539
5087
|
readonly MULTIPLESELECT: "MULTIPLE-SELECT";
|
|
4540
5088
|
readonly MULTIPLESELECTQUANTIFIED: "MULTIPLE-SELECT-QUANTIFIED";
|
|
4541
5089
|
readonly MULTIPLESELECTQUANTIFIEDWITHCOMMENTS: "MULTIPLE-SELECT-QUANTIFIED-WITH-COMMENTS";
|
|
4542
5090
|
readonly MULTIPLESELECTWITHCOMMENTS: "MULTIPLE-SELECT-WITH-COMMENTS";
|
|
4543
|
-
readonly
|
|
4544
|
-
readonly
|
|
5091
|
+
readonly NUMBER: "NUMBER";
|
|
5092
|
+
readonly SINGLELINETEXT: "SINGLE-LINE-TEXT";
|
|
5093
|
+
readonly SINGLESELECT: "SINGLE-SELECT";
|
|
4545
5094
|
};
|
|
4546
5095
|
declare const FieldSuffixDto_statusObject: {
|
|
4547
5096
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -4549,17 +5098,17 @@ declare const FieldSuffixDto_statusObject: {
|
|
|
4549
5098
|
readonly DELETED: "DELETED";
|
|
4550
5099
|
};
|
|
4551
5100
|
declare const FieldValueDto_colorObject: {
|
|
4552
|
-
readonly NONE: "NONE";
|
|
4553
5101
|
readonly BLACK: "BLACK";
|
|
4554
5102
|
readonly BLUE: "BLUE";
|
|
4555
5103
|
readonly BROWN: "BROWN";
|
|
5104
|
+
readonly CYAN: "CYAN";
|
|
4556
5105
|
readonly GREEN: "GREEN";
|
|
5106
|
+
readonly MAGENTA: "MAGENTA";
|
|
5107
|
+
readonly NONE: "NONE";
|
|
4557
5108
|
readonly ORANGE: "ORANGE";
|
|
4558
5109
|
readonly PURPLE: "PURPLE";
|
|
4559
5110
|
readonly RED: "RED";
|
|
4560
5111
|
readonly YELLOW: "YELLOW";
|
|
4561
|
-
readonly CYAN: "CYAN";
|
|
4562
|
-
readonly MAGENTA: "MAGENTA";
|
|
4563
5112
|
};
|
|
4564
5113
|
declare const FieldValueDto_objectObject: {
|
|
4565
5114
|
readonly Field_value: "field_value";
|
|
@@ -4581,17 +5130,17 @@ declare const FindItemHighOrderQueryDTO_typeObject: {
|
|
|
4581
5130
|
};
|
|
4582
5131
|
declare const FindItemLowOrderQueryDTO_typeObject: {
|
|
4583
5132
|
readonly Eq: "eq";
|
|
4584
|
-
readonly Search: "search";
|
|
4585
|
-
readonly InEscaped: "in";
|
|
4586
|
-
readonly NotIn: "notIn";
|
|
4587
|
-
readonly TrueEscaped: "true";
|
|
4588
5133
|
readonly FalseEscaped: "false";
|
|
4589
5134
|
readonly Greater: "greater";
|
|
4590
5135
|
readonly GreaterOrEqual: "greaterOrEqual";
|
|
4591
|
-
readonly
|
|
4592
|
-
readonly LowerOrEqual: "lowerOrEqual";
|
|
5136
|
+
readonly InEscaped: "in";
|
|
4593
5137
|
readonly IsNull: "isNull";
|
|
4594
5138
|
readonly LocalizedSearch: "localizedSearch";
|
|
5139
|
+
readonly Lower: "lower";
|
|
5140
|
+
readonly LowerOrEqual: "lowerOrEqual";
|
|
5141
|
+
readonly NotIn: "notIn";
|
|
5142
|
+
readonly Search: "search";
|
|
5143
|
+
readonly TrueEscaped: "true";
|
|
4595
5144
|
};
|
|
4596
5145
|
declare const HighOrderQueryDTO_typeObject: {
|
|
4597
5146
|
readonly And: "and";
|
|
@@ -4631,13 +5180,6 @@ declare const ItemFieldStringDTO_typeObject: {
|
|
|
4631
5180
|
readonly HTMLTEXT: "HTML-TEXT";
|
|
4632
5181
|
readonly SINGLESELECT: "SINGLE-SELECT";
|
|
4633
5182
|
};
|
|
4634
|
-
/**
|
|
4635
|
-
* Order according to keyName parameter
|
|
4636
|
-
*/
|
|
4637
|
-
declare const ItemFindDTO_orderObject: {
|
|
4638
|
-
readonly ASC: "ASC";
|
|
4639
|
-
readonly DESC: "DESC";
|
|
4640
|
-
};
|
|
4641
5183
|
declare const ItemLinkDto_objectObject: {
|
|
4642
5184
|
readonly Item_link: "item_link";
|
|
4643
5185
|
};
|
|
@@ -4645,29 +5187,29 @@ declare const JobDto_objectObject: {
|
|
|
4645
5187
|
readonly Job: "job";
|
|
4646
5188
|
};
|
|
4647
5189
|
declare const JobDto_statusObject: {
|
|
5190
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
5191
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
4648
5192
|
readonly DRAFT: "DRAFT";
|
|
4649
5193
|
readonly PRODUCTION: "PRODUCTION";
|
|
4650
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
4651
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
4652
5194
|
readonly REMOVED: "REMOVED";
|
|
4653
5195
|
};
|
|
4654
5196
|
declare const JobExecutionDto_objectObject: {
|
|
4655
5197
|
readonly Job_execution: "job_execution";
|
|
4656
5198
|
};
|
|
4657
5199
|
declare const JobExecutionDto_statusObject: {
|
|
4658
|
-
readonly RUNNING: "RUNNING";
|
|
4659
5200
|
readonly COMPLETED: "COMPLETED";
|
|
4660
5201
|
readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
|
|
4661
|
-
readonly TIMED_OUT: "TIMED_OUT";
|
|
4662
5202
|
readonly FAILED: "FAILED";
|
|
5203
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
5204
|
+
readonly PAUSED: "PAUSED";
|
|
4663
5205
|
readonly PENDING: "PENDING";
|
|
5206
|
+
readonly QUEUED: "QUEUED";
|
|
5207
|
+
readonly REMOVED: "REMOVED";
|
|
5208
|
+
readonly RUNNING: "RUNNING";
|
|
4664
5209
|
readonly SCHEDULED: "SCHEDULED";
|
|
4665
5210
|
readonly TERMINATED: "TERMINATED";
|
|
4666
|
-
readonly
|
|
5211
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
4667
5212
|
readonly UNKNOWN: "UNKNOWN";
|
|
4668
|
-
readonly REMOVED: "REMOVED";
|
|
4669
|
-
readonly QUEUED: "QUEUED";
|
|
4670
|
-
readonly PAUSED: "PAUSED";
|
|
4671
5213
|
readonly USER_ERROR: "USER_ERROR";
|
|
4672
5214
|
};
|
|
4673
5215
|
declare const JobVisibilityDto_modeObject: {
|
|
@@ -4677,17 +5219,17 @@ declare const JobVisibilityDto_modeObject: {
|
|
|
4677
5219
|
};
|
|
4678
5220
|
declare const LowOrderQueryDTO_typeObject: {
|
|
4679
5221
|
readonly Eq: "eq";
|
|
4680
|
-
readonly Search: "search";
|
|
4681
|
-
readonly InEscaped: "in";
|
|
4682
|
-
readonly NotIn: "notIn";
|
|
4683
|
-
readonly TrueEscaped: "true";
|
|
4684
5222
|
readonly FalseEscaped: "false";
|
|
4685
5223
|
readonly Greater: "greater";
|
|
4686
5224
|
readonly GreaterOrEqual: "greaterOrEqual";
|
|
4687
|
-
readonly
|
|
4688
|
-
readonly LowerOrEqual: "lowerOrEqual";
|
|
5225
|
+
readonly InEscaped: "in";
|
|
4689
5226
|
readonly IsNull: "isNull";
|
|
4690
5227
|
readonly LocalizedSearch: "localizedSearch";
|
|
5228
|
+
readonly Lower: "lower";
|
|
5229
|
+
readonly LowerOrEqual: "lowerOrEqual";
|
|
5230
|
+
readonly NotIn: "notIn";
|
|
5231
|
+
readonly Search: "search";
|
|
5232
|
+
readonly TrueEscaped: "true";
|
|
4691
5233
|
};
|
|
4692
5234
|
declare const MatrixFieldDto_objectObject: {
|
|
4693
5235
|
readonly Matrix_field: "matrix_field";
|
|
@@ -4697,19 +5239,54 @@ declare const MatrixFieldDto_statusObject: {
|
|
|
4697
5239
|
readonly ARCHIVED: "ARCHIVED";
|
|
4698
5240
|
readonly DELETED: "DELETED";
|
|
4699
5241
|
};
|
|
5242
|
+
declare const MeAccountDto_memberStatusObject: {
|
|
5243
|
+
readonly ACTIVE: "ACTIVE";
|
|
5244
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
5245
|
+
readonly PENDING: "PENDING";
|
|
5246
|
+
readonly REMOVED: "REMOVED";
|
|
5247
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
5248
|
+
};
|
|
5249
|
+
declare const MeAccountDto_objectObject: {
|
|
5250
|
+
readonly MeAccount: "me-account";
|
|
5251
|
+
};
|
|
5252
|
+
declare const MeAccountDto_roleObject: {
|
|
5253
|
+
readonly EDITOR: "EDITOR";
|
|
5254
|
+
readonly SITE_ADMIN: "SITE_ADMIN";
|
|
5255
|
+
};
|
|
4700
5256
|
declare const PartitionDto_statusObject: {
|
|
4701
5257
|
readonly ACTIVE: "ACTIVE";
|
|
4702
5258
|
readonly ARCHIVED: "ARCHIVED";
|
|
4703
5259
|
readonly DELETED: "DELETED";
|
|
4704
5260
|
};
|
|
5261
|
+
declare const PartnerDto_objectObject: {
|
|
5262
|
+
readonly Partner: "partner";
|
|
5263
|
+
};
|
|
5264
|
+
declare const PartnerDto_statusObject: {
|
|
5265
|
+
readonly DISABLED: "DISABLED";
|
|
5266
|
+
readonly ENABLED: "ENABLED";
|
|
5267
|
+
readonly REMOVED: "REMOVED";
|
|
5268
|
+
};
|
|
5269
|
+
declare const PartnerGroupDto_objectObject: {
|
|
5270
|
+
readonly Partner_group: "partner_group";
|
|
5271
|
+
};
|
|
5272
|
+
declare const PartnerInvitationDto_objectObject: {
|
|
5273
|
+
readonly Partner_invitation: "partner_invitation";
|
|
5274
|
+
};
|
|
5275
|
+
declare const PartnerInvitationDto_statusObject: {
|
|
5276
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
5277
|
+
readonly CANCELLED: "CANCELLED";
|
|
5278
|
+
readonly INVALID_EMAIL: "INVALID_EMAIL";
|
|
5279
|
+
readonly PENDING: "PENDING";
|
|
5280
|
+
readonly PROCESSING: "PROCESSING";
|
|
5281
|
+
};
|
|
4705
5282
|
declare const PatchPublicationDto_statusObject: {
|
|
4706
|
-
readonly SENT: "SENT";
|
|
4707
5283
|
readonly RECEIVED: "RECEIVED";
|
|
4708
5284
|
readonly REJECTED: "REJECTED";
|
|
5285
|
+
readonly SENT: "SENT";
|
|
4709
5286
|
};
|
|
4710
5287
|
declare const PatchTaskExecutionDto_statusObject: {
|
|
4711
|
-
readonly FAILED: "FAILED";
|
|
4712
5288
|
readonly COMPLETED: "COMPLETED";
|
|
5289
|
+
readonly FAILED: "FAILED";
|
|
4713
5290
|
};
|
|
4714
5291
|
declare const PipelineDto_objectObject: {
|
|
4715
5292
|
readonly Pipeline: "pipeline";
|
|
@@ -4721,9 +5298,22 @@ declare const PublicationDto_objectObject: {
|
|
|
4721
5298
|
readonly Publication: "publication";
|
|
4722
5299
|
};
|
|
4723
5300
|
declare const PublicationDto_statusObject: {
|
|
4724
|
-
readonly SENT: "SENT";
|
|
4725
5301
|
readonly RECEIVED: "RECEIVED";
|
|
4726
5302
|
readonly REJECTED: "REJECTED";
|
|
5303
|
+
readonly SENT: "SENT";
|
|
5304
|
+
};
|
|
5305
|
+
declare const RecommendedCompositeExistingItemRowDTO_typeObject: {
|
|
5306
|
+
readonly DELETE_ENTRY: "DELETE_ENTRY";
|
|
5307
|
+
readonly LINK: "LINK";
|
|
5308
|
+
readonly NEW_ENTRY: "NEW_ENTRY";
|
|
5309
|
+
};
|
|
5310
|
+
declare const RecommendedCompositeNewItemRowDTO_typeObject: {
|
|
5311
|
+
readonly NEW_ENTRY: "NEW_ENTRY";
|
|
5312
|
+
};
|
|
5313
|
+
declare const RecommendedCompositeRowStrategyDTO_typeObject: {
|
|
5314
|
+
readonly BY_FIELDS: "BY_FIELDS";
|
|
5315
|
+
readonly BY_ID: "BY_ID";
|
|
5316
|
+
readonly BY_POSITION: "BY_POSITION";
|
|
4727
5317
|
};
|
|
4728
5318
|
declare const ScreenColumnDto_displayObject: {
|
|
4729
5319
|
readonly MARKDOWN: "MARKDOWN";
|
|
@@ -4732,17 +5322,17 @@ declare const ScreenColumnDto_objectObject: {
|
|
|
4732
5322
|
readonly Screen_column: "screen_column";
|
|
4733
5323
|
};
|
|
4734
5324
|
declare const ScreenColumnDto_widthObject: {
|
|
4735
|
-
readonly SMALL: "SMALL";
|
|
4736
|
-
readonly MEDIUM: "MEDIUM";
|
|
4737
|
-
readonly LARGE: "LARGE";
|
|
4738
5325
|
readonly EXTRA_LARGE: "EXTRA_LARGE";
|
|
5326
|
+
readonly LARGE: "LARGE";
|
|
5327
|
+
readonly MEDIUM: "MEDIUM";
|
|
5328
|
+
readonly SMALL: "SMALL";
|
|
4739
5329
|
};
|
|
4740
5330
|
declare const ScreenDto_lineHeightObject: {
|
|
4741
5331
|
readonly EXTRA_SHORT: "EXTRA_SHORT";
|
|
4742
|
-
readonly
|
|
5332
|
+
readonly EXTRA_TALL: "EXTRA_TALL";
|
|
4743
5333
|
readonly MEDIUM: "MEDIUM";
|
|
5334
|
+
readonly SHORT: "SHORT";
|
|
4744
5335
|
readonly TALL: "TALL";
|
|
4745
|
-
readonly EXTRA_TALL: "EXTRA_TALL";
|
|
4746
5336
|
};
|
|
4747
5337
|
declare const ScreenDto_statusObject: {
|
|
4748
5338
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -4753,23 +5343,23 @@ declare const ScreenSectionDto_objectObject: {
|
|
|
4753
5343
|
readonly Screen_section: "screen_section";
|
|
4754
5344
|
};
|
|
4755
5345
|
declare const SuggestionDeletedFieldDTO_typeObject: {
|
|
4756
|
-
readonly
|
|
5346
|
+
readonly ATTACHMENT: "ATTACHMENT";
|
|
4757
5347
|
readonly CLASSIFICATION: "CLASSIFICATION";
|
|
4758
|
-
readonly
|
|
4759
|
-
readonly
|
|
4760
|
-
readonly NUMBER: "NUMBER";
|
|
5348
|
+
readonly COMPOSITE: "COMPOSITE";
|
|
5349
|
+
readonly CONDITIONALFORMATTING: "CONDITIONAL-FORMATTING";
|
|
4761
5350
|
readonly DATE: "DATE";
|
|
4762
5351
|
readonly DATETIME: "DATE-TIME";
|
|
4763
5352
|
readonly HTMLTEXT: "HTML-TEXT";
|
|
5353
|
+
readonly IDENTIFIER: "IDENTIFIER";
|
|
4764
5354
|
readonly IMAGE: "IMAGE";
|
|
4765
|
-
readonly
|
|
4766
|
-
readonly SINGLESELECT: "SINGLE-SELECT";
|
|
5355
|
+
readonly LONGTEXT: "LONG-TEXT";
|
|
4767
5356
|
readonly MULTIPLESELECT: "MULTIPLE-SELECT";
|
|
4768
5357
|
readonly MULTIPLESELECTQUANTIFIED: "MULTIPLE-SELECT-QUANTIFIED";
|
|
4769
5358
|
readonly MULTIPLESELECTQUANTIFIEDWITHCOMMENTS: "MULTIPLE-SELECT-QUANTIFIED-WITH-COMMENTS";
|
|
4770
5359
|
readonly MULTIPLESELECTWITHCOMMENTS: "MULTIPLE-SELECT-WITH-COMMENTS";
|
|
4771
|
-
readonly
|
|
4772
|
-
readonly
|
|
5360
|
+
readonly NUMBER: "NUMBER";
|
|
5361
|
+
readonly SINGLELINETEXT: "SINGLE-LINE-TEXT";
|
|
5362
|
+
readonly SINGLESELECT: "SINGLE-SELECT";
|
|
4773
5363
|
};
|
|
4774
5364
|
declare const SuggestionDto_objectObject: {
|
|
4775
5365
|
readonly Suggestion: "suggestion";
|
|
@@ -4778,39 +5368,39 @@ declare const TaskDto_objectObject: {
|
|
|
4778
5368
|
readonly Task: "task";
|
|
4779
5369
|
};
|
|
4780
5370
|
declare const TaskDto_retryLogicObject: {
|
|
4781
|
-
readonly FIXED: "FIXED";
|
|
4782
5371
|
readonly EXPONENTIAL_BACKOFF: "EXPONENTIAL_BACKOFF";
|
|
5372
|
+
readonly FIXED: "FIXED";
|
|
4783
5373
|
};
|
|
4784
5374
|
declare const TaskDto_timeoutPolicyObject: {
|
|
5375
|
+
readonly ALERT_ONLY: "ALERT_ONLY";
|
|
4785
5376
|
readonly RETRY: "RETRY";
|
|
4786
5377
|
readonly TIME_OUT_WF: "TIME_OUT_WF";
|
|
4787
|
-
readonly ALERT_ONLY: "ALERT_ONLY";
|
|
4788
5378
|
};
|
|
4789
5379
|
declare const TaskExecutionDto_objectObject: {
|
|
4790
5380
|
readonly Task_execution: "task_execution";
|
|
4791
5381
|
};
|
|
4792
5382
|
declare const TaskExecutionDto_statusObject: {
|
|
4793
|
-
readonly SCHEDULED: "SCHEDULED";
|
|
4794
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
4795
5383
|
readonly CANCELLED: "CANCELLED";
|
|
4796
|
-
readonly FAILED: "FAILED";
|
|
4797
5384
|
readonly COMPLETED: "COMPLETED";
|
|
5385
|
+
readonly FAILED: "FAILED";
|
|
5386
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
5387
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
4798
5388
|
};
|
|
4799
5389
|
declare const UpdateJobDto_statusObject: {
|
|
5390
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
5391
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
4800
5392
|
readonly DRAFT: "DRAFT";
|
|
4801
5393
|
readonly PRODUCTION: "PRODUCTION";
|
|
4802
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
4803
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
4804
5394
|
readonly REMOVED: "REMOVED";
|
|
4805
5395
|
};
|
|
4806
5396
|
declare const UpdateTaskDto_retryLogicObject: {
|
|
4807
|
-
readonly FIXED: "FIXED";
|
|
4808
5397
|
readonly EXPONENTIAL_BACKOFF: "EXPONENTIAL_BACKOFF";
|
|
5398
|
+
readonly FIXED: "FIXED";
|
|
4809
5399
|
};
|
|
4810
5400
|
declare const UpdateTaskDto_timeoutPolicyObject: {
|
|
5401
|
+
readonly ALERT_ONLY: "ALERT_ONLY";
|
|
4811
5402
|
readonly RETRY: "RETRY";
|
|
4812
5403
|
readonly TIME_OUT_WF: "TIME_OUT_WF";
|
|
4813
|
-
readonly ALERT_ONLY: "ALERT_ONLY";
|
|
4814
5404
|
};
|
|
4815
5405
|
declare const UpdateVariableDto_statusObject: {
|
|
4816
5406
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -4821,15 +5411,15 @@ declare const UserDto_objectObject: {
|
|
|
4821
5411
|
readonly User: "user";
|
|
4822
5412
|
};
|
|
4823
5413
|
declare const UserDto_roleObject: {
|
|
4824
|
-
readonly SITE_ADMIN: "SITE_ADMIN";
|
|
4825
5414
|
readonly EDITOR: "EDITOR";
|
|
5415
|
+
readonly SITE_ADMIN: "SITE_ADMIN";
|
|
4826
5416
|
};
|
|
4827
5417
|
declare const UserDto_statusObject: {
|
|
4828
|
-
readonly PENDING: "PENDING";
|
|
4829
5418
|
readonly ACTIVE: "ACTIVE";
|
|
4830
5419
|
readonly ARCHIVED: "ARCHIVED";
|
|
4831
|
-
readonly
|
|
5420
|
+
readonly PENDING: "PENDING";
|
|
4832
5421
|
readonly REMOVED: "REMOVED";
|
|
5422
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
4833
5423
|
};
|
|
4834
5424
|
declare const UserGroupDto_objectObject: {
|
|
4835
5425
|
readonly User_group: "user_group";
|
|
@@ -4843,7 +5433,7 @@ declare const VariableDto_statusObject: {
|
|
|
4843
5433
|
readonly DELETED: "DELETED";
|
|
4844
5434
|
};
|
|
4845
5435
|
|
|
4846
|
-
interface FindPostResponse$
|
|
5436
|
+
interface FindPostResponse$q extends AdditionalDataHolder, Parsable {
|
|
4847
5437
|
/**
|
|
4848
5438
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4849
5439
|
*/
|
|
@@ -4855,17 +5445,17 @@ interface FindPostResponse$n extends AdditionalDataHolder, Parsable {
|
|
|
4855
5445
|
/**
|
|
4856
5446
|
* The object property
|
|
4857
5447
|
*/
|
|
4858
|
-
object?: FindPostResponse_object$
|
|
5448
|
+
object?: FindPostResponse_object$q | null;
|
|
4859
5449
|
/**
|
|
4860
5450
|
* The totalElements property
|
|
4861
5451
|
*/
|
|
4862
5452
|
totalElements?: number | null;
|
|
4863
5453
|
}
|
|
4864
|
-
type FindPostResponse_object$
|
|
5454
|
+
type FindPostResponse_object$q = (typeof FindPostResponse_objectObject$q)[keyof typeof FindPostResponse_objectObject$q];
|
|
4865
5455
|
/**
|
|
4866
5456
|
* Builds and executes requests for operations under /v1/accounts/find
|
|
4867
5457
|
*/
|
|
4868
|
-
interface FindRequestBuilder$
|
|
5458
|
+
interface FindRequestBuilder$q extends BaseRequestBuilder<FindRequestBuilder$q> {
|
|
4869
5459
|
/**
|
|
4870
5460
|
* Find a list of Account
|
|
4871
5461
|
* @param body The request body
|
|
@@ -4873,31 +5463,31 @@ interface FindRequestBuilder$n extends BaseRequestBuilder<FindRequestBuilder$n>
|
|
|
4873
5463
|
* @returns {Promise<FindPostResponse>}
|
|
4874
5464
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
4875
5465
|
*/
|
|
4876
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5466
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$q> | undefined): Promise<FindPostResponse$q | undefined>;
|
|
4877
5467
|
/**
|
|
4878
5468
|
* Find a list of Account
|
|
4879
5469
|
* @param body The request body
|
|
4880
5470
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4881
5471
|
* @returns {RequestInformation}
|
|
4882
5472
|
*/
|
|
4883
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5473
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$q> | undefined): RequestInformation;
|
|
4884
5474
|
}
|
|
4885
5475
|
/**
|
|
4886
5476
|
* Find a list of Account
|
|
4887
5477
|
*/
|
|
4888
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
5478
|
+
interface FindRequestBuilderPostQueryParameters$q {
|
|
4889
5479
|
page?: number;
|
|
4890
5480
|
size?: number;
|
|
4891
5481
|
sort?: string;
|
|
4892
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
5482
|
+
sortOrder?: PostSortOrderQueryParameterType$q;
|
|
4893
5483
|
}
|
|
4894
|
-
type PostSortOrderQueryParameterType$
|
|
4895
|
-
declare const FindPostResponse_objectObject$
|
|
5484
|
+
type PostSortOrderQueryParameterType$q = (typeof PostSortOrderQueryParameterTypeObject$q)[keyof typeof PostSortOrderQueryParameterTypeObject$q];
|
|
5485
|
+
declare const FindPostResponse_objectObject$q: {
|
|
4896
5486
|
readonly List: "list";
|
|
4897
5487
|
};
|
|
4898
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
4899
|
-
readonly DESC: "DESC";
|
|
5488
|
+
declare const PostSortOrderQueryParameterTypeObject$q: {
|
|
4900
5489
|
readonly ASC: "ASC";
|
|
5490
|
+
readonly DESC: "DESC";
|
|
4901
5491
|
};
|
|
4902
5492
|
|
|
4903
5493
|
/**
|
|
@@ -4919,7 +5509,7 @@ interface AccountsItemRequestBuilder extends BaseRequestBuilder<AccountsItemRequ
|
|
|
4919
5509
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
4920
5510
|
}
|
|
4921
5511
|
|
|
4922
|
-
interface AccountsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5512
|
+
interface AccountsGetResponse$1 extends AdditionalDataHolder, Parsable {
|
|
4923
5513
|
/**
|
|
4924
5514
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4925
5515
|
*/
|
|
@@ -4931,21 +5521,21 @@ interface AccountsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
4931
5521
|
/**
|
|
4932
5522
|
* The object property
|
|
4933
5523
|
*/
|
|
4934
|
-
object?: AccountsGetResponse_object | null;
|
|
5524
|
+
object?: AccountsGetResponse_object$1 | null;
|
|
4935
5525
|
/**
|
|
4936
5526
|
* The totalElements property
|
|
4937
5527
|
*/
|
|
4938
5528
|
totalElements?: number | null;
|
|
4939
5529
|
}
|
|
4940
|
-
type AccountsGetResponse_object = (typeof AccountsGetResponse_objectObject)[keyof typeof AccountsGetResponse_objectObject];
|
|
5530
|
+
type AccountsGetResponse_object$1 = (typeof AccountsGetResponse_objectObject$1)[keyof typeof AccountsGetResponse_objectObject$1];
|
|
4941
5531
|
/**
|
|
4942
5532
|
* Builds and executes requests for operations under /v1/accounts
|
|
4943
5533
|
*/
|
|
4944
|
-
interface AccountsRequestBuilder extends BaseRequestBuilder<AccountsRequestBuilder> {
|
|
5534
|
+
interface AccountsRequestBuilder$1 extends BaseRequestBuilder<AccountsRequestBuilder$1> {
|
|
4945
5535
|
/**
|
|
4946
5536
|
* The find property
|
|
4947
5537
|
*/
|
|
4948
|
-
get find(): FindRequestBuilder$
|
|
5538
|
+
get find(): FindRequestBuilder$q;
|
|
4949
5539
|
/**
|
|
4950
5540
|
* Gets an item from the ApiSdk.v1.accounts.item collection
|
|
4951
5541
|
* @param id Unique identifier of the item
|
|
@@ -4958,33 +5548,33 @@ interface AccountsRequestBuilder extends BaseRequestBuilder<AccountsRequestBuild
|
|
|
4958
5548
|
* @returns {Promise<AccountsGetResponse>}
|
|
4959
5549
|
* @throws {Accounts400Error} error when the service returns a 400 status code
|
|
4960
5550
|
*/
|
|
4961
|
-
get(requestConfiguration?: RequestConfiguration<AccountsRequestBuilderGetQueryParameters> | undefined): Promise<AccountsGetResponse | undefined>;
|
|
5551
|
+
get(requestConfiguration?: RequestConfiguration<AccountsRequestBuilderGetQueryParameters$1> | undefined): Promise<AccountsGetResponse$1 | undefined>;
|
|
4962
5552
|
/**
|
|
4963
5553
|
* Get a list of Account
|
|
4964
5554
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4965
5555
|
* @returns {RequestInformation}
|
|
4966
5556
|
*/
|
|
4967
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AccountsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
5557
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AccountsRequestBuilderGetQueryParameters$1> | undefined): RequestInformation;
|
|
4968
5558
|
}
|
|
4969
5559
|
/**
|
|
4970
5560
|
* Get a list of Account
|
|
4971
5561
|
*/
|
|
4972
|
-
interface AccountsRequestBuilderGetQueryParameters {
|
|
5562
|
+
interface AccountsRequestBuilderGetQueryParameters$1 {
|
|
4973
5563
|
page?: number;
|
|
4974
5564
|
size?: number;
|
|
4975
5565
|
sort?: string;
|
|
4976
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5566
|
+
sortOrder?: GetSortOrderQueryParameterType$u;
|
|
4977
5567
|
}
|
|
4978
|
-
type GetSortOrderQueryParameterType$
|
|
4979
|
-
declare const AccountsGetResponse_objectObject: {
|
|
5568
|
+
type GetSortOrderQueryParameterType$u = (typeof GetSortOrderQueryParameterTypeObject$u)[keyof typeof GetSortOrderQueryParameterTypeObject$u];
|
|
5569
|
+
declare const AccountsGetResponse_objectObject$1: {
|
|
4980
5570
|
readonly List: "list";
|
|
4981
5571
|
};
|
|
4982
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
4983
|
-
readonly DESC: "DESC";
|
|
5572
|
+
declare const GetSortOrderQueryParameterTypeObject$u: {
|
|
4984
5573
|
readonly ASC: "ASC";
|
|
5574
|
+
readonly DESC: "DESC";
|
|
4985
5575
|
};
|
|
4986
5576
|
|
|
4987
|
-
interface FindPostResponse$
|
|
5577
|
+
interface FindPostResponse$p extends AdditionalDataHolder, Parsable {
|
|
4988
5578
|
/**
|
|
4989
5579
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4990
5580
|
*/
|
|
@@ -4996,17 +5586,17 @@ interface FindPostResponse$m extends AdditionalDataHolder, Parsable {
|
|
|
4996
5586
|
/**
|
|
4997
5587
|
* The object property
|
|
4998
5588
|
*/
|
|
4999
|
-
object?: FindPostResponse_object$
|
|
5589
|
+
object?: FindPostResponse_object$p | null;
|
|
5000
5590
|
/**
|
|
5001
5591
|
* The totalElements property
|
|
5002
5592
|
*/
|
|
5003
5593
|
totalElements?: number | null;
|
|
5004
5594
|
}
|
|
5005
|
-
type FindPostResponse_object$
|
|
5595
|
+
type FindPostResponse_object$p = (typeof FindPostResponse_objectObject$p)[keyof typeof FindPostResponse_objectObject$p];
|
|
5006
5596
|
/**
|
|
5007
5597
|
* Builds and executes requests for operations under /v1/audit-logs/find
|
|
5008
5598
|
*/
|
|
5009
|
-
interface FindRequestBuilder$
|
|
5599
|
+
interface FindRequestBuilder$p extends BaseRequestBuilder<FindRequestBuilder$p> {
|
|
5010
5600
|
/**
|
|
5011
5601
|
* Find a list of Audit Log
|
|
5012
5602
|
* @param body The request body
|
|
@@ -5014,31 +5604,31 @@ interface FindRequestBuilder$m extends BaseRequestBuilder<FindRequestBuilder$m>
|
|
|
5014
5604
|
* @returns {Promise<FindPostResponse>}
|
|
5015
5605
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5016
5606
|
*/
|
|
5017
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5607
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$p> | undefined): Promise<FindPostResponse$p | undefined>;
|
|
5018
5608
|
/**
|
|
5019
5609
|
* Find a list of Audit Log
|
|
5020
5610
|
* @param body The request body
|
|
5021
5611
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5022
5612
|
* @returns {RequestInformation}
|
|
5023
5613
|
*/
|
|
5024
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5614
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$p> | undefined): RequestInformation;
|
|
5025
5615
|
}
|
|
5026
5616
|
/**
|
|
5027
5617
|
* Find a list of Audit Log
|
|
5028
5618
|
*/
|
|
5029
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
5619
|
+
interface FindRequestBuilderPostQueryParameters$p {
|
|
5030
5620
|
page?: number;
|
|
5031
5621
|
size?: number;
|
|
5032
5622
|
sort?: string;
|
|
5033
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
5623
|
+
sortOrder?: PostSortOrderQueryParameterType$p;
|
|
5034
5624
|
}
|
|
5035
|
-
type PostSortOrderQueryParameterType$
|
|
5036
|
-
declare const FindPostResponse_objectObject$
|
|
5625
|
+
type PostSortOrderQueryParameterType$p = (typeof PostSortOrderQueryParameterTypeObject$p)[keyof typeof PostSortOrderQueryParameterTypeObject$p];
|
|
5626
|
+
declare const FindPostResponse_objectObject$p: {
|
|
5037
5627
|
readonly List: "list";
|
|
5038
5628
|
};
|
|
5039
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5040
|
-
readonly DESC: "DESC";
|
|
5629
|
+
declare const PostSortOrderQueryParameterTypeObject$p: {
|
|
5041
5630
|
readonly ASC: "ASC";
|
|
5631
|
+
readonly DESC: "DESC";
|
|
5042
5632
|
};
|
|
5043
5633
|
|
|
5044
5634
|
interface AuditLogsGetResponse extends AdditionalDataHolder, Parsable {
|
|
@@ -5067,7 +5657,7 @@ interface AuditLogsRequestBuilder extends BaseRequestBuilder<AuditLogsRequestBui
|
|
|
5067
5657
|
/**
|
|
5068
5658
|
* The find property
|
|
5069
5659
|
*/
|
|
5070
|
-
get find(): FindRequestBuilder$
|
|
5660
|
+
get find(): FindRequestBuilder$p;
|
|
5071
5661
|
/**
|
|
5072
5662
|
* Get a list of Audit Log
|
|
5073
5663
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -5089,18 +5679,18 @@ interface AuditLogsRequestBuilderGetQueryParameters {
|
|
|
5089
5679
|
page?: number;
|
|
5090
5680
|
size?: number;
|
|
5091
5681
|
sort?: string;
|
|
5092
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5682
|
+
sortOrder?: GetSortOrderQueryParameterType$t;
|
|
5093
5683
|
}
|
|
5094
|
-
type GetSortOrderQueryParameterType$
|
|
5684
|
+
type GetSortOrderQueryParameterType$t = (typeof GetSortOrderQueryParameterTypeObject$t)[keyof typeof GetSortOrderQueryParameterTypeObject$t];
|
|
5095
5685
|
declare const AuditLogsGetResponse_objectObject: {
|
|
5096
5686
|
readonly List: "list";
|
|
5097
5687
|
};
|
|
5098
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5099
|
-
readonly DESC: "DESC";
|
|
5688
|
+
declare const GetSortOrderQueryParameterTypeObject$t: {
|
|
5100
5689
|
readonly ASC: "ASC";
|
|
5690
|
+
readonly DESC: "DESC";
|
|
5101
5691
|
};
|
|
5102
5692
|
|
|
5103
|
-
interface FindPostResponse$
|
|
5693
|
+
interface FindPostResponse$o extends AdditionalDataHolder, Parsable {
|
|
5104
5694
|
/**
|
|
5105
5695
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5106
5696
|
*/
|
|
@@ -5112,17 +5702,17 @@ interface FindPostResponse$l extends AdditionalDataHolder, Parsable {
|
|
|
5112
5702
|
/**
|
|
5113
5703
|
* The object property
|
|
5114
5704
|
*/
|
|
5115
|
-
object?: FindPostResponse_object$
|
|
5705
|
+
object?: FindPostResponse_object$o | null;
|
|
5116
5706
|
/**
|
|
5117
5707
|
* The totalElements property
|
|
5118
5708
|
*/
|
|
5119
5709
|
totalElements?: number | null;
|
|
5120
5710
|
}
|
|
5121
|
-
type FindPostResponse_object$
|
|
5711
|
+
type FindPostResponse_object$o = (typeof FindPostResponse_objectObject$o)[keyof typeof FindPostResponse_objectObject$o];
|
|
5122
5712
|
/**
|
|
5123
5713
|
* Builds and executes requests for operations under /v1/comment-threads/find
|
|
5124
5714
|
*/
|
|
5125
|
-
interface FindRequestBuilder$
|
|
5715
|
+
interface FindRequestBuilder$o extends BaseRequestBuilder<FindRequestBuilder$o> {
|
|
5126
5716
|
/**
|
|
5127
5717
|
* Find a list of Comment Thread
|
|
5128
5718
|
* @param body The request body
|
|
@@ -5130,31 +5720,31 @@ interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l>
|
|
|
5130
5720
|
* @returns {Promise<FindPostResponse>}
|
|
5131
5721
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5132
5722
|
*/
|
|
5133
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5723
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$o> | undefined): Promise<FindPostResponse$o | undefined>;
|
|
5134
5724
|
/**
|
|
5135
5725
|
* Find a list of Comment Thread
|
|
5136
5726
|
* @param body The request body
|
|
5137
5727
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5138
5728
|
* @returns {RequestInformation}
|
|
5139
5729
|
*/
|
|
5140
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5730
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$o> | undefined): RequestInformation;
|
|
5141
5731
|
}
|
|
5142
5732
|
/**
|
|
5143
5733
|
* Find a list of Comment Thread
|
|
5144
5734
|
*/
|
|
5145
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
5735
|
+
interface FindRequestBuilderPostQueryParameters$o {
|
|
5146
5736
|
page?: number;
|
|
5147
5737
|
size?: number;
|
|
5148
5738
|
sort?: string;
|
|
5149
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
5739
|
+
sortOrder?: PostSortOrderQueryParameterType$o;
|
|
5150
5740
|
}
|
|
5151
|
-
type PostSortOrderQueryParameterType$
|
|
5152
|
-
declare const FindPostResponse_objectObject$
|
|
5741
|
+
type PostSortOrderQueryParameterType$o = (typeof PostSortOrderQueryParameterTypeObject$o)[keyof typeof PostSortOrderQueryParameterTypeObject$o];
|
|
5742
|
+
declare const FindPostResponse_objectObject$o: {
|
|
5153
5743
|
readonly List: "list";
|
|
5154
5744
|
};
|
|
5155
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5156
|
-
readonly DESC: "DESC";
|
|
5745
|
+
declare const PostSortOrderQueryParameterTypeObject$o: {
|
|
5157
5746
|
readonly ASC: "ASC";
|
|
5747
|
+
readonly DESC: "DESC";
|
|
5158
5748
|
};
|
|
5159
5749
|
|
|
5160
5750
|
/**
|
|
@@ -5241,7 +5831,7 @@ interface CommentThreadsRequestBuilder extends BaseRequestBuilder<CommentThreads
|
|
|
5241
5831
|
/**
|
|
5242
5832
|
* The find property
|
|
5243
5833
|
*/
|
|
5244
|
-
get find(): FindRequestBuilder$
|
|
5834
|
+
get find(): FindRequestBuilder$o;
|
|
5245
5835
|
/**
|
|
5246
5836
|
* Gets an item from the ApiSdk.v1.commentThreads.item collection
|
|
5247
5837
|
* @param id Unique identifier of the item
|
|
@@ -5284,18 +5874,18 @@ interface CommentThreadsRequestBuilderGetQueryParameters {
|
|
|
5284
5874
|
page?: number;
|
|
5285
5875
|
size?: number;
|
|
5286
5876
|
sort?: string;
|
|
5287
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5877
|
+
sortOrder?: GetSortOrderQueryParameterType$s;
|
|
5288
5878
|
}
|
|
5289
|
-
type GetSortOrderQueryParameterType$
|
|
5879
|
+
type GetSortOrderQueryParameterType$s = (typeof GetSortOrderQueryParameterTypeObject$s)[keyof typeof GetSortOrderQueryParameterTypeObject$s];
|
|
5290
5880
|
declare const CommentThreadsGetResponse_objectObject: {
|
|
5291
5881
|
readonly List: "list";
|
|
5292
5882
|
};
|
|
5293
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5294
|
-
readonly DESC: "DESC";
|
|
5883
|
+
declare const GetSortOrderQueryParameterTypeObject$s: {
|
|
5295
5884
|
readonly ASC: "ASC";
|
|
5885
|
+
readonly DESC: "DESC";
|
|
5296
5886
|
};
|
|
5297
5887
|
|
|
5298
|
-
interface FindPostResponse$
|
|
5888
|
+
interface FindPostResponse$n extends AdditionalDataHolder, Parsable {
|
|
5299
5889
|
/**
|
|
5300
5890
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5301
5891
|
*/
|
|
@@ -5307,17 +5897,17 @@ interface FindPostResponse$k extends AdditionalDataHolder, Parsable {
|
|
|
5307
5897
|
/**
|
|
5308
5898
|
* The object property
|
|
5309
5899
|
*/
|
|
5310
|
-
object?: FindPostResponse_object$
|
|
5900
|
+
object?: FindPostResponse_object$n | null;
|
|
5311
5901
|
/**
|
|
5312
5902
|
* The totalElements property
|
|
5313
5903
|
*/
|
|
5314
5904
|
totalElements?: number | null;
|
|
5315
5905
|
}
|
|
5316
|
-
type FindPostResponse_object$
|
|
5906
|
+
type FindPostResponse_object$n = (typeof FindPostResponse_objectObject$n)[keyof typeof FindPostResponse_objectObject$n];
|
|
5317
5907
|
/**
|
|
5318
5908
|
* Builds and executes requests for operations under /v1/comment-thread-subscribers/find
|
|
5319
5909
|
*/
|
|
5320
|
-
interface FindRequestBuilder$
|
|
5910
|
+
interface FindRequestBuilder$n extends BaseRequestBuilder<FindRequestBuilder$n> {
|
|
5321
5911
|
/**
|
|
5322
5912
|
* Find a list of Comment Thread Subscriber
|
|
5323
5913
|
* @param body The request body
|
|
@@ -5325,31 +5915,31 @@ interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k>
|
|
|
5325
5915
|
* @returns {Promise<FindPostResponse>}
|
|
5326
5916
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5327
5917
|
*/
|
|
5328
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5918
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$n> | undefined): Promise<FindPostResponse$n | undefined>;
|
|
5329
5919
|
/**
|
|
5330
5920
|
* Find a list of Comment Thread Subscriber
|
|
5331
5921
|
* @param body The request body
|
|
5332
5922
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5333
5923
|
* @returns {RequestInformation}
|
|
5334
5924
|
*/
|
|
5335
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5925
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$n> | undefined): RequestInformation;
|
|
5336
5926
|
}
|
|
5337
5927
|
/**
|
|
5338
5928
|
* Find a list of Comment Thread Subscriber
|
|
5339
5929
|
*/
|
|
5340
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
5930
|
+
interface FindRequestBuilderPostQueryParameters$n {
|
|
5341
5931
|
page?: number;
|
|
5342
5932
|
size?: number;
|
|
5343
5933
|
sort?: string;
|
|
5344
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
5934
|
+
sortOrder?: PostSortOrderQueryParameterType$n;
|
|
5345
5935
|
}
|
|
5346
|
-
type PostSortOrderQueryParameterType$
|
|
5347
|
-
declare const FindPostResponse_objectObject$
|
|
5936
|
+
type PostSortOrderQueryParameterType$n = (typeof PostSortOrderQueryParameterTypeObject$n)[keyof typeof PostSortOrderQueryParameterTypeObject$n];
|
|
5937
|
+
declare const FindPostResponse_objectObject$n: {
|
|
5348
5938
|
readonly List: "list";
|
|
5349
5939
|
};
|
|
5350
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5351
|
-
readonly DESC: "DESC";
|
|
5940
|
+
declare const PostSortOrderQueryParameterTypeObject$n: {
|
|
5352
5941
|
readonly ASC: "ASC";
|
|
5942
|
+
readonly DESC: "DESC";
|
|
5353
5943
|
};
|
|
5354
5944
|
|
|
5355
5945
|
/**
|
|
@@ -5397,7 +5987,7 @@ interface CommentThreadSubscribersRequestBuilder extends BaseRequestBuilder<Comm
|
|
|
5397
5987
|
/**
|
|
5398
5988
|
* The find property
|
|
5399
5989
|
*/
|
|
5400
|
-
get find(): FindRequestBuilder$
|
|
5990
|
+
get find(): FindRequestBuilder$n;
|
|
5401
5991
|
/**
|
|
5402
5992
|
* Gets an item from the ApiSdk.v1.commentThreadSubscribers.item collection
|
|
5403
5993
|
* @param id Unique identifier of the item
|
|
@@ -5425,15 +6015,15 @@ interface CommentThreadSubscribersRequestBuilderGetQueryParameters {
|
|
|
5425
6015
|
page?: number;
|
|
5426
6016
|
size?: number;
|
|
5427
6017
|
sort?: string;
|
|
5428
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6018
|
+
sortOrder?: GetSortOrderQueryParameterType$r;
|
|
5429
6019
|
}
|
|
5430
|
-
type GetSortOrderQueryParameterType$
|
|
6020
|
+
type GetSortOrderQueryParameterType$r = (typeof GetSortOrderQueryParameterTypeObject$r)[keyof typeof GetSortOrderQueryParameterTypeObject$r];
|
|
5431
6021
|
declare const CommentThreadSubscribersGetResponse_objectObject: {
|
|
5432
6022
|
readonly List: "list";
|
|
5433
6023
|
};
|
|
5434
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5435
|
-
readonly DESC: "DESC";
|
|
6024
|
+
declare const GetSortOrderQueryParameterTypeObject$r: {
|
|
5436
6025
|
readonly ASC: "ASC";
|
|
6026
|
+
readonly DESC: "DESC";
|
|
5437
6027
|
};
|
|
5438
6028
|
|
|
5439
6029
|
/**
|
|
@@ -5520,18 +6110,18 @@ interface FilesRequestBuilderGetQueryParameters {
|
|
|
5520
6110
|
page?: number;
|
|
5521
6111
|
size?: number;
|
|
5522
6112
|
sort?: string;
|
|
5523
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6113
|
+
sortOrder?: GetSortOrderQueryParameterType$q;
|
|
5524
6114
|
}
|
|
5525
|
-
type GetSortOrderQueryParameterType$
|
|
6115
|
+
type GetSortOrderQueryParameterType$q = (typeof GetSortOrderQueryParameterTypeObject$q)[keyof typeof GetSortOrderQueryParameterTypeObject$q];
|
|
5526
6116
|
declare const FilesGetResponse_objectObject: {
|
|
5527
6117
|
readonly List: "list";
|
|
5528
6118
|
};
|
|
5529
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5530
|
-
readonly DESC: "DESC";
|
|
6119
|
+
declare const GetSortOrderQueryParameterTypeObject$q: {
|
|
5531
6120
|
readonly ASC: "ASC";
|
|
6121
|
+
readonly DESC: "DESC";
|
|
5532
6122
|
};
|
|
5533
6123
|
|
|
5534
|
-
interface FindPostResponse$
|
|
6124
|
+
interface FindPostResponse$m extends AdditionalDataHolder, Parsable {
|
|
5535
6125
|
/**
|
|
5536
6126
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5537
6127
|
*/
|
|
@@ -5543,17 +6133,17 @@ interface FindPostResponse$j extends AdditionalDataHolder, Parsable {
|
|
|
5543
6133
|
/**
|
|
5544
6134
|
* The object property
|
|
5545
6135
|
*/
|
|
5546
|
-
object?: FindPostResponse_object$
|
|
6136
|
+
object?: FindPostResponse_object$m | null;
|
|
5547
6137
|
/**
|
|
5548
6138
|
* The totalElements property
|
|
5549
6139
|
*/
|
|
5550
6140
|
totalElements?: number | null;
|
|
5551
6141
|
}
|
|
5552
|
-
type FindPostResponse_object$
|
|
6142
|
+
type FindPostResponse_object$m = (typeof FindPostResponse_objectObject$m)[keyof typeof FindPostResponse_objectObject$m];
|
|
5553
6143
|
/**
|
|
5554
6144
|
* Builds and executes requests for operations under /v1/data-factory/job-executions/find
|
|
5555
6145
|
*/
|
|
5556
|
-
interface FindRequestBuilder$
|
|
6146
|
+
interface FindRequestBuilder$m extends BaseRequestBuilder<FindRequestBuilder$m> {
|
|
5557
6147
|
/**
|
|
5558
6148
|
* (Not implemented) - Find a list of Job Execution
|
|
5559
6149
|
* @param body The request body
|
|
@@ -5561,31 +6151,31 @@ interface FindRequestBuilder$j extends BaseRequestBuilder<FindRequestBuilder$j>
|
|
|
5561
6151
|
* @returns {Promise<FindPostResponse>}
|
|
5562
6152
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5563
6153
|
*/
|
|
5564
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6154
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$m> | undefined): Promise<FindPostResponse$m | undefined>;
|
|
5565
6155
|
/**
|
|
5566
6156
|
* (Not implemented) - Find a list of Job Execution
|
|
5567
6157
|
* @param body The request body
|
|
5568
6158
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5569
6159
|
* @returns {RequestInformation}
|
|
5570
6160
|
*/
|
|
5571
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6161
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$m> | undefined): RequestInformation;
|
|
5572
6162
|
}
|
|
5573
6163
|
/**
|
|
5574
6164
|
* (Not implemented) - Find a list of Job Execution
|
|
5575
6165
|
*/
|
|
5576
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
6166
|
+
interface FindRequestBuilderPostQueryParameters$m {
|
|
5577
6167
|
page?: number;
|
|
5578
6168
|
size?: number;
|
|
5579
6169
|
sort?: string;
|
|
5580
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
6170
|
+
sortOrder?: PostSortOrderQueryParameterType$m;
|
|
5581
6171
|
}
|
|
5582
|
-
type PostSortOrderQueryParameterType$
|
|
5583
|
-
declare const FindPostResponse_objectObject$
|
|
6172
|
+
type PostSortOrderQueryParameterType$m = (typeof PostSortOrderQueryParameterTypeObject$m)[keyof typeof PostSortOrderQueryParameterTypeObject$m];
|
|
6173
|
+
declare const FindPostResponse_objectObject$m: {
|
|
5584
6174
|
readonly List: "list";
|
|
5585
6175
|
};
|
|
5586
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5587
|
-
readonly DESC: "DESC";
|
|
6176
|
+
declare const PostSortOrderQueryParameterTypeObject$m: {
|
|
5588
6177
|
readonly ASC: "ASC";
|
|
6178
|
+
readonly DESC: "DESC";
|
|
5589
6179
|
};
|
|
5590
6180
|
|
|
5591
6181
|
/**
|
|
@@ -5607,7 +6197,7 @@ interface JobExecutionsItemRequestBuilder extends BaseRequestBuilder<JobExecutio
|
|
|
5607
6197
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5608
6198
|
}
|
|
5609
6199
|
|
|
5610
|
-
type GetSortOrderQueryParameterType$
|
|
6200
|
+
type GetSortOrderQueryParameterType$p = (typeof GetSortOrderQueryParameterTypeObject$p)[keyof typeof GetSortOrderQueryParameterTypeObject$p];
|
|
5611
6201
|
interface JobExecutionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5612
6202
|
/**
|
|
5613
6203
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -5634,7 +6224,7 @@ interface JobExecutionsRequestBuilder extends BaseRequestBuilder<JobExecutionsRe
|
|
|
5634
6224
|
/**
|
|
5635
6225
|
* The find property
|
|
5636
6226
|
*/
|
|
5637
|
-
get find(): FindRequestBuilder$
|
|
6227
|
+
get find(): FindRequestBuilder$m;
|
|
5638
6228
|
/**
|
|
5639
6229
|
* Gets an item from the ApiSdk.v1.dataFactory.jobExecutions.item collection
|
|
5640
6230
|
* @param id Unique identifier of the item
|
|
@@ -5677,17 +6267,17 @@ interface JobExecutionsRequestBuilderGetQueryParameters {
|
|
|
5677
6267
|
page?: number;
|
|
5678
6268
|
size?: number;
|
|
5679
6269
|
sort?: string;
|
|
5680
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6270
|
+
sortOrder?: GetSortOrderQueryParameterType$p;
|
|
5681
6271
|
}
|
|
5682
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5683
|
-
readonly DESC: "DESC";
|
|
6272
|
+
declare const GetSortOrderQueryParameterTypeObject$p: {
|
|
5684
6273
|
readonly ASC: "ASC";
|
|
6274
|
+
readonly DESC: "DESC";
|
|
5685
6275
|
};
|
|
5686
6276
|
declare const JobExecutionsGetResponse_objectObject: {
|
|
5687
6277
|
readonly List: "list";
|
|
5688
6278
|
};
|
|
5689
6279
|
|
|
5690
|
-
interface FindPostResponse$
|
|
6280
|
+
interface FindPostResponse$l extends AdditionalDataHolder, Parsable {
|
|
5691
6281
|
/**
|
|
5692
6282
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5693
6283
|
*/
|
|
@@ -5699,17 +6289,17 @@ interface FindPostResponse$i extends AdditionalDataHolder, Parsable {
|
|
|
5699
6289
|
/**
|
|
5700
6290
|
* The object property
|
|
5701
6291
|
*/
|
|
5702
|
-
object?: FindPostResponse_object$
|
|
6292
|
+
object?: FindPostResponse_object$l | null;
|
|
5703
6293
|
/**
|
|
5704
6294
|
* The totalElements property
|
|
5705
6295
|
*/
|
|
5706
6296
|
totalElements?: number | null;
|
|
5707
6297
|
}
|
|
5708
|
-
type FindPostResponse_object$
|
|
6298
|
+
type FindPostResponse_object$l = (typeof FindPostResponse_objectObject$l)[keyof typeof FindPostResponse_objectObject$l];
|
|
5709
6299
|
/**
|
|
5710
6300
|
* Builds and executes requests for operations under /v1/data-factory/jobs/find
|
|
5711
6301
|
*/
|
|
5712
|
-
interface FindRequestBuilder$
|
|
6302
|
+
interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l> {
|
|
5713
6303
|
/**
|
|
5714
6304
|
* Find a list of Job
|
|
5715
6305
|
* @param body The request body
|
|
@@ -5717,31 +6307,31 @@ interface FindRequestBuilder$i extends BaseRequestBuilder<FindRequestBuilder$i>
|
|
|
5717
6307
|
* @returns {Promise<FindPostResponse>}
|
|
5718
6308
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5719
6309
|
*/
|
|
5720
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6310
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$l> | undefined): Promise<FindPostResponse$l | undefined>;
|
|
5721
6311
|
/**
|
|
5722
6312
|
* Find a list of Job
|
|
5723
6313
|
* @param body The request body
|
|
5724
6314
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5725
6315
|
* @returns {RequestInformation}
|
|
5726
6316
|
*/
|
|
5727
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6317
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$l> | undefined): RequestInformation;
|
|
5728
6318
|
}
|
|
5729
6319
|
/**
|
|
5730
6320
|
* Find a list of Job
|
|
5731
6321
|
*/
|
|
5732
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
6322
|
+
interface FindRequestBuilderPostQueryParameters$l {
|
|
5733
6323
|
page?: number;
|
|
5734
6324
|
size?: number;
|
|
5735
6325
|
sort?: string;
|
|
5736
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
6326
|
+
sortOrder?: PostSortOrderQueryParameterType$l;
|
|
5737
6327
|
}
|
|
5738
|
-
type PostSortOrderQueryParameterType$
|
|
5739
|
-
declare const FindPostResponse_objectObject$
|
|
6328
|
+
type PostSortOrderQueryParameterType$l = (typeof PostSortOrderQueryParameterTypeObject$l)[keyof typeof PostSortOrderQueryParameterTypeObject$l];
|
|
6329
|
+
declare const FindPostResponse_objectObject$l: {
|
|
5740
6330
|
readonly List: "list";
|
|
5741
6331
|
};
|
|
5742
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5743
|
-
readonly DESC: "DESC";
|
|
6332
|
+
declare const PostSortOrderQueryParameterTypeObject$l: {
|
|
5744
6333
|
readonly ASC: "ASC";
|
|
6334
|
+
readonly DESC: "DESC";
|
|
5745
6335
|
};
|
|
5746
6336
|
|
|
5747
6337
|
/**
|
|
@@ -5803,7 +6393,7 @@ interface JobsItemRequestBuilder extends BaseRequestBuilder<JobsItemRequestBuild
|
|
|
5803
6393
|
toPutRequestInformation(body: UpdateJobDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5804
6394
|
}
|
|
5805
6395
|
|
|
5806
|
-
type GetSortOrderQueryParameterType$
|
|
6396
|
+
type GetSortOrderQueryParameterType$o = (typeof GetSortOrderQueryParameterTypeObject$o)[keyof typeof GetSortOrderQueryParameterTypeObject$o];
|
|
5807
6397
|
interface JobsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5808
6398
|
/**
|
|
5809
6399
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -5830,7 +6420,7 @@ interface JobsRequestBuilder extends BaseRequestBuilder<JobsRequestBuilder> {
|
|
|
5830
6420
|
/**
|
|
5831
6421
|
* The find property
|
|
5832
6422
|
*/
|
|
5833
|
-
get find(): FindRequestBuilder$
|
|
6423
|
+
get find(): FindRequestBuilder$l;
|
|
5834
6424
|
/**
|
|
5835
6425
|
* Gets an item from the ApiSdk.v1.dataFactory.jobs.item collection
|
|
5836
6426
|
* @param id Unique identifier of the item
|
|
@@ -5873,11 +6463,11 @@ interface JobsRequestBuilderGetQueryParameters {
|
|
|
5873
6463
|
page?: number;
|
|
5874
6464
|
size?: number;
|
|
5875
6465
|
sort?: string;
|
|
5876
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6466
|
+
sortOrder?: GetSortOrderQueryParameterType$o;
|
|
5877
6467
|
}
|
|
5878
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5879
|
-
readonly DESC: "DESC";
|
|
6468
|
+
declare const GetSortOrderQueryParameterTypeObject$o: {
|
|
5880
6469
|
readonly ASC: "ASC";
|
|
6470
|
+
readonly DESC: "DESC";
|
|
5881
6471
|
};
|
|
5882
6472
|
declare const JobsGetResponse_objectObject: {
|
|
5883
6473
|
readonly List: "list";
|
|
@@ -5902,7 +6492,7 @@ interface PipelinesItemRequestBuilder extends BaseRequestBuilder<PipelinesItemRe
|
|
|
5902
6492
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5903
6493
|
}
|
|
5904
6494
|
|
|
5905
|
-
type GetSortOrderQueryParameterType$
|
|
6495
|
+
type GetSortOrderQueryParameterType$n = (typeof GetSortOrderQueryParameterTypeObject$n)[keyof typeof GetSortOrderQueryParameterTypeObject$n];
|
|
5906
6496
|
interface PipelinesGetResponse extends AdditionalDataHolder, Parsable {
|
|
5907
6497
|
/**
|
|
5908
6498
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -5953,17 +6543,17 @@ interface PipelinesRequestBuilderGetQueryParameters {
|
|
|
5953
6543
|
page?: number;
|
|
5954
6544
|
size?: number;
|
|
5955
6545
|
sort?: string;
|
|
5956
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6546
|
+
sortOrder?: GetSortOrderQueryParameterType$n;
|
|
5957
6547
|
}
|
|
5958
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5959
|
-
readonly DESC: "DESC";
|
|
6548
|
+
declare const GetSortOrderQueryParameterTypeObject$n: {
|
|
5960
6549
|
readonly ASC: "ASC";
|
|
6550
|
+
readonly DESC: "DESC";
|
|
5961
6551
|
};
|
|
5962
6552
|
declare const PipelinesGetResponse_objectObject: {
|
|
5963
6553
|
readonly List: "list";
|
|
5964
6554
|
};
|
|
5965
6555
|
|
|
5966
|
-
interface FindPostResponse$
|
|
6556
|
+
interface FindPostResponse$k extends AdditionalDataHolder, Parsable {
|
|
5967
6557
|
/**
|
|
5968
6558
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5969
6559
|
*/
|
|
@@ -5975,17 +6565,17 @@ interface FindPostResponse$h extends AdditionalDataHolder, Parsable {
|
|
|
5975
6565
|
/**
|
|
5976
6566
|
* The object property
|
|
5977
6567
|
*/
|
|
5978
|
-
object?: FindPostResponse_object$
|
|
6568
|
+
object?: FindPostResponse_object$k | null;
|
|
5979
6569
|
/**
|
|
5980
6570
|
* The totalElements property
|
|
5981
6571
|
*/
|
|
5982
6572
|
totalElements?: number | null;
|
|
5983
6573
|
}
|
|
5984
|
-
type FindPostResponse_object$
|
|
6574
|
+
type FindPostResponse_object$k = (typeof FindPostResponse_objectObject$k)[keyof typeof FindPostResponse_objectObject$k];
|
|
5985
6575
|
/**
|
|
5986
6576
|
* Builds and executes requests for operations under /v1/data-factory/projects/find
|
|
5987
6577
|
*/
|
|
5988
|
-
interface FindRequestBuilder$
|
|
6578
|
+
interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k> {
|
|
5989
6579
|
/**
|
|
5990
6580
|
* Find a list of Project
|
|
5991
6581
|
* @param body The request body
|
|
@@ -5993,31 +6583,31 @@ interface FindRequestBuilder$h extends BaseRequestBuilder<FindRequestBuilder$h>
|
|
|
5993
6583
|
* @returns {Promise<FindPostResponse>}
|
|
5994
6584
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5995
6585
|
*/
|
|
5996
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6586
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$k> | undefined): Promise<FindPostResponse$k | undefined>;
|
|
5997
6587
|
/**
|
|
5998
6588
|
* Find a list of Project
|
|
5999
6589
|
* @param body The request body
|
|
6000
6590
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6001
6591
|
* @returns {RequestInformation}
|
|
6002
6592
|
*/
|
|
6003
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6593
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$k> | undefined): RequestInformation;
|
|
6004
6594
|
}
|
|
6005
6595
|
/**
|
|
6006
6596
|
* Find a list of Project
|
|
6007
6597
|
*/
|
|
6008
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
6598
|
+
interface FindRequestBuilderPostQueryParameters$k {
|
|
6009
6599
|
page?: number;
|
|
6010
6600
|
size?: number;
|
|
6011
6601
|
sort?: string;
|
|
6012
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
6602
|
+
sortOrder?: PostSortOrderQueryParameterType$k;
|
|
6013
6603
|
}
|
|
6014
|
-
type PostSortOrderQueryParameterType$
|
|
6015
|
-
declare const FindPostResponse_objectObject$
|
|
6604
|
+
type PostSortOrderQueryParameterType$k = (typeof PostSortOrderQueryParameterTypeObject$k)[keyof typeof PostSortOrderQueryParameterTypeObject$k];
|
|
6605
|
+
declare const FindPostResponse_objectObject$k: {
|
|
6016
6606
|
readonly List: "list";
|
|
6017
6607
|
};
|
|
6018
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
6019
|
-
readonly DESC: "DESC";
|
|
6608
|
+
declare const PostSortOrderQueryParameterTypeObject$k: {
|
|
6020
6609
|
readonly ASC: "ASC";
|
|
6610
|
+
readonly DESC: "DESC";
|
|
6021
6611
|
};
|
|
6022
6612
|
|
|
6023
6613
|
/**
|
|
@@ -6081,7 +6671,7 @@ interface ProjectsItemRequestBuilder extends BaseRequestBuilder<ProjectsItemRequ
|
|
|
6081
6671
|
toPutRequestInformation(body: ProjectDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6082
6672
|
}
|
|
6083
6673
|
|
|
6084
|
-
type GetSortOrderQueryParameterType$
|
|
6674
|
+
type GetSortOrderQueryParameterType$m = (typeof GetSortOrderQueryParameterTypeObject$m)[keyof typeof GetSortOrderQueryParameterTypeObject$m];
|
|
6085
6675
|
interface ProjectsGetResponse extends AdditionalDataHolder, Parsable {
|
|
6086
6676
|
/**
|
|
6087
6677
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -6108,7 +6698,7 @@ interface ProjectsRequestBuilder extends BaseRequestBuilder<ProjectsRequestBuild
|
|
|
6108
6698
|
/**
|
|
6109
6699
|
* The find property
|
|
6110
6700
|
*/
|
|
6111
|
-
get find(): FindRequestBuilder$
|
|
6701
|
+
get find(): FindRequestBuilder$k;
|
|
6112
6702
|
/**
|
|
6113
6703
|
* Gets an item from the ApiSdk.v1.dataFactory.projects.item collection
|
|
6114
6704
|
* @param id Unique identifier of the item
|
|
@@ -6151,11 +6741,11 @@ interface ProjectsRequestBuilderGetQueryParameters {
|
|
|
6151
6741
|
page?: number;
|
|
6152
6742
|
size?: number;
|
|
6153
6743
|
sort?: string;
|
|
6154
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6744
|
+
sortOrder?: GetSortOrderQueryParameterType$m;
|
|
6155
6745
|
}
|
|
6156
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
6157
|
-
readonly DESC: "DESC";
|
|
6746
|
+
declare const GetSortOrderQueryParameterTypeObject$m: {
|
|
6158
6747
|
readonly ASC: "ASC";
|
|
6748
|
+
readonly DESC: "DESC";
|
|
6159
6749
|
};
|
|
6160
6750
|
declare const ProjectsGetResponse_objectObject: {
|
|
6161
6751
|
readonly List: "list";
|
|
@@ -6276,7 +6866,7 @@ interface TasksItemRequestBuilder extends BaseRequestBuilder<TasksItemRequestBui
|
|
|
6276
6866
|
toPutRequestInformation(body: UpdateTaskDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6277
6867
|
}
|
|
6278
6868
|
|
|
6279
|
-
type GetSortOrderQueryParameterType$
|
|
6869
|
+
type GetSortOrderQueryParameterType$l = (typeof GetSortOrderQueryParameterTypeObject$l)[keyof typeof GetSortOrderQueryParameterTypeObject$l];
|
|
6280
6870
|
interface TasksGetResponse extends AdditionalDataHolder, Parsable {
|
|
6281
6871
|
/**
|
|
6282
6872
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -6342,17 +6932,17 @@ interface TasksRequestBuilderGetQueryParameters {
|
|
|
6342
6932
|
page?: number;
|
|
6343
6933
|
size?: number;
|
|
6344
6934
|
sort?: string;
|
|
6345
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6935
|
+
sortOrder?: GetSortOrderQueryParameterType$l;
|
|
6346
6936
|
}
|
|
6347
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
6348
|
-
readonly DESC: "DESC";
|
|
6937
|
+
declare const GetSortOrderQueryParameterTypeObject$l: {
|
|
6349
6938
|
readonly ASC: "ASC";
|
|
6939
|
+
readonly DESC: "DESC";
|
|
6350
6940
|
};
|
|
6351
6941
|
declare const TasksGetResponse_objectObject: {
|
|
6352
6942
|
readonly List: "list";
|
|
6353
6943
|
};
|
|
6354
6944
|
|
|
6355
|
-
interface FindPostResponse$
|
|
6945
|
+
interface FindPostResponse$j extends AdditionalDataHolder, Parsable {
|
|
6356
6946
|
/**
|
|
6357
6947
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6358
6948
|
*/
|
|
@@ -6364,17 +6954,17 @@ interface FindPostResponse$g extends AdditionalDataHolder, Parsable {
|
|
|
6364
6954
|
/**
|
|
6365
6955
|
* The object property
|
|
6366
6956
|
*/
|
|
6367
|
-
object?: FindPostResponse_object$
|
|
6957
|
+
object?: FindPostResponse_object$j | null;
|
|
6368
6958
|
/**
|
|
6369
6959
|
* The totalElements property
|
|
6370
6960
|
*/
|
|
6371
6961
|
totalElements?: number | null;
|
|
6372
6962
|
}
|
|
6373
|
-
type FindPostResponse_object$
|
|
6963
|
+
type FindPostResponse_object$j = (typeof FindPostResponse_objectObject$j)[keyof typeof FindPostResponse_objectObject$j];
|
|
6374
6964
|
/**
|
|
6375
6965
|
* Builds and executes requests for operations under /v1/data-factory/variables/find
|
|
6376
6966
|
*/
|
|
6377
|
-
interface FindRequestBuilder$
|
|
6967
|
+
interface FindRequestBuilder$j extends BaseRequestBuilder<FindRequestBuilder$j> {
|
|
6378
6968
|
/**
|
|
6379
6969
|
* Find a list of Variable
|
|
6380
6970
|
* @param body The request body
|
|
@@ -6382,31 +6972,31 @@ interface FindRequestBuilder$g extends BaseRequestBuilder<FindRequestBuilder$g>
|
|
|
6382
6972
|
* @returns {Promise<FindPostResponse>}
|
|
6383
6973
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
6384
6974
|
*/
|
|
6385
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6975
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$j> | undefined): Promise<FindPostResponse$j | undefined>;
|
|
6386
6976
|
/**
|
|
6387
6977
|
* Find a list of Variable
|
|
6388
6978
|
* @param body The request body
|
|
6389
6979
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6390
6980
|
* @returns {RequestInformation}
|
|
6391
6981
|
*/
|
|
6392
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6982
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$j> | undefined): RequestInformation;
|
|
6393
6983
|
}
|
|
6394
6984
|
/**
|
|
6395
6985
|
* Find a list of Variable
|
|
6396
6986
|
*/
|
|
6397
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
6987
|
+
interface FindRequestBuilderPostQueryParameters$j {
|
|
6398
6988
|
page?: number;
|
|
6399
6989
|
size?: number;
|
|
6400
6990
|
sort?: string;
|
|
6401
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
6991
|
+
sortOrder?: PostSortOrderQueryParameterType$j;
|
|
6402
6992
|
}
|
|
6403
|
-
type PostSortOrderQueryParameterType$
|
|
6404
|
-
declare const FindPostResponse_objectObject$
|
|
6993
|
+
type PostSortOrderQueryParameterType$j = (typeof PostSortOrderQueryParameterTypeObject$j)[keyof typeof PostSortOrderQueryParameterTypeObject$j];
|
|
6994
|
+
declare const FindPostResponse_objectObject$j: {
|
|
6405
6995
|
readonly List: "list";
|
|
6406
6996
|
};
|
|
6407
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
6408
|
-
readonly DESC: "DESC";
|
|
6997
|
+
declare const PostSortOrderQueryParameterTypeObject$j: {
|
|
6409
6998
|
readonly ASC: "ASC";
|
|
6999
|
+
readonly DESC: "DESC";
|
|
6410
7000
|
};
|
|
6411
7001
|
|
|
6412
7002
|
/**
|
|
@@ -6443,7 +7033,7 @@ interface VariablesItemRequestBuilder extends BaseRequestBuilder<VariablesItemRe
|
|
|
6443
7033
|
toPutRequestInformation(body: UpdateVariableDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6444
7034
|
}
|
|
6445
7035
|
|
|
6446
|
-
type GetSortOrderQueryParameterType$
|
|
7036
|
+
type GetSortOrderQueryParameterType$k = (typeof GetSortOrderQueryParameterTypeObject$k)[keyof typeof GetSortOrderQueryParameterTypeObject$k];
|
|
6447
7037
|
interface VariablesGetResponse extends AdditionalDataHolder, Parsable {
|
|
6448
7038
|
/**
|
|
6449
7039
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -6470,7 +7060,7 @@ interface VariablesRequestBuilder extends BaseRequestBuilder<VariablesRequestBui
|
|
|
6470
7060
|
/**
|
|
6471
7061
|
* The find property
|
|
6472
7062
|
*/
|
|
6473
|
-
get find(): FindRequestBuilder$
|
|
7063
|
+
get find(): FindRequestBuilder$j;
|
|
6474
7064
|
/**
|
|
6475
7065
|
* Gets an item from the ApiSdk.v1.dataFactory.variables.item collection
|
|
6476
7066
|
* @param id Unique identifier of the item
|
|
@@ -6513,11 +7103,11 @@ interface VariablesRequestBuilderGetQueryParameters {
|
|
|
6513
7103
|
page?: number;
|
|
6514
7104
|
size?: number;
|
|
6515
7105
|
sort?: string;
|
|
6516
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
7106
|
+
sortOrder?: GetSortOrderQueryParameterType$k;
|
|
6517
7107
|
}
|
|
6518
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
6519
|
-
readonly DESC: "DESC";
|
|
7108
|
+
declare const GetSortOrderQueryParameterTypeObject$k: {
|
|
6520
7109
|
readonly ASC: "ASC";
|
|
7110
|
+
readonly DESC: "DESC";
|
|
6521
7111
|
};
|
|
6522
7112
|
declare const VariablesGetResponse_objectObject: {
|
|
6523
7113
|
readonly List: "list";
|
|
@@ -6561,7 +7151,7 @@ interface DataFactoryRequestBuilder extends BaseRequestBuilder<DataFactoryReques
|
|
|
6561
7151
|
get variables(): VariablesRequestBuilder;
|
|
6562
7152
|
}
|
|
6563
7153
|
|
|
6564
|
-
interface FindPostResponse$
|
|
7154
|
+
interface FindPostResponse$i extends AdditionalDataHolder, Parsable {
|
|
6565
7155
|
/**
|
|
6566
7156
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6567
7157
|
*/
|
|
@@ -6573,17 +7163,17 @@ interface FindPostResponse$f extends AdditionalDataHolder, Parsable {
|
|
|
6573
7163
|
/**
|
|
6574
7164
|
* The object property
|
|
6575
7165
|
*/
|
|
6576
|
-
object?: FindPostResponse_object$
|
|
7166
|
+
object?: FindPostResponse_object$i | null;
|
|
6577
7167
|
/**
|
|
6578
7168
|
* The totalElements property
|
|
6579
7169
|
*/
|
|
6580
7170
|
totalElements?: number | null;
|
|
6581
7171
|
}
|
|
6582
|
-
type FindPostResponse_object$
|
|
7172
|
+
type FindPostResponse_object$i = (typeof FindPostResponse_objectObject$i)[keyof typeof FindPostResponse_objectObject$i];
|
|
6583
7173
|
/**
|
|
6584
7174
|
* Builds and executes requests for operations under /v1/fields/find
|
|
6585
7175
|
*/
|
|
6586
|
-
interface FindRequestBuilder$
|
|
7176
|
+
interface FindRequestBuilder$i extends BaseRequestBuilder<FindRequestBuilder$i> {
|
|
6587
7177
|
/**
|
|
6588
7178
|
* Find a list of Field
|
|
6589
7179
|
* @param body The request body
|
|
@@ -6591,33 +7181,33 @@ interface FindRequestBuilder$f extends BaseRequestBuilder<FindRequestBuilder$f>
|
|
|
6591
7181
|
* @returns {Promise<FindPostResponse>}
|
|
6592
7182
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
6593
7183
|
*/
|
|
6594
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7184
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$i> | undefined): Promise<FindPostResponse$i | undefined>;
|
|
6595
7185
|
/**
|
|
6596
7186
|
* Find a list of Field
|
|
6597
7187
|
* @param body The request body
|
|
6598
7188
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6599
7189
|
* @returns {RequestInformation}
|
|
6600
7190
|
*/
|
|
6601
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7191
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$i> | undefined): RequestInformation;
|
|
6602
7192
|
}
|
|
6603
7193
|
/**
|
|
6604
7194
|
* Find a list of Field
|
|
6605
7195
|
*/
|
|
6606
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
7196
|
+
interface FindRequestBuilderPostQueryParameters$i {
|
|
6607
7197
|
page?: number;
|
|
6608
7198
|
parentId?: string;
|
|
6609
7199
|
size?: number;
|
|
6610
7200
|
sort?: string;
|
|
6611
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7201
|
+
sortOrder?: PostSortOrderQueryParameterType$i;
|
|
6612
7202
|
tableId?: string;
|
|
6613
7203
|
}
|
|
6614
|
-
type PostSortOrderQueryParameterType$
|
|
6615
|
-
declare const FindPostResponse_objectObject$
|
|
7204
|
+
type PostSortOrderQueryParameterType$i = (typeof PostSortOrderQueryParameterTypeObject$i)[keyof typeof PostSortOrderQueryParameterTypeObject$i];
|
|
7205
|
+
declare const FindPostResponse_objectObject$i: {
|
|
6616
7206
|
readonly List: "list";
|
|
6617
7207
|
};
|
|
6618
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
6619
|
-
readonly DESC: "DESC";
|
|
7208
|
+
declare const PostSortOrderQueryParameterTypeObject$i: {
|
|
6620
7209
|
readonly ASC: "ASC";
|
|
7210
|
+
readonly DESC: "DESC";
|
|
6621
7211
|
};
|
|
6622
7212
|
|
|
6623
7213
|
/**
|
|
@@ -6680,7 +7270,7 @@ interface FieldsRequestBuilder extends BaseRequestBuilder<FieldsRequestBuilder>
|
|
|
6680
7270
|
/**
|
|
6681
7271
|
* The find property
|
|
6682
7272
|
*/
|
|
6683
|
-
get find(): FindRequestBuilder$
|
|
7273
|
+
get find(): FindRequestBuilder$i;
|
|
6684
7274
|
/**
|
|
6685
7275
|
* Gets an item from the ApiSdk.v1.fields.item collection
|
|
6686
7276
|
* @param id Unique identifier of the item
|
|
@@ -6709,19 +7299,19 @@ interface FieldsRequestBuilderGetQueryParameters {
|
|
|
6709
7299
|
parentId?: string;
|
|
6710
7300
|
size?: number;
|
|
6711
7301
|
sort?: string;
|
|
6712
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
7302
|
+
sortOrder?: GetSortOrderQueryParameterType$j;
|
|
6713
7303
|
tableId?: string;
|
|
6714
7304
|
}
|
|
6715
|
-
type GetSortOrderQueryParameterType$
|
|
7305
|
+
type GetSortOrderQueryParameterType$j = (typeof GetSortOrderQueryParameterTypeObject$j)[keyof typeof GetSortOrderQueryParameterTypeObject$j];
|
|
6716
7306
|
declare const FieldsGetResponse_objectObject: {
|
|
6717
7307
|
readonly List: "list";
|
|
6718
7308
|
};
|
|
6719
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
6720
|
-
readonly DESC: "DESC";
|
|
7309
|
+
declare const GetSortOrderQueryParameterTypeObject$j: {
|
|
6721
7310
|
readonly ASC: "ASC";
|
|
7311
|
+
readonly DESC: "DESC";
|
|
6722
7312
|
};
|
|
6723
7313
|
|
|
6724
|
-
interface FindPostResponse$
|
|
7314
|
+
interface FindPostResponse$h extends AdditionalDataHolder, Parsable {
|
|
6725
7315
|
/**
|
|
6726
7316
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6727
7317
|
*/
|
|
@@ -6733,17 +7323,17 @@ interface FindPostResponse$e extends AdditionalDataHolder, Parsable {
|
|
|
6733
7323
|
/**
|
|
6734
7324
|
* The object property
|
|
6735
7325
|
*/
|
|
6736
|
-
object?: FindPostResponse_object$
|
|
7326
|
+
object?: FindPostResponse_object$h | null;
|
|
6737
7327
|
/**
|
|
6738
7328
|
* The totalElements property
|
|
6739
7329
|
*/
|
|
6740
7330
|
totalElements?: number | null;
|
|
6741
7331
|
}
|
|
6742
|
-
type FindPostResponse_object$
|
|
7332
|
+
type FindPostResponse_object$h = (typeof FindPostResponse_objectObject$h)[keyof typeof FindPostResponse_objectObject$h];
|
|
6743
7333
|
/**
|
|
6744
7334
|
* Builds and executes requests for operations under /v1/field-values/find
|
|
6745
7335
|
*/
|
|
6746
|
-
interface FindRequestBuilder$
|
|
7336
|
+
interface FindRequestBuilder$h extends BaseRequestBuilder<FindRequestBuilder$h> {
|
|
6747
7337
|
/**
|
|
6748
7338
|
* Find a list of Field Value
|
|
6749
7339
|
* @param body The request body
|
|
@@ -6751,32 +7341,32 @@ interface FindRequestBuilder$e extends BaseRequestBuilder<FindRequestBuilder$e>
|
|
|
6751
7341
|
* @returns {Promise<FindPostResponse>}
|
|
6752
7342
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
6753
7343
|
*/
|
|
6754
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7344
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$h> | undefined): Promise<FindPostResponse$h | undefined>;
|
|
6755
7345
|
/**
|
|
6756
7346
|
* Find a list of Field Value
|
|
6757
7347
|
* @param body The request body
|
|
6758
7348
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6759
7349
|
* @returns {RequestInformation}
|
|
6760
7350
|
*/
|
|
6761
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7351
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$h> | undefined): RequestInformation;
|
|
6762
7352
|
}
|
|
6763
7353
|
/**
|
|
6764
7354
|
* Find a list of Field Value
|
|
6765
7355
|
*/
|
|
6766
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
7356
|
+
interface FindRequestBuilderPostQueryParameters$h {
|
|
6767
7357
|
fieldId?: string;
|
|
6768
7358
|
page?: number;
|
|
6769
7359
|
size?: number;
|
|
6770
7360
|
sort?: string;
|
|
6771
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7361
|
+
sortOrder?: PostSortOrderQueryParameterType$h;
|
|
6772
7362
|
}
|
|
6773
|
-
type PostSortOrderQueryParameterType$
|
|
6774
|
-
declare const FindPostResponse_objectObject$
|
|
7363
|
+
type PostSortOrderQueryParameterType$h = (typeof PostSortOrderQueryParameterTypeObject$h)[keyof typeof PostSortOrderQueryParameterTypeObject$h];
|
|
7364
|
+
declare const FindPostResponse_objectObject$h: {
|
|
6775
7365
|
readonly List: "list";
|
|
6776
7366
|
};
|
|
6777
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
6778
|
-
readonly DESC: "DESC";
|
|
7367
|
+
declare const PostSortOrderQueryParameterTypeObject$h: {
|
|
6779
7368
|
readonly ASC: "ASC";
|
|
7369
|
+
readonly DESC: "DESC";
|
|
6780
7370
|
};
|
|
6781
7371
|
|
|
6782
7372
|
/**
|
|
@@ -6824,7 +7414,7 @@ interface FieldValuesRequestBuilder extends BaseRequestBuilder<FieldValuesReques
|
|
|
6824
7414
|
/**
|
|
6825
7415
|
* The find property
|
|
6826
7416
|
*/
|
|
6827
|
-
get find(): FindRequestBuilder$
|
|
7417
|
+
get find(): FindRequestBuilder$h;
|
|
6828
7418
|
/**
|
|
6829
7419
|
* Gets an item from the ApiSdk.v1.fieldValues.item collection
|
|
6830
7420
|
* @param id Unique identifier of the item
|
|
@@ -6853,18 +7443,18 @@ interface FieldValuesRequestBuilderGetQueryParameters {
|
|
|
6853
7443
|
page?: number;
|
|
6854
7444
|
size?: number;
|
|
6855
7445
|
sort?: string;
|
|
6856
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
7446
|
+
sortOrder?: GetSortOrderQueryParameterType$i;
|
|
6857
7447
|
}
|
|
6858
|
-
type GetSortOrderQueryParameterType$
|
|
7448
|
+
type GetSortOrderQueryParameterType$i = (typeof GetSortOrderQueryParameterTypeObject$i)[keyof typeof GetSortOrderQueryParameterTypeObject$i];
|
|
6859
7449
|
declare const FieldValuesGetResponse_objectObject: {
|
|
6860
7450
|
readonly List: "list";
|
|
6861
7451
|
};
|
|
6862
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
6863
|
-
readonly DESC: "DESC";
|
|
7452
|
+
declare const GetSortOrderQueryParameterTypeObject$i: {
|
|
6864
7453
|
readonly ASC: "ASC";
|
|
7454
|
+
readonly DESC: "DESC";
|
|
6865
7455
|
};
|
|
6866
7456
|
|
|
6867
|
-
interface FindPostResponse$
|
|
7457
|
+
interface FindPostResponse$g extends AdditionalDataHolder, Parsable {
|
|
6868
7458
|
/**
|
|
6869
7459
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6870
7460
|
*/
|
|
@@ -6876,17 +7466,17 @@ interface FindPostResponse$d extends AdditionalDataHolder, Parsable {
|
|
|
6876
7466
|
/**
|
|
6877
7467
|
* The object property
|
|
6878
7468
|
*/
|
|
6879
|
-
object?: FindPostResponse_object$
|
|
7469
|
+
object?: FindPostResponse_object$g | null;
|
|
6880
7470
|
/**
|
|
6881
7471
|
* The totalElements property
|
|
6882
7472
|
*/
|
|
6883
7473
|
totalElements?: number | null;
|
|
6884
7474
|
}
|
|
6885
|
-
type FindPostResponse_object$
|
|
7475
|
+
type FindPostResponse_object$g = (typeof FindPostResponse_objectObject$g)[keyof typeof FindPostResponse_objectObject$g];
|
|
6886
7476
|
/**
|
|
6887
7477
|
* Builds and executes requests for operations under /v1/item-links/find
|
|
6888
7478
|
*/
|
|
6889
|
-
interface FindRequestBuilder$
|
|
7479
|
+
interface FindRequestBuilder$g extends BaseRequestBuilder<FindRequestBuilder$g> {
|
|
6890
7480
|
/**
|
|
6891
7481
|
* Find a list of Item Link
|
|
6892
7482
|
* @param body The request body
|
|
@@ -6894,32 +7484,32 @@ interface FindRequestBuilder$d extends BaseRequestBuilder<FindRequestBuilder$d>
|
|
|
6894
7484
|
* @returns {Promise<FindPostResponse>}
|
|
6895
7485
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
6896
7486
|
*/
|
|
6897
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7487
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$g> | undefined): Promise<FindPostResponse$g | undefined>;
|
|
6898
7488
|
/**
|
|
6899
7489
|
* Find a list of Item Link
|
|
6900
7490
|
* @param body The request body
|
|
6901
7491
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6902
7492
|
* @returns {RequestInformation}
|
|
6903
7493
|
*/
|
|
6904
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7494
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$g> | undefined): RequestInformation;
|
|
6905
7495
|
}
|
|
6906
7496
|
/**
|
|
6907
7497
|
* Find a list of Item Link
|
|
6908
7498
|
*/
|
|
6909
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
7499
|
+
interface FindRequestBuilderPostQueryParameters$g {
|
|
6910
7500
|
page?: number;
|
|
6911
7501
|
size?: number;
|
|
6912
7502
|
sort?: string;
|
|
6913
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7503
|
+
sortOrder?: PostSortOrderQueryParameterType$g;
|
|
6914
7504
|
tableId?: string;
|
|
6915
7505
|
}
|
|
6916
|
-
type PostSortOrderQueryParameterType$
|
|
6917
|
-
declare const FindPostResponse_objectObject$
|
|
7506
|
+
type PostSortOrderQueryParameterType$g = (typeof PostSortOrderQueryParameterTypeObject$g)[keyof typeof PostSortOrderQueryParameterTypeObject$g];
|
|
7507
|
+
declare const FindPostResponse_objectObject$g: {
|
|
6918
7508
|
readonly List: "list";
|
|
6919
7509
|
};
|
|
6920
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
6921
|
-
readonly DESC: "DESC";
|
|
7510
|
+
declare const PostSortOrderQueryParameterTypeObject$g: {
|
|
6922
7511
|
readonly ASC: "ASC";
|
|
7512
|
+
readonly DESC: "DESC";
|
|
6923
7513
|
};
|
|
6924
7514
|
|
|
6925
7515
|
/**
|
|
@@ -6953,7 +7543,7 @@ interface ItemLinksItemRequestBuilder extends BaseRequestBuilder<ItemLinksItemRe
|
|
|
6953
7543
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6954
7544
|
}
|
|
6955
7545
|
|
|
6956
|
-
type GetSortOrderQueryParameterType$
|
|
7546
|
+
type GetSortOrderQueryParameterType$h = (typeof GetSortOrderQueryParameterTypeObject$h)[keyof typeof GetSortOrderQueryParameterTypeObject$h];
|
|
6957
7547
|
interface ItemLinksGetResponse extends AdditionalDataHolder, Parsable {
|
|
6958
7548
|
/**
|
|
6959
7549
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -6980,7 +7570,7 @@ interface ItemLinksRequestBuilder extends BaseRequestBuilder<ItemLinksRequestBui
|
|
|
6980
7570
|
/**
|
|
6981
7571
|
* The find property
|
|
6982
7572
|
*/
|
|
6983
|
-
get find(): FindRequestBuilder$
|
|
7573
|
+
get find(): FindRequestBuilder$g;
|
|
6984
7574
|
/**
|
|
6985
7575
|
* Gets an item from the ApiSdk.v1.itemLinks.item collection
|
|
6986
7576
|
* @param id Unique identifier of the item
|
|
@@ -7023,50 +7613,97 @@ interface ItemLinksRequestBuilderGetQueryParameters {
|
|
|
7023
7613
|
page?: number;
|
|
7024
7614
|
size?: number;
|
|
7025
7615
|
sort?: string;
|
|
7026
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
7616
|
+
sortOrder?: GetSortOrderQueryParameterType$h;
|
|
7027
7617
|
tableId?: string;
|
|
7028
7618
|
}
|
|
7029
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
7030
|
-
readonly DESC: "DESC";
|
|
7619
|
+
declare const GetSortOrderQueryParameterTypeObject$h: {
|
|
7031
7620
|
readonly ASC: "ASC";
|
|
7621
|
+
readonly DESC: "DESC";
|
|
7032
7622
|
};
|
|
7033
7623
|
declare const ItemLinksGetResponse_objectObject: {
|
|
7034
7624
|
readonly List: "list";
|
|
7035
7625
|
};
|
|
7036
7626
|
|
|
7037
|
-
|
|
7627
|
+
interface FindPostResponse$f extends AdditionalDataHolder, Parsable {
|
|
7628
|
+
/**
|
|
7629
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7630
|
+
*/
|
|
7631
|
+
additionalData?: Record<string, unknown>;
|
|
7632
|
+
/**
|
|
7633
|
+
* The data property
|
|
7634
|
+
*/
|
|
7635
|
+
data?: ItemDto[] | null;
|
|
7636
|
+
/**
|
|
7637
|
+
* The object property
|
|
7638
|
+
*/
|
|
7639
|
+
object?: FindPostResponse_object$f | null;
|
|
7640
|
+
/**
|
|
7641
|
+
* The totalElements property
|
|
7642
|
+
*/
|
|
7643
|
+
totalElements?: number | null;
|
|
7644
|
+
}
|
|
7645
|
+
type FindPostResponse_object$f = (typeof FindPostResponse_objectObject$f)[keyof typeof FindPostResponse_objectObject$f];
|
|
7038
7646
|
/**
|
|
7039
|
-
* Builds and executes requests for operations under /v1/items/find
|
|
7647
|
+
* Builds and executes requests for operations under /v1/items/find
|
|
7040
7648
|
*/
|
|
7041
|
-
interface
|
|
7649
|
+
interface FindRequestBuilder$f extends BaseRequestBuilder<FindRequestBuilder$f> {
|
|
7042
7650
|
/**
|
|
7043
7651
|
* Find a list of Item
|
|
7044
7652
|
* @param body The request body
|
|
7045
7653
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7046
|
-
* @returns {Promise<
|
|
7047
|
-
* @throws {
|
|
7048
|
-
* @deprecated
|
|
7654
|
+
* @returns {Promise<FindPostResponse>}
|
|
7655
|
+
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7049
7656
|
*/
|
|
7050
|
-
post(body:
|
|
7657
|
+
post(body: FindItemHighOrderQueryDTO | FindItemLowOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$f> | undefined): Promise<FindPostResponse$f | undefined>;
|
|
7051
7658
|
/**
|
|
7052
7659
|
* Find a list of Item
|
|
7053
7660
|
* @param body The request body
|
|
7054
7661
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7055
7662
|
* @returns {RequestInformation}
|
|
7056
|
-
* @deprecated
|
|
7057
7663
|
*/
|
|
7058
|
-
toPostRequestInformation(body:
|
|
7664
|
+
toPostRequestInformation(body: FindItemHighOrderQueryDTO | FindItemLowOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$f> | undefined): RequestInformation;
|
|
7059
7665
|
}
|
|
7060
7666
|
/**
|
|
7061
7667
|
* Find a list of Item
|
|
7062
7668
|
*/
|
|
7063
|
-
interface
|
|
7669
|
+
interface FindRequestBuilderPostQueryParameters$f {
|
|
7670
|
+
levelId?: string;
|
|
7064
7671
|
page?: number;
|
|
7672
|
+
partitionId?: string;
|
|
7065
7673
|
size?: number;
|
|
7066
7674
|
sort?: string;
|
|
7067
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7675
|
+
sortOrder?: PostSortOrderQueryParameterType$f;
|
|
7676
|
+
}
|
|
7677
|
+
type PostSortOrderQueryParameterType$f = (typeof PostSortOrderQueryParameterTypeObject$f)[keyof typeof PostSortOrderQueryParameterTypeObject$f];
|
|
7678
|
+
declare const FindPostResponse_objectObject$f: {
|
|
7679
|
+
readonly List: "list";
|
|
7680
|
+
};
|
|
7681
|
+
declare const PostSortOrderQueryParameterTypeObject$f: {
|
|
7682
|
+
readonly ASC: "ASC";
|
|
7683
|
+
readonly DESC: "DESC";
|
|
7684
|
+
};
|
|
7685
|
+
|
|
7686
|
+
/**
|
|
7687
|
+
* Builds and executes requests for operations under /v1/items/{id}
|
|
7688
|
+
*/
|
|
7689
|
+
interface ItemsItemRequestBuilder extends BaseRequestBuilder<ItemsItemRequestBuilder> {
|
|
7690
|
+
/**
|
|
7691
|
+
* Get a Item by id
|
|
7692
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7693
|
+
* @returns {Promise<ItemDto>}
|
|
7694
|
+
* @throws {ItemDto400Error} error when the service returns a 400 status code
|
|
7695
|
+
*/
|
|
7696
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ItemDto | undefined>;
|
|
7697
|
+
/**
|
|
7698
|
+
* Get a Item by id
|
|
7699
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7700
|
+
* @returns {RequestInformation}
|
|
7701
|
+
*/
|
|
7702
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7068
7703
|
}
|
|
7069
|
-
|
|
7704
|
+
|
|
7705
|
+
type GetSortOrderQueryParameterType$g = (typeof GetSortOrderQueryParameterTypeObject$g)[keyof typeof GetSortOrderQueryParameterTypeObject$g];
|
|
7706
|
+
interface ItemsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7070
7707
|
/**
|
|
7071
7708
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7072
7709
|
*/
|
|
@@ -7078,76 +7715,421 @@ interface WithLevelPostResponse extends AdditionalDataHolder, Parsable {
|
|
|
7078
7715
|
/**
|
|
7079
7716
|
* The object property
|
|
7080
7717
|
*/
|
|
7081
|
-
object?:
|
|
7718
|
+
object?: ItemsGetResponse_object | null;
|
|
7082
7719
|
/**
|
|
7083
7720
|
* The totalElements property
|
|
7084
7721
|
*/
|
|
7085
7722
|
totalElements?: number | null;
|
|
7086
7723
|
}
|
|
7087
|
-
type
|
|
7088
|
-
|
|
7724
|
+
type ItemsGetResponse_object = (typeof ItemsGetResponse_objectObject)[keyof typeof ItemsGetResponse_objectObject];
|
|
7725
|
+
/**
|
|
7726
|
+
* Builds and executes requests for operations under /v1/items
|
|
7727
|
+
*/
|
|
7728
|
+
interface ItemsRequestBuilder extends BaseRequestBuilder<ItemsRequestBuilder> {
|
|
7729
|
+
/**
|
|
7730
|
+
* The find property
|
|
7731
|
+
*/
|
|
7732
|
+
get find(): FindRequestBuilder$f;
|
|
7733
|
+
/**
|
|
7734
|
+
* Gets an item from the ApiSdk.v1.items.item collection
|
|
7735
|
+
* @param id Unique identifier of the item
|
|
7736
|
+
* @returns {ItemsItemRequestBuilder}
|
|
7737
|
+
*/
|
|
7738
|
+
byId(id: string): ItemsItemRequestBuilder;
|
|
7739
|
+
/**
|
|
7740
|
+
* Get a list of Item
|
|
7741
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7742
|
+
* @returns {Promise<ItemsGetResponse>}
|
|
7743
|
+
* @throws {Items400Error} error when the service returns a 400 status code
|
|
7744
|
+
*/
|
|
7745
|
+
get(requestConfiguration?: RequestConfiguration<ItemsRequestBuilderGetQueryParameters> | undefined): Promise<ItemsGetResponse | undefined>;
|
|
7746
|
+
/**
|
|
7747
|
+
* Get a list of Item
|
|
7748
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7749
|
+
* @returns {RequestInformation}
|
|
7750
|
+
*/
|
|
7751
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ItemsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
7752
|
+
}
|
|
7753
|
+
/**
|
|
7754
|
+
* Get a list of Item
|
|
7755
|
+
*/
|
|
7756
|
+
interface ItemsRequestBuilderGetQueryParameters {
|
|
7757
|
+
levelId?: string;
|
|
7758
|
+
page?: number;
|
|
7759
|
+
partitionId?: string;
|
|
7760
|
+
size?: number;
|
|
7761
|
+
sort?: string;
|
|
7762
|
+
sortOrder?: GetSortOrderQueryParameterType$g;
|
|
7763
|
+
}
|
|
7764
|
+
declare const GetSortOrderQueryParameterTypeObject$g: {
|
|
7765
|
+
readonly ASC: "ASC";
|
|
7089
7766
|
readonly DESC: "DESC";
|
|
7767
|
+
};
|
|
7768
|
+
declare const ItemsGetResponse_objectObject: {
|
|
7769
|
+
readonly List: "list";
|
|
7770
|
+
};
|
|
7771
|
+
|
|
7772
|
+
interface FindPostResponse$e extends AdditionalDataHolder, Parsable {
|
|
7773
|
+
/**
|
|
7774
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7775
|
+
*/
|
|
7776
|
+
additionalData?: Record<string, unknown>;
|
|
7777
|
+
/**
|
|
7778
|
+
* The data property
|
|
7779
|
+
*/
|
|
7780
|
+
data?: LevelDto[] | null;
|
|
7781
|
+
/**
|
|
7782
|
+
* The object property
|
|
7783
|
+
*/
|
|
7784
|
+
object?: FindPostResponse_object$e | null;
|
|
7785
|
+
/**
|
|
7786
|
+
* The totalElements property
|
|
7787
|
+
*/
|
|
7788
|
+
totalElements?: number | null;
|
|
7789
|
+
}
|
|
7790
|
+
type FindPostResponse_object$e = (typeof FindPostResponse_objectObject$e)[keyof typeof FindPostResponse_objectObject$e];
|
|
7791
|
+
/**
|
|
7792
|
+
* Builds and executes requests for operations under /v1/levels/find
|
|
7793
|
+
*/
|
|
7794
|
+
interface FindRequestBuilder$e extends BaseRequestBuilder<FindRequestBuilder$e> {
|
|
7795
|
+
/**
|
|
7796
|
+
* Find a list of Level
|
|
7797
|
+
* @param body The request body
|
|
7798
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7799
|
+
* @returns {Promise<FindPostResponse>}
|
|
7800
|
+
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7801
|
+
*/
|
|
7802
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$e> | undefined): Promise<FindPostResponse$e | undefined>;
|
|
7803
|
+
/**
|
|
7804
|
+
* Find a list of Level
|
|
7805
|
+
* @param body The request body
|
|
7806
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7807
|
+
* @returns {RequestInformation}
|
|
7808
|
+
*/
|
|
7809
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$e> | undefined): RequestInformation;
|
|
7810
|
+
}
|
|
7811
|
+
/**
|
|
7812
|
+
* Find a list of Level
|
|
7813
|
+
*/
|
|
7814
|
+
interface FindRequestBuilderPostQueryParameters$e {
|
|
7815
|
+
page?: number;
|
|
7816
|
+
size?: number;
|
|
7817
|
+
sort?: string;
|
|
7818
|
+
sortOrder?: PostSortOrderQueryParameterType$e;
|
|
7819
|
+
tableId?: string;
|
|
7820
|
+
}
|
|
7821
|
+
type PostSortOrderQueryParameterType$e = (typeof PostSortOrderQueryParameterTypeObject$e)[keyof typeof PostSortOrderQueryParameterTypeObject$e];
|
|
7822
|
+
declare const FindPostResponse_objectObject$e: {
|
|
7823
|
+
readonly List: "list";
|
|
7824
|
+
};
|
|
7825
|
+
declare const PostSortOrderQueryParameterTypeObject$e: {
|
|
7826
|
+
readonly ASC: "ASC";
|
|
7827
|
+
readonly DESC: "DESC";
|
|
7828
|
+
};
|
|
7829
|
+
|
|
7830
|
+
/**
|
|
7831
|
+
* Builds and executes requests for operations under /v1/levels/{id}
|
|
7832
|
+
*/
|
|
7833
|
+
interface LevelsItemRequestBuilder extends BaseRequestBuilder<LevelsItemRequestBuilder> {
|
|
7834
|
+
/**
|
|
7835
|
+
* Get a Level by id
|
|
7836
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7837
|
+
* @returns {Promise<LevelDto>}
|
|
7838
|
+
* @throws {LevelDto400Error} error when the service returns a 400 status code
|
|
7839
|
+
*/
|
|
7840
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<LevelDto | undefined>;
|
|
7841
|
+
/**
|
|
7842
|
+
* Get a Level by id
|
|
7843
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7844
|
+
* @returns {RequestInformation}
|
|
7845
|
+
*/
|
|
7846
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7847
|
+
}
|
|
7848
|
+
|
|
7849
|
+
type GetSortOrderQueryParameterType$f = (typeof GetSortOrderQueryParameterTypeObject$f)[keyof typeof GetSortOrderQueryParameterTypeObject$f];
|
|
7850
|
+
interface LevelsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7851
|
+
/**
|
|
7852
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7853
|
+
*/
|
|
7854
|
+
additionalData?: Record<string, unknown>;
|
|
7855
|
+
/**
|
|
7856
|
+
* The data property
|
|
7857
|
+
*/
|
|
7858
|
+
data?: LevelDto[] | null;
|
|
7859
|
+
/**
|
|
7860
|
+
* The object property
|
|
7861
|
+
*/
|
|
7862
|
+
object?: LevelsGetResponse_object | null;
|
|
7863
|
+
/**
|
|
7864
|
+
* The totalElements property
|
|
7865
|
+
*/
|
|
7866
|
+
totalElements?: number | null;
|
|
7867
|
+
}
|
|
7868
|
+
type LevelsGetResponse_object = (typeof LevelsGetResponse_objectObject)[keyof typeof LevelsGetResponse_objectObject];
|
|
7869
|
+
/**
|
|
7870
|
+
* Builds and executes requests for operations under /v1/levels
|
|
7871
|
+
*/
|
|
7872
|
+
interface LevelsRequestBuilder extends BaseRequestBuilder<LevelsRequestBuilder> {
|
|
7873
|
+
/**
|
|
7874
|
+
* The find property
|
|
7875
|
+
*/
|
|
7876
|
+
get find(): FindRequestBuilder$e;
|
|
7877
|
+
/**
|
|
7878
|
+
* Gets an item from the ApiSdk.v1.levels.item collection
|
|
7879
|
+
* @param id Unique identifier of the item
|
|
7880
|
+
* @returns {LevelsItemRequestBuilder}
|
|
7881
|
+
*/
|
|
7882
|
+
byId(id: string): LevelsItemRequestBuilder;
|
|
7883
|
+
/**
|
|
7884
|
+
* Get a list of Level
|
|
7885
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7886
|
+
* @returns {Promise<LevelsGetResponse>}
|
|
7887
|
+
* @throws {Levels400Error} error when the service returns a 400 status code
|
|
7888
|
+
*/
|
|
7889
|
+
get(requestConfiguration?: RequestConfiguration<LevelsRequestBuilderGetQueryParameters> | undefined): Promise<LevelsGetResponse | undefined>;
|
|
7890
|
+
/**
|
|
7891
|
+
* Get a list of Level
|
|
7892
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7893
|
+
* @returns {RequestInformation}
|
|
7894
|
+
*/
|
|
7895
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<LevelsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
7896
|
+
}
|
|
7897
|
+
/**
|
|
7898
|
+
* Get a list of Level
|
|
7899
|
+
*/
|
|
7900
|
+
interface LevelsRequestBuilderGetQueryParameters {
|
|
7901
|
+
page?: number;
|
|
7902
|
+
size?: number;
|
|
7903
|
+
sort?: string;
|
|
7904
|
+
sortOrder?: GetSortOrderQueryParameterType$f;
|
|
7905
|
+
tableId?: string;
|
|
7906
|
+
}
|
|
7907
|
+
declare const GetSortOrderQueryParameterTypeObject$f: {
|
|
7090
7908
|
readonly ASC: "ASC";
|
|
7909
|
+
readonly DESC: "DESC";
|
|
7091
7910
|
};
|
|
7092
|
-
declare const
|
|
7911
|
+
declare const LevelsGetResponse_objectObject: {
|
|
7093
7912
|
readonly List: "list";
|
|
7094
7913
|
};
|
|
7095
7914
|
|
|
7915
|
+
interface FindPostResponse$d extends AdditionalDataHolder, Parsable {
|
|
7916
|
+
/**
|
|
7917
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7918
|
+
*/
|
|
7919
|
+
additionalData?: Record<string, unknown>;
|
|
7920
|
+
/**
|
|
7921
|
+
* The data property
|
|
7922
|
+
*/
|
|
7923
|
+
data?: MatrixFieldDto[] | null;
|
|
7924
|
+
/**
|
|
7925
|
+
* The object property
|
|
7926
|
+
*/
|
|
7927
|
+
object?: FindPostResponse_object$d | null;
|
|
7928
|
+
/**
|
|
7929
|
+
* The totalElements property
|
|
7930
|
+
*/
|
|
7931
|
+
totalElements?: number | null;
|
|
7932
|
+
}
|
|
7933
|
+
type FindPostResponse_object$d = (typeof FindPostResponse_objectObject$d)[keyof typeof FindPostResponse_objectObject$d];
|
|
7096
7934
|
/**
|
|
7097
|
-
* Builds and executes requests for operations under /v1/
|
|
7935
|
+
* Builds and executes requests for operations under /v1/matrix-fields/find
|
|
7098
7936
|
*/
|
|
7099
|
-
interface
|
|
7937
|
+
interface FindRequestBuilder$d extends BaseRequestBuilder<FindRequestBuilder$d> {
|
|
7938
|
+
/**
|
|
7939
|
+
* Find a list of Matrix Field
|
|
7940
|
+
* @param body The request body
|
|
7941
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7942
|
+
* @returns {Promise<FindPostResponse>}
|
|
7943
|
+
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7944
|
+
*/
|
|
7945
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$d> | undefined): Promise<FindPostResponse$d | undefined>;
|
|
7100
7946
|
/**
|
|
7101
|
-
*
|
|
7102
|
-
* @param
|
|
7103
|
-
* @
|
|
7104
|
-
* @
|
|
7947
|
+
* Find a list of Matrix Field
|
|
7948
|
+
* @param body The request body
|
|
7949
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7950
|
+
* @returns {RequestInformation}
|
|
7105
7951
|
*/
|
|
7106
|
-
|
|
7952
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$d> | undefined): RequestInformation;
|
|
7953
|
+
}
|
|
7954
|
+
/**
|
|
7955
|
+
* Find a list of Matrix Field
|
|
7956
|
+
*/
|
|
7957
|
+
interface FindRequestBuilderPostQueryParameters$d {
|
|
7958
|
+
page?: number;
|
|
7959
|
+
size?: number;
|
|
7960
|
+
sort?: string;
|
|
7961
|
+
sortOrder?: PostSortOrderQueryParameterType$d;
|
|
7962
|
+
tableId?: string;
|
|
7107
7963
|
}
|
|
7964
|
+
type PostSortOrderQueryParameterType$d = (typeof PostSortOrderQueryParameterTypeObject$d)[keyof typeof PostSortOrderQueryParameterTypeObject$d];
|
|
7965
|
+
declare const FindPostResponse_objectObject$d: {
|
|
7966
|
+
readonly List: "list";
|
|
7967
|
+
};
|
|
7968
|
+
declare const PostSortOrderQueryParameterTypeObject$d: {
|
|
7969
|
+
readonly ASC: "ASC";
|
|
7970
|
+
readonly DESC: "DESC";
|
|
7971
|
+
};
|
|
7108
7972
|
|
|
7109
7973
|
/**
|
|
7110
|
-
* Builds and executes requests for operations under /v1/
|
|
7974
|
+
* Builds and executes requests for operations under /v1/matrix-fields/{id}
|
|
7111
7975
|
*/
|
|
7112
|
-
interface
|
|
7976
|
+
interface MatrixFieldsItemRequestBuilder extends BaseRequestBuilder<MatrixFieldsItemRequestBuilder> {
|
|
7977
|
+
/**
|
|
7978
|
+
* Get a Matrix Field by id
|
|
7979
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7980
|
+
* @returns {Promise<MatrixFieldDto>}
|
|
7981
|
+
* @throws {MatrixFieldDto400Error} error when the service returns a 400 status code
|
|
7982
|
+
*/
|
|
7983
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MatrixFieldDto | undefined>;
|
|
7113
7984
|
/**
|
|
7114
|
-
*
|
|
7985
|
+
* Get a Matrix Field by id
|
|
7986
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7987
|
+
* @returns {RequestInformation}
|
|
7115
7988
|
*/
|
|
7116
|
-
|
|
7989
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7117
7990
|
}
|
|
7118
7991
|
|
|
7992
|
+
type GetSortOrderQueryParameterType$e = (typeof GetSortOrderQueryParameterTypeObject$e)[keyof typeof GetSortOrderQueryParameterTypeObject$e];
|
|
7993
|
+
interface MatrixFieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7994
|
+
/**
|
|
7995
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7996
|
+
*/
|
|
7997
|
+
additionalData?: Record<string, unknown>;
|
|
7998
|
+
/**
|
|
7999
|
+
* The data property
|
|
8000
|
+
*/
|
|
8001
|
+
data?: MatrixFieldDto[] | null;
|
|
8002
|
+
/**
|
|
8003
|
+
* The object property
|
|
8004
|
+
*/
|
|
8005
|
+
object?: MatrixFieldsGetResponse_object | null;
|
|
8006
|
+
/**
|
|
8007
|
+
* The totalElements property
|
|
8008
|
+
*/
|
|
8009
|
+
totalElements?: number | null;
|
|
8010
|
+
}
|
|
8011
|
+
type MatrixFieldsGetResponse_object = (typeof MatrixFieldsGetResponse_objectObject)[keyof typeof MatrixFieldsGetResponse_objectObject];
|
|
7119
8012
|
/**
|
|
7120
|
-
* Builds and executes requests for operations under /v1/
|
|
8013
|
+
* Builds and executes requests for operations under /v1/matrix-fields
|
|
7121
8014
|
*/
|
|
7122
|
-
interface
|
|
8015
|
+
interface MatrixFieldsRequestBuilder extends BaseRequestBuilder<MatrixFieldsRequestBuilder> {
|
|
8016
|
+
/**
|
|
8017
|
+
* The find property
|
|
8018
|
+
*/
|
|
8019
|
+
get find(): FindRequestBuilder$d;
|
|
8020
|
+
/**
|
|
8021
|
+
* Gets an item from the ApiSdk.v1.matrixFields.item collection
|
|
8022
|
+
* @param id Unique identifier of the item
|
|
8023
|
+
* @returns {MatrixFieldsItemRequestBuilder}
|
|
8024
|
+
*/
|
|
8025
|
+
byId(id: string): MatrixFieldsItemRequestBuilder;
|
|
8026
|
+
/**
|
|
8027
|
+
* Get a list of Matrix Field
|
|
8028
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8029
|
+
* @returns {Promise<MatrixFieldsGetResponse>}
|
|
8030
|
+
* @throws {MatrixFields400Error} error when the service returns a 400 status code
|
|
8031
|
+
*/
|
|
8032
|
+
get(requestConfiguration?: RequestConfiguration<MatrixFieldsRequestBuilderGetQueryParameters> | undefined): Promise<MatrixFieldsGetResponse | undefined>;
|
|
7123
8033
|
/**
|
|
7124
|
-
*
|
|
7125
|
-
* @param
|
|
7126
|
-
* @returns {
|
|
8034
|
+
* Get a list of Matrix Field
|
|
8035
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8036
|
+
* @returns {RequestInformation}
|
|
7127
8037
|
*/
|
|
7128
|
-
|
|
8038
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MatrixFieldsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
7129
8039
|
}
|
|
8040
|
+
/**
|
|
8041
|
+
* Get a list of Matrix Field
|
|
8042
|
+
*/
|
|
8043
|
+
interface MatrixFieldsRequestBuilderGetQueryParameters {
|
|
8044
|
+
page?: number;
|
|
8045
|
+
size?: number;
|
|
8046
|
+
sort?: string;
|
|
8047
|
+
sortOrder?: GetSortOrderQueryParameterType$e;
|
|
8048
|
+
tableId?: string;
|
|
8049
|
+
}
|
|
8050
|
+
declare const GetSortOrderQueryParameterTypeObject$e: {
|
|
8051
|
+
readonly ASC: "ASC";
|
|
8052
|
+
readonly DESC: "DESC";
|
|
8053
|
+
};
|
|
8054
|
+
declare const MatrixFieldsGetResponse_objectObject: {
|
|
8055
|
+
readonly List: "list";
|
|
8056
|
+
};
|
|
7130
8057
|
|
|
8058
|
+
interface AccountsGetResponse extends AdditionalDataHolder, Parsable {
|
|
8059
|
+
/**
|
|
8060
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8061
|
+
*/
|
|
8062
|
+
additionalData?: Record<string, unknown>;
|
|
8063
|
+
/**
|
|
8064
|
+
* The data property
|
|
8065
|
+
*/
|
|
8066
|
+
data?: MeAccountDto[] | null;
|
|
8067
|
+
/**
|
|
8068
|
+
* The object property
|
|
8069
|
+
*/
|
|
8070
|
+
object?: AccountsGetResponse_object | null;
|
|
8071
|
+
/**
|
|
8072
|
+
* The totalElements property
|
|
8073
|
+
*/
|
|
8074
|
+
totalElements?: number | null;
|
|
8075
|
+
}
|
|
8076
|
+
type AccountsGetResponse_object = (typeof AccountsGetResponse_objectObject)[keyof typeof AccountsGetResponse_objectObject];
|
|
7131
8077
|
/**
|
|
7132
|
-
* Builds and executes requests for operations under /v1/
|
|
8078
|
+
* Builds and executes requests for operations under /v1/me/accounts
|
|
7133
8079
|
*/
|
|
7134
|
-
interface
|
|
8080
|
+
interface AccountsRequestBuilder extends BaseRequestBuilder<AccountsRequestBuilder> {
|
|
8081
|
+
/**
|
|
8082
|
+
* Get a list of Me
|
|
8083
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8084
|
+
* @returns {Promise<AccountsGetResponse>}
|
|
8085
|
+
* @throws {Accounts400Error} error when the service returns a 400 status code
|
|
8086
|
+
*/
|
|
8087
|
+
get(requestConfiguration?: RequestConfiguration<AccountsRequestBuilderGetQueryParameters> | undefined): Promise<AccountsGetResponse | undefined>;
|
|
7135
8088
|
/**
|
|
7136
|
-
*
|
|
8089
|
+
* Get a list of Me
|
|
8090
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8091
|
+
* @returns {RequestInformation}
|
|
7137
8092
|
*/
|
|
7138
|
-
|
|
8093
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AccountsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
8094
|
+
}
|
|
8095
|
+
/**
|
|
8096
|
+
* Get a list of Me
|
|
8097
|
+
*/
|
|
8098
|
+
interface AccountsRequestBuilderGetQueryParameters {
|
|
8099
|
+
page?: number;
|
|
8100
|
+
size?: number;
|
|
8101
|
+
sort?: string;
|
|
8102
|
+
sortOrder?: GetSortOrderQueryParameterType$d;
|
|
7139
8103
|
}
|
|
8104
|
+
type GetSortOrderQueryParameterType$d = (typeof GetSortOrderQueryParameterTypeObject$d)[keyof typeof GetSortOrderQueryParameterTypeObject$d];
|
|
8105
|
+
declare const AccountsGetResponse_objectObject: {
|
|
8106
|
+
readonly List: "list";
|
|
8107
|
+
};
|
|
8108
|
+
declare const GetSortOrderQueryParameterTypeObject$d: {
|
|
8109
|
+
readonly ASC: "ASC";
|
|
8110
|
+
readonly DESC: "DESC";
|
|
8111
|
+
};
|
|
7140
8112
|
|
|
7141
8113
|
/**
|
|
7142
|
-
* Builds and executes requests for operations under /v1/
|
|
8114
|
+
* Builds and executes requests for operations under /v1/me
|
|
7143
8115
|
*/
|
|
7144
|
-
interface
|
|
8116
|
+
interface MeRequestBuilder extends BaseRequestBuilder<MeRequestBuilder> {
|
|
7145
8117
|
/**
|
|
7146
|
-
*
|
|
7147
|
-
* @param tableId Unique identifier of the item
|
|
7148
|
-
* @returns {WithTableItemRequestBuilder}
|
|
8118
|
+
* The accounts property
|
|
7149
8119
|
*/
|
|
7150
|
-
|
|
8120
|
+
get accounts(): AccountsRequestBuilder;
|
|
8121
|
+
/**
|
|
8122
|
+
* Get authenticated user profile in current account context
|
|
8123
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8124
|
+
* @returns {Promise<MeDto>}
|
|
8125
|
+
*/
|
|
8126
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MeDto | undefined>;
|
|
8127
|
+
/**
|
|
8128
|
+
* Get authenticated user profile in current account context
|
|
8129
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8130
|
+
* @returns {RequestInformation}
|
|
8131
|
+
*/
|
|
8132
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7151
8133
|
}
|
|
7152
8134
|
|
|
7153
8135
|
interface FindPostResponse$c extends AdditionalDataHolder, Parsable {
|
|
@@ -7158,7 +8140,7 @@ interface FindPostResponse$c extends AdditionalDataHolder, Parsable {
|
|
|
7158
8140
|
/**
|
|
7159
8141
|
* The data property
|
|
7160
8142
|
*/
|
|
7161
|
-
data?:
|
|
8143
|
+
data?: PartitionDto[] | null;
|
|
7162
8144
|
/**
|
|
7163
8145
|
* The object property
|
|
7164
8146
|
*/
|
|
@@ -7170,62 +8152,57 @@ interface FindPostResponse$c extends AdditionalDataHolder, Parsable {
|
|
|
7170
8152
|
}
|
|
7171
8153
|
type FindPostResponse_object$c = (typeof FindPostResponse_objectObject$c)[keyof typeof FindPostResponse_objectObject$c];
|
|
7172
8154
|
/**
|
|
7173
|
-
* Builds and executes requests for operations under /v1/
|
|
8155
|
+
* Builds and executes requests for operations under /v1/partitions/find
|
|
7174
8156
|
*/
|
|
7175
8157
|
interface FindRequestBuilder$c extends BaseRequestBuilder<FindRequestBuilder$c> {
|
|
7176
8158
|
/**
|
|
7177
|
-
*
|
|
7178
|
-
*/
|
|
7179
|
-
get table(): TableRequestBuilder;
|
|
7180
|
-
/**
|
|
7181
|
-
* Find a list of Item
|
|
8159
|
+
* Find a list of Partition
|
|
7182
8160
|
* @param body The request body
|
|
7183
8161
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7184
8162
|
* @returns {Promise<FindPostResponse>}
|
|
7185
8163
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7186
8164
|
*/
|
|
7187
|
-
post(body:
|
|
8165
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$c> | undefined): Promise<FindPostResponse$c | undefined>;
|
|
7188
8166
|
/**
|
|
7189
|
-
* Find a list of
|
|
8167
|
+
* Find a list of Partition
|
|
7190
8168
|
* @param body The request body
|
|
7191
8169
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7192
8170
|
* @returns {RequestInformation}
|
|
7193
8171
|
*/
|
|
7194
|
-
toPostRequestInformation(body:
|
|
8172
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$c> | undefined): RequestInformation;
|
|
7195
8173
|
}
|
|
7196
8174
|
/**
|
|
7197
|
-
* Find a list of
|
|
8175
|
+
* Find a list of Partition
|
|
7198
8176
|
*/
|
|
7199
8177
|
interface FindRequestBuilderPostQueryParameters$c {
|
|
7200
|
-
levelId?: string;
|
|
7201
8178
|
page?: number;
|
|
7202
|
-
partitionId?: string;
|
|
7203
8179
|
size?: number;
|
|
7204
8180
|
sort?: string;
|
|
7205
8181
|
sortOrder?: PostSortOrderQueryParameterType$c;
|
|
8182
|
+
tableId?: string;
|
|
7206
8183
|
}
|
|
7207
8184
|
type PostSortOrderQueryParameterType$c = (typeof PostSortOrderQueryParameterTypeObject$c)[keyof typeof PostSortOrderQueryParameterTypeObject$c];
|
|
7208
8185
|
declare const FindPostResponse_objectObject$c: {
|
|
7209
8186
|
readonly List: "list";
|
|
7210
8187
|
};
|
|
7211
8188
|
declare const PostSortOrderQueryParameterTypeObject$c: {
|
|
7212
|
-
readonly DESC: "DESC";
|
|
7213
8189
|
readonly ASC: "ASC";
|
|
8190
|
+
readonly DESC: "DESC";
|
|
7214
8191
|
};
|
|
7215
8192
|
|
|
7216
8193
|
/**
|
|
7217
|
-
* Builds and executes requests for operations under /v1/
|
|
8194
|
+
* Builds and executes requests for operations under /v1/partitions/{id}
|
|
7218
8195
|
*/
|
|
7219
|
-
interface
|
|
8196
|
+
interface PartitionsItemRequestBuilder extends BaseRequestBuilder<PartitionsItemRequestBuilder> {
|
|
7220
8197
|
/**
|
|
7221
|
-
* Get a
|
|
8198
|
+
* Get a Partition by id
|
|
7222
8199
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7223
|
-
* @returns {Promise<
|
|
7224
|
-
* @throws {
|
|
8200
|
+
* @returns {Promise<PartitionDto>}
|
|
8201
|
+
* @throws {PartitionDto400Error} error when the service returns a 400 status code
|
|
7225
8202
|
*/
|
|
7226
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<
|
|
8203
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PartitionDto | undefined>;
|
|
7227
8204
|
/**
|
|
7228
|
-
* Get a
|
|
8205
|
+
* Get a Partition by id
|
|
7229
8206
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7230
8207
|
* @returns {RequestInformation}
|
|
7231
8208
|
*/
|
|
@@ -7233,7 +8210,7 @@ interface ItemsItemRequestBuilder extends BaseRequestBuilder<ItemsItemRequestBui
|
|
|
7233
8210
|
}
|
|
7234
8211
|
|
|
7235
8212
|
type GetSortOrderQueryParameterType$c = (typeof GetSortOrderQueryParameterTypeObject$c)[keyof typeof GetSortOrderQueryParameterTypeObject$c];
|
|
7236
|
-
interface
|
|
8213
|
+
interface PartitionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7237
8214
|
/**
|
|
7238
8215
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7239
8216
|
*/
|
|
@@ -7241,62 +8218,60 @@ interface ItemsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
7241
8218
|
/**
|
|
7242
8219
|
* The data property
|
|
7243
8220
|
*/
|
|
7244
|
-
data?:
|
|
8221
|
+
data?: PartitionDto[] | null;
|
|
7245
8222
|
/**
|
|
7246
8223
|
* The object property
|
|
7247
8224
|
*/
|
|
7248
|
-
object?:
|
|
8225
|
+
object?: PartitionsGetResponse_object | null;
|
|
7249
8226
|
/**
|
|
7250
8227
|
* The totalElements property
|
|
7251
8228
|
*/
|
|
7252
8229
|
totalElements?: number | null;
|
|
7253
8230
|
}
|
|
7254
|
-
type
|
|
8231
|
+
type PartitionsGetResponse_object = (typeof PartitionsGetResponse_objectObject)[keyof typeof PartitionsGetResponse_objectObject];
|
|
7255
8232
|
/**
|
|
7256
|
-
* Builds and executes requests for operations under /v1/
|
|
8233
|
+
* Builds and executes requests for operations under /v1/partitions
|
|
7257
8234
|
*/
|
|
7258
|
-
interface
|
|
8235
|
+
interface PartitionsRequestBuilder extends BaseRequestBuilder<PartitionsRequestBuilder> {
|
|
7259
8236
|
/**
|
|
7260
8237
|
* The find property
|
|
7261
|
-
* @deprecated
|
|
7262
8238
|
*/
|
|
7263
8239
|
get find(): FindRequestBuilder$c;
|
|
7264
8240
|
/**
|
|
7265
|
-
* Gets an item from the ApiSdk.v1.
|
|
8241
|
+
* Gets an item from the ApiSdk.v1.partitions.item collection
|
|
7266
8242
|
* @param id Unique identifier of the item
|
|
7267
|
-
* @returns {
|
|
8243
|
+
* @returns {PartitionsItemRequestBuilder}
|
|
7268
8244
|
*/
|
|
7269
|
-
byId(id: string):
|
|
8245
|
+
byId(id: string): PartitionsItemRequestBuilder;
|
|
7270
8246
|
/**
|
|
7271
|
-
* Get a list of
|
|
8247
|
+
* Get a list of Partition
|
|
7272
8248
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7273
|
-
* @returns {Promise<
|
|
7274
|
-
* @throws {
|
|
7275
|
-
* @deprecated
|
|
8249
|
+
* @returns {Promise<PartitionsGetResponse>}
|
|
8250
|
+
* @throws {Partitions400Error} error when the service returns a 400 status code
|
|
7276
8251
|
*/
|
|
7277
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8252
|
+
get(requestConfiguration?: RequestConfiguration<PartitionsRequestBuilderGetQueryParameters> | undefined): Promise<PartitionsGetResponse | undefined>;
|
|
7278
8253
|
/**
|
|
7279
|
-
* Get a list of
|
|
8254
|
+
* Get a list of Partition
|
|
7280
8255
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7281
8256
|
* @returns {RequestInformation}
|
|
7282
|
-
* @deprecated
|
|
7283
8257
|
*/
|
|
7284
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
8258
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PartitionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
7285
8259
|
}
|
|
7286
8260
|
/**
|
|
7287
|
-
* Get a list of
|
|
8261
|
+
* Get a list of Partition
|
|
7288
8262
|
*/
|
|
7289
|
-
interface
|
|
8263
|
+
interface PartitionsRequestBuilderGetQueryParameters {
|
|
7290
8264
|
page?: number;
|
|
7291
8265
|
size?: number;
|
|
7292
8266
|
sort?: string;
|
|
7293
8267
|
sortOrder?: GetSortOrderQueryParameterType$c;
|
|
8268
|
+
tableId?: string;
|
|
7294
8269
|
}
|
|
7295
8270
|
declare const GetSortOrderQueryParameterTypeObject$c: {
|
|
7296
|
-
readonly DESC: "DESC";
|
|
7297
8271
|
readonly ASC: "ASC";
|
|
8272
|
+
readonly DESC: "DESC";
|
|
7298
8273
|
};
|
|
7299
|
-
declare const
|
|
8274
|
+
declare const PartitionsGetResponse_objectObject: {
|
|
7300
8275
|
readonly List: "list";
|
|
7301
8276
|
};
|
|
7302
8277
|
|
|
@@ -7308,7 +8283,7 @@ interface FindPostResponse$b extends AdditionalDataHolder, Parsable {
|
|
|
7308
8283
|
/**
|
|
7309
8284
|
* The data property
|
|
7310
8285
|
*/
|
|
7311
|
-
data?:
|
|
8286
|
+
data?: PartnerGroupDto[] | null;
|
|
7312
8287
|
/**
|
|
7313
8288
|
* The object property
|
|
7314
8289
|
*/
|
|
@@ -7320,11 +8295,11 @@ interface FindPostResponse$b extends AdditionalDataHolder, Parsable {
|
|
|
7320
8295
|
}
|
|
7321
8296
|
type FindPostResponse_object$b = (typeof FindPostResponse_objectObject$b)[keyof typeof FindPostResponse_objectObject$b];
|
|
7322
8297
|
/**
|
|
7323
|
-
* Builds and executes requests for operations under /v1/
|
|
8298
|
+
* Builds and executes requests for operations under /v1/partner-groups/find
|
|
7324
8299
|
*/
|
|
7325
8300
|
interface FindRequestBuilder$b extends BaseRequestBuilder<FindRequestBuilder$b> {
|
|
7326
8301
|
/**
|
|
7327
|
-
* Find a list of
|
|
8302
|
+
* Find a list of Partner Group
|
|
7328
8303
|
* @param body The request body
|
|
7329
8304
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7330
8305
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -7332,7 +8307,7 @@ interface FindRequestBuilder$b extends BaseRequestBuilder<FindRequestBuilder$b>
|
|
|
7332
8307
|
*/
|
|
7333
8308
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$b> | undefined): Promise<FindPostResponse$b | undefined>;
|
|
7334
8309
|
/**
|
|
7335
|
-
* Find a list of
|
|
8310
|
+
* Find a list of Partner Group
|
|
7336
8311
|
* @param body The request body
|
|
7337
8312
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7338
8313
|
* @returns {RequestInformation}
|
|
@@ -7340,45 +8315,107 @@ interface FindRequestBuilder$b extends BaseRequestBuilder<FindRequestBuilder$b>
|
|
|
7340
8315
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$b> | undefined): RequestInformation;
|
|
7341
8316
|
}
|
|
7342
8317
|
/**
|
|
7343
|
-
* Find a list of
|
|
8318
|
+
* Find a list of Partner Group
|
|
7344
8319
|
*/
|
|
7345
8320
|
interface FindRequestBuilderPostQueryParameters$b {
|
|
7346
8321
|
page?: number;
|
|
7347
8322
|
size?: number;
|
|
7348
8323
|
sort?: string;
|
|
7349
8324
|
sortOrder?: PostSortOrderQueryParameterType$b;
|
|
7350
|
-
tableId?: string;
|
|
7351
8325
|
}
|
|
7352
8326
|
type PostSortOrderQueryParameterType$b = (typeof PostSortOrderQueryParameterTypeObject$b)[keyof typeof PostSortOrderQueryParameterTypeObject$b];
|
|
7353
8327
|
declare const FindPostResponse_objectObject$b: {
|
|
7354
8328
|
readonly List: "list";
|
|
7355
8329
|
};
|
|
7356
8330
|
declare const PostSortOrderQueryParameterTypeObject$b: {
|
|
7357
|
-
readonly DESC: "DESC";
|
|
7358
8331
|
readonly ASC: "ASC";
|
|
8332
|
+
readonly DESC: "DESC";
|
|
7359
8333
|
};
|
|
7360
8334
|
|
|
7361
8335
|
/**
|
|
7362
|
-
* Builds and executes requests for operations under /v1/
|
|
8336
|
+
* Builds and executes requests for operations under /v1/partner-groups/{id}/add-members
|
|
7363
8337
|
*/
|
|
7364
|
-
interface
|
|
8338
|
+
interface AddMembersRequestBuilder$1 extends BaseRequestBuilder<AddMembersRequestBuilder$1> {
|
|
7365
8339
|
/**
|
|
7366
|
-
*
|
|
8340
|
+
* Add members to a partner group
|
|
8341
|
+
* @param body The request body
|
|
7367
8342
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7368
|
-
* @returns {Promise<
|
|
7369
|
-
* @throws {LevelDto400Error} error when the service returns a 400 status code
|
|
8343
|
+
* @returns {Promise<PartnerGroupDto>}
|
|
7370
8344
|
*/
|
|
7371
|
-
|
|
8345
|
+
post(body: PartnerGroupMembersDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PartnerGroupDto | undefined>;
|
|
7372
8346
|
/**
|
|
7373
|
-
*
|
|
8347
|
+
* Add members to a partner group
|
|
8348
|
+
* @param body The request body
|
|
8349
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8350
|
+
* @returns {RequestInformation}
|
|
8351
|
+
*/
|
|
8352
|
+
toPostRequestInformation(body: PartnerGroupMembersDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8353
|
+
}
|
|
8354
|
+
|
|
8355
|
+
/**
|
|
8356
|
+
* Builds and executes requests for operations under /v1/partner-groups/{id}/remove-members
|
|
8357
|
+
*/
|
|
8358
|
+
interface RemoveMembersRequestBuilder$1 extends BaseRequestBuilder<RemoveMembersRequestBuilder$1> {
|
|
8359
|
+
/**
|
|
8360
|
+
* Remove members from a partner group
|
|
8361
|
+
* @param body The request body
|
|
8362
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8363
|
+
* @returns {Promise<PartnerGroupDto>}
|
|
8364
|
+
*/
|
|
8365
|
+
post(body: PartnerGroupMembersDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PartnerGroupDto | undefined>;
|
|
8366
|
+
/**
|
|
8367
|
+
* Remove members from a partner group
|
|
8368
|
+
* @param body The request body
|
|
8369
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8370
|
+
* @returns {RequestInformation}
|
|
8371
|
+
*/
|
|
8372
|
+
toPostRequestInformation(body: PartnerGroupMembersDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8373
|
+
}
|
|
8374
|
+
|
|
8375
|
+
/**
|
|
8376
|
+
* Builds and executes requests for operations under /v1/partner-groups/{id}
|
|
8377
|
+
*/
|
|
8378
|
+
interface PartnerGroupsItemRequestBuilder extends BaseRequestBuilder<PartnerGroupsItemRequestBuilder> {
|
|
8379
|
+
/**
|
|
8380
|
+
* The addMembers property
|
|
8381
|
+
*/
|
|
8382
|
+
get addMembers(): AddMembersRequestBuilder$1;
|
|
8383
|
+
/**
|
|
8384
|
+
* The removeMembers property
|
|
8385
|
+
*/
|
|
8386
|
+
get removeMembers(): RemoveMembersRequestBuilder$1;
|
|
8387
|
+
/**
|
|
8388
|
+
* Get a Partner Group by id
|
|
8389
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8390
|
+
* @returns {Promise<PartnerGroupDto>}
|
|
8391
|
+
* @throws {PartnerGroupDto400Error} error when the service returns a 400 status code
|
|
8392
|
+
*/
|
|
8393
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PartnerGroupDto | undefined>;
|
|
8394
|
+
/**
|
|
8395
|
+
* Update a Partner Group
|
|
8396
|
+
* @param body The request body
|
|
8397
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8398
|
+
* @returns {Promise<PartnerGroupDto>}
|
|
8399
|
+
* @throws {PartnerGroupDto400Error} error when the service returns a 400 status code
|
|
8400
|
+
*/
|
|
8401
|
+
patch(body: UpdatePartnerGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PartnerGroupDto | undefined>;
|
|
8402
|
+
/**
|
|
8403
|
+
* Get a Partner Group by id
|
|
7374
8404
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7375
8405
|
* @returns {RequestInformation}
|
|
7376
8406
|
*/
|
|
7377
8407
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8408
|
+
/**
|
|
8409
|
+
* Update a Partner Group
|
|
8410
|
+
* @param body The request body
|
|
8411
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8412
|
+
* @returns {RequestInformation}
|
|
8413
|
+
*/
|
|
8414
|
+
toPatchRequestInformation(body: UpdatePartnerGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7378
8415
|
}
|
|
7379
8416
|
|
|
7380
8417
|
type GetSortOrderQueryParameterType$b = (typeof GetSortOrderQueryParameterTypeObject$b)[keyof typeof GetSortOrderQueryParameterTypeObject$b];
|
|
7381
|
-
interface
|
|
8418
|
+
interface PartnerGroupsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7382
8419
|
/**
|
|
7383
8420
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7384
8421
|
*/
|
|
@@ -7386,60 +8423,74 @@ interface LevelsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
7386
8423
|
/**
|
|
7387
8424
|
* The data property
|
|
7388
8425
|
*/
|
|
7389
|
-
data?:
|
|
8426
|
+
data?: PartnerGroupDto[] | null;
|
|
7390
8427
|
/**
|
|
7391
8428
|
* The object property
|
|
7392
8429
|
*/
|
|
7393
|
-
object?:
|
|
8430
|
+
object?: PartnerGroupsGetResponse_object | null;
|
|
7394
8431
|
/**
|
|
7395
8432
|
* The totalElements property
|
|
7396
8433
|
*/
|
|
7397
8434
|
totalElements?: number | null;
|
|
7398
8435
|
}
|
|
7399
|
-
type
|
|
8436
|
+
type PartnerGroupsGetResponse_object = (typeof PartnerGroupsGetResponse_objectObject)[keyof typeof PartnerGroupsGetResponse_objectObject];
|
|
7400
8437
|
/**
|
|
7401
|
-
* Builds and executes requests for operations under /v1/
|
|
8438
|
+
* Builds and executes requests for operations under /v1/partner-groups
|
|
7402
8439
|
*/
|
|
7403
|
-
interface
|
|
8440
|
+
interface PartnerGroupsRequestBuilder extends BaseRequestBuilder<PartnerGroupsRequestBuilder> {
|
|
7404
8441
|
/**
|
|
7405
8442
|
* The find property
|
|
7406
8443
|
*/
|
|
7407
8444
|
get find(): FindRequestBuilder$b;
|
|
7408
8445
|
/**
|
|
7409
|
-
* Gets an item from the ApiSdk.v1.
|
|
8446
|
+
* Gets an item from the ApiSdk.v1.partnerGroups.item collection
|
|
7410
8447
|
* @param id Unique identifier of the item
|
|
7411
|
-
* @returns {
|
|
8448
|
+
* @returns {PartnerGroupsItemRequestBuilder}
|
|
7412
8449
|
*/
|
|
7413
|
-
byId(id: string):
|
|
8450
|
+
byId(id: string): PartnerGroupsItemRequestBuilder;
|
|
7414
8451
|
/**
|
|
7415
|
-
* Get a list of
|
|
8452
|
+
* Get a list of Partner Group
|
|
7416
8453
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7417
|
-
* @returns {Promise<
|
|
7418
|
-
* @throws {
|
|
8454
|
+
* @returns {Promise<PartnerGroupsGetResponse>}
|
|
8455
|
+
* @throws {PartnerGroups400Error} error when the service returns a 400 status code
|
|
7419
8456
|
*/
|
|
7420
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8457
|
+
get(requestConfiguration?: RequestConfiguration<PartnerGroupsRequestBuilderGetQueryParameters> | undefined): Promise<PartnerGroupsGetResponse | undefined>;
|
|
7421
8458
|
/**
|
|
7422
|
-
*
|
|
8459
|
+
* Create a Partner Group
|
|
8460
|
+
* @param body The request body
|
|
8461
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8462
|
+
* @returns {Promise<PartnerGroupDto>}
|
|
8463
|
+
* @throws {PartnerGroupDto400Error} error when the service returns a 400 status code
|
|
8464
|
+
*/
|
|
8465
|
+
post(body: CreatePartnerGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PartnerGroupDto | undefined>;
|
|
8466
|
+
/**
|
|
8467
|
+
* Get a list of Partner Group
|
|
7423
8468
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7424
8469
|
* @returns {RequestInformation}
|
|
7425
8470
|
*/
|
|
7426
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
8471
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PartnerGroupsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
8472
|
+
/**
|
|
8473
|
+
* Create a Partner Group
|
|
8474
|
+
* @param body The request body
|
|
8475
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8476
|
+
* @returns {RequestInformation}
|
|
8477
|
+
*/
|
|
8478
|
+
toPostRequestInformation(body: CreatePartnerGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7427
8479
|
}
|
|
7428
8480
|
/**
|
|
7429
|
-
* Get a list of
|
|
8481
|
+
* Get a list of Partner Group
|
|
7430
8482
|
*/
|
|
7431
|
-
interface
|
|
8483
|
+
interface PartnerGroupsRequestBuilderGetQueryParameters {
|
|
7432
8484
|
page?: number;
|
|
7433
8485
|
size?: number;
|
|
7434
8486
|
sort?: string;
|
|
7435
8487
|
sortOrder?: GetSortOrderQueryParameterType$b;
|
|
7436
|
-
tableId?: string;
|
|
7437
8488
|
}
|
|
7438
8489
|
declare const GetSortOrderQueryParameterTypeObject$b: {
|
|
7439
|
-
readonly DESC: "DESC";
|
|
7440
8490
|
readonly ASC: "ASC";
|
|
8491
|
+
readonly DESC: "DESC";
|
|
7441
8492
|
};
|
|
7442
|
-
declare const
|
|
8493
|
+
declare const PartnerGroupsGetResponse_objectObject: {
|
|
7443
8494
|
readonly List: "list";
|
|
7444
8495
|
};
|
|
7445
8496
|
|
|
@@ -7451,7 +8502,7 @@ interface FindPostResponse$a extends AdditionalDataHolder, Parsable {
|
|
|
7451
8502
|
/**
|
|
7452
8503
|
* The data property
|
|
7453
8504
|
*/
|
|
7454
|
-
data?:
|
|
8505
|
+
data?: PartnerInvitationDto[] | null;
|
|
7455
8506
|
/**
|
|
7456
8507
|
* The object property
|
|
7457
8508
|
*/
|
|
@@ -7463,11 +8514,11 @@ interface FindPostResponse$a extends AdditionalDataHolder, Parsable {
|
|
|
7463
8514
|
}
|
|
7464
8515
|
type FindPostResponse_object$a = (typeof FindPostResponse_objectObject$a)[keyof typeof FindPostResponse_objectObject$a];
|
|
7465
8516
|
/**
|
|
7466
|
-
* Builds and executes requests for operations under /v1/
|
|
8517
|
+
* Builds and executes requests for operations under /v1/partner-invitations/find
|
|
7467
8518
|
*/
|
|
7468
8519
|
interface FindRequestBuilder$a extends BaseRequestBuilder<FindRequestBuilder$a> {
|
|
7469
8520
|
/**
|
|
7470
|
-
* Find a list of
|
|
8521
|
+
* Find a list of Partner Invitation
|
|
7471
8522
|
* @param body The request body
|
|
7472
8523
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7473
8524
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -7475,7 +8526,7 @@ interface FindRequestBuilder$a extends BaseRequestBuilder<FindRequestBuilder$a>
|
|
|
7475
8526
|
*/
|
|
7476
8527
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$a> | undefined): Promise<FindPostResponse$a | undefined>;
|
|
7477
8528
|
/**
|
|
7478
|
-
* Find a list of
|
|
8529
|
+
* Find a list of Partner Invitation
|
|
7479
8530
|
* @param body The request body
|
|
7480
8531
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7481
8532
|
* @returns {RequestInformation}
|
|
@@ -7483,37 +8534,36 @@ interface FindRequestBuilder$a extends BaseRequestBuilder<FindRequestBuilder$a>
|
|
|
7483
8534
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$a> | undefined): RequestInformation;
|
|
7484
8535
|
}
|
|
7485
8536
|
/**
|
|
7486
|
-
* Find a list of
|
|
8537
|
+
* Find a list of Partner Invitation
|
|
7487
8538
|
*/
|
|
7488
8539
|
interface FindRequestBuilderPostQueryParameters$a {
|
|
7489
8540
|
page?: number;
|
|
7490
8541
|
size?: number;
|
|
7491
8542
|
sort?: string;
|
|
7492
8543
|
sortOrder?: PostSortOrderQueryParameterType$a;
|
|
7493
|
-
tableId?: string;
|
|
7494
8544
|
}
|
|
7495
8545
|
type PostSortOrderQueryParameterType$a = (typeof PostSortOrderQueryParameterTypeObject$a)[keyof typeof PostSortOrderQueryParameterTypeObject$a];
|
|
7496
8546
|
declare const FindPostResponse_objectObject$a: {
|
|
7497
8547
|
readonly List: "list";
|
|
7498
8548
|
};
|
|
7499
8549
|
declare const PostSortOrderQueryParameterTypeObject$a: {
|
|
7500
|
-
readonly DESC: "DESC";
|
|
7501
8550
|
readonly ASC: "ASC";
|
|
8551
|
+
readonly DESC: "DESC";
|
|
7502
8552
|
};
|
|
7503
8553
|
|
|
7504
8554
|
/**
|
|
7505
|
-
* Builds and executes requests for operations under /v1/
|
|
8555
|
+
* Builds and executes requests for operations under /v1/partner-invitations/{id}
|
|
7506
8556
|
*/
|
|
7507
|
-
interface
|
|
8557
|
+
interface PartnerInvitationsItemRequestBuilder extends BaseRequestBuilder<PartnerInvitationsItemRequestBuilder> {
|
|
7508
8558
|
/**
|
|
7509
|
-
* Get a
|
|
8559
|
+
* Get a Partner Invitation by id
|
|
7510
8560
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7511
|
-
* @returns {Promise<
|
|
7512
|
-
* @throws {
|
|
8561
|
+
* @returns {Promise<PartnerInvitationDto>}
|
|
8562
|
+
* @throws {PartnerInvitationDto400Error} error when the service returns a 400 status code
|
|
7513
8563
|
*/
|
|
7514
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<
|
|
8564
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PartnerInvitationDto | undefined>;
|
|
7515
8565
|
/**
|
|
7516
|
-
* Get a
|
|
8566
|
+
* Get a Partner Invitation by id
|
|
7517
8567
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7518
8568
|
* @returns {RequestInformation}
|
|
7519
8569
|
*/
|
|
@@ -7521,7 +8571,7 @@ interface MatrixFieldsItemRequestBuilder extends BaseRequestBuilder<MatrixFields
|
|
|
7521
8571
|
}
|
|
7522
8572
|
|
|
7523
8573
|
type GetSortOrderQueryParameterType$a = (typeof GetSortOrderQueryParameterTypeObject$a)[keyof typeof GetSortOrderQueryParameterTypeObject$a];
|
|
7524
|
-
interface
|
|
8574
|
+
interface PartnerInvitationsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7525
8575
|
/**
|
|
7526
8576
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7527
8577
|
*/
|
|
@@ -7529,60 +8579,59 @@ interface MatrixFieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
7529
8579
|
/**
|
|
7530
8580
|
* The data property
|
|
7531
8581
|
*/
|
|
7532
|
-
data?:
|
|
8582
|
+
data?: PartnerInvitationDto[] | null;
|
|
7533
8583
|
/**
|
|
7534
8584
|
* The object property
|
|
7535
8585
|
*/
|
|
7536
|
-
object?:
|
|
8586
|
+
object?: PartnerInvitationsGetResponse_object | null;
|
|
7537
8587
|
/**
|
|
7538
8588
|
* The totalElements property
|
|
7539
8589
|
*/
|
|
7540
8590
|
totalElements?: number | null;
|
|
7541
8591
|
}
|
|
7542
|
-
type
|
|
8592
|
+
type PartnerInvitationsGetResponse_object = (typeof PartnerInvitationsGetResponse_objectObject)[keyof typeof PartnerInvitationsGetResponse_objectObject];
|
|
7543
8593
|
/**
|
|
7544
|
-
* Builds and executes requests for operations under /v1/
|
|
8594
|
+
* Builds and executes requests for operations under /v1/partner-invitations
|
|
7545
8595
|
*/
|
|
7546
|
-
interface
|
|
8596
|
+
interface PartnerInvitationsRequestBuilder extends BaseRequestBuilder<PartnerInvitationsRequestBuilder> {
|
|
7547
8597
|
/**
|
|
7548
8598
|
* The find property
|
|
7549
8599
|
*/
|
|
7550
8600
|
get find(): FindRequestBuilder$a;
|
|
7551
8601
|
/**
|
|
7552
|
-
* Gets an item from the ApiSdk.v1.
|
|
8602
|
+
* Gets an item from the ApiSdk.v1.partnerInvitations.item collection
|
|
7553
8603
|
* @param id Unique identifier of the item
|
|
7554
|
-
* @returns {
|
|
8604
|
+
* @returns {PartnerInvitationsItemRequestBuilder}
|
|
7555
8605
|
*/
|
|
7556
|
-
byId(id: string):
|
|
8606
|
+
byId(id: string): PartnerInvitationsItemRequestBuilder;
|
|
7557
8607
|
/**
|
|
7558
|
-
* Get a list of
|
|
8608
|
+
* Get a list of Partner Invitation
|
|
7559
8609
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7560
|
-
* @returns {Promise<
|
|
7561
|
-
* @throws {
|
|
8610
|
+
* @returns {Promise<PartnerInvitationsGetResponse>}
|
|
8611
|
+
* @throws {PartnerInvitations400Error} error when the service returns a 400 status code
|
|
7562
8612
|
*/
|
|
7563
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8613
|
+
get(requestConfiguration?: RequestConfiguration<PartnerInvitationsRequestBuilderGetQueryParameters> | undefined): Promise<PartnerInvitationsGetResponse | undefined>;
|
|
7564
8614
|
/**
|
|
7565
|
-
* Get a list of
|
|
8615
|
+
* Get a list of Partner Invitation
|
|
7566
8616
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7567
8617
|
* @returns {RequestInformation}
|
|
7568
8618
|
*/
|
|
7569
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
8619
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PartnerInvitationsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
7570
8620
|
}
|
|
7571
8621
|
/**
|
|
7572
|
-
* Get a list of
|
|
8622
|
+
* Get a list of Partner Invitation
|
|
7573
8623
|
*/
|
|
7574
|
-
interface
|
|
8624
|
+
interface PartnerInvitationsRequestBuilderGetQueryParameters {
|
|
7575
8625
|
page?: number;
|
|
7576
8626
|
size?: number;
|
|
7577
8627
|
sort?: string;
|
|
7578
8628
|
sortOrder?: GetSortOrderQueryParameterType$a;
|
|
7579
|
-
tableId?: string;
|
|
7580
8629
|
}
|
|
7581
8630
|
declare const GetSortOrderQueryParameterTypeObject$a: {
|
|
7582
|
-
readonly DESC: "DESC";
|
|
7583
8631
|
readonly ASC: "ASC";
|
|
8632
|
+
readonly DESC: "DESC";
|
|
7584
8633
|
};
|
|
7585
|
-
declare const
|
|
8634
|
+
declare const PartnerInvitationsGetResponse_objectObject: {
|
|
7586
8635
|
readonly List: "list";
|
|
7587
8636
|
};
|
|
7588
8637
|
|
|
@@ -7594,7 +8643,7 @@ interface FindPostResponse$9 extends AdditionalDataHolder, Parsable {
|
|
|
7594
8643
|
/**
|
|
7595
8644
|
* The data property
|
|
7596
8645
|
*/
|
|
7597
|
-
data?:
|
|
8646
|
+
data?: PartnerDto[] | null;
|
|
7598
8647
|
/**
|
|
7599
8648
|
* The object property
|
|
7600
8649
|
*/
|
|
@@ -7606,11 +8655,11 @@ interface FindPostResponse$9 extends AdditionalDataHolder, Parsable {
|
|
|
7606
8655
|
}
|
|
7607
8656
|
type FindPostResponse_object$9 = (typeof FindPostResponse_objectObject$9)[keyof typeof FindPostResponse_objectObject$9];
|
|
7608
8657
|
/**
|
|
7609
|
-
* Builds and executes requests for operations under /v1/
|
|
8658
|
+
* Builds and executes requests for operations under /v1/partners/find
|
|
7610
8659
|
*/
|
|
7611
8660
|
interface FindRequestBuilder$9 extends BaseRequestBuilder<FindRequestBuilder$9> {
|
|
7612
8661
|
/**
|
|
7613
|
-
* Find a list of
|
|
8662
|
+
* Find a list of Partner
|
|
7614
8663
|
* @param body The request body
|
|
7615
8664
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7616
8665
|
* @returns {Promise<FindPostResponse>}
|
|
@@ -7618,7 +8667,7 @@ interface FindRequestBuilder$9 extends BaseRequestBuilder<FindRequestBuilder$9>
|
|
|
7618
8667
|
*/
|
|
7619
8668
|
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$9> | undefined): Promise<FindPostResponse$9 | undefined>;
|
|
7620
8669
|
/**
|
|
7621
|
-
* Find a list of
|
|
8670
|
+
* Find a list of Partner
|
|
7622
8671
|
* @param body The request body
|
|
7623
8672
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7624
8673
|
* @returns {RequestInformation}
|
|
@@ -7626,37 +8675,36 @@ interface FindRequestBuilder$9 extends BaseRequestBuilder<FindRequestBuilder$9>
|
|
|
7626
8675
|
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$9> | undefined): RequestInformation;
|
|
7627
8676
|
}
|
|
7628
8677
|
/**
|
|
7629
|
-
* Find a list of
|
|
8678
|
+
* Find a list of Partner
|
|
7630
8679
|
*/
|
|
7631
8680
|
interface FindRequestBuilderPostQueryParameters$9 {
|
|
7632
8681
|
page?: number;
|
|
7633
8682
|
size?: number;
|
|
7634
8683
|
sort?: string;
|
|
7635
8684
|
sortOrder?: PostSortOrderQueryParameterType$9;
|
|
7636
|
-
tableId?: string;
|
|
7637
8685
|
}
|
|
7638
8686
|
type PostSortOrderQueryParameterType$9 = (typeof PostSortOrderQueryParameterTypeObject$9)[keyof typeof PostSortOrderQueryParameterTypeObject$9];
|
|
7639
8687
|
declare const FindPostResponse_objectObject$9: {
|
|
7640
8688
|
readonly List: "list";
|
|
7641
8689
|
};
|
|
7642
8690
|
declare const PostSortOrderQueryParameterTypeObject$9: {
|
|
7643
|
-
readonly DESC: "DESC";
|
|
7644
8691
|
readonly ASC: "ASC";
|
|
8692
|
+
readonly DESC: "DESC";
|
|
7645
8693
|
};
|
|
7646
8694
|
|
|
7647
8695
|
/**
|
|
7648
|
-
* Builds and executes requests for operations under /v1/
|
|
8696
|
+
* Builds and executes requests for operations under /v1/partners/{id}
|
|
7649
8697
|
*/
|
|
7650
|
-
interface
|
|
8698
|
+
interface PartnersItemRequestBuilder extends BaseRequestBuilder<PartnersItemRequestBuilder> {
|
|
7651
8699
|
/**
|
|
7652
|
-
* Get a
|
|
8700
|
+
* Get a Partner by id
|
|
7653
8701
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7654
|
-
* @returns {Promise<
|
|
7655
|
-
* @throws {
|
|
8702
|
+
* @returns {Promise<PartnerDto>}
|
|
8703
|
+
* @throws {PartnerDto400Error} error when the service returns a 400 status code
|
|
7656
8704
|
*/
|
|
7657
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<
|
|
8705
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PartnerDto | undefined>;
|
|
7658
8706
|
/**
|
|
7659
|
-
* Get a
|
|
8707
|
+
* Get a Partner by id
|
|
7660
8708
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7661
8709
|
* @returns {RequestInformation}
|
|
7662
8710
|
*/
|
|
@@ -7664,7 +8712,7 @@ interface PartitionsItemRequestBuilder extends BaseRequestBuilder<PartitionsItem
|
|
|
7664
8712
|
}
|
|
7665
8713
|
|
|
7666
8714
|
type GetSortOrderQueryParameterType$9 = (typeof GetSortOrderQueryParameterTypeObject$9)[keyof typeof GetSortOrderQueryParameterTypeObject$9];
|
|
7667
|
-
interface
|
|
8715
|
+
interface PartnersGetResponse extends AdditionalDataHolder, Parsable {
|
|
7668
8716
|
/**
|
|
7669
8717
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7670
8718
|
*/
|
|
@@ -7672,60 +8720,59 @@ interface PartitionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
|
7672
8720
|
/**
|
|
7673
8721
|
* The data property
|
|
7674
8722
|
*/
|
|
7675
|
-
data?:
|
|
8723
|
+
data?: PartnerDto[] | null;
|
|
7676
8724
|
/**
|
|
7677
8725
|
* The object property
|
|
7678
8726
|
*/
|
|
7679
|
-
object?:
|
|
8727
|
+
object?: PartnersGetResponse_object | null;
|
|
7680
8728
|
/**
|
|
7681
8729
|
* The totalElements property
|
|
7682
8730
|
*/
|
|
7683
8731
|
totalElements?: number | null;
|
|
7684
8732
|
}
|
|
7685
|
-
type
|
|
8733
|
+
type PartnersGetResponse_object = (typeof PartnersGetResponse_objectObject)[keyof typeof PartnersGetResponse_objectObject];
|
|
7686
8734
|
/**
|
|
7687
|
-
* Builds and executes requests for operations under /v1/
|
|
8735
|
+
* Builds and executes requests for operations under /v1/partners
|
|
7688
8736
|
*/
|
|
7689
|
-
interface
|
|
8737
|
+
interface PartnersRequestBuilder extends BaseRequestBuilder<PartnersRequestBuilder> {
|
|
7690
8738
|
/**
|
|
7691
8739
|
* The find property
|
|
7692
8740
|
*/
|
|
7693
8741
|
get find(): FindRequestBuilder$9;
|
|
7694
8742
|
/**
|
|
7695
|
-
* Gets an item from the ApiSdk.v1.
|
|
8743
|
+
* Gets an item from the ApiSdk.v1.partners.item collection
|
|
7696
8744
|
* @param id Unique identifier of the item
|
|
7697
|
-
* @returns {
|
|
8745
|
+
* @returns {PartnersItemRequestBuilder}
|
|
7698
8746
|
*/
|
|
7699
|
-
byId(id: string):
|
|
8747
|
+
byId(id: string): PartnersItemRequestBuilder;
|
|
7700
8748
|
/**
|
|
7701
|
-
* Get a list of
|
|
8749
|
+
* Get a list of Partner
|
|
7702
8750
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7703
|
-
* @returns {Promise<
|
|
7704
|
-
* @throws {
|
|
8751
|
+
* @returns {Promise<PartnersGetResponse>}
|
|
8752
|
+
* @throws {Partners400Error} error when the service returns a 400 status code
|
|
7705
8753
|
*/
|
|
7706
|
-
get(requestConfiguration?: RequestConfiguration<
|
|
8754
|
+
get(requestConfiguration?: RequestConfiguration<PartnersRequestBuilderGetQueryParameters> | undefined): Promise<PartnersGetResponse | undefined>;
|
|
7707
8755
|
/**
|
|
7708
|
-
* Get a list of
|
|
8756
|
+
* Get a list of Partner
|
|
7709
8757
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7710
8758
|
* @returns {RequestInformation}
|
|
7711
8759
|
*/
|
|
7712
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<
|
|
8760
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PartnersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
7713
8761
|
}
|
|
7714
8762
|
/**
|
|
7715
|
-
* Get a list of
|
|
8763
|
+
* Get a list of Partner
|
|
7716
8764
|
*/
|
|
7717
|
-
interface
|
|
8765
|
+
interface PartnersRequestBuilderGetQueryParameters {
|
|
7718
8766
|
page?: number;
|
|
7719
8767
|
size?: number;
|
|
7720
8768
|
sort?: string;
|
|
7721
8769
|
sortOrder?: GetSortOrderQueryParameterType$9;
|
|
7722
|
-
tableId?: string;
|
|
7723
8770
|
}
|
|
7724
8771
|
declare const GetSortOrderQueryParameterTypeObject$9: {
|
|
7725
|
-
readonly DESC: "DESC";
|
|
7726
8772
|
readonly ASC: "ASC";
|
|
8773
|
+
readonly DESC: "DESC";
|
|
7727
8774
|
};
|
|
7728
|
-
declare const
|
|
8775
|
+
declare const PartnersGetResponse_objectObject: {
|
|
7729
8776
|
readonly List: "list";
|
|
7730
8777
|
};
|
|
7731
8778
|
|
|
@@ -7782,8 +8829,8 @@ declare const FindPostResponse_objectObject$8: {
|
|
|
7782
8829
|
readonly List: "list";
|
|
7783
8830
|
};
|
|
7784
8831
|
declare const PostSortOrderQueryParameterTypeObject$8: {
|
|
7785
|
-
readonly DESC: "DESC";
|
|
7786
8832
|
readonly ASC: "ASC";
|
|
8833
|
+
readonly DESC: "DESC";
|
|
7787
8834
|
};
|
|
7788
8835
|
|
|
7789
8836
|
/**
|
|
@@ -7893,8 +8940,8 @@ interface PublicationsRequestBuilderGetQueryParameters {
|
|
|
7893
8940
|
sortOrder?: GetSortOrderQueryParameterType$8;
|
|
7894
8941
|
}
|
|
7895
8942
|
declare const GetSortOrderQueryParameterTypeObject$8: {
|
|
7896
|
-
readonly DESC: "DESC";
|
|
7897
8943
|
readonly ASC: "ASC";
|
|
8944
|
+
readonly DESC: "DESC";
|
|
7898
8945
|
};
|
|
7899
8946
|
declare const PublicationsGetResponse_objectObject: {
|
|
7900
8947
|
readonly List: "list";
|
|
@@ -7955,8 +9002,8 @@ declare const FindPostResponse_objectObject$7: {
|
|
|
7955
9002
|
readonly List: "list";
|
|
7956
9003
|
};
|
|
7957
9004
|
declare const PostSortOrderQueryParameterTypeObject$7: {
|
|
7958
|
-
readonly DESC: "DESC";
|
|
7959
9005
|
readonly ASC: "ASC";
|
|
9006
|
+
readonly DESC: "DESC";
|
|
7960
9007
|
};
|
|
7961
9008
|
|
|
7962
9009
|
/**
|
|
@@ -8038,8 +9085,8 @@ interface ScreenColumnsRequestBuilderGetQueryParameters {
|
|
|
8038
9085
|
sortOrder?: GetSortOrderQueryParameterType$7;
|
|
8039
9086
|
}
|
|
8040
9087
|
declare const GetSortOrderQueryParameterTypeObject$7: {
|
|
8041
|
-
readonly DESC: "DESC";
|
|
8042
9088
|
readonly ASC: "ASC";
|
|
9089
|
+
readonly DESC: "DESC";
|
|
8043
9090
|
};
|
|
8044
9091
|
declare const ScreenColumnsGetResponse_objectObject: {
|
|
8045
9092
|
readonly List: "list";
|
|
@@ -8099,8 +9146,8 @@ declare const FindPostResponse_objectObject$6: {
|
|
|
8099
9146
|
readonly List: "list";
|
|
8100
9147
|
};
|
|
8101
9148
|
declare const PostSortOrderQueryParameterTypeObject$6: {
|
|
8102
|
-
readonly DESC: "DESC";
|
|
8103
9149
|
readonly ASC: "ASC";
|
|
9150
|
+
readonly DESC: "DESC";
|
|
8104
9151
|
};
|
|
8105
9152
|
|
|
8106
9153
|
/**
|
|
@@ -8181,8 +9228,8 @@ interface ScreensRequestBuilderGetQueryParameters {
|
|
|
8181
9228
|
tableId?: string;
|
|
8182
9229
|
}
|
|
8183
9230
|
declare const GetSortOrderQueryParameterTypeObject$6: {
|
|
8184
|
-
readonly DESC: "DESC";
|
|
8185
9231
|
readonly ASC: "ASC";
|
|
9232
|
+
readonly DESC: "DESC";
|
|
8186
9233
|
};
|
|
8187
9234
|
declare const ScreensGetResponse_objectObject: {
|
|
8188
9235
|
readonly List: "list";
|
|
@@ -8242,8 +9289,8 @@ declare const FindPostResponse_objectObject$5: {
|
|
|
8242
9289
|
readonly List: "list";
|
|
8243
9290
|
};
|
|
8244
9291
|
declare const PostSortOrderQueryParameterTypeObject$5: {
|
|
8245
|
-
readonly DESC: "DESC";
|
|
8246
9292
|
readonly ASC: "ASC";
|
|
9293
|
+
readonly DESC: "DESC";
|
|
8247
9294
|
};
|
|
8248
9295
|
|
|
8249
9296
|
/**
|
|
@@ -8324,8 +9371,8 @@ interface ScreenSectionsRequestBuilderGetQueryParameters {
|
|
|
8324
9371
|
sortOrder?: GetSortOrderQueryParameterType$5;
|
|
8325
9372
|
}
|
|
8326
9373
|
declare const GetSortOrderQueryParameterTypeObject$5: {
|
|
8327
|
-
readonly DESC: "DESC";
|
|
8328
9374
|
readonly ASC: "ASC";
|
|
9375
|
+
readonly DESC: "DESC";
|
|
8329
9376
|
};
|
|
8330
9377
|
declare const ScreenSectionsGetResponse_objectObject: {
|
|
8331
9378
|
readonly List: "list";
|
|
@@ -8385,8 +9432,8 @@ declare const FindPostResponse_objectObject$4: {
|
|
|
8385
9432
|
readonly List: "list";
|
|
8386
9433
|
};
|
|
8387
9434
|
declare const PostSortOrderQueryParameterTypeObject$4: {
|
|
8388
|
-
readonly DESC: "DESC";
|
|
8389
9435
|
readonly ASC: "ASC";
|
|
9436
|
+
readonly DESC: "DESC";
|
|
8390
9437
|
};
|
|
8391
9438
|
|
|
8392
9439
|
/**
|
|
@@ -8467,8 +9514,8 @@ interface SectionsRequestBuilderGetQueryParameters {
|
|
|
8467
9514
|
tableId?: string;
|
|
8468
9515
|
}
|
|
8469
9516
|
declare const GetSortOrderQueryParameterTypeObject$4: {
|
|
8470
|
-
readonly DESC: "DESC";
|
|
8471
9517
|
readonly ASC: "ASC";
|
|
9518
|
+
readonly DESC: "DESC";
|
|
8472
9519
|
};
|
|
8473
9520
|
declare const SectionsGetResponse_objectObject: {
|
|
8474
9521
|
readonly List: "list";
|
|
@@ -8527,10 +9574,28 @@ declare const FindPostResponse_objectObject$3: {
|
|
|
8527
9574
|
readonly List: "list";
|
|
8528
9575
|
};
|
|
8529
9576
|
declare const PostSortOrderQueryParameterTypeObject$3: {
|
|
8530
|
-
readonly DESC: "DESC";
|
|
8531
9577
|
readonly ASC: "ASC";
|
|
9578
|
+
readonly DESC: "DESC";
|
|
8532
9579
|
};
|
|
8533
9580
|
|
|
9581
|
+
interface ApplyPostRequestBody extends AdditionalDataHolder, Parsable {
|
|
9582
|
+
/**
|
|
9583
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9584
|
+
*/
|
|
9585
|
+
additionalData?: Record<string, unknown>;
|
|
9586
|
+
/**
|
|
9587
|
+
* The compositeFields property
|
|
9588
|
+
*/
|
|
9589
|
+
compositeFields?: ApplySuggestionOnCompositeDto[] | null;
|
|
9590
|
+
/**
|
|
9591
|
+
* The fieldsKey property
|
|
9592
|
+
*/
|
|
9593
|
+
fieldsKey?: string[] | null;
|
|
9594
|
+
/**
|
|
9595
|
+
* The isAcknowledged property
|
|
9596
|
+
*/
|
|
9597
|
+
isAcknowledged?: boolean | null;
|
|
9598
|
+
}
|
|
8534
9599
|
/**
|
|
8535
9600
|
* Builds and executes requests for operations under /v1/suggestions/{id}/apply
|
|
8536
9601
|
*/
|
|
@@ -8541,16 +9606,26 @@ interface ApplyRequestBuilder extends BaseRequestBuilder<ApplyRequestBuilder> {
|
|
|
8541
9606
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8542
9607
|
* @returns {Promise<ArrayBuffer>}
|
|
8543
9608
|
*/
|
|
8544
|
-
post(body:
|
|
9609
|
+
post(body: ApplyPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
8545
9610
|
/**
|
|
8546
9611
|
* apply a suggestion
|
|
8547
9612
|
* @param body The request body
|
|
8548
9613
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8549
9614
|
* @returns {RequestInformation}
|
|
8550
9615
|
*/
|
|
8551
|
-
toPostRequestInformation(body:
|
|
9616
|
+
toPostRequestInformation(body: ApplyPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8552
9617
|
}
|
|
8553
9618
|
|
|
9619
|
+
interface ApplyAllPostRequestBody extends AdditionalDataHolder, Parsable {
|
|
9620
|
+
/**
|
|
9621
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9622
|
+
*/
|
|
9623
|
+
additionalData?: Record<string, unknown>;
|
|
9624
|
+
/**
|
|
9625
|
+
* The isAcknowledged property
|
|
9626
|
+
*/
|
|
9627
|
+
isAcknowledged?: boolean | null;
|
|
9628
|
+
}
|
|
8554
9629
|
/**
|
|
8555
9630
|
* Builds and executes requests for operations under /v1/suggestions/{id}/apply-all
|
|
8556
9631
|
*/
|
|
@@ -8561,14 +9636,14 @@ interface ApplyAllRequestBuilder extends BaseRequestBuilder<ApplyAllRequestBuild
|
|
|
8561
9636
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8562
9637
|
* @returns {Promise<ArrayBuffer>}
|
|
8563
9638
|
*/
|
|
8564
|
-
post(body:
|
|
9639
|
+
post(body: ApplyAllPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
8565
9640
|
/**
|
|
8566
9641
|
* apply all fields and deleted fields from a suggestion
|
|
8567
9642
|
* @param body The request body
|
|
8568
9643
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8569
9644
|
* @returns {RequestInformation}
|
|
8570
9645
|
*/
|
|
8571
|
-
toPostRequestInformation(body:
|
|
9646
|
+
toPostRequestInformation(body: ApplyAllPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8572
9647
|
}
|
|
8573
9648
|
|
|
8574
9649
|
/**
|
|
@@ -8656,8 +9731,8 @@ interface SuggestionsRequestBuilderGetQueryParameters {
|
|
|
8656
9731
|
sortOrder?: GetSortOrderQueryParameterType$3;
|
|
8657
9732
|
}
|
|
8658
9733
|
declare const GetSortOrderQueryParameterTypeObject$3: {
|
|
8659
|
-
readonly DESC: "DESC";
|
|
8660
9734
|
readonly ASC: "ASC";
|
|
9735
|
+
readonly DESC: "DESC";
|
|
8661
9736
|
};
|
|
8662
9737
|
declare const SuggestionsGetResponse_objectObject: {
|
|
8663
9738
|
readonly List: "list";
|
|
@@ -8716,8 +9791,8 @@ declare const FindPostResponse_objectObject$2: {
|
|
|
8716
9791
|
readonly List: "list";
|
|
8717
9792
|
};
|
|
8718
9793
|
declare const PostSortOrderQueryParameterTypeObject$2: {
|
|
8719
|
-
readonly DESC: "DESC";
|
|
8720
9794
|
readonly ASC: "ASC";
|
|
9795
|
+
readonly DESC: "DESC";
|
|
8721
9796
|
};
|
|
8722
9797
|
|
|
8723
9798
|
/**
|
|
@@ -8797,8 +9872,8 @@ interface TablesRequestBuilderGetQueryParameters {
|
|
|
8797
9872
|
sortOrder?: GetSortOrderQueryParameterType$2;
|
|
8798
9873
|
}
|
|
8799
9874
|
declare const GetSortOrderQueryParameterTypeObject$2: {
|
|
8800
|
-
readonly DESC: "DESC";
|
|
8801
9875
|
readonly ASC: "ASC";
|
|
9876
|
+
readonly DESC: "DESC";
|
|
8802
9877
|
};
|
|
8803
9878
|
declare const TablesGetResponse_objectObject: {
|
|
8804
9879
|
readonly List: "list";
|
|
@@ -8857,8 +9932,8 @@ declare const FindPostResponse_objectObject$1: {
|
|
|
8857
9932
|
readonly List: "list";
|
|
8858
9933
|
};
|
|
8859
9934
|
declare const PostSortOrderQueryParameterTypeObject$1: {
|
|
8860
|
-
readonly DESC: "DESC";
|
|
8861
9935
|
readonly ASC: "ASC";
|
|
9936
|
+
readonly DESC: "DESC";
|
|
8862
9937
|
};
|
|
8863
9938
|
|
|
8864
9939
|
/**
|
|
@@ -9029,8 +10104,8 @@ interface UserGroupsRequestBuilderGetQueryParameters {
|
|
|
9029
10104
|
sortOrder?: GetSortOrderQueryParameterType$1;
|
|
9030
10105
|
}
|
|
9031
10106
|
declare const GetSortOrderQueryParameterTypeObject$1: {
|
|
9032
|
-
readonly DESC: "DESC";
|
|
9033
10107
|
readonly ASC: "ASC";
|
|
10108
|
+
readonly DESC: "DESC";
|
|
9034
10109
|
};
|
|
9035
10110
|
declare const UserGroupsGetResponse_objectObject: {
|
|
9036
10111
|
readonly List: "list";
|
|
@@ -9089,8 +10164,8 @@ declare const FindPostResponse_objectObject: {
|
|
|
9089
10164
|
readonly List: "list";
|
|
9090
10165
|
};
|
|
9091
10166
|
declare const PostSortOrderQueryParameterTypeObject: {
|
|
9092
|
-
readonly DESC: "DESC";
|
|
9093
10167
|
readonly ASC: "ASC";
|
|
10168
|
+
readonly DESC: "DESC";
|
|
9094
10169
|
};
|
|
9095
10170
|
|
|
9096
10171
|
/**
|
|
@@ -9112,22 +10187,6 @@ interface UsersItemRequestBuilder extends BaseRequestBuilder<UsersItemRequestBui
|
|
|
9112
10187
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
9113
10188
|
}
|
|
9114
10189
|
|
|
9115
|
-
/**
|
|
9116
|
-
* Builds and executes requests for operations under /v1/users/whoami
|
|
9117
|
-
*/
|
|
9118
|
-
interface WhoamiRequestBuilder extends BaseRequestBuilder<WhoamiRequestBuilder> {
|
|
9119
|
-
/**
|
|
9120
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9121
|
-
* @returns {Promise<ArrayBuffer>}
|
|
9122
|
-
*/
|
|
9123
|
-
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
9124
|
-
/**
|
|
9125
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9126
|
-
* @returns {RequestInformation}
|
|
9127
|
-
*/
|
|
9128
|
-
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
9129
|
-
}
|
|
9130
|
-
|
|
9131
10190
|
type GetSortOrderQueryParameterType = (typeof GetSortOrderQueryParameterTypeObject)[keyof typeof GetSortOrderQueryParameterTypeObject];
|
|
9132
10191
|
interface UsersGetResponse extends AdditionalDataHolder, Parsable {
|
|
9133
10192
|
/**
|
|
@@ -9156,10 +10215,6 @@ interface UsersRequestBuilder extends BaseRequestBuilder<UsersRequestBuilder> {
|
|
|
9156
10215
|
* The find property
|
|
9157
10216
|
*/
|
|
9158
10217
|
get find(): FindRequestBuilder;
|
|
9159
|
-
/**
|
|
9160
|
-
* The whoami property
|
|
9161
|
-
*/
|
|
9162
|
-
get whoami(): WhoamiRequestBuilder;
|
|
9163
10218
|
/**
|
|
9164
10219
|
* Gets an item from the ApiSdk.v1.users.item collection
|
|
9165
10220
|
* @param id Unique identifier of the item
|
|
@@ -9190,8 +10245,8 @@ interface UsersRequestBuilderGetQueryParameters {
|
|
|
9190
10245
|
sortOrder?: GetSortOrderQueryParameterType;
|
|
9191
10246
|
}
|
|
9192
10247
|
declare const GetSortOrderQueryParameterTypeObject: {
|
|
9193
|
-
readonly DESC: "DESC";
|
|
9194
10248
|
readonly ASC: "ASC";
|
|
10249
|
+
readonly DESC: "DESC";
|
|
9195
10250
|
};
|
|
9196
10251
|
declare const UsersGetResponse_objectObject: {
|
|
9197
10252
|
readonly List: "list";
|
|
@@ -9204,7 +10259,7 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9204
10259
|
/**
|
|
9205
10260
|
* The accounts property
|
|
9206
10261
|
*/
|
|
9207
|
-
get accounts(): AccountsRequestBuilder;
|
|
10262
|
+
get accounts(): AccountsRequestBuilder$1;
|
|
9208
10263
|
/**
|
|
9209
10264
|
* The auditLogs property
|
|
9210
10265
|
*/
|
|
@@ -9245,10 +10300,26 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
9245
10300
|
* The matrixFields property
|
|
9246
10301
|
*/
|
|
9247
10302
|
get matrixFields(): MatrixFieldsRequestBuilder;
|
|
10303
|
+
/**
|
|
10304
|
+
* The me property
|
|
10305
|
+
*/
|
|
10306
|
+
get me(): MeRequestBuilder;
|
|
9248
10307
|
/**
|
|
9249
10308
|
* The partitions property
|
|
9250
10309
|
*/
|
|
9251
10310
|
get partitions(): PartitionsRequestBuilder;
|
|
10311
|
+
/**
|
|
10312
|
+
* The partnerGroups property
|
|
10313
|
+
*/
|
|
10314
|
+
get partnerGroups(): PartnerGroupsRequestBuilder;
|
|
10315
|
+
/**
|
|
10316
|
+
* The partnerInvitations property
|
|
10317
|
+
*/
|
|
10318
|
+
get partnerInvitations(): PartnerInvitationsRequestBuilder;
|
|
10319
|
+
/**
|
|
10320
|
+
* The partners property
|
|
10321
|
+
*/
|
|
10322
|
+
get partners(): PartnersRequestBuilder;
|
|
9252
10323
|
/**
|
|
9253
10324
|
* The publications property
|
|
9254
10325
|
*/
|
|
@@ -9312,4 +10383,4 @@ declare const ApiClientNavigationMetadata: Record<Exclude<keyof ApiClient, KeysT
|
|
|
9312
10383
|
|
|
9313
10384
|
declare function setup(key: string, url: string): ApiClient;
|
|
9314
10385
|
|
|
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 };
|
|
10386
|
+
export { type AccountDto, type AccountDto_object, AccountDto_objectObject, type ApiClient, ApiClientNavigationMetadata, ApiClientUriTemplate, type ApplySuggestionOnCompositeDto, type ApplySuggestionOnCompositeDto_type, ApplySuggestionOnCompositeDto_typeObject, 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 CompositeCollectStrategyDto, type CompositeCollectStrategyDto_type, CompositeCollectStrategyDto_typeObject, type CreateJobDto, type CreateJobDto_output, type CreateJobDto_status, CreateJobDto_statusObject, type CreateJobExecutionDto, type CreateJobExecutionDto_input, type CreatePartnerGroupDto, 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 ItemFieldCompositeValuesDTO, 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 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 MatchingPathFromRootDTO, type MatrixFieldDto, type MatrixFieldDto_object, MatrixFieldDto_objectObject, type MatrixFieldDto_status, MatrixFieldDto_statusObject, type MeAccountDto, type MeAccountDto_memberStatus, MeAccountDto_memberStatusObject, type MeAccountDto_object, MeAccountDto_objectObject, type MeAccountDto_role, MeAccountDto_roleObject, type MeDto, type PartitionDto, type PartitionDto_status, PartitionDto_statusObject, type PartnerDto, type PartnerDto_object, PartnerDto_objectObject, type PartnerDto_status, PartnerDto_statusObject, type PartnerGroupDto, type PartnerGroupDto_object, PartnerGroupDto_objectObject, type PartnerGroupMembersDto, type PartnerInvitationDto, type PartnerInvitationDto_object, PartnerInvitationDto_objectObject, type PartnerInvitationDto_status, PartnerInvitationDto_statusObject, type PatchPublicationDto, type PatchPublicationDto_status, PatchPublicationDto_statusObject, type PatchTaskExecutionDto, type PatchTaskExecutionDto_status, PatchTaskExecutionDto_statusObject, type PathFromRootDTO, 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 RecommendedCompositeExistingItemRowDTO, type RecommendedCompositeExistingItemRowDTO_type, RecommendedCompositeExistingItemRowDTO_typeObject, type RecommendedCompositeNewItemRowDTO, type RecommendedCompositeNewItemRowDTO_type, RecommendedCompositeNewItemRowDTO_typeObject, type RecommendedCompositeRowStrategyDTO, type RecommendedCompositeRowStrategyDTO_type, RecommendedCompositeRowStrategyDTO_typeObject, type RecommendedCompositeRowsDTO, 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 SuggestionDeletedCompositeRowDTO, 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 UpdatePartnerGroupDto, 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, createApplySuggestionOnCompositeDtoFromDiscriminatorValue, createAuditLogDtoFromDiscriminatorValue, createAuditLogDto_detailsFromDiscriminatorValue, createCommentThreadCommentCreateDtoFromDiscriminatorValue, createCommentThreadCommentDTOFromDiscriminatorValue, createCommentThreadCreateDtoFromDiscriminatorValue, createCommentThreadDtoFromDiscriminatorValue, createCommentThreadSubscriberDtoFromDiscriminatorValue, createCommentThreadUpdateDtoFromDiscriminatorValue, createCompositeCollectStrategyDtoFromDiscriminatorValue, createCreateJobDtoFromDiscriminatorValue, createCreateJobDto_outputFromDiscriminatorValue, createCreateJobExecutionDtoFromDiscriminatorValue, createCreateJobExecutionDto_inputFromDiscriminatorValue, createCreatePartnerGroupDtoFromDiscriminatorValue, 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, createItemFieldCompositeValuesDTOFromDiscriminatorValue, createItemFieldFileDTOFromDiscriminatorValue, createItemFieldFileDataFromDiscriminatorValue, createItemFieldFileValueDTOFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityDTOFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityDataFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityValueDTOFromDiscriminatorValue, createItemFieldNumberDTOFromDiscriminatorValue, createItemFieldSimpleNumberValueDTOFromDiscriminatorValue, createItemFieldSimpleStringArrayValueDTOFromDiscriminatorValue, createItemFieldSimpleStringValueDTOFromDiscriminatorValue, createItemFieldStringArrayDTOFromDiscriminatorValue, createItemFieldStringDTOFromDiscriminatorValue, createItemLinkCreateDtoFromDiscriminatorValue, createItemLinkDtoFromDiscriminatorValue, createItemMetadataDTOFromDiscriminatorValue, createJobDtoFromDiscriminatorValue, createJobDto_outputFromDiscriminatorValue, createJobExecutionDtoFromDiscriminatorValue, createJobExecutionDto_inputFromDiscriminatorValue, createJobExecutionDto_outputFromDiscriminatorValue, createJobExecutionInfoDtoFromDiscriminatorValue, createJobLocalDtoFromDiscriminatorValue, createJobPeriodicityDtoFromDiscriminatorValue, createJobTaskDtoFromDiscriminatorValue, createJobTaskDto_inputParametersFromDiscriminatorValue, createJobVisibilityDtoFromDiscriminatorValue, createLevelDtoFromDiscriminatorValue, createLocalizedStringDtoFromDiscriminatorValue, createLowOrderQueryDTOFromDiscriminatorValue, createMatchingPathFromRootDTOFromDiscriminatorValue, createMatrixFieldDtoFromDiscriminatorValue, createMeAccountDtoFromDiscriminatorValue, createMeDtoFromDiscriminatorValue, createPartitionDtoFromDiscriminatorValue, createPartnerDtoFromDiscriminatorValue, createPartnerGroupDtoFromDiscriminatorValue, createPartnerGroupMembersDtoFromDiscriminatorValue, createPartnerInvitationDtoFromDiscriminatorValue, createPatchPublicationDtoFromDiscriminatorValue, createPatchTaskExecutionDtoFromDiscriminatorValue, createPathFromRootDTOFromDiscriminatorValue, createPipelineDtoFromDiscriminatorValue, createProjectDtoFromDiscriminatorValue, createPublicationDtoFromDiscriminatorValue, createPublicationDto_fieldsFromDiscriminatorValue, createRecommendedCompositeExistingItemRowDTOFromDiscriminatorValue, createRecommendedCompositeNewItemRowDTOFromDiscriminatorValue, createRecommendedCompositeRowStrategyDTOFromDiscriminatorValue, createRecommendedCompositeRowsDTOFromDiscriminatorValue, createScreenColumnDtoFromDiscriminatorValue, createScreenDtoFromDiscriminatorValue, createScreenSectionDtoFromDiscriminatorValue, createSectionDtoFromDiscriminatorValue, createSectionDto_metadataFromDiscriminatorValue, createSuggestionDeletedCompositeRowDTOFromDiscriminatorValue, createSuggestionDeletedFieldDTOFromDiscriminatorValue, createSuggestionDtoFromDiscriminatorValue, createSuggestionDto_fieldsFromDiscriminatorValue, createTableDtoFromDiscriminatorValue, createTaskDtoFromDiscriminatorValue, createTaskDtoKeyFromDiscriminatorValue, createTaskExecutionDtoFromDiscriminatorValue, createTaskExecutionDto_inputFromDiscriminatorValue, createTaskExecutionDto_outputFromDiscriminatorValue, createUpdateJobDtoFromDiscriminatorValue, createUpdateJobDto_outputFromDiscriminatorValue, createUpdatePartnerGroupDtoFromDiscriminatorValue, createUpdateTaskDtoFromDiscriminatorValue, createUpdateUserGroupDtoFromDiscriminatorValue, createUpdateVariableDtoFromDiscriminatorValue, createUserDtoFromDiscriminatorValue, createUserGroupDtoFromDiscriminatorValue, createUserGroupMembersDtoFromDiscriminatorValue, createVariableDtoFromDiscriminatorValue, deserializeIntoAccountDto, deserializeIntoApplySuggestionOnCompositeDto, deserializeIntoAuditLogDto, deserializeIntoAuditLogDto_details, deserializeIntoCommentThreadCommentCreateDto, deserializeIntoCommentThreadCommentDTO, deserializeIntoCommentThreadCreateDto, deserializeIntoCommentThreadDto, deserializeIntoCommentThreadSubscriberDto, deserializeIntoCommentThreadUpdateDto, deserializeIntoCompositeCollectStrategyDto, deserializeIntoCreateJobDto, deserializeIntoCreateJobDto_output, deserializeIntoCreateJobExecutionDto, deserializeIntoCreateJobExecutionDto_input, deserializeIntoCreatePartnerGroupDto, 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, deserializeIntoItemFieldCompositeValuesDTO, deserializeIntoItemFieldFileDTO, deserializeIntoItemFieldFileData, deserializeIntoItemFieldFileValueDTO, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityDTO, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityData, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityValueDTO, deserializeIntoItemFieldNumberDTO, deserializeIntoItemFieldSimpleNumberValueDTO, deserializeIntoItemFieldSimpleStringArrayValueDTO, deserializeIntoItemFieldSimpleStringValueDTO, deserializeIntoItemFieldStringArrayDTO, deserializeIntoItemFieldStringDTO, deserializeIntoItemLinkCreateDto, deserializeIntoItemLinkDto, deserializeIntoItemMetadataDTO, deserializeIntoJobDto, deserializeIntoJobDto_output, deserializeIntoJobExecutionDto, deserializeIntoJobExecutionDto_input, deserializeIntoJobExecutionDto_output, deserializeIntoJobExecutionInfoDto, deserializeIntoJobLocalDto, deserializeIntoJobPeriodicityDto, deserializeIntoJobTaskDto, deserializeIntoJobTaskDto_inputParameters, deserializeIntoJobVisibilityDto, deserializeIntoLevelDto, deserializeIntoLocalizedStringDto, deserializeIntoLowOrderQueryDTO, deserializeIntoMatchingPathFromRootDTO, deserializeIntoMatrixFieldDto, deserializeIntoMeAccountDto, deserializeIntoMeDto, deserializeIntoPartitionDto, deserializeIntoPartnerDto, deserializeIntoPartnerGroupDto, deserializeIntoPartnerGroupMembersDto, deserializeIntoPartnerInvitationDto, deserializeIntoPatchPublicationDto, deserializeIntoPatchTaskExecutionDto, deserializeIntoPathFromRootDTO, deserializeIntoPipelineDto, deserializeIntoProjectDto, deserializeIntoPublicationDto, deserializeIntoPublicationDto_fields, deserializeIntoRecommendedCompositeExistingItemRowDTO, deserializeIntoRecommendedCompositeNewItemRowDTO, deserializeIntoRecommendedCompositeRowStrategyDTO, deserializeIntoRecommendedCompositeRowsDTO, deserializeIntoScreenColumnDto, deserializeIntoScreenDto, deserializeIntoScreenSectionDto, deserializeIntoSectionDto, deserializeIntoSectionDto_metadata, deserializeIntoSuggestionDeletedCompositeRowDTO, deserializeIntoSuggestionDeletedFieldDTO, deserializeIntoSuggestionDto, deserializeIntoSuggestionDto_fields, deserializeIntoTableDto, deserializeIntoTaskDto, deserializeIntoTaskDtoKey, deserializeIntoTaskExecutionDto, deserializeIntoTaskExecutionDto_input, deserializeIntoTaskExecutionDto_output, deserializeIntoUpdateJobDto, deserializeIntoUpdateJobDto_output, deserializeIntoUpdatePartnerGroupDto, deserializeIntoUpdateTaskDto, deserializeIntoUpdateUserGroupDto, deserializeIntoUpdateVariableDto, deserializeIntoUserDto, deserializeIntoUserGroupDto, deserializeIntoUserGroupMembersDto, deserializeIntoVariableDto, serializeAccountDto, serializeApplySuggestionOnCompositeDto, serializeAuditLogDto, serializeAuditLogDto_details, serializeCommentThreadCommentCreateDto, serializeCommentThreadCommentDTO, serializeCommentThreadCreateDto, serializeCommentThreadDto, serializeCommentThreadSubscriberDto, serializeCommentThreadUpdateDto, serializeCompositeCollectStrategyDto, serializeCreateJobDto, serializeCreateJobDto_output, serializeCreateJobExecutionDto, serializeCreateJobExecutionDto_input, serializeCreatePartnerGroupDto, 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, serializeItemFieldCompositeValuesDTO, serializeItemFieldFileDTO, serializeItemFieldFileData, serializeItemFieldFileValueDTO, serializeItemFieldMultipleSelectWithCommentAndQuantityDTO, serializeItemFieldMultipleSelectWithCommentAndQuantityData, serializeItemFieldMultipleSelectWithCommentAndQuantityValueDTO, serializeItemFieldNumberDTO, serializeItemFieldSimpleNumberValueDTO, serializeItemFieldSimpleStringArrayValueDTO, serializeItemFieldSimpleStringValueDTO, serializeItemFieldStringArrayDTO, serializeItemFieldStringDTO, serializeItemLinkCreateDto, serializeItemLinkDto, serializeItemMetadataDTO, serializeJobDto, serializeJobDto_output, serializeJobExecutionDto, serializeJobExecutionDto_input, serializeJobExecutionDto_output, serializeJobExecutionInfoDto, serializeJobLocalDto, serializeJobPeriodicityDto, serializeJobTaskDto, serializeJobTaskDto_inputParameters, serializeJobVisibilityDto, serializeLevelDto, serializeLocalizedStringDto, serializeLowOrderQueryDTO, serializeMatchingPathFromRootDTO, serializeMatrixFieldDto, serializeMeAccountDto, serializeMeDto, serializePartitionDto, serializePartnerDto, serializePartnerGroupDto, serializePartnerGroupMembersDto, serializePartnerInvitationDto, serializePatchPublicationDto, serializePatchTaskExecutionDto, serializePathFromRootDTO, serializePipelineDto, serializeProjectDto, serializePublicationDto, serializePublicationDto_fields, serializeRecommendedCompositeExistingItemRowDTO, serializeRecommendedCompositeNewItemRowDTO, serializeRecommendedCompositeRowStrategyDTO, serializeRecommendedCompositeRowsDTO, serializeScreenColumnDto, serializeScreenDto, serializeScreenSectionDto, serializeSectionDto, serializeSectionDto_metadata, serializeSuggestionDeletedCompositeRowDTO, serializeSuggestionDeletedFieldDTO, serializeSuggestionDto, serializeSuggestionDto_fields, serializeTableDto, serializeTaskDto, serializeTaskDtoKey, serializeTaskExecutionDto, serializeTaskExecutionDto_input, serializeTaskExecutionDto_output, serializeUpdateJobDto, serializeUpdateJobDto_output, serializeUpdatePartnerGroupDto, serializeUpdateTaskDto, serializeUpdateUserGroupDto, serializeUpdateVariableDto, serializeUserDto, serializeUserGroupDto, serializeUserGroupMembersDto, serializeVariableDto, setup };
|