diff --git a/openapi.json b/openapi.json index 6df075d..df2970f 100644 --- a/openapi.json +++ b/openapi.json @@ -5289,9 +5289,15 @@ "type": "string", "description": "", "default": "" + }, + "licenseScanResult": { + "type": "object", + "description": "", + "default": null } }, "required": [ + "licenseScanResult", "spdxDisj" ] }, diff --git a/types/api.d.ts b/types/api.d.ts index e340b9c..9cba806 100644 --- a/types/api.d.ts +++ b/types/api.d.ts @@ -1779,6 +1779,8 @@ export interface components { props: { /** @default */ spdxDisj: string; + /** @default null */ + licenseScanResult: Record; }; usage?: components["schemas"]["SocketUsageRef"]; };