@ogcio/building-blocks-sdk 0.2.27 → 0.2.28
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/.github/CODEOWNERS +1 -1
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +7 -0
- package/dist/client/clients/profile/index.d.ts +186 -1
- package/dist/client/clients/profile/index.d.ts.map +1 -1
- package/dist/client/clients/profile/index.js +13 -1
- package/dist/client/clients/profile/index.js.map +1 -1
- package/dist/client/clients/profile/schema.d.ts +193 -1
- package/dist/client/clients/profile/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/client/clients/profile/index.ts +23 -0
- package/src/client/clients/profile/open-api-definition.json +600 -45
- package/src/client/clients/profile/schema.ts +193 -1
|
@@ -57,6 +57,21 @@
|
|
|
57
57
|
"name": "insertPrivateDetails",
|
|
58
58
|
"required": false
|
|
59
59
|
},
|
|
60
|
+
{
|
|
61
|
+
"schema": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"enum": [
|
|
64
|
+
"true",
|
|
65
|
+
"false",
|
|
66
|
+
"0",
|
|
67
|
+
"1"
|
|
68
|
+
],
|
|
69
|
+
"default": "false"
|
|
70
|
+
},
|
|
71
|
+
"in": "query",
|
|
72
|
+
"name": "onlyPrivateDetails",
|
|
73
|
+
"required": false
|
|
74
|
+
},
|
|
60
75
|
{
|
|
61
76
|
"schema": {
|
|
62
77
|
"format": "uuid",
|
|
@@ -83,14 +98,400 @@
|
|
|
83
98
|
}
|
|
84
99
|
},
|
|
85
100
|
"required": [
|
|
86
|
-
"status",
|
|
87
|
-
"profileImportId"
|
|
101
|
+
"status",
|
|
102
|
+
"profileImportId"
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"5XX": {
|
|
109
|
+
"description": "Default Response",
|
|
110
|
+
"content": {
|
|
111
|
+
"application/json": {
|
|
112
|
+
"schema": {
|
|
113
|
+
"type": "object",
|
|
114
|
+
"properties": {
|
|
115
|
+
"code": {
|
|
116
|
+
"description": "Code used to categorize the error",
|
|
117
|
+
"type": "string"
|
|
118
|
+
},
|
|
119
|
+
"detail": {
|
|
120
|
+
"description": "Description of the error",
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
"requestId": {
|
|
124
|
+
"description": "Unique request id. This one will be used to troubleshoot the problems",
|
|
125
|
+
"type": "string"
|
|
126
|
+
},
|
|
127
|
+
"name": {
|
|
128
|
+
"description": "Name of the error type",
|
|
129
|
+
"type": "string"
|
|
130
|
+
},
|
|
131
|
+
"validation": {
|
|
132
|
+
"description": "List of the validation errors",
|
|
133
|
+
"type": "array",
|
|
134
|
+
"items": {
|
|
135
|
+
"type": "object",
|
|
136
|
+
"properties": {
|
|
137
|
+
"fieldName": {
|
|
138
|
+
"type": "string"
|
|
139
|
+
},
|
|
140
|
+
"message": {
|
|
141
|
+
"type": "string"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"required": [
|
|
145
|
+
"fieldName",
|
|
146
|
+
"message"
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"validationContext": {
|
|
151
|
+
"type": "string"
|
|
152
|
+
},
|
|
153
|
+
"statusCode": {
|
|
154
|
+
"type": "number"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"required": [
|
|
158
|
+
"code",
|
|
159
|
+
"detail",
|
|
160
|
+
"requestId",
|
|
161
|
+
"name",
|
|
162
|
+
"statusCode"
|
|
163
|
+
]
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"4XX": {
|
|
169
|
+
"description": "Default Response",
|
|
170
|
+
"content": {
|
|
171
|
+
"application/json": {
|
|
172
|
+
"schema": {
|
|
173
|
+
"type": "object",
|
|
174
|
+
"properties": {
|
|
175
|
+
"code": {
|
|
176
|
+
"description": "Code used to categorize the error",
|
|
177
|
+
"type": "string"
|
|
178
|
+
},
|
|
179
|
+
"detail": {
|
|
180
|
+
"description": "Description of the error",
|
|
181
|
+
"type": "string"
|
|
182
|
+
},
|
|
183
|
+
"requestId": {
|
|
184
|
+
"description": "Unique request id. This one will be used to troubleshoot the problems",
|
|
185
|
+
"type": "string"
|
|
186
|
+
},
|
|
187
|
+
"name": {
|
|
188
|
+
"description": "Name of the error type",
|
|
189
|
+
"type": "string"
|
|
190
|
+
},
|
|
191
|
+
"validation": {
|
|
192
|
+
"description": "List of the validation errors",
|
|
193
|
+
"type": "array",
|
|
194
|
+
"items": {
|
|
195
|
+
"type": "object",
|
|
196
|
+
"properties": {
|
|
197
|
+
"fieldName": {
|
|
198
|
+
"type": "string"
|
|
199
|
+
},
|
|
200
|
+
"message": {
|
|
201
|
+
"type": "string"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"required": [
|
|
205
|
+
"fieldName",
|
|
206
|
+
"message"
|
|
207
|
+
]
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"validationContext": {
|
|
211
|
+
"type": "string"
|
|
212
|
+
},
|
|
213
|
+
"statusCode": {
|
|
214
|
+
"type": "number"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"required": [
|
|
218
|
+
"code",
|
|
219
|
+
"detail",
|
|
220
|
+
"requestId",
|
|
221
|
+
"name",
|
|
222
|
+
"statusCode"
|
|
223
|
+
]
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"/api/v1/profiles/": {
|
|
232
|
+
"get": {
|
|
233
|
+
"operationId": "indexProfiles",
|
|
234
|
+
"tags": [
|
|
235
|
+
"Profiles"
|
|
236
|
+
],
|
|
237
|
+
"parameters": [
|
|
238
|
+
{
|
|
239
|
+
"schema": {
|
|
240
|
+
"type": "string"
|
|
241
|
+
},
|
|
242
|
+
"in": "query",
|
|
243
|
+
"name": "search",
|
|
244
|
+
"required": false,
|
|
245
|
+
"description": "If set, the endpoint searches for users whom contain this value in either the public name or the email address"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"schema": {
|
|
249
|
+
"type": "string"
|
|
250
|
+
},
|
|
251
|
+
"in": "query",
|
|
252
|
+
"name": "firstName",
|
|
253
|
+
"required": false,
|
|
254
|
+
"description": "If set, the endpoint searches for users whom contain this value in either the imported first name"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"schema": {
|
|
258
|
+
"type": "string"
|
|
259
|
+
},
|
|
260
|
+
"in": "query",
|
|
261
|
+
"name": "lastName",
|
|
262
|
+
"required": false,
|
|
263
|
+
"description": "If set, the endpoint searches for users whom contain this value in either the imported last name"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"schema": {
|
|
267
|
+
"type": "string"
|
|
268
|
+
},
|
|
269
|
+
"in": "query",
|
|
270
|
+
"name": "email",
|
|
271
|
+
"required": false,
|
|
272
|
+
"description": "If set, the endpoint searches for users whom contain this value in either the imported email"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"schema": {
|
|
276
|
+
"pattern": "^[0-9][0-9]*|undefined$",
|
|
277
|
+
"default": "0",
|
|
278
|
+
"type": "string"
|
|
279
|
+
},
|
|
280
|
+
"in": "query",
|
|
281
|
+
"name": "offset",
|
|
282
|
+
"required": false,
|
|
283
|
+
"description": "Indicates where to start fetching data or how many records to skip, defining the initial position within the list"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"schema": {
|
|
287
|
+
"default": "20",
|
|
288
|
+
"pattern": "^([1-9]|100)|undefined$",
|
|
289
|
+
"type": "string"
|
|
290
|
+
},
|
|
291
|
+
"in": "query",
|
|
292
|
+
"name": "limit",
|
|
293
|
+
"required": false,
|
|
294
|
+
"description": "Indicates the maximum number (100) of items that will be returned in a single request"
|
|
295
|
+
}
|
|
296
|
+
],
|
|
297
|
+
"responses": {
|
|
298
|
+
"200": {
|
|
299
|
+
"description": "Default Response",
|
|
300
|
+
"content": {
|
|
301
|
+
"application/json": {
|
|
302
|
+
"schema": {
|
|
303
|
+
"type": "object",
|
|
304
|
+
"properties": {
|
|
305
|
+
"data": {
|
|
306
|
+
"type": "array",
|
|
307
|
+
"items": {
|
|
308
|
+
"type": "object",
|
|
309
|
+
"properties": {
|
|
310
|
+
"id": {
|
|
311
|
+
"type": "string"
|
|
312
|
+
},
|
|
313
|
+
"publicName": {
|
|
314
|
+
"type": "string"
|
|
315
|
+
},
|
|
316
|
+
"email": {
|
|
317
|
+
"format": "email",
|
|
318
|
+
"type": "string"
|
|
319
|
+
},
|
|
320
|
+
"primaryUserId": {
|
|
321
|
+
"type": "string"
|
|
322
|
+
},
|
|
323
|
+
"safeLevel": {
|
|
324
|
+
"type": "number"
|
|
325
|
+
},
|
|
326
|
+
"preferredLanguage": {
|
|
327
|
+
"type": "string",
|
|
328
|
+
"enum": [
|
|
329
|
+
"en",
|
|
330
|
+
"ga"
|
|
331
|
+
],
|
|
332
|
+
"default": "en"
|
|
333
|
+
},
|
|
334
|
+
"createdAt": {
|
|
335
|
+
"format": "date-time",
|
|
336
|
+
"type": "string"
|
|
337
|
+
},
|
|
338
|
+
"updatedAt": {
|
|
339
|
+
"format": "date-time",
|
|
340
|
+
"type": "string"
|
|
341
|
+
},
|
|
342
|
+
"details": {
|
|
343
|
+
"type": "object",
|
|
344
|
+
"properties": {
|
|
345
|
+
"email": {
|
|
346
|
+
"allOf": [
|
|
347
|
+
{
|
|
348
|
+
"minLength": 1,
|
|
349
|
+
"type": "string"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"format": "email",
|
|
353
|
+
"type": "string"
|
|
354
|
+
}
|
|
355
|
+
]
|
|
356
|
+
},
|
|
357
|
+
"firstName": {
|
|
358
|
+
"minLength": 1,
|
|
359
|
+
"type": "string"
|
|
360
|
+
},
|
|
361
|
+
"lastName": {
|
|
362
|
+
"minLength": 1,
|
|
363
|
+
"type": "string"
|
|
364
|
+
},
|
|
365
|
+
"city": {
|
|
366
|
+
"type": "string"
|
|
367
|
+
},
|
|
368
|
+
"address": {
|
|
369
|
+
"type": "string"
|
|
370
|
+
},
|
|
371
|
+
"phone": {
|
|
372
|
+
"type": "string"
|
|
373
|
+
},
|
|
374
|
+
"dateOfBirth": {
|
|
375
|
+
"format": "date",
|
|
376
|
+
"type": "string"
|
|
377
|
+
},
|
|
378
|
+
"ppsn": {
|
|
379
|
+
"type": "string"
|
|
380
|
+
},
|
|
381
|
+
"preferredLanguage": {
|
|
382
|
+
"type": "string",
|
|
383
|
+
"enum": [
|
|
384
|
+
"en",
|
|
385
|
+
"ga"
|
|
386
|
+
],
|
|
387
|
+
"default": "en"
|
|
388
|
+
},
|
|
389
|
+
"externalId": {
|
|
390
|
+
"type": "string"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"required": [
|
|
394
|
+
"email",
|
|
395
|
+
"firstName",
|
|
396
|
+
"lastName"
|
|
397
|
+
]
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
"required": [
|
|
401
|
+
"id",
|
|
402
|
+
"publicName",
|
|
403
|
+
"email",
|
|
404
|
+
"primaryUserId"
|
|
405
|
+
]
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"metadata": {
|
|
409
|
+
"type": "object",
|
|
410
|
+
"properties": {
|
|
411
|
+
"links": {
|
|
412
|
+
"description": "Object containing the links to the related endpoints",
|
|
413
|
+
"type": "object",
|
|
414
|
+
"properties": {
|
|
415
|
+
"self": {
|
|
416
|
+
"type": "object",
|
|
417
|
+
"properties": {
|
|
418
|
+
"href": {
|
|
419
|
+
"description": "URL pointing to the request itself",
|
|
420
|
+
"type": "string"
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"next": {
|
|
425
|
+
"type": "object",
|
|
426
|
+
"properties": {
|
|
427
|
+
"href": {
|
|
428
|
+
"description": "URL pointing to the next page of results in a paginated response. If there are no more results, this field may be omitted",
|
|
429
|
+
"type": "string"
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
"prev": {
|
|
434
|
+
"type": "object",
|
|
435
|
+
"properties": {
|
|
436
|
+
"href": {
|
|
437
|
+
"description": "URL pointing to the previous page of results in a paginated response. If there are no more results, this field may be omitted",
|
|
438
|
+
"type": "string"
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"first": {
|
|
443
|
+
"type": "object",
|
|
444
|
+
"properties": {
|
|
445
|
+
"href": {
|
|
446
|
+
"description": "URL pointing to the first page of results in a paginated response",
|
|
447
|
+
"type": "string"
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
"last": {
|
|
452
|
+
"type": "object",
|
|
453
|
+
"properties": {
|
|
454
|
+
"href": {
|
|
455
|
+
"description": "URL pointing to the first page of results in a paginated response",
|
|
456
|
+
"type": "string"
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
"pages": {
|
|
461
|
+
"description": "It may contain a list of other useful URLs, e.g. one entry for page:'page 1', 'page 2'",
|
|
462
|
+
"type": "object",
|
|
463
|
+
"additionalProperties": {
|
|
464
|
+
"type": "object",
|
|
465
|
+
"properties": {
|
|
466
|
+
"href": {
|
|
467
|
+
"type": "string"
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
"required": [
|
|
474
|
+
"self",
|
|
475
|
+
"first",
|
|
476
|
+
"last",
|
|
477
|
+
"pages"
|
|
478
|
+
]
|
|
479
|
+
},
|
|
480
|
+
"totalCount": {
|
|
481
|
+
"description": "Number representing the total number of available items",
|
|
482
|
+
"type": "number"
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
"required": [
|
|
488
|
+
"data"
|
|
88
489
|
]
|
|
89
490
|
}
|
|
90
491
|
}
|
|
91
492
|
}
|
|
92
493
|
},
|
|
93
|
-
"
|
|
494
|
+
"4XX": {
|
|
94
495
|
"description": "Default Response",
|
|
95
496
|
"content": {
|
|
96
497
|
"application/json": {
|
|
@@ -150,7 +551,7 @@
|
|
|
150
551
|
}
|
|
151
552
|
}
|
|
152
553
|
},
|
|
153
|
-
"
|
|
554
|
+
"5XX": {
|
|
154
555
|
"description": "Default Response",
|
|
155
556
|
"content": {
|
|
156
557
|
"application/json": {
|
|
@@ -211,51 +612,37 @@
|
|
|
211
612
|
}
|
|
212
613
|
}
|
|
213
614
|
}
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
"get": {
|
|
218
|
-
"operationId": "indexProfiles",
|
|
615
|
+
},
|
|
616
|
+
"post": {
|
|
617
|
+
"operationId": "searchPostProfiles",
|
|
219
618
|
"tags": [
|
|
220
619
|
"Profiles"
|
|
221
620
|
],
|
|
222
|
-
"
|
|
223
|
-
{
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
"type": "string"
|
|
244
|
-
},
|
|
245
|
-
"in": "query",
|
|
246
|
-
"name": "lastName",
|
|
247
|
-
"required": false,
|
|
248
|
-
"description": "If set, the endpoint searches for users whom contain this value in either the imported last name"
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"schema": {
|
|
252
|
-
"type": "string"
|
|
253
|
-
},
|
|
254
|
-
"in": "query",
|
|
255
|
-
"name": "email",
|
|
256
|
-
"required": false,
|
|
257
|
-
"description": "If set, the endpoint searches for users whom contain this value in either the imported email"
|
|
621
|
+
"requestBody": {
|
|
622
|
+
"content": {
|
|
623
|
+
"application/json": {
|
|
624
|
+
"schema": {
|
|
625
|
+
"type": "object",
|
|
626
|
+
"properties": {
|
|
627
|
+
"ppsns": {
|
|
628
|
+
"type": "array",
|
|
629
|
+
"items": {
|
|
630
|
+
"type": "string"
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
"organizationId": {
|
|
634
|
+
"type": "string"
|
|
635
|
+
}
|
|
636
|
+
},
|
|
637
|
+
"required": [
|
|
638
|
+
"ppsns"
|
|
639
|
+
]
|
|
640
|
+
}
|
|
641
|
+
}
|
|
258
642
|
},
|
|
643
|
+
"required": true
|
|
644
|
+
},
|
|
645
|
+
"parameters": [
|
|
259
646
|
{
|
|
260
647
|
"schema": {
|
|
261
648
|
"pattern": "^[0-9][0-9]*|undefined$",
|
|
@@ -323,6 +710,63 @@
|
|
|
323
710
|
"updatedAt": {
|
|
324
711
|
"format": "date-time",
|
|
325
712
|
"type": "string"
|
|
713
|
+
},
|
|
714
|
+
"details": {
|
|
715
|
+
"type": "object",
|
|
716
|
+
"properties": {
|
|
717
|
+
"email": {
|
|
718
|
+
"allOf": [
|
|
719
|
+
{
|
|
720
|
+
"minLength": 1,
|
|
721
|
+
"type": "string"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"format": "email",
|
|
725
|
+
"type": "string"
|
|
726
|
+
}
|
|
727
|
+
]
|
|
728
|
+
},
|
|
729
|
+
"firstName": {
|
|
730
|
+
"minLength": 1,
|
|
731
|
+
"type": "string"
|
|
732
|
+
},
|
|
733
|
+
"lastName": {
|
|
734
|
+
"minLength": 1,
|
|
735
|
+
"type": "string"
|
|
736
|
+
},
|
|
737
|
+
"city": {
|
|
738
|
+
"type": "string"
|
|
739
|
+
},
|
|
740
|
+
"address": {
|
|
741
|
+
"type": "string"
|
|
742
|
+
},
|
|
743
|
+
"phone": {
|
|
744
|
+
"type": "string"
|
|
745
|
+
},
|
|
746
|
+
"dateOfBirth": {
|
|
747
|
+
"format": "date",
|
|
748
|
+
"type": "string"
|
|
749
|
+
},
|
|
750
|
+
"ppsn": {
|
|
751
|
+
"type": "string"
|
|
752
|
+
},
|
|
753
|
+
"preferredLanguage": {
|
|
754
|
+
"type": "string",
|
|
755
|
+
"enum": [
|
|
756
|
+
"en",
|
|
757
|
+
"ga"
|
|
758
|
+
],
|
|
759
|
+
"default": "en"
|
|
760
|
+
},
|
|
761
|
+
"externalId": {
|
|
762
|
+
"type": "string"
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
"required": [
|
|
766
|
+
"email",
|
|
767
|
+
"firstName",
|
|
768
|
+
"lastName"
|
|
769
|
+
]
|
|
326
770
|
}
|
|
327
771
|
},
|
|
328
772
|
"required": [
|
|
@@ -603,6 +1047,9 @@
|
|
|
603
1047
|
"ga"
|
|
604
1048
|
],
|
|
605
1049
|
"default": "en"
|
|
1050
|
+
},
|
|
1051
|
+
"externalId": {
|
|
1052
|
+
"type": "string"
|
|
606
1053
|
}
|
|
607
1054
|
},
|
|
608
1055
|
"required": [
|
|
@@ -612,6 +1059,24 @@
|
|
|
612
1059
|
]
|
|
613
1060
|
}
|
|
614
1061
|
},
|
|
1062
|
+
"ppsnOnlyProfiles": {
|
|
1063
|
+
"minItems": 1,
|
|
1064
|
+
"type": "array",
|
|
1065
|
+
"items": {
|
|
1066
|
+
"type": "object",
|
|
1067
|
+
"properties": {
|
|
1068
|
+
"ppsn": {
|
|
1069
|
+
"type": "string"
|
|
1070
|
+
},
|
|
1071
|
+
"externalId": {
|
|
1072
|
+
"type": "string"
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
"required": [
|
|
1076
|
+
"ppsn"
|
|
1077
|
+
]
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
615
1080
|
"file": {}
|
|
616
1081
|
}
|
|
617
1082
|
}
|
|
@@ -669,6 +1134,9 @@
|
|
|
669
1134
|
"ga"
|
|
670
1135
|
],
|
|
671
1136
|
"default": "en"
|
|
1137
|
+
},
|
|
1138
|
+
"externalId": {
|
|
1139
|
+
"type": "string"
|
|
672
1140
|
}
|
|
673
1141
|
},
|
|
674
1142
|
"required": [
|
|
@@ -678,6 +1146,24 @@
|
|
|
678
1146
|
]
|
|
679
1147
|
}
|
|
680
1148
|
},
|
|
1149
|
+
"ppsnOnlyProfiles": {
|
|
1150
|
+
"minItems": 1,
|
|
1151
|
+
"type": "array",
|
|
1152
|
+
"items": {
|
|
1153
|
+
"type": "object",
|
|
1154
|
+
"properties": {
|
|
1155
|
+
"ppsn": {
|
|
1156
|
+
"type": "string"
|
|
1157
|
+
},
|
|
1158
|
+
"externalId": {
|
|
1159
|
+
"type": "string"
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
1162
|
+
"required": [
|
|
1163
|
+
"ppsn"
|
|
1164
|
+
]
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
681
1167
|
"file": {}
|
|
682
1168
|
}
|
|
683
1169
|
}
|
|
@@ -735,6 +1221,9 @@
|
|
|
735
1221
|
"ga"
|
|
736
1222
|
],
|
|
737
1223
|
"default": "en"
|
|
1224
|
+
},
|
|
1225
|
+
"externalId": {
|
|
1226
|
+
"type": "string"
|
|
738
1227
|
}
|
|
739
1228
|
},
|
|
740
1229
|
"required": [
|
|
@@ -744,6 +1233,24 @@
|
|
|
744
1233
|
]
|
|
745
1234
|
}
|
|
746
1235
|
},
|
|
1236
|
+
"ppsnOnlyProfiles": {
|
|
1237
|
+
"minItems": 1,
|
|
1238
|
+
"type": "array",
|
|
1239
|
+
"items": {
|
|
1240
|
+
"type": "object",
|
|
1241
|
+
"properties": {
|
|
1242
|
+
"ppsn": {
|
|
1243
|
+
"type": "string"
|
|
1244
|
+
},
|
|
1245
|
+
"externalId": {
|
|
1246
|
+
"type": "string"
|
|
1247
|
+
}
|
|
1248
|
+
},
|
|
1249
|
+
"required": [
|
|
1250
|
+
"ppsn"
|
|
1251
|
+
]
|
|
1252
|
+
}
|
|
1253
|
+
},
|
|
747
1254
|
"file": {}
|
|
748
1255
|
}
|
|
749
1256
|
}
|
|
@@ -765,6 +1272,33 @@
|
|
|
765
1272
|
"in": "query",
|
|
766
1273
|
"name": "privateDetails",
|
|
767
1274
|
"required": false
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"schema": {
|
|
1278
|
+
"type": "string",
|
|
1279
|
+
"enum": [
|
|
1280
|
+
"true",
|
|
1281
|
+
"false",
|
|
1282
|
+
"0",
|
|
1283
|
+
"1"
|
|
1284
|
+
],
|
|
1285
|
+
"default": "false"
|
|
1286
|
+
},
|
|
1287
|
+
"in": "query",
|
|
1288
|
+
"name": "onlyPrivateDetails",
|
|
1289
|
+
"required": false
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
"schema": {
|
|
1293
|
+
"type": "string",
|
|
1294
|
+
"enum": [
|
|
1295
|
+
"ppsn-only",
|
|
1296
|
+
"full"
|
|
1297
|
+
]
|
|
1298
|
+
},
|
|
1299
|
+
"in": "query",
|
|
1300
|
+
"name": "importType",
|
|
1301
|
+
"required": false
|
|
768
1302
|
}
|
|
769
1303
|
],
|
|
770
1304
|
"responses": {
|
|
@@ -1022,6 +1556,9 @@
|
|
|
1022
1556
|
"ga"
|
|
1023
1557
|
],
|
|
1024
1558
|
"default": "en"
|
|
1559
|
+
},
|
|
1560
|
+
"externalId": {
|
|
1561
|
+
"type": "string"
|
|
1025
1562
|
}
|
|
1026
1563
|
},
|
|
1027
1564
|
"required": [
|
|
@@ -1382,6 +1919,9 @@
|
|
|
1382
1919
|
"ga"
|
|
1383
1920
|
],
|
|
1384
1921
|
"default": "en"
|
|
1922
|
+
},
|
|
1923
|
+
"externalId": {
|
|
1924
|
+
"type": "string"
|
|
1385
1925
|
}
|
|
1386
1926
|
},
|
|
1387
1927
|
"required": [
|
|
@@ -2059,6 +2599,9 @@
|
|
|
2059
2599
|
],
|
|
2060
2600
|
"default": "en"
|
|
2061
2601
|
},
|
|
2602
|
+
"externalId": {
|
|
2603
|
+
"type": "string"
|
|
2604
|
+
},
|
|
2062
2605
|
"status": {
|
|
2063
2606
|
"type": "string"
|
|
2064
2607
|
}
|
|
@@ -2417,6 +2960,9 @@
|
|
|
2417
2960
|
"ga"
|
|
2418
2961
|
],
|
|
2419
2962
|
"default": "en"
|
|
2963
|
+
},
|
|
2964
|
+
"externalId": {
|
|
2965
|
+
"type": "string"
|
|
2420
2966
|
}
|
|
2421
2967
|
},
|
|
2422
2968
|
"required": [
|
|
@@ -2829,6 +3375,9 @@
|
|
|
2829
3375
|
"ga"
|
|
2830
3376
|
],
|
|
2831
3377
|
"default": "en"
|
|
3378
|
+
},
|
|
3379
|
+
"externalId": {
|
|
3380
|
+
"type": "string"
|
|
2832
3381
|
}
|
|
2833
3382
|
},
|
|
2834
3383
|
"required": [
|
|
@@ -3215,6 +3764,9 @@
|
|
|
3215
3764
|
"ga"
|
|
3216
3765
|
],
|
|
3217
3766
|
"default": "en"
|
|
3767
|
+
},
|
|
3768
|
+
"externalId": {
|
|
3769
|
+
"type": "string"
|
|
3218
3770
|
}
|
|
3219
3771
|
},
|
|
3220
3772
|
"required": [
|
|
@@ -3642,6 +4194,9 @@
|
|
|
3642
4194
|
},
|
|
3643
4195
|
"insertPrivateDetails": {
|
|
3644
4196
|
"type": "boolean"
|
|
4197
|
+
},
|
|
4198
|
+
"onlyPrivateDetails": {
|
|
4199
|
+
"type": "boolean"
|
|
3645
4200
|
}
|
|
3646
4201
|
}
|
|
3647
4202
|
},
|