@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.
@@ -415,7 +415,6 @@ __export(orpc_client_exports, {
415
415
  SdkSchema: () => SdkSchema,
416
416
  SetDocsStatusInputSchema: () => SetDocsStatusInputSchema,
417
417
  SetDocsUrlMetadataInputSchema: () => SetDocsUrlMetadataInputSchema,
418
- SetEditorRepoUrlInputSchema: () => SetEditorRepoUrlInputSchema,
419
418
  SetIsArchivedInputSchema: () => SetIsArchivedInputSchema,
420
419
  SlugEntrySchema: () => SlugEntrySchema,
421
420
  SlugsInputSchema: () => SlugsInputSchema,
@@ -2451,7 +2450,6 @@ var DocsSiteSchema = z8.object({
2451
2450
  basepath: z8.string(),
2452
2451
  previewUrl: z8.string().nullish(),
2453
2452
  postmanCollectionId: z8.string().nullish(),
2454
- editorRepoUrl: z8.string().nullish(),
2455
2453
  status: DocsDeploymentStatusSchema,
2456
2454
  createdAt: z8.string(),
2457
2455
  updatedAt: z8.string()
@@ -2474,8 +2472,7 @@ var RegisterDocsSiteInputSchema = z8.object({
2474
2472
  orgId: z8.string(),
2475
2473
  basepath: z8.string().nullish(),
2476
2474
  previewUrl: z8.string().nullish(),
2477
- postmanCollectionId: z8.string().nullish(),
2478
- editorRepoUrl: z8.string().nullish()
2475
+ postmanCollectionId: z8.string().nullish()
2479
2476
  });
2480
2477
  var GetPostmanCollectionIdInputSchema = z8.object({
2481
2478
  orgId: z8.string(),
@@ -2550,12 +2547,6 @@ var GetDocsSitesByCollectionIdResponseSchema = z8.object({
2550
2547
  })
2551
2548
  )
2552
2549
  });
2553
- var SetEditorRepoUrlInputSchema = z8.object({
2554
- orgId: z8.string(),
2555
- domain: z8.string(),
2556
- basepath: z8.string().nullish(),
2557
- editorRepoUrl: z8.string().nullable()
2558
- });
2559
2550
  var docsDeploymentContract = {
2560
2551
  registerDocsSite: import_contract2.oc.route({ method: "POST", path: "/register" }).input(RegisterDocsSiteInputSchema).output(DocsSiteSchema),
2561
2552
  getDocsStatus: import_contract2.oc.route({ method: "GET", path: "/status" }).input(GetDocsStatusInputSchema).output(GetDocsStatusResponseSchema),
@@ -2565,8 +2556,7 @@ var docsDeploymentContract = {
2565
2556
  getDocsDeployments: import_contract2.oc.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema),
2566
2557
  getPostmanCollectionId: import_contract2.oc.route({ method: "GET", path: "/postman-collection-id" }).input(GetPostmanCollectionIdInputSchema).output(GetPostmanCollectionIdResponseSchema),
2567
2558
  unlockDeploy: import_contract2.oc.route({ method: "POST", path: "/unlock" }).input(UnlockDeployInputSchema).output(UnlockDeployResponseSchema),
2568
- getDocsSitesByCollectionId: import_contract2.oc.route({ method: "GET", path: "/sites-by-collection-id" }).input(GetDocsSitesByCollectionIdInputSchema).output(GetDocsSitesByCollectionIdResponseSchema),
2569
- setEditorRepoUrl: import_contract2.oc.route({ method: "PUT", path: "/editor-repo-url" }).input(SetEditorRepoUrlInputSchema).output(z8.object({ success: z8.boolean() }))
2559
+ getDocsSitesByCollectionId: import_contract2.oc.route({ method: "GET", path: "/sites-by-collection-id" }).input(GetDocsSitesByCollectionIdInputSchema).output(GetDocsSitesByCollectionIdResponseSchema)
2570
2560
  };
2571
2561
 
2572
2562
  // src/orpc-client/dashboard/contract.ts
@@ -5443,7 +5433,6 @@ var UpsertThemeBodySchema = z31.object({
5443
5433
  SdkSchema,
5444
5434
  SetDocsStatusInputSchema,
5445
5435
  SetDocsUrlMetadataInputSchema,
5446
- SetEditorRepoUrlInputSchema,
5447
5436
  SetIsArchivedInputSchema,
5448
5437
  SlugEntrySchema,
5449
5438
  SlugsInputSchema,