@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.
@@ -1708,7 +1708,6 @@ var DocsSiteSchema = z7.object({
1708
1708
  basepath: z7.string(),
1709
1709
  previewUrl: z7.string().nullish(),
1710
1710
  postmanCollectionId: z7.string().nullish(),
1711
- editorRepoUrl: z7.string().nullish(),
1712
1711
  status: DocsDeploymentStatusSchema,
1713
1712
  createdAt: z7.string(),
1714
1713
  updatedAt: z7.string()
@@ -1731,8 +1730,7 @@ var RegisterDocsSiteInputSchema = z7.object({
1731
1730
  orgId: z7.string(),
1732
1731
  basepath: z7.string().nullish(),
1733
1732
  previewUrl: z7.string().nullish(),
1734
- postmanCollectionId: z7.string().nullish(),
1735
- editorRepoUrl: z7.string().nullish()
1733
+ postmanCollectionId: z7.string().nullish()
1736
1734
  });
1737
1735
  var GetPostmanCollectionIdInputSchema = z7.object({
1738
1736
  orgId: z7.string(),
@@ -1807,12 +1805,6 @@ var GetDocsSitesByCollectionIdResponseSchema = z7.object({
1807
1805
  })
1808
1806
  )
1809
1807
  });
1810
- var SetEditorRepoUrlInputSchema = z7.object({
1811
- orgId: z7.string(),
1812
- domain: z7.string(),
1813
- basepath: z7.string().nullish(),
1814
- editorRepoUrl: z7.string().nullable()
1815
- });
1816
1808
  var docsDeploymentContract = {
1817
1809
  registerDocsSite: oc2.route({ method: "POST", path: "/register" }).input(RegisterDocsSiteInputSchema).output(DocsSiteSchema),
1818
1810
  getDocsStatus: oc2.route({ method: "GET", path: "/status" }).input(GetDocsStatusInputSchema).output(GetDocsStatusResponseSchema),
@@ -1822,8 +1814,7 @@ var docsDeploymentContract = {
1822
1814
  getDocsDeployments: oc2.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema),
1823
1815
  getPostmanCollectionId: oc2.route({ method: "GET", path: "/postman-collection-id" }).input(GetPostmanCollectionIdInputSchema).output(GetPostmanCollectionIdResponseSchema),
1824
1816
  unlockDeploy: oc2.route({ method: "POST", path: "/unlock" }).input(UnlockDeployInputSchema).output(UnlockDeployResponseSchema),
1825
- getDocsSitesByCollectionId: oc2.route({ method: "GET", path: "/sites-by-collection-id" }).input(GetDocsSitesByCollectionIdInputSchema).output(GetDocsSitesByCollectionIdResponseSchema),
1826
- setEditorRepoUrl: oc2.route({ method: "PUT", path: "/editor-repo-url" }).input(SetEditorRepoUrlInputSchema).output(z7.object({ success: z7.boolean() }))
1817
+ getDocsSitesByCollectionId: oc2.route({ method: "GET", path: "/sites-by-collection-id" }).input(GetDocsSitesByCollectionIdInputSchema).output(GetDocsSitesByCollectionIdResponseSchema)
1827
1818
  };
1828
1819
 
1829
1820
  // src/orpc-client/dashboard/contract.ts