@fern-api/fdr-sdk 1.2.111-cfdc56c4fc → 1.2.112-abaf2a77c8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/js/client/FdrClient.js +18 -1
- package/dist/js/client/FdrClient.js.map +1 -1
- package/dist/js/client/FdrClient.mjs +18 -1
- package/dist/js/client/FdrClient.mjs.map +1 -1
- package/dist/js/index.js +18 -1
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.mjs +18 -1
- package/dist/js/index.mjs.map +1 -1
- package/dist/js/orpc-client.js +22 -1
- package/dist/js/orpc-client.js.map +1 -1
- package/dist/js/orpc-client.mjs +20 -1
- package/dist/js/orpc-client.mjs.map +1 -1
- package/dist/types/orpc-client/docs-ledger/contract.d.ts +106 -28
- package/dist/types/orpc-client/docs-ledger/contract.d.ts.map +1 -1
- package/dist/types/orpc-client/docs-ledger/ledger-manifest.d.ts +11 -11
- package/package.json +1 -1
package/dist/js/index.mjs
CHANGED
|
@@ -9663,6 +9663,22 @@ var MigrateV2SiteInputSchema = z21.object({
|
|
|
9663
9663
|
/** Convert again after a manual rollback left the row on a superseded ledger deployment. */
|
|
9664
9664
|
allowRemigration: z21.boolean().default(false)
|
|
9665
9665
|
});
|
|
9666
|
+
var StartStaticBuildInputSchema = z21.object({
|
|
9667
|
+
domain: z21.string().min(1),
|
|
9668
|
+
/** "" for a root site, otherwise a leading-slash basepath. */
|
|
9669
|
+
basepath: z21.string().default("")
|
|
9670
|
+
});
|
|
9671
|
+
var StartStaticBuildResponseSchema = z21.object({
|
|
9672
|
+
/** Mirrors the dispatcher's own outcomes, plus the sites it can't resolve. */
|
|
9673
|
+
status: z21.enum(["created", "already-running", "host-not-enabled", "disabled", "not-published"]),
|
|
9674
|
+
domain: z21.string(),
|
|
9675
|
+
basepath: z21.string(),
|
|
9676
|
+
/** The deployment being built, absent when the site has never published. */
|
|
9677
|
+
deploymentId: z21.string().optional(),
|
|
9678
|
+
jobName: z21.string().optional(),
|
|
9679
|
+
/** The host the build is exported to and served from, which may not be `domain`. */
|
|
9680
|
+
host: z21.string().optional()
|
|
9681
|
+
});
|
|
9666
9682
|
var MigrateV2SiteSkipReasonSchema = z21.enum([
|
|
9667
9683
|
"not-registered",
|
|
9668
9684
|
"preview",
|
|
@@ -10305,7 +10321,8 @@ var docsLedgerContract = {
|
|
|
10305
10321
|
previewRegister: oc11.route({ method: "POST", path: "/preview/init" }).input(LedgerPreviewRegisterInputSchema).output(LedgerPreviewRegisterResponseSchema),
|
|
10306
10322
|
finish: oc11.route({ method: "POST", path: "/register/finish" }).input(DocsPublishInputSchema).output(FinishResponseSchema),
|
|
10307
10323
|
archiveSite: oc11.route({ method: "POST", path: "/archive" }).input(ArchiveSiteInputSchema).output(ArchiveSiteResponseSchema),
|
|
10308
|
-
migrateV2Site: oc11.route({ method: "POST", path: "/migrate-v2" }).input(MigrateV2SiteInputSchema).output(MigrateV2SiteResponseSchema)
|
|
10324
|
+
migrateV2Site: oc11.route({ method: "POST", path: "/migrate-v2" }).input(MigrateV2SiteInputSchema).output(MigrateV2SiteResponseSchema),
|
|
10325
|
+
startStaticBuild: oc11.route({ method: "POST", path: "/static-build" }).input(StartStaticBuildInputSchema).output(StartStaticBuildResponseSchema)
|
|
10309
10326
|
};
|
|
10310
10327
|
var CurrentVersionInputSchema = z21.object({
|
|
10311
10328
|
domain: z21.string(),
|