@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
|
@@ -2062,7 +2062,9 @@ var RecentFeedbackResponseSchema = z9.object({
|
|
|
2062
2062
|
location: z9.string(),
|
|
2063
2063
|
wasHelpful: z9.boolean(),
|
|
2064
2064
|
userFeedback: z9.string(),
|
|
2065
|
-
feedbackType: z9.string().optional()
|
|
2065
|
+
feedbackType: z9.string().optional(),
|
|
2066
|
+
/** URL of the docs page the feedback was submitted on. */
|
|
2067
|
+
url: z9.string().optional()
|
|
2066
2068
|
})
|
|
2067
2069
|
),
|
|
2068
2070
|
hasMore: z9.boolean()
|