Skip to content

Commit 31cbd36

Browse files
chore: drop unrelated certificate schema changes
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 57b8abe commit 31cbd36

4 files changed

Lines changed: 4 additions & 50 deletions

File tree

openapi-full.json

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -331,25 +331,6 @@
331331
}
332332
]
333333
},
334-
"CertificateDistinguishedName": {
335-
"type": "object",
336-
"additionalProperties": {
337-
"$ref": "#/components/schemas/CertificateDistinguishedNameValue"
338-
}
339-
},
340-
"CertificateDistinguishedNameValue": {
341-
"oneOf": [
342-
{
343-
"type": "string"
344-
},
345-
{
346-
"type": "array",
347-
"items": {
348-
"type": "string"
349-
}
350-
}
351-
]
352-
},
353334
"CertificateEngineConfigResponse": {
354335
"type": "object",
355336
"required": [
@@ -2460,7 +2441,7 @@
24602441
"type": "string"
24612442
},
24622443
"subject": {
2463-
"$ref": "#/components/schemas/CertificateDistinguishedName"
2444+
"$ref": "#/components/schemas/DynamicMetadataValue"
24642445
}
24652446
}
24662447
},

openapi.json

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -245,25 +245,6 @@
245245
}
246246
}
247247
},
248-
"CertificateDistinguishedName": {
249-
"type": "object",
250-
"additionalProperties": {
251-
"$ref": "#/components/schemas/CertificateDistinguishedNameValue"
252-
}
253-
},
254-
"CertificateDistinguishedNameValue": {
255-
"oneOf": [
256-
{
257-
"type": "string"
258-
},
259-
{
260-
"type": "array",
261-
"items": {
262-
"type": "string"
263-
}
264-
}
265-
]
266-
},
267248
"CertificatePfxData": {
268249
"type": "object",
269250
"required": [
@@ -1858,7 +1839,7 @@
18581839
"type": "string"
18591840
},
18601841
"subject": {
1861-
"$ref": "#/components/schemas/CertificateDistinguishedName"
1842+
"$ref": "#/components/schemas/DynamicMetadataValue"
18621843
}
18631844
}
18641845
},

src/types/openapi/openapi-full.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,10 +1333,6 @@ export type components = {
13331333
CertificateDataGenerated: components["schemas"]["EngineHandler"] & {
13341334
generated: boolean;
13351335
};
1336-
CertificateDistinguishedName: {
1337-
[key: string]: components["schemas"]["CertificateDistinguishedNameValue"];
1338-
};
1339-
CertificateDistinguishedNameValue: string | string[];
13401336
CertificateEngineConfigResponse: {
13411337
engine: string;
13421338
identify_methods: components["schemas"]["IdentifyMethodSetting"][];
@@ -1924,7 +1920,7 @@ export type components = {
19241920
serialNumber?: string;
19251921
serialNumberHex?: string;
19261922
hash?: string;
1927-
subject?: components["schemas"]["CertificateDistinguishedName"];
1923+
subject?: components["schemas"]["DynamicMetadataValue"];
19281924
};
19291925
SignerDetail: components["schemas"]["SignerSummary"] & {
19301926
description: string | null;

src/types/openapi/openapi.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -810,10 +810,6 @@ export type components = {
810810
};
811811
version: string;
812812
};
813-
CertificateDistinguishedName: {
814-
[key: string]: components["schemas"]["CertificateDistinguishedNameValue"];
815-
};
816-
CertificateDistinguishedNameValue: string | string[];
817813
CertificatePfxData: {
818814
name: string;
819815
subject: string;
@@ -1258,7 +1254,7 @@ export type components = {
12581254
serialNumber?: string;
12591255
serialNumberHex?: string;
12601256
hash?: string;
1261-
subject?: components["schemas"]["CertificateDistinguishedName"];
1257+
subject?: components["schemas"]["DynamicMetadataValue"];
12621258
};
12631259
SignerDetail: components["schemas"]["SignerSummary"] & {
12641260
description: string | null;

0 commit comments

Comments
 (0)