@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.
package/dist/js/index.mjs CHANGED
@@ -49575,7 +49575,6 @@ var DocsSiteSchema = z10.object({
49575
49575
  basepath: z10.string(),
49576
49576
  previewUrl: z10.string().nullish(),
49577
49577
  postmanCollectionId: z10.string().nullish(),
49578
- editorRepoUrl: z10.string().nullish(),
49579
49578
  status: DocsDeploymentStatusSchema,
49580
49579
  createdAt: z10.string(),
49581
49580
  updatedAt: z10.string()
@@ -49598,8 +49597,7 @@ var RegisterDocsSiteInputSchema = z10.object({
49598
49597
  orgId: z10.string(),
49599
49598
  basepath: z10.string().nullish(),
49600
49599
  previewUrl: z10.string().nullish(),
49601
- postmanCollectionId: z10.string().nullish(),
49602
- editorRepoUrl: z10.string().nullish()
49600
+ postmanCollectionId: z10.string().nullish()
49603
49601
  });
49604
49602
  var GetPostmanCollectionIdInputSchema = z10.object({
49605
49603
  orgId: z10.string(),
@@ -49674,12 +49672,6 @@ var GetDocsSitesByCollectionIdResponseSchema = z10.object({
49674
49672
  })
49675
49673
  )
49676
49674
  });
49677
- var SetEditorRepoUrlInputSchema = z10.object({
49678
- orgId: z10.string(),
49679
- domain: z10.string(),
49680
- basepath: z10.string().nullish(),
49681
- editorRepoUrl: z10.string().nullable()
49682
- });
49683
49675
  var docsDeploymentContract = {
49684
49676
  registerDocsSite: oc4.route({ method: "POST", path: "/register" }).input(RegisterDocsSiteInputSchema).output(DocsSiteSchema),
49685
49677
  getDocsStatus: oc4.route({ method: "GET", path: "/status" }).input(GetDocsStatusInputSchema).output(GetDocsStatusResponseSchema),
@@ -49689,8 +49681,7 @@ var docsDeploymentContract = {
49689
49681
  getDocsDeployments: oc4.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema),
49690
49682
  getPostmanCollectionId: oc4.route({ method: "GET", path: "/postman-collection-id" }).input(GetPostmanCollectionIdInputSchema).output(GetPostmanCollectionIdResponseSchema),
49691
49683
  unlockDeploy: oc4.route({ method: "POST", path: "/unlock" }).input(UnlockDeployInputSchema).output(UnlockDeployResponseSchema),
49692
- getDocsSitesByCollectionId: oc4.route({ method: "GET", path: "/sites-by-collection-id" }).input(GetDocsSitesByCollectionIdInputSchema).output(GetDocsSitesByCollectionIdResponseSchema),
49693
- setEditorRepoUrl: oc4.route({ method: "PUT", path: "/editor-repo-url" }).input(SetEditorRepoUrlInputSchema).output(z10.object({ success: z10.boolean() }))
49684
+ getDocsSitesByCollectionId: oc4.route({ method: "GET", path: "/sites-by-collection-id" }).input(GetDocsSitesByCollectionIdInputSchema).output(GetDocsSitesByCollectionIdResponseSchema)
49694
49685
  };
49695
49686
 
49696
49687
  // src/orpc-client/dashboard/contract.ts