@fern-api/fdr-sdk 1.2.91-ddab979b89 → 1.2.92-44ed75bcdd
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 +3 -1
- package/dist/js/client/FdrClient.js.map +1 -1
- package/dist/js/client/FdrClient.mjs +3 -1
- package/dist/js/client/FdrClient.mjs.map +1 -1
- package/dist/js/converters/index.js +10 -4
- package/dist/js/converters/index.js.map +1 -1
- package/dist/js/converters/index.mjs +10 -4
- package/dist/js/converters/index.mjs.map +1 -1
- package/dist/js/index.js +13 -5
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.mjs +13 -5
- package/dist/js/index.mjs.map +1 -1
- package/dist/js/navigation/index.js +10 -4
- package/dist/js/navigation/index.js.map +1 -1
- package/dist/js/navigation/index.mjs +10 -4
- package/dist/js/navigation/index.mjs.map +1 -1
- package/dist/js/orpc-client.js +3 -1
- package/dist/js/orpc-client.js.map +1 -1
- package/dist/js/orpc-client.mjs +3 -1
- package/dist/js/orpc-client.mjs.map +1 -1
- package/dist/types/navigation/utils/pruneNavigationTree.d.ts +7 -0
- package/dist/types/navigation/utils/pruneNavigationTree.d.ts.map +1 -1
- package/dist/types/orpc-client/dashboard-agent/contract.d.ts +12 -0
- package/dist/types/orpc-client/dashboard-agent/contract.d.ts.map +1 -1
- package/package.json +3 -5
|
@@ -2025,7 +2025,9 @@ var RecentFeedbackResponseSchema = z9.object({
|
|
|
2025
2025
|
location: z9.string(),
|
|
2026
2026
|
wasHelpful: z9.boolean(),
|
|
2027
2027
|
userFeedback: z9.string(),
|
|
2028
|
-
feedbackType: z9.string().optional()
|
|
2028
|
+
feedbackType: z9.string().optional(),
|
|
2029
|
+
/** URL of the docs page the feedback was submitted on. */
|
|
2030
|
+
url: z9.string().optional()
|
|
2029
2031
|
})
|
|
2030
2032
|
),
|
|
2031
2033
|
hasMore: z9.boolean()
|