@fern-api/fdr-sdk 1.2.87-82c32c8d7a → 1.2.88-08d0bf2dd6
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/client/FdrClient.js +0 -47
- package/dist/js/client/FdrClient.js.map +1 -1
- package/dist/js/client/FdrClient.mjs +0 -47
- package/dist/js/client/FdrClient.mjs.map +1 -1
- package/dist/js/index.js +0 -47
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.mjs +0 -47
- package/dist/js/index.mjs.map +1 -1
- package/dist/js/orpc-client.js +0 -55
- package/dist/js/orpc-client.js.map +1 -1
- package/dist/js/orpc-client.mjs +0 -51
- package/dist/js/orpc-client.mjs.map +1 -1
- package/dist/orpc-client/dashboard-agent/contract.d.ts +0 -444
- package/dist/orpc-client/dashboard-agent/contract.d.ts.map +1 -1
- package/dist/orpc-client/dashboard-agent/contract.js +0 -53
- package/dist/orpc-client/dashboard-agent/contract.js.map +1 -1
- package/dist/types/orpc-client/dashboard-agent/contract.d.ts +0 -444
- package/dist/types/orpc-client/dashboard-agent/contract.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/js/orpc-client.mjs
CHANGED
|
@@ -2224,49 +2224,6 @@ var ResolvedDateRangeSchema = z10.object({
|
|
|
2224
2224
|
endDate: z10.string()
|
|
2225
2225
|
});
|
|
2226
2226
|
var AnalyticsSourceSchema = z10.enum(["cache", "live"]);
|
|
2227
|
-
var TrafficSummaryResponseSchema = z10.object({
|
|
2228
|
-
resolvedDateRange: ResolvedDateRangeSchema,
|
|
2229
|
-
metrics: z10.object({
|
|
2230
|
-
visitors: z10.number(),
|
|
2231
|
-
pageViews: z10.number(),
|
|
2232
|
-
// Absent on cache hits: the daily snapshot does not track sessions.
|
|
2233
|
-
sessions: z10.number().optional()
|
|
2234
|
-
}),
|
|
2235
|
-
baseSiteUrl: z10.string(),
|
|
2236
|
-
source: AnalyticsSourceSchema
|
|
2237
|
-
});
|
|
2238
|
-
var TopPagesResponseSchema = z10.object({
|
|
2239
|
-
resolvedDateRange: ResolvedDateRangeSchema,
|
|
2240
|
-
topPages: z10.array(
|
|
2241
|
-
z10.object({
|
|
2242
|
-
path: z10.string(),
|
|
2243
|
-
visitors: z10.number(),
|
|
2244
|
-
views: z10.number()
|
|
2245
|
-
})
|
|
2246
|
-
),
|
|
2247
|
-
source: AnalyticsSourceSchema
|
|
2248
|
-
});
|
|
2249
|
-
var Pages404ResponseSchema = z10.object({
|
|
2250
|
-
resolvedDateRange: ResolvedDateRangeSchema,
|
|
2251
|
-
pages404: z10.array(
|
|
2252
|
-
z10.object({
|
|
2253
|
-
path: z10.string(),
|
|
2254
|
-
count: z10.number()
|
|
2255
|
-
})
|
|
2256
|
-
),
|
|
2257
|
-
source: AnalyticsSourceSchema
|
|
2258
|
-
});
|
|
2259
|
-
var ReferringDomainsResponseSchema = z10.object({
|
|
2260
|
-
resolvedDateRange: ResolvedDateRangeSchema,
|
|
2261
|
-
referringDomains: z10.array(
|
|
2262
|
-
z10.object({
|
|
2263
|
-
domain: z10.string(),
|
|
2264
|
-
visitors: z10.number(),
|
|
2265
|
-
views: z10.number()
|
|
2266
|
-
})
|
|
2267
|
-
),
|
|
2268
|
-
source: AnalyticsSourceSchema
|
|
2269
|
-
});
|
|
2270
2227
|
var LlmBotTrafficResponseSchema = z10.object({
|
|
2271
2228
|
resolvedDateRange: ResolvedDateRangeSchema,
|
|
2272
2229
|
providers: z10.array(
|
|
@@ -2357,10 +2314,6 @@ var SiteSettingsResponseSchema = z10.object({
|
|
|
2357
2314
|
passwordProtection: SitePasswordProtectionSchema
|
|
2358
2315
|
});
|
|
2359
2316
|
var dashboardAgentContract = {
|
|
2360
|
-
getTrafficSummary: oc4.route({ method: "POST", path: "/get-traffic-summary" }).input(DashboardAnalyticsCommonInputSchema).output(TrafficSummaryResponseSchema),
|
|
2361
|
-
getTopPages: oc4.route({ method: "POST", path: "/get-top-pages" }).input(DashboardAnalyticsCommonInputSchema).output(TopPagesResponseSchema),
|
|
2362
|
-
get404Pages: oc4.route({ method: "POST", path: "/get-404-pages" }).input(DashboardAnalyticsCommonInputSchema).output(Pages404ResponseSchema),
|
|
2363
|
-
getReferringDomains: oc4.route({ method: "POST", path: "/get-referring-domains" }).input(DashboardAnalyticsCommonInputSchema).output(ReferringDomainsResponseSchema),
|
|
2364
2317
|
getLlmBotTraffic: oc4.route({ method: "POST", path: "/get-llm-bot-traffic" }).input(DashboardAnalyticsCommonInputSchema).output(LlmBotTrafficResponseSchema),
|
|
2365
2318
|
getRecentFeedback: oc4.route({ method: "POST", path: "/get-recent-feedback" }).input(DashboardFeedbackInputSchema).output(RecentFeedbackResponseSchema),
|
|
2366
2319
|
queryAnalytics: oc4.route({ method: "POST", path: "/query-analytics" }).input(QueryAnalyticsInputSchema).output(QueryAnalyticsResponseSchema),
|
|
@@ -6793,7 +6746,6 @@ export {
|
|
|
6793
6746
|
PageContentResponseSchema,
|
|
6794
6747
|
PageId,
|
|
6795
6748
|
PageIdSchema,
|
|
6796
|
-
Pages404ResponseSchema,
|
|
6797
6749
|
PathOrUrlSchema,
|
|
6798
6750
|
PathParameterSchema,
|
|
6799
6751
|
PathPartSchema,
|
|
@@ -6857,7 +6809,6 @@ export {
|
|
|
6857
6809
|
RecentFeedbackResponseSchema,
|
|
6858
6810
|
RecordPostmanNotificationInputSchema,
|
|
6859
6811
|
RecordPostmanNotificationResponseSchema,
|
|
6860
|
-
ReferringDomainsResponseSchema,
|
|
6861
6812
|
RegisterApiDefinitionPackageSchema,
|
|
6862
6813
|
RegisterApiDefinitionResponseSchema,
|
|
6863
6814
|
RegisterApiDefinitionSchema,
|
|
@@ -6951,8 +6902,6 @@ export {
|
|
|
6951
6902
|
TokenIdSchema,
|
|
6952
6903
|
TopLevelNavigationInputSchema,
|
|
6953
6904
|
TopLevelNavigationResponseSchema,
|
|
6954
|
-
TopPagesResponseSchema,
|
|
6955
|
-
TrafficSummaryResponseSchema,
|
|
6956
6905
|
TransferOwnershipInputSchema,
|
|
6957
6906
|
TypeId,
|
|
6958
6907
|
TypeIdSchema,
|