Skip to content

Commit 4a9cfc8

Browse files
[Update OpenAPI] Merge openapi dev using openapi-merge-cli
1 parent 737e553 commit 4a9cfc8

File tree

5 files changed

+164
-49
lines changed

5 files changed

+164
-49
lines changed

infra/apim_v2/api/ms_external_api/v2/openapi.dev.json

Lines changed: 41 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4053,6 +4053,12 @@
40534053
"items": {
40544054
"$ref": "#/components/schemas/BackOfficeEnvironmentConfiguration"
40554055
}
4056+
},
4057+
"testEnvProductIds": {
4058+
"type": "array",
4059+
"items": {
4060+
"type": "string"
4061+
}
40564062
}
40574063
}
40584064
},
@@ -4106,6 +4112,9 @@
41064112
"role": {
41074113
"type": "string"
41084114
},
4115+
"institutionType": {
4116+
"$ref": "#/components/schemas/InstitutionType1"
4117+
},
41094118
"multiroleAllowed": {
41104119
"type": "boolean"
41114120
},
@@ -4126,6 +4135,26 @@
41264135
}
41274136
}
41284137
},
4138+
"InstitutionType1": {
4139+
"type": "string",
4140+
"enum": [
4141+
"PA",
4142+
"PG",
4143+
"GSP",
4144+
"SA",
4145+
"PT",
4146+
"SCP",
4147+
"PSP",
4148+
"AS",
4149+
"REC",
4150+
"CON",
4151+
"PRV",
4152+
"PRV_PF",
4153+
"GPU",
4154+
"SCEC",
4155+
"DEFAULT"
4156+
]
4157+
},
41294158
"BackOfficeRole": {
41304159
"type": "object",
41314160
"properties": {
@@ -4200,26 +4229,6 @@
42004229
"USER_AGGREGATOR"
42014230
]
42024231
},
4203-
"InstitutionType1": {
4204-
"type": "string",
4205-
"enum": [
4206-
"PA",
4207-
"PG",
4208-
"GSP",
4209-
"SA",
4210-
"PT",
4211-
"SCP",
4212-
"PSP",
4213-
"AS",
4214-
"REC",
4215-
"CON",
4216-
"PRV",
4217-
"PRV_PF",
4218-
"GPU",
4219-
"SCEC",
4220-
"DEFAULT"
4221-
]
4222-
},
42234232
"ContractType": {
42244233
"type": "string",
42254234
"enum": [
@@ -4396,6 +4405,12 @@
43964405
"items": {
43974406
"$ref": "#/components/schemas/BackOfficeEnvironmentConfiguration"
43984407
}
4408+
},
4409+
"testEnvProductIds": {
4410+
"type": "array",
4411+
"items": {
4412+
"type": "string"
4413+
}
43994414
}
44004415
}
44014416
},
@@ -4463,6 +4478,12 @@
44634478
"$ref": "#/components/schemas/BackOfficeEnvironmentConfiguration"
44644479
}
44654480
},
4481+
"testEnvProductIds": {
4482+
"type": "array",
4483+
"items": {
4484+
"type": "string"
4485+
}
4486+
},
44664487
"id": {
44674488
"type": "string"
44684489
},

infra/apim_v2/api/ms_internal_api/v1/openapi.dev.json

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4305,9 +4305,6 @@
43054305
"additionalInformations": {
43064306
"$ref": "#/components/schemas/AdditionalInformationsDto1"
43074307
},
4308-
"userRequestUid": {
4309-
"type": "string"
4310-
},
43114308
"isAggregator": {
43124309
"type": "boolean"
43134310
},
@@ -4319,6 +4316,9 @@
43194316
},
43204317
"referenceOnboardingId": {
43214318
"type": "string"
4319+
},
4320+
"userRequester": {
4321+
"$ref": "#/components/schemas/UserRequesterResponse"
43224322
}
43234323
}
43244324
},
@@ -4571,6 +4571,17 @@
45714571
"type": "string",
45724572
"example": "2022-03-10T12:15:50"
45734573
},
4574+
"UserRequesterResponse": {
4575+
"type": "object",
4576+
"properties": {
4577+
"userMailUuid": {
4578+
"type": "string"
4579+
},
4580+
"userRequestUid": {
4581+
"type": "string"
4582+
}
4583+
}
4584+
},
45744585
"OnboardingPaRequest": {
45754586
"required": [
45764587
"productId",
@@ -4603,6 +4614,9 @@
46034614
"signContract": {
46044615
"type": "boolean"
46054616
},
4617+
"userRequester": {
4618+
"$ref": "#/components/schemas/UserRequesterDto"
4619+
},
46064620
"institution": {
46074621
"$ref": "#/components/schemas/InstitutionBaseRequest"
46084622
},
@@ -4714,6 +4728,20 @@
47144728
}
47154729
}
47164730
},
4731+
"UserRequesterDto": {
4732+
"type": "object",
4733+
"properties": {
4734+
"name": {
4735+
"type": "string"
4736+
},
4737+
"surname": {
4738+
"type": "string"
4739+
},
4740+
"email": {
4741+
"type": "string"
4742+
}
4743+
}
4744+
},
47174745
"InstitutionBaseRequest": {
47184746
"required": [
47194747
"institutionType",
@@ -4870,6 +4898,9 @@
48704898
"signContract": {
48714899
"type": "boolean"
48724900
},
4901+
"userRequester": {
4902+
"$ref": "#/components/schemas/UserRequesterDto"
4903+
},
48734904
"institution": {
48744905
"$ref": "#/components/schemas/InstitutionBaseRequest"
48754906
},
@@ -5220,6 +5251,9 @@
52205251
"signContract": {
52215252
"type": "boolean"
52225253
},
5254+
"userRequester": {
5255+
"$ref": "#/components/schemas/UserRequesterDto"
5256+
},
52235257
"institution": {
52245258
"$ref": "#/components/schemas/InstitutionPspRequest"
52255259
},

infra/apim_v2/api/selfcare_support_service/v1/openapi.dev.json

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3534,9 +3534,6 @@
35343534
"additionalInformations": {
35353535
"$ref": "#/components/schemas/AdditionalInformationsDto1"
35363536
},
3537-
"userRequestUid": {
3538-
"type": "string"
3539-
},
35403537
"isAggregator": {
35413538
"type": "boolean"
35423539
},
@@ -3548,6 +3545,9 @@
35483545
},
35493546
"referenceOnboardingId": {
35503547
"type": "string"
3548+
},
3549+
"userRequester": {
3550+
"$ref": "#/components/schemas/UserRequesterResponse"
35513551
}
35523552
}
35533553
},
@@ -3800,6 +3800,17 @@
38003800
"type": "string",
38013801
"example": "2022-03-10T12:15:50"
38023802
},
3803+
"UserRequesterResponse": {
3804+
"type": "object",
3805+
"properties": {
3806+
"userMailUuid": {
3807+
"type": "string"
3808+
},
3809+
"userRequestUid": {
3810+
"type": "string"
3811+
}
3812+
}
3813+
},
38033814
"OnboardingStatus": {
38043815
"enum": [
38053816
"REQUEST",
@@ -3844,6 +3855,9 @@
38443855
"signContract": {
38453856
"type": "boolean"
38463857
},
3858+
"userRequester": {
3859+
"$ref": "#/components/schemas/UserRequesterDto"
3860+
},
38473861
"institution": {
38483862
"$ref": "#/components/schemas/InstitutionBaseRequest"
38493863
},
@@ -3961,6 +3975,20 @@
39613975
}
39623976
}
39633977
},
3978+
"UserRequesterDto": {
3979+
"type": "object",
3980+
"properties": {
3981+
"name": {
3982+
"type": "string"
3983+
},
3984+
"surname": {
3985+
"type": "string"
3986+
},
3987+
"email": {
3988+
"type": "string"
3989+
}
3990+
}
3991+
},
39643992
"InstitutionBaseRequest": {
39653993
"required": [
39663994
"institutionType",

infra/apim_v2/api_pnpg/external_api_for_pnpg/v2/openapi.dev.json

Lines changed: 41 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1715,6 +1715,12 @@
17151715
"items": {
17161716
"$ref": "#/components/schemas/BackOfficeEnvironmentConfiguration"
17171717
}
1718+
},
1719+
"testEnvProductIds": {
1720+
"type": "array",
1721+
"items": {
1722+
"type": "string"
1723+
}
17181724
}
17191725
}
17201726
},
@@ -1768,6 +1774,9 @@
17681774
"role": {
17691775
"type": "string"
17701776
},
1777+
"institutionType": {
1778+
"$ref": "#/components/schemas/InstitutionType1"
1779+
},
17711780
"multiroleAllowed": {
17721781
"type": "boolean"
17731782
},
@@ -1788,6 +1797,26 @@
17881797
}
17891798
}
17901799
},
1800+
"InstitutionType1": {
1801+
"type": "string",
1802+
"enum": [
1803+
"PA",
1804+
"PG",
1805+
"GSP",
1806+
"SA",
1807+
"PT",
1808+
"SCP",
1809+
"PSP",
1810+
"AS",
1811+
"REC",
1812+
"CON",
1813+
"PRV",
1814+
"PRV_PF",
1815+
"GPU",
1816+
"SCEC",
1817+
"DEFAULT"
1818+
]
1819+
},
17911820
"BackOfficeRole": {
17921821
"type": "object",
17931822
"properties": {
@@ -1862,26 +1891,6 @@
18621891
"USER_AGGREGATOR"
18631892
]
18641893
},
1865-
"InstitutionType1": {
1866-
"type": "string",
1867-
"enum": [
1868-
"PA",
1869-
"PG",
1870-
"GSP",
1871-
"SA",
1872-
"PT",
1873-
"SCP",
1874-
"PSP",
1875-
"AS",
1876-
"REC",
1877-
"CON",
1878-
"PRV",
1879-
"PRV_PF",
1880-
"GPU",
1881-
"SCEC",
1882-
"DEFAULT"
1883-
]
1884-
},
18851894
"ContractType": {
18861895
"type": "string",
18871896
"enum": [
@@ -2058,6 +2067,12 @@
20582067
"items": {
20592068
"$ref": "#/components/schemas/BackOfficeEnvironmentConfiguration"
20602069
}
2070+
},
2071+
"testEnvProductIds": {
2072+
"type": "array",
2073+
"items": {
2074+
"type": "string"
2075+
}
20612076
}
20622077
}
20632078
},
@@ -2125,6 +2140,12 @@
21252140
"$ref": "#/components/schemas/BackOfficeEnvironmentConfiguration"
21262141
}
21272142
},
2143+
"testEnvProductIds": {
2144+
"type": "array",
2145+
"items": {
2146+
"type": "string"
2147+
}
2148+
},
21282149
"id": {
21292150
"type": "string"
21302151
},

0 commit comments

Comments
 (0)