@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.
@@ -2176,9 +2176,6 @@ var DashboardFeedbackInputSchema = z10.object({
2176
2176
  feedbackType: z10.enum(["page", "code_block", "all"]).optional(),
2177
2177
  limit: z10.number().int().min(1).max(50).optional()
2178
2178
  });
2179
- var DashboardListOrgDocDomainsInputSchema = z10.object({
2180
- orgId: z10.string()
2181
- });
2182
2179
  var DashboardListOrgMembersInputSchema = z10.object({
2183
2180
  orgId: z10.string(),
2184
2181
  includeFernEmployees: z10.boolean().optional()
@@ -2249,9 +2246,6 @@ var RecentFeedbackResponseSchema = z10.object({
2249
2246
  ),
2250
2247
  hasMore: z10.boolean()
2251
2248
  });
2252
- var OrgDocDomainsResponseSchema = z10.object({
2253
- domains: z10.array(z10.string())
2254
- });
2255
2249
  var QueryAnalyticsResponseSchema = z10.object({
2256
2250
  resolvedDateRange: ResolvedDateRangeSchema,
2257
2251
  metric: AnalyticsMetricSchema,
@@ -2317,7 +2311,6 @@ var dashboardAgentContract = {
2317
2311
  getLlmBotTraffic: oc4.route({ method: "POST", path: "/get-llm-bot-traffic" }).input(DashboardAnalyticsCommonInputSchema).output(LlmBotTrafficResponseSchema),
2318
2312
  getRecentFeedback: oc4.route({ method: "POST", path: "/get-recent-feedback" }).input(DashboardFeedbackInputSchema).output(RecentFeedbackResponseSchema),
2319
2313
  queryAnalytics: oc4.route({ method: "POST", path: "/query-analytics" }).input(QueryAnalyticsInputSchema).output(QueryAnalyticsResponseSchema),
2320
- listOrgDocDomains: oc4.route({ method: "POST", path: "/list-org-doc-domains" }).input(DashboardListOrgDocDomainsInputSchema).output(OrgDocDomainsResponseSchema),
2321
2314
  listOrgMembers: oc4.route({ method: "POST", path: "/list-org-members" }).input(DashboardListOrgMembersInputSchema).output(OrgMembersResponseSchema),
2322
2315
  getSiteConfig: oc4.route({ method: "POST", path: "/get-site-config" }).input(DashboardGetSiteConfigInputSchema).output(SiteConfigResponseSchema),
2323
2316
  authorizeDocsEdit: oc4.route({ method: "POST", path: "/authorize-docs-edit" }).input(DashboardGetSiteConfigInputSchema).output(AuthorizeDocsEditResponseSchema),
@@ -6423,7 +6416,6 @@ export {
6423
6416
  DashboardDocsSiteSchema,
6424
6417
  DashboardFeedbackInputSchema,
6425
6418
  DashboardGetSiteConfigInputSchema,
6426
- DashboardListOrgDocDomainsInputSchema,
6427
6419
  DashboardListOrgMembersInputSchema,
6428
6420
  DateTypeSchema,
6429
6421
  DatetimeTypeSchema,
@@ -6736,7 +6728,6 @@ export {
6736
6728
  ObjectTypeSchema,
6737
6729
  OpenRpcProtocolSchema,
6738
6730
  OrgConfigResponseSchema,
6739
- OrgDocDomainsResponseSchema,
6740
6731
  OrgId,
6741
6732
  OrgIdSchema,
6742
6733
  OrgMembersResponseSchema,