@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.js
CHANGED
|
@@ -419,7 +419,6 @@ __export(orpc_client_exports, {
|
|
|
419
419
|
PageContentResponseSchema: () => PageContentResponseSchema,
|
|
420
420
|
PageId: () => PageId,
|
|
421
421
|
PageIdSchema: () => PageIdSchema,
|
|
422
|
-
Pages404ResponseSchema: () => Pages404ResponseSchema,
|
|
423
422
|
PathOrUrlSchema: () => PathOrUrlSchema,
|
|
424
423
|
PathParameterSchema: () => PathParameterSchema,
|
|
425
424
|
PathPartSchema: () => PathPartSchema,
|
|
@@ -483,7 +482,6 @@ __export(orpc_client_exports, {
|
|
|
483
482
|
RecentFeedbackResponseSchema: () => RecentFeedbackResponseSchema,
|
|
484
483
|
RecordPostmanNotificationInputSchema: () => RecordPostmanNotificationInputSchema,
|
|
485
484
|
RecordPostmanNotificationResponseSchema: () => RecordPostmanNotificationResponseSchema,
|
|
486
|
-
ReferringDomainsResponseSchema: () => ReferringDomainsResponseSchema,
|
|
487
485
|
RegisterApiDefinitionPackageSchema: () => RegisterApiDefinitionPackageSchema,
|
|
488
486
|
RegisterApiDefinitionResponseSchema: () => RegisterApiDefinitionResponseSchema,
|
|
489
487
|
RegisterApiDefinitionSchema: () => RegisterApiDefinitionSchema,
|
|
@@ -577,8 +575,6 @@ __export(orpc_client_exports, {
|
|
|
577
575
|
TokenIdSchema: () => TokenIdSchema,
|
|
578
576
|
TopLevelNavigationInputSchema: () => TopLevelNavigationInputSchema,
|
|
579
577
|
TopLevelNavigationResponseSchema: () => TopLevelNavigationResponseSchema,
|
|
580
|
-
TopPagesResponseSchema: () => TopPagesResponseSchema,
|
|
581
|
-
TrafficSummaryResponseSchema: () => TrafficSummaryResponseSchema,
|
|
582
578
|
TransferOwnershipInputSchema: () => TransferOwnershipInputSchema,
|
|
583
579
|
TypeId: () => TypeId,
|
|
584
580
|
TypeIdSchema: () => TypeIdSchema,
|
|
@@ -2911,49 +2907,6 @@ var ResolvedDateRangeSchema = z10.object({
|
|
|
2911
2907
|
endDate: z10.string()
|
|
2912
2908
|
});
|
|
2913
2909
|
var AnalyticsSourceSchema = z10.enum(["cache", "live"]);
|
|
2914
|
-
var TrafficSummaryResponseSchema = z10.object({
|
|
2915
|
-
resolvedDateRange: ResolvedDateRangeSchema,
|
|
2916
|
-
metrics: z10.object({
|
|
2917
|
-
visitors: z10.number(),
|
|
2918
|
-
pageViews: z10.number(),
|
|
2919
|
-
// Absent on cache hits: the daily snapshot does not track sessions.
|
|
2920
|
-
sessions: z10.number().optional()
|
|
2921
|
-
}),
|
|
2922
|
-
baseSiteUrl: z10.string(),
|
|
2923
|
-
source: AnalyticsSourceSchema
|
|
2924
|
-
});
|
|
2925
|
-
var TopPagesResponseSchema = z10.object({
|
|
2926
|
-
resolvedDateRange: ResolvedDateRangeSchema,
|
|
2927
|
-
topPages: z10.array(
|
|
2928
|
-
z10.object({
|
|
2929
|
-
path: z10.string(),
|
|
2930
|
-
visitors: z10.number(),
|
|
2931
|
-
views: z10.number()
|
|
2932
|
-
})
|
|
2933
|
-
),
|
|
2934
|
-
source: AnalyticsSourceSchema
|
|
2935
|
-
});
|
|
2936
|
-
var Pages404ResponseSchema = z10.object({
|
|
2937
|
-
resolvedDateRange: ResolvedDateRangeSchema,
|
|
2938
|
-
pages404: z10.array(
|
|
2939
|
-
z10.object({
|
|
2940
|
-
path: z10.string(),
|
|
2941
|
-
count: z10.number()
|
|
2942
|
-
})
|
|
2943
|
-
),
|
|
2944
|
-
source: AnalyticsSourceSchema
|
|
2945
|
-
});
|
|
2946
|
-
var ReferringDomainsResponseSchema = z10.object({
|
|
2947
|
-
resolvedDateRange: ResolvedDateRangeSchema,
|
|
2948
|
-
referringDomains: z10.array(
|
|
2949
|
-
z10.object({
|
|
2950
|
-
domain: z10.string(),
|
|
2951
|
-
visitors: z10.number(),
|
|
2952
|
-
views: z10.number()
|
|
2953
|
-
})
|
|
2954
|
-
),
|
|
2955
|
-
source: AnalyticsSourceSchema
|
|
2956
|
-
});
|
|
2957
2910
|
var LlmBotTrafficResponseSchema = z10.object({
|
|
2958
2911
|
resolvedDateRange: ResolvedDateRangeSchema,
|
|
2959
2912
|
providers: z10.array(
|
|
@@ -3044,10 +2997,6 @@ var SiteSettingsResponseSchema = z10.object({
|
|
|
3044
2997
|
passwordProtection: SitePasswordProtectionSchema
|
|
3045
2998
|
});
|
|
3046
2999
|
var dashboardAgentContract = {
|
|
3047
|
-
getTrafficSummary: import_contract6.oc.route({ method: "POST", path: "/get-traffic-summary" }).input(DashboardAnalyticsCommonInputSchema).output(TrafficSummaryResponseSchema),
|
|
3048
|
-
getTopPages: import_contract6.oc.route({ method: "POST", path: "/get-top-pages" }).input(DashboardAnalyticsCommonInputSchema).output(TopPagesResponseSchema),
|
|
3049
|
-
get404Pages: import_contract6.oc.route({ method: "POST", path: "/get-404-pages" }).input(DashboardAnalyticsCommonInputSchema).output(Pages404ResponseSchema),
|
|
3050
|
-
getReferringDomains: import_contract6.oc.route({ method: "POST", path: "/get-referring-domains" }).input(DashboardAnalyticsCommonInputSchema).output(ReferringDomainsResponseSchema),
|
|
3051
3000
|
getLlmBotTraffic: import_contract6.oc.route({ method: "POST", path: "/get-llm-bot-traffic" }).input(DashboardAnalyticsCommonInputSchema).output(LlmBotTrafficResponseSchema),
|
|
3052
3001
|
getRecentFeedback: import_contract6.oc.route({ method: "POST", path: "/get-recent-feedback" }).input(DashboardFeedbackInputSchema).output(RecentFeedbackResponseSchema),
|
|
3053
3002
|
queryAnalytics: import_contract6.oc.route({ method: "POST", path: "/query-analytics" }).input(QueryAnalyticsInputSchema).output(QueryAnalyticsResponseSchema),
|
|
@@ -7481,7 +7430,6 @@ var UpsertThemeBodySchema = z37.object({
|
|
|
7481
7430
|
PageContentResponseSchema,
|
|
7482
7431
|
PageId,
|
|
7483
7432
|
PageIdSchema,
|
|
7484
|
-
Pages404ResponseSchema,
|
|
7485
7433
|
PathOrUrlSchema,
|
|
7486
7434
|
PathParameterSchema,
|
|
7487
7435
|
PathPartSchema,
|
|
@@ -7545,7 +7493,6 @@ var UpsertThemeBodySchema = z37.object({
|
|
|
7545
7493
|
RecentFeedbackResponseSchema,
|
|
7546
7494
|
RecordPostmanNotificationInputSchema,
|
|
7547
7495
|
RecordPostmanNotificationResponseSchema,
|
|
7548
|
-
ReferringDomainsResponseSchema,
|
|
7549
7496
|
RegisterApiDefinitionPackageSchema,
|
|
7550
7497
|
RegisterApiDefinitionResponseSchema,
|
|
7551
7498
|
RegisterApiDefinitionSchema,
|
|
@@ -7639,8 +7586,6 @@ var UpsertThemeBodySchema = z37.object({
|
|
|
7639
7586
|
TokenIdSchema,
|
|
7640
7587
|
TopLevelNavigationInputSchema,
|
|
7641
7588
|
TopLevelNavigationResponseSchema,
|
|
7642
|
-
TopPagesResponseSchema,
|
|
7643
|
-
TrafficSummaryResponseSchema,
|
|
7644
7589
|
TransferOwnershipInputSchema,
|
|
7645
7590
|
TypeId,
|
|
7646
7591
|
TypeIdSchema,
|