@fern-api/fdr-sdk 1.2.88-08d0bf2dd6 → 1.2.88-4d0ca2d2dd

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.js CHANGED
@@ -7348,9 +7348,6 @@ var DashboardFeedbackInputSchema = z9.object({
7348
7348
  feedbackType: z9.enum(["page", "code_block", "all"]).optional(),
7349
7349
  limit: z9.number().int().min(1).max(50).optional()
7350
7350
  });
7351
- var DashboardListOrgDocDomainsInputSchema = z9.object({
7352
- orgId: z9.string()
7353
- });
7354
7351
  var DashboardListOrgMembersInputSchema = z9.object({
7355
7352
  orgId: z9.string(),
7356
7353
  includeFernEmployees: z9.boolean().optional()
@@ -7421,9 +7418,6 @@ var RecentFeedbackResponseSchema = z9.object({
7421
7418
  ),
7422
7419
  hasMore: z9.boolean()
7423
7420
  });
7424
- var OrgDocDomainsResponseSchema = z9.object({
7425
- domains: z9.array(z9.string())
7426
- });
7427
7421
  var QueryAnalyticsResponseSchema = z9.object({
7428
7422
  resolvedDateRange: ResolvedDateRangeSchema,
7429
7423
  metric: AnalyticsMetricSchema,
@@ -7489,7 +7483,6 @@ var dashboardAgentContract = {
7489
7483
  getLlmBotTraffic: import_contract6.oc.route({ method: "POST", path: "/get-llm-bot-traffic" }).input(DashboardAnalyticsCommonInputSchema).output(LlmBotTrafficResponseSchema),
7490
7484
  getRecentFeedback: import_contract6.oc.route({ method: "POST", path: "/get-recent-feedback" }).input(DashboardFeedbackInputSchema).output(RecentFeedbackResponseSchema),
7491
7485
  queryAnalytics: import_contract6.oc.route({ method: "POST", path: "/query-analytics" }).input(QueryAnalyticsInputSchema).output(QueryAnalyticsResponseSchema),
7492
- listOrgDocDomains: import_contract6.oc.route({ method: "POST", path: "/list-org-doc-domains" }).input(DashboardListOrgDocDomainsInputSchema).output(OrgDocDomainsResponseSchema),
7493
7486
  listOrgMembers: import_contract6.oc.route({ method: "POST", path: "/list-org-members" }).input(DashboardListOrgMembersInputSchema).output(OrgMembersResponseSchema),
7494
7487
  getSiteConfig: import_contract6.oc.route({ method: "POST", path: "/get-site-config" }).input(DashboardGetSiteConfigInputSchema).output(SiteConfigResponseSchema),
7495
7488
  authorizeDocsEdit: import_contract6.oc.route({ method: "POST", path: "/authorize-docs-edit" }).input(DashboardGetSiteConfigInputSchema).output(AuthorizeDocsEditResponseSchema),