@targetprocess/shared-data-model-client 0.4.0 → 0.6.0-us817837-mapping.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/sdm/attachments/index.d.ts +4 -4
- package/dist/api/sdm/attachments/index.js +3 -3
- package/dist/api/sdm/attachments/item/index.d.ts +30 -11
- package/dist/api/sdm/attachments/item/index.js +21 -4
- package/dist/api/sdm/index.js +1 -0
- package/dist/api/sdm/item/index.d.ts +23 -1
- package/dist/api/sdm/item/index.js +28 -5
- package/dist/api/settings/index.js +1 -0
- package/dist/api/settings/profile/index.d.ts +19 -4
- package/dist/api/settings/profile/index.js +12 -2
- package/dist/api/settings/profile/validate/index.d.ts +33 -0
- package/dist/api/settings/profile/validate/index.js +34 -0
- package/dist/models/index.d.ts +142 -194
- package/dist/models/index.js +191 -216
- package/package.json +1 -1
- package/src/api/sdm/attachments/index.ts +7 -7
- package/src/api/sdm/attachments/item/index.ts +46 -13
- package/src/api/sdm/index.ts +2 -1
- package/src/api/sdm/item/index.ts +40 -1
- package/src/api/settings/index.ts +2 -1
- package/src/api/settings/profile/index.ts +24 -4
- package/src/api/settings/profile/validate/index.ts +57 -0
- package/src/kiota-lock.json +1 -1
- package/src/models/index.ts +238 -321
- package/src/v1.json +426 -275
package/dist/models/index.d.ts
CHANGED
|
@@ -1,28 +1,10 @@
|
|
|
1
|
-
import { type AdditionalDataHolder, type ApiError, type Parsable, type ParseNode, type SerializationWriter
|
|
2
|
-
/**
|
|
3
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
4
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
5
|
-
* @returns {FieldAttributesDto}
|
|
6
|
-
*/
|
|
7
|
-
export declare function createFieldAttributesDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
8
|
-
/**
|
|
9
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
10
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
11
|
-
* @returns {FieldDefDto}
|
|
12
|
-
*/
|
|
13
|
-
export declare function createFieldDefDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1
|
+
import { type AdditionalDataHolder, type ApiError, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
|
|
14
2
|
/**
|
|
15
3
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16
4
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17
5
|
* @returns {FieldMappingDto}
|
|
18
6
|
*/
|
|
19
7
|
export declare function createFieldMappingDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20
|
-
/**
|
|
21
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
22
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23
|
-
* @returns {FieldMetaDto}
|
|
24
|
-
*/
|
|
25
|
-
export declare function createFieldMetaDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
26
8
|
/**
|
|
27
9
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
28
10
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -47,6 +29,12 @@ export declare function createHttpValidationProblemDetails_errorsFromDiscriminat
|
|
|
47
29
|
* @returns {HttpValidationProblemDetails}
|
|
48
30
|
*/
|
|
49
31
|
export declare function createHttpValidationProblemDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
32
|
+
/**
|
|
33
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
34
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
35
|
+
* @returns {IFieldDef}
|
|
36
|
+
*/
|
|
37
|
+
export declare function createIFieldDefFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
50
38
|
/**
|
|
51
39
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
52
40
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -62,33 +50,39 @@ export declare function createProfileDtoFromDiscriminatorValue(parseNode: ParseN
|
|
|
62
50
|
/**
|
|
63
51
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
64
52
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
65
|
-
* @returns {
|
|
53
|
+
* @returns {SdmMappingFieldDefDto}
|
|
54
|
+
*/
|
|
55
|
+
export declare function createSdmMappingFieldDefDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
56
|
+
/**
|
|
57
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
58
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
59
|
+
* @returns {SdmTypeDefDto}
|
|
66
60
|
*/
|
|
67
|
-
export declare function
|
|
61
|
+
export declare function createSdmTypeDefDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
68
62
|
/**
|
|
69
63
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
70
64
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
71
|
-
* @returns {
|
|
65
|
+
* @returns {SharedDataCreateAttachmentResponseDto}
|
|
72
66
|
*/
|
|
73
|
-
export declare function
|
|
67
|
+
export declare function createSharedDataCreateAttachmentResponseDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
74
68
|
/**
|
|
75
69
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
76
70
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
77
|
-
* @returns {
|
|
71
|
+
* @returns {SharedDataCreateAttachmentResponseItemDto}
|
|
78
72
|
*/
|
|
79
|
-
export declare function
|
|
73
|
+
export declare function createSharedDataCreateAttachmentResponseItemDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
80
74
|
/**
|
|
81
75
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
82
76
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
83
|
-
* @returns {
|
|
77
|
+
* @returns {TpMappingFieldDefDto}
|
|
84
78
|
*/
|
|
85
|
-
export declare function
|
|
79
|
+
export declare function createTpMappingFieldDefDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
86
80
|
/**
|
|
87
81
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
88
82
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
89
|
-
* @returns {
|
|
83
|
+
* @returns {TpTypeDefDto}
|
|
90
84
|
*/
|
|
91
|
-
export declare function
|
|
85
|
+
export declare function createTpTypeDefDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
92
86
|
/**
|
|
93
87
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
94
88
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -102,80 +96,81 @@ export declare function createTypeMappingDtoFromDiscriminatorValue(parseNode: Pa
|
|
|
102
96
|
*/
|
|
103
97
|
export declare function createTypeMetaDefDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
104
98
|
/**
|
|
105
|
-
*
|
|
106
|
-
* @
|
|
99
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
100
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
101
|
+
* @returns {ValidatedProfileDto}
|
|
107
102
|
*/
|
|
108
|
-
export declare function
|
|
103
|
+
export declare function createValidatedProfileDtoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
109
104
|
/**
|
|
110
105
|
* The deserialization information for the current model
|
|
111
106
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
112
107
|
*/
|
|
113
|
-
export declare function
|
|
108
|
+
export declare function deserializeIntoFieldMappingDto(fieldMappingDto?: Partial<FieldMappingDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
114
109
|
/**
|
|
115
110
|
* The deserialization information for the current model
|
|
116
111
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
117
112
|
*/
|
|
118
|
-
export declare function
|
|
113
|
+
export declare function deserializeIntoGetEntityTypesDto(getEntityTypesDto?: Partial<GetEntityTypesDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
119
114
|
/**
|
|
120
115
|
* The deserialization information for the current model
|
|
121
116
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
122
117
|
*/
|
|
123
|
-
export declare function
|
|
118
|
+
export declare function deserializeIntoGetProfileSettingsDto(getProfileSettingsDto?: Partial<GetProfileSettingsDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
124
119
|
/**
|
|
125
120
|
* The deserialization information for the current model
|
|
126
121
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
127
122
|
*/
|
|
128
|
-
export declare function
|
|
123
|
+
export declare function deserializeIntoHttpValidationProblemDetails(httpValidationProblemDetails?: Partial<HttpValidationProblemDetails> | undefined): Record<string, (node: ParseNode) => void>;
|
|
129
124
|
/**
|
|
130
125
|
* The deserialization information for the current model
|
|
131
126
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
132
127
|
*/
|
|
133
|
-
export declare function
|
|
128
|
+
export declare function deserializeIntoHttpValidationProblemDetails_errors(httpValidationProblemDetails_errors?: Partial<HttpValidationProblemDetails_errors> | undefined): Record<string, (node: ParseNode) => void>;
|
|
134
129
|
/**
|
|
135
130
|
* The deserialization information for the current model
|
|
136
131
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
137
132
|
*/
|
|
138
|
-
export declare function
|
|
133
|
+
export declare function deserializeIntoIFieldDef(iFieldDef?: Partial<IFieldDef> | undefined): Record<string, (node: ParseNode) => void>;
|
|
139
134
|
/**
|
|
140
135
|
* The deserialization information for the current model
|
|
141
136
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
142
137
|
*/
|
|
143
|
-
export declare function
|
|
138
|
+
export declare function deserializeIntoProblemDetails(problemDetails?: Partial<ProblemDetails> | undefined): Record<string, (node: ParseNode) => void>;
|
|
144
139
|
/**
|
|
145
140
|
* The deserialization information for the current model
|
|
146
141
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
147
142
|
*/
|
|
148
|
-
export declare function
|
|
143
|
+
export declare function deserializeIntoProfileDto(profileDto?: Partial<ProfileDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
149
144
|
/**
|
|
150
145
|
* The deserialization information for the current model
|
|
151
146
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
152
147
|
*/
|
|
153
|
-
export declare function
|
|
148
|
+
export declare function deserializeIntoSdmMappingFieldDefDto(sdmMappingFieldDefDto?: Partial<SdmMappingFieldDefDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
154
149
|
/**
|
|
155
150
|
* The deserialization information for the current model
|
|
156
151
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
157
152
|
*/
|
|
158
|
-
export declare function
|
|
153
|
+
export declare function deserializeIntoSdmTypeDefDto(sdmTypeDefDto?: Partial<SdmTypeDefDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
159
154
|
/**
|
|
160
155
|
* The deserialization information for the current model
|
|
161
156
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
162
157
|
*/
|
|
163
|
-
export declare function
|
|
158
|
+
export declare function deserializeIntoSharedDataCreateAttachmentResponseDto(sharedDataCreateAttachmentResponseDto?: Partial<SharedDataCreateAttachmentResponseDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
164
159
|
/**
|
|
165
160
|
* The deserialization information for the current model
|
|
166
161
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
167
162
|
*/
|
|
168
|
-
export declare function
|
|
163
|
+
export declare function deserializeIntoSharedDataCreateAttachmentResponseItemDto(sharedDataCreateAttachmentResponseItemDto?: Partial<SharedDataCreateAttachmentResponseItemDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
169
164
|
/**
|
|
170
165
|
* The deserialization information for the current model
|
|
171
166
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
172
167
|
*/
|
|
173
|
-
export declare function
|
|
168
|
+
export declare function deserializeIntoTpMappingFieldDefDto(tpMappingFieldDefDto?: Partial<TpMappingFieldDefDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
174
169
|
/**
|
|
175
170
|
* The deserialization information for the current model
|
|
176
171
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
177
172
|
*/
|
|
178
|
-
export declare function
|
|
173
|
+
export declare function deserializeIntoTpTypeDefDto(tpTypeDefDto?: Partial<TpTypeDefDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
179
174
|
/**
|
|
180
175
|
* The deserialization information for the current model
|
|
181
176
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -186,34 +181,12 @@ export declare function deserializeIntoTypeMappingDto(typeMappingDto?: Partial<T
|
|
|
186
181
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
187
182
|
*/
|
|
188
183
|
export declare function deserializeIntoTypeMetaDefDto(typeMetaDefDto?: Partial<TypeMetaDefDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
* The roleId property
|
|
196
|
-
*/
|
|
197
|
-
roleId?: string | null;
|
|
198
|
-
}
|
|
199
|
-
export interface FieldDefDto extends Parsable {
|
|
200
|
-
/**
|
|
201
|
-
* The id property
|
|
202
|
-
*/
|
|
203
|
-
id?: string | null;
|
|
204
|
-
/**
|
|
205
|
-
* The meta property
|
|
206
|
-
*/
|
|
207
|
-
meta?: FieldMetaDto | null;
|
|
208
|
-
/**
|
|
209
|
-
* The name property
|
|
210
|
-
*/
|
|
211
|
-
name?: string | null;
|
|
212
|
-
/**
|
|
213
|
-
* The path property
|
|
214
|
-
*/
|
|
215
|
-
path?: string | null;
|
|
216
|
-
}
|
|
184
|
+
/**
|
|
185
|
+
* The deserialization information for the current model
|
|
186
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
187
|
+
*/
|
|
188
|
+
export declare function deserializeIntoValidatedProfileDto(validatedProfileDto?: Partial<ValidatedProfileDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
189
|
+
export type FieldKind = (typeof FieldKindObject)[keyof typeof FieldKindObject];
|
|
217
190
|
export interface FieldMappingDto extends Parsable {
|
|
218
191
|
/**
|
|
219
192
|
* The id property
|
|
@@ -222,63 +195,21 @@ export interface FieldMappingDto extends Parsable {
|
|
|
222
195
|
/**
|
|
223
196
|
* The source property
|
|
224
197
|
*/
|
|
225
|
-
source?:
|
|
226
|
-
/**
|
|
227
|
-
* The sourceRel property
|
|
228
|
-
*/
|
|
229
|
-
sourceRel?: RelationDto | null;
|
|
198
|
+
source?: TpMappingFieldDefDto | null;
|
|
230
199
|
/**
|
|
231
200
|
* The target property
|
|
232
201
|
*/
|
|
233
|
-
target?:
|
|
234
|
-
/**
|
|
235
|
-
* The targetRel property
|
|
236
|
-
*/
|
|
237
|
-
targetRel?: RelationDto | null;
|
|
238
|
-
/**
|
|
239
|
-
* The type property
|
|
240
|
-
*/
|
|
241
|
-
type?: number | null;
|
|
202
|
+
target?: SdmMappingFieldDefDto | null;
|
|
242
203
|
}
|
|
243
|
-
export interface
|
|
244
|
-
/**
|
|
245
|
-
* The attributes property
|
|
246
|
-
*/
|
|
247
|
-
attributes?: FieldAttributesDto | null;
|
|
248
|
-
/**
|
|
249
|
-
* The isReadonly property
|
|
250
|
-
*/
|
|
251
|
-
isReadonly?: boolean | null;
|
|
252
|
-
/**
|
|
253
|
-
* The kind property
|
|
254
|
-
*/
|
|
255
|
-
kind?: number | null;
|
|
256
|
-
/**
|
|
257
|
-
* The multiple property
|
|
258
|
-
*/
|
|
259
|
-
multiple?: boolean | null;
|
|
260
|
-
/**
|
|
261
|
-
* The options property
|
|
262
|
-
*/
|
|
263
|
-
options?: UntypedNode | null;
|
|
264
|
-
/**
|
|
265
|
-
* The required property
|
|
266
|
-
*/
|
|
267
|
-
required?: boolean | null;
|
|
204
|
+
export interface GetEntityTypesDto extends Parsable {
|
|
268
205
|
/**
|
|
269
|
-
* The
|
|
206
|
+
* The sdmTypes property
|
|
270
207
|
*/
|
|
271
|
-
|
|
272
|
-
/**
|
|
273
|
-
* The type property
|
|
274
|
-
*/
|
|
275
|
-
type?: TypeDefRefDto | null;
|
|
276
|
-
}
|
|
277
|
-
export interface GetEntityTypesDto extends Parsable {
|
|
208
|
+
sdmTypes?: TypeMetaDefDto[] | null;
|
|
278
209
|
/**
|
|
279
|
-
* The
|
|
210
|
+
* The tpTypes property
|
|
280
211
|
*/
|
|
281
|
-
|
|
212
|
+
tpTypes?: TypeMetaDefDto[] | null;
|
|
282
213
|
}
|
|
283
214
|
export interface GetProfileSettingsDto extends Parsable {
|
|
284
215
|
/**
|
|
@@ -298,6 +229,21 @@ export interface HttpValidationProblemDetails_errors extends AdditionalDataHolde
|
|
|
298
229
|
*/
|
|
299
230
|
additionalData?: Record<string, unknown>;
|
|
300
231
|
}
|
|
232
|
+
export interface IFieldDef extends Parsable {
|
|
233
|
+
/**
|
|
234
|
+
* The expression property
|
|
235
|
+
*/
|
|
236
|
+
expression?: string | null;
|
|
237
|
+
/**
|
|
238
|
+
* The kind property
|
|
239
|
+
*/
|
|
240
|
+
kind?: FieldKind | null;
|
|
241
|
+
/**
|
|
242
|
+
* The refType property
|
|
243
|
+
*/
|
|
244
|
+
refType?: string | null;
|
|
245
|
+
}
|
|
246
|
+
export type MappingKind = (typeof MappingKindObject)[keyof typeof MappingKindObject];
|
|
301
247
|
export interface ProblemDetails extends AdditionalDataHolder, ApiError, Parsable {
|
|
302
248
|
/**
|
|
303
249
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -325,28 +271,6 @@ export interface ProblemDetails extends AdditionalDataHolder, ApiError, Parsable
|
|
|
325
271
|
type?: string | null;
|
|
326
272
|
}
|
|
327
273
|
export interface ProfileDto extends Parsable {
|
|
328
|
-
/**
|
|
329
|
-
* The account property
|
|
330
|
-
*/
|
|
331
|
-
account?: string | null;
|
|
332
|
-
/**
|
|
333
|
-
* The enabled property
|
|
334
|
-
*/
|
|
335
|
-
enabled?: boolean | null;
|
|
336
|
-
/**
|
|
337
|
-
* The id property
|
|
338
|
-
*/
|
|
339
|
-
id?: string | null;
|
|
340
|
-
/**
|
|
341
|
-
* The mappings property
|
|
342
|
-
*/
|
|
343
|
-
mappings?: ProfileMappingDto[] | null;
|
|
344
|
-
}
|
|
345
|
-
export interface ProfileMappingDto extends Parsable {
|
|
346
|
-
/**
|
|
347
|
-
* The enabled property
|
|
348
|
-
*/
|
|
349
|
-
enabled?: boolean | null;
|
|
350
274
|
/**
|
|
351
275
|
* The id property
|
|
352
276
|
*/
|
|
@@ -360,142 +284,150 @@ export interface ProfileMappingDto extends Parsable {
|
|
|
360
284
|
*/
|
|
361
285
|
typeMappings?: TypeMappingDto[] | null;
|
|
362
286
|
}
|
|
363
|
-
export interface
|
|
287
|
+
export interface SdmMappingFieldDefDto extends Parsable {
|
|
364
288
|
/**
|
|
365
|
-
* The
|
|
289
|
+
* The expression property
|
|
366
290
|
*/
|
|
367
|
-
|
|
291
|
+
expression?: string | null;
|
|
368
292
|
/**
|
|
369
|
-
* The
|
|
293
|
+
* The kind property
|
|
370
294
|
*/
|
|
371
|
-
|
|
295
|
+
kind?: MappingKind | null;
|
|
372
296
|
}
|
|
373
|
-
export interface
|
|
297
|
+
export interface SdmTypeDefDto extends Parsable {
|
|
374
298
|
/**
|
|
375
|
-
* The
|
|
376
|
-
*/
|
|
377
|
-
childType?: TypeDefRefDto | null;
|
|
378
|
-
/**
|
|
379
|
-
* The field property
|
|
299
|
+
* The id property
|
|
380
300
|
*/
|
|
381
|
-
|
|
301
|
+
id?: string | null;
|
|
382
302
|
/**
|
|
383
|
-
* The
|
|
303
|
+
* The name property
|
|
384
304
|
*/
|
|
385
|
-
|
|
305
|
+
name?: string | null;
|
|
386
306
|
}
|
|
387
307
|
/**
|
|
388
308
|
* Serializes information the current object
|
|
389
309
|
* @param writer Serialization writer to use to serialize this model
|
|
390
310
|
*/
|
|
391
|
-
export declare function
|
|
311
|
+
export declare function serializeFieldMappingDto(writer: SerializationWriter, fieldMappingDto?: Partial<FieldMappingDto> | undefined | null): void;
|
|
392
312
|
/**
|
|
393
313
|
* Serializes information the current object
|
|
394
314
|
* @param writer Serialization writer to use to serialize this model
|
|
395
315
|
*/
|
|
396
|
-
export declare function
|
|
316
|
+
export declare function serializeGetEntityTypesDto(writer: SerializationWriter, getEntityTypesDto?: Partial<GetEntityTypesDto> | undefined | null): void;
|
|
397
317
|
/**
|
|
398
318
|
* Serializes information the current object
|
|
399
319
|
* @param writer Serialization writer to use to serialize this model
|
|
400
320
|
*/
|
|
401
|
-
export declare function
|
|
321
|
+
export declare function serializeGetProfileSettingsDto(writer: SerializationWriter, getProfileSettingsDto?: Partial<GetProfileSettingsDto> | undefined | null): void;
|
|
402
322
|
/**
|
|
403
323
|
* Serializes information the current object
|
|
404
324
|
* @param writer Serialization writer to use to serialize this model
|
|
405
325
|
*/
|
|
406
|
-
export declare function
|
|
326
|
+
export declare function serializeHttpValidationProblemDetails(writer: SerializationWriter, httpValidationProblemDetails?: Partial<HttpValidationProblemDetails> | undefined | null): void;
|
|
407
327
|
/**
|
|
408
328
|
* Serializes information the current object
|
|
409
329
|
* @param writer Serialization writer to use to serialize this model
|
|
410
330
|
*/
|
|
411
|
-
export declare function
|
|
331
|
+
export declare function serializeHttpValidationProblemDetails_errors(writer: SerializationWriter, httpValidationProblemDetails_errors?: Partial<HttpValidationProblemDetails_errors> | undefined | null): void;
|
|
412
332
|
/**
|
|
413
333
|
* Serializes information the current object
|
|
414
334
|
* @param writer Serialization writer to use to serialize this model
|
|
415
335
|
*/
|
|
416
|
-
export declare function
|
|
336
|
+
export declare function serializeIFieldDef(writer: SerializationWriter, iFieldDef?: Partial<IFieldDef> | undefined | null): void;
|
|
417
337
|
/**
|
|
418
338
|
* Serializes information the current object
|
|
419
339
|
* @param writer Serialization writer to use to serialize this model
|
|
420
340
|
*/
|
|
421
|
-
export declare function
|
|
341
|
+
export declare function serializeProblemDetails(writer: SerializationWriter, problemDetails?: Partial<ProblemDetails> | undefined | null): void;
|
|
422
342
|
/**
|
|
423
343
|
* Serializes information the current object
|
|
424
344
|
* @param writer Serialization writer to use to serialize this model
|
|
425
345
|
*/
|
|
426
|
-
export declare function
|
|
346
|
+
export declare function serializeProfileDto(writer: SerializationWriter, profileDto?: Partial<ProfileDto> | undefined | null): void;
|
|
427
347
|
/**
|
|
428
348
|
* Serializes information the current object
|
|
429
349
|
* @param writer Serialization writer to use to serialize this model
|
|
430
350
|
*/
|
|
431
|
-
export declare function
|
|
351
|
+
export declare function serializeSdmMappingFieldDefDto(writer: SerializationWriter, sdmMappingFieldDefDto?: Partial<SdmMappingFieldDefDto> | undefined | null): void;
|
|
432
352
|
/**
|
|
433
353
|
* Serializes information the current object
|
|
434
354
|
* @param writer Serialization writer to use to serialize this model
|
|
435
355
|
*/
|
|
436
|
-
export declare function
|
|
356
|
+
export declare function serializeSdmTypeDefDto(writer: SerializationWriter, sdmTypeDefDto?: Partial<SdmTypeDefDto> | undefined | null): void;
|
|
437
357
|
/**
|
|
438
358
|
* Serializes information the current object
|
|
439
359
|
* @param writer Serialization writer to use to serialize this model
|
|
440
360
|
*/
|
|
441
|
-
export declare function
|
|
361
|
+
export declare function serializeSharedDataCreateAttachmentResponseDto(writer: SerializationWriter, sharedDataCreateAttachmentResponseDto?: Partial<SharedDataCreateAttachmentResponseDto> | undefined | null): void;
|
|
442
362
|
/**
|
|
443
363
|
* Serializes information the current object
|
|
444
364
|
* @param writer Serialization writer to use to serialize this model
|
|
445
365
|
*/
|
|
446
|
-
export declare function
|
|
366
|
+
export declare function serializeSharedDataCreateAttachmentResponseItemDto(writer: SerializationWriter, sharedDataCreateAttachmentResponseItemDto?: Partial<SharedDataCreateAttachmentResponseItemDto> | undefined | null): void;
|
|
447
367
|
/**
|
|
448
368
|
* Serializes information the current object
|
|
449
369
|
* @param writer Serialization writer to use to serialize this model
|
|
450
370
|
*/
|
|
451
|
-
export declare function
|
|
371
|
+
export declare function serializeTpMappingFieldDefDto(writer: SerializationWriter, tpMappingFieldDefDto?: Partial<TpMappingFieldDefDto> | undefined | null): void;
|
|
452
372
|
/**
|
|
453
373
|
* Serializes information the current object
|
|
454
374
|
* @param writer Serialization writer to use to serialize this model
|
|
455
375
|
*/
|
|
456
|
-
export declare function
|
|
376
|
+
export declare function serializeTpTypeDefDto(writer: SerializationWriter, tpTypeDefDto?: Partial<TpTypeDefDto> | undefined | null): void;
|
|
457
377
|
/**
|
|
458
378
|
* Serializes information the current object
|
|
459
379
|
* @param writer Serialization writer to use to serialize this model
|
|
460
380
|
*/
|
|
461
|
-
export declare function
|
|
381
|
+
export declare function serializeTypeMappingDto(writer: SerializationWriter, typeMappingDto?: Partial<TypeMappingDto> | undefined | null): void;
|
|
462
382
|
/**
|
|
463
383
|
* Serializes information the current object
|
|
464
384
|
* @param writer Serialization writer to use to serialize this model
|
|
465
385
|
*/
|
|
466
|
-
export declare function
|
|
386
|
+
export declare function serializeTypeMetaDefDto(writer: SerializationWriter, typeMetaDefDto?: Partial<TypeMetaDefDto> | undefined | null): void;
|
|
467
387
|
/**
|
|
468
388
|
* Serializes information the current object
|
|
469
389
|
* @param writer Serialization writer to use to serialize this model
|
|
470
390
|
*/
|
|
471
|
-
export declare function
|
|
472
|
-
export interface
|
|
391
|
+
export declare function serializeValidatedProfileDto(writer: SerializationWriter, validatedProfileDto?: Partial<ValidatedProfileDto> | undefined | null): void;
|
|
392
|
+
export interface SharedDataCreateAttachmentResponseDto extends Parsable {
|
|
393
|
+
/**
|
|
394
|
+
* The items property
|
|
395
|
+
*/
|
|
396
|
+
items?: SharedDataCreateAttachmentResponseItemDto[] | null;
|
|
397
|
+
}
|
|
398
|
+
export interface SharedDataCreateAttachmentResponseItemDto extends Parsable {
|
|
473
399
|
/**
|
|
474
400
|
* The id property
|
|
475
401
|
*/
|
|
476
|
-
id?:
|
|
402
|
+
id?: number | null;
|
|
403
|
+
/**
|
|
404
|
+
* The name property
|
|
405
|
+
*/
|
|
406
|
+
name?: string | null;
|
|
477
407
|
/**
|
|
478
|
-
* The
|
|
408
|
+
* The uri property
|
|
479
409
|
*/
|
|
480
|
-
|
|
410
|
+
uri?: string | null;
|
|
411
|
+
}
|
|
412
|
+
export interface TpMappingFieldDefDto extends Parsable {
|
|
481
413
|
/**
|
|
482
|
-
* The
|
|
414
|
+
* The expression property
|
|
483
415
|
*/
|
|
484
|
-
|
|
416
|
+
expression?: string | null;
|
|
485
417
|
/**
|
|
486
|
-
* The
|
|
418
|
+
* The kind property
|
|
487
419
|
*/
|
|
488
|
-
|
|
420
|
+
kind?: MappingKind | null;
|
|
489
421
|
}
|
|
490
|
-
export interface
|
|
422
|
+
export interface TpTypeDefDto extends Parsable {
|
|
491
423
|
/**
|
|
492
424
|
* The id property
|
|
493
425
|
*/
|
|
494
426
|
id?: string | null;
|
|
495
427
|
/**
|
|
496
|
-
* The
|
|
428
|
+
* The name property
|
|
497
429
|
*/
|
|
498
|
-
|
|
430
|
+
name?: string | null;
|
|
499
431
|
}
|
|
500
432
|
export interface TypeMappingDto extends Parsable {
|
|
501
433
|
/**
|
|
@@ -509,27 +441,43 @@ export interface TypeMappingDto extends Parsable {
|
|
|
509
441
|
/**
|
|
510
442
|
* The sourceType property
|
|
511
443
|
*/
|
|
512
|
-
sourceType?:
|
|
444
|
+
sourceType?: TpTypeDefDto | null;
|
|
513
445
|
/**
|
|
514
446
|
* The targetType property
|
|
515
447
|
*/
|
|
516
|
-
targetType?:
|
|
448
|
+
targetType?: SdmTypeDefDto | null;
|
|
517
449
|
}
|
|
518
450
|
export interface TypeMetaDefDto extends Parsable {
|
|
519
451
|
/**
|
|
520
452
|
* The fields property
|
|
521
453
|
*/
|
|
522
|
-
fields?:
|
|
454
|
+
fields?: IFieldDef[] | null;
|
|
523
455
|
/**
|
|
524
456
|
* The id property
|
|
525
457
|
*/
|
|
526
458
|
id?: string | null;
|
|
527
|
-
/**
|
|
528
|
-
* The kind property
|
|
529
|
-
*/
|
|
530
|
-
kind?: string | null;
|
|
531
459
|
/**
|
|
532
460
|
* The name property
|
|
533
461
|
*/
|
|
534
462
|
name?: string | null;
|
|
535
463
|
}
|
|
464
|
+
export interface ValidatedProfileDto extends AdditionalDataHolder, Parsable, ProfileDto {
|
|
465
|
+
/**
|
|
466
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
467
|
+
*/
|
|
468
|
+
additionalData?: Record<string, unknown>;
|
|
469
|
+
/**
|
|
470
|
+
* The isValid property
|
|
471
|
+
*/
|
|
472
|
+
isValid?: boolean | null;
|
|
473
|
+
}
|
|
474
|
+
export declare const FieldKindObject: {
|
|
475
|
+
readonly Simple: "Simple";
|
|
476
|
+
readonly Ref: "Ref";
|
|
477
|
+
readonly Collection: "Collection";
|
|
478
|
+
};
|
|
479
|
+
export declare const MappingKindObject: {
|
|
480
|
+
readonly Property: "Property";
|
|
481
|
+
readonly PropertyChain: "PropertyChain";
|
|
482
|
+
readonly FreeExpression: "FreeExpression";
|
|
483
|
+
};
|