@fern-api/fdr-sdk 1.2.2-be0d74d1a9 → 1.2.2-ff12a55fa2

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.
@@ -1914,6 +1914,7 @@ var DocsSiteSchema = z8.object({
1914
1914
  basepath: z8.string(),
1915
1915
  previewUrl: z8.string().nullish(),
1916
1916
  postmanCollectionId: z8.string().nullish(),
1917
+ editorRepoUrl: z8.string().nullish(),
1917
1918
  status: DocsDeploymentStatusSchema,
1918
1919
  createdAt: z8.string(),
1919
1920
  updatedAt: z8.string()
@@ -1936,7 +1937,8 @@ var RegisterDocsSiteInputSchema = z8.object({
1936
1937
  orgId: z8.string(),
1937
1938
  basepath: z8.string().nullish(),
1938
1939
  previewUrl: z8.string().nullish(),
1939
- postmanCollectionId: z8.string().nullish()
1940
+ postmanCollectionId: z8.string().nullish(),
1941
+ editorRepoUrl: z8.string().nullish()
1940
1942
  });
1941
1943
  var GetPostmanCollectionIdInputSchema = z8.object({
1942
1944
  orgId: z8.string(),
@@ -2011,6 +2013,12 @@ var GetDocsSitesByCollectionIdResponseSchema = z8.object({
2011
2013
  })
2012
2014
  )
2013
2015
  });
2016
+ var SetEditorRepoUrlInputSchema = z8.object({
2017
+ orgId: z8.string(),
2018
+ domain: z8.string(),
2019
+ basepath: z8.string().nullish(),
2020
+ editorRepoUrl: z8.string().nullable()
2021
+ });
2014
2022
  var docsDeploymentContract = {
2015
2023
  registerDocsSite: oc2.route({ method: "POST", path: "/register" }).input(RegisterDocsSiteInputSchema).output(DocsSiteSchema),
2016
2024
  getDocsStatus: oc2.route({ method: "GET", path: "/status" }).input(GetDocsStatusInputSchema).output(GetDocsStatusResponseSchema),
@@ -2020,7 +2028,8 @@ var docsDeploymentContract = {
2020
2028
  getDocsDeployments: oc2.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema),
2021
2029
  getPostmanCollectionId: oc2.route({ method: "GET", path: "/postman-collection-id" }).input(GetPostmanCollectionIdInputSchema).output(GetPostmanCollectionIdResponseSchema),
2022
2030
  unlockDeploy: oc2.route({ method: "POST", path: "/unlock" }).input(UnlockDeployInputSchema).output(UnlockDeployResponseSchema),
2023
- getDocsSitesByCollectionId: oc2.route({ method: "GET", path: "/sites-by-collection-id" }).input(GetDocsSitesByCollectionIdInputSchema).output(GetDocsSitesByCollectionIdResponseSchema)
2031
+ getDocsSitesByCollectionId: oc2.route({ method: "GET", path: "/sites-by-collection-id" }).input(GetDocsSitesByCollectionIdInputSchema).output(GetDocsSitesByCollectionIdResponseSchema),
2032
+ setEditorRepoUrl: oc2.route({ method: "PUT", path: "/editor-repo-url" }).input(SetEditorRepoUrlInputSchema).output(z8.object({ success: z8.boolean() }))
2024
2033
  };
2025
2034
 
2026
2035
  // src/orpc-client/dashboard/contract.ts
@@ -4896,6 +4905,7 @@ export {
4896
4905
  SdkSchema,
4897
4906
  SetDocsStatusInputSchema,
4898
4907
  SetDocsUrlMetadataInputSchema,
4908
+ SetEditorRepoUrlInputSchema,
4899
4909
  SetIsArchivedInputSchema,
4900
4910
  SlugEntrySchema,
4901
4911
  SlugsInputSchema,