@ogcio/building-blocks-sdk 0.2.73 → 0.2.75
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/.azure/pipeline.yaml +26 -0
- package/.gitleaksignore +19 -34
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/client/clients/payments/index.d.ts +13 -0
- package/dist/client/clients/payments/index.d.ts.map +1 -1
- package/dist/client/clients/payments/schema.d.ts +23 -19
- package/dist/client/clients/payments/schema.d.ts.map +1 -1
- package/dist/client/clients/profile/citizen.d.ts.map +1 -1
- package/dist/client/clients/profile/index.d.ts +107 -6
- package/dist/client/clients/profile/index.d.ts.map +1 -1
- package/dist/client/clients/profile/index.js +7 -1
- package/dist/client/clients/profile/index.js.map +1 -1
- package/dist/client/clients/profile/organisation.d.ts.map +1 -1
- package/dist/client/clients/profile/schema.d.ts +269 -10
- package/dist/client/clients/profile/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/client/clients/audit/open-api-definition.json +2 -2
- package/src/client/clients/payments/open-api-definition.json +179 -48
- package/src/client/clients/payments/schema.ts +23 -19
- package/src/client/clients/profile/index.ts +10 -1
- package/src/client/clients/profile/open-api-definition.json +758 -41
- package/src/client/clients/profile/schema.ts +272 -14
|
@@ -5256,6 +5256,277 @@
|
|
|
5256
5256
|
}
|
|
5257
5257
|
}
|
|
5258
5258
|
},
|
|
5259
|
+
"/api/v1/organisations/profiles/{profileId}": {
|
|
5260
|
+
"patch": {
|
|
5261
|
+
"operationId": "adminProfilesPatch",
|
|
5262
|
+
"tags": [
|
|
5263
|
+
"AdminProfiles"
|
|
5264
|
+
],
|
|
5265
|
+
"requestBody": {
|
|
5266
|
+
"content": {
|
|
5267
|
+
"application/json": {
|
|
5268
|
+
"schema": {
|
|
5269
|
+
"additionalProperties": false,
|
|
5270
|
+
"type": "object",
|
|
5271
|
+
"properties": {
|
|
5272
|
+
"primaryUserId": {
|
|
5273
|
+
"anyOf": [
|
|
5274
|
+
{
|
|
5275
|
+
"type": "string"
|
|
5276
|
+
},
|
|
5277
|
+
{
|
|
5278
|
+
"type": "null"
|
|
5279
|
+
}
|
|
5280
|
+
]
|
|
5281
|
+
}
|
|
5282
|
+
},
|
|
5283
|
+
"required": [
|
|
5284
|
+
"primaryUserId"
|
|
5285
|
+
]
|
|
5286
|
+
}
|
|
5287
|
+
}
|
|
5288
|
+
},
|
|
5289
|
+
"required": true
|
|
5290
|
+
},
|
|
5291
|
+
"parameters": [
|
|
5292
|
+
{
|
|
5293
|
+
"schema": {
|
|
5294
|
+
"type": "string"
|
|
5295
|
+
},
|
|
5296
|
+
"in": "path",
|
|
5297
|
+
"name": "profileId",
|
|
5298
|
+
"required": true,
|
|
5299
|
+
"description": "ID of the profile to update"
|
|
5300
|
+
}
|
|
5301
|
+
],
|
|
5302
|
+
"responses": {
|
|
5303
|
+
"200": {
|
|
5304
|
+
"description": "Default Response",
|
|
5305
|
+
"content": {
|
|
5306
|
+
"application/json": {
|
|
5307
|
+
"schema": {
|
|
5308
|
+
"type": "object",
|
|
5309
|
+
"properties": {
|
|
5310
|
+
"data": {
|
|
5311
|
+
"type": "object",
|
|
5312
|
+
"properties": {
|
|
5313
|
+
"primaryUserId": {
|
|
5314
|
+
"type": "string"
|
|
5315
|
+
}
|
|
5316
|
+
},
|
|
5317
|
+
"required": [
|
|
5318
|
+
"primaryUserId"
|
|
5319
|
+
]
|
|
5320
|
+
},
|
|
5321
|
+
"metadata": {
|
|
5322
|
+
"type": "object",
|
|
5323
|
+
"properties": {
|
|
5324
|
+
"links": {
|
|
5325
|
+
"description": "Object containing the links to the related endpoints",
|
|
5326
|
+
"type": "object",
|
|
5327
|
+
"properties": {
|
|
5328
|
+
"self": {
|
|
5329
|
+
"type": "object",
|
|
5330
|
+
"properties": {
|
|
5331
|
+
"href": {
|
|
5332
|
+
"description": "URL pointing to the request itself",
|
|
5333
|
+
"type": "string"
|
|
5334
|
+
}
|
|
5335
|
+
}
|
|
5336
|
+
},
|
|
5337
|
+
"next": {
|
|
5338
|
+
"type": "object",
|
|
5339
|
+
"properties": {
|
|
5340
|
+
"href": {
|
|
5341
|
+
"description": "URL pointing to the next page of results in a paginated response. If there are no more results, this field may be omitted",
|
|
5342
|
+
"type": "string"
|
|
5343
|
+
}
|
|
5344
|
+
}
|
|
5345
|
+
},
|
|
5346
|
+
"prev": {
|
|
5347
|
+
"type": "object",
|
|
5348
|
+
"properties": {
|
|
5349
|
+
"href": {
|
|
5350
|
+
"description": "URL pointing to the previous page of results in a paginated response. If there are no more results, this field may be omitted",
|
|
5351
|
+
"type": "string"
|
|
5352
|
+
}
|
|
5353
|
+
}
|
|
5354
|
+
},
|
|
5355
|
+
"first": {
|
|
5356
|
+
"type": "object",
|
|
5357
|
+
"properties": {
|
|
5358
|
+
"href": {
|
|
5359
|
+
"description": "URL pointing to the first page of results in a paginated response",
|
|
5360
|
+
"type": "string"
|
|
5361
|
+
}
|
|
5362
|
+
}
|
|
5363
|
+
},
|
|
5364
|
+
"last": {
|
|
5365
|
+
"type": "object",
|
|
5366
|
+
"properties": {
|
|
5367
|
+
"href": {
|
|
5368
|
+
"description": "URL pointing to the first page of results in a paginated response",
|
|
5369
|
+
"type": "string"
|
|
5370
|
+
}
|
|
5371
|
+
}
|
|
5372
|
+
},
|
|
5373
|
+
"pages": {
|
|
5374
|
+
"description": "It may contain a list of other useful URLs, e.g. one entry for page:'page 1', 'page 2'",
|
|
5375
|
+
"type": "object",
|
|
5376
|
+
"additionalProperties": {
|
|
5377
|
+
"type": "object",
|
|
5378
|
+
"properties": {
|
|
5379
|
+
"href": {
|
|
5380
|
+
"type": "string"
|
|
5381
|
+
}
|
|
5382
|
+
}
|
|
5383
|
+
}
|
|
5384
|
+
}
|
|
5385
|
+
},
|
|
5386
|
+
"required": [
|
|
5387
|
+
"self",
|
|
5388
|
+
"first",
|
|
5389
|
+
"last",
|
|
5390
|
+
"pages"
|
|
5391
|
+
]
|
|
5392
|
+
},
|
|
5393
|
+
"totalCount": {
|
|
5394
|
+
"description": "Number representing the total number of available items",
|
|
5395
|
+
"type": "number"
|
|
5396
|
+
}
|
|
5397
|
+
}
|
|
5398
|
+
}
|
|
5399
|
+
},
|
|
5400
|
+
"required": [
|
|
5401
|
+
"data"
|
|
5402
|
+
]
|
|
5403
|
+
}
|
|
5404
|
+
}
|
|
5405
|
+
}
|
|
5406
|
+
},
|
|
5407
|
+
"4XX": {
|
|
5408
|
+
"description": "Default Response",
|
|
5409
|
+
"content": {
|
|
5410
|
+
"application/json": {
|
|
5411
|
+
"schema": {
|
|
5412
|
+
"type": "object",
|
|
5413
|
+
"properties": {
|
|
5414
|
+
"code": {
|
|
5415
|
+
"description": "Code used to categorize the error",
|
|
5416
|
+
"type": "string"
|
|
5417
|
+
},
|
|
5418
|
+
"detail": {
|
|
5419
|
+
"description": "Description of the error",
|
|
5420
|
+
"type": "string"
|
|
5421
|
+
},
|
|
5422
|
+
"requestId": {
|
|
5423
|
+
"description": "Unique request id. This one will be used to troubleshoot the problems",
|
|
5424
|
+
"type": "string"
|
|
5425
|
+
},
|
|
5426
|
+
"name": {
|
|
5427
|
+
"description": "Name of the error type",
|
|
5428
|
+
"type": "string"
|
|
5429
|
+
},
|
|
5430
|
+
"validation": {
|
|
5431
|
+
"description": "List of the validation errors",
|
|
5432
|
+
"type": "array",
|
|
5433
|
+
"items": {
|
|
5434
|
+
"type": "object",
|
|
5435
|
+
"properties": {
|
|
5436
|
+
"fieldName": {
|
|
5437
|
+
"type": "string"
|
|
5438
|
+
},
|
|
5439
|
+
"message": {
|
|
5440
|
+
"type": "string"
|
|
5441
|
+
}
|
|
5442
|
+
},
|
|
5443
|
+
"required": [
|
|
5444
|
+
"fieldName",
|
|
5445
|
+
"message"
|
|
5446
|
+
]
|
|
5447
|
+
}
|
|
5448
|
+
},
|
|
5449
|
+
"validationContext": {
|
|
5450
|
+
"type": "string"
|
|
5451
|
+
},
|
|
5452
|
+
"statusCode": {
|
|
5453
|
+
"type": "number"
|
|
5454
|
+
}
|
|
5455
|
+
},
|
|
5456
|
+
"required": [
|
|
5457
|
+
"code",
|
|
5458
|
+
"detail",
|
|
5459
|
+
"requestId",
|
|
5460
|
+
"name",
|
|
5461
|
+
"statusCode"
|
|
5462
|
+
]
|
|
5463
|
+
}
|
|
5464
|
+
}
|
|
5465
|
+
}
|
|
5466
|
+
},
|
|
5467
|
+
"5XX": {
|
|
5468
|
+
"description": "Default Response",
|
|
5469
|
+
"content": {
|
|
5470
|
+
"application/json": {
|
|
5471
|
+
"schema": {
|
|
5472
|
+
"type": "object",
|
|
5473
|
+
"properties": {
|
|
5474
|
+
"code": {
|
|
5475
|
+
"description": "Code used to categorize the error",
|
|
5476
|
+
"type": "string"
|
|
5477
|
+
},
|
|
5478
|
+
"detail": {
|
|
5479
|
+
"description": "Description of the error",
|
|
5480
|
+
"type": "string"
|
|
5481
|
+
},
|
|
5482
|
+
"requestId": {
|
|
5483
|
+
"description": "Unique request id. This one will be used to troubleshoot the problems",
|
|
5484
|
+
"type": "string"
|
|
5485
|
+
},
|
|
5486
|
+
"name": {
|
|
5487
|
+
"description": "Name of the error type",
|
|
5488
|
+
"type": "string"
|
|
5489
|
+
},
|
|
5490
|
+
"validation": {
|
|
5491
|
+
"description": "List of the validation errors",
|
|
5492
|
+
"type": "array",
|
|
5493
|
+
"items": {
|
|
5494
|
+
"type": "object",
|
|
5495
|
+
"properties": {
|
|
5496
|
+
"fieldName": {
|
|
5497
|
+
"type": "string"
|
|
5498
|
+
},
|
|
5499
|
+
"message": {
|
|
5500
|
+
"type": "string"
|
|
5501
|
+
}
|
|
5502
|
+
},
|
|
5503
|
+
"required": [
|
|
5504
|
+
"fieldName",
|
|
5505
|
+
"message"
|
|
5506
|
+
]
|
|
5507
|
+
}
|
|
5508
|
+
},
|
|
5509
|
+
"validationContext": {
|
|
5510
|
+
"type": "string"
|
|
5511
|
+
},
|
|
5512
|
+
"statusCode": {
|
|
5513
|
+
"type": "number"
|
|
5514
|
+
}
|
|
5515
|
+
},
|
|
5516
|
+
"required": [
|
|
5517
|
+
"code",
|
|
5518
|
+
"detail",
|
|
5519
|
+
"requestId",
|
|
5520
|
+
"name",
|
|
5521
|
+
"statusCode"
|
|
5522
|
+
]
|
|
5523
|
+
}
|
|
5524
|
+
}
|
|
5525
|
+
}
|
|
5526
|
+
}
|
|
5527
|
+
}
|
|
5528
|
+
}
|
|
5529
|
+
},
|
|
5259
5530
|
"/api/v1/organisations/{organisationId}": {
|
|
5260
5531
|
"get": {
|
|
5261
5532
|
"operationId": "getOrganisation",
|
|
@@ -5263,6 +5534,22 @@
|
|
|
5263
5534
|
"Organisations"
|
|
5264
5535
|
],
|
|
5265
5536
|
"parameters": [
|
|
5537
|
+
{
|
|
5538
|
+
"schema": {
|
|
5539
|
+
"type": "string",
|
|
5540
|
+
"enum": [
|
|
5541
|
+
"true",
|
|
5542
|
+
"false",
|
|
5543
|
+
"0",
|
|
5544
|
+
"1"
|
|
5545
|
+
],
|
|
5546
|
+
"default": "false"
|
|
5547
|
+
},
|
|
5548
|
+
"in": "query",
|
|
5549
|
+
"name": "includeCustomData",
|
|
5550
|
+
"required": false,
|
|
5551
|
+
"description": "If true, includes organization customData from Logto in the response."
|
|
5552
|
+
},
|
|
5266
5553
|
{
|
|
5267
5554
|
"schema": {
|
|
5268
5555
|
"type": "string"
|
|
@@ -5325,6 +5612,14 @@
|
|
|
5325
5612
|
"en",
|
|
5326
5613
|
"ga"
|
|
5327
5614
|
]
|
|
5615
|
+
},
|
|
5616
|
+
"customData": {
|
|
5617
|
+
"type": "object",
|
|
5618
|
+
"properties": {
|
|
5619
|
+
"allowMyGovId": {
|
|
5620
|
+
"type": "boolean"
|
|
5621
|
+
}
|
|
5622
|
+
}
|
|
5328
5623
|
}
|
|
5329
5624
|
},
|
|
5330
5625
|
"required": [
|
|
@@ -5797,6 +6092,29 @@
|
|
|
5797
6092
|
}
|
|
5798
6093
|
]
|
|
5799
6094
|
},
|
|
6095
|
+
"status": {
|
|
6096
|
+
"default": "active",
|
|
6097
|
+
"anyOf": [
|
|
6098
|
+
{
|
|
6099
|
+
"type": "string",
|
|
6100
|
+
"enum": [
|
|
6101
|
+
"active"
|
|
6102
|
+
]
|
|
6103
|
+
},
|
|
6104
|
+
{
|
|
6105
|
+
"type": "string",
|
|
6106
|
+
"enum": [
|
|
6107
|
+
"disabled"
|
|
6108
|
+
]
|
|
6109
|
+
},
|
|
6110
|
+
{
|
|
6111
|
+
"type": "string",
|
|
6112
|
+
"enum": [
|
|
6113
|
+
"deleted"
|
|
6114
|
+
]
|
|
6115
|
+
}
|
|
6116
|
+
]
|
|
6117
|
+
},
|
|
5800
6118
|
"details": {
|
|
5801
6119
|
"type": "object",
|
|
5802
6120
|
"properties": {
|
|
@@ -5859,7 +6177,8 @@
|
|
|
5859
6177
|
"id",
|
|
5860
6178
|
"publicName",
|
|
5861
6179
|
"email",
|
|
5862
|
-
"primaryUserId"
|
|
6180
|
+
"primaryUserId",
|
|
6181
|
+
"status"
|
|
5863
6182
|
]
|
|
5864
6183
|
}
|
|
5865
6184
|
},
|
|
@@ -6293,6 +6612,29 @@
|
|
|
6293
6612
|
}
|
|
6294
6613
|
]
|
|
6295
6614
|
},
|
|
6615
|
+
"status": {
|
|
6616
|
+
"default": "active",
|
|
6617
|
+
"anyOf": [
|
|
6618
|
+
{
|
|
6619
|
+
"type": "string",
|
|
6620
|
+
"enum": [
|
|
6621
|
+
"active"
|
|
6622
|
+
]
|
|
6623
|
+
},
|
|
6624
|
+
{
|
|
6625
|
+
"type": "string",
|
|
6626
|
+
"enum": [
|
|
6627
|
+
"disabled"
|
|
6628
|
+
]
|
|
6629
|
+
},
|
|
6630
|
+
{
|
|
6631
|
+
"type": "string",
|
|
6632
|
+
"enum": [
|
|
6633
|
+
"deleted"
|
|
6634
|
+
]
|
|
6635
|
+
}
|
|
6636
|
+
]
|
|
6637
|
+
},
|
|
6296
6638
|
"details": {
|
|
6297
6639
|
"type": "object",
|
|
6298
6640
|
"properties": {
|
|
@@ -6355,7 +6697,8 @@
|
|
|
6355
6697
|
"id",
|
|
6356
6698
|
"publicName",
|
|
6357
6699
|
"email",
|
|
6358
|
-
"primaryUserId"
|
|
6700
|
+
"primaryUserId",
|
|
6701
|
+
"status"
|
|
6359
6702
|
]
|
|
6360
6703
|
}
|
|
6361
6704
|
},
|
|
@@ -6760,6 +7103,29 @@
|
|
|
6760
7103
|
}
|
|
6761
7104
|
]
|
|
6762
7105
|
},
|
|
7106
|
+
"status": {
|
|
7107
|
+
"default": "active",
|
|
7108
|
+
"anyOf": [
|
|
7109
|
+
{
|
|
7110
|
+
"type": "string",
|
|
7111
|
+
"enum": [
|
|
7112
|
+
"active"
|
|
7113
|
+
]
|
|
7114
|
+
},
|
|
7115
|
+
{
|
|
7116
|
+
"type": "string",
|
|
7117
|
+
"enum": [
|
|
7118
|
+
"disabled"
|
|
7119
|
+
]
|
|
7120
|
+
},
|
|
7121
|
+
{
|
|
7122
|
+
"type": "string",
|
|
7123
|
+
"enum": [
|
|
7124
|
+
"deleted"
|
|
7125
|
+
]
|
|
7126
|
+
}
|
|
7127
|
+
]
|
|
7128
|
+
},
|
|
6763
7129
|
"details": {
|
|
6764
7130
|
"type": "object",
|
|
6765
7131
|
"properties": {
|
|
@@ -6822,7 +7188,8 @@
|
|
|
6822
7188
|
"id",
|
|
6823
7189
|
"publicName",
|
|
6824
7190
|
"email",
|
|
6825
|
-
"primaryUserId"
|
|
7191
|
+
"primaryUserId",
|
|
7192
|
+
"status"
|
|
6826
7193
|
]
|
|
6827
7194
|
}
|
|
6828
7195
|
},
|
|
@@ -7252,6 +7619,29 @@
|
|
|
7252
7619
|
}
|
|
7253
7620
|
]
|
|
7254
7621
|
},
|
|
7622
|
+
"status": {
|
|
7623
|
+
"default": "active",
|
|
7624
|
+
"anyOf": [
|
|
7625
|
+
{
|
|
7626
|
+
"type": "string",
|
|
7627
|
+
"enum": [
|
|
7628
|
+
"active"
|
|
7629
|
+
]
|
|
7630
|
+
},
|
|
7631
|
+
{
|
|
7632
|
+
"type": "string",
|
|
7633
|
+
"enum": [
|
|
7634
|
+
"disabled"
|
|
7635
|
+
]
|
|
7636
|
+
},
|
|
7637
|
+
{
|
|
7638
|
+
"type": "string",
|
|
7639
|
+
"enum": [
|
|
7640
|
+
"deleted"
|
|
7641
|
+
]
|
|
7642
|
+
}
|
|
7643
|
+
]
|
|
7644
|
+
},
|
|
7255
7645
|
"details": {
|
|
7256
7646
|
"type": "object",
|
|
7257
7647
|
"properties": {
|
|
@@ -7314,7 +7704,8 @@
|
|
|
7314
7704
|
"id",
|
|
7315
7705
|
"publicName",
|
|
7316
7706
|
"email",
|
|
7317
|
-
"primaryUserId"
|
|
7707
|
+
"primaryUserId",
|
|
7708
|
+
"status"
|
|
7318
7709
|
]
|
|
7319
7710
|
},
|
|
7320
7711
|
"metadata": {
|
|
@@ -7738,6 +8129,29 @@
|
|
|
7738
8129
|
}
|
|
7739
8130
|
]
|
|
7740
8131
|
},
|
|
8132
|
+
"status": {
|
|
8133
|
+
"default": "active",
|
|
8134
|
+
"anyOf": [
|
|
8135
|
+
{
|
|
8136
|
+
"type": "string",
|
|
8137
|
+
"enum": [
|
|
8138
|
+
"active"
|
|
8139
|
+
]
|
|
8140
|
+
},
|
|
8141
|
+
{
|
|
8142
|
+
"type": "string",
|
|
8143
|
+
"enum": [
|
|
8144
|
+
"disabled"
|
|
8145
|
+
]
|
|
8146
|
+
},
|
|
8147
|
+
{
|
|
8148
|
+
"type": "string",
|
|
8149
|
+
"enum": [
|
|
8150
|
+
"deleted"
|
|
8151
|
+
]
|
|
8152
|
+
}
|
|
8153
|
+
]
|
|
8154
|
+
},
|
|
7741
8155
|
"details": {
|
|
7742
8156
|
"type": "object",
|
|
7743
8157
|
"properties": {
|
|
@@ -7824,7 +8238,8 @@
|
|
|
7824
8238
|
"id",
|
|
7825
8239
|
"publicName",
|
|
7826
8240
|
"email",
|
|
7827
|
-
"primaryUserId"
|
|
8241
|
+
"primaryUserId",
|
|
8242
|
+
"status"
|
|
7828
8243
|
]
|
|
7829
8244
|
},
|
|
7830
8245
|
"metadata": {
|
|
@@ -8273,6 +8688,29 @@
|
|
|
8273
8688
|
}
|
|
8274
8689
|
]
|
|
8275
8690
|
},
|
|
8691
|
+
"status": {
|
|
8692
|
+
"default": "active",
|
|
8693
|
+
"anyOf": [
|
|
8694
|
+
{
|
|
8695
|
+
"type": "string",
|
|
8696
|
+
"enum": [
|
|
8697
|
+
"active"
|
|
8698
|
+
]
|
|
8699
|
+
},
|
|
8700
|
+
{
|
|
8701
|
+
"type": "string",
|
|
8702
|
+
"enum": [
|
|
8703
|
+
"disabled"
|
|
8704
|
+
]
|
|
8705
|
+
},
|
|
8706
|
+
{
|
|
8707
|
+
"type": "string",
|
|
8708
|
+
"enum": [
|
|
8709
|
+
"deleted"
|
|
8710
|
+
]
|
|
8711
|
+
}
|
|
8712
|
+
]
|
|
8713
|
+
},
|
|
8276
8714
|
"details": {
|
|
8277
8715
|
"type": "object",
|
|
8278
8716
|
"properties": {
|
|
@@ -8335,7 +8773,8 @@
|
|
|
8335
8773
|
"id",
|
|
8336
8774
|
"publicName",
|
|
8337
8775
|
"email",
|
|
8338
|
-
"primaryUserId"
|
|
8776
|
+
"primaryUserId",
|
|
8777
|
+
"status"
|
|
8339
8778
|
]
|
|
8340
8779
|
},
|
|
8341
8780
|
"metadata": {
|
|
@@ -8782,6 +9221,29 @@
|
|
|
8782
9221
|
}
|
|
8783
9222
|
]
|
|
8784
9223
|
},
|
|
9224
|
+
"status": {
|
|
9225
|
+
"default": "active",
|
|
9226
|
+
"anyOf": [
|
|
9227
|
+
{
|
|
9228
|
+
"type": "string",
|
|
9229
|
+
"enum": [
|
|
9230
|
+
"active"
|
|
9231
|
+
]
|
|
9232
|
+
},
|
|
9233
|
+
{
|
|
9234
|
+
"type": "string",
|
|
9235
|
+
"enum": [
|
|
9236
|
+
"disabled"
|
|
9237
|
+
]
|
|
9238
|
+
},
|
|
9239
|
+
{
|
|
9240
|
+
"type": "string",
|
|
9241
|
+
"enum": [
|
|
9242
|
+
"deleted"
|
|
9243
|
+
]
|
|
9244
|
+
}
|
|
9245
|
+
]
|
|
9246
|
+
},
|
|
8785
9247
|
"details": {
|
|
8786
9248
|
"type": "object",
|
|
8787
9249
|
"properties": {
|
|
@@ -8829,22 +9291,267 @@
|
|
|
8829
9291
|
],
|
|
8830
9292
|
"default": "en"
|
|
8831
9293
|
},
|
|
8832
|
-
"externalId": {
|
|
8833
|
-
"type": "string"
|
|
9294
|
+
"externalId": {
|
|
9295
|
+
"type": "string"
|
|
9296
|
+
}
|
|
9297
|
+
},
|
|
9298
|
+
"required": [
|
|
9299
|
+
"email",
|
|
9300
|
+
"firstName",
|
|
9301
|
+
"lastName"
|
|
9302
|
+
]
|
|
9303
|
+
}
|
|
9304
|
+
},
|
|
9305
|
+
"required": [
|
|
9306
|
+
"id",
|
|
9307
|
+
"publicName",
|
|
9308
|
+
"email",
|
|
9309
|
+
"primaryUserId",
|
|
9310
|
+
"status"
|
|
9311
|
+
]
|
|
9312
|
+
},
|
|
9313
|
+
"metadata": {
|
|
9314
|
+
"type": "object",
|
|
9315
|
+
"properties": {
|
|
9316
|
+
"links": {
|
|
9317
|
+
"description": "Object containing the links to the related endpoints",
|
|
9318
|
+
"type": "object",
|
|
9319
|
+
"properties": {
|
|
9320
|
+
"self": {
|
|
9321
|
+
"type": "object",
|
|
9322
|
+
"properties": {
|
|
9323
|
+
"href": {
|
|
9324
|
+
"description": "URL pointing to the request itself",
|
|
9325
|
+
"type": "string"
|
|
9326
|
+
}
|
|
9327
|
+
}
|
|
9328
|
+
},
|
|
9329
|
+
"next": {
|
|
9330
|
+
"type": "object",
|
|
9331
|
+
"properties": {
|
|
9332
|
+
"href": {
|
|
9333
|
+
"description": "URL pointing to the next page of results in a paginated response. If there are no more results, this field may be omitted",
|
|
9334
|
+
"type": "string"
|
|
9335
|
+
}
|
|
9336
|
+
}
|
|
9337
|
+
},
|
|
9338
|
+
"prev": {
|
|
9339
|
+
"type": "object",
|
|
9340
|
+
"properties": {
|
|
9341
|
+
"href": {
|
|
9342
|
+
"description": "URL pointing to the previous page of results in a paginated response. If there are no more results, this field may be omitted",
|
|
9343
|
+
"type": "string"
|
|
9344
|
+
}
|
|
9345
|
+
}
|
|
9346
|
+
},
|
|
9347
|
+
"first": {
|
|
9348
|
+
"type": "object",
|
|
9349
|
+
"properties": {
|
|
9350
|
+
"href": {
|
|
9351
|
+
"description": "URL pointing to the first page of results in a paginated response",
|
|
9352
|
+
"type": "string"
|
|
9353
|
+
}
|
|
9354
|
+
}
|
|
9355
|
+
},
|
|
9356
|
+
"last": {
|
|
9357
|
+
"type": "object",
|
|
9358
|
+
"properties": {
|
|
9359
|
+
"href": {
|
|
9360
|
+
"description": "URL pointing to the first page of results in a paginated response",
|
|
9361
|
+
"type": "string"
|
|
9362
|
+
}
|
|
9363
|
+
}
|
|
9364
|
+
},
|
|
9365
|
+
"pages": {
|
|
9366
|
+
"description": "It may contain a list of other useful URLs, e.g. one entry for page:'page 1', 'page 2'",
|
|
9367
|
+
"type": "object",
|
|
9368
|
+
"additionalProperties": {
|
|
9369
|
+
"type": "object",
|
|
9370
|
+
"properties": {
|
|
9371
|
+
"href": {
|
|
9372
|
+
"type": "string"
|
|
9373
|
+
}
|
|
9374
|
+
}
|
|
9375
|
+
}
|
|
8834
9376
|
}
|
|
8835
9377
|
},
|
|
8836
9378
|
"required": [
|
|
8837
|
-
"
|
|
8838
|
-
"
|
|
8839
|
-
"
|
|
9379
|
+
"self",
|
|
9380
|
+
"first",
|
|
9381
|
+
"last",
|
|
9382
|
+
"pages"
|
|
8840
9383
|
]
|
|
9384
|
+
},
|
|
9385
|
+
"totalCount": {
|
|
9386
|
+
"description": "Number representing the total number of available items",
|
|
9387
|
+
"type": "number"
|
|
9388
|
+
}
|
|
9389
|
+
}
|
|
9390
|
+
}
|
|
9391
|
+
},
|
|
9392
|
+
"required": [
|
|
9393
|
+
"data"
|
|
9394
|
+
]
|
|
9395
|
+
}
|
|
9396
|
+
}
|
|
9397
|
+
}
|
|
9398
|
+
},
|
|
9399
|
+
"4XX": {
|
|
9400
|
+
"description": "Default Response",
|
|
9401
|
+
"content": {
|
|
9402
|
+
"application/json": {
|
|
9403
|
+
"schema": {
|
|
9404
|
+
"type": "object",
|
|
9405
|
+
"properties": {
|
|
9406
|
+
"code": {
|
|
9407
|
+
"description": "Code used to categorize the error",
|
|
9408
|
+
"type": "string"
|
|
9409
|
+
},
|
|
9410
|
+
"detail": {
|
|
9411
|
+
"description": "Description of the error",
|
|
9412
|
+
"type": "string"
|
|
9413
|
+
},
|
|
9414
|
+
"requestId": {
|
|
9415
|
+
"description": "Unique request id. This one will be used to troubleshoot the problems",
|
|
9416
|
+
"type": "string"
|
|
9417
|
+
},
|
|
9418
|
+
"name": {
|
|
9419
|
+
"description": "Name of the error type",
|
|
9420
|
+
"type": "string"
|
|
9421
|
+
},
|
|
9422
|
+
"validation": {
|
|
9423
|
+
"description": "List of the validation errors",
|
|
9424
|
+
"type": "array",
|
|
9425
|
+
"items": {
|
|
9426
|
+
"type": "object",
|
|
9427
|
+
"properties": {
|
|
9428
|
+
"fieldName": {
|
|
9429
|
+
"type": "string"
|
|
9430
|
+
},
|
|
9431
|
+
"message": {
|
|
9432
|
+
"type": "string"
|
|
9433
|
+
}
|
|
9434
|
+
},
|
|
9435
|
+
"required": [
|
|
9436
|
+
"fieldName",
|
|
9437
|
+
"message"
|
|
9438
|
+
]
|
|
9439
|
+
}
|
|
9440
|
+
},
|
|
9441
|
+
"validationContext": {
|
|
9442
|
+
"type": "string"
|
|
9443
|
+
},
|
|
9444
|
+
"statusCode": {
|
|
9445
|
+
"type": "number"
|
|
9446
|
+
}
|
|
9447
|
+
},
|
|
9448
|
+
"required": [
|
|
9449
|
+
"code",
|
|
9450
|
+
"detail",
|
|
9451
|
+
"requestId",
|
|
9452
|
+
"name",
|
|
9453
|
+
"statusCode"
|
|
9454
|
+
]
|
|
9455
|
+
}
|
|
9456
|
+
}
|
|
9457
|
+
}
|
|
9458
|
+
},
|
|
9459
|
+
"5XX": {
|
|
9460
|
+
"description": "Default Response",
|
|
9461
|
+
"content": {
|
|
9462
|
+
"application/json": {
|
|
9463
|
+
"schema": {
|
|
9464
|
+
"type": "object",
|
|
9465
|
+
"properties": {
|
|
9466
|
+
"code": {
|
|
9467
|
+
"description": "Code used to categorize the error",
|
|
9468
|
+
"type": "string"
|
|
9469
|
+
},
|
|
9470
|
+
"detail": {
|
|
9471
|
+
"description": "Description of the error",
|
|
9472
|
+
"type": "string"
|
|
9473
|
+
},
|
|
9474
|
+
"requestId": {
|
|
9475
|
+
"description": "Unique request id. This one will be used to troubleshoot the problems",
|
|
9476
|
+
"type": "string"
|
|
9477
|
+
},
|
|
9478
|
+
"name": {
|
|
9479
|
+
"description": "Name of the error type",
|
|
9480
|
+
"type": "string"
|
|
9481
|
+
},
|
|
9482
|
+
"validation": {
|
|
9483
|
+
"description": "List of the validation errors",
|
|
9484
|
+
"type": "array",
|
|
9485
|
+
"items": {
|
|
9486
|
+
"type": "object",
|
|
9487
|
+
"properties": {
|
|
9488
|
+
"fieldName": {
|
|
9489
|
+
"type": "string"
|
|
9490
|
+
},
|
|
9491
|
+
"message": {
|
|
9492
|
+
"type": "string"
|
|
9493
|
+
}
|
|
9494
|
+
},
|
|
9495
|
+
"required": [
|
|
9496
|
+
"fieldName",
|
|
9497
|
+
"message"
|
|
9498
|
+
]
|
|
9499
|
+
}
|
|
9500
|
+
},
|
|
9501
|
+
"validationContext": {
|
|
9502
|
+
"type": "string"
|
|
9503
|
+
},
|
|
9504
|
+
"statusCode": {
|
|
9505
|
+
"type": "number"
|
|
9506
|
+
}
|
|
9507
|
+
},
|
|
9508
|
+
"required": [
|
|
9509
|
+
"code",
|
|
9510
|
+
"detail",
|
|
9511
|
+
"requestId",
|
|
9512
|
+
"name",
|
|
9513
|
+
"statusCode"
|
|
9514
|
+
]
|
|
9515
|
+
}
|
|
9516
|
+
}
|
|
9517
|
+
}
|
|
9518
|
+
}
|
|
9519
|
+
}
|
|
9520
|
+
},
|
|
9521
|
+
"delete": {
|
|
9522
|
+
"operationId": "deleteProfile",
|
|
9523
|
+
"tags": [
|
|
9524
|
+
"Profiles"
|
|
9525
|
+
],
|
|
9526
|
+
"parameters": [
|
|
9527
|
+
{
|
|
9528
|
+
"schema": {
|
|
9529
|
+
"type": "string"
|
|
9530
|
+
},
|
|
9531
|
+
"in": "path",
|
|
9532
|
+
"name": "profileId",
|
|
9533
|
+
"required": true,
|
|
9534
|
+
"description": "ID of the profile to delete"
|
|
9535
|
+
}
|
|
9536
|
+
],
|
|
9537
|
+
"responses": {
|
|
9538
|
+
"200": {
|
|
9539
|
+
"description": "Default Response",
|
|
9540
|
+
"content": {
|
|
9541
|
+
"application/json": {
|
|
9542
|
+
"schema": {
|
|
9543
|
+
"type": "object",
|
|
9544
|
+
"properties": {
|
|
9545
|
+
"data": {
|
|
9546
|
+
"type": "object",
|
|
9547
|
+
"properties": {
|
|
9548
|
+
"taskId": {
|
|
9549
|
+
"description": "ID of the created task",
|
|
9550
|
+
"type": "string"
|
|
8841
9551
|
}
|
|
8842
9552
|
},
|
|
8843
9553
|
"required": [
|
|
8844
|
-
"
|
|
8845
|
-
"publicName",
|
|
8846
|
-
"email",
|
|
8847
|
-
"primaryUserId"
|
|
9554
|
+
"taskId"
|
|
8848
9555
|
]
|
|
8849
9556
|
},
|
|
8850
9557
|
"metadata": {
|
|
@@ -10379,16 +11086,6 @@
|
|
|
10379
11086
|
"data": {
|
|
10380
11087
|
"type": "object",
|
|
10381
11088
|
"properties": {
|
|
10382
|
-
"organisationId": {
|
|
10383
|
-
"type": "string"
|
|
10384
|
-
},
|
|
10385
|
-
"status": {
|
|
10386
|
-
"type": "string"
|
|
10387
|
-
},
|
|
10388
|
-
"createdAt": {
|
|
10389
|
-
"format": "date-time",
|
|
10390
|
-
"type": "string"
|
|
10391
|
-
},
|
|
10392
11089
|
"metadata": {
|
|
10393
11090
|
"type": "object",
|
|
10394
11091
|
"properties": {
|
|
@@ -10398,11 +11095,17 @@
|
|
|
10398
11095
|
"mimetype": {
|
|
10399
11096
|
"type": "string"
|
|
10400
11097
|
}
|
|
10401
|
-
}
|
|
10402
|
-
|
|
10403
|
-
|
|
10404
|
-
|
|
10405
|
-
|
|
11098
|
+
}
|
|
11099
|
+
},
|
|
11100
|
+
"organisationId": {
|
|
11101
|
+
"type": "string"
|
|
11102
|
+
},
|
|
11103
|
+
"status": {
|
|
11104
|
+
"type": "string"
|
|
11105
|
+
},
|
|
11106
|
+
"createdAt": {
|
|
11107
|
+
"format": "date-time",
|
|
11108
|
+
"type": "string"
|
|
10406
11109
|
},
|
|
10407
11110
|
"details": {
|
|
10408
11111
|
"type": "array",
|
|
@@ -10472,7 +11175,6 @@
|
|
|
10472
11175
|
"required": [
|
|
10473
11176
|
"organisationId",
|
|
10474
11177
|
"status",
|
|
10475
|
-
"metadata",
|
|
10476
11178
|
"details"
|
|
10477
11179
|
]
|
|
10478
11180
|
},
|
|
@@ -10980,16 +11682,6 @@
|
|
|
10980
11682
|
"type": "object",
|
|
10981
11683
|
"additionalProperties": {}
|
|
10982
11684
|
},
|
|
10983
|
-
"applicationId": {
|
|
10984
|
-
"anyOf": [
|
|
10985
|
-
{
|
|
10986
|
-
"type": "string"
|
|
10987
|
-
},
|
|
10988
|
-
{
|
|
10989
|
-
"type": "null"
|
|
10990
|
-
}
|
|
10991
|
-
]
|
|
10992
|
-
},
|
|
10993
11685
|
"isSuspended": {
|
|
10994
11686
|
"type": "boolean"
|
|
10995
11687
|
},
|
|
@@ -11004,6 +11696,31 @@
|
|
|
11004
11696
|
"customData",
|
|
11005
11697
|
"identities"
|
|
11006
11698
|
]
|
|
11699
|
+
},
|
|
11700
|
+
"application": {
|
|
11701
|
+
"type": "object",
|
|
11702
|
+
"properties": {
|
|
11703
|
+
"id": {
|
|
11704
|
+
"anyOf": [
|
|
11705
|
+
{
|
|
11706
|
+
"type": "string"
|
|
11707
|
+
},
|
|
11708
|
+
{
|
|
11709
|
+
"type": "null"
|
|
11710
|
+
}
|
|
11711
|
+
]
|
|
11712
|
+
}
|
|
11713
|
+
}
|
|
11714
|
+
},
|
|
11715
|
+
"applicationId": {
|
|
11716
|
+
"anyOf": [
|
|
11717
|
+
{
|
|
11718
|
+
"type": "string"
|
|
11719
|
+
},
|
|
11720
|
+
{
|
|
11721
|
+
"type": "null"
|
|
11722
|
+
}
|
|
11723
|
+
]
|
|
11007
11724
|
}
|
|
11008
11725
|
},
|
|
11009
11726
|
"required": [
|