@product-live/api-sdk 3.1.5 → 3.1.6
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 +224 -1
- package/dist/index.d.ts +224 -1
- package/dist/index.js +215 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +214 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -36,6 +36,9 @@ function createCommentThreadUpdateDtoFromDiscriminatorValue(parseNode) {
|
|
|
36
36
|
function createCompositeCollectStrategyDtoFromDiscriminatorValue(parseNode) {
|
|
37
37
|
return deserializeIntoCompositeCollectStrategyDto;
|
|
38
38
|
}
|
|
39
|
+
function createCreateDataFactoryLogDtoFromDiscriminatorValue(parseNode) {
|
|
40
|
+
return deserializeIntoCreateDataFactoryLogDto;
|
|
41
|
+
}
|
|
39
42
|
function createCreateJobDto_outputFromDiscriminatorValue(parseNode) {
|
|
40
43
|
return deserializeIntoCreateJobDto_output;
|
|
41
44
|
}
|
|
@@ -66,6 +69,9 @@ function createCreateUserGroupDtoFromDiscriminatorValue(parseNode) {
|
|
|
66
69
|
function createCreateVariableDtoFromDiscriminatorValue(parseNode) {
|
|
67
70
|
return deserializeIntoCreateVariableDto;
|
|
68
71
|
}
|
|
72
|
+
function createDataFactoryLogDtoFromDiscriminatorValue(parseNode) {
|
|
73
|
+
return deserializeIntoDataFactoryLogDto;
|
|
74
|
+
}
|
|
69
75
|
function createDisplayInfoDtoFromDiscriminatorValue(parseNode) {
|
|
70
76
|
return deserializeIntoDisplayInfoDto;
|
|
71
77
|
}
|
|
@@ -400,6 +406,9 @@ function createPartnerGroupDtoFromDiscriminatorValue(parseNode) {
|
|
|
400
406
|
function createPartnerGroupMembersDtoFromDiscriminatorValue(parseNode) {
|
|
401
407
|
return deserializeIntoPartnerGroupMembersDto;
|
|
402
408
|
}
|
|
409
|
+
function createPartnerInvitationCreateDtoFromDiscriminatorValue(parseNode) {
|
|
410
|
+
return deserializeIntoPartnerInvitationCreateDto;
|
|
411
|
+
}
|
|
403
412
|
function createPartnerInvitationDtoFromDiscriminatorValue(parseNode) {
|
|
404
413
|
return deserializeIntoPartnerInvitationDto;
|
|
405
414
|
}
|
|
@@ -800,6 +809,25 @@ function deserializeIntoCompositeCollectStrategyDto(compositeCollectStrategyDto
|
|
|
800
809
|
}
|
|
801
810
|
};
|
|
802
811
|
}
|
|
812
|
+
function deserializeIntoCreateDataFactoryLogDto(createDataFactoryLogDto = {}) {
|
|
813
|
+
return {
|
|
814
|
+
"emitterName": (n) => {
|
|
815
|
+
createDataFactoryLogDto.emitterName = n.getStringValue();
|
|
816
|
+
},
|
|
817
|
+
"eventCorrelationId": (n) => {
|
|
818
|
+
createDataFactoryLogDto.eventCorrelationId = n.getStringValue();
|
|
819
|
+
},
|
|
820
|
+
"message": (n) => {
|
|
821
|
+
createDataFactoryLogDto.message = n.getStringValue();
|
|
822
|
+
},
|
|
823
|
+
"messageType": (n) => {
|
|
824
|
+
createDataFactoryLogDto.messageType = n.getEnumValue(CreateDataFactoryLogDto_messageTypeObject);
|
|
825
|
+
},
|
|
826
|
+
"severity": (n) => {
|
|
827
|
+
createDataFactoryLogDto.severity = n.getEnumValue(CreateDataFactoryLogDto_severityObject);
|
|
828
|
+
}
|
|
829
|
+
};
|
|
830
|
+
}
|
|
803
831
|
function deserializeIntoCreateJobDto(createJobDto = {}) {
|
|
804
832
|
return {
|
|
805
833
|
"description": (n) => {
|
|
@@ -964,6 +992,49 @@ function deserializeIntoCreateVariableDto(createVariableDto = {}) {
|
|
|
964
992
|
}
|
|
965
993
|
};
|
|
966
994
|
}
|
|
995
|
+
function deserializeIntoDataFactoryLogDto(dataFactoryLogDto = {}) {
|
|
996
|
+
return {
|
|
997
|
+
"accountId": (n) => {
|
|
998
|
+
dataFactoryLogDto.accountId = n.getStringValue();
|
|
999
|
+
},
|
|
1000
|
+
"cid": (n) => {
|
|
1001
|
+
dataFactoryLogDto.cid = n.getStringValue();
|
|
1002
|
+
},
|
|
1003
|
+
"code": (n) => {
|
|
1004
|
+
dataFactoryLogDto.code = n.getStringValue();
|
|
1005
|
+
},
|
|
1006
|
+
"createdAt": (n) => {
|
|
1007
|
+
dataFactoryLogDto.createdAt = n.getStringValue();
|
|
1008
|
+
},
|
|
1009
|
+
"emitterName": (n) => {
|
|
1010
|
+
dataFactoryLogDto.emitterName = n.getStringValue();
|
|
1011
|
+
},
|
|
1012
|
+
"eventCorrelationId": (n) => {
|
|
1013
|
+
dataFactoryLogDto.eventCorrelationId = n.getStringValue();
|
|
1014
|
+
},
|
|
1015
|
+
"id": (n) => {
|
|
1016
|
+
dataFactoryLogDto.id = n.getStringValue();
|
|
1017
|
+
},
|
|
1018
|
+
"jobId": (n) => {
|
|
1019
|
+
dataFactoryLogDto.jobId = n.getStringValue();
|
|
1020
|
+
},
|
|
1021
|
+
"jobInstanceId": (n) => {
|
|
1022
|
+
dataFactoryLogDto.jobInstanceId = n.getStringValue();
|
|
1023
|
+
},
|
|
1024
|
+
"message": (n) => {
|
|
1025
|
+
dataFactoryLogDto.message = n.getStringValue();
|
|
1026
|
+
},
|
|
1027
|
+
"messageType": (n) => {
|
|
1028
|
+
dataFactoryLogDto.messageType = n.getEnumValue(DataFactoryLogDto_messageTypeObject);
|
|
1029
|
+
},
|
|
1030
|
+
"object": (n) => {
|
|
1031
|
+
dataFactoryLogDto.object = n.getEnumValue(DataFactoryLogDto_objectObject);
|
|
1032
|
+
},
|
|
1033
|
+
"severity": (n) => {
|
|
1034
|
+
dataFactoryLogDto.severity = n.getStringValue();
|
|
1035
|
+
}
|
|
1036
|
+
};
|
|
1037
|
+
}
|
|
967
1038
|
function deserializeIntoDisplayInfoDto(displayInfoDto = {}) {
|
|
968
1039
|
return {
|
|
969
1040
|
"precision": (n) => {
|
|
@@ -1970,6 +2041,16 @@ function deserializeIntoPartnerGroupMembersDto(partnerGroupMembersDto = {}) {
|
|
|
1970
2041
|
}
|
|
1971
2042
|
};
|
|
1972
2043
|
}
|
|
2044
|
+
function deserializeIntoPartnerInvitationCreateDto(partnerInvitationCreateDto = {}) {
|
|
2045
|
+
return {
|
|
2046
|
+
"toAccountName": (n) => {
|
|
2047
|
+
partnerInvitationCreateDto.toAccountName = n.getStringValue();
|
|
2048
|
+
},
|
|
2049
|
+
"toUserEmail": (n) => {
|
|
2050
|
+
partnerInvitationCreateDto.toUserEmail = n.getStringValue();
|
|
2051
|
+
}
|
|
2052
|
+
};
|
|
2053
|
+
}
|
|
1973
2054
|
function deserializeIntoPartnerInvitationDto(partnerInvitationDto = {}) {
|
|
1974
2055
|
return {
|
|
1975
2056
|
"accountId": (n) => {
|
|
@@ -2216,6 +2297,9 @@ function deserializeIntoScreenColumnDto(screenColumnDto = {}) {
|
|
|
2216
2297
|
"isFixed": (n) => {
|
|
2217
2298
|
screenColumnDto.isFixed = n.getBooleanValue();
|
|
2218
2299
|
},
|
|
2300
|
+
"isLinesReadOnly": (n) => {
|
|
2301
|
+
screenColumnDto.isLinesReadOnly = n.getBooleanValue();
|
|
2302
|
+
},
|
|
2219
2303
|
"isReadOnly": (n) => {
|
|
2220
2304
|
screenColumnDto.isReadOnly = n.getBooleanValue();
|
|
2221
2305
|
},
|
|
@@ -2702,12 +2786,18 @@ function deserializeIntoUserDto(userDto = {}) {
|
|
|
2702
2786
|
"email": (n) => {
|
|
2703
2787
|
userDto.email = n.getStringValue();
|
|
2704
2788
|
},
|
|
2789
|
+
"firstActivityAt": (n) => {
|
|
2790
|
+
userDto.firstActivityAt = n.getStringValue();
|
|
2791
|
+
},
|
|
2705
2792
|
"firstName": (n) => {
|
|
2706
2793
|
userDto.firstName = n.getStringValue();
|
|
2707
2794
|
},
|
|
2708
2795
|
"id": (n) => {
|
|
2709
2796
|
userDto.id = n.getStringValue();
|
|
2710
2797
|
},
|
|
2798
|
+
"lastActivityAt": (n) => {
|
|
2799
|
+
userDto.lastActivityAt = n.getStringValue();
|
|
2800
|
+
},
|
|
2711
2801
|
"lastName": (n) => {
|
|
2712
2802
|
userDto.lastName = n.getStringValue();
|
|
2713
2803
|
},
|
|
@@ -2903,6 +2993,16 @@ function serializeCompositeCollectStrategyDto(writer, compositeCollectStrategyDt
|
|
|
2903
2993
|
writer.writeAdditionalData(compositeCollectStrategyDto.additionalData);
|
|
2904
2994
|
}
|
|
2905
2995
|
}
|
|
2996
|
+
function serializeCreateDataFactoryLogDto(writer, createDataFactoryLogDto = {}) {
|
|
2997
|
+
if (createDataFactoryLogDto) {
|
|
2998
|
+
writer.writeStringValue("emitterName", createDataFactoryLogDto.emitterName);
|
|
2999
|
+
writer.writeStringValue("eventCorrelationId", createDataFactoryLogDto.eventCorrelationId);
|
|
3000
|
+
writer.writeStringValue("message", createDataFactoryLogDto.message);
|
|
3001
|
+
writer.writeEnumValue("messageType", createDataFactoryLogDto.messageType);
|
|
3002
|
+
writer.writeEnumValue("severity", createDataFactoryLogDto.severity);
|
|
3003
|
+
writer.writeAdditionalData(createDataFactoryLogDto.additionalData);
|
|
3004
|
+
}
|
|
3005
|
+
}
|
|
2906
3006
|
function serializeCreateJobDto(writer, createJobDto = {}) {
|
|
2907
3007
|
if (createJobDto) {
|
|
2908
3008
|
writer.writeStringValue("description", createJobDto.description);
|
|
@@ -2995,6 +3095,24 @@ function serializeCreateVariableDto(writer, createVariableDto = {}) {
|
|
|
2995
3095
|
writer.writeAdditionalData(createVariableDto.additionalData);
|
|
2996
3096
|
}
|
|
2997
3097
|
}
|
|
3098
|
+
function serializeDataFactoryLogDto(writer, dataFactoryLogDto = {}) {
|
|
3099
|
+
if (dataFactoryLogDto) {
|
|
3100
|
+
writer.writeStringValue("accountId", dataFactoryLogDto.accountId);
|
|
3101
|
+
writer.writeStringValue("cid", dataFactoryLogDto.cid);
|
|
3102
|
+
writer.writeStringValue("code", dataFactoryLogDto.code);
|
|
3103
|
+
writer.writeStringValue("createdAt", dataFactoryLogDto.createdAt);
|
|
3104
|
+
writer.writeStringValue("emitterName", dataFactoryLogDto.emitterName);
|
|
3105
|
+
writer.writeStringValue("eventCorrelationId", dataFactoryLogDto.eventCorrelationId);
|
|
3106
|
+
writer.writeStringValue("id", dataFactoryLogDto.id);
|
|
3107
|
+
writer.writeStringValue("jobId", dataFactoryLogDto.jobId);
|
|
3108
|
+
writer.writeStringValue("jobInstanceId", dataFactoryLogDto.jobInstanceId);
|
|
3109
|
+
writer.writeStringValue("message", dataFactoryLogDto.message);
|
|
3110
|
+
writer.writeEnumValue("messageType", dataFactoryLogDto.messageType);
|
|
3111
|
+
writer.writeEnumValue("object", dataFactoryLogDto.object);
|
|
3112
|
+
writer.writeStringValue("severity", dataFactoryLogDto.severity);
|
|
3113
|
+
writer.writeAdditionalData(dataFactoryLogDto.additionalData);
|
|
3114
|
+
}
|
|
3115
|
+
}
|
|
2998
3116
|
function serializeDisplayInfoDto(writer, displayInfoDto = {}) {
|
|
2999
3117
|
if (displayInfoDto) {
|
|
3000
3118
|
writer.writeNumberValue("precision", displayInfoDto.precision);
|
|
@@ -3730,6 +3848,13 @@ function serializePartnerGroupMembersDto(writer, partnerGroupMembersDto = {}) {
|
|
|
3730
3848
|
writer.writeAdditionalData(partnerGroupMembersDto.additionalData);
|
|
3731
3849
|
}
|
|
3732
3850
|
}
|
|
3851
|
+
function serializePartnerInvitationCreateDto(writer, partnerInvitationCreateDto = {}) {
|
|
3852
|
+
if (partnerInvitationCreateDto) {
|
|
3853
|
+
writer.writeStringValue("toAccountName", partnerInvitationCreateDto.toAccountName);
|
|
3854
|
+
writer.writeStringValue("toUserEmail", partnerInvitationCreateDto.toUserEmail);
|
|
3855
|
+
writer.writeAdditionalData(partnerInvitationCreateDto.additionalData);
|
|
3856
|
+
}
|
|
3857
|
+
}
|
|
3733
3858
|
function serializePartnerInvitationDto(writer, partnerInvitationDto = {}) {
|
|
3734
3859
|
if (partnerInvitationDto) {
|
|
3735
3860
|
writer.writeStringValue("accountId", partnerInvitationDto.accountId);
|
|
@@ -3906,6 +4031,7 @@ function serializeScreenColumnDto(writer, screenColumnDto = {}) {
|
|
|
3906
4031
|
writer.writeStringValue("fieldId", screenColumnDto.fieldId);
|
|
3907
4032
|
writer.writeStringValue("id", screenColumnDto.id);
|
|
3908
4033
|
writer.writeBooleanValue("isFixed", screenColumnDto.isFixed);
|
|
4034
|
+
writer.writeBooleanValue("isLinesReadOnly", screenColumnDto.isLinesReadOnly);
|
|
3909
4035
|
writer.writeBooleanValue("isReadOnly", screenColumnDto.isReadOnly);
|
|
3910
4036
|
writer.writeEnumValue("object", screenColumnDto.object);
|
|
3911
4037
|
writer.writeStringValue("parentId", screenColumnDto.parentId);
|
|
@@ -4195,8 +4321,10 @@ function serializeUserDto(writer, userDto = {}) {
|
|
|
4195
4321
|
if (userDto) {
|
|
4196
4322
|
writer.writeStringValue("createdAt", userDto.createdAt);
|
|
4197
4323
|
writer.writeStringValue("email", userDto.email);
|
|
4324
|
+
writer.writeStringValue("firstActivityAt", userDto.firstActivityAt);
|
|
4198
4325
|
writer.writeStringValue("firstName", userDto.firstName);
|
|
4199
4326
|
writer.writeStringValue("id", userDto.id);
|
|
4327
|
+
writer.writeStringValue("lastActivityAt", userDto.lastActivityAt);
|
|
4200
4328
|
writer.writeStringValue("lastName", userDto.lastName);
|
|
4201
4329
|
writer.writeEnumValue("object", userDto.object);
|
|
4202
4330
|
writer.writeEnumValue("role", userDto.role);
|
|
@@ -4293,9 +4421,12 @@ var CommentThreadDto_targetTypeObject = {
|
|
|
4293
4421
|
FieldValue: "fieldValue",
|
|
4294
4422
|
Field_value_by_formula_rule: "field_value_by_formula_rule",
|
|
4295
4423
|
Field_value_whitelist: "field_value_whitelist",
|
|
4424
|
+
File: "file",
|
|
4425
|
+
File_location: "file_location",
|
|
4296
4426
|
File_ref: "file_ref",
|
|
4297
4427
|
Formula_rule: "formula_rule",
|
|
4298
4428
|
Generic_mock_data: "generic_mock_data",
|
|
4429
|
+
Global_file: "global_file",
|
|
4299
4430
|
Global_message: "global_message",
|
|
4300
4431
|
Grid_column: "grid_column",
|
|
4301
4432
|
Group: "group",
|
|
@@ -4358,6 +4489,17 @@ var CompositeCollectStrategyDto_typeObject = {
|
|
|
4358
4489
|
BY_ID: "BY_ID",
|
|
4359
4490
|
BY_POSITION: "BY_POSITION"
|
|
4360
4491
|
};
|
|
4492
|
+
var CreateDataFactoryLogDto_messageTypeObject = {
|
|
4493
|
+
DEFAULTEscaped: "DEFAULT",
|
|
4494
|
+
MARKDOWN: "MARKDOWN"
|
|
4495
|
+
};
|
|
4496
|
+
var CreateDataFactoryLogDto_severityObject = {
|
|
4497
|
+
Debug: "debug",
|
|
4498
|
+
ErrorEscaped: "error",
|
|
4499
|
+
Info: "info",
|
|
4500
|
+
Silly: "silly",
|
|
4501
|
+
Warning: "warning"
|
|
4502
|
+
};
|
|
4361
4503
|
var CreateJobDto_statusObject = {
|
|
4362
4504
|
ARCHIVED: "ARCHIVED",
|
|
4363
4505
|
DEPRECATED: "DEPRECATED",
|
|
@@ -4379,6 +4521,13 @@ var CreateVariableDto_statusObject = {
|
|
|
4379
4521
|
ARCHIVED: "ARCHIVED",
|
|
4380
4522
|
DELETED: "DELETED"
|
|
4381
4523
|
};
|
|
4524
|
+
var DataFactoryLogDto_messageTypeObject = {
|
|
4525
|
+
DEFAULTEscaped: "DEFAULT",
|
|
4526
|
+
MARKDOWN: "MARKDOWN"
|
|
4527
|
+
};
|
|
4528
|
+
var DataFactoryLogDto_objectObject = {
|
|
4529
|
+
Data_factory_log: "data_factory_log"
|
|
4530
|
+
};
|
|
4382
4531
|
var FieldDto_objectObject = {
|
|
4383
4532
|
Field: "field"
|
|
4384
4533
|
};
|
|
@@ -5968,6 +6117,33 @@ var JobsRequestBuilderRequestsMetadata = {
|
|
|
5968
6117
|
}
|
|
5969
6118
|
};
|
|
5970
6119
|
|
|
6120
|
+
// src/v1/dataFactory/logs/index.ts
|
|
6121
|
+
function createDataFactoryLogDto400ErrorFromDiscriminatorValue(parseNode) {
|
|
6122
|
+
return deserializeIntoDataFactoryLogDto400Error;
|
|
6123
|
+
}
|
|
6124
|
+
function deserializeIntoDataFactoryLogDto400Error(dataFactoryLogDto400Error = {}) {
|
|
6125
|
+
return {
|
|
6126
|
+
"message": (n) => {
|
|
6127
|
+
dataFactoryLogDto400Error.messageEscaped = n.getStringValue();
|
|
6128
|
+
}
|
|
6129
|
+
};
|
|
6130
|
+
}
|
|
6131
|
+
var LogsRequestBuilderUriTemplate = "{+baseurl}/v1/data-factory/logs";
|
|
6132
|
+
var LogsRequestBuilderRequestsMetadata = {
|
|
6133
|
+
post: {
|
|
6134
|
+
uriTemplate: LogsRequestBuilderUriTemplate,
|
|
6135
|
+
responseBodyContentType: "application/json",
|
|
6136
|
+
errorMappings: {
|
|
6137
|
+
400: createDataFactoryLogDto400ErrorFromDiscriminatorValue
|
|
6138
|
+
},
|
|
6139
|
+
adapterMethodName: "send",
|
|
6140
|
+
responseBodyFactory: createDataFactoryLogDtoFromDiscriminatorValue,
|
|
6141
|
+
requestBodyContentType: "application/json",
|
|
6142
|
+
requestBodySerializer: serializeCreateDataFactoryLogDto,
|
|
6143
|
+
requestInformationContentSetMethod: "setContentFromParsable"
|
|
6144
|
+
}
|
|
6145
|
+
};
|
|
6146
|
+
|
|
5971
6147
|
// src/v1/dataFactory/pipelines/item/index.ts
|
|
5972
6148
|
function createPipelineDto400ErrorFromDiscriminatorValue(parseNode) {
|
|
5973
6149
|
return deserializeIntoPipelineDto400Error;
|
|
@@ -6690,6 +6866,9 @@ var DataFactoryRequestBuilderNavigationMetadata = {
|
|
|
6690
6866
|
requestsMetadata: JobsRequestBuilderRequestsMetadata,
|
|
6691
6867
|
navigationMetadata: JobsRequestBuilderNavigationMetadata
|
|
6692
6868
|
},
|
|
6869
|
+
logs: {
|
|
6870
|
+
requestsMetadata: LogsRequestBuilderRequestsMetadata
|
|
6871
|
+
},
|
|
6693
6872
|
pipelines: {
|
|
6694
6873
|
requestsMetadata: PipelinesRequestBuilderRequestsMetadata,
|
|
6695
6874
|
navigationMetadata: PipelinesRequestBuilderNavigationMetadata
|
|
@@ -8321,12 +8500,22 @@ var PartnerInvitationsItemRequestBuilderRequestsMetadata = {
|
|
|
8321
8500
|
};
|
|
8322
8501
|
|
|
8323
8502
|
// src/v1/partnerInvitations/index.ts
|
|
8503
|
+
function createPartnerInvitationDto400ErrorFromDiscriminatorValue2(parseNode) {
|
|
8504
|
+
return deserializeIntoPartnerInvitationDto400Error2;
|
|
8505
|
+
}
|
|
8324
8506
|
function createPartnerInvitations400ErrorFromDiscriminatorValue(parseNode) {
|
|
8325
8507
|
return deserializeIntoPartnerInvitations400Error;
|
|
8326
8508
|
}
|
|
8327
8509
|
function createPartnerInvitationsGetResponseFromDiscriminatorValue(parseNode) {
|
|
8328
8510
|
return deserializeIntoPartnerInvitationsGetResponse;
|
|
8329
8511
|
}
|
|
8512
|
+
function deserializeIntoPartnerInvitationDto400Error2(partnerInvitationDto400Error = {}) {
|
|
8513
|
+
return {
|
|
8514
|
+
"message": (n) => {
|
|
8515
|
+
partnerInvitationDto400Error.messageEscaped = n.getStringValue();
|
|
8516
|
+
}
|
|
8517
|
+
};
|
|
8518
|
+
}
|
|
8330
8519
|
function deserializeIntoPartnerInvitations400Error(partnerInvitations400Error = {}) {
|
|
8331
8520
|
return {
|
|
8332
8521
|
"message": (n) => {
|
|
@@ -8369,6 +8558,18 @@ var PartnerInvitationsRequestBuilderRequestsMetadata = {
|
|
|
8369
8558
|
},
|
|
8370
8559
|
adapterMethodName: "send",
|
|
8371
8560
|
responseBodyFactory: createPartnerInvitationsGetResponseFromDiscriminatorValue
|
|
8561
|
+
},
|
|
8562
|
+
post: {
|
|
8563
|
+
uriTemplate: PartnerInvitationsRequestBuilderUriTemplate,
|
|
8564
|
+
responseBodyContentType: "application/json",
|
|
8565
|
+
errorMappings: {
|
|
8566
|
+
400: createPartnerInvitationDto400ErrorFromDiscriminatorValue2
|
|
8567
|
+
},
|
|
8568
|
+
adapterMethodName: "send",
|
|
8569
|
+
responseBodyFactory: createPartnerInvitationDtoFromDiscriminatorValue,
|
|
8570
|
+
requestBodyContentType: "application/json",
|
|
8571
|
+
requestBodySerializer: serializePartnerInvitationCreateDto,
|
|
8572
|
+
requestInformationContentSetMethod: "setContentFromParsable"
|
|
8372
8573
|
}
|
|
8373
8574
|
};
|
|
8374
8575
|
|
|
@@ -10390,10 +10591,14 @@ export {
|
|
|
10390
10591
|
CommentThreadDto_typeObject,
|
|
10391
10592
|
CommentThreadSubscriberDto_objectObject,
|
|
10392
10593
|
CompositeCollectStrategyDto_typeObject,
|
|
10594
|
+
CreateDataFactoryLogDto_messageTypeObject,
|
|
10595
|
+
CreateDataFactoryLogDto_severityObject,
|
|
10393
10596
|
CreateJobDto_statusObject,
|
|
10394
10597
|
CreateTaskDto_retryLogicObject,
|
|
10395
10598
|
CreateTaskDto_timeoutPolicyObject,
|
|
10396
10599
|
CreateVariableDto_statusObject,
|
|
10600
|
+
DataFactoryLogDto_messageTypeObject,
|
|
10601
|
+
DataFactoryLogDto_objectObject,
|
|
10397
10602
|
FieldDto_objectObject,
|
|
10398
10603
|
FieldDto_typeObject,
|
|
10399
10604
|
FieldSuffixDto_statusObject,
|
|
@@ -10475,6 +10680,7 @@ export {
|
|
|
10475
10680
|
createCommentThreadSubscriberDtoFromDiscriminatorValue,
|
|
10476
10681
|
createCommentThreadUpdateDtoFromDiscriminatorValue,
|
|
10477
10682
|
createCompositeCollectStrategyDtoFromDiscriminatorValue,
|
|
10683
|
+
createCreateDataFactoryLogDtoFromDiscriminatorValue,
|
|
10478
10684
|
createCreateJobDtoFromDiscriminatorValue,
|
|
10479
10685
|
createCreateJobDto_outputFromDiscriminatorValue,
|
|
10480
10686
|
createCreateJobExecutionDtoFromDiscriminatorValue,
|
|
@@ -10485,6 +10691,7 @@ export {
|
|
|
10485
10691
|
createCreateTaskDtoFromDiscriminatorValue,
|
|
10486
10692
|
createCreateUserGroupDtoFromDiscriminatorValue,
|
|
10487
10693
|
createCreateVariableDtoFromDiscriminatorValue,
|
|
10694
|
+
createDataFactoryLogDtoFromDiscriminatorValue,
|
|
10488
10695
|
createDisplayInfoDtoFromDiscriminatorValue,
|
|
10489
10696
|
createFieldDtoFromDiscriminatorValue,
|
|
10490
10697
|
createFieldDto_metadataFromDiscriminatorValue,
|
|
@@ -10545,6 +10752,7 @@ export {
|
|
|
10545
10752
|
createPartnerDtoFromDiscriminatorValue,
|
|
10546
10753
|
createPartnerGroupDtoFromDiscriminatorValue,
|
|
10547
10754
|
createPartnerGroupMembersDtoFromDiscriminatorValue,
|
|
10755
|
+
createPartnerInvitationCreateDtoFromDiscriminatorValue,
|
|
10548
10756
|
createPartnerInvitationDtoFromDiscriminatorValue,
|
|
10549
10757
|
createPatchPublicationDtoFromDiscriminatorValue,
|
|
10550
10758
|
createPatchTaskExecutionDtoFromDiscriminatorValue,
|
|
@@ -10593,6 +10801,7 @@ export {
|
|
|
10593
10801
|
deserializeIntoCommentThreadSubscriberDto,
|
|
10594
10802
|
deserializeIntoCommentThreadUpdateDto,
|
|
10595
10803
|
deserializeIntoCompositeCollectStrategyDto,
|
|
10804
|
+
deserializeIntoCreateDataFactoryLogDto,
|
|
10596
10805
|
deserializeIntoCreateJobDto,
|
|
10597
10806
|
deserializeIntoCreateJobDto_output,
|
|
10598
10807
|
deserializeIntoCreateJobExecutionDto,
|
|
@@ -10603,6 +10812,7 @@ export {
|
|
|
10603
10812
|
deserializeIntoCreateTaskDto,
|
|
10604
10813
|
deserializeIntoCreateUserGroupDto,
|
|
10605
10814
|
deserializeIntoCreateVariableDto,
|
|
10815
|
+
deserializeIntoDataFactoryLogDto,
|
|
10606
10816
|
deserializeIntoDisplayInfoDto,
|
|
10607
10817
|
deserializeIntoFieldDto,
|
|
10608
10818
|
deserializeIntoFieldDto_metadata,
|
|
@@ -10663,6 +10873,7 @@ export {
|
|
|
10663
10873
|
deserializeIntoPartnerDto,
|
|
10664
10874
|
deserializeIntoPartnerGroupDto,
|
|
10665
10875
|
deserializeIntoPartnerGroupMembersDto,
|
|
10876
|
+
deserializeIntoPartnerInvitationCreateDto,
|
|
10666
10877
|
deserializeIntoPartnerInvitationDto,
|
|
10667
10878
|
deserializeIntoPatchPublicationDto,
|
|
10668
10879
|
deserializeIntoPatchTaskExecutionDto,
|
|
@@ -10711,6 +10922,7 @@ export {
|
|
|
10711
10922
|
serializeCommentThreadSubscriberDto,
|
|
10712
10923
|
serializeCommentThreadUpdateDto,
|
|
10713
10924
|
serializeCompositeCollectStrategyDto,
|
|
10925
|
+
serializeCreateDataFactoryLogDto,
|
|
10714
10926
|
serializeCreateJobDto,
|
|
10715
10927
|
serializeCreateJobDto_output,
|
|
10716
10928
|
serializeCreateJobExecutionDto,
|
|
@@ -10721,6 +10933,7 @@ export {
|
|
|
10721
10933
|
serializeCreateTaskDto,
|
|
10722
10934
|
serializeCreateUserGroupDto,
|
|
10723
10935
|
serializeCreateVariableDto,
|
|
10936
|
+
serializeDataFactoryLogDto,
|
|
10724
10937
|
serializeDisplayInfoDto,
|
|
10725
10938
|
serializeFieldDto,
|
|
10726
10939
|
serializeFieldDto_metadata,
|
|
@@ -10781,6 +10994,7 @@ export {
|
|
|
10781
10994
|
serializePartnerDto,
|
|
10782
10995
|
serializePartnerGroupDto,
|
|
10783
10996
|
serializePartnerGroupMembersDto,
|
|
10997
|
+
serializePartnerInvitationCreateDto,
|
|
10784
10998
|
serializePartnerInvitationDto,
|
|
10785
10999
|
serializePatchPublicationDto,
|
|
10786
11000
|
serializePatchTaskExecutionDto,
|