@ogcio/building-blocks-sdk 0.2.27 → 0.2.29
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 +14 -0
- package/dist/client/clients/profile/index.d.ts +188 -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 +195 -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 +616 -45
- package/src/client/clients/profile/schema.ts +195 -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,416 @@
|
|
|
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
|
+
"type": "string",
|
|
277
|
+
"enum": [
|
|
278
|
+
"true",
|
|
279
|
+
"false",
|
|
280
|
+
"0",
|
|
281
|
+
"1"
|
|
282
|
+
],
|
|
283
|
+
"default": "false"
|
|
284
|
+
},
|
|
285
|
+
"in": "query",
|
|
286
|
+
"name": "privateDetails",
|
|
287
|
+
"required": false,
|
|
288
|
+
"description": "If true and super admin permissions are available, it returns users with private details."
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"schema": {
|
|
292
|
+
"pattern": "^[0-9][0-9]*|undefined$",
|
|
293
|
+
"default": "0",
|
|
294
|
+
"type": "string"
|
|
295
|
+
},
|
|
296
|
+
"in": "query",
|
|
297
|
+
"name": "offset",
|
|
298
|
+
"required": false,
|
|
299
|
+
"description": "Indicates where to start fetching data or how many records to skip, defining the initial position within the list"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"schema": {
|
|
303
|
+
"default": "20",
|
|
304
|
+
"pattern": "^([1-9]|100)|undefined$",
|
|
305
|
+
"type": "string"
|
|
306
|
+
},
|
|
307
|
+
"in": "query",
|
|
308
|
+
"name": "limit",
|
|
309
|
+
"required": false,
|
|
310
|
+
"description": "Indicates the maximum number (100) of items that will be returned in a single request"
|
|
311
|
+
}
|
|
312
|
+
],
|
|
313
|
+
"responses": {
|
|
314
|
+
"200": {
|
|
315
|
+
"description": "Default Response",
|
|
316
|
+
"content": {
|
|
317
|
+
"application/json": {
|
|
318
|
+
"schema": {
|
|
319
|
+
"type": "object",
|
|
320
|
+
"properties": {
|
|
321
|
+
"data": {
|
|
322
|
+
"type": "array",
|
|
323
|
+
"items": {
|
|
324
|
+
"type": "object",
|
|
325
|
+
"properties": {
|
|
326
|
+
"id": {
|
|
327
|
+
"type": "string"
|
|
328
|
+
},
|
|
329
|
+
"publicName": {
|
|
330
|
+
"type": "string"
|
|
331
|
+
},
|
|
332
|
+
"email": {
|
|
333
|
+
"format": "email",
|
|
334
|
+
"type": "string"
|
|
335
|
+
},
|
|
336
|
+
"primaryUserId": {
|
|
337
|
+
"type": "string"
|
|
338
|
+
},
|
|
339
|
+
"safeLevel": {
|
|
340
|
+
"type": "number"
|
|
341
|
+
},
|
|
342
|
+
"preferredLanguage": {
|
|
343
|
+
"type": "string",
|
|
344
|
+
"enum": [
|
|
345
|
+
"en",
|
|
346
|
+
"ga"
|
|
347
|
+
],
|
|
348
|
+
"default": "en"
|
|
349
|
+
},
|
|
350
|
+
"createdAt": {
|
|
351
|
+
"format": "date-time",
|
|
352
|
+
"type": "string"
|
|
353
|
+
},
|
|
354
|
+
"updatedAt": {
|
|
355
|
+
"format": "date-time",
|
|
356
|
+
"type": "string"
|
|
357
|
+
},
|
|
358
|
+
"details": {
|
|
359
|
+
"type": "object",
|
|
360
|
+
"properties": {
|
|
361
|
+
"email": {
|
|
362
|
+
"allOf": [
|
|
363
|
+
{
|
|
364
|
+
"minLength": 1,
|
|
365
|
+
"type": "string"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"format": "email",
|
|
369
|
+
"type": "string"
|
|
370
|
+
}
|
|
371
|
+
]
|
|
372
|
+
},
|
|
373
|
+
"firstName": {
|
|
374
|
+
"minLength": 1,
|
|
375
|
+
"type": "string"
|
|
376
|
+
},
|
|
377
|
+
"lastName": {
|
|
378
|
+
"minLength": 1,
|
|
379
|
+
"type": "string"
|
|
380
|
+
},
|
|
381
|
+
"city": {
|
|
382
|
+
"type": "string"
|
|
383
|
+
},
|
|
384
|
+
"address": {
|
|
385
|
+
"type": "string"
|
|
386
|
+
},
|
|
387
|
+
"phone": {
|
|
388
|
+
"type": "string"
|
|
389
|
+
},
|
|
390
|
+
"dateOfBirth": {
|
|
391
|
+
"format": "date",
|
|
392
|
+
"type": "string"
|
|
393
|
+
},
|
|
394
|
+
"ppsn": {
|
|
395
|
+
"type": "string"
|
|
396
|
+
},
|
|
397
|
+
"preferredLanguage": {
|
|
398
|
+
"type": "string",
|
|
399
|
+
"enum": [
|
|
400
|
+
"en",
|
|
401
|
+
"ga"
|
|
402
|
+
],
|
|
403
|
+
"default": "en"
|
|
404
|
+
},
|
|
405
|
+
"externalId": {
|
|
406
|
+
"type": "string"
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"required": [
|
|
410
|
+
"email",
|
|
411
|
+
"firstName",
|
|
412
|
+
"lastName"
|
|
413
|
+
]
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
"required": [
|
|
417
|
+
"id",
|
|
418
|
+
"publicName",
|
|
419
|
+
"email",
|
|
420
|
+
"primaryUserId"
|
|
421
|
+
]
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"metadata": {
|
|
425
|
+
"type": "object",
|
|
426
|
+
"properties": {
|
|
427
|
+
"links": {
|
|
428
|
+
"description": "Object containing the links to the related endpoints",
|
|
429
|
+
"type": "object",
|
|
430
|
+
"properties": {
|
|
431
|
+
"self": {
|
|
432
|
+
"type": "object",
|
|
433
|
+
"properties": {
|
|
434
|
+
"href": {
|
|
435
|
+
"description": "URL pointing to the request itself",
|
|
436
|
+
"type": "string"
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
"next": {
|
|
441
|
+
"type": "object",
|
|
442
|
+
"properties": {
|
|
443
|
+
"href": {
|
|
444
|
+
"description": "URL pointing to the next page of results in a paginated response. If there are no more results, this field may be omitted",
|
|
445
|
+
"type": "string"
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
"prev": {
|
|
450
|
+
"type": "object",
|
|
451
|
+
"properties": {
|
|
452
|
+
"href": {
|
|
453
|
+
"description": "URL pointing to the previous page of results in a paginated response. If there are no more results, this field may be omitted",
|
|
454
|
+
"type": "string"
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
},
|
|
458
|
+
"first": {
|
|
459
|
+
"type": "object",
|
|
460
|
+
"properties": {
|
|
461
|
+
"href": {
|
|
462
|
+
"description": "URL pointing to the first page of results in a paginated response",
|
|
463
|
+
"type": "string"
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
"last": {
|
|
468
|
+
"type": "object",
|
|
469
|
+
"properties": {
|
|
470
|
+
"href": {
|
|
471
|
+
"description": "URL pointing to the first page of results in a paginated response",
|
|
472
|
+
"type": "string"
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"pages": {
|
|
477
|
+
"description": "It may contain a list of other useful URLs, e.g. one entry for page:'page 1', 'page 2'",
|
|
478
|
+
"type": "object",
|
|
479
|
+
"additionalProperties": {
|
|
480
|
+
"type": "object",
|
|
481
|
+
"properties": {
|
|
482
|
+
"href": {
|
|
483
|
+
"type": "string"
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
"required": [
|
|
490
|
+
"self",
|
|
491
|
+
"first",
|
|
492
|
+
"last",
|
|
493
|
+
"pages"
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
"totalCount": {
|
|
497
|
+
"description": "Number representing the total number of available items",
|
|
498
|
+
"type": "number"
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
},
|
|
503
|
+
"required": [
|
|
504
|
+
"data"
|
|
88
505
|
]
|
|
89
506
|
}
|
|
90
507
|
}
|
|
91
508
|
}
|
|
92
509
|
},
|
|
93
|
-
"
|
|
510
|
+
"4XX": {
|
|
94
511
|
"description": "Default Response",
|
|
95
512
|
"content": {
|
|
96
513
|
"application/json": {
|
|
@@ -150,7 +567,7 @@
|
|
|
150
567
|
}
|
|
151
568
|
}
|
|
152
569
|
},
|
|
153
|
-
"
|
|
570
|
+
"5XX": {
|
|
154
571
|
"description": "Default Response",
|
|
155
572
|
"content": {
|
|
156
573
|
"application/json": {
|
|
@@ -211,51 +628,37 @@
|
|
|
211
628
|
}
|
|
212
629
|
}
|
|
213
630
|
}
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
"get": {
|
|
218
|
-
"operationId": "indexProfiles",
|
|
631
|
+
},
|
|
632
|
+
"post": {
|
|
633
|
+
"operationId": "searchPostProfiles",
|
|
219
634
|
"tags": [
|
|
220
635
|
"Profiles"
|
|
221
636
|
],
|
|
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"
|
|
637
|
+
"requestBody": {
|
|
638
|
+
"content": {
|
|
639
|
+
"application/json": {
|
|
640
|
+
"schema": {
|
|
641
|
+
"type": "object",
|
|
642
|
+
"properties": {
|
|
643
|
+
"ppsns": {
|
|
644
|
+
"type": "array",
|
|
645
|
+
"items": {
|
|
646
|
+
"type": "string"
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
"organizationId": {
|
|
650
|
+
"type": "string"
|
|
651
|
+
}
|
|
652
|
+
},
|
|
653
|
+
"required": [
|
|
654
|
+
"ppsns"
|
|
655
|
+
]
|
|
656
|
+
}
|
|
657
|
+
}
|
|
258
658
|
},
|
|
659
|
+
"required": true
|
|
660
|
+
},
|
|
661
|
+
"parameters": [
|
|
259
662
|
{
|
|
260
663
|
"schema": {
|
|
261
664
|
"pattern": "^[0-9][0-9]*|undefined$",
|
|
@@ -323,6 +726,63 @@
|
|
|
323
726
|
"updatedAt": {
|
|
324
727
|
"format": "date-time",
|
|
325
728
|
"type": "string"
|
|
729
|
+
},
|
|
730
|
+
"details": {
|
|
731
|
+
"type": "object",
|
|
732
|
+
"properties": {
|
|
733
|
+
"email": {
|
|
734
|
+
"allOf": [
|
|
735
|
+
{
|
|
736
|
+
"minLength": 1,
|
|
737
|
+
"type": "string"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"format": "email",
|
|
741
|
+
"type": "string"
|
|
742
|
+
}
|
|
743
|
+
]
|
|
744
|
+
},
|
|
745
|
+
"firstName": {
|
|
746
|
+
"minLength": 1,
|
|
747
|
+
"type": "string"
|
|
748
|
+
},
|
|
749
|
+
"lastName": {
|
|
750
|
+
"minLength": 1,
|
|
751
|
+
"type": "string"
|
|
752
|
+
},
|
|
753
|
+
"city": {
|
|
754
|
+
"type": "string"
|
|
755
|
+
},
|
|
756
|
+
"address": {
|
|
757
|
+
"type": "string"
|
|
758
|
+
},
|
|
759
|
+
"phone": {
|
|
760
|
+
"type": "string"
|
|
761
|
+
},
|
|
762
|
+
"dateOfBirth": {
|
|
763
|
+
"format": "date",
|
|
764
|
+
"type": "string"
|
|
765
|
+
},
|
|
766
|
+
"ppsn": {
|
|
767
|
+
"type": "string"
|
|
768
|
+
},
|
|
769
|
+
"preferredLanguage": {
|
|
770
|
+
"type": "string",
|
|
771
|
+
"enum": [
|
|
772
|
+
"en",
|
|
773
|
+
"ga"
|
|
774
|
+
],
|
|
775
|
+
"default": "en"
|
|
776
|
+
},
|
|
777
|
+
"externalId": {
|
|
778
|
+
"type": "string"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
"required": [
|
|
782
|
+
"email",
|
|
783
|
+
"firstName",
|
|
784
|
+
"lastName"
|
|
785
|
+
]
|
|
326
786
|
}
|
|
327
787
|
},
|
|
328
788
|
"required": [
|
|
@@ -603,6 +1063,9 @@
|
|
|
603
1063
|
"ga"
|
|
604
1064
|
],
|
|
605
1065
|
"default": "en"
|
|
1066
|
+
},
|
|
1067
|
+
"externalId": {
|
|
1068
|
+
"type": "string"
|
|
606
1069
|
}
|
|
607
1070
|
},
|
|
608
1071
|
"required": [
|
|
@@ -612,6 +1075,24 @@
|
|
|
612
1075
|
]
|
|
613
1076
|
}
|
|
614
1077
|
},
|
|
1078
|
+
"ppsnOnlyProfiles": {
|
|
1079
|
+
"minItems": 1,
|
|
1080
|
+
"type": "array",
|
|
1081
|
+
"items": {
|
|
1082
|
+
"type": "object",
|
|
1083
|
+
"properties": {
|
|
1084
|
+
"ppsn": {
|
|
1085
|
+
"type": "string"
|
|
1086
|
+
},
|
|
1087
|
+
"externalId": {
|
|
1088
|
+
"type": "string"
|
|
1089
|
+
}
|
|
1090
|
+
},
|
|
1091
|
+
"required": [
|
|
1092
|
+
"ppsn"
|
|
1093
|
+
]
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
615
1096
|
"file": {}
|
|
616
1097
|
}
|
|
617
1098
|
}
|
|
@@ -669,6 +1150,9 @@
|
|
|
669
1150
|
"ga"
|
|
670
1151
|
],
|
|
671
1152
|
"default": "en"
|
|
1153
|
+
},
|
|
1154
|
+
"externalId": {
|
|
1155
|
+
"type": "string"
|
|
672
1156
|
}
|
|
673
1157
|
},
|
|
674
1158
|
"required": [
|
|
@@ -678,6 +1162,24 @@
|
|
|
678
1162
|
]
|
|
679
1163
|
}
|
|
680
1164
|
},
|
|
1165
|
+
"ppsnOnlyProfiles": {
|
|
1166
|
+
"minItems": 1,
|
|
1167
|
+
"type": "array",
|
|
1168
|
+
"items": {
|
|
1169
|
+
"type": "object",
|
|
1170
|
+
"properties": {
|
|
1171
|
+
"ppsn": {
|
|
1172
|
+
"type": "string"
|
|
1173
|
+
},
|
|
1174
|
+
"externalId": {
|
|
1175
|
+
"type": "string"
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
"required": [
|
|
1179
|
+
"ppsn"
|
|
1180
|
+
]
|
|
1181
|
+
}
|
|
1182
|
+
},
|
|
681
1183
|
"file": {}
|
|
682
1184
|
}
|
|
683
1185
|
}
|
|
@@ -735,6 +1237,9 @@
|
|
|
735
1237
|
"ga"
|
|
736
1238
|
],
|
|
737
1239
|
"default": "en"
|
|
1240
|
+
},
|
|
1241
|
+
"externalId": {
|
|
1242
|
+
"type": "string"
|
|
738
1243
|
}
|
|
739
1244
|
},
|
|
740
1245
|
"required": [
|
|
@@ -744,6 +1249,24 @@
|
|
|
744
1249
|
]
|
|
745
1250
|
}
|
|
746
1251
|
},
|
|
1252
|
+
"ppsnOnlyProfiles": {
|
|
1253
|
+
"minItems": 1,
|
|
1254
|
+
"type": "array",
|
|
1255
|
+
"items": {
|
|
1256
|
+
"type": "object",
|
|
1257
|
+
"properties": {
|
|
1258
|
+
"ppsn": {
|
|
1259
|
+
"type": "string"
|
|
1260
|
+
},
|
|
1261
|
+
"externalId": {
|
|
1262
|
+
"type": "string"
|
|
1263
|
+
}
|
|
1264
|
+
},
|
|
1265
|
+
"required": [
|
|
1266
|
+
"ppsn"
|
|
1267
|
+
]
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
747
1270
|
"file": {}
|
|
748
1271
|
}
|
|
749
1272
|
}
|
|
@@ -765,6 +1288,33 @@
|
|
|
765
1288
|
"in": "query",
|
|
766
1289
|
"name": "privateDetails",
|
|
767
1290
|
"required": false
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"schema": {
|
|
1294
|
+
"type": "string",
|
|
1295
|
+
"enum": [
|
|
1296
|
+
"true",
|
|
1297
|
+
"false",
|
|
1298
|
+
"0",
|
|
1299
|
+
"1"
|
|
1300
|
+
],
|
|
1301
|
+
"default": "false"
|
|
1302
|
+
},
|
|
1303
|
+
"in": "query",
|
|
1304
|
+
"name": "onlyPrivateDetails",
|
|
1305
|
+
"required": false
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"schema": {
|
|
1309
|
+
"type": "string",
|
|
1310
|
+
"enum": [
|
|
1311
|
+
"ppsn-only",
|
|
1312
|
+
"full"
|
|
1313
|
+
]
|
|
1314
|
+
},
|
|
1315
|
+
"in": "query",
|
|
1316
|
+
"name": "importType",
|
|
1317
|
+
"required": false
|
|
768
1318
|
}
|
|
769
1319
|
],
|
|
770
1320
|
"responses": {
|
|
@@ -1022,6 +1572,9 @@
|
|
|
1022
1572
|
"ga"
|
|
1023
1573
|
],
|
|
1024
1574
|
"default": "en"
|
|
1575
|
+
},
|
|
1576
|
+
"externalId": {
|
|
1577
|
+
"type": "string"
|
|
1025
1578
|
}
|
|
1026
1579
|
},
|
|
1027
1580
|
"required": [
|
|
@@ -1382,6 +1935,9 @@
|
|
|
1382
1935
|
"ga"
|
|
1383
1936
|
],
|
|
1384
1937
|
"default": "en"
|
|
1938
|
+
},
|
|
1939
|
+
"externalId": {
|
|
1940
|
+
"type": "string"
|
|
1385
1941
|
}
|
|
1386
1942
|
},
|
|
1387
1943
|
"required": [
|
|
@@ -2059,6 +2615,9 @@
|
|
|
2059
2615
|
],
|
|
2060
2616
|
"default": "en"
|
|
2061
2617
|
},
|
|
2618
|
+
"externalId": {
|
|
2619
|
+
"type": "string"
|
|
2620
|
+
},
|
|
2062
2621
|
"status": {
|
|
2063
2622
|
"type": "string"
|
|
2064
2623
|
}
|
|
@@ -2417,6 +2976,9 @@
|
|
|
2417
2976
|
"ga"
|
|
2418
2977
|
],
|
|
2419
2978
|
"default": "en"
|
|
2979
|
+
},
|
|
2980
|
+
"externalId": {
|
|
2981
|
+
"type": "string"
|
|
2420
2982
|
}
|
|
2421
2983
|
},
|
|
2422
2984
|
"required": [
|
|
@@ -2829,6 +3391,9 @@
|
|
|
2829
3391
|
"ga"
|
|
2830
3392
|
],
|
|
2831
3393
|
"default": "en"
|
|
3394
|
+
},
|
|
3395
|
+
"externalId": {
|
|
3396
|
+
"type": "string"
|
|
2832
3397
|
}
|
|
2833
3398
|
},
|
|
2834
3399
|
"required": [
|
|
@@ -3215,6 +3780,9 @@
|
|
|
3215
3780
|
"ga"
|
|
3216
3781
|
],
|
|
3217
3782
|
"default": "en"
|
|
3783
|
+
},
|
|
3784
|
+
"externalId": {
|
|
3785
|
+
"type": "string"
|
|
3218
3786
|
}
|
|
3219
3787
|
},
|
|
3220
3788
|
"required": [
|
|
@@ -3642,6 +4210,9 @@
|
|
|
3642
4210
|
},
|
|
3643
4211
|
"insertPrivateDetails": {
|
|
3644
4212
|
"type": "boolean"
|
|
4213
|
+
},
|
|
4214
|
+
"onlyPrivateDetails": {
|
|
4215
|
+
"type": "boolean"
|
|
3645
4216
|
}
|
|
3646
4217
|
}
|
|
3647
4218
|
},
|