Merge pull request #3746 from fosrl/dev

Resolve oss build issue
This commit is contained in:
Owen Schwartz
2026-09-14 18:05:52 -04:00
committed by GitHub
+9 -2
View File
@@ -1,3 +1,10 @@
export function createCname(domainId: string, baseDomain: string) {} export function createCname(
domainId: string,
baseDomain: string
): { baseDomain: string; value: string }[] {
throw new Error("Creating CNAME records is not supported in this build");
}
export function createNs() {} export function createNs(): string[] {
throw new Error("Creating NS records is not supported in this build");
}