@product-live/api-sdk 3.0.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +777 -336
- package/dist/index.d.ts +777 -336
- package/dist/index.js +736 -271
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +735 -270
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -446,6 +446,12 @@ declare function createCreatePublicationDtoFromDiscriminatorValue(parseNode: Par
|
|
|
446
446
|
* @returns {CreateTaskDto}
|
|
447
447
|
*/
|
|
448
448
|
declare function createCreateTaskDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
449
|
+
/**
|
|
450
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
451
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
452
|
+
* @returns {CreateUserGroupDto}
|
|
453
|
+
*/
|
|
454
|
+
declare function createCreateUserGroupDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
449
455
|
/**
|
|
450
456
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
451
457
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1067,6 +1073,12 @@ declare function createUpdateJobDtoFromDiscriminatorValue(parseNode: ParseNode |
|
|
|
1067
1073
|
* @returns {UpdateTaskDto}
|
|
1068
1074
|
*/
|
|
1069
1075
|
declare function createUpdateTaskDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1076
|
+
/**
|
|
1077
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1078
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1079
|
+
* @returns {UpdateUserGroupDto}
|
|
1080
|
+
*/
|
|
1081
|
+
declare function createUpdateUserGroupDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1070
1082
|
/**
|
|
1071
1083
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1072
1084
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1079,6 +1091,32 @@ declare function createUpdateVariableDtoFromDiscriminatorValue(parseNode: ParseN
|
|
|
1079
1091
|
* @returns {UserDto}
|
|
1080
1092
|
*/
|
|
1081
1093
|
declare function createUserDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1094
|
+
interface CreateUserGroupDto extends AdditionalDataHolder, Parsable {
|
|
1095
|
+
/**
|
|
1096
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
1097
|
+
*/
|
|
1098
|
+
additionalData?: Record<string, unknown>;
|
|
1099
|
+
/**
|
|
1100
|
+
* The description property
|
|
1101
|
+
*/
|
|
1102
|
+
description?: string | null;
|
|
1103
|
+
/**
|
|
1104
|
+
* The title property
|
|
1105
|
+
*/
|
|
1106
|
+
title?: string | null;
|
|
1107
|
+
}
|
|
1108
|
+
/**
|
|
1109
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1110
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1111
|
+
* @returns {UserGroupDto}
|
|
1112
|
+
*/
|
|
1113
|
+
declare function createUserGroupDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1114
|
+
/**
|
|
1115
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1116
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1117
|
+
* @returns {UserGroupMembersDto}
|
|
1118
|
+
*/
|
|
1119
|
+
declare function createUserGroupMembersDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1082
1120
|
interface CreateVariableDto extends AdditionalDataHolder, Parsable {
|
|
1083
1121
|
/**
|
|
1084
1122
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -1202,6 +1240,11 @@ declare function deserializeIntoCreatePublicationDto(createPublicationDto?: Part
|
|
|
1202
1240
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1203
1241
|
*/
|
|
1204
1242
|
declare function deserializeIntoCreateTaskDto(createTaskDto?: Partial<CreateTaskDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1243
|
+
/**
|
|
1244
|
+
* The deserialization information for the current model
|
|
1245
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1246
|
+
*/
|
|
1247
|
+
declare function deserializeIntoCreateUserGroupDto(createUserGroupDto?: Partial<CreateUserGroupDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1205
1248
|
/**
|
|
1206
1249
|
* The deserialization information for the current model
|
|
1207
1250
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1572,6 +1615,11 @@ declare function deserializeIntoUpdateJobDto_output(updateJobDto_output?: Partia
|
|
|
1572
1615
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1573
1616
|
*/
|
|
1574
1617
|
declare function deserializeIntoUpdateTaskDto(updateTaskDto?: Partial<UpdateTaskDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1618
|
+
/**
|
|
1619
|
+
* The deserialization information for the current model
|
|
1620
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1621
|
+
*/
|
|
1622
|
+
declare function deserializeIntoUpdateUserGroupDto(updateUserGroupDto?: Partial<UpdateUserGroupDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1575
1623
|
/**
|
|
1576
1624
|
* The deserialization information for the current model
|
|
1577
1625
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1582,6 +1630,16 @@ declare function deserializeIntoUpdateVariableDto(updateVariableDto?: Partial<Up
|
|
|
1582
1630
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1583
1631
|
*/
|
|
1584
1632
|
declare function deserializeIntoUserDto(userDto?: Partial<UserDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1633
|
+
/**
|
|
1634
|
+
* The deserialization information for the current model
|
|
1635
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1636
|
+
*/
|
|
1637
|
+
declare function deserializeIntoUserGroupDto(userGroupDto?: Partial<UserGroupDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1638
|
+
/**
|
|
1639
|
+
* The deserialization information for the current model
|
|
1640
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1641
|
+
*/
|
|
1642
|
+
declare function deserializeIntoUserGroupMembersDto(userGroupMembersDto?: Partial<UserGroupMembersDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1585
1643
|
/**
|
|
1586
1644
|
* The deserialization information for the current model
|
|
1587
1645
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -3283,6 +3341,11 @@ declare function serializeCreatePublicationDto(writer: SerializationWriter, crea
|
|
|
3283
3341
|
* @param writer Serialization writer to use to serialize this model
|
|
3284
3342
|
*/
|
|
3285
3343
|
declare function serializeCreateTaskDto(writer: SerializationWriter, createTaskDto?: Partial<CreateTaskDto> | undefined | null): void;
|
|
3344
|
+
/**
|
|
3345
|
+
* Serializes information the current object
|
|
3346
|
+
* @param writer Serialization writer to use to serialize this model
|
|
3347
|
+
*/
|
|
3348
|
+
declare function serializeCreateUserGroupDto(writer: SerializationWriter, createUserGroupDto?: Partial<CreateUserGroupDto> | undefined | null): void;
|
|
3286
3349
|
/**
|
|
3287
3350
|
* Serializes information the current object
|
|
3288
3351
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3653,6 +3716,11 @@ declare function serializeUpdateJobDto_output(writer: SerializationWriter, updat
|
|
|
3653
3716
|
* @param writer Serialization writer to use to serialize this model
|
|
3654
3717
|
*/
|
|
3655
3718
|
declare function serializeUpdateTaskDto(writer: SerializationWriter, updateTaskDto?: Partial<UpdateTaskDto> | undefined | null): void;
|
|
3719
|
+
/**
|
|
3720
|
+
* Serializes information the current object
|
|
3721
|
+
* @param writer Serialization writer to use to serialize this model
|
|
3722
|
+
*/
|
|
3723
|
+
declare function serializeUpdateUserGroupDto(writer: SerializationWriter, updateUserGroupDto?: Partial<UpdateUserGroupDto> | undefined | null): void;
|
|
3656
3724
|
/**
|
|
3657
3725
|
* Serializes information the current object
|
|
3658
3726
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -3663,6 +3731,16 @@ declare function serializeUpdateVariableDto(writer: SerializationWriter, updateV
|
|
|
3663
3731
|
* @param writer Serialization writer to use to serialize this model
|
|
3664
3732
|
*/
|
|
3665
3733
|
declare function serializeUserDto(writer: SerializationWriter, userDto?: Partial<UserDto> | undefined | null): void;
|
|
3734
|
+
/**
|
|
3735
|
+
* Serializes information the current object
|
|
3736
|
+
* @param writer Serialization writer to use to serialize this model
|
|
3737
|
+
*/
|
|
3738
|
+
declare function serializeUserGroupDto(writer: SerializationWriter, userGroupDto?: Partial<UserGroupDto> | undefined | null): void;
|
|
3739
|
+
/**
|
|
3740
|
+
* Serializes information the current object
|
|
3741
|
+
* @param writer Serialization writer to use to serialize this model
|
|
3742
|
+
*/
|
|
3743
|
+
declare function serializeUserGroupMembersDto(writer: SerializationWriter, userGroupMembersDto?: Partial<UserGroupMembersDto> | undefined | null): void;
|
|
3666
3744
|
/**
|
|
3667
3745
|
* Serializes information the current object
|
|
3668
3746
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -4057,6 +4135,20 @@ interface UpdateTaskDto extends AdditionalDataHolder, Parsable {
|
|
|
4057
4135
|
}
|
|
4058
4136
|
type UpdateTaskDto_retryLogic = (typeof UpdateTaskDto_retryLogicObject)[keyof typeof UpdateTaskDto_retryLogicObject];
|
|
4059
4137
|
type UpdateTaskDto_timeoutPolicy = (typeof UpdateTaskDto_timeoutPolicyObject)[keyof typeof UpdateTaskDto_timeoutPolicyObject];
|
|
4138
|
+
interface UpdateUserGroupDto extends AdditionalDataHolder, Parsable {
|
|
4139
|
+
/**
|
|
4140
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4141
|
+
*/
|
|
4142
|
+
additionalData?: Record<string, unknown>;
|
|
4143
|
+
/**
|
|
4144
|
+
* The description property
|
|
4145
|
+
*/
|
|
4146
|
+
description?: string | null;
|
|
4147
|
+
/**
|
|
4148
|
+
* The title property
|
|
4149
|
+
*/
|
|
4150
|
+
title?: string | null;
|
|
4151
|
+
}
|
|
4060
4152
|
interface UpdateVariableDto extends AdditionalDataHolder, Parsable {
|
|
4061
4153
|
/**
|
|
4062
4154
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -4133,6 +4225,55 @@ interface UserDto extends AdditionalDataHolder, Parsable {
|
|
|
4133
4225
|
type UserDto_object = (typeof UserDto_objectObject)[keyof typeof UserDto_objectObject];
|
|
4134
4226
|
type UserDto_role = (typeof UserDto_roleObject)[keyof typeof UserDto_roleObject];
|
|
4135
4227
|
type UserDto_status = (typeof UserDto_statusObject)[keyof typeof UserDto_statusObject];
|
|
4228
|
+
interface UserGroupDto extends AdditionalDataHolder, Parsable {
|
|
4229
|
+
/**
|
|
4230
|
+
* The accountId property
|
|
4231
|
+
*/
|
|
4232
|
+
accountId?: string | null;
|
|
4233
|
+
/**
|
|
4234
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4235
|
+
*/
|
|
4236
|
+
additionalData?: Record<string, unknown>;
|
|
4237
|
+
/**
|
|
4238
|
+
* The createdAt property
|
|
4239
|
+
*/
|
|
4240
|
+
createdAt?: string | null;
|
|
4241
|
+
/**
|
|
4242
|
+
* The description property
|
|
4243
|
+
*/
|
|
4244
|
+
description?: string | null;
|
|
4245
|
+
/**
|
|
4246
|
+
* The id property
|
|
4247
|
+
*/
|
|
4248
|
+
id?: string | null;
|
|
4249
|
+
/**
|
|
4250
|
+
* The membersId property
|
|
4251
|
+
*/
|
|
4252
|
+
membersId?: string[] | null;
|
|
4253
|
+
/**
|
|
4254
|
+
* The object property
|
|
4255
|
+
*/
|
|
4256
|
+
object?: UserGroupDto_object | null;
|
|
4257
|
+
/**
|
|
4258
|
+
* The title property
|
|
4259
|
+
*/
|
|
4260
|
+
title?: string | null;
|
|
4261
|
+
/**
|
|
4262
|
+
* The updatedAt property
|
|
4263
|
+
*/
|
|
4264
|
+
updatedAt?: string | null;
|
|
4265
|
+
}
|
|
4266
|
+
type UserGroupDto_object = (typeof UserGroupDto_objectObject)[keyof typeof UserGroupDto_objectObject];
|
|
4267
|
+
interface UserGroupMembersDto extends AdditionalDataHolder, Parsable {
|
|
4268
|
+
/**
|
|
4269
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4270
|
+
*/
|
|
4271
|
+
additionalData?: Record<string, unknown>;
|
|
4272
|
+
/**
|
|
4273
|
+
* The membersId property
|
|
4274
|
+
*/
|
|
4275
|
+
membersId?: string[] | null;
|
|
4276
|
+
}
|
|
4136
4277
|
interface VariableDto extends AdditionalDataHolder, Parsable {
|
|
4137
4278
|
/**
|
|
4138
4279
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -4607,6 +4748,9 @@ declare const UserDto_statusObject: {
|
|
|
4607
4748
|
readonly SUSPENDED: "SUSPENDED";
|
|
4608
4749
|
readonly REMOVED: "REMOVED";
|
|
4609
4750
|
};
|
|
4751
|
+
declare const UserGroupDto_objectObject: {
|
|
4752
|
+
readonly User_group: "user_group";
|
|
4753
|
+
};
|
|
4610
4754
|
declare const VariableDto_objectObject: {
|
|
4611
4755
|
readonly Variable: "variable";
|
|
4612
4756
|
};
|
|
@@ -4616,7 +4760,7 @@ declare const VariableDto_statusObject: {
|
|
|
4616
4760
|
readonly DELETED: "DELETED";
|
|
4617
4761
|
};
|
|
4618
4762
|
|
|
4619
|
-
interface FindPostResponse$
|
|
4763
|
+
interface FindPostResponse$n extends AdditionalDataHolder, Parsable {
|
|
4620
4764
|
/**
|
|
4621
4765
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4622
4766
|
*/
|
|
@@ -4628,17 +4772,17 @@ interface FindPostResponse$l extends AdditionalDataHolder, Parsable {
|
|
|
4628
4772
|
/**
|
|
4629
4773
|
* The object property
|
|
4630
4774
|
*/
|
|
4631
|
-
object?: FindPostResponse_object$
|
|
4775
|
+
object?: FindPostResponse_object$n | null;
|
|
4632
4776
|
/**
|
|
4633
4777
|
* The totalElements property
|
|
4634
4778
|
*/
|
|
4635
4779
|
totalElements?: number | null;
|
|
4636
4780
|
}
|
|
4637
|
-
type FindPostResponse_object$
|
|
4781
|
+
type FindPostResponse_object$n = (typeof FindPostResponse_objectObject$n)[keyof typeof FindPostResponse_objectObject$n];
|
|
4638
4782
|
/**
|
|
4639
4783
|
* Builds and executes requests for operations under /v1/accounts/find
|
|
4640
4784
|
*/
|
|
4641
|
-
interface FindRequestBuilder$
|
|
4785
|
+
interface FindRequestBuilder$n extends BaseRequestBuilder<FindRequestBuilder$n> {
|
|
4642
4786
|
/**
|
|
4643
4787
|
* Find a list of Account
|
|
4644
4788
|
* @param body The request body
|
|
@@ -4646,29 +4790,29 @@ interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l>
|
|
|
4646
4790
|
* @returns {Promise<FindPostResponse>}
|
|
4647
4791
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
4648
4792
|
*/
|
|
4649
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
4793
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$n> | undefined): Promise<FindPostResponse$n | undefined>;
|
|
4650
4794
|
/**
|
|
4651
4795
|
* Find a list of Account
|
|
4652
4796
|
* @param body The request body
|
|
4653
4797
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4654
4798
|
* @returns {RequestInformation}
|
|
4655
4799
|
*/
|
|
4656
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
4800
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$n> | undefined): RequestInformation;
|
|
4657
4801
|
}
|
|
4658
4802
|
/**
|
|
4659
4803
|
* Find a list of Account
|
|
4660
4804
|
*/
|
|
4661
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
4805
|
+
interface FindRequestBuilderPostQueryParameters$n {
|
|
4662
4806
|
page?: number;
|
|
4663
4807
|
size?: number;
|
|
4664
4808
|
sort?: string;
|
|
4665
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
4809
|
+
sortOrder?: PostSortOrderQueryParameterType$o;
|
|
4666
4810
|
}
|
|
4667
|
-
type PostSortOrderQueryParameterType$
|
|
4668
|
-
declare const FindPostResponse_objectObject$
|
|
4811
|
+
type PostSortOrderQueryParameterType$o = (typeof PostSortOrderQueryParameterTypeObject$o)[keyof typeof PostSortOrderQueryParameterTypeObject$o];
|
|
4812
|
+
declare const FindPostResponse_objectObject$n: {
|
|
4669
4813
|
readonly List: "list";
|
|
4670
4814
|
};
|
|
4671
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
4815
|
+
declare const PostSortOrderQueryParameterTypeObject$o: {
|
|
4672
4816
|
readonly DESC: "DESC";
|
|
4673
4817
|
readonly ASC: "ASC";
|
|
4674
4818
|
};
|
|
@@ -4718,7 +4862,7 @@ interface AccountsRequestBuilder extends BaseRequestBuilder<AccountsRequestBuild
|
|
|
4718
4862
|
/**
|
|
4719
4863
|
* The find property
|
|
4720
4864
|
*/
|
|
4721
|
-
get find(): FindRequestBuilder$
|
|
4865
|
+
get find(): FindRequestBuilder$n;
|
|
4722
4866
|
/**
|
|
4723
4867
|
* Gets an item from the ApiSdk.v1.accounts.item collection
|
|
4724
4868
|
* @param id Unique identifier of the item
|
|
@@ -4746,18 +4890,18 @@ interface AccountsRequestBuilderGetQueryParameters {
|
|
|
4746
4890
|
page?: number;
|
|
4747
4891
|
size?: number;
|
|
4748
4892
|
sort?: string;
|
|
4749
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
4893
|
+
sortOrder?: GetSortOrderQueryParameterType$p;
|
|
4750
4894
|
}
|
|
4751
|
-
type GetSortOrderQueryParameterType$
|
|
4895
|
+
type GetSortOrderQueryParameterType$p = (typeof GetSortOrderQueryParameterTypeObject$p)[keyof typeof GetSortOrderQueryParameterTypeObject$p];
|
|
4752
4896
|
declare const AccountsGetResponse_objectObject: {
|
|
4753
4897
|
readonly List: "list";
|
|
4754
4898
|
};
|
|
4755
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
4899
|
+
declare const GetSortOrderQueryParameterTypeObject$p: {
|
|
4756
4900
|
readonly DESC: "DESC";
|
|
4757
4901
|
readonly ASC: "ASC";
|
|
4758
4902
|
};
|
|
4759
4903
|
|
|
4760
|
-
interface FindPostResponse$
|
|
4904
|
+
interface FindPostResponse$m extends AdditionalDataHolder, Parsable {
|
|
4761
4905
|
/**
|
|
4762
4906
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4763
4907
|
*/
|
|
@@ -4769,17 +4913,17 @@ interface FindPostResponse$k extends AdditionalDataHolder, Parsable {
|
|
|
4769
4913
|
/**
|
|
4770
4914
|
* The object property
|
|
4771
4915
|
*/
|
|
4772
|
-
object?: FindPostResponse_object$
|
|
4916
|
+
object?: FindPostResponse_object$m | null;
|
|
4773
4917
|
/**
|
|
4774
4918
|
* The totalElements property
|
|
4775
4919
|
*/
|
|
4776
4920
|
totalElements?: number | null;
|
|
4777
4921
|
}
|
|
4778
|
-
type FindPostResponse_object$
|
|
4922
|
+
type FindPostResponse_object$m = (typeof FindPostResponse_objectObject$m)[keyof typeof FindPostResponse_objectObject$m];
|
|
4779
4923
|
/**
|
|
4780
4924
|
* Builds and executes requests for operations under /v1/audit_logs/find
|
|
4781
4925
|
*/
|
|
4782
|
-
interface FindRequestBuilder$
|
|
4926
|
+
interface FindRequestBuilder$m extends BaseRequestBuilder<FindRequestBuilder$m> {
|
|
4783
4927
|
/**
|
|
4784
4928
|
* Find a list of Audit Log
|
|
4785
4929
|
* @param body The request body
|
|
@@ -4787,29 +4931,29 @@ interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k>
|
|
|
4787
4931
|
* @returns {Promise<FindPostResponse>}
|
|
4788
4932
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
4789
4933
|
*/
|
|
4790
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
4934
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$m> | undefined): Promise<FindPostResponse$m | undefined>;
|
|
4791
4935
|
/**
|
|
4792
4936
|
* Find a list of Audit Log
|
|
4793
4937
|
* @param body The request body
|
|
4794
4938
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4795
4939
|
* @returns {RequestInformation}
|
|
4796
4940
|
*/
|
|
4797
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
4941
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$m> | undefined): RequestInformation;
|
|
4798
4942
|
}
|
|
4799
4943
|
/**
|
|
4800
4944
|
* Find a list of Audit Log
|
|
4801
4945
|
*/
|
|
4802
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
4946
|
+
interface FindRequestBuilderPostQueryParameters$m {
|
|
4803
4947
|
page?: number;
|
|
4804
4948
|
size?: number;
|
|
4805
4949
|
sort?: string;
|
|
4806
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
4950
|
+
sortOrder?: PostSortOrderQueryParameterType$n;
|
|
4807
4951
|
}
|
|
4808
|
-
type PostSortOrderQueryParameterType$
|
|
4809
|
-
declare const FindPostResponse_objectObject$
|
|
4952
|
+
type PostSortOrderQueryParameterType$n = (typeof PostSortOrderQueryParameterTypeObject$n)[keyof typeof PostSortOrderQueryParameterTypeObject$n];
|
|
4953
|
+
declare const FindPostResponse_objectObject$m: {
|
|
4810
4954
|
readonly List: "list";
|
|
4811
4955
|
};
|
|
4812
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
4956
|
+
declare const PostSortOrderQueryParameterTypeObject$n: {
|
|
4813
4957
|
readonly DESC: "DESC";
|
|
4814
4958
|
readonly ASC: "ASC";
|
|
4815
4959
|
};
|
|
@@ -4840,7 +4984,7 @@ interface Audit_logsRequestBuilder extends BaseRequestBuilder<Audit_logsRequestB
|
|
|
4840
4984
|
/**
|
|
4841
4985
|
* The find property
|
|
4842
4986
|
*/
|
|
4843
|
-
get find(): FindRequestBuilder$
|
|
4987
|
+
get find(): FindRequestBuilder$m;
|
|
4844
4988
|
/**
|
|
4845
4989
|
* Get a list of Audit Log
|
|
4846
4990
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -4862,18 +5006,18 @@ interface Audit_logsRequestBuilderGetQueryParameters {
|
|
|
4862
5006
|
page?: number;
|
|
4863
5007
|
size?: number;
|
|
4864
5008
|
sort?: string;
|
|
4865
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5009
|
+
sortOrder?: GetSortOrderQueryParameterType$o;
|
|
4866
5010
|
}
|
|
4867
|
-
type GetSortOrderQueryParameterType$
|
|
5011
|
+
type GetSortOrderQueryParameterType$o = (typeof GetSortOrderQueryParameterTypeObject$o)[keyof typeof GetSortOrderQueryParameterTypeObject$o];
|
|
4868
5012
|
declare const Audit_logsGetResponse_objectObject: {
|
|
4869
5013
|
readonly List: "list";
|
|
4870
5014
|
};
|
|
4871
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5015
|
+
declare const GetSortOrderQueryParameterTypeObject$o: {
|
|
4872
5016
|
readonly DESC: "DESC";
|
|
4873
5017
|
readonly ASC: "ASC";
|
|
4874
5018
|
};
|
|
4875
5019
|
|
|
4876
|
-
interface FindPostResponse$
|
|
5020
|
+
interface FindPostResponse$l extends AdditionalDataHolder, Parsable {
|
|
4877
5021
|
/**
|
|
4878
5022
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4879
5023
|
*/
|
|
@@ -4885,17 +5029,17 @@ interface FindPostResponse$j extends AdditionalDataHolder, Parsable {
|
|
|
4885
5029
|
/**
|
|
4886
5030
|
* The object property
|
|
4887
5031
|
*/
|
|
4888
|
-
object?: FindPostResponse_object$
|
|
5032
|
+
object?: FindPostResponse_object$l | null;
|
|
4889
5033
|
/**
|
|
4890
5034
|
* The totalElements property
|
|
4891
5035
|
*/
|
|
4892
5036
|
totalElements?: number | null;
|
|
4893
5037
|
}
|
|
4894
|
-
type FindPostResponse_object$
|
|
5038
|
+
type FindPostResponse_object$l = (typeof FindPostResponse_objectObject$l)[keyof typeof FindPostResponse_objectObject$l];
|
|
4895
5039
|
/**
|
|
4896
5040
|
* Builds and executes requests for operations under /v1/comment_thread_subscribers/find
|
|
4897
5041
|
*/
|
|
4898
|
-
interface FindRequestBuilder$
|
|
5042
|
+
interface FindRequestBuilder$l extends BaseRequestBuilder<FindRequestBuilder$l> {
|
|
4899
5043
|
/**
|
|
4900
5044
|
* Find a list of Comment Thread Subscriber
|
|
4901
5045
|
* @param body The request body
|
|
@@ -4903,29 +5047,29 @@ interface FindRequestBuilder$j extends BaseRequestBuilder<FindRequestBuilder$j>
|
|
|
4903
5047
|
* @returns {Promise<FindPostResponse>}
|
|
4904
5048
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
4905
5049
|
*/
|
|
4906
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5050
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$l> | undefined): Promise<FindPostResponse$l | undefined>;
|
|
4907
5051
|
/**
|
|
4908
5052
|
* Find a list of Comment Thread Subscriber
|
|
4909
5053
|
* @param body The request body
|
|
4910
5054
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
4911
5055
|
* @returns {RequestInformation}
|
|
4912
5056
|
*/
|
|
4913
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5057
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$l> | undefined): RequestInformation;
|
|
4914
5058
|
}
|
|
4915
5059
|
/**
|
|
4916
5060
|
* Find a list of Comment Thread Subscriber
|
|
4917
5061
|
*/
|
|
4918
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
5062
|
+
interface FindRequestBuilderPostQueryParameters$l {
|
|
4919
5063
|
page?: number;
|
|
4920
5064
|
size?: number;
|
|
4921
5065
|
sort?: string;
|
|
4922
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
5066
|
+
sortOrder?: PostSortOrderQueryParameterType$m;
|
|
4923
5067
|
}
|
|
4924
|
-
type PostSortOrderQueryParameterType$
|
|
4925
|
-
declare const FindPostResponse_objectObject$
|
|
5068
|
+
type PostSortOrderQueryParameterType$m = (typeof PostSortOrderQueryParameterTypeObject$m)[keyof typeof PostSortOrderQueryParameterTypeObject$m];
|
|
5069
|
+
declare const FindPostResponse_objectObject$l: {
|
|
4926
5070
|
readonly List: "list";
|
|
4927
5071
|
};
|
|
4928
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5072
|
+
declare const PostSortOrderQueryParameterTypeObject$m: {
|
|
4929
5073
|
readonly DESC: "DESC";
|
|
4930
5074
|
readonly ASC: "ASC";
|
|
4931
5075
|
};
|
|
@@ -4975,7 +5119,7 @@ interface Comment_thread_subscribersRequestBuilder extends BaseRequestBuilder<Co
|
|
|
4975
5119
|
/**
|
|
4976
5120
|
* The find property
|
|
4977
5121
|
*/
|
|
4978
|
-
get find(): FindRequestBuilder$
|
|
5122
|
+
get find(): FindRequestBuilder$l;
|
|
4979
5123
|
/**
|
|
4980
5124
|
* Gets an item from the ApiSdk.v1.comment_thread_subscribers.item collection
|
|
4981
5125
|
* @param id Unique identifier of the item
|
|
@@ -5003,18 +5147,18 @@ interface Comment_thread_subscribersRequestBuilderGetQueryParameters {
|
|
|
5003
5147
|
page?: number;
|
|
5004
5148
|
size?: number;
|
|
5005
5149
|
sort?: string;
|
|
5006
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5150
|
+
sortOrder?: GetSortOrderQueryParameterType$n;
|
|
5007
5151
|
}
|
|
5008
|
-
type GetSortOrderQueryParameterType$
|
|
5152
|
+
type GetSortOrderQueryParameterType$n = (typeof GetSortOrderQueryParameterTypeObject$n)[keyof typeof GetSortOrderQueryParameterTypeObject$n];
|
|
5009
5153
|
declare const Comment_thread_subscribersGetResponse_objectObject: {
|
|
5010
5154
|
readonly List: "list";
|
|
5011
5155
|
};
|
|
5012
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5156
|
+
declare const GetSortOrderQueryParameterTypeObject$n: {
|
|
5013
5157
|
readonly DESC: "DESC";
|
|
5014
5158
|
readonly ASC: "ASC";
|
|
5015
5159
|
};
|
|
5016
5160
|
|
|
5017
|
-
interface FindPostResponse$
|
|
5161
|
+
interface FindPostResponse$k extends AdditionalDataHolder, Parsable {
|
|
5018
5162
|
/**
|
|
5019
5163
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5020
5164
|
*/
|
|
@@ -5026,17 +5170,17 @@ interface FindPostResponse$i extends AdditionalDataHolder, Parsable {
|
|
|
5026
5170
|
/**
|
|
5027
5171
|
* The object property
|
|
5028
5172
|
*/
|
|
5029
|
-
object?: FindPostResponse_object$
|
|
5173
|
+
object?: FindPostResponse_object$k | null;
|
|
5030
5174
|
/**
|
|
5031
5175
|
* The totalElements property
|
|
5032
5176
|
*/
|
|
5033
5177
|
totalElements?: number | null;
|
|
5034
5178
|
}
|
|
5035
|
-
type FindPostResponse_object$
|
|
5179
|
+
type FindPostResponse_object$k = (typeof FindPostResponse_objectObject$k)[keyof typeof FindPostResponse_objectObject$k];
|
|
5036
5180
|
/**
|
|
5037
5181
|
* Builds and executes requests for operations under /v1/comment_threads/find
|
|
5038
5182
|
*/
|
|
5039
|
-
interface FindRequestBuilder$
|
|
5183
|
+
interface FindRequestBuilder$k extends BaseRequestBuilder<FindRequestBuilder$k> {
|
|
5040
5184
|
/**
|
|
5041
5185
|
* Find a list of Comment Thread
|
|
5042
5186
|
* @param body The request body
|
|
@@ -5044,29 +5188,29 @@ interface FindRequestBuilder$i extends BaseRequestBuilder<FindRequestBuilder$i>
|
|
|
5044
5188
|
* @returns {Promise<FindPostResponse>}
|
|
5045
5189
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5046
5190
|
*/
|
|
5047
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5191
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$k> | undefined): Promise<FindPostResponse$k | undefined>;
|
|
5048
5192
|
/**
|
|
5049
5193
|
* Find a list of Comment Thread
|
|
5050
5194
|
* @param body The request body
|
|
5051
5195
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5052
5196
|
* @returns {RequestInformation}
|
|
5053
5197
|
*/
|
|
5054
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5198
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$k> | undefined): RequestInformation;
|
|
5055
5199
|
}
|
|
5056
5200
|
/**
|
|
5057
5201
|
* Find a list of Comment Thread
|
|
5058
5202
|
*/
|
|
5059
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
5203
|
+
interface FindRequestBuilderPostQueryParameters$k {
|
|
5060
5204
|
page?: number;
|
|
5061
5205
|
size?: number;
|
|
5062
5206
|
sort?: string;
|
|
5063
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
5207
|
+
sortOrder?: PostSortOrderQueryParameterType$l;
|
|
5064
5208
|
}
|
|
5065
|
-
type PostSortOrderQueryParameterType$
|
|
5066
|
-
declare const FindPostResponse_objectObject$
|
|
5209
|
+
type PostSortOrderQueryParameterType$l = (typeof PostSortOrderQueryParameterTypeObject$l)[keyof typeof PostSortOrderQueryParameterTypeObject$l];
|
|
5210
|
+
declare const FindPostResponse_objectObject$k: {
|
|
5067
5211
|
readonly List: "list";
|
|
5068
5212
|
};
|
|
5069
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5213
|
+
declare const PostSortOrderQueryParameterTypeObject$l: {
|
|
5070
5214
|
readonly DESC: "DESC";
|
|
5071
5215
|
readonly ASC: "ASC";
|
|
5072
5216
|
};
|
|
@@ -5155,7 +5299,7 @@ interface Comment_threadsRequestBuilder extends BaseRequestBuilder<Comment_threa
|
|
|
5155
5299
|
/**
|
|
5156
5300
|
* The find property
|
|
5157
5301
|
*/
|
|
5158
|
-
get find(): FindRequestBuilder$
|
|
5302
|
+
get find(): FindRequestBuilder$k;
|
|
5159
5303
|
/**
|
|
5160
5304
|
* Gets an item from the ApiSdk.v1.comment_threads.item collection
|
|
5161
5305
|
* @param id Unique identifier of the item
|
|
@@ -5198,13 +5342,13 @@ interface Comment_threadsRequestBuilderGetQueryParameters {
|
|
|
5198
5342
|
page?: number;
|
|
5199
5343
|
size?: number;
|
|
5200
5344
|
sort?: string;
|
|
5201
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5345
|
+
sortOrder?: GetSortOrderQueryParameterType$m;
|
|
5202
5346
|
}
|
|
5203
|
-
type GetSortOrderQueryParameterType$
|
|
5347
|
+
type GetSortOrderQueryParameterType$m = (typeof GetSortOrderQueryParameterTypeObject$m)[keyof typeof GetSortOrderQueryParameterTypeObject$m];
|
|
5204
5348
|
declare const Comment_threadsGetResponse_objectObject: {
|
|
5205
5349
|
readonly List: "list";
|
|
5206
5350
|
};
|
|
5207
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5351
|
+
declare const GetSortOrderQueryParameterTypeObject$m: {
|
|
5208
5352
|
readonly DESC: "DESC";
|
|
5209
5353
|
readonly ASC: "ASC";
|
|
5210
5354
|
};
|
|
@@ -5293,18 +5437,18 @@ interface FilesRequestBuilderGetQueryParameters {
|
|
|
5293
5437
|
page?: number;
|
|
5294
5438
|
size?: number;
|
|
5295
5439
|
sort?: string;
|
|
5296
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5440
|
+
sortOrder?: GetSortOrderQueryParameterType$l;
|
|
5297
5441
|
}
|
|
5298
|
-
type GetSortOrderQueryParameterType$
|
|
5442
|
+
type GetSortOrderQueryParameterType$l = (typeof GetSortOrderQueryParameterTypeObject$l)[keyof typeof GetSortOrderQueryParameterTypeObject$l];
|
|
5299
5443
|
declare const FilesGetResponse_objectObject: {
|
|
5300
5444
|
readonly List: "list";
|
|
5301
5445
|
};
|
|
5302
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5446
|
+
declare const GetSortOrderQueryParameterTypeObject$l: {
|
|
5303
5447
|
readonly DESC: "DESC";
|
|
5304
5448
|
readonly ASC: "ASC";
|
|
5305
5449
|
};
|
|
5306
5450
|
|
|
5307
|
-
interface FindPostResponse$
|
|
5451
|
+
interface FindPostResponse$j extends AdditionalDataHolder, Parsable {
|
|
5308
5452
|
/**
|
|
5309
5453
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5310
5454
|
*/
|
|
@@ -5316,17 +5460,17 @@ interface FindPostResponse$h extends AdditionalDataHolder, Parsable {
|
|
|
5316
5460
|
/**
|
|
5317
5461
|
* The object property
|
|
5318
5462
|
*/
|
|
5319
|
-
object?: FindPostResponse_object$
|
|
5463
|
+
object?: FindPostResponse_object$j | null;
|
|
5320
5464
|
/**
|
|
5321
5465
|
* The totalElements property
|
|
5322
5466
|
*/
|
|
5323
5467
|
totalElements?: number | null;
|
|
5324
5468
|
}
|
|
5325
|
-
type FindPostResponse_object$
|
|
5469
|
+
type FindPostResponse_object$j = (typeof FindPostResponse_objectObject$j)[keyof typeof FindPostResponse_objectObject$j];
|
|
5326
5470
|
/**
|
|
5327
5471
|
* Builds and executes requests for operations under /v1/data_factory/job_executions/find
|
|
5328
5472
|
*/
|
|
5329
|
-
interface FindRequestBuilder$
|
|
5473
|
+
interface FindRequestBuilder$j extends BaseRequestBuilder<FindRequestBuilder$j> {
|
|
5330
5474
|
/**
|
|
5331
5475
|
* (Not implemented) - Find a list of Job Execution
|
|
5332
5476
|
* @param body The request body
|
|
@@ -5334,29 +5478,29 @@ interface FindRequestBuilder$h extends BaseRequestBuilder<FindRequestBuilder$h>
|
|
|
5334
5478
|
* @returns {Promise<FindPostResponse>}
|
|
5335
5479
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5336
5480
|
*/
|
|
5337
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5481
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$j> | undefined): Promise<FindPostResponse$j | undefined>;
|
|
5338
5482
|
/**
|
|
5339
5483
|
* (Not implemented) - Find a list of Job Execution
|
|
5340
5484
|
* @param body The request body
|
|
5341
5485
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5342
5486
|
* @returns {RequestInformation}
|
|
5343
5487
|
*/
|
|
5344
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5488
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$j> | undefined): RequestInformation;
|
|
5345
5489
|
}
|
|
5346
5490
|
/**
|
|
5347
5491
|
* (Not implemented) - Find a list of Job Execution
|
|
5348
5492
|
*/
|
|
5349
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
5493
|
+
interface FindRequestBuilderPostQueryParameters$j {
|
|
5350
5494
|
page?: number;
|
|
5351
5495
|
size?: number;
|
|
5352
5496
|
sort?: string;
|
|
5353
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
5497
|
+
sortOrder?: PostSortOrderQueryParameterType$k;
|
|
5354
5498
|
}
|
|
5355
|
-
type PostSortOrderQueryParameterType$
|
|
5356
|
-
declare const FindPostResponse_objectObject$
|
|
5499
|
+
type PostSortOrderQueryParameterType$k = (typeof PostSortOrderQueryParameterTypeObject$k)[keyof typeof PostSortOrderQueryParameterTypeObject$k];
|
|
5500
|
+
declare const FindPostResponse_objectObject$j: {
|
|
5357
5501
|
readonly List: "list";
|
|
5358
5502
|
};
|
|
5359
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5503
|
+
declare const PostSortOrderQueryParameterTypeObject$k: {
|
|
5360
5504
|
readonly DESC: "DESC";
|
|
5361
5505
|
readonly ASC: "ASC";
|
|
5362
5506
|
};
|
|
@@ -5380,7 +5524,7 @@ interface Job_executionsItemRequestBuilder extends BaseRequestBuilder<Job_execut
|
|
|
5380
5524
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5381
5525
|
}
|
|
5382
5526
|
|
|
5383
|
-
type GetSortOrderQueryParameterType$
|
|
5527
|
+
type GetSortOrderQueryParameterType$k = (typeof GetSortOrderQueryParameterTypeObject$k)[keyof typeof GetSortOrderQueryParameterTypeObject$k];
|
|
5384
5528
|
interface Job_executionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5385
5529
|
/**
|
|
5386
5530
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -5407,7 +5551,7 @@ interface Job_executionsRequestBuilder extends BaseRequestBuilder<Job_executions
|
|
|
5407
5551
|
/**
|
|
5408
5552
|
* The find property
|
|
5409
5553
|
*/
|
|
5410
|
-
get find(): FindRequestBuilder$
|
|
5554
|
+
get find(): FindRequestBuilder$j;
|
|
5411
5555
|
/**
|
|
5412
5556
|
* Gets an item from the ApiSdk.v1.data_factory.job_executions.item collection
|
|
5413
5557
|
* @param id Unique identifier of the item
|
|
@@ -5450,9 +5594,9 @@ interface Job_executionsRequestBuilderGetQueryParameters {
|
|
|
5450
5594
|
page?: number;
|
|
5451
5595
|
size?: number;
|
|
5452
5596
|
sort?: string;
|
|
5453
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5597
|
+
sortOrder?: GetSortOrderQueryParameterType$k;
|
|
5454
5598
|
}
|
|
5455
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5599
|
+
declare const GetSortOrderQueryParameterTypeObject$k: {
|
|
5456
5600
|
readonly DESC: "DESC";
|
|
5457
5601
|
readonly ASC: "ASC";
|
|
5458
5602
|
};
|
|
@@ -5460,16 +5604,73 @@ declare const Job_executionsGetResponse_objectObject: {
|
|
|
5460
5604
|
readonly List: "list";
|
|
5461
5605
|
};
|
|
5462
5606
|
|
|
5463
|
-
|
|
5464
|
-
* Builds and executes requests for operations under /v1/data_factory/jobs/{id}/zip
|
|
5465
|
-
*/
|
|
5466
|
-
interface ZipRequestBuilder extends BaseRequestBuilder<ZipRequestBuilder> {
|
|
5607
|
+
interface FindPostResponse$i extends AdditionalDataHolder, Parsable {
|
|
5467
5608
|
/**
|
|
5468
|
-
*
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
|
|
5472
|
-
*
|
|
5609
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5610
|
+
*/
|
|
5611
|
+
additionalData?: Record<string, unknown>;
|
|
5612
|
+
/**
|
|
5613
|
+
* The data property
|
|
5614
|
+
*/
|
|
5615
|
+
data?: JobDto[] | null;
|
|
5616
|
+
/**
|
|
5617
|
+
* The object property
|
|
5618
|
+
*/
|
|
5619
|
+
object?: FindPostResponse_object$i | null;
|
|
5620
|
+
/**
|
|
5621
|
+
* The totalElements property
|
|
5622
|
+
*/
|
|
5623
|
+
totalElements?: number | null;
|
|
5624
|
+
}
|
|
5625
|
+
type FindPostResponse_object$i = (typeof FindPostResponse_objectObject$i)[keyof typeof FindPostResponse_objectObject$i];
|
|
5626
|
+
/**
|
|
5627
|
+
* Builds and executes requests for operations under /v1/data_factory/jobs/find
|
|
5628
|
+
*/
|
|
5629
|
+
interface FindRequestBuilder$i extends BaseRequestBuilder<FindRequestBuilder$i> {
|
|
5630
|
+
/**
|
|
5631
|
+
* Find a list of Job
|
|
5632
|
+
* @param body The request body
|
|
5633
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5634
|
+
* @returns {Promise<FindPostResponse>}
|
|
5635
|
+
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5636
|
+
*/
|
|
5637
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$i> | undefined): Promise<FindPostResponse$i | undefined>;
|
|
5638
|
+
/**
|
|
5639
|
+
* Find a list of Job
|
|
5640
|
+
* @param body The request body
|
|
5641
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5642
|
+
* @returns {RequestInformation}
|
|
5643
|
+
*/
|
|
5644
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$i> | undefined): RequestInformation;
|
|
5645
|
+
}
|
|
5646
|
+
/**
|
|
5647
|
+
* Find a list of Job
|
|
5648
|
+
*/
|
|
5649
|
+
interface FindRequestBuilderPostQueryParameters$i {
|
|
5650
|
+
page?: number;
|
|
5651
|
+
size?: number;
|
|
5652
|
+
sort?: string;
|
|
5653
|
+
sortOrder?: PostSortOrderQueryParameterType$j;
|
|
5654
|
+
}
|
|
5655
|
+
type PostSortOrderQueryParameterType$j = (typeof PostSortOrderQueryParameterTypeObject$j)[keyof typeof PostSortOrderQueryParameterTypeObject$j];
|
|
5656
|
+
declare const FindPostResponse_objectObject$i: {
|
|
5657
|
+
readonly List: "list";
|
|
5658
|
+
};
|
|
5659
|
+
declare const PostSortOrderQueryParameterTypeObject$j: {
|
|
5660
|
+
readonly DESC: "DESC";
|
|
5661
|
+
readonly ASC: "ASC";
|
|
5662
|
+
};
|
|
5663
|
+
|
|
5664
|
+
/**
|
|
5665
|
+
* Builds and executes requests for operations under /v1/data_factory/jobs/{id}/zip
|
|
5666
|
+
*/
|
|
5667
|
+
interface ZipRequestBuilder extends BaseRequestBuilder<ZipRequestBuilder> {
|
|
5668
|
+
/**
|
|
5669
|
+
* Upload a zip to update a job
|
|
5670
|
+
* @param body The request body
|
|
5671
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5672
|
+
* @returns {Promise<JobDto>}
|
|
5673
|
+
* @throws {JobDto413Error} error when the service returns a 413 status code
|
|
5473
5674
|
*/
|
|
5474
5675
|
put(body: MultipartBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<JobDto | undefined>;
|
|
5475
5676
|
/**
|
|
@@ -5519,7 +5720,7 @@ interface JobsItemRequestBuilder extends BaseRequestBuilder<JobsItemRequestBuild
|
|
|
5519
5720
|
toPutRequestInformation(body: UpdateJobDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5520
5721
|
}
|
|
5521
5722
|
|
|
5522
|
-
type GetSortOrderQueryParameterType$
|
|
5723
|
+
type GetSortOrderQueryParameterType$j = (typeof GetSortOrderQueryParameterTypeObject$j)[keyof typeof GetSortOrderQueryParameterTypeObject$j];
|
|
5523
5724
|
interface JobsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5524
5725
|
/**
|
|
5525
5726
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -5543,6 +5744,10 @@ type JobsGetResponse_object = (typeof JobsGetResponse_objectObject)[keyof typeof
|
|
|
5543
5744
|
* Builds and executes requests for operations under /v1/data_factory/jobs
|
|
5544
5745
|
*/
|
|
5545
5746
|
interface JobsRequestBuilder extends BaseRequestBuilder<JobsRequestBuilder> {
|
|
5747
|
+
/**
|
|
5748
|
+
* The find property
|
|
5749
|
+
*/
|
|
5750
|
+
get find(): FindRequestBuilder$i;
|
|
5546
5751
|
/**
|
|
5547
5752
|
* Gets an item from the ApiSdk.v1.data_factory.jobs.item collection
|
|
5548
5753
|
* @param id Unique identifier of the item
|
|
@@ -5585,9 +5790,9 @@ interface JobsRequestBuilderGetQueryParameters {
|
|
|
5585
5790
|
page?: number;
|
|
5586
5791
|
size?: number;
|
|
5587
5792
|
sort?: string;
|
|
5588
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5793
|
+
sortOrder?: GetSortOrderQueryParameterType$j;
|
|
5589
5794
|
}
|
|
5590
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5795
|
+
declare const GetSortOrderQueryParameterTypeObject$j: {
|
|
5591
5796
|
readonly DESC: "DESC";
|
|
5592
5797
|
readonly ASC: "ASC";
|
|
5593
5798
|
};
|
|
@@ -5595,7 +5800,7 @@ declare const JobsGetResponse_objectObject: {
|
|
|
5595
5800
|
readonly List: "list";
|
|
5596
5801
|
};
|
|
5597
5802
|
|
|
5598
|
-
interface FindPostResponse$
|
|
5803
|
+
interface FindPostResponse$h extends AdditionalDataHolder, Parsable {
|
|
5599
5804
|
/**
|
|
5600
5805
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5601
5806
|
*/
|
|
@@ -5607,17 +5812,17 @@ interface FindPostResponse$g extends AdditionalDataHolder, Parsable {
|
|
|
5607
5812
|
/**
|
|
5608
5813
|
* The object property
|
|
5609
5814
|
*/
|
|
5610
|
-
object?: FindPostResponse_object$
|
|
5815
|
+
object?: FindPostResponse_object$h | null;
|
|
5611
5816
|
/**
|
|
5612
5817
|
* The totalElements property
|
|
5613
5818
|
*/
|
|
5614
5819
|
totalElements?: number | null;
|
|
5615
5820
|
}
|
|
5616
|
-
type FindPostResponse_object$
|
|
5821
|
+
type FindPostResponse_object$h = (typeof FindPostResponse_objectObject$h)[keyof typeof FindPostResponse_objectObject$h];
|
|
5617
5822
|
/**
|
|
5618
5823
|
* Builds and executes requests for operations under /v1/data_factory/projects/find
|
|
5619
5824
|
*/
|
|
5620
|
-
interface FindRequestBuilder$
|
|
5825
|
+
interface FindRequestBuilder$h extends BaseRequestBuilder<FindRequestBuilder$h> {
|
|
5621
5826
|
/**
|
|
5622
5827
|
* Find a list of Project
|
|
5623
5828
|
* @param body The request body
|
|
@@ -5625,29 +5830,29 @@ interface FindRequestBuilder$g extends BaseRequestBuilder<FindRequestBuilder$g>
|
|
|
5625
5830
|
* @returns {Promise<FindPostResponse>}
|
|
5626
5831
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
5627
5832
|
*/
|
|
5628
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5833
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$h> | undefined): Promise<FindPostResponse$h | undefined>;
|
|
5629
5834
|
/**
|
|
5630
5835
|
* Find a list of Project
|
|
5631
5836
|
* @param body The request body
|
|
5632
5837
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
5633
5838
|
* @returns {RequestInformation}
|
|
5634
5839
|
*/
|
|
5635
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
5840
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$h> | undefined): RequestInformation;
|
|
5636
5841
|
}
|
|
5637
5842
|
/**
|
|
5638
5843
|
* Find a list of Project
|
|
5639
5844
|
*/
|
|
5640
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
5845
|
+
interface FindRequestBuilderPostQueryParameters$h {
|
|
5641
5846
|
page?: number;
|
|
5642
5847
|
size?: number;
|
|
5643
5848
|
sort?: string;
|
|
5644
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
5849
|
+
sortOrder?: PostSortOrderQueryParameterType$i;
|
|
5645
5850
|
}
|
|
5646
|
-
type PostSortOrderQueryParameterType$
|
|
5647
|
-
declare const FindPostResponse_objectObject$
|
|
5851
|
+
type PostSortOrderQueryParameterType$i = (typeof PostSortOrderQueryParameterTypeObject$i)[keyof typeof PostSortOrderQueryParameterTypeObject$i];
|
|
5852
|
+
declare const FindPostResponse_objectObject$h: {
|
|
5648
5853
|
readonly List: "list";
|
|
5649
5854
|
};
|
|
5650
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
5855
|
+
declare const PostSortOrderQueryParameterTypeObject$i: {
|
|
5651
5856
|
readonly DESC: "DESC";
|
|
5652
5857
|
readonly ASC: "ASC";
|
|
5653
5858
|
};
|
|
@@ -5713,7 +5918,7 @@ interface ProjectsItemRequestBuilder extends BaseRequestBuilder<ProjectsItemRequ
|
|
|
5713
5918
|
toPutRequestInformation(body: ProjectDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5714
5919
|
}
|
|
5715
5920
|
|
|
5716
|
-
type GetSortOrderQueryParameterType$
|
|
5921
|
+
type GetSortOrderQueryParameterType$i = (typeof GetSortOrderQueryParameterTypeObject$i)[keyof typeof GetSortOrderQueryParameterTypeObject$i];
|
|
5717
5922
|
interface ProjectsGetResponse extends AdditionalDataHolder, Parsable {
|
|
5718
5923
|
/**
|
|
5719
5924
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -5740,7 +5945,7 @@ interface ProjectsRequestBuilder extends BaseRequestBuilder<ProjectsRequestBuild
|
|
|
5740
5945
|
/**
|
|
5741
5946
|
* The find property
|
|
5742
5947
|
*/
|
|
5743
|
-
get find(): FindRequestBuilder$
|
|
5948
|
+
get find(): FindRequestBuilder$h;
|
|
5744
5949
|
/**
|
|
5745
5950
|
* Gets an item from the ApiSdk.v1.data_factory.projects.item collection
|
|
5746
5951
|
* @param id Unique identifier of the item
|
|
@@ -5783,9 +5988,9 @@ interface ProjectsRequestBuilderGetQueryParameters {
|
|
|
5783
5988
|
page?: number;
|
|
5784
5989
|
size?: number;
|
|
5785
5990
|
sort?: string;
|
|
5786
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
5991
|
+
sortOrder?: GetSortOrderQueryParameterType$i;
|
|
5787
5992
|
}
|
|
5788
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
5993
|
+
declare const GetSortOrderQueryParameterTypeObject$i: {
|
|
5789
5994
|
readonly DESC: "DESC";
|
|
5790
5995
|
readonly ASC: "ASC";
|
|
5791
5996
|
};
|
|
@@ -5908,7 +6113,7 @@ interface TasksItemRequestBuilder extends BaseRequestBuilder<TasksItemRequestBui
|
|
|
5908
6113
|
toPutRequestInformation(body: UpdateTaskDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
5909
6114
|
}
|
|
5910
6115
|
|
|
5911
|
-
type GetSortOrderQueryParameterType$
|
|
6116
|
+
type GetSortOrderQueryParameterType$h = (typeof GetSortOrderQueryParameterTypeObject$h)[keyof typeof GetSortOrderQueryParameterTypeObject$h];
|
|
5912
6117
|
interface TasksGetResponse extends AdditionalDataHolder, Parsable {
|
|
5913
6118
|
/**
|
|
5914
6119
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -5974,9 +6179,9 @@ interface TasksRequestBuilderGetQueryParameters {
|
|
|
5974
6179
|
page?: number;
|
|
5975
6180
|
size?: number;
|
|
5976
6181
|
sort?: string;
|
|
5977
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6182
|
+
sortOrder?: GetSortOrderQueryParameterType$h;
|
|
5978
6183
|
}
|
|
5979
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
6184
|
+
declare const GetSortOrderQueryParameterTypeObject$h: {
|
|
5980
6185
|
readonly DESC: "DESC";
|
|
5981
6186
|
readonly ASC: "ASC";
|
|
5982
6187
|
};
|
|
@@ -5984,7 +6189,7 @@ declare const TasksGetResponse_objectObject: {
|
|
|
5984
6189
|
readonly List: "list";
|
|
5985
6190
|
};
|
|
5986
6191
|
|
|
5987
|
-
interface FindPostResponse$
|
|
6192
|
+
interface FindPostResponse$g extends AdditionalDataHolder, Parsable {
|
|
5988
6193
|
/**
|
|
5989
6194
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5990
6195
|
*/
|
|
@@ -5996,17 +6201,17 @@ interface FindPostResponse$f extends AdditionalDataHolder, Parsable {
|
|
|
5996
6201
|
/**
|
|
5997
6202
|
* The object property
|
|
5998
6203
|
*/
|
|
5999
|
-
object?: FindPostResponse_object$
|
|
6204
|
+
object?: FindPostResponse_object$g | null;
|
|
6000
6205
|
/**
|
|
6001
6206
|
* The totalElements property
|
|
6002
6207
|
*/
|
|
6003
6208
|
totalElements?: number | null;
|
|
6004
6209
|
}
|
|
6005
|
-
type FindPostResponse_object$
|
|
6210
|
+
type FindPostResponse_object$g = (typeof FindPostResponse_objectObject$g)[keyof typeof FindPostResponse_objectObject$g];
|
|
6006
6211
|
/**
|
|
6007
6212
|
* Builds and executes requests for operations under /v1/data_factory/variables/find
|
|
6008
6213
|
*/
|
|
6009
|
-
interface FindRequestBuilder$
|
|
6214
|
+
interface FindRequestBuilder$g extends BaseRequestBuilder<FindRequestBuilder$g> {
|
|
6010
6215
|
/**
|
|
6011
6216
|
* Find a list of Variable
|
|
6012
6217
|
* @param body The request body
|
|
@@ -6014,29 +6219,29 @@ interface FindRequestBuilder$f extends BaseRequestBuilder<FindRequestBuilder$f>
|
|
|
6014
6219
|
* @returns {Promise<FindPostResponse>}
|
|
6015
6220
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
6016
6221
|
*/
|
|
6017
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6222
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$g> | undefined): Promise<FindPostResponse$g | undefined>;
|
|
6018
6223
|
/**
|
|
6019
6224
|
* Find a list of Variable
|
|
6020
6225
|
* @param body The request body
|
|
6021
6226
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6022
6227
|
* @returns {RequestInformation}
|
|
6023
6228
|
*/
|
|
6024
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6229
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$g> | undefined): RequestInformation;
|
|
6025
6230
|
}
|
|
6026
6231
|
/**
|
|
6027
6232
|
* Find a list of Variable
|
|
6028
6233
|
*/
|
|
6029
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
6234
|
+
interface FindRequestBuilderPostQueryParameters$g {
|
|
6030
6235
|
page?: number;
|
|
6031
6236
|
size?: number;
|
|
6032
6237
|
sort?: string;
|
|
6033
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
6238
|
+
sortOrder?: PostSortOrderQueryParameterType$h;
|
|
6034
6239
|
}
|
|
6035
|
-
type PostSortOrderQueryParameterType$
|
|
6036
|
-
declare const FindPostResponse_objectObject$
|
|
6240
|
+
type PostSortOrderQueryParameterType$h = (typeof PostSortOrderQueryParameterTypeObject$h)[keyof typeof PostSortOrderQueryParameterTypeObject$h];
|
|
6241
|
+
declare const FindPostResponse_objectObject$g: {
|
|
6037
6242
|
readonly List: "list";
|
|
6038
6243
|
};
|
|
6039
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
6244
|
+
declare const PostSortOrderQueryParameterTypeObject$h: {
|
|
6040
6245
|
readonly DESC: "DESC";
|
|
6041
6246
|
readonly ASC: "ASC";
|
|
6042
6247
|
};
|
|
@@ -6075,7 +6280,7 @@ interface VariablesItemRequestBuilder extends BaseRequestBuilder<VariablesItemRe
|
|
|
6075
6280
|
toPutRequestInformation(body: UpdateVariableDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6076
6281
|
}
|
|
6077
6282
|
|
|
6078
|
-
type GetSortOrderQueryParameterType$
|
|
6283
|
+
type GetSortOrderQueryParameterType$g = (typeof GetSortOrderQueryParameterTypeObject$g)[keyof typeof GetSortOrderQueryParameterTypeObject$g];
|
|
6079
6284
|
interface VariablesGetResponse extends AdditionalDataHolder, Parsable {
|
|
6080
6285
|
/**
|
|
6081
6286
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -6102,7 +6307,7 @@ interface VariablesRequestBuilder extends BaseRequestBuilder<VariablesRequestBui
|
|
|
6102
6307
|
/**
|
|
6103
6308
|
* The find property
|
|
6104
6309
|
*/
|
|
6105
|
-
get find(): FindRequestBuilder$
|
|
6310
|
+
get find(): FindRequestBuilder$g;
|
|
6106
6311
|
/**
|
|
6107
6312
|
* Gets an item from the ApiSdk.v1.data_factory.variables.item collection
|
|
6108
6313
|
* @param id Unique identifier of the item
|
|
@@ -6145,9 +6350,9 @@ interface VariablesRequestBuilderGetQueryParameters {
|
|
|
6145
6350
|
page?: number;
|
|
6146
6351
|
size?: number;
|
|
6147
6352
|
sort?: string;
|
|
6148
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6353
|
+
sortOrder?: GetSortOrderQueryParameterType$g;
|
|
6149
6354
|
}
|
|
6150
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
6355
|
+
declare const GetSortOrderQueryParameterTypeObject$g: {
|
|
6151
6356
|
readonly DESC: "DESC";
|
|
6152
6357
|
readonly ASC: "ASC";
|
|
6153
6358
|
};
|
|
@@ -6189,7 +6394,7 @@ interface Data_factoryRequestBuilder extends BaseRequestBuilder<Data_factoryRequ
|
|
|
6189
6394
|
get variables(): VariablesRequestBuilder;
|
|
6190
6395
|
}
|
|
6191
6396
|
|
|
6192
|
-
interface FindPostResponse$
|
|
6397
|
+
interface FindPostResponse$f extends AdditionalDataHolder, Parsable {
|
|
6193
6398
|
/**
|
|
6194
6399
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6195
6400
|
*/
|
|
@@ -6201,17 +6406,17 @@ interface FindPostResponse$e extends AdditionalDataHolder, Parsable {
|
|
|
6201
6406
|
/**
|
|
6202
6407
|
* The object property
|
|
6203
6408
|
*/
|
|
6204
|
-
object?: FindPostResponse_object$
|
|
6409
|
+
object?: FindPostResponse_object$f | null;
|
|
6205
6410
|
/**
|
|
6206
6411
|
* The totalElements property
|
|
6207
6412
|
*/
|
|
6208
6413
|
totalElements?: number | null;
|
|
6209
6414
|
}
|
|
6210
|
-
type FindPostResponse_object$
|
|
6415
|
+
type FindPostResponse_object$f = (typeof FindPostResponse_objectObject$f)[keyof typeof FindPostResponse_objectObject$f];
|
|
6211
6416
|
/**
|
|
6212
6417
|
* Builds and executes requests for operations under /v1/field_values/find
|
|
6213
6418
|
*/
|
|
6214
|
-
interface FindRequestBuilder$
|
|
6419
|
+
interface FindRequestBuilder$f extends BaseRequestBuilder<FindRequestBuilder$f> {
|
|
6215
6420
|
/**
|
|
6216
6421
|
* Find a list of Field Value
|
|
6217
6422
|
* @param body The request body
|
|
@@ -6219,30 +6424,30 @@ interface FindRequestBuilder$e extends BaseRequestBuilder<FindRequestBuilder$e>
|
|
|
6219
6424
|
* @returns {Promise<FindPostResponse>}
|
|
6220
6425
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
6221
6426
|
*/
|
|
6222
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6427
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$f> | undefined): Promise<FindPostResponse$f | undefined>;
|
|
6223
6428
|
/**
|
|
6224
6429
|
* Find a list of Field Value
|
|
6225
6430
|
* @param body The request body
|
|
6226
6431
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6227
6432
|
* @returns {RequestInformation}
|
|
6228
6433
|
*/
|
|
6229
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6434
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$f> | undefined): RequestInformation;
|
|
6230
6435
|
}
|
|
6231
6436
|
/**
|
|
6232
6437
|
* Find a list of Field Value
|
|
6233
6438
|
*/
|
|
6234
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
6439
|
+
interface FindRequestBuilderPostQueryParameters$f {
|
|
6235
6440
|
fieldId?: string;
|
|
6236
6441
|
page?: number;
|
|
6237
6442
|
size?: number;
|
|
6238
6443
|
sort?: string;
|
|
6239
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
6444
|
+
sortOrder?: PostSortOrderQueryParameterType$g;
|
|
6240
6445
|
}
|
|
6241
|
-
type PostSortOrderQueryParameterType$
|
|
6242
|
-
declare const FindPostResponse_objectObject$
|
|
6446
|
+
type PostSortOrderQueryParameterType$g = (typeof PostSortOrderQueryParameterTypeObject$g)[keyof typeof PostSortOrderQueryParameterTypeObject$g];
|
|
6447
|
+
declare const FindPostResponse_objectObject$f: {
|
|
6243
6448
|
readonly List: "list";
|
|
6244
6449
|
};
|
|
6245
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
6450
|
+
declare const PostSortOrderQueryParameterTypeObject$g: {
|
|
6246
6451
|
readonly DESC: "DESC";
|
|
6247
6452
|
readonly ASC: "ASC";
|
|
6248
6453
|
};
|
|
@@ -6292,7 +6497,7 @@ interface Field_valuesRequestBuilder extends BaseRequestBuilder<Field_valuesRequ
|
|
|
6292
6497
|
/**
|
|
6293
6498
|
* The find property
|
|
6294
6499
|
*/
|
|
6295
|
-
get find(): FindRequestBuilder$
|
|
6500
|
+
get find(): FindRequestBuilder$f;
|
|
6296
6501
|
/**
|
|
6297
6502
|
* Gets an item from the ApiSdk.v1.field_values.item collection
|
|
6298
6503
|
* @param id Unique identifier of the item
|
|
@@ -6321,18 +6526,18 @@ interface Field_valuesRequestBuilderGetQueryParameters {
|
|
|
6321
6526
|
page?: number;
|
|
6322
6527
|
size?: number;
|
|
6323
6528
|
sort?: string;
|
|
6324
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6529
|
+
sortOrder?: GetSortOrderQueryParameterType$f;
|
|
6325
6530
|
}
|
|
6326
|
-
type GetSortOrderQueryParameterType$
|
|
6531
|
+
type GetSortOrderQueryParameterType$f = (typeof GetSortOrderQueryParameterTypeObject$f)[keyof typeof GetSortOrderQueryParameterTypeObject$f];
|
|
6327
6532
|
declare const Field_valuesGetResponse_objectObject: {
|
|
6328
6533
|
readonly List: "list";
|
|
6329
6534
|
};
|
|
6330
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
6535
|
+
declare const GetSortOrderQueryParameterTypeObject$f: {
|
|
6331
6536
|
readonly DESC: "DESC";
|
|
6332
6537
|
readonly ASC: "ASC";
|
|
6333
6538
|
};
|
|
6334
6539
|
|
|
6335
|
-
interface FindPostResponse$
|
|
6540
|
+
interface FindPostResponse$e extends AdditionalDataHolder, Parsable {
|
|
6336
6541
|
/**
|
|
6337
6542
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6338
6543
|
*/
|
|
@@ -6344,17 +6549,17 @@ interface FindPostResponse$d extends AdditionalDataHolder, Parsable {
|
|
|
6344
6549
|
/**
|
|
6345
6550
|
* The object property
|
|
6346
6551
|
*/
|
|
6347
|
-
object?: FindPostResponse_object$
|
|
6552
|
+
object?: FindPostResponse_object$e | null;
|
|
6348
6553
|
/**
|
|
6349
6554
|
* The totalElements property
|
|
6350
6555
|
*/
|
|
6351
6556
|
totalElements?: number | null;
|
|
6352
6557
|
}
|
|
6353
|
-
type FindPostResponse_object$
|
|
6558
|
+
type FindPostResponse_object$e = (typeof FindPostResponse_objectObject$e)[keyof typeof FindPostResponse_objectObject$e];
|
|
6354
6559
|
/**
|
|
6355
6560
|
* Builds and executes requests for operations under /v1/fields/find
|
|
6356
6561
|
*/
|
|
6357
|
-
interface FindRequestBuilder$
|
|
6562
|
+
interface FindRequestBuilder$e extends BaseRequestBuilder<FindRequestBuilder$e> {
|
|
6358
6563
|
/**
|
|
6359
6564
|
* Find a list of Field
|
|
6360
6565
|
* @param body The request body
|
|
@@ -6362,30 +6567,30 @@ interface FindRequestBuilder$d extends BaseRequestBuilder<FindRequestBuilder$d>
|
|
|
6362
6567
|
* @returns {Promise<FindPostResponse>}
|
|
6363
6568
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
6364
6569
|
*/
|
|
6365
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6570
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$e> | undefined): Promise<FindPostResponse$e | undefined>;
|
|
6366
6571
|
/**
|
|
6367
6572
|
* Find a list of Field
|
|
6368
6573
|
* @param body The request body
|
|
6369
6574
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6370
6575
|
* @returns {RequestInformation}
|
|
6371
6576
|
*/
|
|
6372
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6577
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$e> | undefined): RequestInformation;
|
|
6373
6578
|
}
|
|
6374
6579
|
/**
|
|
6375
6580
|
* Find a list of Field
|
|
6376
6581
|
*/
|
|
6377
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
6582
|
+
interface FindRequestBuilderPostQueryParameters$e {
|
|
6378
6583
|
page?: number;
|
|
6379
6584
|
size?: number;
|
|
6380
6585
|
sort?: string;
|
|
6381
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
6586
|
+
sortOrder?: PostSortOrderQueryParameterType$f;
|
|
6382
6587
|
tableId?: string;
|
|
6383
6588
|
}
|
|
6384
|
-
type PostSortOrderQueryParameterType$
|
|
6385
|
-
declare const FindPostResponse_objectObject$
|
|
6589
|
+
type PostSortOrderQueryParameterType$f = (typeof PostSortOrderQueryParameterTypeObject$f)[keyof typeof PostSortOrderQueryParameterTypeObject$f];
|
|
6590
|
+
declare const FindPostResponse_objectObject$e: {
|
|
6386
6591
|
readonly List: "list";
|
|
6387
6592
|
};
|
|
6388
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
6593
|
+
declare const PostSortOrderQueryParameterTypeObject$f: {
|
|
6389
6594
|
readonly DESC: "DESC";
|
|
6390
6595
|
readonly ASC: "ASC";
|
|
6391
6596
|
};
|
|
@@ -6450,7 +6655,7 @@ interface FieldsRequestBuilder extends BaseRequestBuilder<FieldsRequestBuilder>
|
|
|
6450
6655
|
/**
|
|
6451
6656
|
* The find property
|
|
6452
6657
|
*/
|
|
6453
|
-
get find(): FindRequestBuilder$
|
|
6658
|
+
get find(): FindRequestBuilder$e;
|
|
6454
6659
|
/**
|
|
6455
6660
|
* Gets an item from the ApiSdk.v1.fields.item collection
|
|
6456
6661
|
* @param id Unique identifier of the item
|
|
@@ -6478,19 +6683,19 @@ interface FieldsRequestBuilderGetQueryParameters {
|
|
|
6478
6683
|
page?: number;
|
|
6479
6684
|
size?: number;
|
|
6480
6685
|
sort?: string;
|
|
6481
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6686
|
+
sortOrder?: GetSortOrderQueryParameterType$e;
|
|
6482
6687
|
tableId?: string;
|
|
6483
6688
|
}
|
|
6484
|
-
type GetSortOrderQueryParameterType$
|
|
6689
|
+
type GetSortOrderQueryParameterType$e = (typeof GetSortOrderQueryParameterTypeObject$e)[keyof typeof GetSortOrderQueryParameterTypeObject$e];
|
|
6485
6690
|
declare const FieldsGetResponse_objectObject: {
|
|
6486
6691
|
readonly List: "list";
|
|
6487
6692
|
};
|
|
6488
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
6693
|
+
declare const GetSortOrderQueryParameterTypeObject$e: {
|
|
6489
6694
|
readonly DESC: "DESC";
|
|
6490
6695
|
readonly ASC: "ASC";
|
|
6491
6696
|
};
|
|
6492
6697
|
|
|
6493
|
-
interface FindPostResponse$
|
|
6698
|
+
interface FindPostResponse$d extends AdditionalDataHolder, Parsable {
|
|
6494
6699
|
/**
|
|
6495
6700
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6496
6701
|
*/
|
|
@@ -6502,17 +6707,17 @@ interface FindPostResponse$c extends AdditionalDataHolder, Parsable {
|
|
|
6502
6707
|
/**
|
|
6503
6708
|
* The object property
|
|
6504
6709
|
*/
|
|
6505
|
-
object?: FindPostResponse_object$
|
|
6710
|
+
object?: FindPostResponse_object$d | null;
|
|
6506
6711
|
/**
|
|
6507
6712
|
* The totalElements property
|
|
6508
6713
|
*/
|
|
6509
6714
|
totalElements?: number | null;
|
|
6510
6715
|
}
|
|
6511
|
-
type FindPostResponse_object$
|
|
6716
|
+
type FindPostResponse_object$d = (typeof FindPostResponse_objectObject$d)[keyof typeof FindPostResponse_objectObject$d];
|
|
6512
6717
|
/**
|
|
6513
6718
|
* Builds and executes requests for operations under /v1/item_links/find
|
|
6514
6719
|
*/
|
|
6515
|
-
interface FindRequestBuilder$
|
|
6720
|
+
interface FindRequestBuilder$d extends BaseRequestBuilder<FindRequestBuilder$d> {
|
|
6516
6721
|
/**
|
|
6517
6722
|
* Find a list of Item link
|
|
6518
6723
|
* @param body The request body
|
|
@@ -6520,30 +6725,30 @@ interface FindRequestBuilder$c extends BaseRequestBuilder<FindRequestBuilder$c>
|
|
|
6520
6725
|
* @returns {Promise<FindPostResponse>}
|
|
6521
6726
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
6522
6727
|
*/
|
|
6523
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6728
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$d> | undefined): Promise<FindPostResponse$d | undefined>;
|
|
6524
6729
|
/**
|
|
6525
6730
|
* Find a list of Item link
|
|
6526
6731
|
* @param body The request body
|
|
6527
6732
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6528
6733
|
* @returns {RequestInformation}
|
|
6529
6734
|
*/
|
|
6530
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
6735
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$d> | undefined): RequestInformation;
|
|
6531
6736
|
}
|
|
6532
6737
|
/**
|
|
6533
6738
|
* Find a list of Item link
|
|
6534
6739
|
*/
|
|
6535
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
6740
|
+
interface FindRequestBuilderPostQueryParameters$d {
|
|
6536
6741
|
page?: number;
|
|
6537
6742
|
size?: number;
|
|
6538
6743
|
sort?: string;
|
|
6539
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
6744
|
+
sortOrder?: PostSortOrderQueryParameterType$e;
|
|
6540
6745
|
tableId?: string;
|
|
6541
6746
|
}
|
|
6542
|
-
type PostSortOrderQueryParameterType$
|
|
6543
|
-
declare const FindPostResponse_objectObject$
|
|
6747
|
+
type PostSortOrderQueryParameterType$e = (typeof PostSortOrderQueryParameterTypeObject$e)[keyof typeof PostSortOrderQueryParameterTypeObject$e];
|
|
6748
|
+
declare const FindPostResponse_objectObject$d: {
|
|
6544
6749
|
readonly List: "list";
|
|
6545
6750
|
};
|
|
6546
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
6751
|
+
declare const PostSortOrderQueryParameterTypeObject$e: {
|
|
6547
6752
|
readonly DESC: "DESC";
|
|
6548
6753
|
readonly ASC: "ASC";
|
|
6549
6754
|
};
|
|
@@ -6579,7 +6784,7 @@ interface Item_linksItemRequestBuilder extends BaseRequestBuilder<Item_linksItem
|
|
|
6579
6784
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6580
6785
|
}
|
|
6581
6786
|
|
|
6582
|
-
type GetSortOrderQueryParameterType$
|
|
6787
|
+
type GetSortOrderQueryParameterType$d = (typeof GetSortOrderQueryParameterTypeObject$d)[keyof typeof GetSortOrderQueryParameterTypeObject$d];
|
|
6583
6788
|
interface Item_linksGetResponse extends AdditionalDataHolder, Parsable {
|
|
6584
6789
|
/**
|
|
6585
6790
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -6606,7 +6811,7 @@ interface Item_linksRequestBuilder extends BaseRequestBuilder<Item_linksRequestB
|
|
|
6606
6811
|
/**
|
|
6607
6812
|
* The find property
|
|
6608
6813
|
*/
|
|
6609
|
-
get find(): FindRequestBuilder$
|
|
6814
|
+
get find(): FindRequestBuilder$d;
|
|
6610
6815
|
/**
|
|
6611
6816
|
* Gets an item from the ApiSdk.v1.item_links.item collection
|
|
6612
6817
|
* @param id Unique identifier of the item
|
|
@@ -6649,10 +6854,10 @@ interface Item_linksRequestBuilderGetQueryParameters {
|
|
|
6649
6854
|
page?: number;
|
|
6650
6855
|
size?: number;
|
|
6651
6856
|
sort?: string;
|
|
6652
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
6857
|
+
sortOrder?: GetSortOrderQueryParameterType$d;
|
|
6653
6858
|
tableId?: string;
|
|
6654
6859
|
}
|
|
6655
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
6860
|
+
declare const GetSortOrderQueryParameterTypeObject$d: {
|
|
6656
6861
|
readonly DESC: "DESC";
|
|
6657
6862
|
readonly ASC: "ASC";
|
|
6658
6863
|
};
|
|
@@ -6660,7 +6865,7 @@ declare const Item_linksGetResponse_objectObject: {
|
|
|
6660
6865
|
readonly List: "list";
|
|
6661
6866
|
};
|
|
6662
6867
|
|
|
6663
|
-
type PostSortOrderQueryParameterType$
|
|
6868
|
+
type PostSortOrderQueryParameterType$d = (typeof PostSortOrderQueryParameterTypeObject$d)[keyof typeof PostSortOrderQueryParameterTypeObject$d];
|
|
6664
6869
|
/**
|
|
6665
6870
|
* Builds and executes requests for operations under /v1/items/find/table/{tableId}/partition/{partitionId}/level/{levelId}
|
|
6666
6871
|
*/
|
|
@@ -6690,7 +6895,7 @@ interface WithLevelItemRequestBuilderPostQueryParameters {
|
|
|
6690
6895
|
page?: number;
|
|
6691
6896
|
size?: number;
|
|
6692
6897
|
sort?: string;
|
|
6693
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
6898
|
+
sortOrder?: PostSortOrderQueryParameterType$d;
|
|
6694
6899
|
}
|
|
6695
6900
|
interface WithLevelPostResponse extends AdditionalDataHolder, Parsable {
|
|
6696
6901
|
/**
|
|
@@ -6711,7 +6916,7 @@ interface WithLevelPostResponse extends AdditionalDataHolder, Parsable {
|
|
|
6711
6916
|
totalElements?: number | null;
|
|
6712
6917
|
}
|
|
6713
6918
|
type WithLevelPostResponse_object = (typeof WithLevelPostResponse_objectObject)[keyof typeof WithLevelPostResponse_objectObject];
|
|
6714
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
6919
|
+
declare const PostSortOrderQueryParameterTypeObject$d: {
|
|
6715
6920
|
readonly DESC: "DESC";
|
|
6716
6921
|
readonly ASC: "ASC";
|
|
6717
6922
|
};
|
|
@@ -6776,7 +6981,7 @@ interface TableRequestBuilder extends BaseRequestBuilder<TableRequestBuilder> {
|
|
|
6776
6981
|
byTableId(tableId: string): WithTableItemRequestBuilder;
|
|
6777
6982
|
}
|
|
6778
6983
|
|
|
6779
|
-
interface FindPostResponse$
|
|
6984
|
+
interface FindPostResponse$c extends AdditionalDataHolder, Parsable {
|
|
6780
6985
|
/**
|
|
6781
6986
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6782
6987
|
*/
|
|
@@ -6788,17 +6993,17 @@ interface FindPostResponse$b extends AdditionalDataHolder, Parsable {
|
|
|
6788
6993
|
/**
|
|
6789
6994
|
* The object property
|
|
6790
6995
|
*/
|
|
6791
|
-
object?: FindPostResponse_object$
|
|
6996
|
+
object?: FindPostResponse_object$c | null;
|
|
6792
6997
|
/**
|
|
6793
6998
|
* The totalElements property
|
|
6794
6999
|
*/
|
|
6795
7000
|
totalElements?: number | null;
|
|
6796
7001
|
}
|
|
6797
|
-
type FindPostResponse_object$
|
|
7002
|
+
type FindPostResponse_object$c = (typeof FindPostResponse_objectObject$c)[keyof typeof FindPostResponse_objectObject$c];
|
|
6798
7003
|
/**
|
|
6799
7004
|
* Builds and executes requests for operations under /v1/items/find
|
|
6800
7005
|
*/
|
|
6801
|
-
interface FindRequestBuilder$
|
|
7006
|
+
interface FindRequestBuilder$c extends BaseRequestBuilder<FindRequestBuilder$c> {
|
|
6802
7007
|
/**
|
|
6803
7008
|
* The table property
|
|
6804
7009
|
*/
|
|
@@ -6810,19 +7015,19 @@ interface FindRequestBuilder$b extends BaseRequestBuilder<FindRequestBuilder$b>
|
|
|
6810
7015
|
* @returns {Promise<FindPostResponse>}
|
|
6811
7016
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
6812
7017
|
*/
|
|
6813
|
-
post(body: FindItemHighOrderQueryDTO | FindItemLowOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7018
|
+
post(body: FindItemHighOrderQueryDTO | FindItemLowOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$c> | undefined): Promise<FindPostResponse$c | undefined>;
|
|
6814
7019
|
/**
|
|
6815
7020
|
* Find a list of Item
|
|
6816
7021
|
* @param body The request body
|
|
6817
7022
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6818
7023
|
* @returns {RequestInformation}
|
|
6819
7024
|
*/
|
|
6820
|
-
toPostRequestInformation(body: FindItemHighOrderQueryDTO | FindItemLowOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7025
|
+
toPostRequestInformation(body: FindItemHighOrderQueryDTO | FindItemLowOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$c> | undefined): RequestInformation;
|
|
6821
7026
|
}
|
|
6822
7027
|
/**
|
|
6823
7028
|
* Find a list of Item
|
|
6824
7029
|
*/
|
|
6825
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
7030
|
+
interface FindRequestBuilderPostQueryParameters$c {
|
|
6826
7031
|
/**
|
|
6827
7032
|
* Level id is optional for mono level tables but mandatory in case of multi levels. It is used to target the level of the items to return.
|
|
6828
7033
|
*/
|
|
@@ -6831,13 +7036,13 @@ interface FindRequestBuilderPostQueryParameters$b {
|
|
|
6831
7036
|
partitionId?: string;
|
|
6832
7037
|
size?: number;
|
|
6833
7038
|
sort?: string;
|
|
6834
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7039
|
+
sortOrder?: PostSortOrderQueryParameterType$c;
|
|
6835
7040
|
}
|
|
6836
|
-
type PostSortOrderQueryParameterType$
|
|
6837
|
-
declare const FindPostResponse_objectObject$
|
|
7041
|
+
type PostSortOrderQueryParameterType$c = (typeof PostSortOrderQueryParameterTypeObject$c)[keyof typeof PostSortOrderQueryParameterTypeObject$c];
|
|
7042
|
+
declare const FindPostResponse_objectObject$c: {
|
|
6838
7043
|
readonly List: "list";
|
|
6839
7044
|
};
|
|
6840
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
7045
|
+
declare const PostSortOrderQueryParameterTypeObject$c: {
|
|
6841
7046
|
readonly DESC: "DESC";
|
|
6842
7047
|
readonly ASC: "ASC";
|
|
6843
7048
|
};
|
|
@@ -6861,7 +7066,7 @@ interface ItemsItemRequestBuilder extends BaseRequestBuilder<ItemsItemRequestBui
|
|
|
6861
7066
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
6862
7067
|
}
|
|
6863
7068
|
|
|
6864
|
-
type GetSortOrderQueryParameterType$
|
|
7069
|
+
type GetSortOrderQueryParameterType$c = (typeof GetSortOrderQueryParameterTypeObject$c)[keyof typeof GetSortOrderQueryParameterTypeObject$c];
|
|
6865
7070
|
interface ItemsGetResponse extends AdditionalDataHolder, Parsable {
|
|
6866
7071
|
/**
|
|
6867
7072
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -6889,7 +7094,7 @@ interface ItemsRequestBuilder extends BaseRequestBuilder<ItemsRequestBuilder> {
|
|
|
6889
7094
|
* The find property
|
|
6890
7095
|
* @deprecated
|
|
6891
7096
|
*/
|
|
6892
|
-
get find(): FindRequestBuilder$
|
|
7097
|
+
get find(): FindRequestBuilder$c;
|
|
6893
7098
|
/**
|
|
6894
7099
|
* Gets an item from the ApiSdk.v1.items.item collection
|
|
6895
7100
|
* @param id Unique identifier of the item
|
|
@@ -6919,9 +7124,9 @@ interface ItemsRequestBuilderGetQueryParameters {
|
|
|
6919
7124
|
page?: number;
|
|
6920
7125
|
size?: number;
|
|
6921
7126
|
sort?: string;
|
|
6922
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
7127
|
+
sortOrder?: GetSortOrderQueryParameterType$c;
|
|
6923
7128
|
}
|
|
6924
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
7129
|
+
declare const GetSortOrderQueryParameterTypeObject$c: {
|
|
6925
7130
|
readonly DESC: "DESC";
|
|
6926
7131
|
readonly ASC: "ASC";
|
|
6927
7132
|
};
|
|
@@ -6929,7 +7134,7 @@ declare const ItemsGetResponse_objectObject: {
|
|
|
6929
7134
|
readonly List: "list";
|
|
6930
7135
|
};
|
|
6931
7136
|
|
|
6932
|
-
interface FindPostResponse$
|
|
7137
|
+
interface FindPostResponse$b extends AdditionalDataHolder, Parsable {
|
|
6933
7138
|
/**
|
|
6934
7139
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6935
7140
|
*/
|
|
@@ -6941,17 +7146,17 @@ interface FindPostResponse$a extends AdditionalDataHolder, Parsable {
|
|
|
6941
7146
|
/**
|
|
6942
7147
|
* The object property
|
|
6943
7148
|
*/
|
|
6944
|
-
object?: FindPostResponse_object$
|
|
7149
|
+
object?: FindPostResponse_object$b | null;
|
|
6945
7150
|
/**
|
|
6946
7151
|
* The totalElements property
|
|
6947
7152
|
*/
|
|
6948
7153
|
totalElements?: number | null;
|
|
6949
7154
|
}
|
|
6950
|
-
type FindPostResponse_object$
|
|
7155
|
+
type FindPostResponse_object$b = (typeof FindPostResponse_objectObject$b)[keyof typeof FindPostResponse_objectObject$b];
|
|
6951
7156
|
/**
|
|
6952
7157
|
* Builds and executes requests for operations under /v1/levels/find
|
|
6953
7158
|
*/
|
|
6954
|
-
interface FindRequestBuilder$
|
|
7159
|
+
interface FindRequestBuilder$b extends BaseRequestBuilder<FindRequestBuilder$b> {
|
|
6955
7160
|
/**
|
|
6956
7161
|
* Find a list of Level
|
|
6957
7162
|
* @param body The request body
|
|
@@ -6959,30 +7164,30 @@ interface FindRequestBuilder$a extends BaseRequestBuilder<FindRequestBuilder$a>
|
|
|
6959
7164
|
* @returns {Promise<FindPostResponse>}
|
|
6960
7165
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
6961
7166
|
*/
|
|
6962
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7167
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$b> | undefined): Promise<FindPostResponse$b | undefined>;
|
|
6963
7168
|
/**
|
|
6964
7169
|
* Find a list of Level
|
|
6965
7170
|
* @param body The request body
|
|
6966
7171
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
6967
7172
|
* @returns {RequestInformation}
|
|
6968
7173
|
*/
|
|
6969
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7174
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$b> | undefined): RequestInformation;
|
|
6970
7175
|
}
|
|
6971
7176
|
/**
|
|
6972
7177
|
* Find a list of Level
|
|
6973
7178
|
*/
|
|
6974
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
7179
|
+
interface FindRequestBuilderPostQueryParameters$b {
|
|
6975
7180
|
page?: number;
|
|
6976
7181
|
size?: number;
|
|
6977
7182
|
sort?: string;
|
|
6978
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7183
|
+
sortOrder?: PostSortOrderQueryParameterType$b;
|
|
6979
7184
|
tableId?: string;
|
|
6980
7185
|
}
|
|
6981
|
-
type PostSortOrderQueryParameterType$
|
|
6982
|
-
declare const FindPostResponse_objectObject$
|
|
7186
|
+
type PostSortOrderQueryParameterType$b = (typeof PostSortOrderQueryParameterTypeObject$b)[keyof typeof PostSortOrderQueryParameterTypeObject$b];
|
|
7187
|
+
declare const FindPostResponse_objectObject$b: {
|
|
6983
7188
|
readonly List: "list";
|
|
6984
7189
|
};
|
|
6985
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
7190
|
+
declare const PostSortOrderQueryParameterTypeObject$b: {
|
|
6986
7191
|
readonly DESC: "DESC";
|
|
6987
7192
|
readonly ASC: "ASC";
|
|
6988
7193
|
};
|
|
@@ -7006,7 +7211,7 @@ interface LevelsItemRequestBuilder extends BaseRequestBuilder<LevelsItemRequestB
|
|
|
7006
7211
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7007
7212
|
}
|
|
7008
7213
|
|
|
7009
|
-
type GetSortOrderQueryParameterType$
|
|
7214
|
+
type GetSortOrderQueryParameterType$b = (typeof GetSortOrderQueryParameterTypeObject$b)[keyof typeof GetSortOrderQueryParameterTypeObject$b];
|
|
7010
7215
|
interface LevelsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7011
7216
|
/**
|
|
7012
7217
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -7033,7 +7238,7 @@ interface LevelsRequestBuilder extends BaseRequestBuilder<LevelsRequestBuilder>
|
|
|
7033
7238
|
/**
|
|
7034
7239
|
* The find property
|
|
7035
7240
|
*/
|
|
7036
|
-
get find(): FindRequestBuilder$
|
|
7241
|
+
get find(): FindRequestBuilder$b;
|
|
7037
7242
|
/**
|
|
7038
7243
|
* Gets an item from the ApiSdk.v1.levels.item collection
|
|
7039
7244
|
* @param id Unique identifier of the item
|
|
@@ -7061,10 +7266,10 @@ interface LevelsRequestBuilderGetQueryParameters {
|
|
|
7061
7266
|
page?: number;
|
|
7062
7267
|
size?: number;
|
|
7063
7268
|
sort?: string;
|
|
7064
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
7269
|
+
sortOrder?: GetSortOrderQueryParameterType$b;
|
|
7065
7270
|
tableId?: string;
|
|
7066
7271
|
}
|
|
7067
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
7272
|
+
declare const GetSortOrderQueryParameterTypeObject$b: {
|
|
7068
7273
|
readonly DESC: "DESC";
|
|
7069
7274
|
readonly ASC: "ASC";
|
|
7070
7275
|
};
|
|
@@ -7072,7 +7277,7 @@ declare const LevelsGetResponse_objectObject: {
|
|
|
7072
7277
|
readonly List: "list";
|
|
7073
7278
|
};
|
|
7074
7279
|
|
|
7075
|
-
interface FindPostResponse$
|
|
7280
|
+
interface FindPostResponse$a extends AdditionalDataHolder, Parsable {
|
|
7076
7281
|
/**
|
|
7077
7282
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7078
7283
|
*/
|
|
@@ -7084,17 +7289,17 @@ interface FindPostResponse$9 extends AdditionalDataHolder, Parsable {
|
|
|
7084
7289
|
/**
|
|
7085
7290
|
* The object property
|
|
7086
7291
|
*/
|
|
7087
|
-
object?: FindPostResponse_object$
|
|
7292
|
+
object?: FindPostResponse_object$a | null;
|
|
7088
7293
|
/**
|
|
7089
7294
|
* The totalElements property
|
|
7090
7295
|
*/
|
|
7091
7296
|
totalElements?: number | null;
|
|
7092
7297
|
}
|
|
7093
|
-
type FindPostResponse_object$
|
|
7298
|
+
type FindPostResponse_object$a = (typeof FindPostResponse_objectObject$a)[keyof typeof FindPostResponse_objectObject$a];
|
|
7094
7299
|
/**
|
|
7095
7300
|
* Builds and executes requests for operations under /v1/matrix_fields/find
|
|
7096
7301
|
*/
|
|
7097
|
-
interface FindRequestBuilder$
|
|
7302
|
+
interface FindRequestBuilder$a extends BaseRequestBuilder<FindRequestBuilder$a> {
|
|
7098
7303
|
/**
|
|
7099
7304
|
* Find a list of Matrix Field
|
|
7100
7305
|
* @param body The request body
|
|
@@ -7102,30 +7307,30 @@ interface FindRequestBuilder$9 extends BaseRequestBuilder<FindRequestBuilder$9>
|
|
|
7102
7307
|
* @returns {Promise<FindPostResponse>}
|
|
7103
7308
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7104
7309
|
*/
|
|
7105
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7310
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$a> | undefined): Promise<FindPostResponse$a | undefined>;
|
|
7106
7311
|
/**
|
|
7107
7312
|
* Find a list of Matrix Field
|
|
7108
7313
|
* @param body The request body
|
|
7109
7314
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7110
7315
|
* @returns {RequestInformation}
|
|
7111
7316
|
*/
|
|
7112
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7317
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$a> | undefined): RequestInformation;
|
|
7113
7318
|
}
|
|
7114
7319
|
/**
|
|
7115
7320
|
* Find a list of Matrix Field
|
|
7116
7321
|
*/
|
|
7117
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
7322
|
+
interface FindRequestBuilderPostQueryParameters$a {
|
|
7118
7323
|
page?: number;
|
|
7119
7324
|
size?: number;
|
|
7120
7325
|
sort?: string;
|
|
7121
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7326
|
+
sortOrder?: PostSortOrderQueryParameterType$a;
|
|
7122
7327
|
tableId?: string;
|
|
7123
7328
|
}
|
|
7124
|
-
type PostSortOrderQueryParameterType$
|
|
7125
|
-
declare const FindPostResponse_objectObject$
|
|
7329
|
+
type PostSortOrderQueryParameterType$a = (typeof PostSortOrderQueryParameterTypeObject$a)[keyof typeof PostSortOrderQueryParameterTypeObject$a];
|
|
7330
|
+
declare const FindPostResponse_objectObject$a: {
|
|
7126
7331
|
readonly List: "list";
|
|
7127
7332
|
};
|
|
7128
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
7333
|
+
declare const PostSortOrderQueryParameterTypeObject$a: {
|
|
7129
7334
|
readonly DESC: "DESC";
|
|
7130
7335
|
readonly ASC: "ASC";
|
|
7131
7336
|
};
|
|
@@ -7149,7 +7354,7 @@ interface Matrix_fieldsItemRequestBuilder extends BaseRequestBuilder<Matrix_fiel
|
|
|
7149
7354
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7150
7355
|
}
|
|
7151
7356
|
|
|
7152
|
-
type GetSortOrderQueryParameterType$
|
|
7357
|
+
type GetSortOrderQueryParameterType$a = (typeof GetSortOrderQueryParameterTypeObject$a)[keyof typeof GetSortOrderQueryParameterTypeObject$a];
|
|
7153
7358
|
interface Matrix_fieldsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7154
7359
|
/**
|
|
7155
7360
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -7176,7 +7381,7 @@ interface Matrix_fieldsRequestBuilder extends BaseRequestBuilder<Matrix_fieldsRe
|
|
|
7176
7381
|
/**
|
|
7177
7382
|
* The find property
|
|
7178
7383
|
*/
|
|
7179
|
-
get find(): FindRequestBuilder$
|
|
7384
|
+
get find(): FindRequestBuilder$a;
|
|
7180
7385
|
/**
|
|
7181
7386
|
* Gets an item from the ApiSdk.v1.matrix_fields.item collection
|
|
7182
7387
|
* @param id Unique identifier of the item
|
|
@@ -7204,10 +7409,10 @@ interface Matrix_fieldsRequestBuilderGetQueryParameters {
|
|
|
7204
7409
|
page?: number;
|
|
7205
7410
|
size?: number;
|
|
7206
7411
|
sort?: string;
|
|
7207
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
7412
|
+
sortOrder?: GetSortOrderQueryParameterType$a;
|
|
7208
7413
|
tableId?: string;
|
|
7209
7414
|
}
|
|
7210
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
7415
|
+
declare const GetSortOrderQueryParameterTypeObject$a: {
|
|
7211
7416
|
readonly DESC: "DESC";
|
|
7212
7417
|
readonly ASC: "ASC";
|
|
7213
7418
|
};
|
|
@@ -7215,7 +7420,7 @@ declare const Matrix_fieldsGetResponse_objectObject: {
|
|
|
7215
7420
|
readonly List: "list";
|
|
7216
7421
|
};
|
|
7217
7422
|
|
|
7218
|
-
interface FindPostResponse$
|
|
7423
|
+
interface FindPostResponse$9 extends AdditionalDataHolder, Parsable {
|
|
7219
7424
|
/**
|
|
7220
7425
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7221
7426
|
*/
|
|
@@ -7227,17 +7432,17 @@ interface FindPostResponse$8 extends AdditionalDataHolder, Parsable {
|
|
|
7227
7432
|
/**
|
|
7228
7433
|
* The object property
|
|
7229
7434
|
*/
|
|
7230
|
-
object?: FindPostResponse_object$
|
|
7435
|
+
object?: FindPostResponse_object$9 | null;
|
|
7231
7436
|
/**
|
|
7232
7437
|
* The totalElements property
|
|
7233
7438
|
*/
|
|
7234
7439
|
totalElements?: number | null;
|
|
7235
7440
|
}
|
|
7236
|
-
type FindPostResponse_object$
|
|
7441
|
+
type FindPostResponse_object$9 = (typeof FindPostResponse_objectObject$9)[keyof typeof FindPostResponse_objectObject$9];
|
|
7237
7442
|
/**
|
|
7238
7443
|
* Builds and executes requests for operations under /v1/partitions/find
|
|
7239
7444
|
*/
|
|
7240
|
-
interface FindRequestBuilder$
|
|
7445
|
+
interface FindRequestBuilder$9 extends BaseRequestBuilder<FindRequestBuilder$9> {
|
|
7241
7446
|
/**
|
|
7242
7447
|
* Find a list of Partition
|
|
7243
7448
|
* @param body The request body
|
|
@@ -7245,30 +7450,30 @@ interface FindRequestBuilder$8 extends BaseRequestBuilder<FindRequestBuilder$8>
|
|
|
7245
7450
|
* @returns {Promise<FindPostResponse>}
|
|
7246
7451
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7247
7452
|
*/
|
|
7248
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7453
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$9> | undefined): Promise<FindPostResponse$9 | undefined>;
|
|
7249
7454
|
/**
|
|
7250
7455
|
* Find a list of Partition
|
|
7251
7456
|
* @param body The request body
|
|
7252
7457
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7253
7458
|
* @returns {RequestInformation}
|
|
7254
7459
|
*/
|
|
7255
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7460
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$9> | undefined): RequestInformation;
|
|
7256
7461
|
}
|
|
7257
7462
|
/**
|
|
7258
7463
|
* Find a list of Partition
|
|
7259
7464
|
*/
|
|
7260
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
7465
|
+
interface FindRequestBuilderPostQueryParameters$9 {
|
|
7261
7466
|
page?: number;
|
|
7262
7467
|
size?: number;
|
|
7263
7468
|
sort?: string;
|
|
7264
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7469
|
+
sortOrder?: PostSortOrderQueryParameterType$9;
|
|
7265
7470
|
tableId?: string;
|
|
7266
7471
|
}
|
|
7267
|
-
type PostSortOrderQueryParameterType$
|
|
7268
|
-
declare const FindPostResponse_objectObject$
|
|
7472
|
+
type PostSortOrderQueryParameterType$9 = (typeof PostSortOrderQueryParameterTypeObject$9)[keyof typeof PostSortOrderQueryParameterTypeObject$9];
|
|
7473
|
+
declare const FindPostResponse_objectObject$9: {
|
|
7269
7474
|
readonly List: "list";
|
|
7270
7475
|
};
|
|
7271
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
7476
|
+
declare const PostSortOrderQueryParameterTypeObject$9: {
|
|
7272
7477
|
readonly DESC: "DESC";
|
|
7273
7478
|
readonly ASC: "ASC";
|
|
7274
7479
|
};
|
|
@@ -7292,7 +7497,7 @@ interface PartitionsItemRequestBuilder extends BaseRequestBuilder<PartitionsItem
|
|
|
7292
7497
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7293
7498
|
}
|
|
7294
7499
|
|
|
7295
|
-
type GetSortOrderQueryParameterType$
|
|
7500
|
+
type GetSortOrderQueryParameterType$9 = (typeof GetSortOrderQueryParameterTypeObject$9)[keyof typeof GetSortOrderQueryParameterTypeObject$9];
|
|
7296
7501
|
interface PartitionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7297
7502
|
/**
|
|
7298
7503
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -7319,7 +7524,7 @@ interface PartitionsRequestBuilder extends BaseRequestBuilder<PartitionsRequestB
|
|
|
7319
7524
|
/**
|
|
7320
7525
|
* The find property
|
|
7321
7526
|
*/
|
|
7322
|
-
get find(): FindRequestBuilder$
|
|
7527
|
+
get find(): FindRequestBuilder$9;
|
|
7323
7528
|
/**
|
|
7324
7529
|
* Gets an item from the ApiSdk.v1.partitions.item collection
|
|
7325
7530
|
* @param id Unique identifier of the item
|
|
@@ -7347,10 +7552,10 @@ interface PartitionsRequestBuilderGetQueryParameters {
|
|
|
7347
7552
|
page?: number;
|
|
7348
7553
|
size?: number;
|
|
7349
7554
|
sort?: string;
|
|
7350
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
7555
|
+
sortOrder?: GetSortOrderQueryParameterType$9;
|
|
7351
7556
|
tableId?: string;
|
|
7352
7557
|
}
|
|
7353
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
7558
|
+
declare const GetSortOrderQueryParameterTypeObject$9: {
|
|
7354
7559
|
readonly DESC: "DESC";
|
|
7355
7560
|
readonly ASC: "ASC";
|
|
7356
7561
|
};
|
|
@@ -7358,7 +7563,7 @@ declare const PartitionsGetResponse_objectObject: {
|
|
|
7358
7563
|
readonly List: "list";
|
|
7359
7564
|
};
|
|
7360
7565
|
|
|
7361
|
-
interface FindPostResponse$
|
|
7566
|
+
interface FindPostResponse$8 extends AdditionalDataHolder, Parsable {
|
|
7362
7567
|
/**
|
|
7363
7568
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7364
7569
|
*/
|
|
@@ -7370,17 +7575,17 @@ interface FindPostResponse$7 extends AdditionalDataHolder, Parsable {
|
|
|
7370
7575
|
/**
|
|
7371
7576
|
* The object property
|
|
7372
7577
|
*/
|
|
7373
|
-
object?: FindPostResponse_object$
|
|
7578
|
+
object?: FindPostResponse_object$8 | null;
|
|
7374
7579
|
/**
|
|
7375
7580
|
* The totalElements property
|
|
7376
7581
|
*/
|
|
7377
7582
|
totalElements?: number | null;
|
|
7378
7583
|
}
|
|
7379
|
-
type FindPostResponse_object$
|
|
7584
|
+
type FindPostResponse_object$8 = (typeof FindPostResponse_objectObject$8)[keyof typeof FindPostResponse_objectObject$8];
|
|
7380
7585
|
/**
|
|
7381
7586
|
* Builds and executes requests for operations under /v1/publications/find
|
|
7382
7587
|
*/
|
|
7383
|
-
interface FindRequestBuilder$
|
|
7588
|
+
interface FindRequestBuilder$8 extends BaseRequestBuilder<FindRequestBuilder$8> {
|
|
7384
7589
|
/**
|
|
7385
7590
|
* Find a list of Publication
|
|
7386
7591
|
* @param body The request body
|
|
@@ -7388,29 +7593,29 @@ interface FindRequestBuilder$7 extends BaseRequestBuilder<FindRequestBuilder$7>
|
|
|
7388
7593
|
* @returns {Promise<FindPostResponse>}
|
|
7389
7594
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7390
7595
|
*/
|
|
7391
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7596
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$8> | undefined): Promise<FindPostResponse$8 | undefined>;
|
|
7392
7597
|
/**
|
|
7393
7598
|
* Find a list of Publication
|
|
7394
7599
|
* @param body The request body
|
|
7395
7600
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7396
7601
|
* @returns {RequestInformation}
|
|
7397
7602
|
*/
|
|
7398
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7603
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$8> | undefined): RequestInformation;
|
|
7399
7604
|
}
|
|
7400
7605
|
/**
|
|
7401
7606
|
* Find a list of Publication
|
|
7402
7607
|
*/
|
|
7403
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
7608
|
+
interface FindRequestBuilderPostQueryParameters$8 {
|
|
7404
7609
|
page?: number;
|
|
7405
7610
|
size?: number;
|
|
7406
7611
|
sort?: string;
|
|
7407
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7612
|
+
sortOrder?: PostSortOrderQueryParameterType$8;
|
|
7408
7613
|
}
|
|
7409
|
-
type PostSortOrderQueryParameterType$
|
|
7410
|
-
declare const FindPostResponse_objectObject$
|
|
7614
|
+
type PostSortOrderQueryParameterType$8 = (typeof PostSortOrderQueryParameterTypeObject$8)[keyof typeof PostSortOrderQueryParameterTypeObject$8];
|
|
7615
|
+
declare const FindPostResponse_objectObject$8: {
|
|
7411
7616
|
readonly List: "list";
|
|
7412
7617
|
};
|
|
7413
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
7618
|
+
declare const PostSortOrderQueryParameterTypeObject$8: {
|
|
7414
7619
|
readonly DESC: "DESC";
|
|
7415
7620
|
readonly ASC: "ASC";
|
|
7416
7621
|
};
|
|
@@ -7449,7 +7654,7 @@ interface PublicationsItemRequestBuilder extends BaseRequestBuilder<Publications
|
|
|
7449
7654
|
toPatchRequestInformation(body: PatchPublicationDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7450
7655
|
}
|
|
7451
7656
|
|
|
7452
|
-
type GetSortOrderQueryParameterType$
|
|
7657
|
+
type GetSortOrderQueryParameterType$8 = (typeof GetSortOrderQueryParameterTypeObject$8)[keyof typeof GetSortOrderQueryParameterTypeObject$8];
|
|
7453
7658
|
interface PublicationsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7454
7659
|
/**
|
|
7455
7660
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -7476,7 +7681,7 @@ interface PublicationsRequestBuilder extends BaseRequestBuilder<PublicationsRequ
|
|
|
7476
7681
|
/**
|
|
7477
7682
|
* The find property
|
|
7478
7683
|
*/
|
|
7479
|
-
get find(): FindRequestBuilder$
|
|
7684
|
+
get find(): FindRequestBuilder$8;
|
|
7480
7685
|
/**
|
|
7481
7686
|
* Gets an item from the ApiSdk.v1.publications.item collection
|
|
7482
7687
|
* @param id Unique identifier of the item
|
|
@@ -7519,9 +7724,9 @@ interface PublicationsRequestBuilderGetQueryParameters {
|
|
|
7519
7724
|
page?: number;
|
|
7520
7725
|
size?: number;
|
|
7521
7726
|
sort?: string;
|
|
7522
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
7727
|
+
sortOrder?: GetSortOrderQueryParameterType$8;
|
|
7523
7728
|
}
|
|
7524
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
7729
|
+
declare const GetSortOrderQueryParameterTypeObject$8: {
|
|
7525
7730
|
readonly DESC: "DESC";
|
|
7526
7731
|
readonly ASC: "ASC";
|
|
7527
7732
|
};
|
|
@@ -7529,7 +7734,7 @@ declare const PublicationsGetResponse_objectObject: {
|
|
|
7529
7734
|
readonly List: "list";
|
|
7530
7735
|
};
|
|
7531
7736
|
|
|
7532
|
-
interface FindPostResponse$
|
|
7737
|
+
interface FindPostResponse$7 extends AdditionalDataHolder, Parsable {
|
|
7533
7738
|
/**
|
|
7534
7739
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7535
7740
|
*/
|
|
@@ -7541,17 +7746,17 @@ interface FindPostResponse$6 extends AdditionalDataHolder, Parsable {
|
|
|
7541
7746
|
/**
|
|
7542
7747
|
* The object property
|
|
7543
7748
|
*/
|
|
7544
|
-
object?: FindPostResponse_object$
|
|
7749
|
+
object?: FindPostResponse_object$7 | null;
|
|
7545
7750
|
/**
|
|
7546
7751
|
* The totalElements property
|
|
7547
7752
|
*/
|
|
7548
7753
|
totalElements?: number | null;
|
|
7549
7754
|
}
|
|
7550
|
-
type FindPostResponse_object$
|
|
7755
|
+
type FindPostResponse_object$7 = (typeof FindPostResponse_objectObject$7)[keyof typeof FindPostResponse_objectObject$7];
|
|
7551
7756
|
/**
|
|
7552
7757
|
* Builds and executes requests for operations under /v1/screen_columns/find
|
|
7553
7758
|
*/
|
|
7554
|
-
interface FindRequestBuilder$
|
|
7759
|
+
interface FindRequestBuilder$7 extends BaseRequestBuilder<FindRequestBuilder$7> {
|
|
7555
7760
|
/**
|
|
7556
7761
|
* Find a list of Screen Column
|
|
7557
7762
|
* @param body The request body
|
|
@@ -7559,30 +7764,30 @@ interface FindRequestBuilder$6 extends BaseRequestBuilder<FindRequestBuilder$6>
|
|
|
7559
7764
|
* @returns {Promise<FindPostResponse>}
|
|
7560
7765
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7561
7766
|
*/
|
|
7562
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7767
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$7> | undefined): Promise<FindPostResponse$7 | undefined>;
|
|
7563
7768
|
/**
|
|
7564
7769
|
* Find a list of Screen Column
|
|
7565
7770
|
* @param body The request body
|
|
7566
7771
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7567
7772
|
* @returns {RequestInformation}
|
|
7568
7773
|
*/
|
|
7569
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7774
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$7> | undefined): RequestInformation;
|
|
7570
7775
|
}
|
|
7571
7776
|
/**
|
|
7572
7777
|
* Find a list of Screen Column
|
|
7573
7778
|
*/
|
|
7574
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
7779
|
+
interface FindRequestBuilderPostQueryParameters$7 {
|
|
7575
7780
|
page?: number;
|
|
7576
7781
|
screenSectionId?: string;
|
|
7577
7782
|
size?: number;
|
|
7578
7783
|
sort?: string;
|
|
7579
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7784
|
+
sortOrder?: PostSortOrderQueryParameterType$7;
|
|
7580
7785
|
}
|
|
7581
|
-
type PostSortOrderQueryParameterType$
|
|
7582
|
-
declare const FindPostResponse_objectObject$
|
|
7786
|
+
type PostSortOrderQueryParameterType$7 = (typeof PostSortOrderQueryParameterTypeObject$7)[keyof typeof PostSortOrderQueryParameterTypeObject$7];
|
|
7787
|
+
declare const FindPostResponse_objectObject$7: {
|
|
7583
7788
|
readonly List: "list";
|
|
7584
7789
|
};
|
|
7585
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
7790
|
+
declare const PostSortOrderQueryParameterTypeObject$7: {
|
|
7586
7791
|
readonly DESC: "DESC";
|
|
7587
7792
|
readonly ASC: "ASC";
|
|
7588
7793
|
};
|
|
@@ -7606,7 +7811,7 @@ interface Screen_columnsItemRequestBuilder extends BaseRequestBuilder<Screen_col
|
|
|
7606
7811
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7607
7812
|
}
|
|
7608
7813
|
|
|
7609
|
-
type GetSortOrderQueryParameterType$
|
|
7814
|
+
type GetSortOrderQueryParameterType$7 = (typeof GetSortOrderQueryParameterTypeObject$7)[keyof typeof GetSortOrderQueryParameterTypeObject$7];
|
|
7610
7815
|
interface Screen_columnsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7611
7816
|
/**
|
|
7612
7817
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -7633,7 +7838,7 @@ interface Screen_columnsRequestBuilder extends BaseRequestBuilder<Screen_columns
|
|
|
7633
7838
|
/**
|
|
7634
7839
|
* The find property
|
|
7635
7840
|
*/
|
|
7636
|
-
get find(): FindRequestBuilder$
|
|
7841
|
+
get find(): FindRequestBuilder$7;
|
|
7637
7842
|
/**
|
|
7638
7843
|
* Gets an item from the ApiSdk.v1.screen_columns.item collection
|
|
7639
7844
|
* @param id Unique identifier of the item
|
|
@@ -7662,9 +7867,9 @@ interface Screen_columnsRequestBuilderGetQueryParameters {
|
|
|
7662
7867
|
screenSectionId?: string;
|
|
7663
7868
|
size?: number;
|
|
7664
7869
|
sort?: string;
|
|
7665
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
7870
|
+
sortOrder?: GetSortOrderQueryParameterType$7;
|
|
7666
7871
|
}
|
|
7667
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
7872
|
+
declare const GetSortOrderQueryParameterTypeObject$7: {
|
|
7668
7873
|
readonly DESC: "DESC";
|
|
7669
7874
|
readonly ASC: "ASC";
|
|
7670
7875
|
};
|
|
@@ -7672,7 +7877,7 @@ declare const Screen_columnsGetResponse_objectObject: {
|
|
|
7672
7877
|
readonly List: "list";
|
|
7673
7878
|
};
|
|
7674
7879
|
|
|
7675
|
-
interface FindPostResponse$
|
|
7880
|
+
interface FindPostResponse$6 extends AdditionalDataHolder, Parsable {
|
|
7676
7881
|
/**
|
|
7677
7882
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7678
7883
|
*/
|
|
@@ -7684,17 +7889,17 @@ interface FindPostResponse$5 extends AdditionalDataHolder, Parsable {
|
|
|
7684
7889
|
/**
|
|
7685
7890
|
* The object property
|
|
7686
7891
|
*/
|
|
7687
|
-
object?: FindPostResponse_object$
|
|
7892
|
+
object?: FindPostResponse_object$6 | null;
|
|
7688
7893
|
/**
|
|
7689
7894
|
* The totalElements property
|
|
7690
7895
|
*/
|
|
7691
7896
|
totalElements?: number | null;
|
|
7692
7897
|
}
|
|
7693
|
-
type FindPostResponse_object$
|
|
7898
|
+
type FindPostResponse_object$6 = (typeof FindPostResponse_objectObject$6)[keyof typeof FindPostResponse_objectObject$6];
|
|
7694
7899
|
/**
|
|
7695
7900
|
* Builds and executes requests for operations under /v1/screen_sections/find
|
|
7696
7901
|
*/
|
|
7697
|
-
interface FindRequestBuilder$
|
|
7902
|
+
interface FindRequestBuilder$6 extends BaseRequestBuilder<FindRequestBuilder$6> {
|
|
7698
7903
|
/**
|
|
7699
7904
|
* Find a list of Screen Section
|
|
7700
7905
|
* @param body The request body
|
|
@@ -7702,30 +7907,30 @@ interface FindRequestBuilder$5 extends BaseRequestBuilder<FindRequestBuilder$5>
|
|
|
7702
7907
|
* @returns {Promise<FindPostResponse>}
|
|
7703
7908
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7704
7909
|
*/
|
|
7705
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7910
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$6> | undefined): Promise<FindPostResponse$6 | undefined>;
|
|
7706
7911
|
/**
|
|
7707
7912
|
* Find a list of Screen Section
|
|
7708
7913
|
* @param body The request body
|
|
7709
7914
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7710
7915
|
* @returns {RequestInformation}
|
|
7711
7916
|
*/
|
|
7712
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
7917
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$6> | undefined): RequestInformation;
|
|
7713
7918
|
}
|
|
7714
7919
|
/**
|
|
7715
7920
|
* Find a list of Screen Section
|
|
7716
7921
|
*/
|
|
7717
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
7922
|
+
interface FindRequestBuilderPostQueryParameters$6 {
|
|
7718
7923
|
page?: number;
|
|
7719
7924
|
screenId?: string;
|
|
7720
7925
|
size?: number;
|
|
7721
7926
|
sort?: string;
|
|
7722
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
7927
|
+
sortOrder?: PostSortOrderQueryParameterType$6;
|
|
7723
7928
|
}
|
|
7724
|
-
type PostSortOrderQueryParameterType$
|
|
7725
|
-
declare const FindPostResponse_objectObject$
|
|
7929
|
+
type PostSortOrderQueryParameterType$6 = (typeof PostSortOrderQueryParameterTypeObject$6)[keyof typeof PostSortOrderQueryParameterTypeObject$6];
|
|
7930
|
+
declare const FindPostResponse_objectObject$6: {
|
|
7726
7931
|
readonly List: "list";
|
|
7727
7932
|
};
|
|
7728
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
7933
|
+
declare const PostSortOrderQueryParameterTypeObject$6: {
|
|
7729
7934
|
readonly DESC: "DESC";
|
|
7730
7935
|
readonly ASC: "ASC";
|
|
7731
7936
|
};
|
|
@@ -7749,7 +7954,7 @@ interface Screen_sectionsItemRequestBuilder extends BaseRequestBuilder<Screen_se
|
|
|
7749
7954
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7750
7955
|
}
|
|
7751
7956
|
|
|
7752
|
-
type GetSortOrderQueryParameterType$
|
|
7957
|
+
type GetSortOrderQueryParameterType$6 = (typeof GetSortOrderQueryParameterTypeObject$6)[keyof typeof GetSortOrderQueryParameterTypeObject$6];
|
|
7753
7958
|
interface Screen_sectionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
7754
7959
|
/**
|
|
7755
7960
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -7776,7 +7981,7 @@ interface Screen_sectionsRequestBuilder extends BaseRequestBuilder<Screen_sectio
|
|
|
7776
7981
|
/**
|
|
7777
7982
|
* The find property
|
|
7778
7983
|
*/
|
|
7779
|
-
get find(): FindRequestBuilder$
|
|
7984
|
+
get find(): FindRequestBuilder$6;
|
|
7780
7985
|
/**
|
|
7781
7986
|
* Gets an item from the ApiSdk.v1.screen_sections.item collection
|
|
7782
7987
|
* @param id Unique identifier of the item
|
|
@@ -7805,9 +8010,9 @@ interface Screen_sectionsRequestBuilderGetQueryParameters {
|
|
|
7805
8010
|
screenId?: string;
|
|
7806
8011
|
size?: number;
|
|
7807
8012
|
sort?: string;
|
|
7808
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
8013
|
+
sortOrder?: GetSortOrderQueryParameterType$6;
|
|
7809
8014
|
}
|
|
7810
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
8015
|
+
declare const GetSortOrderQueryParameterTypeObject$6: {
|
|
7811
8016
|
readonly DESC: "DESC";
|
|
7812
8017
|
readonly ASC: "ASC";
|
|
7813
8018
|
};
|
|
@@ -7815,7 +8020,7 @@ declare const Screen_sectionsGetResponse_objectObject: {
|
|
|
7815
8020
|
readonly List: "list";
|
|
7816
8021
|
};
|
|
7817
8022
|
|
|
7818
|
-
interface FindPostResponse$
|
|
8023
|
+
interface FindPostResponse$5 extends AdditionalDataHolder, Parsable {
|
|
7819
8024
|
/**
|
|
7820
8025
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7821
8026
|
*/
|
|
@@ -7827,17 +8032,17 @@ interface FindPostResponse$4 extends AdditionalDataHolder, Parsable {
|
|
|
7827
8032
|
/**
|
|
7828
8033
|
* The object property
|
|
7829
8034
|
*/
|
|
7830
|
-
object?: FindPostResponse_object$
|
|
8035
|
+
object?: FindPostResponse_object$5 | null;
|
|
7831
8036
|
/**
|
|
7832
8037
|
* The totalElements property
|
|
7833
8038
|
*/
|
|
7834
8039
|
totalElements?: number | null;
|
|
7835
8040
|
}
|
|
7836
|
-
type FindPostResponse_object$
|
|
8041
|
+
type FindPostResponse_object$5 = (typeof FindPostResponse_objectObject$5)[keyof typeof FindPostResponse_objectObject$5];
|
|
7837
8042
|
/**
|
|
7838
8043
|
* Builds and executes requests for operations under /v1/screens/find
|
|
7839
8044
|
*/
|
|
7840
|
-
interface FindRequestBuilder$
|
|
8045
|
+
interface FindRequestBuilder$5 extends BaseRequestBuilder<FindRequestBuilder$5> {
|
|
7841
8046
|
/**
|
|
7842
8047
|
* Find a list of Screen
|
|
7843
8048
|
* @param body The request body
|
|
@@ -7845,30 +8050,30 @@ interface FindRequestBuilder$4 extends BaseRequestBuilder<FindRequestBuilder$4>
|
|
|
7845
8050
|
* @returns {Promise<FindPostResponse>}
|
|
7846
8051
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7847
8052
|
*/
|
|
7848
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
8053
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$5> | undefined): Promise<FindPostResponse$5 | undefined>;
|
|
7849
8054
|
/**
|
|
7850
8055
|
* Find a list of Screen
|
|
7851
8056
|
* @param body The request body
|
|
7852
8057
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7853
8058
|
* @returns {RequestInformation}
|
|
7854
8059
|
*/
|
|
7855
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
8060
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$5> | undefined): RequestInformation;
|
|
7856
8061
|
}
|
|
7857
8062
|
/**
|
|
7858
8063
|
* Find a list of Screen
|
|
7859
8064
|
*/
|
|
7860
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
8065
|
+
interface FindRequestBuilderPostQueryParameters$5 {
|
|
7861
8066
|
page?: number;
|
|
7862
8067
|
size?: number;
|
|
7863
8068
|
sort?: string;
|
|
7864
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
8069
|
+
sortOrder?: PostSortOrderQueryParameterType$5;
|
|
7865
8070
|
tableId?: string;
|
|
7866
8071
|
}
|
|
7867
|
-
type PostSortOrderQueryParameterType$
|
|
7868
|
-
declare const FindPostResponse_objectObject$
|
|
8072
|
+
type PostSortOrderQueryParameterType$5 = (typeof PostSortOrderQueryParameterTypeObject$5)[keyof typeof PostSortOrderQueryParameterTypeObject$5];
|
|
8073
|
+
declare const FindPostResponse_objectObject$5: {
|
|
7869
8074
|
readonly List: "list";
|
|
7870
8075
|
};
|
|
7871
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
8076
|
+
declare const PostSortOrderQueryParameterTypeObject$5: {
|
|
7872
8077
|
readonly DESC: "DESC";
|
|
7873
8078
|
readonly ASC: "ASC";
|
|
7874
8079
|
};
|
|
@@ -7892,7 +8097,7 @@ interface ScreensItemRequestBuilder extends BaseRequestBuilder<ScreensItemReques
|
|
|
7892
8097
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
7893
8098
|
}
|
|
7894
8099
|
|
|
7895
|
-
type GetSortOrderQueryParameterType$
|
|
8100
|
+
type GetSortOrderQueryParameterType$5 = (typeof GetSortOrderQueryParameterTypeObject$5)[keyof typeof GetSortOrderQueryParameterTypeObject$5];
|
|
7896
8101
|
interface ScreensGetResponse extends AdditionalDataHolder, Parsable {
|
|
7897
8102
|
/**
|
|
7898
8103
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -7919,7 +8124,7 @@ interface ScreensRequestBuilder extends BaseRequestBuilder<ScreensRequestBuilder
|
|
|
7919
8124
|
/**
|
|
7920
8125
|
* The find property
|
|
7921
8126
|
*/
|
|
7922
|
-
get find(): FindRequestBuilder$
|
|
8127
|
+
get find(): FindRequestBuilder$5;
|
|
7923
8128
|
/**
|
|
7924
8129
|
* Gets an item from the ApiSdk.v1.screens.item collection
|
|
7925
8130
|
* @param id Unique identifier of the item
|
|
@@ -7947,10 +8152,10 @@ interface ScreensRequestBuilderGetQueryParameters {
|
|
|
7947
8152
|
page?: number;
|
|
7948
8153
|
size?: number;
|
|
7949
8154
|
sort?: string;
|
|
7950
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
8155
|
+
sortOrder?: GetSortOrderQueryParameterType$5;
|
|
7951
8156
|
tableId?: string;
|
|
7952
8157
|
}
|
|
7953
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
8158
|
+
declare const GetSortOrderQueryParameterTypeObject$5: {
|
|
7954
8159
|
readonly DESC: "DESC";
|
|
7955
8160
|
readonly ASC: "ASC";
|
|
7956
8161
|
};
|
|
@@ -7958,7 +8163,7 @@ declare const ScreensGetResponse_objectObject: {
|
|
|
7958
8163
|
readonly List: "list";
|
|
7959
8164
|
};
|
|
7960
8165
|
|
|
7961
|
-
interface FindPostResponse$
|
|
8166
|
+
interface FindPostResponse$4 extends AdditionalDataHolder, Parsable {
|
|
7962
8167
|
/**
|
|
7963
8168
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
7964
8169
|
*/
|
|
@@ -7970,17 +8175,17 @@ interface FindPostResponse$3 extends AdditionalDataHolder, Parsable {
|
|
|
7970
8175
|
/**
|
|
7971
8176
|
* The object property
|
|
7972
8177
|
*/
|
|
7973
|
-
object?: FindPostResponse_object$
|
|
8178
|
+
object?: FindPostResponse_object$4 | null;
|
|
7974
8179
|
/**
|
|
7975
8180
|
* The totalElements property
|
|
7976
8181
|
*/
|
|
7977
8182
|
totalElements?: number | null;
|
|
7978
8183
|
}
|
|
7979
|
-
type FindPostResponse_object$
|
|
8184
|
+
type FindPostResponse_object$4 = (typeof FindPostResponse_objectObject$4)[keyof typeof FindPostResponse_objectObject$4];
|
|
7980
8185
|
/**
|
|
7981
8186
|
* Builds and executes requests for operations under /v1/sections/find
|
|
7982
8187
|
*/
|
|
7983
|
-
interface FindRequestBuilder$
|
|
8188
|
+
interface FindRequestBuilder$4 extends BaseRequestBuilder<FindRequestBuilder$4> {
|
|
7984
8189
|
/**
|
|
7985
8190
|
* Find a list of Section
|
|
7986
8191
|
* @param body The request body
|
|
@@ -7988,30 +8193,30 @@ interface FindRequestBuilder$3 extends BaseRequestBuilder<FindRequestBuilder$3>
|
|
|
7988
8193
|
* @returns {Promise<FindPostResponse>}
|
|
7989
8194
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
7990
8195
|
*/
|
|
7991
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
8196
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$4> | undefined): Promise<FindPostResponse$4 | undefined>;
|
|
7992
8197
|
/**
|
|
7993
8198
|
* Find a list of Section
|
|
7994
8199
|
* @param body The request body
|
|
7995
8200
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
7996
8201
|
* @returns {RequestInformation}
|
|
7997
8202
|
*/
|
|
7998
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
8203
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$4> | undefined): RequestInformation;
|
|
7999
8204
|
}
|
|
8000
8205
|
/**
|
|
8001
8206
|
* Find a list of Section
|
|
8002
8207
|
*/
|
|
8003
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
8208
|
+
interface FindRequestBuilderPostQueryParameters$4 {
|
|
8004
8209
|
page?: number;
|
|
8005
8210
|
size?: number;
|
|
8006
8211
|
sort?: string;
|
|
8007
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
8212
|
+
sortOrder?: PostSortOrderQueryParameterType$4;
|
|
8008
8213
|
tableId?: string;
|
|
8009
8214
|
}
|
|
8010
|
-
type PostSortOrderQueryParameterType$
|
|
8011
|
-
declare const FindPostResponse_objectObject$
|
|
8215
|
+
type PostSortOrderQueryParameterType$4 = (typeof PostSortOrderQueryParameterTypeObject$4)[keyof typeof PostSortOrderQueryParameterTypeObject$4];
|
|
8216
|
+
declare const FindPostResponse_objectObject$4: {
|
|
8012
8217
|
readonly List: "list";
|
|
8013
8218
|
};
|
|
8014
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
8219
|
+
declare const PostSortOrderQueryParameterTypeObject$4: {
|
|
8015
8220
|
readonly DESC: "DESC";
|
|
8016
8221
|
readonly ASC: "ASC";
|
|
8017
8222
|
};
|
|
@@ -8035,7 +8240,7 @@ interface SectionsItemRequestBuilder extends BaseRequestBuilder<SectionsItemRequ
|
|
|
8035
8240
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8036
8241
|
}
|
|
8037
8242
|
|
|
8038
|
-
type GetSortOrderQueryParameterType$
|
|
8243
|
+
type GetSortOrderQueryParameterType$4 = (typeof GetSortOrderQueryParameterTypeObject$4)[keyof typeof GetSortOrderQueryParameterTypeObject$4];
|
|
8039
8244
|
interface SectionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
8040
8245
|
/**
|
|
8041
8246
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -8062,7 +8267,7 @@ interface SectionsRequestBuilder extends BaseRequestBuilder<SectionsRequestBuild
|
|
|
8062
8267
|
/**
|
|
8063
8268
|
* The find property
|
|
8064
8269
|
*/
|
|
8065
|
-
get find(): FindRequestBuilder$
|
|
8270
|
+
get find(): FindRequestBuilder$4;
|
|
8066
8271
|
/**
|
|
8067
8272
|
* Gets an item from the ApiSdk.v1.sections.item collection
|
|
8068
8273
|
* @param id Unique identifier of the item
|
|
@@ -8090,10 +8295,10 @@ interface SectionsRequestBuilderGetQueryParameters {
|
|
|
8090
8295
|
page?: number;
|
|
8091
8296
|
size?: number;
|
|
8092
8297
|
sort?: string;
|
|
8093
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
8298
|
+
sortOrder?: GetSortOrderQueryParameterType$4;
|
|
8094
8299
|
tableId?: string;
|
|
8095
8300
|
}
|
|
8096
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
8301
|
+
declare const GetSortOrderQueryParameterTypeObject$4: {
|
|
8097
8302
|
readonly DESC: "DESC";
|
|
8098
8303
|
readonly ASC: "ASC";
|
|
8099
8304
|
};
|
|
@@ -8101,7 +8306,7 @@ declare const SectionsGetResponse_objectObject: {
|
|
|
8101
8306
|
readonly List: "list";
|
|
8102
8307
|
};
|
|
8103
8308
|
|
|
8104
|
-
interface FindPostResponse$
|
|
8309
|
+
interface FindPostResponse$3 extends AdditionalDataHolder, Parsable {
|
|
8105
8310
|
/**
|
|
8106
8311
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8107
8312
|
*/
|
|
@@ -8113,17 +8318,17 @@ interface FindPostResponse$2 extends AdditionalDataHolder, Parsable {
|
|
|
8113
8318
|
/**
|
|
8114
8319
|
* The object property
|
|
8115
8320
|
*/
|
|
8116
|
-
object?: FindPostResponse_object$
|
|
8321
|
+
object?: FindPostResponse_object$3 | null;
|
|
8117
8322
|
/**
|
|
8118
8323
|
* The totalElements property
|
|
8119
8324
|
*/
|
|
8120
8325
|
totalElements?: number | null;
|
|
8121
8326
|
}
|
|
8122
|
-
type FindPostResponse_object$
|
|
8327
|
+
type FindPostResponse_object$3 = (typeof FindPostResponse_objectObject$3)[keyof typeof FindPostResponse_objectObject$3];
|
|
8123
8328
|
/**
|
|
8124
8329
|
* Builds and executes requests for operations under /v1/suggestions/find
|
|
8125
8330
|
*/
|
|
8126
|
-
interface FindRequestBuilder$
|
|
8331
|
+
interface FindRequestBuilder$3 extends BaseRequestBuilder<FindRequestBuilder$3> {
|
|
8127
8332
|
/**
|
|
8128
8333
|
* Find a list of Suggestion
|
|
8129
8334
|
* @param body The request body
|
|
@@ -8131,29 +8336,29 @@ interface FindRequestBuilder$2 extends BaseRequestBuilder<FindRequestBuilder$2>
|
|
|
8131
8336
|
* @returns {Promise<FindPostResponse>}
|
|
8132
8337
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
8133
8338
|
*/
|
|
8134
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
8339
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$3> | undefined): Promise<FindPostResponse$3 | undefined>;
|
|
8135
8340
|
/**
|
|
8136
8341
|
* Find a list of Suggestion
|
|
8137
8342
|
* @param body The request body
|
|
8138
8343
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8139
8344
|
* @returns {RequestInformation}
|
|
8140
8345
|
*/
|
|
8141
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
8346
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$3> | undefined): RequestInformation;
|
|
8142
8347
|
}
|
|
8143
8348
|
/**
|
|
8144
8349
|
* Find a list of Suggestion
|
|
8145
8350
|
*/
|
|
8146
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
8351
|
+
interface FindRequestBuilderPostQueryParameters$3 {
|
|
8147
8352
|
page?: number;
|
|
8148
8353
|
size?: number;
|
|
8149
8354
|
sort?: string;
|
|
8150
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
8355
|
+
sortOrder?: PostSortOrderQueryParameterType$3;
|
|
8151
8356
|
}
|
|
8152
|
-
type PostSortOrderQueryParameterType$
|
|
8153
|
-
declare const FindPostResponse_objectObject$
|
|
8357
|
+
type PostSortOrderQueryParameterType$3 = (typeof PostSortOrderQueryParameterTypeObject$3)[keyof typeof PostSortOrderQueryParameterTypeObject$3];
|
|
8358
|
+
declare const FindPostResponse_objectObject$3: {
|
|
8154
8359
|
readonly List: "list";
|
|
8155
8360
|
};
|
|
8156
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
8361
|
+
declare const PostSortOrderQueryParameterTypeObject$3: {
|
|
8157
8362
|
readonly DESC: "DESC";
|
|
8158
8363
|
readonly ASC: "ASC";
|
|
8159
8364
|
};
|
|
@@ -8225,7 +8430,7 @@ interface SuggestionsItemRequestBuilder extends BaseRequestBuilder<SuggestionsIt
|
|
|
8225
8430
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8226
8431
|
}
|
|
8227
8432
|
|
|
8228
|
-
type GetSortOrderQueryParameterType$
|
|
8433
|
+
type GetSortOrderQueryParameterType$3 = (typeof GetSortOrderQueryParameterTypeObject$3)[keyof typeof GetSortOrderQueryParameterTypeObject$3];
|
|
8229
8434
|
interface SuggestionsGetResponse extends AdditionalDataHolder, Parsable {
|
|
8230
8435
|
/**
|
|
8231
8436
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -8252,7 +8457,7 @@ interface SuggestionsRequestBuilder extends BaseRequestBuilder<SuggestionsReques
|
|
|
8252
8457
|
/**
|
|
8253
8458
|
* The find property
|
|
8254
8459
|
*/
|
|
8255
|
-
get find(): FindRequestBuilder$
|
|
8460
|
+
get find(): FindRequestBuilder$3;
|
|
8256
8461
|
/**
|
|
8257
8462
|
* Gets an item from the ApiSdk.v1.suggestions.item collection
|
|
8258
8463
|
* @param id Unique identifier of the item
|
|
@@ -8280,9 +8485,9 @@ interface SuggestionsRequestBuilderGetQueryParameters {
|
|
|
8280
8485
|
page?: number;
|
|
8281
8486
|
size?: number;
|
|
8282
8487
|
sort?: string;
|
|
8283
|
-
sortOrder?: GetSortOrderQueryParameterType$
|
|
8488
|
+
sortOrder?: GetSortOrderQueryParameterType$3;
|
|
8284
8489
|
}
|
|
8285
|
-
declare const GetSortOrderQueryParameterTypeObject$
|
|
8490
|
+
declare const GetSortOrderQueryParameterTypeObject$3: {
|
|
8286
8491
|
readonly DESC: "DESC";
|
|
8287
8492
|
readonly ASC: "ASC";
|
|
8288
8493
|
};
|
|
@@ -8290,7 +8495,7 @@ declare const SuggestionsGetResponse_objectObject: {
|
|
|
8290
8495
|
readonly List: "list";
|
|
8291
8496
|
};
|
|
8292
8497
|
|
|
8293
|
-
interface FindPostResponse$
|
|
8498
|
+
interface FindPostResponse$2 extends AdditionalDataHolder, Parsable {
|
|
8294
8499
|
/**
|
|
8295
8500
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8296
8501
|
*/
|
|
@@ -8302,17 +8507,17 @@ interface FindPostResponse$1 extends AdditionalDataHolder, Parsable {
|
|
|
8302
8507
|
/**
|
|
8303
8508
|
* The object property
|
|
8304
8509
|
*/
|
|
8305
|
-
object?: FindPostResponse_object$
|
|
8510
|
+
object?: FindPostResponse_object$2 | null;
|
|
8306
8511
|
/**
|
|
8307
8512
|
* The totalElements property
|
|
8308
8513
|
*/
|
|
8309
8514
|
totalElements?: number | null;
|
|
8310
8515
|
}
|
|
8311
|
-
type FindPostResponse_object$
|
|
8516
|
+
type FindPostResponse_object$2 = (typeof FindPostResponse_objectObject$2)[keyof typeof FindPostResponse_objectObject$2];
|
|
8312
8517
|
/**
|
|
8313
8518
|
* Builds and executes requests for operations under /v1/tables/find
|
|
8314
8519
|
*/
|
|
8315
|
-
interface FindRequestBuilder$
|
|
8520
|
+
interface FindRequestBuilder$2 extends BaseRequestBuilder<FindRequestBuilder$2> {
|
|
8316
8521
|
/**
|
|
8317
8522
|
* Find a list of Table
|
|
8318
8523
|
* @param body The request body
|
|
@@ -8320,29 +8525,29 @@ interface FindRequestBuilder$1 extends BaseRequestBuilder<FindRequestBuilder$1>
|
|
|
8320
8525
|
* @returns {Promise<FindPostResponse>}
|
|
8321
8526
|
* @throws {Find400Error} error when the service returns a 400 status code
|
|
8322
8527
|
*/
|
|
8323
|
-
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
8528
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$2> | undefined): Promise<FindPostResponse$2 | undefined>;
|
|
8324
8529
|
/**
|
|
8325
8530
|
* Find a list of Table
|
|
8326
8531
|
* @param body The request body
|
|
8327
8532
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8328
8533
|
* @returns {RequestInformation}
|
|
8329
8534
|
*/
|
|
8330
|
-
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$
|
|
8535
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$2> | undefined): RequestInformation;
|
|
8331
8536
|
}
|
|
8332
8537
|
/**
|
|
8333
8538
|
* Find a list of Table
|
|
8334
8539
|
*/
|
|
8335
|
-
interface FindRequestBuilderPostQueryParameters$
|
|
8540
|
+
interface FindRequestBuilderPostQueryParameters$2 {
|
|
8336
8541
|
page?: number;
|
|
8337
8542
|
size?: number;
|
|
8338
8543
|
sort?: string;
|
|
8339
|
-
sortOrder?: PostSortOrderQueryParameterType$
|
|
8544
|
+
sortOrder?: PostSortOrderQueryParameterType$2;
|
|
8340
8545
|
}
|
|
8341
|
-
type PostSortOrderQueryParameterType$
|
|
8342
|
-
declare const FindPostResponse_objectObject$
|
|
8546
|
+
type PostSortOrderQueryParameterType$2 = (typeof PostSortOrderQueryParameterTypeObject$2)[keyof typeof PostSortOrderQueryParameterTypeObject$2];
|
|
8547
|
+
declare const FindPostResponse_objectObject$2: {
|
|
8343
8548
|
readonly List: "list";
|
|
8344
8549
|
};
|
|
8345
|
-
declare const PostSortOrderQueryParameterTypeObject$
|
|
8550
|
+
declare const PostSortOrderQueryParameterTypeObject$2: {
|
|
8346
8551
|
readonly DESC: "DESC";
|
|
8347
8552
|
readonly ASC: "ASC";
|
|
8348
8553
|
};
|
|
@@ -8366,7 +8571,7 @@ interface TablesItemRequestBuilder extends BaseRequestBuilder<TablesItemRequestB
|
|
|
8366
8571
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8367
8572
|
}
|
|
8368
8573
|
|
|
8369
|
-
type GetSortOrderQueryParameterType$
|
|
8574
|
+
type GetSortOrderQueryParameterType$2 = (typeof GetSortOrderQueryParameterTypeObject$2)[keyof typeof GetSortOrderQueryParameterTypeObject$2];
|
|
8370
8575
|
interface TablesGetResponse extends AdditionalDataHolder, Parsable {
|
|
8371
8576
|
/**
|
|
8372
8577
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -8393,7 +8598,7 @@ interface TablesRequestBuilder extends BaseRequestBuilder<TablesRequestBuilder>
|
|
|
8393
8598
|
/**
|
|
8394
8599
|
* The find property
|
|
8395
8600
|
*/
|
|
8396
|
-
get find(): FindRequestBuilder$
|
|
8601
|
+
get find(): FindRequestBuilder$2;
|
|
8397
8602
|
/**
|
|
8398
8603
|
* Gets an item from the ApiSdk.v1.tables.item collection
|
|
8399
8604
|
* @param id Unique identifier of the item
|
|
@@ -8418,6 +8623,238 @@ interface TablesRequestBuilder extends BaseRequestBuilder<TablesRequestBuilder>
|
|
|
8418
8623
|
* Get a list of Table
|
|
8419
8624
|
*/
|
|
8420
8625
|
interface TablesRequestBuilderGetQueryParameters {
|
|
8626
|
+
page?: number;
|
|
8627
|
+
size?: number;
|
|
8628
|
+
sort?: string;
|
|
8629
|
+
sortOrder?: GetSortOrderQueryParameterType$2;
|
|
8630
|
+
}
|
|
8631
|
+
declare const GetSortOrderQueryParameterTypeObject$2: {
|
|
8632
|
+
readonly DESC: "DESC";
|
|
8633
|
+
readonly ASC: "ASC";
|
|
8634
|
+
};
|
|
8635
|
+
declare const TablesGetResponse_objectObject: {
|
|
8636
|
+
readonly List: "list";
|
|
8637
|
+
};
|
|
8638
|
+
|
|
8639
|
+
interface FindPostResponse$1 extends AdditionalDataHolder, Parsable {
|
|
8640
|
+
/**
|
|
8641
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8642
|
+
*/
|
|
8643
|
+
additionalData?: Record<string, unknown>;
|
|
8644
|
+
/**
|
|
8645
|
+
* The data property
|
|
8646
|
+
*/
|
|
8647
|
+
data?: UserGroupDto[] | null;
|
|
8648
|
+
/**
|
|
8649
|
+
* The object property
|
|
8650
|
+
*/
|
|
8651
|
+
object?: FindPostResponse_object$1 | null;
|
|
8652
|
+
/**
|
|
8653
|
+
* The totalElements property
|
|
8654
|
+
*/
|
|
8655
|
+
totalElements?: number | null;
|
|
8656
|
+
}
|
|
8657
|
+
type FindPostResponse_object$1 = (typeof FindPostResponse_objectObject$1)[keyof typeof FindPostResponse_objectObject$1];
|
|
8658
|
+
/**
|
|
8659
|
+
* Builds and executes requests for operations under /v1/user_groups/find
|
|
8660
|
+
*/
|
|
8661
|
+
interface FindRequestBuilder$1 extends BaseRequestBuilder<FindRequestBuilder$1> {
|
|
8662
|
+
/**
|
|
8663
|
+
* Find a list of UserGroup
|
|
8664
|
+
* @param body The request body
|
|
8665
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8666
|
+
* @returns {Promise<FindPostResponse>}
|
|
8667
|
+
* @throws {Find400Error} error when the service returns a 400 status code
|
|
8668
|
+
*/
|
|
8669
|
+
post(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$1> | undefined): Promise<FindPostResponse$1 | undefined>;
|
|
8670
|
+
/**
|
|
8671
|
+
* Find a list of UserGroup
|
|
8672
|
+
* @param body The request body
|
|
8673
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8674
|
+
* @returns {RequestInformation}
|
|
8675
|
+
*/
|
|
8676
|
+
toPostRequestInformation(body: HighOrderQueryDTO | LowOrderQueryDTO, requestConfiguration?: RequestConfiguration<FindRequestBuilderPostQueryParameters$1> | undefined): RequestInformation;
|
|
8677
|
+
}
|
|
8678
|
+
/**
|
|
8679
|
+
* Find a list of UserGroup
|
|
8680
|
+
*/
|
|
8681
|
+
interface FindRequestBuilderPostQueryParameters$1 {
|
|
8682
|
+
page?: number;
|
|
8683
|
+
size?: number;
|
|
8684
|
+
sort?: string;
|
|
8685
|
+
sortOrder?: PostSortOrderQueryParameterType$1;
|
|
8686
|
+
}
|
|
8687
|
+
type PostSortOrderQueryParameterType$1 = (typeof PostSortOrderQueryParameterTypeObject$1)[keyof typeof PostSortOrderQueryParameterTypeObject$1];
|
|
8688
|
+
declare const FindPostResponse_objectObject$1: {
|
|
8689
|
+
readonly List: "list";
|
|
8690
|
+
};
|
|
8691
|
+
declare const PostSortOrderQueryParameterTypeObject$1: {
|
|
8692
|
+
readonly DESC: "DESC";
|
|
8693
|
+
readonly ASC: "ASC";
|
|
8694
|
+
};
|
|
8695
|
+
|
|
8696
|
+
/**
|
|
8697
|
+
* Builds and executes requests for operations under /v1/user_groups/{id}/add_members
|
|
8698
|
+
*/
|
|
8699
|
+
interface Add_membersRequestBuilder extends BaseRequestBuilder<Add_membersRequestBuilder> {
|
|
8700
|
+
/**
|
|
8701
|
+
* Add members to a user group
|
|
8702
|
+
* @param body The request body
|
|
8703
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8704
|
+
* @returns {Promise<UserGroupDto>}
|
|
8705
|
+
*/
|
|
8706
|
+
post(body: UserGroupMembersDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserGroupDto | undefined>;
|
|
8707
|
+
/**
|
|
8708
|
+
* Add members to a user group
|
|
8709
|
+
* @param body The request body
|
|
8710
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8711
|
+
* @returns {RequestInformation}
|
|
8712
|
+
*/
|
|
8713
|
+
toPostRequestInformation(body: UserGroupMembersDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8714
|
+
}
|
|
8715
|
+
|
|
8716
|
+
/**
|
|
8717
|
+
* Builds and executes requests for operations under /v1/user_groups/{id}/remove_members
|
|
8718
|
+
*/
|
|
8719
|
+
interface Remove_membersRequestBuilder extends BaseRequestBuilder<Remove_membersRequestBuilder> {
|
|
8720
|
+
/**
|
|
8721
|
+
* Remove members from a user group
|
|
8722
|
+
* @param body The request body
|
|
8723
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8724
|
+
* @returns {Promise<UserGroupDto>}
|
|
8725
|
+
*/
|
|
8726
|
+
post(body: UserGroupMembersDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserGroupDto | undefined>;
|
|
8727
|
+
/**
|
|
8728
|
+
* Remove members from a user group
|
|
8729
|
+
* @param body The request body
|
|
8730
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8731
|
+
* @returns {RequestInformation}
|
|
8732
|
+
*/
|
|
8733
|
+
toPostRequestInformation(body: UserGroupMembersDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8734
|
+
}
|
|
8735
|
+
|
|
8736
|
+
/**
|
|
8737
|
+
* Builds and executes requests for operations under /v1/user_groups/{id}
|
|
8738
|
+
*/
|
|
8739
|
+
interface User_groupsItemRequestBuilder extends BaseRequestBuilder<User_groupsItemRequestBuilder> {
|
|
8740
|
+
/**
|
|
8741
|
+
* The add_members property
|
|
8742
|
+
*/
|
|
8743
|
+
get add_members(): Add_membersRequestBuilder;
|
|
8744
|
+
/**
|
|
8745
|
+
* The remove_members property
|
|
8746
|
+
*/
|
|
8747
|
+
get remove_members(): Remove_membersRequestBuilder;
|
|
8748
|
+
/**
|
|
8749
|
+
* Delete a UserGroup by id
|
|
8750
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8751
|
+
* @returns {Promise<UserGroupDto>}
|
|
8752
|
+
* @throws {UserGroupDto400Error} error when the service returns a 400 status code
|
|
8753
|
+
*/
|
|
8754
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserGroupDto | undefined>;
|
|
8755
|
+
/**
|
|
8756
|
+
* Get a UserGroup by id
|
|
8757
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8758
|
+
* @returns {Promise<UserGroupDto>}
|
|
8759
|
+
* @throws {UserGroupDto400Error} error when the service returns a 400 status code
|
|
8760
|
+
*/
|
|
8761
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserGroupDto | undefined>;
|
|
8762
|
+
/**
|
|
8763
|
+
* Patch a UserGroup
|
|
8764
|
+
* @param body The request body
|
|
8765
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8766
|
+
* @returns {Promise<UserGroupDto>}
|
|
8767
|
+
* @throws {UserGroupDto400Error} error when the service returns a 400 status code
|
|
8768
|
+
*/
|
|
8769
|
+
patch(body: UpdateUserGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserGroupDto | undefined>;
|
|
8770
|
+
/**
|
|
8771
|
+
* Delete a UserGroup by id
|
|
8772
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8773
|
+
* @returns {RequestInformation}
|
|
8774
|
+
*/
|
|
8775
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8776
|
+
/**
|
|
8777
|
+
* Get a UserGroup by id
|
|
8778
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8779
|
+
* @returns {RequestInformation}
|
|
8780
|
+
*/
|
|
8781
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8782
|
+
/**
|
|
8783
|
+
* Patch a UserGroup
|
|
8784
|
+
* @param body The request body
|
|
8785
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8786
|
+
* @returns {RequestInformation}
|
|
8787
|
+
*/
|
|
8788
|
+
toPatchRequestInformation(body: UpdateUserGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8789
|
+
}
|
|
8790
|
+
|
|
8791
|
+
type GetSortOrderQueryParameterType$1 = (typeof GetSortOrderQueryParameterTypeObject$1)[keyof typeof GetSortOrderQueryParameterTypeObject$1];
|
|
8792
|
+
interface User_groupsGetResponse extends AdditionalDataHolder, Parsable {
|
|
8793
|
+
/**
|
|
8794
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8795
|
+
*/
|
|
8796
|
+
additionalData?: Record<string, unknown>;
|
|
8797
|
+
/**
|
|
8798
|
+
* The data property
|
|
8799
|
+
*/
|
|
8800
|
+
data?: UserGroupDto[] | null;
|
|
8801
|
+
/**
|
|
8802
|
+
* The object property
|
|
8803
|
+
*/
|
|
8804
|
+
object?: User_groupsGetResponse_object | null;
|
|
8805
|
+
/**
|
|
8806
|
+
* The totalElements property
|
|
8807
|
+
*/
|
|
8808
|
+
totalElements?: number | null;
|
|
8809
|
+
}
|
|
8810
|
+
type User_groupsGetResponse_object = (typeof User_groupsGetResponse_objectObject)[keyof typeof User_groupsGetResponse_objectObject];
|
|
8811
|
+
/**
|
|
8812
|
+
* Builds and executes requests for operations under /v1/user_groups
|
|
8813
|
+
*/
|
|
8814
|
+
interface User_groupsRequestBuilder extends BaseRequestBuilder<User_groupsRequestBuilder> {
|
|
8815
|
+
/**
|
|
8816
|
+
* The find property
|
|
8817
|
+
*/
|
|
8818
|
+
get find(): FindRequestBuilder$1;
|
|
8819
|
+
/**
|
|
8820
|
+
* Gets an item from the ApiSdk.v1.user_groups.item collection
|
|
8821
|
+
* @param id Unique identifier of the item
|
|
8822
|
+
* @returns {User_groupsItemRequestBuilder}
|
|
8823
|
+
*/
|
|
8824
|
+
byId(id: string): User_groupsItemRequestBuilder;
|
|
8825
|
+
/**
|
|
8826
|
+
* Get a list of UserGroup
|
|
8827
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8828
|
+
* @returns {Promise<User_groupsGetResponse>}
|
|
8829
|
+
* @throws {User_groups400Error} error when the service returns a 400 status code
|
|
8830
|
+
*/
|
|
8831
|
+
get(requestConfiguration?: RequestConfiguration<User_groupsRequestBuilderGetQueryParameters> | undefined): Promise<User_groupsGetResponse | undefined>;
|
|
8832
|
+
/**
|
|
8833
|
+
* Create a UserGroup
|
|
8834
|
+
* @param body The request body
|
|
8835
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8836
|
+
* @returns {Promise<UserGroupDto>}
|
|
8837
|
+
* @throws {UserGroupDto400Error} error when the service returns a 400 status code
|
|
8838
|
+
*/
|
|
8839
|
+
post(body: CreateUserGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UserGroupDto | undefined>;
|
|
8840
|
+
/**
|
|
8841
|
+
* Get a list of UserGroup
|
|
8842
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8843
|
+
* @returns {RequestInformation}
|
|
8844
|
+
*/
|
|
8845
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<User_groupsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
8846
|
+
/**
|
|
8847
|
+
* Create a UserGroup
|
|
8848
|
+
* @param body The request body
|
|
8849
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8850
|
+
* @returns {RequestInformation}
|
|
8851
|
+
*/
|
|
8852
|
+
toPostRequestInformation(body: CreateUserGroupDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
8853
|
+
}
|
|
8854
|
+
/**
|
|
8855
|
+
* Get a list of UserGroup
|
|
8856
|
+
*/
|
|
8857
|
+
interface User_groupsRequestBuilderGetQueryParameters {
|
|
8421
8858
|
page?: number;
|
|
8422
8859
|
size?: number;
|
|
8423
8860
|
sort?: string;
|
|
@@ -8427,7 +8864,7 @@ declare const GetSortOrderQueryParameterTypeObject$1: {
|
|
|
8427
8864
|
readonly DESC: "DESC";
|
|
8428
8865
|
readonly ASC: "ASC";
|
|
8429
8866
|
};
|
|
8430
|
-
declare const
|
|
8867
|
+
declare const User_groupsGetResponse_objectObject: {
|
|
8431
8868
|
readonly List: "list";
|
|
8432
8869
|
};
|
|
8433
8870
|
|
|
@@ -8672,6 +9109,10 @@ interface V1RequestBuilder extends BaseRequestBuilder<V1RequestBuilder> {
|
|
|
8672
9109
|
* The tables property
|
|
8673
9110
|
*/
|
|
8674
9111
|
get tables(): TablesRequestBuilder;
|
|
9112
|
+
/**
|
|
9113
|
+
* The user_groups property
|
|
9114
|
+
*/
|
|
9115
|
+
get user_groups(): User_groupsRequestBuilder;
|
|
8675
9116
|
/**
|
|
8676
9117
|
* The users property
|
|
8677
9118
|
*/
|
|
@@ -8707,4 +9148,4 @@ declare const ApiClientNavigationMetadata: Record<Exclude<keyof ApiClient, KeysT
|
|
|
8707
9148
|
|
|
8708
9149
|
declare function setup(key: string, url: string): ApiClient;
|
|
8709
9150
|
|
|
8710
|
-
export { type AccountDto, type AccountDto_object, AccountDto_objectObject, type ApiClient, ApiClientNavigationMetadata, ApiClientUriTemplate, type ApplyAllSuggestionDto, type ApplySuggestionDto, type AuditLogDto, type AuditLogDto_details, type AuditLogDto_object, AuditLogDto_objectObject, type CommentThreadCommentCreateDto, type CommentThreadCommentDTO, type CommentThreadCommentDTO_type, CommentThreadCommentDTO_typeObject, type CommentThreadCreateDto, type CommentThreadCreateDto_object, CommentThreadCreateDto_objectObject, type CommentThreadCreateDto_targetType, CommentThreadCreateDto_targetTypeObject, type CommentThreadDto, type CommentThreadDto_object, CommentThreadDto_objectObject, type CommentThreadDto_targetType, CommentThreadDto_targetTypeObject, type CommentThreadDto_type, CommentThreadDto_typeObject, type CommentThreadSubscriberDto, type CommentThreadSubscriberDto_object, CommentThreadSubscriberDto_objectObject, type CommentThreadUpdateDto, type CommentThreadUpdateDto_object, CommentThreadUpdateDto_objectObject, type CreateJobDto, type CreateJobDto_output, type CreateJobDto_status, CreateJobDto_statusObject, type CreateJobExecutionDto, type CreateJobExecutionDto_input, type CreateProjectDto, type CreatePublicationDto, type CreateTaskDto, type CreateTaskDto_retryLogic, CreateTaskDto_retryLogicObject, type CreateTaskDto_timeoutPolicy, CreateTaskDto_timeoutPolicyObject, type CreateVariableDto, type CreateVariableDto_status, CreateVariableDto_statusObject, type DisplayInfoDto, type FieldDto, type FieldDto_metadata, type FieldDto_object, FieldDto_objectObject, type FieldDto_type, FieldDto_typeObject, type FieldSuffixDto, type FieldSuffixDto_status, FieldSuffixDto_statusObject, type FieldUpdateDto, type FieldUpdateDto_metadata, type FieldUpdateDto_object, FieldUpdateDto_objectObject, type FieldValueDto, type FieldValueDto_color, FieldValueDto_colorObject, type FieldValueDto_metadata, type FieldValueDto_object, FieldValueDto_objectObject, type FieldValueDto_status, FieldValueDto_statusObject, type FileDto, type FileDto_object, FileDto_objectObject, type FindItemCustomField, type FindItemCustomField_target, FindItemCustomField_targetObject, type FindItemHighOrderQueryDTO, type FindItemHighOrderQueryDTO_queries, type FindItemHighOrderQueryDTO_type, FindItemHighOrderQueryDTO_typeObject, type FindItemLowOrderQueryDTO, type FindItemLowOrderQueryDTO_type, FindItemLowOrderQueryDTO_typeObject, type HighOrderQueryDTO, type HighOrderQueryDTO_queries, type HighOrderQueryDTO_type, HighOrderQueryDTO_typeObject, type ItemDto, type ItemDto_fields, type ItemDto_object, ItemDto_objectObject, type ItemFieldCfDto, type ItemFieldCfDto_type, ItemFieldCfDto_typeObject, type ItemFieldCfValueDTO, type ItemFieldFileDTO, type ItemFieldFileDTO_type, ItemFieldFileDTO_typeObject, type ItemFieldFileData, type ItemFieldFileValueDTO, type ItemFieldMultipleSelectWithCommentAndQuantityDTO, type ItemFieldMultipleSelectWithCommentAndQuantityDTO_type, ItemFieldMultipleSelectWithCommentAndQuantityDTO_typeObject, type ItemFieldMultipleSelectWithCommentAndQuantityData, type ItemFieldMultipleSelectWithCommentAndQuantityValueDTO, type ItemFieldNumberDTO, type ItemFieldNumberDTO_type, ItemFieldNumberDTO_typeObject, type ItemFieldSimpleNumberValueDTO, type ItemFieldSimpleStringArrayValueDTO, type ItemFieldSimpleStringValueDTO, type ItemFieldStringArrayDTO, type ItemFieldStringArrayDTO_type, ItemFieldStringArrayDTO_typeObject, type ItemFieldStringDTO, type ItemFieldStringDTO_type, ItemFieldStringDTO_typeObject, type ItemFindDTO, type ItemFindDTO_order, ItemFindDTO_orderObject, type ItemLinkCreateDto, type ItemLinkCreateDto_object, ItemLinkCreateDto_objectObject, type ItemLinkDto, type ItemLinkDto_object, ItemLinkDto_objectObject, type ItemMetadataDTO, type JobDto, type JobDto_object, JobDto_objectObject, type JobDto_output, type JobDto_status, JobDto_statusObject, type JobExecutionDto, type JobExecutionDto_input, type JobExecutionDto_object, JobExecutionDto_objectObject, type JobExecutionDto_output, type JobExecutionDto_status, JobExecutionDto_statusObject, type JobExecutionInfoDto, type JobLocalDto, type JobPeriodicityDto, type JobTaskDto, type JobTaskDto_input, type JobVisibilityDto, type JobVisibilityDto_mode, JobVisibilityDto_modeObject, type LevelDto, type LocalizedStringDto, type LowOrderQueryDTO, type LowOrderQueryDTO_type, LowOrderQueryDTO_typeObject, type MatrixFieldDto, type MatrixFieldDto_object, MatrixFieldDto_objectObject, type MatrixFieldDto_status, MatrixFieldDto_statusObject, type PartitionDto, type PatchPublicationDto, type PatchPublicationDto_status, PatchPublicationDto_statusObject, type PatchTaskExecutionDto, type PatchTaskExecutionDto_status, PatchTaskExecutionDto_statusObject, type ProjectDto, type ProjectDto_object, ProjectDto_objectObject, type PublicationDto, type PublicationDto_fields, type PublicationDto_object, PublicationDto_objectObject, type PublicationDto_status, PublicationDto_statusObject, type ScreenColumnDto, type ScreenColumnDto_object, ScreenColumnDto_objectObject, type ScreenColumnDto_width, ScreenColumnDto_widthObject, type ScreenDto, type ScreenDto_lineHeight, ScreenDto_lineHeightObject, type ScreenDto_status, ScreenDto_statusObject, type ScreenSectionDto, type ScreenSectionDto_object, ScreenSectionDto_objectObject, type SectionDto, type SectionDto_metadata, type SuggestionDeletedFieldDTO, type SuggestionDeletedFieldDTO_type, SuggestionDeletedFieldDTO_typeObject, type SuggestionDto, type SuggestionDto_fields, type SuggestionDto_object, SuggestionDto_objectObject, type TableDto, type TaskDto, type TaskDtoKey, type TaskDto_object, TaskDto_objectObject, type TaskDto_retryLogic, TaskDto_retryLogicObject, type TaskDto_timeoutPolicy, TaskDto_timeoutPolicyObject, type TaskExecutionDto, type TaskExecutionDto_input, type TaskExecutionDto_object, TaskExecutionDto_objectObject, type TaskExecutionDto_output, type TaskExecutionDto_status, TaskExecutionDto_statusObject, type UpdateJobDto, type UpdateJobDto_output, type UpdateJobDto_status, UpdateJobDto_statusObject, type UpdateTaskDto, type UpdateTaskDto_retryLogic, UpdateTaskDto_retryLogicObject, type UpdateTaskDto_timeoutPolicy, UpdateTaskDto_timeoutPolicyObject, type UpdateVariableDto, type UpdateVariableDto_status, UpdateVariableDto_statusObject, type UserDto, type UserDto_object, UserDto_objectObject, type UserDto_role, UserDto_roleObject, type UserDto_status, UserDto_statusObject, type VariableDto, type VariableDto_object, VariableDto_objectObject, type VariableDto_status, VariableDto_statusObject, createAccountDtoFromDiscriminatorValue, createApiClient, createApplyAllSuggestionDtoFromDiscriminatorValue, createApplySuggestionDtoFromDiscriminatorValue, createAuditLogDtoFromDiscriminatorValue, createAuditLogDto_detailsFromDiscriminatorValue, createCommentThreadCommentCreateDtoFromDiscriminatorValue, createCommentThreadCommentDTOFromDiscriminatorValue, createCommentThreadCreateDtoFromDiscriminatorValue, createCommentThreadDtoFromDiscriminatorValue, createCommentThreadSubscriberDtoFromDiscriminatorValue, createCommentThreadUpdateDtoFromDiscriminatorValue, createCreateJobDtoFromDiscriminatorValue, createCreateJobDto_outputFromDiscriminatorValue, createCreateJobExecutionDtoFromDiscriminatorValue, createCreateJobExecutionDto_inputFromDiscriminatorValue, createCreateProjectDtoFromDiscriminatorValue, createCreatePublicationDtoFromDiscriminatorValue, createCreateTaskDtoFromDiscriminatorValue, createCreateVariableDtoFromDiscriminatorValue, createDisplayInfoDtoFromDiscriminatorValue, createFieldDtoFromDiscriminatorValue, createFieldDto_metadataFromDiscriminatorValue, createFieldSuffixDtoFromDiscriminatorValue, createFieldUpdateDtoFromDiscriminatorValue, createFieldUpdateDto_metadataFromDiscriminatorValue, createFieldValueDtoFromDiscriminatorValue, createFieldValueDto_metadataFromDiscriminatorValue, createFileDtoFromDiscriminatorValue, createFindItemCustomFieldFromDiscriminatorValue, createFindItemHighOrderQueryDTOFromDiscriminatorValue, createFindItemHighOrderQueryDTO_queriesFromDiscriminatorValue, createFindItemLowOrderQueryDTOFromDiscriminatorValue, createHighOrderQueryDTOFromDiscriminatorValue, createHighOrderQueryDTO_queriesFromDiscriminatorValue, createItemDtoFromDiscriminatorValue, createItemDto_fieldsFromDiscriminatorValue, createItemFieldCfDtoFromDiscriminatorValue, createItemFieldCfValueDTOFromDiscriminatorValue, createItemFieldFileDTOFromDiscriminatorValue, createItemFieldFileDataFromDiscriminatorValue, createItemFieldFileValueDTOFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityDTOFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityDataFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityValueDTOFromDiscriminatorValue, createItemFieldNumberDTOFromDiscriminatorValue, createItemFieldSimpleNumberValueDTOFromDiscriminatorValue, createItemFieldSimpleStringArrayValueDTOFromDiscriminatorValue, createItemFieldSimpleStringValueDTOFromDiscriminatorValue, createItemFieldStringArrayDTOFromDiscriminatorValue, createItemFieldStringDTOFromDiscriminatorValue, createItemFindDTOFromDiscriminatorValue, createItemLinkCreateDtoFromDiscriminatorValue, createItemLinkDtoFromDiscriminatorValue, createItemMetadataDTOFromDiscriminatorValue, createJobDtoFromDiscriminatorValue, createJobDto_outputFromDiscriminatorValue, createJobExecutionDtoFromDiscriminatorValue, createJobExecutionDto_inputFromDiscriminatorValue, createJobExecutionDto_outputFromDiscriminatorValue, createJobExecutionInfoDtoFromDiscriminatorValue, createJobLocalDtoFromDiscriminatorValue, createJobPeriodicityDtoFromDiscriminatorValue, createJobTaskDtoFromDiscriminatorValue, createJobTaskDto_inputFromDiscriminatorValue, createJobVisibilityDtoFromDiscriminatorValue, createLevelDtoFromDiscriminatorValue, createLocalizedStringDtoFromDiscriminatorValue, createLowOrderQueryDTOFromDiscriminatorValue, createMatrixFieldDtoFromDiscriminatorValue, createPartitionDtoFromDiscriminatorValue, createPatchPublicationDtoFromDiscriminatorValue, createPatchTaskExecutionDtoFromDiscriminatorValue, createProjectDtoFromDiscriminatorValue, createPublicationDtoFromDiscriminatorValue, createPublicationDto_fieldsFromDiscriminatorValue, createScreenColumnDtoFromDiscriminatorValue, createScreenDtoFromDiscriminatorValue, createScreenSectionDtoFromDiscriminatorValue, createSectionDtoFromDiscriminatorValue, createSectionDto_metadataFromDiscriminatorValue, createSuggestionDeletedFieldDTOFromDiscriminatorValue, createSuggestionDtoFromDiscriminatorValue, createSuggestionDto_fieldsFromDiscriminatorValue, createTableDtoFromDiscriminatorValue, createTaskDtoFromDiscriminatorValue, createTaskDtoKeyFromDiscriminatorValue, createTaskExecutionDtoFromDiscriminatorValue, createTaskExecutionDto_inputFromDiscriminatorValue, createTaskExecutionDto_outputFromDiscriminatorValue, createUpdateJobDtoFromDiscriminatorValue, createUpdateJobDto_outputFromDiscriminatorValue, createUpdateTaskDtoFromDiscriminatorValue, createUpdateVariableDtoFromDiscriminatorValue, createUserDtoFromDiscriminatorValue, createVariableDtoFromDiscriminatorValue, deserializeIntoAccountDto, deserializeIntoApplyAllSuggestionDto, deserializeIntoApplySuggestionDto, deserializeIntoAuditLogDto, deserializeIntoAuditLogDto_details, deserializeIntoCommentThreadCommentCreateDto, deserializeIntoCommentThreadCommentDTO, deserializeIntoCommentThreadCreateDto, deserializeIntoCommentThreadDto, deserializeIntoCommentThreadSubscriberDto, deserializeIntoCommentThreadUpdateDto, deserializeIntoCreateJobDto, deserializeIntoCreateJobDto_output, deserializeIntoCreateJobExecutionDto, deserializeIntoCreateJobExecutionDto_input, deserializeIntoCreateProjectDto, deserializeIntoCreatePublicationDto, deserializeIntoCreateTaskDto, deserializeIntoCreateVariableDto, deserializeIntoDisplayInfoDto, deserializeIntoFieldDto, deserializeIntoFieldDto_metadata, deserializeIntoFieldSuffixDto, deserializeIntoFieldUpdateDto, deserializeIntoFieldUpdateDto_metadata, deserializeIntoFieldValueDto, deserializeIntoFieldValueDto_metadata, deserializeIntoFileDto, deserializeIntoFindItemCustomField, deserializeIntoFindItemHighOrderQueryDTO, deserializeIntoFindItemHighOrderQueryDTO_queries, deserializeIntoFindItemLowOrderQueryDTO, deserializeIntoHighOrderQueryDTO, deserializeIntoHighOrderQueryDTO_queries, deserializeIntoItemDto, deserializeIntoItemDto_fields, deserializeIntoItemFieldCfDto, deserializeIntoItemFieldCfValueDTO, deserializeIntoItemFieldFileDTO, deserializeIntoItemFieldFileData, deserializeIntoItemFieldFileValueDTO, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityDTO, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityData, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityValueDTO, deserializeIntoItemFieldNumberDTO, deserializeIntoItemFieldSimpleNumberValueDTO, deserializeIntoItemFieldSimpleStringArrayValueDTO, deserializeIntoItemFieldSimpleStringValueDTO, deserializeIntoItemFieldStringArrayDTO, deserializeIntoItemFieldStringDTO, deserializeIntoItemFindDTO, deserializeIntoItemLinkCreateDto, deserializeIntoItemLinkDto, deserializeIntoItemMetadataDTO, deserializeIntoJobDto, deserializeIntoJobDto_output, deserializeIntoJobExecutionDto, deserializeIntoJobExecutionDto_input, deserializeIntoJobExecutionDto_output, deserializeIntoJobExecutionInfoDto, deserializeIntoJobLocalDto, deserializeIntoJobPeriodicityDto, deserializeIntoJobTaskDto, deserializeIntoJobTaskDto_input, deserializeIntoJobVisibilityDto, deserializeIntoLevelDto, deserializeIntoLocalizedStringDto, deserializeIntoLowOrderQueryDTO, deserializeIntoMatrixFieldDto, deserializeIntoPartitionDto, deserializeIntoPatchPublicationDto, deserializeIntoPatchTaskExecutionDto, deserializeIntoProjectDto, deserializeIntoPublicationDto, deserializeIntoPublicationDto_fields, deserializeIntoScreenColumnDto, deserializeIntoScreenDto, deserializeIntoScreenSectionDto, deserializeIntoSectionDto, deserializeIntoSectionDto_metadata, deserializeIntoSuggestionDeletedFieldDTO, deserializeIntoSuggestionDto, deserializeIntoSuggestionDto_fields, deserializeIntoTableDto, deserializeIntoTaskDto, deserializeIntoTaskDtoKey, deserializeIntoTaskExecutionDto, deserializeIntoTaskExecutionDto_input, deserializeIntoTaskExecutionDto_output, deserializeIntoUpdateJobDto, deserializeIntoUpdateJobDto_output, deserializeIntoUpdateTaskDto, deserializeIntoUpdateVariableDto, deserializeIntoUserDto, deserializeIntoVariableDto, serializeAccountDto, serializeApplyAllSuggestionDto, serializeApplySuggestionDto, serializeAuditLogDto, serializeAuditLogDto_details, serializeCommentThreadCommentCreateDto, serializeCommentThreadCommentDTO, serializeCommentThreadCreateDto, serializeCommentThreadDto, serializeCommentThreadSubscriberDto, serializeCommentThreadUpdateDto, serializeCreateJobDto, serializeCreateJobDto_output, serializeCreateJobExecutionDto, serializeCreateJobExecutionDto_input, serializeCreateProjectDto, serializeCreatePublicationDto, serializeCreateTaskDto, serializeCreateVariableDto, serializeDisplayInfoDto, serializeFieldDto, serializeFieldDto_metadata, serializeFieldSuffixDto, serializeFieldUpdateDto, serializeFieldUpdateDto_metadata, serializeFieldValueDto, serializeFieldValueDto_metadata, serializeFileDto, serializeFindItemCustomField, serializeFindItemHighOrderQueryDTO, serializeFindItemHighOrderQueryDTO_queries, serializeFindItemLowOrderQueryDTO, serializeHighOrderQueryDTO, serializeHighOrderQueryDTO_queries, serializeItemDto, serializeItemDto_fields, serializeItemFieldCfDto, serializeItemFieldCfValueDTO, serializeItemFieldFileDTO, serializeItemFieldFileData, serializeItemFieldFileValueDTO, serializeItemFieldMultipleSelectWithCommentAndQuantityDTO, serializeItemFieldMultipleSelectWithCommentAndQuantityData, serializeItemFieldMultipleSelectWithCommentAndQuantityValueDTO, serializeItemFieldNumberDTO, serializeItemFieldSimpleNumberValueDTO, serializeItemFieldSimpleStringArrayValueDTO, serializeItemFieldSimpleStringValueDTO, serializeItemFieldStringArrayDTO, serializeItemFieldStringDTO, serializeItemFindDTO, serializeItemLinkCreateDto, serializeItemLinkDto, serializeItemMetadataDTO, serializeJobDto, serializeJobDto_output, serializeJobExecutionDto, serializeJobExecutionDto_input, serializeJobExecutionDto_output, serializeJobExecutionInfoDto, serializeJobLocalDto, serializeJobPeriodicityDto, serializeJobTaskDto, serializeJobTaskDto_input, serializeJobVisibilityDto, serializeLevelDto, serializeLocalizedStringDto, serializeLowOrderQueryDTO, serializeMatrixFieldDto, serializePartitionDto, serializePatchPublicationDto, serializePatchTaskExecutionDto, serializeProjectDto, serializePublicationDto, serializePublicationDto_fields, serializeScreenColumnDto, serializeScreenDto, serializeScreenSectionDto, serializeSectionDto, serializeSectionDto_metadata, serializeSuggestionDeletedFieldDTO, serializeSuggestionDto, serializeSuggestionDto_fields, serializeTableDto, serializeTaskDto, serializeTaskDtoKey, serializeTaskExecutionDto, serializeTaskExecutionDto_input, serializeTaskExecutionDto_output, serializeUpdateJobDto, serializeUpdateJobDto_output, serializeUpdateTaskDto, serializeUpdateVariableDto, serializeUserDto, serializeVariableDto, setup };
|
|
9151
|
+
export { type AccountDto, type AccountDto_object, AccountDto_objectObject, type ApiClient, ApiClientNavigationMetadata, ApiClientUriTemplate, type ApplyAllSuggestionDto, type ApplySuggestionDto, type AuditLogDto, type AuditLogDto_details, type AuditLogDto_object, AuditLogDto_objectObject, type CommentThreadCommentCreateDto, type CommentThreadCommentDTO, type CommentThreadCommentDTO_type, CommentThreadCommentDTO_typeObject, type CommentThreadCreateDto, type CommentThreadCreateDto_object, CommentThreadCreateDto_objectObject, type CommentThreadCreateDto_targetType, CommentThreadCreateDto_targetTypeObject, type CommentThreadDto, type CommentThreadDto_object, CommentThreadDto_objectObject, type CommentThreadDto_targetType, CommentThreadDto_targetTypeObject, type CommentThreadDto_type, CommentThreadDto_typeObject, type CommentThreadSubscriberDto, type CommentThreadSubscriberDto_object, CommentThreadSubscriberDto_objectObject, type CommentThreadUpdateDto, type CommentThreadUpdateDto_object, CommentThreadUpdateDto_objectObject, type CreateJobDto, type CreateJobDto_output, type CreateJobDto_status, CreateJobDto_statusObject, type CreateJobExecutionDto, type CreateJobExecutionDto_input, type CreateProjectDto, type CreatePublicationDto, type CreateTaskDto, type CreateTaskDto_retryLogic, CreateTaskDto_retryLogicObject, type CreateTaskDto_timeoutPolicy, CreateTaskDto_timeoutPolicyObject, type CreateUserGroupDto, type CreateVariableDto, type CreateVariableDto_status, CreateVariableDto_statusObject, type DisplayInfoDto, type FieldDto, type FieldDto_metadata, type FieldDto_object, FieldDto_objectObject, type FieldDto_type, FieldDto_typeObject, type FieldSuffixDto, type FieldSuffixDto_status, FieldSuffixDto_statusObject, type FieldUpdateDto, type FieldUpdateDto_metadata, type FieldUpdateDto_object, FieldUpdateDto_objectObject, type FieldValueDto, type FieldValueDto_color, FieldValueDto_colorObject, type FieldValueDto_metadata, type FieldValueDto_object, FieldValueDto_objectObject, type FieldValueDto_status, FieldValueDto_statusObject, type FileDto, type FileDto_object, FileDto_objectObject, type FindItemCustomField, type FindItemCustomField_target, FindItemCustomField_targetObject, type FindItemHighOrderQueryDTO, type FindItemHighOrderQueryDTO_queries, type FindItemHighOrderQueryDTO_type, FindItemHighOrderQueryDTO_typeObject, type FindItemLowOrderQueryDTO, type FindItemLowOrderQueryDTO_type, FindItemLowOrderQueryDTO_typeObject, type HighOrderQueryDTO, type HighOrderQueryDTO_queries, type HighOrderQueryDTO_type, HighOrderQueryDTO_typeObject, type ItemDto, type ItemDto_fields, type ItemDto_object, ItemDto_objectObject, type ItemFieldCfDto, type ItemFieldCfDto_type, ItemFieldCfDto_typeObject, type ItemFieldCfValueDTO, type ItemFieldFileDTO, type ItemFieldFileDTO_type, ItemFieldFileDTO_typeObject, type ItemFieldFileData, type ItemFieldFileValueDTO, type ItemFieldMultipleSelectWithCommentAndQuantityDTO, type ItemFieldMultipleSelectWithCommentAndQuantityDTO_type, ItemFieldMultipleSelectWithCommentAndQuantityDTO_typeObject, type ItemFieldMultipleSelectWithCommentAndQuantityData, type ItemFieldMultipleSelectWithCommentAndQuantityValueDTO, type ItemFieldNumberDTO, type ItemFieldNumberDTO_type, ItemFieldNumberDTO_typeObject, type ItemFieldSimpleNumberValueDTO, type ItemFieldSimpleStringArrayValueDTO, type ItemFieldSimpleStringValueDTO, type ItemFieldStringArrayDTO, type ItemFieldStringArrayDTO_type, ItemFieldStringArrayDTO_typeObject, type ItemFieldStringDTO, type ItemFieldStringDTO_type, ItemFieldStringDTO_typeObject, type ItemFindDTO, type ItemFindDTO_order, ItemFindDTO_orderObject, type ItemLinkCreateDto, type ItemLinkCreateDto_object, ItemLinkCreateDto_objectObject, type ItemLinkDto, type ItemLinkDto_object, ItemLinkDto_objectObject, type ItemMetadataDTO, type JobDto, type JobDto_object, JobDto_objectObject, type JobDto_output, type JobDto_status, JobDto_statusObject, type JobExecutionDto, type JobExecutionDto_input, type JobExecutionDto_object, JobExecutionDto_objectObject, type JobExecutionDto_output, type JobExecutionDto_status, JobExecutionDto_statusObject, type JobExecutionInfoDto, type JobLocalDto, type JobPeriodicityDto, type JobTaskDto, type JobTaskDto_input, type JobVisibilityDto, type JobVisibilityDto_mode, JobVisibilityDto_modeObject, type LevelDto, type LocalizedStringDto, type LowOrderQueryDTO, type LowOrderQueryDTO_type, LowOrderQueryDTO_typeObject, type MatrixFieldDto, type MatrixFieldDto_object, MatrixFieldDto_objectObject, type MatrixFieldDto_status, MatrixFieldDto_statusObject, type PartitionDto, type PatchPublicationDto, type PatchPublicationDto_status, PatchPublicationDto_statusObject, type PatchTaskExecutionDto, type PatchTaskExecutionDto_status, PatchTaskExecutionDto_statusObject, type ProjectDto, type ProjectDto_object, ProjectDto_objectObject, type PublicationDto, type PublicationDto_fields, type PublicationDto_object, PublicationDto_objectObject, type PublicationDto_status, PublicationDto_statusObject, type ScreenColumnDto, type ScreenColumnDto_object, ScreenColumnDto_objectObject, type ScreenColumnDto_width, ScreenColumnDto_widthObject, type ScreenDto, type ScreenDto_lineHeight, ScreenDto_lineHeightObject, type ScreenDto_status, ScreenDto_statusObject, type ScreenSectionDto, type ScreenSectionDto_object, ScreenSectionDto_objectObject, type SectionDto, type SectionDto_metadata, type SuggestionDeletedFieldDTO, type SuggestionDeletedFieldDTO_type, SuggestionDeletedFieldDTO_typeObject, type SuggestionDto, type SuggestionDto_fields, type SuggestionDto_object, SuggestionDto_objectObject, type TableDto, type TaskDto, type TaskDtoKey, type TaskDto_object, TaskDto_objectObject, type TaskDto_retryLogic, TaskDto_retryLogicObject, type TaskDto_timeoutPolicy, TaskDto_timeoutPolicyObject, type TaskExecutionDto, type TaskExecutionDto_input, type TaskExecutionDto_object, TaskExecutionDto_objectObject, type TaskExecutionDto_output, type TaskExecutionDto_status, TaskExecutionDto_statusObject, type UpdateJobDto, type UpdateJobDto_output, type UpdateJobDto_status, UpdateJobDto_statusObject, type UpdateTaskDto, type UpdateTaskDto_retryLogic, UpdateTaskDto_retryLogicObject, type UpdateTaskDto_timeoutPolicy, UpdateTaskDto_timeoutPolicyObject, type 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, createItemFieldFileDTOFromDiscriminatorValue, createItemFieldFileDataFromDiscriminatorValue, createItemFieldFileValueDTOFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityDTOFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityDataFromDiscriminatorValue, createItemFieldMultipleSelectWithCommentAndQuantityValueDTOFromDiscriminatorValue, createItemFieldNumberDTOFromDiscriminatorValue, createItemFieldSimpleNumberValueDTOFromDiscriminatorValue, createItemFieldSimpleStringArrayValueDTOFromDiscriminatorValue, createItemFieldSimpleStringValueDTOFromDiscriminatorValue, createItemFieldStringArrayDTOFromDiscriminatorValue, createItemFieldStringDTOFromDiscriminatorValue, createItemFindDTOFromDiscriminatorValue, createItemLinkCreateDtoFromDiscriminatorValue, createItemLinkDtoFromDiscriminatorValue, createItemMetadataDTOFromDiscriminatorValue, createJobDtoFromDiscriminatorValue, createJobDto_outputFromDiscriminatorValue, createJobExecutionDtoFromDiscriminatorValue, createJobExecutionDto_inputFromDiscriminatorValue, createJobExecutionDto_outputFromDiscriminatorValue, createJobExecutionInfoDtoFromDiscriminatorValue, createJobLocalDtoFromDiscriminatorValue, createJobPeriodicityDtoFromDiscriminatorValue, createJobTaskDtoFromDiscriminatorValue, createJobTaskDto_inputFromDiscriminatorValue, createJobVisibilityDtoFromDiscriminatorValue, createLevelDtoFromDiscriminatorValue, createLocalizedStringDtoFromDiscriminatorValue, createLowOrderQueryDTOFromDiscriminatorValue, createMatrixFieldDtoFromDiscriminatorValue, createPartitionDtoFromDiscriminatorValue, createPatchPublicationDtoFromDiscriminatorValue, createPatchTaskExecutionDtoFromDiscriminatorValue, createProjectDtoFromDiscriminatorValue, createPublicationDtoFromDiscriminatorValue, createPublicationDto_fieldsFromDiscriminatorValue, createScreenColumnDtoFromDiscriminatorValue, createScreenDtoFromDiscriminatorValue, createScreenSectionDtoFromDiscriminatorValue, createSectionDtoFromDiscriminatorValue, createSectionDto_metadataFromDiscriminatorValue, createSuggestionDeletedFieldDTOFromDiscriminatorValue, createSuggestionDtoFromDiscriminatorValue, createSuggestionDto_fieldsFromDiscriminatorValue, createTableDtoFromDiscriminatorValue, createTaskDtoFromDiscriminatorValue, createTaskDtoKeyFromDiscriminatorValue, createTaskExecutionDtoFromDiscriminatorValue, createTaskExecutionDto_inputFromDiscriminatorValue, createTaskExecutionDto_outputFromDiscriminatorValue, createUpdateJobDtoFromDiscriminatorValue, createUpdateJobDto_outputFromDiscriminatorValue, createUpdateTaskDtoFromDiscriminatorValue, createUpdateUserGroupDtoFromDiscriminatorValue, createUpdateVariableDtoFromDiscriminatorValue, createUserDtoFromDiscriminatorValue, createUserGroupDtoFromDiscriminatorValue, createUserGroupMembersDtoFromDiscriminatorValue, createVariableDtoFromDiscriminatorValue, deserializeIntoAccountDto, deserializeIntoApplyAllSuggestionDto, deserializeIntoApplySuggestionDto, deserializeIntoAuditLogDto, deserializeIntoAuditLogDto_details, deserializeIntoCommentThreadCommentCreateDto, deserializeIntoCommentThreadCommentDTO, deserializeIntoCommentThreadCreateDto, deserializeIntoCommentThreadDto, deserializeIntoCommentThreadSubscriberDto, deserializeIntoCommentThreadUpdateDto, deserializeIntoCreateJobDto, deserializeIntoCreateJobDto_output, deserializeIntoCreateJobExecutionDto, deserializeIntoCreateJobExecutionDto_input, deserializeIntoCreateProjectDto, deserializeIntoCreatePublicationDto, deserializeIntoCreateTaskDto, deserializeIntoCreateUserGroupDto, deserializeIntoCreateVariableDto, deserializeIntoDisplayInfoDto, deserializeIntoFieldDto, deserializeIntoFieldDto_metadata, deserializeIntoFieldSuffixDto, deserializeIntoFieldUpdateDto, deserializeIntoFieldUpdateDto_metadata, deserializeIntoFieldValueDto, deserializeIntoFieldValueDto_metadata, deserializeIntoFileDto, deserializeIntoFindItemCustomField, deserializeIntoFindItemHighOrderQueryDTO, deserializeIntoFindItemHighOrderQueryDTO_queries, deserializeIntoFindItemLowOrderQueryDTO, deserializeIntoHighOrderQueryDTO, deserializeIntoHighOrderQueryDTO_queries, deserializeIntoItemDto, deserializeIntoItemDto_fields, deserializeIntoItemFieldCfDto, deserializeIntoItemFieldCfValueDTO, deserializeIntoItemFieldFileDTO, deserializeIntoItemFieldFileData, deserializeIntoItemFieldFileValueDTO, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityDTO, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityData, deserializeIntoItemFieldMultipleSelectWithCommentAndQuantityValueDTO, deserializeIntoItemFieldNumberDTO, deserializeIntoItemFieldSimpleNumberValueDTO, deserializeIntoItemFieldSimpleStringArrayValueDTO, deserializeIntoItemFieldSimpleStringValueDTO, deserializeIntoItemFieldStringArrayDTO, deserializeIntoItemFieldStringDTO, deserializeIntoItemFindDTO, deserializeIntoItemLinkCreateDto, deserializeIntoItemLinkDto, deserializeIntoItemMetadataDTO, deserializeIntoJobDto, deserializeIntoJobDto_output, deserializeIntoJobExecutionDto, deserializeIntoJobExecutionDto_input, deserializeIntoJobExecutionDto_output, deserializeIntoJobExecutionInfoDto, deserializeIntoJobLocalDto, deserializeIntoJobPeriodicityDto, deserializeIntoJobTaskDto, deserializeIntoJobTaskDto_input, deserializeIntoJobVisibilityDto, deserializeIntoLevelDto, deserializeIntoLocalizedStringDto, deserializeIntoLowOrderQueryDTO, deserializeIntoMatrixFieldDto, deserializeIntoPartitionDto, deserializeIntoPatchPublicationDto, deserializeIntoPatchTaskExecutionDto, deserializeIntoProjectDto, deserializeIntoPublicationDto, deserializeIntoPublicationDto_fields, deserializeIntoScreenColumnDto, deserializeIntoScreenDto, deserializeIntoScreenSectionDto, deserializeIntoSectionDto, deserializeIntoSectionDto_metadata, deserializeIntoSuggestionDeletedFieldDTO, deserializeIntoSuggestionDto, deserializeIntoSuggestionDto_fields, deserializeIntoTableDto, deserializeIntoTaskDto, deserializeIntoTaskDtoKey, deserializeIntoTaskExecutionDto, deserializeIntoTaskExecutionDto_input, deserializeIntoTaskExecutionDto_output, deserializeIntoUpdateJobDto, deserializeIntoUpdateJobDto_output, deserializeIntoUpdateTaskDto, deserializeIntoUpdateUserGroupDto, deserializeIntoUpdateVariableDto, deserializeIntoUserDto, deserializeIntoUserGroupDto, deserializeIntoUserGroupMembersDto, deserializeIntoVariableDto, serializeAccountDto, serializeApplyAllSuggestionDto, serializeApplySuggestionDto, serializeAuditLogDto, serializeAuditLogDto_details, serializeCommentThreadCommentCreateDto, serializeCommentThreadCommentDTO, serializeCommentThreadCreateDto, serializeCommentThreadDto, serializeCommentThreadSubscriberDto, serializeCommentThreadUpdateDto, serializeCreateJobDto, serializeCreateJobDto_output, serializeCreateJobExecutionDto, serializeCreateJobExecutionDto_input, serializeCreateProjectDto, serializeCreatePublicationDto, serializeCreateTaskDto, serializeCreateUserGroupDto, serializeCreateVariableDto, serializeDisplayInfoDto, serializeFieldDto, serializeFieldDto_metadata, serializeFieldSuffixDto, serializeFieldUpdateDto, serializeFieldUpdateDto_metadata, serializeFieldValueDto, serializeFieldValueDto_metadata, serializeFileDto, serializeFindItemCustomField, serializeFindItemHighOrderQueryDTO, serializeFindItemHighOrderQueryDTO_queries, serializeFindItemLowOrderQueryDTO, serializeHighOrderQueryDTO, serializeHighOrderQueryDTO_queries, serializeItemDto, serializeItemDto_fields, serializeItemFieldCfDto, serializeItemFieldCfValueDTO, serializeItemFieldFileDTO, serializeItemFieldFileData, serializeItemFieldFileValueDTO, serializeItemFieldMultipleSelectWithCommentAndQuantityDTO, serializeItemFieldMultipleSelectWithCommentAndQuantityData, serializeItemFieldMultipleSelectWithCommentAndQuantityValueDTO, serializeItemFieldNumberDTO, serializeItemFieldSimpleNumberValueDTO, serializeItemFieldSimpleStringArrayValueDTO, serializeItemFieldSimpleStringValueDTO, serializeItemFieldStringArrayDTO, serializeItemFieldStringDTO, serializeItemFindDTO, serializeItemLinkCreateDto, serializeItemLinkDto, serializeItemMetadataDTO, serializeJobDto, serializeJobDto_output, serializeJobExecutionDto, serializeJobExecutionDto_input, serializeJobExecutionDto_output, serializeJobExecutionInfoDto, serializeJobLocalDto, serializeJobPeriodicityDto, serializeJobTaskDto, serializeJobTaskDto_input, serializeJobVisibilityDto, serializeLevelDto, serializeLocalizedStringDto, serializeLowOrderQueryDTO, serializeMatrixFieldDto, serializePartitionDto, serializePatchPublicationDto, serializePatchTaskExecutionDto, serializeProjectDto, serializePublicationDto, serializePublicationDto_fields, serializeScreenColumnDto, serializeScreenDto, serializeScreenSectionDto, serializeSectionDto, serializeSectionDto_metadata, serializeSuggestionDeletedFieldDTO, serializeSuggestionDto, serializeSuggestionDto_fields, serializeTableDto, serializeTaskDto, serializeTaskDtoKey, serializeTaskExecutionDto, serializeTaskExecutionDto_input, serializeTaskExecutionDto_output, serializeUpdateJobDto, serializeUpdateJobDto_output, serializeUpdateTaskDto, serializeUpdateUserGroupDto, serializeUpdateVariableDto, serializeUserDto, serializeUserGroupDto, serializeUserGroupMembersDto, serializeVariableDto, setup };
|