@fern-api/fdr-sdk 1.2.2-6c637610fb → 1.2.2-be0d74d1a9

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