mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
feat: generate certificates signed by the root CA (#3144)
Co-authored-by: Aiden McClelland <me@drbonez.dev>
This commit is contained in:
6
sdk/base/lib/osBindings/GenerateCertificateParams.ts
Normal file
6
sdk/base/lib/osBindings/GenerateCertificateParams.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type GenerateCertificateParams = {
|
||||
hostnames: Array<string>
|
||||
ed25519: boolean
|
||||
}
|
||||
3
sdk/base/lib/osBindings/GenerateCertificateResponse.ts
Normal file
3
sdk/base/lib/osBindings/GenerateCertificateResponse.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type GenerateCertificateResponse = { key: string; fullchain: string }
|
||||
@@ -106,6 +106,8 @@ export { FullProgress } from './FullProgress'
|
||||
export { GatewayId } from './GatewayId'
|
||||
export { GatewayInfo } from './GatewayInfo'
|
||||
export { GatewayType } from './GatewayType'
|
||||
export { GenerateCertificateParams } from './GenerateCertificateParams'
|
||||
export { GenerateCertificateResponse } from './GenerateCertificateResponse'
|
||||
export { GetActionInputParams } from './GetActionInputParams'
|
||||
export { GetContainerIpParams } from './GetContainerIpParams'
|
||||
export { GetHostInfoParams } from './GetHostInfoParams'
|
||||
|
||||
Reference in New Issue
Block a user